Enron is a natural-gas-transmission company founded in 1985 in the US. In 1990’s the US congress adopt a series of law to deregulate the sale of natural gas. This makes Enron loosing it’s exclusivity right on the natural gas pipeline. At this time Jeffrey Skilling, who was initially a consultant and later became the company’s chief operating officer, transformed Enron into a trader energy derivative to be an intermediary between natural-gas producers and their customers. Soon after that, Enron become a leader in this market and makes huge profit on its trade. This golden age for the company allow them to recruit Andrew Fastow who quickly became the chief financial officer. Moreover, they diversify their activity to include electricity, coal, paper, and steel. Perhaps, success have is limit and in late 90’s the company profit start to shrank… The pressure from shareholders, company executives began to rely on dubious accounting practices. Especially they used the “market-tomarket accounting” which allowed the company to write unrealized future gain from some trading contract into current income statement, thus giving the illusion of higher current profits. In August, 2001 some people at the head of the company start to worry about a possible accounting scandals due to this practice. In October, 2001 the Securities and Exchange Commission began investigating the transactions of Enron. This was the starting event who lead the company to the bankruptcy which really start in December, 2001.
Source Britannica Enron scandal.
The principal aim of this project is to explore the Enron’s email data set for extracting insight about the fiscal fraud investigation and bankruptcy of the company in 2001. For that have 3 data sets:
the employee list with their email address
the emails exchange from 1999 to 2002
the recipients of each emails (to, cc, bcc).
The different insight will are available into a shiny apps.
For that project we used several libraries listed here: For data exploration, analysis and visualization:
To display the result into the Rmarkdown report:
To create the shiny apps:
The aim of this part is to see :
which kind of data the different table contains
the existence of missing value and how to handle them
Description of the data set variables and dimension:
## eid firstName lastName Email_id
## Min. : 1.00 Length:149 Length:149 Length:149
## 1st Qu.: 38.00 Class :character Class :character Class :character
## Median : 75.00 Mode :character Mode :character Mode :character
## Mean : 75.07
## 3rd Qu.:112.00
## Max. :150.00
##
## Email2 Email3 EMail4 folder
## Length:149 Length:149 Length:149 Length:149
## Class :character Class :character Class :character Class :character
## Mode :character Mode :character Mode :character Mode :character
##
##
##
##
## status
## Employee :41
## N/A :31
## Vice President:23
## Director :14
## Manager :14
## (Other) :25
## NA's : 1
This data set contain 149 rows and 9 columns.
This data set contains employee ID (eid), the first and last name of the employee as well as their status, the email addresses for each employee, and the folder where their email are stored. In the status variable there exist missing value’s identify by R (NA) but also putting directly in the data by the set owner which are write N/A. The eid variable is identify has type numeric, status is associate with a factor type and the other variable are character type.
Display of some observations in the data frame:
| eid | firstName | lastName | Email_id | Email2 | Email3 | EMail4 | folder | status |
|---|---|---|---|---|---|---|---|---|
| 13 | Marie | Heard | marie.heard@enron.com | heard-m | NA | |||
| 6 | Mark | Taylor | mark.e.taylor@enron.com | mark.taylor@enron.com | e.taylor@enron.com | taylor-m | Employee | |
| 19 | Lindy | Donoho | lindy.donoho@enron.com | ldonoho@enron.com | donoho-l | Employee | ||
| 115 | Lisa | Gang | lisa.gang@enron.com | gang-l | N/A | |||
| 129 | Jeffrey | Skilling | jeff.skilling@enron.com | jeffrey.skilling@enron.com | skilling-j | CEO | ||
| 18 | Lynn | Blair | lynn.blair@enron.com | lynnblair@enron.com | blair-l | Director | ||
| 33 | Kim | Ward | kim.ward@enron.com | kward@enron.com | ward-k | N/A | ||
| 149 | Kate | Symes | kate.symes@enron.com | ksymes@enron.com | symes-k | Employee | ||
| 52 | Kay | Mann | kay.mann@enron.com | mann-k | Employee | |||
| 21 | Keith | Holst | keith.holst@enron.com | kholst@enron.com | holst-k | Director |
By looking at the head of the data, we observed that eid is associate to numeric data type but the more adapted type seems to be factor because it is an ID for employee. In addition, the variables Email2, Email3, EMail4 contain a lot of blank.
To investigate the blank we temporary change the datatype of those variables from character to factor to see what kind of result we return for the blank observation.
employeelist %>% transform(
Email2 = as.factor(Email2),
Email3 = as.factor(Email3),
EMail4 = as.factor(EMail4)
) %>% summary()
## eid firstName lastName Email_id
## Min. : 1.00 Length:149 Length:149 Length:149
## 1st Qu.: 38.00 Class :character Class :character Class :character
## Median : 75.00 Mode :character Mode :character Mode :character
## Mean : 75.07
## 3rd Qu.:112.00
## Max. :150.00
##
## Email2 Email3
## :52 :100
## a..shankman@enron.com : 1 a..martin@enron.com : 1
## andrew.lewis@enron.com: 1 andrew.h.lewis@enron.com: 1
## azipper@enron.com : 1 c.germany@enron.com : 1
## b..sanders@enron.com : 1 carol.stclair@enron.com : 1
## barbo@enron.com : 1 dana_davis@enron.com : 1
## (Other) :92 (Other) : 44
## EMail4 folder status
## :147 Length:149 Employee :41
## j..kean@enron.com : 1 Class :character N/A :31
## peter.f.keavey@enron.com: 1 Mode :character Vice President:23
## Director :14
## Manager :14
## (Other) :25
## NA's : 1
We can see that, in the Email2, Email3, and EMail4 variable don’t have missing value but they are blank character. In the Email3 and EMail4 more than the half of the value are blank, maybe those variable aren’t very helpful for the analysis. In the variable status the NA are differently declared where we have 31 values with N/A and only 1 NA. For that variable we will need to replace the N/A by real NA values to homogenized the data.
Description of the data set variables and dimension:
## mid sender date
## Min. : 52 jeff.dasovich@enron.com : 6273 Min. :0001-05-30
## 1st Qu.: 88565 j.kaminski@enron.com : 5838 1st Qu.:2000-12-01
## Median :186421 kay.mann@enron.com : 5100 Median :2001-05-21
## Mean :190260 sara.shackleton@enron.com: 4797 Mean :1999-04-15
## 3rd Qu.:279962 tana.jones@enron.com : 4437 3rd Qu.:2001-10-25
## Max. :404927 chris.germany@enron.com : 3686 Max. :2044-01-04
## (Other) :222628
## message_id subject
## <10000282.1075847198841.JavaMail.evans@thyme>: 1 Length:252759
## <10000478.1075841161605.JavaMail.evans@thyme>: 1 Class :character
## <1000097.1075860055721.JavaMail.evans@thyme> : 1 Mode :character
## <1000099.1075858574579.JavaMail.evans@thyme> : 1
## <1000115.1075852075775.JavaMail.evans@thyme> : 1
## <1000122.1075858816233.JavaMail.evans@thyme> : 1
## (Other) :252753
This data set contain 252759 rows and 5 columns.
Here we observed that, the mid and date variables identify as a numeric, the variables sender and message_id are attached to factor data type, and the variable subject is character data type.
Display of some observations in the data frame:
By looking at the head of the data we observed that, the mid don’t look like numeric data but more has identifier like the eid variable in the employeelist table. In the data frame the date variable is associate to a date type. More over it seems that the observation in the subject variable are repeat several time suggesting they aren’t individual string but more a categorical variable.
Because the description seems to treat the variable date as a numeric type but the observation look like real date in the data display above we check with the class() function if R treat it correctly by evaluating if his data type is Date:
class(message$date) == "Date"
## [1] TRUE
The result confirm us R treat the date variable in the good data type meaning Date type. For this variable it is not necessary to adapt the data type.
In the date variable the min and max values return are strange date. In the introduction we saw that the data cover the period between 1999 and 2002 and those value aren’t in that period.
To understand what is those values we filter the table to get the year is less than 1999 or more than 2002:
message %>%
select(date) %>% #keep the date variable
mutate(year = format(date,"%Y")) %>% #extract the year from the date
filter((year < 1999) | (year > 2002)) %>% #keep the value below and after the study's period
group_by(year) %>% count() #count the number of rows per date out of the study's period
## # A tibble: 10 × 2
## # Groups: year [10]
## year n
## <chr> <int>
## 1 0001 205
## 2 0002 53
## 3 1979 6
## 4 1997 1
## 5 1998 85
## 6 2004 53
## 7 2007 1
## 8 2020 2
## 9 2043 1
## 10 2044 3
In filtering the strange date we can see that some aren’t date (0001, 0002) and the other are out of the study’s period. This represent average 450 values which makes less than 1% of the observations in the table.
The variable mid and message_id could be redundancy. To verify that we will count the number of distinct value for both variable to see if a mid could be attached to several message_id.
message%>% select(mid, message_id) %>% #select only the variable we need.
transform(mid = as.factor(mid)) %>% #transform the mid into factor data type.
group_by(message_id) %>%
count(mid) %>% #count the number of mid per message_id group, create a n variable with the result.
filter(n != 1) #filter to get the rows with a value different than 1.
## # A tibble: 0 × 3
## # Groups: message_id [0]
## # ℹ 3 variables: message_id <fct>, mid <fct>, n <int>
This shown that, each message_id is attached to one and only one mid and confirm to us the redundancy of the 2 variables in the data frame. To lighten the data we can choose one of them to be kept in the dataframe for the analysis.
Description of the data set variables and dimension:
## rid mid rtype
## Min. : 67 Min. : 52 BCC: 253713
## 1st Qu.: 718289 1st Qu.:105438 CC : 253735
## Median :1515296 Median :198263 TO :1556994
## Mean :1543862 Mean :196168
## 3rd Qu.:2309682 3rd Qu.:280673
## Max. :3242063 Max. :404927
##
## rvalue
## no.address@enron.com : 19198
## jeff.dasovich@enron.com : 11137
## richard.shapiro@enron.com: 11015
## steven.j.kean@enron.com : 10873
## james.d.steffes@enron.com: 10615
## tana.jones@enron.com : 9781
## (Other) :1991823
This data set contain 2064442 rows and 4 columns. The summary of the data reveal that, the rid and mid are consider as numeric variable by R and the variables rtype and rvalue are consider as factor data type.
Display of some observations in the data frame:
| rid | mid | rtype | rvalue |
|---|---|---|---|
| 67 | 52 | TO | all.worldwide@enron.com |
| 68 | 53 | TO | all.downtown@enron.com |
| 69 | 54 | TO | all.enron-worldwide@enron.com |
| 70 | 55 | TO | all.worldwide@enron.com |
| 71 | 56 | TO | all_enron_north.america@enron.com |
| 72 | 56 | TO | ec.communications@enron.com |
| 73 | 57 | TO | charlotte@wptf.org |
| 74 | 58 | TO | sap.mailout@enron.com |
| 75 | 59 | TO | robert.badeer@enron.com |
| 76 | 60 | TO | tim.belden@enron.com |
By looking at the head of this dataset we can see that rid and mid are identifier, with the result return by the summary function we need to transform those variables into factor data for having in the good type. Also, the mid variable is a foreign key allowed to link this table with the message table. Binding together this 2 table will allow us to have the sender and the receiver of the email as well as which type of receiver (direct with the to or “indirect” with the CC and BCC). The last variable rvalue is the email address of the receiver which can be general (e.g., all.worldwide@enron.com, see in the head of the table) or specific to a person (e.g., jeff.dasovich@enron.com, see as the top specific receiver in the summary of that table).
Description of the data set variables and dimension:
## rfid mid reference
## Min. : 2 Min. : 79 Length:54778
## 1st Qu.:14305 1st Qu.: 60580 Class :character
## Median :30987 Median :178176 Mode :character
## Mean :30860 Mean :179738
## 3rd Qu.:46728 3rd Qu.:275557
## Max. :63024 Max. :404920
This data set contain 54778 rows and 3 columns.
the summary pointed that, the variable rfid and mid are qualified as numeric type and the reference variable as a character type.
Display of some observations in the data frame:
| rfid | mid | reference | |
|---|---|---|---|
| 5 | 14 | 845 | From: Monaco, John [EM] [mailto:john.monaco@citi.com]Sent: Thursday, March 07, 2002 6:40 AMTo: Badeer, RobertSubject: FW: RE: Whats up!!!!!Still around!!!!—–Original Message—–From: enron.mailsweeper.admin@enron.com[mailto:enron.mailsweeper.admin@enron.com] Sent: Thursday, March 07, 2002 9:36 AMTo: Monaco, John [EM]Subject: RE:RE: Whats up!!!!!The enron.com recipient(s)rbadeer@exchange.enron.comhave moved to a new organization. The new email address follows the formatfirstname.lastname@ubswenergy.com orfirstname.initial.lastname@ubswenergy.com (as per their original enron.comemail address). Email sent to recipient(s) at enron.com will not bedelivered. |
| 6 | 15 | 846 | From: Rangel, Ina Sent: Thursday, March 07, 2002 8:11 AMTo: Badeer, RobertSubject: Expense ReceiptsBob:I received your expense receipts today. Will submit them today.Ina Rangel |
| 7 | 16 | 847 | From: Grigsby, Mike Sent: Friday, March 08, 2002 9:08 AMTo: Badeer, RobertSubject: RE: BADGEGo with Ina —–Original Message—–From: Badeer, Robert Sent: Friday, March 08, 2002 11:08 AMTo: Grigsby, MikeSubject: RE: BADGEGrigs, Ina said it would be on the 5th floor of the new building. Which is right? —–Original Message—–From: Grigsby, Mike Sent: Friday, March 08, 2002 6:46 AMTo: Badeer, RobertSubject: BADGEYour badge will be waiting for you at the front desk in the north tower on mon. if not, then call and we will retrieve you.Michael D. Grigsby, Executive DirectorUBS Warburg Energy, LLCWork: 713-853-7031Mobile: 713-408-6256 |
| 8 | 17 | 848 | From: Grigsby, Mike Sent: Friday, March 08, 2002 6:46 AMTo: Badeer, RobertSubject: BADGEYour badge will be waiting for you at the front desk in the north tower on mon. if not, then call and we will retrieve you.Michael D. Grigsby, Executive DirectorUBS Warburg Energy, LLCWork: 713-853-7031Mobile: 713-408-6256 |
| 9 | 18 | 849 | From: Rangel, Ina Sent: Thursday, March 07, 2002 12:56 PMTo: Badeer, RobertSubject: FW: Badge AccessWhen you get here on Monday morning, come to the 5th floor reception of the new building. If your badge is not there, then I will come and pick you up when you get here and bring you up. Your badge will be ready Monday for sure, whether it be morning or afternoon I am not sure of.-Ina —–Original Message—–From: Curless, Amanda Sent: Thursday, March 07, 2002 2:50 PMTo: Rangel, InaSubject: RE: Badge AccessIna,We can most likely have this by Monday morning and he can pick this up at the 5th floor reception. If he has any problems he can call me. Thanks!Mandy —–Original Message—–From: Rangel, Ina Sent: Thursday, March 07, 2002 2:39 PMTo: Curless, AmandaSubject: RE: Badge Access << File: Badge Access Form.doc >> I filled out all of the information that I had on him. Will he be able to have his badge by Monday morning and where will he go to pick it up.Ina —–Original Message—–From: Curless, Amanda Sent: Thursday, March 07, 2002 2:00 PMTo: Rangel, InaSubject: Badge Access << File: Badge Access Form.doc >> Ina,Pleae fill out and return to me at ECS 05848. You can e-mail this to me if this is easier. Thanks!Mandy |
| 10 | 19 | 851 | From: Hyatt, Kevin Sent: Wednesday, July 25, 2001 1:00 PMTo: Nielsen, JeffSubject: RE: Mid 4 to Mid 3 QuoteJeff, can you fill in the rates for the 5,7, and 10 year terms for me. These would be notional of course. Let me know if you have questions.thxKevin 713-853-5559 Term/yrs. 2 5 7 10 Demand: Firm* $.02 - .03 $.04-.05 $.06-.07 $.07-.08 TI $.035 - .045 \(.065-\).075 $.075-.085 $.095-.105 Volume is min. 0 to max of 200,000/d * plus minimum commodity Primary to El Paso Waha would be slightly higher Rates are plus fuel —–Original Message—–From: Nielsen, Jeff Sent: Monday, July 23, 2001 4:39 PMTo: Hyatt, KevinSubject: Mid 4 to Mid 3 QuoteKevin,Jo Williams said that you needed a quote for transportation from Mid 4 to Mid 3 in the Waha area. On a firm basis we would be would in the $.02 to $.03 demand range plus minimum commodity. For a TI rate use between $.035 and $.045. If you would like primary to El Paso Waha, that rate would be a little higher. We have been able to get additional value out of that interconnect because of the gas prices in California. Please let me know if you need any additional information.Jeff 402-398-7434 |
By looking at the head of that table we can see that:
the rfid and mid aren’t numeric variable but look like identifier. It will be necessary to change their data type for factor for it be better adapted.
the reference variable describe the content of each message.
the existence here of the mid variable allow us to merge that table with the message and/or the recipientinfo table.
in the message and recipientinfo table we have email address like in the employeelist info. We could thinks that, this table can be merged through this.
By exploring those data set we identify some issues needed to be handle before the analysis such as data type change, missing values handling, variable redundancy, and data set merging.
We choose to :
change the data type of the identifier variable in the different table from numeric to factor.
change the data type of the subject variable from character to factor.
withdraw the message_id variable in the message table to lighten the dataset. In addition we drop the lines for which the date aren’t in the study’s period (from 1999 to 2002) and the strange date.
for the moment, withdraw the variable Email3 and EMail4 variable in the employeelist table because they contain al lot of blank value and every employee have one Email id filled. We choose to keep for the moment the Email2 variable because it contain only 52 blank observation over the 149 which makes average 25% of the data.
don’t keep the referenceinfo table because it contain only 54,778 observation which makes only 2% of the recipientinfo table. This suggest that, this table isn’t exhuastive and adding those info in a merging table with recipientinfo will create a lot of missing values.
Creates a table which bind all the information about the message by merging together the table message and recipientinfo through the mid foreign key.
employeelist_2 <- employeelist %>%
select(-c(Email3, EMail4)) %>% #the variable we don't need in the data
transform(eid = as.factor(eid)) %>% #data type change for the variable eid to factor
mutate(status = if_else((status == "N/A"), NA, status)) #homogenized the declaration of the NA in the variable status
Description of the new table employee list:
summary(employeelist_2)
## eid firstName lastName Email_id
## 1 : 1 Length:149 Length:149 Length:149
## 2 : 1 Class :character Class :character Class :character
## 3 : 1 Mode :character Mode :character Mode :character
## 4 : 1
## 5 : 1
## 6 : 1
## (Other):143
## Email2 folder status
## Length:149 Length:149 Employee :41
## Class :character Class :character Vice President:23
## Mode :character Mode :character Director :14
## Manager :14
## Trader :13
## (Other) :12
## NA's :32
Verification of the data type of the table variables:
#return the data type for every variable in the table
str(employeelist_2)
## 'data.frame': 149 obs. of 7 variables:
## $ eid : Factor w/ 149 levels "1","2","3","4",..: 13 6 19 115 129 18 33 148 52 21 ...
## $ firstName: chr "Marie" "Mark" "Lindy" "Lisa" ...
## $ lastName : chr "Heard" "Taylor" "Donoho" "Gang" ...
## $ Email_id : chr "marie.heard@enron.com" "mark.e.taylor@enron.com" "lindy.donoho@enron.com" "lisa.gang@enron.com" ...
## $ Email2 : chr "" "mark.taylor@enron.com" "ldonoho@enron.com" "" ...
## $ folder : chr "heard-m" "taylor-m" "donoho-l" "gang-l" ...
## $ status : Factor w/ 10 levels "CEO","Director",..: NA 3 3 NA 1 2 NA 3 3 2 ...
The result from summary and the str function show us the data type change, the NA homogenized, and the suppression of the variable is done correctly. We can now used this table to pursue the analysis.
message_2 <- message %>%
select(-c(message_id)) %>% #withdraw the variable we don't need
transform(#change the data type for factor
mid = as.factor(mid),
sender = as.factor(sender),
subject = as.factor(subject)) %>%
#add the year variable in the table from the date
mutate(year = as.factor(format(date, "%Y"))) %>%
#filter to keep only the date from 1999 to 2002
filter(year %in% c(1999 : 2002)) %>% #drop the year variable which is no more useful in the data
select(-year)
recipientinfo_2 <- recipientinfo %>%
#change the variable data type for factor
transform(rid = as.factor(rid),
rvalue = as.factor(rvalue),
mid = as.factor(mid))
referenceinfo_2 <- referenceinfo %>%
#change the variable data type for factor
transform(rfid = as.factor(rfid),
mid = as.factor(mid))
#in this part we will draw many plot, every will have the same theme
theme_set(theme_light())
Number of employee per status :
employeelist_2 %>% select(status) %>% #select the needed variable
group_by(status) %>% count() %>% #count the number of employee per status
ungroup() %>%
#calculate the percentage for each status
mutate(perc = `n`/sum(`n`),
labels = scales::percent(perc)) %>%
#bar chart
ggplot(aes(reorder(status, perc ,sum),perc, fill = status)) +
geom_bar(stat = "identity") +
#to invert the axis's position
coord_flip()+
#customize the theme, title and axis labels
geom_text(aes(label = labels), vjust = 0.5, size = 4) + #display the percentage for each category at the end of the corresponding bar
scale_y_continuous(labels = scales::percent_format())+
ggtitle("Number of employee per status in Enron company")+
labs(y = "Percentage (%)",x = "Employee status") +
scale_fill_brewer(palette = "Set3",
#to display the NA in grey on the graph
na.value = "grey50")+
theme(legend.position = "none")
The above bar chart shows us that:
most of the employee have an employee or unknown status (respectively 27.48% and 21.48%)
they have few lawyer (less than 1% of the total number of employee)
surprisingly a lot of employee have a vice president status (average 15% of the employee)
it has a similar number of manager, director, and trader in the company (average 9% for each)
at the head of the company it has several CEO, President, and managing director (average 2% for each)
First of all in the df_message we count the distinct email address for the sender and the recipient as well as often they appear in the table:
#count the number of disctint sender email address
sender_count <- df_message %>% select(sender) %>% #keep only the variable we need
distinct(sender) %>% #keep only once each email address
count() #count them
#count the number of disctint recipient email address
recipient_count <- df_message %>% select(rvalue) %>% distinct(rvalue) %>% count()
In the df_message table we observed that their exist 68065 email address for receiver and 17502 for sender. The important difference between them suggesting several are exchange between employee and person outside the company.
#Display the top 10 email address of sender
p1 <- df_message %>% group_by(sender)%>% count() %>% #to count the number of email send per email address
arrange(desc(n)) %>% head(10) %>% #to get only the 10 email address with the most important number of email send
#bar chart
ggplot(aes(reorder(sender, n, sum), n, fill = sender)) +
geom_bar(stat="identity") +
coord_flip() +
#graph title and label
labs(title = "Top 10 Enron's employee email sender")+
xlab("Employee's email addres")+
ylab("Number of email send") +
scale_fill_brewer(palette = "Set3")+
theme(legend.position = "none",
plot.margin = margin(10, 10, 10, 20))
#Display the top 10 email address of recipient
p2 <- df_message %>% filter(rtype == "TO") %>% #select only the email of the direct concerned receiver
group_by(rvalue)%>% count() %>% #to count the number of email send per email address
arrange(desc(n)) %>% head(10) %>% #to get only the 10 email address with the most important number of email send
#bar chart
ggplot(aes(reorder(rvalue, n, sum), n, fill = rvalue)) +
geom_bar(stat="identity") +
coord_flip() +
#graph title and label
labs(title = "Top 10 Enron's employee email receiver",
subtitle = "Only principal receiver")+
xlab("Employee's email address")+
ylab("Number of email recipient") +
scale_fill_brewer(palette = "Set3")+
theme(legend.position = "none",
plot.margin = margin(10, 10, 10, 20))
#arrange the plot on the same place
ggarrange(p1, p2,
nrow=2 )
The above plot shown us that, the top email sender is Jeff Dasovich and the top direct receiver is no.address which could be a general email address to send the same email at a list of person associate to it. In the recipient, Jeff Dasovich is also the person who received the highest number of email. In the employeelist dataset we can see that, he has an employee status.
employeelist_2[employeelist_2$Email_id == "jeff.dasovich@enron.com", ]
## eid firstName lastName Email_id Email2
## 42 73 Jeff Dasovich jeff.dasovich@enron.com jeff_dasovich@enron.com
## folder status
## 42 dasovich-j Employee
To simplify the association between the employee status and their email we merged the email_id variable in the employeelist_2 table with the sender variable in the df_message. Before to do it we change the name of that variable for sender_employee_status to associate the status at a sender.
employeelist_2_sender_merged <- employeelist_2 %>% select(Email_id, status) %>%
rename(sender = Email_id, sender_status = status)
df_message_status <- left_join(df_message, employeelist_2_sender_merged, #the table we merged
by = "sender") #the variable used for merging
df_message_status %>% filter(!is.na(sender_status))
## rid mid rtype rvalue
## 1 315 93 TO chris.mallory@enron.com
## 2 316 93 TO paul.choi@enron.com
## 3 317 93 TO greg.wolfe@enron.com
## 4 318 93 TO stewart.rosman@enron.com
## 5 319 93 TO robert.badeer@enron.com
## 6 3523 465 TO james.d.steffes@enron.com
## 7 3524 465 TO mona.petrochko@enron.com
## 8 3525 465 TO sandra.mccubbin@enron.com
## 9 3526 465 TO dennis.benevides@enron.com
## 10 3527 465 TO roger.yang@enron.com
## 11 3528 465 TO snovosel@enron.com
## 12 3529 465 TO joe.hartsoe@enron.com
## 13 3530 465 TO susan.mara@enron.com
## 14 3531 465 TO bruno.gaillard@enron.com
## 15 3532 465 TO richard.shapiro@enron.com
## 16 3533 465 TO karen.denne@enron.com
## 17 3534 465 TO peggy.mahoney@enron.com
## 18 3893 517 TO susan.mara@enron.com
## 19 3894 517 TO mona.petrochko@enron.com
## 20 3895 517 TO sandra.mccubbin@enron.com
## 21 3896 517 TO james.d.steffes@enron.com
## 22 3897 517 TO richard.shapiro@enron.com
## 23 3898 517 TO joe.hartsoe@enron.com
## 24 3899 517 TO cynthia.sandherr@enron.com
## 25 3900 517 TO dennis.benevides@enron.com
## 26 3901 517 TO roger.yang@enron.com
## 27 3902 517 TO douglas.condon@enron.com
## 28 3903 517 TO sarah.novosel@enron.com
## 29 3904 517 TO bruno.gaillard@enron.com
## 30 3915 527 TO sarah.novosel@enron.com
## 31 3916 527 TO james.d.steffes@enron.com
## 32 3961 538 TO james.d.steffes@enron.com
## 33 3962 538 TO richard.shapiro@enron.com
## 34 3963 538 TO joe.hartsoe@enron.com
## 35 3964 538 TO sarah.novosel@enron.com
## 36 3965 538 TO susan.mara@enron.com
## 37 3966 538 TO mona.petrochko@enron.com
## 38 3967 538 TO sandra.mccubbin@enron.com
## 39 3968 538 TO bruno.gaillard@enron.com
## 40 3969 538 TO karen.denne@enron.com
## 41 3970 538 TO peggy.mahoney@enron.com
## 42 3971 538 TO mpalmer@enron.com
## 43 4001 541 TO richard.shapiro@enron.com
## 44 4002 541 TO sandra.mccubbin@enron.com
## 45 4003 541 TO mona.petrochko@enron.com
## 46 4004 541 TO susan.mara@enron.com
## 47 4005 541 TO bruno.gaillard@enron.com
## 48 4006 541 TO james.d.steffes@enron.com
## 49 4007 541 TO karen.denne@enron.com
## 50 4008 541 TO peggy.mahoney@enron.com
## 51 4009 541 TO mpalmer@enron.com
## 52 4010 541 TO joe.hartsoe@enron.com
## 53 4011 541 TO cynthia.sandherr@enron.com
## 54 4012 541 TO sarah.novosel@enron.com
## 55 4013 541 TO dennis.benevides@enron.com
## 56 4014 541 TO roger.yang@enron.com
## 57 4015 541 TO douglas.condon@enron.com
## 58 4016 542 TO dennis.benevides@enron.com
## 59 4017 542 TO roger.yang@enron.com
## 60 4018 542 TO douglas.condon@enron.com
## 61 6076 841 TO no.address@enron.com
## 62 6079 844 TO paul.mead@barcap.com
## 63 6080 845 TO monaco@enron.com
## 64 6081 845 TO john.monaco@citi.com
## 65 6082 846 TO ina.rangel@enron.com
## 66 6083 847 TO mike.grigsby@enron.com
## 67 6084 848 TO mike.grigsby@enron.com
## 68 6085 849 TO ina.rangel@enron.com
## 69 6255 863 TO plombardo@plantsystems.com
## 70 6353 868 TO dean.mccallister@enron.com
## 71 6354 868 TO bill.rapp@enron.com
## 72 6355 868 CC bob.bandel@enron.com
## 73 6356 868 CC eric.gadd@enron.com
## 74 6357 868 BCC bob.bandel@enron.com
## 75 6358 868 BCC eric.gadd@enron.com
## 76 6383 873 TO team.monahans@enron.com
## 77 6384 873 TO bob.bandel@enron.com
## 78 6385 873 TO robert.baker@enron.com
## 79 6386 873 CC darrell.schoolcraft@enron.com
## 80 6387 873 CC eric.gadd@enron.com
## 81 6388 873 BCC darrell.schoolcraft@enron.com
## 82 6389 873 BCC eric.gadd@enron.com
## 83 6478 887 TO lorna.brennan@enron.com
## 84 6529 894 TO lorraine.lindberg@enron.com
## 85 6530 894 CC eric.gadd@enron.com
## 86 6531 894 BCC eric.gadd@enron.com
## 87 6542 899 TO eric.gadd@enron.com
## 88 6543 899 TO steven.harris@enron.com
## 89 6544 899 CC susan.wadle@enron.com
## 90 6545 899 CC bruce.tuttle@enron.com
## 91 6546 899 BCC susan.wadle@enron.com
## 92 6547 899 BCC bruce.tuttle@enron.com
## 93 6589 905 TO eric.gadd@enron.com
## 94 6590 905 TO susan.wadle@enron.com
## 95 6591 905 CC bruce.tuttle@enron.com
## 96 6592 905 BCC bruce.tuttle@enron.com
## 97 6594 907 TO eric.gadd@enron.com
## 98 6595 907 TO steven.harris@enron.com
## 99 6596 907 TO stanley.horton@enron.com
## 100 6597 907 TO steve.dowd@enron.com
## 101 6598 907 CC susan.wadle@enron.com
## 102 6599 907 CC cindy.stark@enron.com
## 103 6600 907 BCC susan.wadle@enron.com
## 104 6601 907 BCC cindy.stark@enron.com
## 105 6628 919 TO eric.gadd@enron.com
## 106 6629 919 TO susan.wadle@enron.com
## 107 6630 919 CC steven.harris@enron.com
## 108 6631 919 BCC steven.harris@enron.com
## 109 6650 926 TO eric.gadd@enron.com
## 110 6651 926 TO susan.wadle@enron.com
## 111 6658 928 TO eric.gadd@enron.com
## 112 6659 928 TO susan.wadle@enron.com
## 113 6663 930 TO stevenc@pandaenergy.com
## 114 6664 930 CC beadrian@tecoenergy.com
## 115 6665 930 BCC beadrian@tecoenergy.com
## 116 6666 931 TO eric.gadd@enron.com
## 117 6667 931 TO susan.wadle@enron.com
## 118 6668 932 TO eric.gadd@enron.com
## 119 6669 932 TO susan.wadle@enron.com
## 120 6681 937 TO stevenc@pandaenergy.com
## 121 6682 937 CC eric.gadd@enron.com
## 122 6683 937 CC michelle.lokay@enron.com
## 123 6684 937 BCC eric.gadd@enron.com
## 124 6685 937 BCC michelle.lokay@enron.com
## 125 6717 947 TO alstad@enron.com
## 126 6718 947 TO jalstad@ensr.com
## 127 6719 947 CC scott.patti@enron.com
## 128 6720 947 CC john.shafer@enron.com
## 129 6721 947 CC eric.gadd@enron.com
## 130 6722 947 CC kevin.hyatt@enron.com
## 131 6723 947 CC robert.kilmer@enron.com
## 132 6724 947 CC doug.cebryk@enron.com
## 133 6725 947 CC jon.schmidt@enron.com
## 134 6726 947 BCC scott.patti@enron.com
## 135 6727 947 BCC john.shafer@enron.com
## 136 6728 947 BCC eric.gadd@enron.com
## 137 6729 947 BCC kevin.hyatt@enron.com
## 138 6730 947 BCC robert.kilmer@enron.com
## 139 6731 947 BCC doug.cebryk@enron.com
## 140 6732 947 BCC jon.schmidt@enron.com
## 141 6734 949 TO patti@enron.com
## 142 6735 949 TO spatti@ensr.com
## 143 6736 949 CC john.shafer@enron.com
## 144 6737 949 CC eric.gadd@enron.com
## 145 6738 949 CC larry.f.campbell@enron.com
## 146 6739 949 CC kevin.hyatt@enron.com
## 147 6740 949 CC robert.kilmer@enron.com
## 148 6741 949 CC doug.cebryk@enron.com
## 149 6742 949 CC jon.schmidt@enron.com
## 150 6743 949 CC jon.alstad@enron.com
## 151 6744 949 BCC john.shafer@enron.com
## 152 6745 949 BCC eric.gadd@enron.com
## 153 6746 949 BCC larry.f.campbell@enron.com
## 154 6747 949 BCC kevin.hyatt@enron.com
## 155 6748 949 BCC robert.kilmer@enron.com
## 156 6749 949 BCC doug.cebryk@enron.com
## 157 6750 949 BCC jon.schmidt@enron.com
## 158 6751 949 BCC jon.alstad@enron.com
## 159 7056 989 TO gina.taylor@enron.com
## 160 7071 991 TO jw1000mac@yahoo.com
## 161 7159 1007 TO scott . patti@enron.com
## 162 7160 1007 TO doug.cebryk@enron.com
## 163 7162 1009 TO spatti@ensr.com
## 164 7209 1018 TO kevin.hyatt@enron.com
## 165 7210 1018 CC john.shafer@enron.com
## 166 7211 1018 BCC john.shafer@enron.com
## 167 7212 1019 TO kevin.hyatt@enron.com
## 168 7333 1053 TO eric.faucheaux@enron.com
## 169 7334 1053 TO gale.ramsaran@enron.com
## 170 7335 1053 CC morgan.gottsponer@enron.com
## 171 7336 1053 CC john.millar@enron.com
## 172 7337 1053 BCC morgan.gottsponer@enron.com
## 173 7338 1053 BCC john.millar@enron.com
## 174 7427 1067 TO kevin.hyatt@enron.com
## 175 7428 1068 TO jeffery.fawcett@enron.com
## 176 7429 1068 CC morgan.gottsponer@enron.com
## 177 7430 1068 CC eric.faucheaux@enron.com
## 178 7431 1068 CC kevin.hyatt@enron.com
## 179 7432 1068 CC steven.harris@enron.com
## 180 7433 1068 CC lorraine.lindberg@enron.com
## 181 7434 1068 CC darrell.schoolcraft@enron.com
## 182 7435 1068 CC susan.scott@enron.com
## 183 7436 1068 CC earl.chanley@enron.com
## 184 7437 1068 BCC morgan.gottsponer@enron.com
## 185 7438 1068 BCC eric.faucheaux@enron.com
## 186 7439 1068 BCC kevin.hyatt@enron.com
## 187 7440 1068 BCC steven.harris@enron.com
## 188 7441 1068 BCC lorraine.lindberg@enron.com
## 189 7442 1068 BCC darrell.schoolcraft@enron.com
## 190 7443 1068 BCC susan.scott@enron.com
## 191 7444 1068 BCC earl.chanley@enron.com
## 192 7651 1082 TO drew.fossum@enron.com
## 193 7652 1082 CC susan.scott@enron.com
## 194 7653 1082 CC sstojic@gbmdc.com
## 195 7654 1082 CC mary.miller@enron.com
## 196 7655 1082 CC keith.petersen@enron.com
## 197 7656 1082 CC shelley.corman@enron.com
## 198 7657 1082 CC maria.pavlou@enron.com
## 199 7658 1082 CC jeffery.fawcett@enron.com
## 200 7659 1082 CC kevin.hyatt@enron.com
## 201 7660 1082 CC lorraine.lindberg@enron.com
## 202 7661 1082 BCC susan.scott@enron.com
## 203 7662 1082 BCC sstojic@gbmdc.com
## 204 7663 1082 BCC mary.miller@enron.com
## 205 7664 1082 BCC keith.petersen@enron.com
## 206 7665 1082 BCC shelley.corman@enron.com
## 207 7666 1082 BCC maria.pavlou@enron.com
## 208 7667 1082 BCC jeffery.fawcett@enron.com
## 209 7668 1082 BCC kevin.hyatt@enron.com
## 210 7669 1082 BCC lorraine.lindberg@enron.com
## 211 7806 1096 TO no.address@enron.com
## 212 7807 1097 TO no.address@enron.com
## 213 7808 1098 TO no.address@enron.com
## 214 7809 1099 TO no.address@enron.com
## 215 7810 1100 TO no.address@enron.com
## 216 7811 1101 TO no.address@enron.com
## 217 7812 1102 TO no.address@enron.com
## 218 7813 1103 TO no.address@enron.com
## 219 7814 1104 TO no.address@enron.com
## 220 7815 1105 TO no.address@enron.com
## 221 7816 1106 TO no.address@enron.com
## 222 7817 1107 TO no.address@enron.com
## 223 7818 1108 TO no.address@enron.com
## 224 7819 1109 TO no.address@enron.com
## 225 7820 1110 TO no.address@enron.com
## 226 7821 1111 TO no.address@enron.com
## 227 7822 1112 TO no.address@enron.com
## 228 7823 1113 TO no.address@enron.com
## 229 7824 1114 TO no.address@enron.com
## 230 7825 1115 TO no.address@enron.com
## 231 7826 1116 TO no.address@enron.com
## 232 7827 1117 TO no.address@enron.com
## 233 7828 1118 TO no.address@enron.com
## 234 7829 1119 TO no.address@enron.com
## 235 7830 1120 TO no.address@enron.com
## 236 7831 1121 TO no.address@enron.com
## 237 7832 1122 TO no.address@enron.com
## 238 7833 1123 TO no.address@enron.com
## 239 7834 1124 TO no.address@enron.com
## 240 7835 1125 TO no.address@enron.com
## 241 7836 1126 TO no.address@enron.com
## 242 7837 1127 TO no.address@enron.com
## 243 7838 1128 TO no.address@enron.com
## 244 7839 1129 TO no.address@enron.com
## 245 7840 1130 TO no.address@enron.com
## 246 7841 1131 TO no.address@enron.com
## 247 7842 1132 TO no.address@enron.com
## 248 7843 1133 TO no.address@enron.com
## 249 7844 1134 TO no.address@enron.com
## 250 7845 1135 TO no.address@enron.com
## 251 7846 1136 TO no.address@enron.com
## 252 7847 1137 TO no.address@enron.com
## 253 7848 1138 TO no.address@enron.com
## 254 7849 1139 TO no.address@enron.com
## 255 7850 1140 TO no.address@enron.com
## 256 7851 1141 TO no.address@enron.com
## 257 7852 1142 TO no.address@enron.com
## 258 7853 1143 TO no.address@enron.com
## 259 7854 1144 TO no.address@enron.com
## 260 7855 1145 TO no.address@enron.com
## 261 7856 1146 TO no.address@enron.com
## 262 7857 1147 TO no.address@enron.com
## 263 7858 1148 TO no.address@enron.com
## 264 7859 1149 TO no.address@enron.com
## 265 7860 1150 TO no.address@enron.com
## 266 7861 1151 TO no.address@enron.com
## 267 7862 1152 TO no.address@enron.com
## 268 7863 1153 TO no.address@enron.com
## 269 7864 1154 TO no.address@enron.com
## 270 7865 1155 TO no.address@enron.com
## 271 7866 1156 TO no.address@enron.com
## 272 7867 1157 TO no.address@enron.com
## 273 7868 1158 TO no.address@enron.com
## 274 7869 1159 TO no.address@enron.com
## 275 7870 1160 TO no.address@enron.com
## 276 7871 1161 TO no.address@enron.com
## 277 7872 1162 TO no.address@enron.com
## 278 7920 1182 TO no.address@enron.com
## 279 7921 1182 CC carries@tradefairgroup.com
## 280 7922 1182 BCC carries@tradefairgroup.com
## 281 8007 1223 TO kevin.hyatt@enron.com
## 282 8091 1244 TO eric.gadd@enron.com
## 283 8092 1245 TO eric.gadd@enron.com
## 284 8093 1246 TO eric.gadd@enron.com
## 285 8094 1247 TO rkboone@duke-energy.com
## 286 8095 1247 CC lorraine.lindberg@enron.com
## 287 8096 1247 BCC lorraine.lindberg@enron.com
## 288 8097 1248 TO faggard@enron.com
## 289 8098 1248 TO faggard@cpchem.com
## 290 8099 1249 TO willthurmond@emerging-markets.com
## 291 8100 1250 TO mark.brand@enron.com
## 292 8101 1251 TO eric.gadd@enron.com
## 293 8102 1251 CC michelle.lokay@enron.com
## 294 8103 1251 BCC michelle.lokay@enron.com
## 295 8104 1252 TO julie.armstrong@enron.com
## 296 8105 1253 TO steven.harris@enron.com
## 297 8106 1253 TO lindy.donoho@enron.com
## 298 8107 1253 TO tracy.geaccone@enron.com
## 299 8108 1253 TO rod.hayslett@enron.com
## 300 8109 1254 TO v.dickerson@enron.com
## 301 8110 1255 TO dennis.lee@enron.com
## 302 8111 1256 TO mike.nelson@enron.com
## 303 8112 1257 TO bob.chandler@enron.com
## 304 8113 1258 TO a..smith@enron.com
## 305 8114 1259 TO debra.thompson@enron.com
## 306 8115 1260 TO dennis.alters@enron.com
## 307 8116 1260 TO larry.f.campbell@enron.com
## 308 8117 1260 TO doug.cebryk@enron.com
## 309 8118 1260 TO sarah.haden@enron.com
## 310 8119 1260 TO blair.lichtenwalter@enron.com
## 311 8120 1260 TO teb.lokey@enron.com
## 312 8121 1260 TO ron.matthews@enron.com
## 313 8122 1260 TO johnny.mcgee@enron.com
## 314 8123 1260 TO john.shafer@enron.com
## 315 8124 1260 TO gina.taylor@enron.com
## 316 8125 1260 TO stephen.veatch@enron.com
## 317 8126 1260 TO kimberly.watson@enron.com
## 318 8127 1261 TO jesse.morris@enron.com
## 319 8128 1262 TO faggard@cpchem.com
## 320 8129 1263 TO susan.wadle@enron.com
## 321 8130 1263 CC eric.gadd@enron.com
## 322 8131 1263 BCC eric.gadd@enron.com
## 323 8132 1264 TO jerry.hyatt@eaglegl.com
## 324 8133 1265 TO steven.harris@enron.com
## 325 8134 1265 TO lindy.donoho@enron.com
## 326 8135 1265 TO kimberly.watson@enron.com
## 327 8136 1265 TO eric.gadd@enron.com
## 328 8137 1265 CC susan.wadle@enron.com
## 329 8138 1265 CC audrey.robertson@enron.com
## 330 8139 1265 CC v.dickerson@enron.com
## 331 8140 1265 BCC susan.wadle@enron.com
## 332 8141 1265 BCC audrey.robertson@enron.com
## 333 8142 1265 BCC v.dickerson@enron.com
## 334 8143 1266 TO susan.wadle@enron.com
## 335 8144 1266 TO audrey.robertson@enron.com
## 336 8145 1267 TO steven.harris@enron.com
## 337 8146 1267 TO lindy.donoho@enron.com
## 338 8147 1267 TO kimberly.watson@enron.com
## 339 8148 1267 TO eric.gadd@enron.com
## 340 8149 1267 CC v.dickerson@enron.com
## 341 8150 1267 BCC v.dickerson@enron.com
## 342 8151 1268 TO bethc@pandaenergy.com
## 343 8152 1268 CC michelle.lokay@enron.com
## 344 8153 1268 BCC michelle.lokay@enron.com
## 345 8154 1269 TO john.millar@enron.com
## 346 8155 1270 TO susan.wadle@enron.com
## 347 8156 1271 TO john.millar@enron.com
## 348 8157 1272 TO rector@enron.com
## 349 8158 1272 TO grector@reliant.com
## 350 8159 1273 TO carries@tradefairgroup.com
## 351 8160 1274 TO lillian.villarreal@enron.com
## 352 8161 1274 TO geneva.davis@enron.com
## 353 8162 1274 TO pamela.rush@enron.com
## 354 8163 1275 TO rector@enron.com
## 355 8164 1275 TO grector@reliant.com
## 356 8165 1276 TO josh_neal@tejastoyota.com
## 357 8166 1277 TO carries@tradefairgroup.com
## 358 8167 1278 TO rector@enron.com
## 359 8168 1278 TO grector@reliant.com
## 360 8169 1279 TO james.centilli@enron.com
## 361 8170 1279 TO david.junus@enron.com
## 362 8171 1279 CC eric.gadd@enron.com
## 363 8172 1279 BCC eric.gadd@enron.com
## 364 8173 1280 TO susan.wadle@enron.com
## 365 8174 1280 TO dennis.alters@enron.com
## 366 8175 1280 TO larry.f.campbell@enron.com
## 367 8176 1280 TO doug.cebryk@enron.com
## 368 8177 1280 TO sarah.haden@enron.com
## 369 8178 1280 TO blair.lichtenwalter@enron.com
## 370 8179 1280 TO teb.lokey@enron.com
## 371 8180 1280 TO ron.matthews@enron.com
## 372 8181 1280 TO johnny.mcgee@enron.com
## 373 8182 1280 TO john.shafer@enron.com
## 374 8183 1280 TO gina.taylor@enron.com
## 375 8184 1280 TO stephen.veatch@enron.com
## 376 8185 1280 TO kimberly.watson@enron.com
## 377 8186 1281 TO eric.gadd@enron.com
## 378 8187 1281 TO susan.wadle@enron.com
## 379 8188 1282 TO harvey.harmon@elpaso.com
## 380 8189 1283 TO carries@tradefairgroup.com
## 381 8190 1284 TO ron.matthews@enron.com
## 382 8191 1285 TO carries@tradefairgroup.com
## 383 8192 1286 TO ron.matthews@enron.com
## 384 8193 1286 TO ben.asante@enron.com
## 385 8194 1286 CC david.junus@enron.com
## 386 8195 1286 CC eric.gadd@enron.com
## 387 8196 1286 BCC david.junus@enron.com
## 388 8197 1286 BCC eric.gadd@enron.com
## 389 8198 1287 TO lillian.villarreal@enron.com
## 390 8199 1287 TO geneva.davis@enron.com
## 391 8200 1288 TO ben.asante@enron.com
## 392 8201 1288 TO ron.matthews@enron.com
## 393 8202 1288 CC michelle.lokay@enron.com
## 394 8203 1288 CC david.junus@enron.com
## 395 8204 1288 CC james.centilli@enron.com
## 396 8205 1288 CC darrell.schoolcraft@enron.com
## 397 8206 1288 CC dennis.alters@enron.com
## 398 8207 1288 CC eric.gadd@enron.com
## 399 8208 1288 BCC michelle.lokay@enron.com
## 400 8209 1288 BCC david.junus@enron.com
## 401 8210 1288 BCC james.centilli@enron.com
## 402 8211 1288 BCC darrell.schoolcraft@enron.com
## 403 8212 1288 BCC dennis.alters@enron.com
## 404 8213 1288 BCC eric.gadd@enron.com
## 405 8214 1289 TO ron.matthews@enron.com
## 406 8215 1289 TO ben.asante@enron.com
## 407 8216 1289 CC darrell.schoolcraft@enron.com
## 408 8217 1289 CC michelle.lokay@enron.com
## 409 8218 1289 CC james.centilli@enron.com
## 410 8219 1289 CC david.junus@enron.com
## 411 8220 1289 CC eric.gadd@enron.com
## 412 8221 1289 CC dennis.alters@enron.com
## 413 8222 1289 BCC darrell.schoolcraft@enron.com
## 414 8223 1289 BCC michelle.lokay@enron.com
## 415 8224 1289 BCC james.centilli@enron.com
## 416 8225 1289 BCC david.junus@enron.com
## 417 8226 1289 BCC eric.gadd@enron.com
## 418 8227 1289 BCC dennis.alters@enron.com
## 419 8228 1290 TO lillian.villarreal@enron.com
## 420 8229 1291 TO peitulsa@aol.com
## 421 8230 1292 TO jjcletters@thestreet.com
## 422 8231 1293 TO jhyatt@msn.com
## 423 8232 1294 TO lorna.brennan@enron.com
## 424 8233 1295 TO michelle.foust@enron.com
## 425 8234 1296 TO ron.matthews@enron.com
## 426 8235 1297 TO eric.gadd@enron.com
## 427 8236 1297 CC susan.wadle@enron.com
## 428 8237 1297 BCC susan.wadle@enron.com
## 429 8238 1298 TO buzz.smith@enron.com
## 430 8239 1298 CC dennis.alters@enron.com
## 431 8240 1298 BCC dennis.alters@enron.com
## 432 8241 1299 TO v.dickerson@enron.com
## 433 8242 1299 CC eric.gadd@enron.com
## 434 8243 1299 BCC eric.gadd@enron.com
## 435 8244 1300 TO jerry.hyatt@eaglegl.com
## 436 8245 1301 TO a..howard@enron.com
## 437 8246 1301 CC eric.gadd@enron.com
## 438 8247 1301 BCC eric.gadd@enron.com
## 439 8248 1302 TO jerry.hyatt@eaglegl.com
## 440 8249 1303 TO gapinski@enron.com
## 441 8250 1303 TO michael.gapinski@ubspainewebber.com
## 442 8251 1304 TO michael.gapinski@ubspainewebber.com
## 443 8252 1304 CC rafael.herrera@ubspainewebber.com
## 444 8253 1304 BCC rafael.herrera@ubspainewebber.com
## 445 8254 1305 TO wayne.sartore@cnpl.enbridge.com
## 446 8255 1305 CC carries@tradefairgroup.com
## 447 8256 1305 BCC carries@tradefairgroup.com
## 448 8257 1306 TO anzer@enron.com
## 449 8258 1306 TO anzer@amtexenterprises.com
## 450 8259 1307 TO lorna.brennan@enron.com
## 451 8260 1308 TO ron.matthews@enron.com
## 452 8261 1308 TO darrell.schoolcraft@enron.com
## 453 8262 1309 TO eric.gadd@enron.com
## 454 8263 1309 TO susan.wadle@enron.com
## 455 8264 1310 TO carries@tradefairgroup.com
## 456 8265 1311 TO julie.armstrong@enron.com
## 457 8266 1311 CC julie.armstrong@enron.com
## 458 8267 1311 BCC julie.armstrong@enron.com
## 459 8268 1312 TO slpark@kpmg.com
## 460 8269 1313 TO jose.dumenigo@ps.ge.com
## 461 8270 1314 TO carries@tradefairgroup.com
## 462 8271 1315 TO no.address@enron.com
## 463 8272 1315 TO no.address@enron.com
## 464 8273 1315 TO no.address@enron.com
## 465 8274 1315 TO no.address@enron.com
## 466 8275 1315 TO john.millar@enron.com
## 467 8276 1315 TO no.address@enron.com
## 468 8277 1315 TO no.address@enron.com
## 469 8278 1315 TO no.address@enron.com
## 470 8279 1315 TO no.address@enron.com
## 471 8280 1316 TO nancy.bagot@enron.com
## 472 8281 1317 TO steven.harris@enron.com
## 473 8282 1318 TO herrera@enron.com
## 474 8283 1318 TO rafael.herrera@ubspainewebber.com
## 475 8284 1319 TO doug.cebryk@enron.com
## 476 8285 1320 TO tdickers@westerngas.com
## 477 8286 1320 CC michelle.lokay@enron.com
## 478 8287 1320 BCC michelle.lokay@enron.com
## 479 8288 1321 TO lillian.villarreal@enron.com
## 480 8289 1322 TO elberg.gelin@enron.com
## 481 8290 1322 TO v.dickerson@enron.com
## 482 8291 1323 TO lmfoust@aol.com
## 483 8292 1324 TO kenneth.lay@enron.com
## 484 8293 1325 TO kimberly.watson@enron.com
## 485 8294 1325 CC tracy.geaccone@enron.com
## 486 8295 1325 BCC tracy.geaccone@enron.com
## 487 8296 1326 TO lmfoust@aol.com
## 488 8297 1327 TO bcarlton@elwoodbox.com
## 489 8298 1328 TO eric.gadd@enron.com
## 490 8299 1329 TO appachu@internetsystemsglobal.com
## 491 8300 1330 TO info@whistlergroup.com
## 492 8301 1331 TO steve.faggard@chevron.com
## 493 8302 1332 TO asfa@chevron.com
## 494 8303 1333 TO stephen.dowd@enron.com
## 495 8304 1334 TO lorraine.lindberg@enron.com
## 496 8305 1335 TO lawrencen@pinnacleusa.com
## 497 8306 1336 TO no.address@enron.com
## 498 8307 1336 CC carries@tradefairgroup.com
## 499 8308 1336 BCC carries@tradefairgroup.com
## 500 8309 1337 TO lorraine.lindberg@enron.com
## 501 8310 1338 TO kimberly.watson@enron.com
## 502 8311 1338 CC tracy.geaccone@enron.com
## 503 8312 1338 BCC tracy.geaccone@enron.com
## 504 8313 1339 TO susan.wadle@enron.com
## 505 8314 1339 TO eric.gadd@enron.com
## 506 8315 1339 TO steve.dowd@enron.com
## 507 8316 1340 TO pallard@pioneergas.com
## 508 8317 1341 TO blair.lichtenwalter@enron.com
## 509 8318 1342 TO janet.butler@enron.com
## 510 8319 1343 TO jfawcett@sempra.com
## 511 8320 1344 TO crescida.mccue@humble.k12.tx.us
## 512 8321 1345 TO blair.lichtenwalter@enron.com
## 513 8322 1345 TO teb.lokey@enron.com
## 514 8323 1345 TO robert.kilmer@enron.com
## 515 8324 1345 TO eric.gadd@enron.com
## 516 8325 1345 TO steven.harris@enron.com
## 517 8326 1346 TO deyoung@enron.com
## 518 8327 1346 TO richard.deyoung@ubspw.com
## 519 8328 1347 TO susan.wadle@enron.com
## 520 8329 1348 TO james.centilli@enron.com
## 521 8330 1348 CC eric.gadd@enron.com
## 522 8331 1348 BCC eric.gadd@enron.com
## 523 8332 1349 TO susan.wadle@enron.com
## 524 8333 1350 TO pallard@pioneergas.com
## 525 8334 1351 TO david.a.bar@us.pwcglobal.com
## 526 8335 1352 TO susan.wadle@enron.com
## 527 8336 1353 TO lorraine.lindberg@enron.com
## 528 8337 1354 TO adela.briner@trox.com
## 529 8338 1355 TO dean.mccallister@enron.com
## 530 8339 1355 CC bob.bandel@enron.com
## 531 8340 1355 BCC bob.bandel@enron.com
## 532 8341 1356 TO lmfoust@aol.com
## 533 8342 1357 TO lmfoust@aol.com
## 534 8343 1358 TO lmfoust@aol.com
## 535 8344 1359 TO jerry.hyatt@eaglegl.com
## 536 8345 1360 TO miller@enron.com
## 537 8346 1360 TO jill.miller@fmcti.com
## 538 8347 1361 TO etleaden@aol.com
## 539 8348 1362 TO paul.cherry@enron.com
## 540 8349 1363 TO eric.gadd@enron.com
## 541 8350 1364 TO victoria.wilbeck@enron.com
## 542 8351 1365 TO donna.lowry@enron.com
## 543 8352 1366 TO uironworks@email.msn.com
## 544 8353 1367 TO lindy.donoho@enron.com
## 545 8354 1367 TO lorraine.lindberg@enron.com
## 546 8355 1367 TO tk.lohman@enron.com
## 547 8356 1367 TO michelle.lokay@enron.com
## 548 8357 1367 TO mark.mcconnell@enron.com
## 549 8358 1367 TO audrey.robertson@enron.com
## 550 8359 1367 TO kimberly.watson@enron.com
## 551 8360 1367 TO paul.y barbo@enron.com
## 552 8361 1368 TO ron.matthews@enron.com
## 553 8362 1368 TO l..eisenstein@enron.com
## 554 8363 1368 TO l..smith@enron.com
## 555 8364 1368 CC eric.gadd@enron.com
## 556 8365 1368 BCC eric.gadd@enron.com
## 557 8366 1369 TO l..eisenstein@enron.com
## 558 8367 1370 TO carries@tradefairgroup.com
## 559 8368 1371 TO fawcett@enron.com
## 560 8369 1371 TO jfawcett@sempra.com
## 561 8370 1372 TO karen.brostad@enron.com
## 562 8371 1373 TO eric.gadd@enron.com
## 563 8372 1374 TO glen.hass@enron.com
## 564 8373 1374 CC eric.gadd@enron.com
## 565 8374 1374 CC steven.harris@enron.com
## 566 8375 1374 BCC eric.gadd@enron.com
## 567 8376 1374 BCC steven.harris@enron.com
## 568 8377 1375 TO karen.brostad@enron.com
## 569 8378 1376 TO steven.harris@enron.com
## 570 8379 1376 TO kimberly.watson@enron.com
## 571 8380 1376 CC eric.gadd@enron.com
## 572 8381 1376 BCC eric.gadd@enron.com
## 573 8382 1377 TO pallard@pioneergas.com
## 574 8383 1378 TO uironworks@email.msn.com
## 575 8384 1379 TO bill.rapp@enron.com
## 576 8385 1380 TO bill.rapp@enron.com
## 577 8386 1380 CC eric.gadd@enron.com
## 578 8387 1380 BCC eric.gadd@enron.com
## 579 8388 1381 TO scott_struble@nas.adp.com
## 580 8389 1382 TO communications@enron.com
## 581 8390 1383 TO eric.gadd@enron.com
## 582 8391 1384 TO mwalenciak@southwesternpower.com
## 583 8392 1385 TO eric.gadd@enron.com
## 584 8393 1386 TO jima@pandaenergy.com
## 585 8394 1387 TO susan.wadle@enron.com
## 586 8395 1387 TO eric.gadd@enron.com
## 587 8396 1388 TO no.address@enron.com
## 588 8397 1388 TO mark.brand@enron.com
## 589 8398 1389 TO e..rosenberg@enron.com
## 590 8399 1389 CC eric.gadd@enron.com
## 591 8400 1389 BCC eric.gadd@enron.com
## 592 8401 1390 TO jima@pandaenergy.com
## 593 8402 1391 TO jschroeter@worldnet.att.net
## 594 8403 1392 TO krejci@enron.com
## 595 8404 1392 TO rick_krejci@kindermorgan.com
## 596 8405 1393 TO lindy.donoho@enron.com
## 597 8406 1393 TO lorraine.lindberg@enron.com
## 598 8407 1393 TO tk.lohman@enron.com
## 599 8408 1393 TO michelle.lokay@enron.com
## 600 8409 1393 TO mark.mcconnell@enron.com
## 601 8410 1393 TO audrey.robertson@enron.com
## 602 8411 1393 TO kimberly.watson@enron.com
## 603 8412 1393 TO paul.y barbo@enron.com
## 604 8413 1393 CC eric.gadd@enron.com
## 605 8414 1393 BCC eric.gadd@enron.com
## 606 8415 1394 TO roger.westbrook@enron.com
## 607 8416 1395 TO eric.gadd@enron.com
## 608 8417 1395 TO lorraine.lindberg@enron.com
## 609 8418 1395 TO kimberly.watson@enron.com
## 610 8419 1395 TO mark.mcconnell@enron.com
## 611 8420 1395 CC steve.dowd@enron.com
## 612 8421 1395 BCC steve.dowd@enron.com
## 613 8422 1396 TO john.buchanan@enron.com
## 614 8423 1397 TO glen.hass@enron.com
## 615 8424 1398 TO leticia.flores@enron.com
## 616 8425 1399 TO bruce.tuttle@enron.com
## 617 8426 1400 TO kovin@enron.com
## 618 8427 1400 TO russ.kovin@elpaso.com
## 619 8428 1401 TO l..smith@enron.com
## 620 8429 1402 TO rehrig@enron.com
## 621 8430 1402 TO paul.rehrig@harrisgroup.com
## 622 8431 1403 TO ron.matthews@enron.com
## 623 8432 1404 TO gvansco@allianceworldwide.com
## 624 8433 1405 TO susan.wadle@enron.com
## 625 8434 1406 TO eric.gadd@enron.com
## 626 8435 1407 TO susan.wadle@enron.com
## 627 8436 1408 TO nicoled@tradefairgroup.com
## 628 8437 1409 TO eric.gadd@enron.com
## 629 8438 1409 CC susan.wadle@enron.com
## 630 8439 1409 BCC susan.wadle@enron.com
## 631 8440 1410 TO bob.bandel@enron.com
## 632 8441 1411 TO roger.westbrook@enron.com
## 633 8442 1412 TO eric.gadd@enron.com
## 634 8443 1413 TO eric.gadd@enron.com
## 635 8444 1414 TO eric.gadd@enron.com
## 636 8445 1415 TO djunus2000@yahoo.com
## 637 8446 1416 TO djunus2000@yahoo.com
## 638 8447 1417 TO susan.wadle@enron.com
## 639 8448 1417 TO eric.gadd@enron.com
## 640 8449 1418 TO djunus2000@yahoo.com
## 641 8450 1419 TO pallard@pioneergas.com
## 642 8451 1420 TO djunus2000@yahoo.com
## 643 8452 1421 TO carries@tradefairgroup.com
## 644 8453 1422 TO tina_leavy@msn.com
## 645 8454 1423 TO jean.mcfarland@enron.com
## 646 8455 1424 TO eric.gadd@enron.com
## 647 8456 1424 TO lorraine.lindberg@enron.com
## 648 8457 1425 TO lmfoust@aol.com
## 649 8458 1426 TO susan.wadle@enron.com
## 650 8459 1427 TO susan.wadle@enron.com
## 651 8460 1428 TO don.mauldin@dvn.com
## 652 8461 1429 TO eric.gadd@enron.com
## 653 8462 1430 TO jean.mcfarland@enron.com
## 654 8463 1431 TO lmfoust@aol.com
## 655 8464 1432 TO bill.rapp@enron.com
## 656 8465 1433 TO lmfoust@aol.com
## 657 8466 1434 TO frank.carriere@enron.com
## 658 8467 1434 CC john.cobb@enron.com
## 659 8468 1434 CC james.saunders@enron.com
## 660 8469 1434 CC mary.hubbard@enron.com
## 661 8470 1434 BCC john.cobb@enron.com
## 662 8471 1434 BCC james.saunders@enron.com
## 663 8472 1434 BCC mary.hubbard@enron.com
## 664 8473 1435 TO lmfoust@aol.com
## 665 8474 1436 TO lmfoust@aol.com
## 666 8475 1437 TO lmfoust@aol.com
## 667 8476 1438 TO lmfoust@aol.com
## 668 8477 1439 TO mark.mcconnell@enron.com
## 669 8478 1440 TO mary.hubbard@enron.com
## 670 8479 1440 CC frank.carriere@enron.com
## 671 8480 1440 BCC frank.carriere@enron.com
## 672 8481 1441 TO lmfoust@aol.com
## 673 8482 1442 TO lmfoust@aol.com
## 674 8483 1443 TO ron.matthews@enron.com
## 675 8484 1444 TO james.centilli@enron.com
## 676 8485 1445 TO james.centilli@enron.com
## 677 8486 1445 CC eric.gadd@enron.com
## 678 8487 1445 BCC eric.gadd@enron.com
## 679 8488 1446 TO dennis.alters@enron.com
## 680 8489 1446 TO larry.f.campbell@enron.com
## 681 8490 1446 TO sarah.haden@enron.com
## 682 8491 1446 TO blair.lichtenwalter@enron.com
## 683 8492 1446 TO teb.lokey@enron.com
## 684 8493 1446 TO ron.matthews@enron.com
## 685 8494 1446 TO johnny.mcgee@enron.com
## 686 8495 1446 TO john.shafer@enron.com
## 687 8496 1446 TO gina.taylor@enron.com
## 688 8497 1446 TO stephen.veatch@enron.com
## 689 8498 1446 TO kimberly.watson@enron.com
## 690 8499 1446 CC eric.gadd@enron.com
## 691 8500 1446 CC susan.wadle@enron.com
## 692 8501 1446 BCC eric.gadd@enron.com
## 693 8502 1446 BCC susan.wadle@enron.com
## 694 8503 1447 TO djunus2000@yahoo.com
## 695 8504 1448 TO lmfoust@aol.com
## 696 8505 1449 TO darrell.schoolcraft@enron.com
## 697 8506 1449 TO ron.matthews@enron.com
## 698 8507 1450 TO frank.carriere@enron.com
## 699 8508 1450 TO mary.hubbard@enron.com
## 700 8509 1451 TO michelle.lokay@enron.com
## 701 8510 1452 TO bruce.tuttle@enron.com
## 702 8511 1453 TO jima@pandaenergy.com
## 703 8512 1454 TO darrell.schoolcraft@enron.com
## 704 8513 1455 TO eric.gadd@enron.com
## 705 8514 1456 TO dennis.lee@enron.com
## 706 8515 1457 TO susan.wadle@enron.com
## 707 8516 1458 TO robert.baker@enron.com
## 708 8517 1458 TO team.monahans@enron.com
## 709 8518 1459 TO rbaker2@enron.com
## 710 8519 1460 TO eric.gadd@enron.com
## 711 8520 1461 TO eric.gadd@enron.com
## 712 8521 1462 TO lmfoust@aol.com
## 713 8522 1463 TO susan.wadle@enron.com
## 714 8523 1464 TO susan.wadle@enron.com
## 715 8524 1465 TO susan.wadle@enron.com
## 716 8525 1466 TO riddell@iolok.com
## 717 8526 1467 TO gdavis42149@yahoo.com
## 718 8527 1468 TO eric.gadd@enron.com
## 719 8528 1469 TO michael.ratner@enron.com
## 720 8529 1470 TO bardblack@aol.com
## 721 8530 1471 TO damon.geneva@prodigy.net
## 722 8531 1472 TO curt_brechtel@apsc.com
## 723 8532 1472 CC eric.gadd@enron.com
## 724 8533 1472 BCC eric.gadd@enron.com
## 725 8534 1473 TO a..howard@enron.com
## 726 8535 1474 TO a..howard@enron.com
## 727 8536 1475 TO jean.mcfarland@enron.com
## 728 8537 1476 TO paul.tate@cinergy.com
## 729 8538 1477 TO a..howard@enron.com
## 730 8539 1477 CC eric.gadd@enron.com
## 731 8540 1477 BCC eric.gadd@enron.com
## 732 8541 1478 TO djunus2000@yahoo.com
## 733 8542 1479 TO a..howard@enron.com
## 734 8543 1480 TO ltaylor@h-s.com
## 735 8544 1481 TO djunus2000@yahoo.com
## 736 8545 1482 TO a..howard@enron.com
## 737 8546 1482 CC eric.gadd@enron.com
## 738 8547 1482 BCC eric.gadd@enron.com
## 739 8548 1483 TO a..howard@enron.com
## 740 8549 1484 TO eric.gadd@enron.com
## 741 8550 1485 TO eric.gadd@enron.com
## 742 8551 1485 TO susan.wadle@enron.com
## 743 8552 1486 TO lmfoust@aol.com
## 744 8553 1487 TO david.roensch@enron.com
## 745 8554 1488 TO a..howard@enron.com
## 746 8555 1489 TO no.address@enron.com
## 747 8556 1489 TO no.address@enron.com
## 748 8557 1489 TO no.address@enron.com
## 749 8558 1489 TO no.address@enron.com
## 750 8559 1489 TO no.address@enron.com
## 751 8560 1489 TO no.address@enron.com
## 752 8561 1489 TO no.address@enron.com
## 753 8562 1489 TO no.address@enron.com
## 754 8563 1489 TO john.millar@enron.com
## 755 8564 1489 TO no.address@enron.com
## 756 8565 1489 TO no.address@enron.com
## 757 8566 1489 TO no.address@enron.com
## 758 8567 1489 TO no.address@enron.com
## 759 8568 1489 TO no.address@enron.com
## 760 8569 1489 TO no.address@enron.com
## 761 8570 1489 TO no.address@enron.com
## 762 8571 1490 TO no.address@enron.com
## 763 8572 1490 CC a..howard@enron.com
## 764 8573 1490 CC davis.thames@enron.com
## 765 8574 1490 BCC a..howard@enron.com
## 766 8575 1490 BCC davis.thames@enron.com
## 767 8576 1491 TO eric.gadd@enron.com
## 768 8577 1492 TO acook@utilicorp.com
## 769 8578 1493 TO jhyatt@msn.com
## 770 8579 1494 TO ccorbin@aep.com
## 771 8580 1495 TO a..howard@enron.com
## 772 8581 1496 TO a..howard@enron.com
## 773 8582 1497 TO krejcir@kindermorgan.com
## 774 8583 1498 TO dennis.alters@enron.com
## 775 8584 1498 TO larry.f.campbell@enron.com
## 776 8585 1498 TO sarah.haden@enron.com
## 777 8586 1498 TO blair.lichtenwalter@enron.com
## 778 8587 1498 TO teb.lokey@enron.com
## 779 8588 1498 TO ron.matthews@enron.com
## 780 8589 1498 TO johnny.mcgee@enron.com
## 781 8590 1498 TO john.shafer@enron.com
## 782 8591 1498 TO gina.taylor@enron.com
## 783 8592 1498 TO stephen.veatch@enron.com
## 784 8593 1498 TO kimberly.watson@enron.com
## 785 8594 1499 TO eric.gadd@enron.com
## 786 8595 1500 TO jima@pandaenergy.com
## 787 8596 1501 TO eric.gadd@enron.com
## 788 8597 1502 TO leslieyoung5000@yahoo.com
## 789 8598 1503 TO lmfoust@aol.com
## 790 8599 1504 TO a..howard@enron.com
## 791 8600 1505 TO mcook@utilicorp.com
## 792 8601 1506 TO ron.matthews@enron.com
## 793 8602 1506 TO eric.gadd@enron.com
## 794 8603 1506 TO james.centilli@enron.com
## 795 8604 1507 TO steven.harris@enron.com
## 796 8605 1507 TO kimberly.watson@enron.com
## 797 8606 1507 TO lorraine.lindberg@enron.com
## 798 8607 1507 TO michelle.lokay@enron.com
## 799 8608 1507 TO tk.lohman@enron.com
## 800 8609 1507 TO mark.mcconnell@enron.com
## 801 8610 1508 TO a..howard@enron.com
## 802 8611 1509 TO a..howard@enron.com
## 803 8612 1510 TO lmfoust@aol.com
## 804 8613 1511 TO pavenditti@yahoo.com
## 805 8614 1512 TO bruce.tuttle@enron.com
## 806 8615 1513 TO james.saunders@enron.com
## 807 8616 1514 TO a..howard@enron.com
## 808 8617 1514 CC eric.gadd@enron.com
## 809 8618 1514 BCC eric.gadd@enron.com
## 810 8619 1515 TO lmfoust@aol.com
## 811 8620 1516 TO jean.mcfarland@enron.com
## 812 8621 1517 TO hrgim@enron.com
## 813 8622 1518 TO eric.gadd@enron.com
## 814 8623 1519 TO doug.cebryk@enron.com
## 815 8624 1519 CC eric.gadd@enron.com
## 816 8625 1519 BCC eric.gadd@enron.com
## 817 8626 1520 TO tony.pryor@enron.com
## 818 8627 1521 TO suvs@ev1.net
## 819 8628 1522 TO jhyatt@msn.com
## 820 8629 1523 TO tk.lohman@enron.com
## 821 8630 1524 TO jhyatt@msn.com
## 822 8631 1525 TO peitulsa@aol.com
## 823 8632 1526 TO dennis.alters@enron.com
## 824 8633 1526 TO larry.f.campbell@enron.com
## 825 8634 1526 TO doug.cebryk@enron.com
## 826 8635 1526 TO sarah.haden@enron.com
## 827 8636 1526 TO blair.lichtenwalter@enron.com
## 828 8637 1526 TO teb.lokey@enron.com
## 829 8638 1526 TO ron.matthews@enron.com
## 830 8639 1526 TO johnny.mcgee@enron.com
## 831 8640 1526 TO john.shafer@enron.com
## 832 8641 1526 TO gina.taylor@enron.com
## 833 8642 1526 TO stephen.veatch@enron.com
## 834 8643 1526 TO kimberly.watson@enron.com
## 835 8644 1526 CC eric.gadd@enron.com
## 836 8645 1526 CC susan.wadle@enron.com
## 837 8646 1526 BCC eric.gadd@enron.com
## 838 8647 1526 BCC susan.wadle@enron.com
## 839 8648 1527 TO lmfoust@aol.com
## 840 8649 1528 TO george.margoliner@enron.com
## 841 8650 1529 TO jose13580@yahoo.com
## 842 8651 1530 TO webmaster@1400smith.com
## 843 8652 1531 TO dbmcvick@srpnet.com
## 844 8653 1532 TO timprice@globalhobby.net
## 845 8654 1533 TO timprice@globalhobby.net
## 846 8655 1534 TO lindy.donoho@enron.com
## 847 8656 1534 TO darrell.schoolcraft@enron.com
## 848 8657 1534 TO lynn.blair@enron.com
## 849 8658 1534 TO steve.january@enron.com
## 850 8659 1534 CC eric.gadd@enron.com
## 851 8660 1534 CC kimberly.watson@enron.com
## 852 8661 1534 BCC eric.gadd@enron.com
## 853 8662 1534 BCC kimberly.watson@enron.com
## 854 8663 1535 TO james.saunders@enron.com
## 855 8664 1535 TO teb.lokey@enron.com
## 856 8665 1535 TO blair.lichtenwalter@enron.com
## 857 8666 1535 TO stephen.veatch@enron.com
## 858 8667 1535 TO eric.gadd@enron.com
## 859 8668 1535 TO james.centilli@enron.com
## 860 8669 1536 TO susan.wadle@enron.com
## 861 8670 1537 TO dennis.alters@enron.com
## 862 8671 1537 TO larry.f.campbell@enron.com
## 863 8672 1537 TO doug.cebryk@enron.com
## 864 8673 1537 TO sarah.haden@enron.com
## 865 8674 1537 TO blair.lichtenwalter@enron.com
## 866 8675 1537 TO teb.lokey@enron.com
## 867 8676 1537 TO ron.matthews@enron.com
## 868 8677 1537 TO johnny.mcgee@enron.com
## 869 8678 1537 TO john.shafer@enron.com
## 870 8679 1537 TO gina.taylor@enron.com
## 871 8680 1537 TO stephen.veatch@enron.com
## 872 8681 1537 TO kimberly.watson@enron.com
## 873 8682 1538 TO jfawcett@sempra.com
## 874 8683 1539 TO doug.cebryk@enron.com
## 875 8684 1540 TO faggard@cpchem.com
## 876 8685 1541 TO faggard@cpchem.com
## 877 8686 1542 TO dpedigo@intergen.com
## 878 8687 1542 CC flatwoodsfarms@msn.com
## 879 8688 1542 BCC flatwoodsfarms@msn.com
## 880 8689 1543 TO lmfoust@aol.com
## 881 8690 1544 TO damon.geneva@prodigy.net
## 882 8691 1545 TO james.centilli@enron.com
## 883 8692 1546 TO james.centilli@enron.com
## 884 8693 1547 TO tkruse@bracepatt.com
## 885 8694 1548 TO jfawcett@sempra.com
## 886 8695 1549 TO eric.gadd@enron.com
## 887 8696 1550 TO djunus2000@yahoo.com
## 888 8697 1551 TO kathy.sturr@enron.com
## 889 8698 1552 TO allan.turner@chron.com
## 890 8699 1553 TO allan.turner@chron.com
## 891 8700 1554 TO lmfoust@aol.com
## 892 8701 1555 TO tracyamichel@msn.com
## 893 8702 1556 TO lmfoust@aol.com
## 894 8703 1557 TO eric.gadd@enron.com
## 895 8704 1558 TO lmfoust@aol.com
## 896 8705 1559 TO preston.roobaert@enron.com
## 897 8706 1560 TO pmelera@calpine.com
## 898 8707 1561 TO preston.roobaert@enron.com
## 899 8708 1562 TO lmfoust@aol.com
## 900 8709 1563 TO cmorado20@hotmail.com
## 901 9075 1634 TO alvarado@enron.com
## 902 9076 1634 TO orlando.alvarado@williams.com
## 903 9077 1635 TO dennis.alters@enron.com
## 904 9078 1635 TO larry.f.campbell@enron.com
## 905 9079 1635 TO doug.cebryk@enron.com
## 906 9080 1635 TO sarah.haden@enron.com
## 907 9081 1635 TO blair.lichtenwalter@enron.com
## 908 9082 1635 TO teb.lokey@enron.com
## 909 9083 1635 TO ron.matthews@enron.com
## 910 9084 1635 TO johnny.mcgee@enron.com
## 911 9085 1635 TO john.shafer@enron.com
## 912 9086 1635 TO gina.taylor@enron.com
## 913 9087 1635 TO stephen.veatch@enron.com
## 914 9088 1635 TO kimberly.watson@enron.com
## 915 9089 1635 CC susan.wadle@enron.com
## 916 9090 1635 BCC susan.wadle@enron.com
## 917 9091 1636 TO carries@tradefairgroup.com
## 918 9092 1637 TO carries@tradefairgroup.com
## 919 9093 1638 TO harris@enron.com
## 920 9094 1638 TO stephen.harris@elpaso.com
## 921 9095 1639 TO selias@sourcet.com
## 922 9096 1640 TO susan.wadle@enron.com
## 923 9097 1641 TO david.junus@enron.com
## 924 9098 1642 TO tleaden@divresources.com
## 925 9099 1643 TO bardblack@aol.com
## 926 9100 1644 TO lillian.villarreal@enron.com
## 927 9101 1645 TO susan.wadle@enron.com
## 928 9183 1651 TO john.shafer@enron.com
## 929 9184 1651 CC mike.riedel@enron.com
## 930 9185 1651 CC william.kendrick@enron.com
## 931 9186 1651 CC louis.soldano@enron.com
## 932 9187 1651 CC kevin.hyatt@enron.com
## 933 9188 1651 CC doug.cebryk@enron.com
## 934 9189 1651 CC randy.rice@enron.com
## 935 9190 1651 CC stephen.veatch@enron.com
## 936 9191 1651 CC joe.hartsoe@enron.com
## 937 9192 1651 CC gina.taylor@enron.com
## 938 9193 1651 BCC mike.riedel@enron.com
## 939 9194 1651 BCC william.kendrick@enron.com
## 940 9195 1651 BCC louis.soldano@enron.com
## 941 9196 1651 BCC kevin.hyatt@enron.com
## 942 9197 1651 BCC doug.cebryk@enron.com
## 943 9198 1651 BCC randy.rice@enron.com
## 944 9199 1651 BCC stephen.veatch@enron.com
## 945 9200 1651 BCC joe.hartsoe@enron.com
## 946 9201 1651 BCC gina.taylor@enron.com
## 947 9575 1754 TO kevin.hyatt@enron.com
## 948 10190 1896 TO kevin.hyatt@enron.com
## 949 10191 1896 TO eric.gadd@enron.com
## 950 10192 1897 TO gina.taylor@enron.com
## 951 10193 1897 TO kevin.hyatt@enron.com
## 952 10638 2045 TO julie.armstrong@enron.com
## 953 10639 2046 TO tammiep98@hotmail.com
## 954 10640 2047 TO pavenditti@yahoo.com
## 955 10641 2048 TO tfpflug@pkllc.com
## 956 10642 2049 TO john.buchanan@enron.com
## 957 10643 2050 TO bruce.tuttle@enron.com
## 958 10644 2051 TO tk.lohman@enron.com
## 959 10851 2113 TO jhyatt@msn.com
## 960 10852 2114 TO no.address@enron.com
## 961 10853 2114 TO no.address@enron.com
## 962 10854 2114 TO ruth.mann@enron.com
## 963 10855 2114 CC george.margoliner@enron.com
## 964 10856 2114 CC j.smith@enron.com
## 965 10857 2114 CC pamela.rush@enron.com
## 966 10858 2114 CC dennis.lee@enron.com
## 967 10859 2114 BCC george.margoliner@enron.com
## 968 10860 2114 BCC j.smith@enron.com
## 969 10861 2114 BCC pamela.rush@enron.com
## 970 10862 2114 BCC dennis.lee@enron.com
## 971 10863 2115 TO ruth.mann@enron.com
## 972 10891 2136 TO timprice@globalhobb.net
## 973 10898 2143 TO david.roensch@enron.com
## 974 10899 2143 TO kimberly.watson@enron.com
## 975 10900 2143 TO kevin.hyatt@enron.com
## 976 10901 2143 CC team.kingman-needles@enron.com
## 977 10902 2143 BCC team.kingman-needles@enron.com
## 978 11028 2164 TO eric.gadd@enron.com
## 979 11029 2165 TO dennis.alters@enron.com
## 980 11030 2165 TO larry.f.campbell@enron.com
## 981 11031 2165 TO doug.cebryk@enron.com
## 982 11032 2165 TO sarah.haden@enron.com
## 983 11033 2165 TO blair.lichtenwalter@enron.com
## 984 11034 2165 TO teb.lokey@enron.com
## 985 11035 2165 TO ron.matthews@enron.com
## 986 11036 2165 TO johnny.mcgee@enron.com
## 987 11037 2165 TO john.shafer@enron.com
## 988 11038 2165 TO gina.taylor@enron.com
## 989 11039 2165 TO stephen.veatch@enron.com
## 990 11040 2165 TO kimberly.watson@enron.com
## 991 11041 2165 CC susan.wadle@enron.com
## 992 11042 2165 BCC susan.wadle@enron.com
## 993 11043 2166 TO lmfoust@aol.com
## 994 11044 2167 TO djunus2000@yahoo.com
## 995 11045 2168 TO eric.gadd@enron.com
## 996 11046 2169 TO curt_brechtel@apsc.com
## 997 11047 2170 TO bruce.tuttle@enron.com
## 998 11048 2171 TO dmgobely@duke-energy.com
## 999 11049 2172 TO bruce.tuttle@enron.com
## 1000 11050 2172 TO lorraine.lindberg@enron.com
## 1001 11051 2172 TO tk.lohman@enron.com
## 1002 11052 2172 TO julie.armstrong@enron.com
## 1003 11053 2172 TO susan.wadle@enron.com
## 1004 11054 2172 CC lmfoust@aol.com
## 1005 11055 2172 BCC lmfoust@aol.com
## 1006 11056 2173 TO lmfoust@aol.com
## 1007 11057 2174 TO tidwellgreer@bfusa.com
## 1008 11058 2175 TO eric.gadd@enron.com
## 1009 11059 2176 TO terrie.james@enron.com
## 1010 11060 2177 TO allan.turner@chron.com
## 1011 11061 2178 TO lorna.brennan@enron.com
## 1012 11063 2180 TO sheila.nacey@enron.com
## 1013 11064 2180 CC shelley.corman@enron.com
## 1014 11065 2180 CC no.address@enron.com
## 1015 11066 2180 CC elizabeth.brown@enron.com
## 1016 11067 2180 CC lindy.donoho@enron.com
## 1017 11068 2180 CC jeffery.fawcett@enron.com
## 1018 11069 2180 CC lorraine.lindberg@enron.com
## 1019 11070 2180 CC tk.lohman@enron.com
## 1020 11071 2180 CC michelle.lokay@enron.com
## 1021 11072 2180 CC audrey.robertson@enron.com
## 1022 11073 2180 BCC shelley.corman@enron.com
## 1023 11074 2180 BCC no.address@enron.com
## 1024 11075 2180 BCC elizabeth.brown@enron.com
## 1025 11076 2180 BCC lindy.donoho@enron.com
## 1026 11077 2180 BCC jeffery.fawcett@enron.com
## 1027 11078 2180 BCC lorraine.lindberg@enron.com
## 1028 11079 2180 BCC tk.lohman@enron.com
## 1029 11080 2180 BCC michelle.lokay@enron.com
## 1030 11081 2180 BCC audrey.robertson@enron.com
## 1031 11313 2225 TO no.address@enron.com
## 1032 11314 2226 TO no.address@enron.com
## 1033 11315 2227 TO no.address@enron.com
## 1034 11316 2228 TO no.address@enron.com
## 1035 13214 2325 TO steven.harris@enron.com
## 1036 13215 2325 TO kevin.hyatt@enron.com
## 1037 13216 2325 TO jeffery.fawcett@enron.com
## 1038 13217 2325 TO danny.mccarty@enron.com
## 1039 13377 2341 TO abraham.solomon@mustangeng.com
## 1040 13787 2431 TO audrey.robertson@enron.com
## 1041 18185 2894 TO steve.walton@enron.com
## 1042 18186 2894 CC tim.belden@enron.com
## 1043 18187 2894 CC mary.hain@enron.com
## 1044 18188 2894 BCC tim.belden@enron.com
## 1045 18189 2894 BCC mary.hain@enron.com
## 1046 18302 2901 TO christi.nicolay@enron.com
## 1047 18303 2901 CC janet.dietrich@enron.com
## 1048 18304 2901 CC mary.hain@enron.com
## 1049 18305 2901 CC david.w.delainey@enron.com
## 1050 18306 2901 CC john.lavorato@enron.com
## 1051 18307 2901 CC james.d.steffes@enron.com
## 1052 18308 2901 BCC janet.dietrich@enron.com
## 1053 18309 2901 BCC mary.hain@enron.com
## 1054 18310 2901 BCC david.w.delainey@enron.com
## 1055 18311 2901 BCC john.lavorato@enron.com
## 1056 18312 2901 BCC james.d.steffes@enron.com
## 1057 18326 2903 TO linda.lawrence@enron.com
## 1058 18327 2903 CC mary.hain@enron.com
## 1059 18328 2903 CC tim.belden@enron.com
## 1060 18329 2903 BCC mary.hain@enron.com
## 1061 18330 2903 BCC tim.belden@enron.com
## 1062 18333 2905 TO mary.hain@enron.com
## 1063 18334 2905 CC tim.belden@enron.com
## 1064 18335 2905 CC linda.lawrence@enron.com
## 1065 18336 2905 CC kelley.huntley@enron.com
## 1066 18337 2905 CC valarie.sabo@enron.com
## 1067 18338 2905 BCC tim.belden@enron.com
## 1068 18339 2905 BCC linda.lawrence@enron.com
## 1069 18340 2905 BCC kelley.huntley@enron.com
## 1070 18341 2905 BCC valarie.sabo@enron.com
## 1071 18355 2907 TO kelley.huntley@enron.com
## 1072 18356 2907 CC tim.belden@enron.com
## 1073 18357 2907 CC mary.hain@enron.com
## 1074 18358 2907 CC linda.lawrence@enron.com
## 1075 18359 2907 CC leslie.reeves@enron.com
## 1076 18360 2907 BCC tim.belden@enron.com
## 1077 18361 2907 BCC mary.hain@enron.com
## 1078 18362 2907 BCC linda.lawrence@enron.com
## 1079 18363 2907 BCC leslie.reeves@enron.com
## 1080 18962 2927 TO tim.belden@enron.com
## 1081 18963 2927 CC james.d.steffes@enron.com
## 1082 18964 2927 CC christi.nicolay@enron.com
## 1083 18965 2927 CC sarah.novosel@enron.com
## 1084 18966 2927 CC joe.hartsoe@enron.com
## 1085 18967 2927 CC steve.walton@enron.com
## 1086 18968 2927 CC alan.comnes@enron.com
## 1087 18969 2927 CC mary.hain@enron.com
## 1088 18970 2927 BCC james.d.steffes@enron.com
## 1089 18971 2927 BCC christi.nicolay@enron.com
## 1090 18972 2927 BCC sarah.novosel@enron.com
## 1091 18973 2927 BCC joe.hartsoe@enron.com
## 1092 18974 2927 BCC steve.walton@enron.com
## 1093 18975 2927 BCC alan.comnes@enron.com
## 1094 18976 2927 BCC mary.hain@enron.com
## 1095 18990 2933 TO mary.hain@enron.com
## 1096 19214 2947 TO chris.calger@enron.com
## 1097 19215 2947 TO tim.belden@enron.com
## 1098 19216 2947 TO mary.hain@enron.com
## 1099 19217 2947 TO paul.kaufman@enron.com
## 1100 19218 2947 TO steve.walton@enron.com
## 1101 19219 2947 TO richard.ingersoll@enron.com
## 1102 19220 2947 TO alan.comnes@enron.com
## 1103 19221 2947 TO leslie.lawner@enron.com
## 1104 19222 2947 CC robert.frank@enron.com
## 1105 19223 2947 BCC robert.frank@enron.com
## 1106 19711 2965 TO mary.hain@enron.com
## 1107 19756 2973 TO susan.mara@enron.com
## 1108 19757 2973 TO alan.comnes@enron.com
## 1109 19758 2973 TO mary.hain@enron.com
## 1110 19759 2973 CC jeff.dasovich@enron.com
## 1111 19760 2973 CC steve.walton@enron.com
## 1112 19761 2973 CC joe.hartsoe@enron.com
## 1113 19762 2973 BCC jeff.dasovich@enron.com
## 1114 19763 2973 BCC steve.walton@enron.com
## 1115 19764 2973 BCC joe.hartsoe@enron.com
## 1116 20318 2984 TO richard.shapiro@enron.com
## 1117 20319 2984 TO jeff.dasovich@enron.com
## 1118 20320 2984 TO susan.mara@enron.com
## 1119 20321 2984 TO harry.kingerski@enron.com
## 1120 20322 2984 TO sandra.mccubbin@enron.com
## 1121 20323 2984 TO mona.petrochko@enron.com
## 1122 20324 2984 TO marcie.milner@enron.com
## 1123 20325 2984 TO karen.denne@enron.com
## 1124 20326 2984 TO paul.kaufman@enron.com
## 1125 20327 2984 TO mary.hain@enron.com
## 1126 20328 2984 TO alan.comnes@enron.com
## 1127 20329 2984 TO joe.hartsoe@enron.com
## 1128 20330 2984 TO linda.robertson@enron.com
## 1129 20331 2984 TO mday@gmssr.com
## 1130 20332 2984 TO hgovenar@govadv.com
## 1131 20333 2984 TO sgovenar@govadv.com
## 1132 20334 2984 TO bhansen@lhom.com
## 1133 20335 2984 TO jkradin@marathon-com.com
## 1134 20336 2984 TO rlichtenstein@marathon-com.com
## 1135 20337 2984 TO syamane@marathon-com.com
## 1136 20792 2999 TO mary.hain@enron.com
## 1137 21262 3004 TO mary.hain@enron.com
## 1138 21484 3013 TO mary.hain@enron.com
## 1139 21495 3016 TO susan.mara@enron.com
## 1140 21496 3016 TO joe.hartsoe@enron.com
## 1141 21497 3016 TO alan.comnes@enron.com
## 1142 21498 3016 TO steve.walton@enron.com
## 1143 21499 3016 TO mary.hain@enron.com
## 1144 21500 3016 TO paul.kaufman@enron.com
## 1145 21501 3016 CC richard.shapiro@enron.com
## 1146 21502 3016 CC harry.kingerski@enron.com
## 1147 21503 3016 CC linda.robertson@enron.com
## 1148 21504 3016 BCC richard.shapiro@enron.com
## 1149 21505 3016 BCC harry.kingerski@enron.com
## 1150 21506 3016 BCC linda.robertson@enron.com
## 1151 21512 3018 TO mary.hain@enron.com
## 1152 21513 3019 TO joe.hartsoe@enron.com
## 1153 21514 3019 TO susan.mara@enron.com
## 1154 21515 3019 TO mary.hain@enron.com
## 1155 21516 3019 TO alan.comnes@enron.com
## 1156 21517 3019 TO steve.walton@enron.com
## 1157 21518 3020 TO mary.hain@enron.com
## 1158 22170 3030 TO joe.hartsoe@enron.com
## 1159 22171 3030 TO christi.nicolay@enron.com
## 1160 22172 3030 TO mary.hain@enron.com
## 1161 22173 3030 CC richard.shapiro@enron.com
## 1162 22174 3030 BCC richard.shapiro@enron.com
## 1163 22176 3032 TO mary.hain@enron.com
## 1164 23138 3062 TO jeff.dasovich@enron.com
## 1165 23139 3062 TO paul.kaufman@enron.com
## 1166 23140 3062 TO mary.hain@enron.com
## 1167 23141 3062 TO alan.comnes@enron.com
## 1168 23142 3062 TO susan.mara@enron.com
## 1169 23143 3062 TO steve.walton@enron.com
## 1170 23509 3071 TO joe.hartsoe@enron.com
## 1171 23510 3071 TO alan.comnes@enron.com
## 1172 23511 3071 TO mary.hain@enron.com
## 1173 24611 3114 TO sandra.mccubbin@enron.com
## 1174 24612 3114 TO susan.mara@enron.com
## 1175 24613 3114 TO paul.kaufman@enron.com
## 1176 24614 3114 TO harry.kingerski@enron.com
## 1177 24615 3114 TO james.d.steffes@enron.com
## 1178 24616 3114 TO richard.shapiro@enron.com
## 1179 24617 3114 TO steven.j.kean@enron.com
## 1180 24618 3114 TO karen.denne@enron.com
## 1181 24619 3114 TO mpalmer@enron.com
## 1182 24620 3114 TO janel.guerrero@enron.com
## 1183 24621 3114 TO mary.hain@enron.com
## 1184 24622 3114 TO alan.comnes@enron.com
## 1185 24623 3114 TO joe.hartsoe@enron.com
## 1186 24624 3114 TO linda.robertson@enron.com
## 1187 24625 3114 TO sarah.novosel@enron.com
## 1188 24626 3114 TO donna.fulton@enron.com
## 1189 26593 3141 TO joe.hartsoe@enron.com
## 1190 26594 3141 TO sarah.novosel@enron.com
## 1191 26595 3141 TO mary.hain@enron.com
## 1192 26596 3141 TO susan.mara@enron.com
## 1193 26597 3141 TO alan.comnes@enron.com
## 1194 26598 3141 TO donna.fulton@enron.com
## 1195 26599 3141 TO linda.robertson@enron.com
## 1196 26600 3141 TO richard.shapiro@enron.com
## 1197 26601 3141 TO paul.kaufman@enron.com
## 1198 26602 3141 TO james.d.steffes@enron.com
## 1199 26769 3149 TO joe.hartsoe@enron.com
## 1200 26770 3149 TO sarah.novosel@enron.com
## 1201 26771 3149 TO mary.hain@enron.com
## 1202 26772 3149 TO donna.fulton@enron.com
## 1203 26773 3149 TO linda.robertson@enron.com
## 1204 26774 3149 TO james.d.steffes@enron.com
## 1205 26775 3149 TO richard.shapiro@enron.com
## 1206 26776 3149 TO paul.kaufman@enron.com
## 1207 26777 3149 TO susan.mara@enron.com
## 1208 27932 3187 TO mary.hain@enron.com
## 1209 27933 3187 CC alan.comnes@enron.com
## 1210 27934 3187 CC carrrn@bracepatt.com
## 1211 27935 3187 CC christian.yoder@enron.com
## 1212 27936 3187 CC donna.fulton@enron.com
## 1213 27937 3187 CC gfergus@brobeck.com
## 1214 27938 3187 CC ray.alvarez@enron.com
## 1215 27939 3187 CC richard.b.sanders@enron.com
## 1216 27940 3187 CC sarah.novosel@enron.com
## 1217 27941 3187 CC sbishop@gibbs-bruns.com
## 1218 27942 3187 CC steve.c.hall@enron.com
## 1219 27943 3187 CC susan.mara@enron.com
## 1220 27944 3187 CC richard.shapiro@enron.com
## 1221 27945 3187 BCC alan.comnes@enron.com
## 1222 27946 3187 BCC carrrn@bracepatt.com
## 1223 27947 3187 BCC christian.yoder@enron.com
## 1224 27948 3187 BCC donna.fulton@enron.com
## 1225 27949 3187 BCC gfergus@brobeck.com
## 1226 27950 3187 BCC ray.alvarez@enron.com
## 1227 27951 3187 BCC richard.b.sanders@enron.com
## 1228 27952 3187 BCC sarah.novosel@enron.com
## 1229 27953 3187 BCC sbishop@gibbs-bruns.com
## 1230 27954 3187 BCC steve.c.hall@enron.com
## 1231 27955 3187 BCC susan.mara@enron.com
## 1232 27956 3187 BCC richard.shapiro@enron.com
## 1233 28077 3196 TO christopher.calger@enron.com
## 1234 28078 3196 TO christian.yoder@enron.com
## 1235 28079 3196 TO james.d.steffes@enron.com
## 1236 28080 3196 TO mary.hain@enron.com
## 1237 28081 3196 TO joe.hartsoe@enron.com
## 1238 28082 3196 TO sarah.novosel@enron.com
## 1239 28083 3196 TO richard.b.sanders@enron.com
## 1240 28084 3196 TO gfergus@brobeck.com
## 1241 28085 3196 TO susan.mara@enron.com
## 1242 28086 3196 TO richard.shapiro@enron.com
## 1243 28953 3213 TO richard.shapiro@enron.com
## 1244 28954 3213 TO jeff.dasovich@enron.com
## 1245 28955 3213 TO susan.mara@enron.com
## 1246 28956 3213 TO harry.kingerski@enron.com
## 1247 28957 3213 TO sandra.mccubbin@enron.com
## 1248 28958 3213 TO mona.petrochko@enron.com
## 1249 28959 3213 TO marcie.milner@enron.com
## 1250 28960 3213 TO karen.denne@enron.com
## 1251 28961 3213 TO paul.kaufman@enron.com
## 1252 28962 3213 TO mary.hain@enron.com
## 1253 28963 3213 TO alan.comnes@enron.com
## 1254 28964 3213 TO joe.hartsoe@enron.com
## 1255 28965 3213 TO linda.robertson@enron.com
## 1256 28966 3213 TO mday@gmssr.com
## 1257 28967 3213 TO hgovenar@govadv.com
## 1258 28968 3213 TO sgovenar@govadv.com
## 1259 28969 3213 TO bhansen@lhom.com
## 1260 28970 3213 TO jkradin@marathon-com.com
## 1261 28971 3213 TO rlichtenstein@marathon-com.com
## 1262 28972 3213 TO syamane@marathon-com.com
## 1263 31520 3256 TO dwatkiss@bracepatt.com
## 1264 31521 3256 CC alan.comnes@enron.com
## 1265 31522 3256 CC christian.yoder@enron.com
## 1266 31523 3256 CC james.d.steffes@enron.com
## 1267 31524 3256 CC jeff.dasovich@enron.com
## 1268 31525 3256 CC joe.hartsoe@enron.com
## 1269 31526 3256 CC mary.hain@enron.com
## 1270 31527 3256 CC michael.tribolet@enron.com
## 1271 31528 3256 CC paul.kaufman@enron.com
## 1272 31529 3256 CC ray.alvarez@enron.com
## 1273 31530 3256 CC rcarroll@bracepatt.com
## 1274 31531 3256 CC richard.b.sanders@enron.com
## 1275 31532 3256 CC richard.shapiro@enron.com
## 1276 31533 3256 CC susan.j.mara@enron.com
## 1277 31534 3256 BCC alan.comnes@enron.com
## 1278 31535 3256 BCC christian.yoder@enron.com
## 1279 31536 3256 BCC james.d.steffes@enron.com
## 1280 31537 3256 BCC jeff.dasovich@enron.com
## 1281 31538 3256 BCC joe.hartsoe@enron.com
## 1282 31539 3256 BCC mary.hain@enron.com
## 1283 31540 3256 BCC michael.tribolet@enron.com
## 1284 31541 3256 BCC paul.kaufman@enron.com
## 1285 31542 3256 BCC ray.alvarez@enron.com
## 1286 31543 3256 BCC rcarroll@bracepatt.com
## 1287 31544 3256 BCC richard.b.sanders@enron.com
## 1288 31545 3256 BCC richard.shapiro@enron.com
## 1289 31546 3256 BCC susan.j.mara@enron.com
## 1290 31547 3257 TO jeff.dasovich@enron.com
## 1291 31548 3257 CC donna.fulton@enron.com
## 1292 31549 3257 CC jeff.dasovich@enron.com
## 1293 31550 3257 CC joe.hartsoe@enron.com
## 1294 31551 3257 CC linda.robertson@enron.com
## 1295 31552 3257 CC mary.hain@enron.com
## 1296 31553 3257 CC paul.kaufman@enron.com
## 1297 31554 3257 CC richard.shapiro@enron.com
## 1298 31555 3257 CC sarah.novosel@enron.com
## 1299 31556 3257 CC susan.mara@enron.com
## 1300 31557 3257 BCC donna.fulton@enron.com
## 1301 31558 3257 BCC jeff.dasovich@enron.com
## 1302 31559 3257 BCC joe.hartsoe@enron.com
## 1303 31560 3257 BCC linda.robertson@enron.com
## 1304 31561 3257 BCC mary.hain@enron.com
## 1305 31562 3257 BCC paul.kaufman@enron.com
## 1306 31563 3257 BCC richard.shapiro@enron.com
## 1307 31564 3257 BCC sarah.novosel@enron.com
## 1308 31565 3257 BCC susan.mara@enron.com
## 1309 32391 3290 TO sean.crandall@enron.com
## 1310 32392 3290 TO diana.scholtes@enron.com
## 1311 32393 3290 TO mark.fischer@enron.com
## 1312 32394 3290 TO tom.alonso@enron.com
## 1313 32395 3290 TO mary.hain@enron.com
## 1314 32396 3290 TO tim.belden@enron.com
## 1315 32397 3290 TO jeff.richter@enron.com
## 1316 32398 3290 TO donald.robinson@enron.com
## 1317 32399 3290 TO lisa.gang@enron.com
## 1318 32400 3290 TO mike.purcell@enron.com
## 1319 32401 3290 TO stacy.runswick@enron.com
## 1320 32402 3290 TO carla.hoffman@enron.com
## 1321 32403 3290 TO phillip.platter@enron.com
## 1322 32404 3290 TO chris.mallory@enron.com
## 1323 32405 3290 TO jesse.bryson@enron.com
## 1324 32406 3290 TO bill.iii@enron.com
## 1325 32629 3325 TO rcarroll@bracepatt.com
## 1326 32630 3325 CC alan.comnes@enron.com
## 1327 32631 3325 CC susan.j.mara@enron.com
## 1328 32632 3325 CC chris.h.foster@enron.com
## 1329 32633 3325 CC christian.yoder@enron.com
## 1330 32634 3325 CC christopher.f.calger@enron.com
## 1331 32635 3325 CC david.leboe@enron.com
## 1332 32636 3325 CC david.parquet@enron.com
## 1333 32637 3325 CC dbenevid@enron.com
## 1334 32638 3325 CC harry.kingerski@enron.com
## 1335 32639 3325 CC james.d.steffes@enron.com
## 1336 32640 3325 CC janel.guerrero@enron.com
## 1337 32641 3325 CC jeff.dasovich@enron.com
## 1338 32642 3325 CC joe.hartsoe@enron.com
## 1339 32643 3325 CC lavorato@enron.com
## 1340 32644 3325 CC karen.denne@enron.com
## 1341 32645 3325 CC leslie.lawner@enron.com
## 1342 32646 3325 CC mark.palmer@enron.com
## 1343 32647 3325 CC mary.hain@enron.com
## 1344 32648 3325 CC nbresnan@enron.com
## 1345 32649 3325 CC phillip.k.allen@enron.com
## 1346 32650 3325 CC ray.alvarez@enron.com
## 1347 32651 3325 CC richard.b.sanders@enron.com
## 1348 32652 3325 CC richard.shapiro@enron.com
## 1349 32653 3325 CC sandra.mccubbin@enron.com
## 1350 32654 3325 CC steve.hall@enron.com
## 1351 32655 3325 CC steven.j.kean@enron.com
## 1352 32656 3325 CC tim.belden@enron.com
## 1353 32657 3325 CC tim.heizenrader@enron.com
## 1354 32658 3325 BCC alan.comnes@enron.com
## 1355 32659 3325 BCC susan.j.mara@enron.com
## 1356 32660 3325 BCC chris.h.foster@enron.com
## 1357 32661 3325 BCC christian.yoder@enron.com
## 1358 32662 3325 BCC christopher.f.calger@enron.com
## 1359 32663 3325 BCC david.leboe@enron.com
## 1360 32664 3325 BCC david.parquet@enron.com
## 1361 32665 3325 BCC dbenevid@enron.com
## 1362 32666 3325 BCC harry.kingerski@enron.com
## 1363 32667 3325 BCC james.d.steffes@enron.com
## 1364 32668 3325 BCC janel.guerrero@enron.com
## 1365 32669 3325 BCC jeff.dasovich@enron.com
## 1366 32670 3325 BCC joe.hartsoe@enron.com
## 1367 32671 3325 BCC lavorato@enron.com
## 1368 32672 3325 BCC karen.denne@enron.com
## 1369 32673 3325 BCC leslie.lawner@enron.com
## 1370 32674 3325 BCC mark.palmer@enron.com
## 1371 32675 3325 BCC mary.hain@enron.com
## 1372 32676 3325 BCC nbresnan@enron.com
## 1373 32677 3325 BCC phillip.k.allen@enron.com
## 1374 32678 3325 BCC ray.alvarez@enron.com
## 1375 32679 3325 BCC richard.b.sanders@enron.com
## 1376 32680 3325 BCC richard.shapiro@enron.com
## 1377 32681 3325 BCC sandra.mccubbin@enron.com
## 1378 32682 3325 BCC steve.hall@enron.com
## 1379 32683 3325 BCC steven.j.kean@enron.com
## 1380 32684 3325 BCC tim.belden@enron.com
## 1381 32685 3325 BCC tim.heizenrader@enron.com
## 1382 35390 3409 TO daniel.allegretti@enron.com
## 1383 35391 3409 TO nancy.bagot@enron.com
## 1384 35392 3409 TO martha.benner@enron.com
## 1385 35393 3409 TO donna.bily@enron.com
## 1386 35394 3409 TO lynn.blair@enron.com
## 1387 35395 3409 TO jack.boatman@enron.com
## 1388 35396 3409 TO rob.bradley@enron.com
## 1389 35397 3409 TO theresa.branney@enron.com
## 1390 35398 3409 TO lorna.brennan@enron.com
## 1391 35399 3409 TO tom.briggs@enron.com
## 1392 35400 3409 TO janet.butler@enron.com
## 1393 35401 3409 TO bob.chandler@enron.com
## 1394 35402 3409 TO alan.comnes@enron.com
## 1395 35403 3409 TO bill.cordes@enron.com
## 1396 35404 3409 TO shelley.corman@enron.com
## 1397 35405 3409 TO christi.culwell@enron.com
## 1398 35406 3409 TO shonnie.daniel@enron.com
## 1399 35407 3409 TO mary.darveaux@enron.com
## 1400 35408 3409 TO rick.dietz@enron.com
## 1401 35409 3409 TO dari.dornan@enron.com
## 1402 35410 3409 TO john.dushinske@enron.com
## 1403 35411 3409 TO sharon.farrell@enron.com
## 1404 35412 3409 TO drew.fossum@enron.com
## 1405 35413 3409 TO bret.fritch@enron.com
## 1406 35414 3409 TO donna.fulton@enron.com
## 1407 35415 3409 TO john.goodpasture@enron.com
## 1408 35416 3409 TO mary.hain@enron.com
## 1409 35417 3409 TO steven.harris@enron.com
## 1410 35418 3409 TO joe.hartsoe@enron.com
## 1411 35419 3409 TO glen.hass@enron.com
## 1412 35420 3409 TO robert.hayes@enron.com
## 1413 35421 3409 TO rod.hayslett@enron.com
## 1414 35422 3409 TO bambi.heckerman@enron.com
## 1415 35423 3409 TO theresa.hess@enron.com
## 1416 35424 3409 TO robert.hill@enron.com
## 1417 35425 3409 TO staci.holtzman@enron.com
## 1418 35426 3409 TO tamara.hopkins@enron.com
## 1419 35427 3409 TO stanley.horton@enron.com
## 1420 35428 3409 TO lee.huber@enron.com
## 1421 35429 3409 TO martha.janousek@enron.com
## 1422 35430 3409 TO steven.january@enron.com
## 1423 35431 3409 TO steven.j.kean@enron.com
## 1424 35432 3409 TO robert.kilmer@enron.com
## 1425 35433 3409 TO frazier.king@enron.com
## 1426 35434 3409 TO steve.kirk@enron.com
## 1427 35435 3409 TO tim.kissner@enron.com
## 1428 35436 3409 TO laura.lantefield@enron.com
## 1429 35437 3409 TO linda.lawrence@enron.com
## 1430 35438 3409 TO blair.lichtenwalter@enron.com
## 1431 35439 3409 TO elizabeth.linnell@enron.com
## 1432 35440 3409 TO teb.lokey@enron.com
## 1433 35441 3409 TO phil.lowry@enron.com
## 1434 35442 3409 TO susan.mara@enron.com
## 1435 35443 3409 TO donna.martens@enron.com
## 1436 35444 3409 TO jerry.martin@enron.com
## 1437 35445 3409 TO dorothy.mccoppin@enron.com
## 1438 35446 3409 TO mike.mcgowan@enron.com
## 1439 35447 3409 TO mary.miller@enron.com
## 1440 35448 3409 TO michael.moran@enron.com
## 1441 35449 3409 TO sheila.nacey@enron.com
## 1442 35450 3409 TO kimberly.nelson@enron.com
## 1443 35451 3409 TO michel.nelson@enron.com
## 1444 35452 3409 TO ray.neppl@enron.com
## 1445 35453 3409 TO dave.neubauer@enron.com
## 1446 35454 3409 TO robert.neustaedter@enron.com
## 1447 35455 3409 TO christi.nicolay@enron.com
## 1448 35456 3409 TO sarah.novosel@enron.com
## 1449 35457 3409 TO ranelle.paladino@enron.com
## 1450 35458 3409 TO maureen.palmer@enron.com
## 1451 35459 3409 TO zelda.paschal@enron.com
## 1452 35460 3409 TO geneva.patterson@enron.com
## 1453 35461 3409 TO maria.pavlou@enron.com
## 1454 35462 3409 TO eileen.peebles@enron.com
## 1455 35463 3409 TO keith.petersen@enron.com
## 1456 35464 3409 TO peggy.phillips@enron.com
## 1457 35465 3409 TO janet.place@enron.com
## 1458 35466 3409 TO dan.pribble@enron.com
## 1459 35467 3409 TO tony.pryor@enron.com
## 1460 35468 3409 TO colleen.raker@enron.com
## 1461 35469 3409 TO randy.rice@enron.com
## 1462 35470 3409 TO kathy.ringblom@enron.com
## 1463 35471 3409 TO linda.robertson@enron.com
## 1464 35472 3409 TO james.saunders@enron.com
## 1465 35473 3409 TO lisa.sawyer@enron.com
## 1466 35474 3409 TO donna.scott@enron.com
## 1467 35475 3409 TO susan.scott@enron.com
## 1468 35476 3409 TO john.shafer@enron.com
## 1469 35477 3409 TO richard.shapiro@enron.com
## 1470 35478 3409 TO mike.smith@enron.com
## 1471 35479 3409 TO louis.soldano@enron.com
## 1472 35480 3409 TO lon.stanton@enron.com
## 1473 35481 3409 TO james.d.steffes@enron.com
## 1474 35482 3409 TO james.studebaker@enron.com
## 1475 35483 3409 TO jim.talcott@enron.com
## 1476 35484 3409 TO gina.taylor@enron.com
## 1477 35485 3409 TO denis.tu@enron.com
## 1478 35486 3409 TO michael.norden@enron.com
## 1479 35487 3409 TO stephen.veatch@enron.com
## 1480 35488 3409 TO donald.vignaroli@enron.com
## 1481 35489 3409 TO jody.warner@enron.com
## 1482 35490 3409 TO kimberly.watson@enron.com
## 1483 35491 3409 TO julia.white@enron.com
## 1484 35492 3409 TO kim.wilkie@enron.com
## 1485 35493 3409 TO jane.wilson@enron.com
## 1486 35494 3409 TO rob.wilson@enron.com
## 1487 35495 3409 TO michele.winckowski@enron.com
## 1488 35496 3409 TO lisa.yoho@enron.com
## 1489 38147 3462 TO alan.comnes@enron.com
## 1490 38148 3462 TO chris.foster@enron.com
## 1491 38149 3462 TO christian.yoder@enron.com
## 1492 38150 3462 TO christopher.calger@enron.com
## 1493 38151 3462 TO cynthia.sandherr@enron.com
## 1494 38152 3462 TO dan.leff@enron.com
## 1495 38153 3462 TO david.w.delainey@enron.com
## 1496 38154 3462 TO dennis.benevides@enron.com
## 1497 38155 3462 TO don.black@enron.com
## 1498 38156 3462 TO elizabeth.sager@enron.com
## 1499 38157 3462 TO elizabeth.tilney@enron.com
## 1500 38158 3462 TO eric.thode@enron.com
## 1501 38159 3462 TO gordon.savage@enron.com
## 1502 38160 3462 TO greg.wolfe@enron.com
## 1503 38161 3462 TO harry.kingerski@enron.com
## 1504 38162 3462 TO jubran.whalan@enron.com
## 1505 38163 3462 TO jeff.dasovich@enron.com
## 1506 38164 3462 TO jeffrey.hodge@enron.com
## 1507 38165 3462 TO joe.hartsoe@enron.com
## 1508 38166 3462 TO john.lavorato@enron.com
## 1509 38167 3462 TO john.neslage@enron.com
## 1510 38168 3462 TO kathryn.corbally@enron.com
## 1511 38169 3462 TO keith.holst@enron.com
## 1512 38170 3462 TO kristin.walsh@enron.com
## 1513 38171 3462 TO leslie.lawner@enron.com
## 1514 38172 3462 TO linda.robertson@enron.com
## 1515 38173 3462 TO louise.kitchen@enron.com
## 1516 38174 3462 TO marcia.linton@enron.com
## 1517 38175 3462 TO mary.schoen@enron.com
## 1518 38176 3462 TO mday@gmssr.com
## 1519 38177 3462 TO mark.palmer@enron.com
## 1520 38178 3462 TO marty.sunde@enron.com
## 1521 38179 3462 TO mary.hain@enron.com
## 1522 38180 3462 TO michael.tribolet@enron.com
## 1523 38181 3462 TO mike.smith@enron.com
## 1524 38182 3462 TO mike.grigsby@enron.com
## 1525 38183 3462 TO neil.bresnan@enron.com
## 1526 38184 3462 TO paul.kaufman@enron.com
## 1527 38185 3462 TO phillip.k.ellen@enron.com
## 1528 38186 3462 TO robert.badeer@enron.com
## 1529 38187 3462 TO rebecca.cantrell@enron.com
## 1530 38188 3462 TO richard.b.sanders@enron.com
## 1531 38189 3462 TO richard.shapiro@enron.com
## 1532 38190 3462 TO rob.bradley@enron.com
## 1533 38191 3462 TO robert.williams@enron.com
## 1534 38192 3462 TO robert.frank@enron.com
## 1535 38193 3462 TO robert.frank@enron.com
## 1536 38194 3462 TO robert.johnston@enron.com
## 1537 38195 3462 TO robert.neustaedter@enron.com
## 1538 38196 3462 TO sandra.mccubbin@enron.com
## 1539 38197 3462 TO scott.stoness@enron.com
## 1540 38198 3462 TO shelley.corman@enron.com
## 1541 38199 3462 TO steve.hall@enron.com
## 1542 38200 3462 TO steve.walton@enron.com
## 1543 38201 3462 TO steven.j.kean@enron.com
## 1544 38202 3462 TO susan.mara@enron.com
## 1545 38203 3462 TO tim.belden@enron.com
## 1546 38204 3462 TO tom.briggs@enron.com
## 1547 38205 3462 TO travis.mccullough@enron.com
## 1548 38206 3462 TO vance.meyer@enron.com
## 1549 38207 3462 TO vicki.sharp@enron.com
## 1550 38208 3462 TO wendy.conwell@enron.com
## 1551 38209 3462 TO william.bradford@enron.com
## 1552 72349 5193 TO tracy.geaccone@enron.com
## 1553 72350 5193 TO james.saunders@enron.com
## 1554 72351 5193 TO jerry.peters@enron.com
## 1555 72392 5202 TO james.saunders@enron.com
## 1556 72393 5202 TO bob.chandler@enron.com
## 1557 72394 5202 TO jerry.peters@enron.com
## 1558 72395 5202 TO patricia.wiederholt@enron.com
## 1559 72396 5202 TO tracy.geaccone@enron.com
## 1560 72397 5202 TO john.keiser@enron.com
## 1561 72398 5202 TO elaine.concklin@enron.com
## 1562 72399 5202 TO james.centilli@enron.com
## 1563 72400 5202 TO maggie.schroeder@enron.com
## 1564 72401 5202 TO steve.gilbert@enron.com
## 1565 72402 5202 TO dave.waymire@enron.com
## 1566 72403 5202 TO thomas.meers@enron.com
## 1567 72404 5203 TO sharron.westbrook@enron.com
## 1568 72405 5203 TO mark.lindsey@enron.com
## 1569 72406 5203 CC james.saunders@enron.com
## 1570 72407 5203 CC tracy.geaccone@enron.com
## 1571 72408 5203 BCC james.saunders@enron.com
## 1572 72409 5203 BCC tracy.geaccone@enron.com
## 1573 72415 5205 TO denis.tu@enron.com
## 1574 72416 5205 CC tracy.geaccone@enron.com
## 1575 72417 5205 CC james.centilli@enron.com
## 1576 72418 5205 CC dave.waymire@enron.com
## 1577 72419 5205 CC michael.ratner@enron.com
## 1578 72420 5205 CC steve.gilbert@enron.com
## 1579 72421 5205 CC john.keiser@enron.com
## 1580 72422 5205 CC david.rosenberg@enron.com
## 1581 72423 5205 BCC tracy.geaccone@enron.com
## 1582 72424 5205 BCC james.centilli@enron.com
## 1583 72425 5205 BCC dave.waymire@enron.com
## 1584 72426 5205 BCC michael.ratner@enron.com
## 1585 72427 5205 BCC steve.gilbert@enron.com
## 1586 72428 5205 BCC john.keiser@enron.com
## 1587 72429 5205 BCC david.rosenberg@enron.com
## 1588 72431 5207 TO tracy.geaccone@enron.com
## 1589 72433 5209 TO tracy.geaccone@enron.com
## 1590 72436 5212 TO steven.harris@enron.com
## 1591 72437 5213 TO tracy.geaccone@enron.com
## 1592 72445 5217 TO tracy.geaccone@enron.com
## 1593 72467 5220 TO tracy.geaccone@enron.com
## 1594 72468 5220 CC michael.ratner@enron.com
## 1595 72469 5220 BCC michael.ratner@enron.com
## 1596 72507 5226 TO steven.harris@enron.com
## 1597 72508 5226 CC tracy.geaccone@enron.com
## 1598 72509 5226 BCC tracy.geaccone@enron.com
## 1599 72512 5228 TO tracy.geaccone@enron.com
## 1600 72513 5229 TO rebecca.carter@enron.com
## 1601 72514 5229 CC tracy.geaccone@enron.com
## 1602 72515 5229 CC stanley.horton@enron.com
## 1603 72516 5229 BCC tracy.geaccone@enron.com
## 1604 72517 5229 BCC stanley.horton@enron.com
## 1605 72527 5233 TO tracy.geaccone@enron.com
## 1606 72576 5239 TO tracy.geaccone@enron.com
## 1607 72577 5239 CC james.saunders@enron.com
## 1608 72578 5239 BCC james.saunders@enron.com
## 1609 72579 5240 TO sarabeth.smith@enron.com
## 1610 72580 5240 TO john.dushinske@enron.com
## 1611 72581 5240 CC g..stage@enron.com
## 1612 72582 5240 CC david.marye@enron.com
## 1613 72583 5240 CC don.hawkins@enron.com
## 1614 72584 5240 CC tracy.geaccone@enron.com
## 1615 72585 5240 BCC g..stage@enron.com
## 1616 72586 5240 BCC david.marye@enron.com
## 1617 72587 5240 BCC don.hawkins@enron.com
## 1618 72588 5240 BCC tracy.geaccone@enron.com
## 1619 72671 5245 TO james.saunders@enron.com
## 1620 72672 5245 TO tracy.geaccone@enron.com
## 1621 72783 5251 TO tracy.geaccone@enron.com
## 1622 72784 5252 TO tracy.geaccone@enron.com
## 1623 72786 5254 TO james.saunders@enron.com
## 1624 72787 5254 TO a..howard@enron.com
## 1625 72788 5254 TO tracy.geaccone@enron.com
## 1626 72789 5254 CC harry.walters@enron.com
## 1627 72790 5254 CC john.cobb@enron.com
## 1628 72791 5254 CC lisa.sutton@enron.com
## 1629 72792 5254 BCC harry.walters@enron.com
## 1630 72793 5254 BCC john.cobb@enron.com
## 1631 72794 5254 BCC lisa.sutton@enron.com
## 1632 72864 5258 TO sarah.taylor@enron.com
## 1633 72865 5258 TO a..howard@enron.com
## 1634 72866 5258 TO drew.fossum@enron.com
## 1635 72867 5258 TO shelley.corman@enron.com
## 1636 72868 5258 TO tracy.geaccone@enron.com
## 1637 72869 5258 TO james.saunders@enron.com
## 1638 72873 5260 TO shelley.corman@enron.com
## 1639 72874 5260 TO tracy.geaccone@enron.com
## 1640 72875 5260 CC sarah.taylor@enron.com
## 1641 72876 5260 BCC sarah.taylor@enron.com
## 1642 72877 5261 TO shelley.corman@enron.com
## 1643 72878 5261 TO tracy.geaccone@enron.com
## 1644 72879 5261 CC sarah.taylor@enron.com
## 1645 72880 5261 BCC sarah.taylor@enron.com
## 1646 72938 5267 TO tracy.geaccone@enron.com
## 1647 72946 5270 TO tracy.geaccone@enron.com
## 1648 72947 5271 TO tracy.geaccone@enron.com
## 1649 72948 5271 CC a..howard@enron.com
## 1650 72949 5271 BCC a..howard@enron.com
## 1651 72956 5276 TO tracy.geaccone@enron.com
## 1652 72957 5277 TO tracy.geaccone@enron.com
## 1653 72958 5277 CC a..howard@enron.com
## 1654 72959 5277 BCC a..howard@enron.com
## 1655 72964 5280 TO tracy.geaccone@enron.com
## 1656 72965 5280 TO steve.gilbert@enron.com
## 1657 72970 5282 TO tracy.geaccone@enron.com
## 1658 72971 5282 CC steven.harris@enron.com
## 1659 72972 5282 BCC steven.harris@enron.com
## 1660 73004 5285 TO tracy.geaccone@enron.com
## 1661 73006 5287 TO tracy.geaccone@enron.com
## 1662 73007 5288 TO steve.kleb@enron.com
## 1663 73008 5288 CC tracy.geaccone@enron.com
## 1664 73009 5288 BCC tracy.geaccone@enron.com
## 1665 73039 5294 TO tracy.geaccone@enron.com
## 1666 73043 5296 TO tracy.geaccone@enron.com
## 1667 73044 5297 TO steven.harris@enron.com
## 1668 73045 5297 CC rod.hayslett@enron.com
## 1669 73046 5297 CC tracy.geaccone@enron.com
## 1670 73047 5297 BCC rod.hayslett@enron.com
## 1671 73048 5297 BCC tracy.geaccone@enron.com
## 1672 73049 5298 TO steven.harris@enron.com
## 1673 73050 5298 TO lindy.donoho@enron.com
## 1674 73051 5298 TO tracy.geaccone@enron.com
## 1675 73052 5298 TO rod.hayslett@enron.com
## 1676 73053 5299 TO james.centilli@enron.com
## 1677 73054 5299 CC tracy.geaccone@enron.com
## 1678 73055 5299 BCC tracy.geaccone@enron.com
## 1679 73056 5300 TO tracy.geaccone@enron.com
## 1680 73060 5302 TO rod.hayslett@enron.com
## 1681 73061 5302 TO tracy.geaccone@enron.com
## 1682 73062 5302 CC steven.harris@enron.com
## 1683 73063 5302 BCC steven.harris@enron.com
## 1684 73138 5314 TO danny.mccarty@enron.com
## 1685 73139 5314 TO steven.harris@enron.com
## 1686 73140 5314 TO lindy.donoho@enron.com
## 1687 73141 5314 CC tracy.geaccone@enron.com
## 1688 73142 5314 CC a..howard@enron.com
## 1689 73143 5314 CC jeff.donahue@enron.com
## 1690 73144 5314 CC mitch.taylor@enron.com
## 1691 73145 5314 CC sarah.taylor@enron.com
## 1692 73146 5314 CC jayshree.desai@enron.com
## 1693 73147 5314 BCC tracy.geaccone@enron.com
## 1694 73148 5314 BCC a..howard@enron.com
## 1695 73149 5314 BCC jeff.donahue@enron.com
## 1696 73150 5314 BCC mitch.taylor@enron.com
## 1697 73151 5314 BCC sarah.taylor@enron.com
## 1698 73152 5314 BCC jayshree.desai@enron.com
## 1699 73174 5317 TO caroline.barnes@enron.com
## 1700 73175 5317 TO morris.brassfield@enron.com
## 1701 73176 5317 TO kathy.campos@enron.com
## 1702 73177 5317 TO james.centilli@enron.com
## 1703 73178 5317 TO pamela.daily@enron.com
## 1704 73179 5317 TO tracy.geaccone@enron.com
## 1705 73180 5317 TO steve.gilbert@enron.com
## 1706 73181 5317 TO john.keiser@enron.com
## 1707 73182 5317 TO jerry.peters@enron.com
## 1708 73183 5317 TO e..rosenberg@enron.com
## 1709 73184 5317 TO james.saunders@enron.com
## 1710 73185 5317 TO denis.tu@enron.com
## 1711 73186 5318 TO caroline.barnes@enron.com
## 1712 73187 5318 TO morris.brassfield@enron.com
## 1713 73188 5318 TO kathy.campos@enron.com
## 1714 73189 5318 TO james.centilli@enron.com
## 1715 73190 5318 TO pamela.daily@enron.com
## 1716 73191 5318 TO tracy.geaccone@enron.com
## 1717 73192 5318 TO steve.gilbert@enron.com
## 1718 73193 5318 TO john.keiser@enron.com
## 1719 73194 5318 TO jerry.peters@enron.com
## 1720 73195 5318 TO e..rosenberg@enron.com
## 1721 73196 5318 TO james.saunders@enron.com
## 1722 73197 5318 TO denis.tu@enron.com
## 1723 73203 5322 TO tracy.geaccone@enron.com
## 1724 73225 5334 TO tracy.geaccone@enron.com
## 1725 73226 5335 TO tracy.geaccone@enron.com
## 1726 73227 5335 TO james.saunders@enron.com
## 1727 73228 5335 TO morris.brassfield@enron.com
## 1728 73229 5336 TO tracy.geaccone@enron.com
## 1729 73230 5337 TO morris.brassfield@enron.com
## 1730 73231 5337 TO james.saunders@enron.com
## 1731 73232 5337 TO tracy.geaccone@enron.com
## 1732 73233 5337 TO steve.gilbert@enron.com
## 1733 73234 5337 TO john.keiser@enron.com
## 1734 73235 5337 TO caroline.barnes@enron.com
## 1735 73236 5337 TO michael.ratner@enron.com
## 1736 73237 5337 TO jerry.peters@enron.com
## 1737 73238 5337 TO e..rosenberg@enron.com
## 1738 73239 5337 TO denis.tu@enron.com
## 1739 73240 5337 TO james.centilli@enron.com
## 1740 73241 5337 TO pamela.daily@enron.com
## 1741 73336 5353 TO tracy.geaccone@enron.com
## 1742 73344 5355 TO steve.kleb@enron.com
## 1743 73345 5355 CC tracy.geaccone@enron.com
## 1744 73346 5355 CC steve.gilbert@enron.com
## 1745 73347 5355 CC john.fiscus@enron.com
## 1746 73348 5355 BCC tracy.geaccone@enron.com
## 1747 73349 5355 BCC steve.gilbert@enron.com
## 1748 73350 5355 BCC john.fiscus@enron.com
## 1749 73383 5365 TO tracy.geaccone@enron.com
## 1750 73384 5365 TO steve.gilbert@enron.com
## 1751 73385 5365 TO john.keiser@enron.com
## 1752 73386 5365 CC james.saunders@enron.com
## 1753 73387 5365 BCC james.saunders@enron.com
## 1754 73390 5368 TO tracy.geaccone@enron.com
## 1755 73398 5372 TO tracy.geaccone@enron.com
## 1756 73405 5377 TO tracy.geaccone@enron.com
## 1757 73406 5378 TO tracy.geaccone@enron.com
## 1758 73407 5378 TO jan.moore@enron.com
## 1759 73524 5397 TO tracy.geaccone@enron.com
## 1760 73555 5408 TO caroline.barnes@enron.com
## 1761 73556 5408 CC a..lindholm@enron.com
## 1762 73557 5408 CC e..sommers@enron.com
## 1763 73558 5408 CC keith.marlow@enron.com
## 1764 73559 5408 CC caroline.barnes@enron.com
## 1765 73560 5408 CC morris.brassfield@enron.com
## 1766 73561 5408 CC kathy.campos@enron.com
## 1767 73562 5408 CC james.centilli@enron.com
## 1768 73563 5408 CC pamela.daily@enron.com
## 1769 73564 5408 CC tracy.geaccone@enron.com
## 1770 73565 5408 CC steve.gilbert@enron.com
## 1771 73566 5408 CC john.keiser@enron.com
## 1772 73567 5408 CC jerry.peters@enron.com
## 1773 73568 5408 CC e..rosenberg@enron.com
## 1774 73569 5408 CC james.saunders@enron.com
## 1775 73570 5408 CC denis.tu@enron.com
## 1776 73571 5408 BCC a..lindholm@enron.com
## 1777 73572 5408 BCC e..sommers@enron.com
## 1778 73573 5408 BCC keith.marlow@enron.com
## 1779 73574 5408 BCC caroline.barnes@enron.com
## 1780 73575 5408 BCC morris.brassfield@enron.com
## 1781 73576 5408 BCC kathy.campos@enron.com
## 1782 73577 5408 BCC james.centilli@enron.com
## 1783 73578 5408 BCC pamela.daily@enron.com
## 1784 73579 5408 BCC tracy.geaccone@enron.com
## 1785 73580 5408 BCC steve.gilbert@enron.com
## 1786 73581 5408 BCC john.keiser@enron.com
## 1787 73582 5408 BCC jerry.peters@enron.com
## 1788 73583 5408 BCC e..rosenberg@enron.com
## 1789 73584 5408 BCC james.saunders@enron.com
## 1790 73585 5408 BCC denis.tu@enron.com
## 1791 73587 5410 TO kathy.campos@enron.com
## 1792 73588 5410 CC tracy.geaccone@enron.com
## 1793 73589 5410 BCC tracy.geaccone@enron.com
## 1794 73760 5419 TO tracy.geaccone@enron.com
## 1795 73781 5428 TO james.saunders@enron.com
## 1796 73782 5428 TO a..howard@enron.com
## 1797 73783 5428 CC tracy.geaccone@enron.com
## 1798 73784 5428 BCC tracy.geaccone@enron.com
## 1799 73790 5430 TO tracy.geaccone@enron.com
## 1800 73824 5435 TO tracy.geaccone@enron.com
## 1801 73846 5448 TO tracy.geaccone@enron.com
## 1802 74019 5465 TO tracy.geaccone@enron.com
## 1803 74021 5467 TO tracy.geaccone@enron.com
## 1804 74022 5468 TO tracy.geaccone@enron.com
## 1805 74023 5469 TO tracy.geaccone@enron.com
## 1806 74108 5486 TO tracy.geaccone@enron.com
## 1807 74135 5496 TO robert.kilmer@enron.com
## 1808 74136 5496 TO kay.miller@enron.com
## 1809 74137 5496 TO ray.neppl@enron.com
## 1810 74138 5496 TO tracy.geaccone@enron.com
## 1811 74139 5496 CC gay.mayeux@enron.com
## 1812 74140 5496 BCC gay.mayeux@enron.com
## 1813 74145 5498 TO tracy.geaccone@enron.com
## 1814 74153 5503 TO tracy.geaccone@enron.com
## 1815 74181 5509 TO tracy.geaccone@enron.com
## 1816 74204 5512 TO steve.gilbert@enron.com
## 1817 74205 5512 CC tracy.geaccone@enron.com
## 1818 74206 5512 BCC tracy.geaccone@enron.com
## 1819 74207 5513 TO tracy.geaccone@enron.com
## 1820 74244 5529 TO tracy.geaccone@enron.com
## 1821 74266 5537 TO tracy.geaccone@enron.com
## 1822 74267 5538 TO james.saunders@enron.com
## 1823 74268 5538 TO jerry.peters@enron.com
## 1824 74269 5538 TO l..bouillion@enron.com
## 1825 74270 5538 TO a..howard@enron.com
## 1826 74271 5538 TO tracy.geaccone@enron.com
## 1827 74272 5538 CC lawrence.clayton@enron.com
## 1828 74273 5538 BCC lawrence.clayton@enron.com
## 1829 74327 5545 TO michael.anderson@enron.com
## 1830 74328 5545 TO jim.piro@enron.com
## 1831 74329 5545 TO a..lindholm@enron.com
## 1832 74330 5545 TO e..sommers@enron.com
## 1833 74331 5545 TO jerry.peters@enron.com
## 1834 74332 5545 TO james.saunders@enron.com
## 1835 74333 5545 TO tracy.geaccone@enron.com
## 1836 74334 5545 TO michael.norris@enron.com
## 1837 74335 5545 TO keith.marlow@enron.com
## 1838 74336 5545 TO steve.gilbert@enron.com
## 1839 74337 5545 TO john.keiser@enron.com
## 1840 74338 5545 TO michael.ratner@enron.com
## 1841 74339 5545 TO lawrence.clayton@enron.com
## 1842 74340 5545 CC kathy.campos@enron.com
## 1843 74341 5545 BCC kathy.campos@enron.com
## 1844 74354 5550 TO keith.harris@wessexwater.co.uk
## 1845 74355 5550 CC no.address@enron.com
## 1846 74356 5550 CC no.address@enron.com
## 1847 74357 5550 CC michael.anderson@enron.com
## 1848 74358 5550 CC l..bouillion@enron.com
## 1849 74359 5550 BCC no.address@enron.com
## 1850 74360 5550 BCC no.address@enron.com
## 1851 74361 5550 BCC michael.anderson@enron.com
## 1852 74362 5550 BCC l..bouillion@enron.com
## 1853 74441 5561 TO james.saunders@enron.com
## 1854 74442 5561 TO steve.gilbert@enron.com
## 1855 74443 5561 CC tracy.geaccone@enron.com
## 1856 74444 5561 CC dana.jones@enron.com
## 1857 74445 5561 CC john.cobb@enron.com
## 1858 74446 5561 CC dan.fancler@enron.com
## 1859 74447 5561 CC bob.chandler@enron.com
## 1860 74448 5561 BCC tracy.geaccone@enron.com
## 1861 74449 5561 BCC dana.jones@enron.com
## 1862 74450 5561 BCC john.cobb@enron.com
## 1863 74451 5561 BCC dan.fancler@enron.com
## 1864 74452 5561 BCC bob.chandler@enron.com
## 1865 74453 5562 TO tracy.geaccone@enron.com
## 1866 74479 5565 TO tracy.geaccone@enron.com
## 1867 74480 5566 TO tracy.geaccone@enron.com
## 1868 74481 5566 CC steven.harris@enron.com
## 1869 74482 5566 BCC steven.harris@enron.com
## 1870 74487 5569 TO tracy.geaccone@enron.com
## 1871 74520 5574 TO sally.beck@enron.com
## 1872 74521 5574 CC tracy.geaccone@enron.com
## 1873 74522 5574 CC steve.hotte@enron.com
## 1874 74523 5574 CC e..sommers@enron.com
## 1875 74524 5574 BCC tracy.geaccone@enron.com
## 1876 74525 5574 BCC steve.hotte@enron.com
## 1877 74526 5574 BCC e..sommers@enron.com
## 1878 74531 5576 TO steve.hotte@enron.com
## 1879 74532 5576 CC tracy.geaccone@enron.com
## 1880 74533 5576 BCC tracy.geaccone@enron.com
## 1881 74534 5577 TO caroline.barnes@enron.com
## 1882 74535 5577 TO morris.brassfield@enron.com
## 1883 74536 5577 TO kathy.campos@enron.com
## 1884 74537 5577 TO james.centilli@enron.com
## 1885 74538 5577 TO pamela.daily@enron.com
## 1886 74539 5577 TO tracy.geaccone@enron.com
## 1887 74540 5577 TO steve.gilbert@enron.com
## 1888 74541 5577 TO john.keiser@enron.com
## 1889 74542 5577 TO thomas.meers@enron.com
## 1890 74543 5577 TO jerry.peters@enron.com
## 1891 74544 5577 TO e..rosenberg@enron.com
## 1892 74545 5577 TO james.saunders@enron.com
## 1893 74546 5577 TO denis.tu@enron.com
## 1894 74553 5580 TO james.saunders@enron.com
## 1895 74554 5580 CC tracy.geaccone@enron.com
## 1896 74555 5580 BCC tracy.geaccone@enron.com
## 1897 74573 5587 TO tracy.geaccone@enron.com
## 1898 74574 5587 TO steve.gilbert@enron.com
## 1899 74575 5587 TO john.keiser@enron.com
## 1900 74602 5596 TO tracy.geaccone@enron.com
## 1901 74619 5599 TO james.saunders@enron.com
## 1902 74620 5599 CC tracy.geaccone@enron.com
## 1903 74621 5599 BCC tracy.geaccone@enron.com
## 1904 74726 5606 TO caroline.barnes@enron.com
## 1905 74727 5606 TO morris.brassfield@enron.com
## 1906 74728 5606 TO kathy.campos@enron.com
## 1907 74729 5606 TO james.centilli@enron.com
## 1908 74730 5606 TO pamela.daily@enron.com
## 1909 74731 5606 TO tracy.geaccone@enron.com
## 1910 74732 5606 TO steve.gilbert@enron.com
## 1911 74733 5606 TO john.keiser@enron.com
## 1912 74734 5606 TO thomas.meers@enron.com
## 1913 74735 5606 TO jerry.peters@enron.com
## 1914 74736 5606 TO e..rosenberg@enron.com
## 1915 74737 5606 TO james.saunders@enron.com
## 1916 74738 5606 TO denis.tu@enron.com
## 1917 74779 5613 TO caroline.barnes@enron.com
## 1918 74780 5613 TO morris.brassfield@enron.com
## 1919 74781 5613 TO kathy.campos@enron.com
## 1920 74782 5613 TO james.centilli@enron.com
## 1921 74783 5613 TO pamela.daily@enron.com
## 1922 74784 5613 TO tracy.geaccone@enron.com
## 1923 74785 5613 TO steve.gilbert@enron.com
## 1924 74786 5613 TO john.keiser@enron.com
## 1925 74787 5613 TO thomas.meers@enron.com
## 1926 74788 5613 TO jerry.peters@enron.com
## 1927 74789 5613 TO e..rosenberg@enron.com
## 1928 74790 5613 TO james.saunders@enron.com
## 1929 74791 5613 TO denis.tu@enron.com
## 1930 74802 5616 TO james.saunders@enron.com
## 1931 74803 5616 TO john.cobb@enron.com
## 1932 74804 5616 TO jennifer.lev@enron.com
## 1933 74805 5616 TO lori.maddox@enron.com
## 1934 74806 5616 CC tracy.geaccone@enron.com
## 1935 74807 5616 BCC tracy.geaccone@enron.com
## 1936 74808 5617 TO caroline.barnes@enron.com
## 1937 74809 5617 TO morris.brassfield@enron.com
## 1938 74810 5617 TO kathy.campos@enron.com
## 1939 74811 5617 TO james.centilli@enron.com
## 1940 74812 5617 TO pamela.daily@enron.com
## 1941 74813 5617 TO tracy.geaccone@enron.com
## 1942 74814 5617 TO steve.gilbert@enron.com
## 1943 74815 5617 TO john.keiser@enron.com
## 1944 74816 5617 TO thomas.meers@enron.com
## 1945 74817 5617 TO jerry.peters@enron.com
## 1946 74818 5617 TO e..rosenberg@enron.com
## 1947 74819 5617 TO james.saunders@enron.com
## 1948 74820 5617 TO denis.tu@enron.com
## 1949 74821 5618 TO tracy.geaccone@enron.com
## 1950 74826 5620 TO james.saunders@enron.com
## 1951 74827 5620 TO tracy.geaccone@enron.com
## 1952 74828 5621 TO james.saunders@enron.com
## 1953 74829 5621 TO tracy.geaccone@enron.com
## 1954 74843 5625 TO tracy.geaccone@enron.com
## 1955 74844 5626 TO james.saunders@enron.com
## 1956 74845 5626 CC tracy.geaccone@enron.com
## 1957 74846 5626 BCC tracy.geaccone@enron.com
## 1958 75088 5631 TO tracy.geaccone@enron.com
## 1959 75089 5631 TO james.centilli@enron.com
## 1960 75097 5634 TO danny.mccarty@enron.com
## 1961 75098 5634 TO steven.harris@enron.com
## 1962 75099 5634 CC tracy.geaccone@enron.com
## 1963 75100 5634 BCC tracy.geaccone@enron.com
## 1964 75101 5635 TO tracy.geaccone@enron.com
## 1965 75145 5647 TO tracy.geaccone@enron.com
## 1966 75368 5653 TO tracy.geaccone@enron.com
## 1967 75389 5655 TO tracy.geaccone@enron.com
## 1968 75429 5667 TO caroline.barnes@enron.com
## 1969 75430 5667 TO morris.brassfield@enron.com
## 1970 75431 5667 TO kathy.campos@enron.com
## 1971 75432 5667 TO james.centilli@enron.com
## 1972 75433 5667 TO pamela.daily@enron.com
## 1973 75434 5667 TO tracy.geaccone@enron.com
## 1974 75435 5667 TO steve.gilbert@enron.com
## 1975 75436 5667 TO john.keiser@enron.com
## 1976 75437 5667 TO thomas.meers@enron.com
## 1977 75438 5667 TO jerry.peters@enron.com
## 1978 75439 5667 TO e..rosenberg@enron.com
## 1979 75440 5667 TO james.saunders@enron.com
## 1980 75441 5667 TO denis.tu@enron.com
## 1981 75442 5668 TO tracy.geaccone@enron.com
## 1982 75561 5670 TO tracy.geaccone@enron.com
## 1983 75562 5671 TO tracy.geaccone@enron.com
## 1984 75621 5685 TO kathy.campos@enron.com
## 1985 75622 5685 CC tracy.geaccone@enron.com
## 1986 75623 5685 BCC tracy.geaccone@enron.com
## 1987 75831 5695 TO cindy.stark@enron.com
## 1988 75832 5695 CC tracy.geaccone@enron.com
## 1989 75833 5695 BCC tracy.geaccone@enron.com
## 1990 75834 5696 TO tracy.geaccone@enron.com
## 1991 75840 5698 TO tracy.geaccone@enron.com
## 1992 75841 5698 TO a..lindholm@enron.com
## 1993 75842 5698 TO jim.piro@enron.com
## 1994 75843 5698 TO keith.harris@enron.com
## 1995 75844 5698 CC e..sommers@enron.com
## 1996 75845 5698 BCC e..sommers@enron.com
## 1997 75846 5699 TO tracy.geaccone@enron.com
## 1998 75847 5699 TO sharron.westbrook@enron.com
## 1999 75848 5699 CC e..sommers@enron.com
## 2000 75849 5699 CC kathy.campos@enron.com
## 2001 75850 5699 CC cindy.stark@enron.com
## 2002 75851 5699 BCC e..sommers@enron.com
## 2003 75852 5699 BCC kathy.campos@enron.com
## 2004 75853 5699 BCC cindy.stark@enron.com
## 2005 75854 5700 TO tracy.geaccone@enron.com
## 2006 75856 5702 TO tracy.geaccone@enron.com
## 2007 75970 5711 TO tracy.geaccone@enron.com
## 2008 75971 5711 TO michael.ratner@enron.com
## 2009 75972 5711 TO james.centilli@enron.com
## 2010 75973 5711 TO paul.cherry@enron.com
## 2011 75974 5711 CC jerry.peters@enron.com
## 2012 75975 5711 CC james.saunders@enron.com
## 2013 75976 5711 BCC jerry.peters@enron.com
## 2014 75977 5711 BCC james.saunders@enron.com
## 2015 75978 5712 TO tracy.geaccone@enron.com
## 2016 75979 5713 TO danny.mccarty@enron.com
## 2017 75980 5713 TO phil.lowry@enron.com
## 2018 75981 5713 TO robert.hayes@enron.com
## 2019 75982 5713 TO steven.harris@enron.com
## 2020 75983 5713 TO dave.neubauer@enron.com
## 2021 75984 5713 TO bill.cordes@enron.com
## 2022 75985 5713 TO peggy.fowler@enron.com
## 2023 75986 5713 TO jim.piro@enron.com
## 2024 75987 5713 TO a..lindholm@enron.com
## 2025 75988 5713 TO adam.umanoff@enron.com
## 2026 75989 5713 CC kathy.campos@enron.com
## 2027 75990 5713 CC julie.armstrong@enron.com
## 2028 75991 5713 CC amelia.alder@enron.com
## 2029 75992 5713 CC audrey.robertson@enron.com
## 2030 75993 5713 CC martha.benner@enron.com
## 2031 75994 5713 CC mary.trosper@enron.com
## 2032 75995 5713 CC lorraine.telles@enron.com
## 2033 75996 5713 CC sandy.lewelling@enron.com
## 2034 75997 5713 CC deborah.cappiello@enron.com
## 2035 75998 5713 CC martha.benner@enron.com
## 2036 75999 5713 CC tracy.geaccone@enron.com
## 2037 76000 5713 BCC kathy.campos@enron.com
## 2038 76001 5713 BCC julie.armstrong@enron.com
## 2039 76002 5713 BCC amelia.alder@enron.com
## 2040 76003 5713 BCC audrey.robertson@enron.com
## 2041 76004 5713 BCC martha.benner@enron.com
## 2042 76005 5713 BCC mary.trosper@enron.com
## 2043 76006 5713 BCC lorraine.telles@enron.com
## 2044 76007 5713 BCC sandy.lewelling@enron.com
## 2045 76008 5713 BCC deborah.cappiello@enron.com
## 2046 76009 5713 BCC martha.benner@enron.com
## 2047 76010 5713 BCC tracy.geaccone@enron.com
## 2048 76167 5721 TO caroline.barnes@enron.com
## 2049 76168 5721 TO morris.brassfield@enron.com
## 2050 76169 5721 TO kathy.campos@enron.com
## 2051 76170 5721 TO james.centilli@enron.com
## 2052 76171 5721 TO pamela.daily@enron.com
## 2053 76172 5721 TO tracy.geaccone@enron.com
## 2054 76173 5721 TO steve.gilbert@enron.com
## 2055 76174 5721 TO john.keiser@enron.com
## 2056 76175 5721 TO thomas.meers@enron.com
## 2057 76176 5721 TO jerry.peters@enron.com
## 2058 76177 5721 TO e..rosenberg@enron.com
## 2059 76178 5721 TO james.saunders@enron.com
## 2060 76179 5721 TO denis.tu@enron.com
## 2061 76409 5742 TO tracy.geaccone@enron.com
## 2062 76410 5742 CC kirk.stevens@enron.com
## 2063 76411 5742 BCC kirk.stevens@enron.com
## 2064 76441 5750 TO john.keiser@enron.com
## 2065 76442 5750 TO steve.gilbert@enron.com
## 2066 76443 5750 TO elaine.concklin@enron.com
## 2067 76444 5750 TO patricia.wiederholt@enron.com
## 2068 76445 5750 TO john.jesse@enron.com
## 2069 76446 5750 TO morris.brassfield@enron.com
## 2070 76447 5750 TO barney.brasher@enron.com
## 2071 76448 5750 TO david.clements@enron.com
## 2072 76449 5750 TO john.cobb@enron.com
## 2073 76450 5750 TO bob.chandler@enron.com
## 2074 76451 5750 CC tracy.geaccone@enron.com
## 2075 76452 5750 CC james.saunders@enron.com
## 2076 76453 5750 CC jerry.peters@enron.com
## 2077 76454 5750 CC laura.kinningham@enron.com
## 2078 76455 5750 CC brian.schaffer@enron.com
## 2079 76456 5750 BCC tracy.geaccone@enron.com
## 2080 76457 5750 BCC james.saunders@enron.com
## 2081 76458 5750 BCC jerry.peters@enron.com
## 2082 76459 5750 BCC laura.kinningham@enron.com
## 2083 76460 5750 BCC brian.schaffer@enron.com
## 2084 76504 5762 TO tracy.geaccone@enron.com
## 2085 76505 5763 TO tracy.geaccone@enron.com
## 2086 76514 5766 TO tracy.geaccone@enron.com
## 2087 76515 5766 CC karl.jackson@enron.com
## 2088 76516 5766 BCC karl.jackson@enron.com
## 2089 76563 5778 TO greg.lewis@enron.com
## 2090 76564 5778 TO michael.sullivan@enron.com
## 2091 76565 5778 CC christine.schlaudraff@enron.com
## 2092 76566 5778 CC tracy.geaccone@enron.com
## 2093 76567 5778 CC caroline.barnes@enron.com
## 2094 76568 5778 CC james.saunders@enron.com
## 2095 76569 5778 BCC christine.schlaudraff@enron.com
## 2096 76570 5778 BCC tracy.geaccone@enron.com
## 2097 76571 5778 BCC caroline.barnes@enron.com
## 2098 76572 5778 BCC james.saunders@enron.com
## 2099 76649 5782 TO caroline.barnes@enron.com
## 2100 76650 5782 TO morris.brassfield@enron.com
## 2101 76651 5782 TO kathy.campos@enron.com
## 2102 76652 5782 TO james.centilli@enron.com
## 2103 76653 5782 TO pamela.daily@enron.com
## 2104 76654 5782 TO tracy.geaccone@enron.com
## 2105 76655 5782 TO steve.gilbert@enron.com
## 2106 76656 5782 TO john.keiser@enron.com
## 2107 76657 5782 TO thomas.meers@enron.com
## 2108 76658 5782 TO jerry.peters@enron.com
## 2109 76659 5782 TO e..rosenberg@enron.com
## 2110 76660 5782 TO james.saunders@enron.com
## 2111 76661 5782 TO denis.tu@enron.com
## 2112 76865 5805 TO tracy.geaccone@enron.com
## 2113 76891 5807 TO kay.miller@enron.com
## 2114 76892 5807 TO robert.kilmer@enron.com
## 2115 76893 5807 CC tim.kissner@enron.com
## 2116 76894 5807 CC steve.gilbert@enron.com
## 2117 76895 5807 CC john.fiscus@enron.com
## 2118 76896 5807 CC tracy.geaccone@enron.com
## 2119 76897 5807 CC dave.waymire@enron.com
## 2120 76898 5807 CC keith.petersen@enron.com
## 2121 76899 5807 CC steve.kirk@enron.com
## 2122 76900 5807 CC patrick.brennan@enron.com
## 2123 76901 5807 BCC tim.kissner@enron.com
## 2124 76902 5807 BCC steve.gilbert@enron.com
## 2125 76903 5807 BCC john.fiscus@enron.com
## 2126 76904 5807 BCC tracy.geaccone@enron.com
## 2127 76905 5807 BCC dave.waymire@enron.com
## 2128 76906 5807 BCC keith.petersen@enron.com
## 2129 76907 5807 BCC steve.kirk@enron.com
## 2130 76908 5807 BCC patrick.brennan@enron.com
## 2131 76919 5810 TO caroline.barnes@enron.com
## 2132 76920 5810 TO morris.brassfield@enron.com
## 2133 76921 5810 TO kathy.campos@enron.com
## 2134 76922 5810 TO james.centilli@enron.com
## 2135 76923 5810 TO pamela.daily@enron.com
## 2136 76924 5810 TO tracy.geaccone@enron.com
## 2137 76925 5810 TO steve.gilbert@enron.com
## 2138 76926 5810 TO john.keiser@enron.com
## 2139 76927 5810 TO thomas.meers@enron.com
## 2140 76928 5810 TO jerry.peters@enron.com
## 2141 76929 5810 TO e..rosenberg@enron.com
## 2142 76930 5810 TO james.saunders@enron.com
## 2143 76931 5810 TO denis.tu@enron.com
## 2144 76943 5817 TO tracy.geaccone@enron.com
## 2145 76944 5818 TO tracy.geaccone@enron.com
## 2146 76946 5820 TO tracy.geaccone@enron.com
## 2147 76947 5821 TO steve.kleb@enron.com
## 2148 76948 5822 TO maggie.schroeder@enron.com
## 2149 76949 5823 TO james.saunders@enron.com
## 2150 76950 5823 TO steve.gilbert@enron.com
## 2151 76951 5823 TO jerry.peters@enron.com
## 2152 76952 5823 TO john.keiser@enron.com
## 2153 76953 5823 TO james.centilli@enron.com
## 2154 76954 5823 TO a..howard@enron.com
## 2155 76955 5823 TO morris.brassfield@enron.com
## 2156 76956 5823 TO paul.cherry@enron.com
## 2157 76957 5823 TO caroline.barnes@enron.com
## 2158 76958 5823 TO denis.tu@enron.com
## 2159 76959 5823 TO e..rosenberg@enron.com
## 2160 76960 5824 TO rod.hayslett@enron.com
## 2161 76961 5825 TO security.sap@enron.com
## 2162 76962 5826 TO rod.hayslett@enron.com
## 2163 76963 5827 TO rod.hayslett@enron.com
## 2164 76964 5828 TO a..howard@enron.com
## 2165 76965 5828 CC steve.kleb@enron.com
## 2166 76966 5828 BCC steve.kleb@enron.com
## 2167 76967 5829 TO sarah.taylor@enron.com
## 2168 76968 5830 TO sarah.taylor@enron.com
## 2169 76969 5831 TO sarah.taylor@enron.com
## 2170 76970 5832 TO kimberly.watson@enron.com
## 2171 76971 5833 TO kimberly.watson@enron.com
## 2172 76972 5834 TO jan.moore@enron.com
## 2173 76973 5835 TO sarah.taylor@enron.com
## 2174 76974 5835 TO jayshree.desai@enron.com
## 2175 76975 5835 CC rod.hayslett@enron.com
## 2176 76976 5835 BCC rod.hayslett@enron.com
## 2177 76977 5836 TO rod.hayslett@enron.com
## 2178 76978 5836 TO sarah.taylor@enron.com
## 2179 76979 5836 TO jayshree.desai@enron.com
## 2180 76980 5837 TO rod.hayslett@enron.com
## 2181 76981 5838 TO rod. michael@enron.com
## 2182 76982 5839 TO rod.hayslett@enron.com
## 2183 76983 5840 TO kwatson@enron.com
## 2184 76984 5841 TO kim.watson@enron.com
## 2185 76985 5842 TO a..howard@enron.com
## 2186 76986 5843 TO james.weitekamp@enron.com
## 2187 76987 5844 TO a..howard@enron.com
## 2188 76988 5844 TO rod.hayslett@enron.com
## 2189 76989 5845 TO jan.moore@enron.com
## 2190 76990 5846 TO caroline.barnes@enron.com
## 2191 76991 5847 TO steve.kleb@enron.com
## 2192 76992 5848 TO rod.hayslett@enron.com
## 2193 76993 5849 TO rod.hayslett@enron.com
## 2194 76994 5850 TO rod.hayslett@enron.com
## 2195 76995 5851 TO mary.botello@enron.com
## 2196 76996 5852 TO bob.chandler@enron.com
## 2197 76997 5852 TO john.cobb@enron.com
## 2198 76998 5853 TO steven.harris@enron.com
## 2199 76999 5854 TO steven.harris@enron.com
## 2200 77000 5855 TO rod.hayslett@enron.com
## 2201 77001 5856 TO rod.hayslett@enron.com
## 2202 77002 5857 TO rod.hayslett@enron.com
## 2203 77003 5858 TO debbie.moore@enron.com
## 2204 77004 5859 TO rod.hayslett@enron.com
## 2205 77005 5860 TO rod.hayslett@enron.com
## 2206 77006 5861 TO rod.hayslett@enron.com
## 2207 77007 5862 TO julie.armstrong@enron.com
## 2208 77008 5863 TO jan.moore@enron.com
## 2209 77009 5864 TO james.saunders@enron.com
## 2210 77010 5865 TO julie.armstrong@enron.com
## 2211 77011 5866 TO rod.hayslett@enron.com
## 2212 77012 5867 TO rod.hayslett@enron.com
## 2213 77013 5868 TO rod.hayslett@enron.com
## 2214 77014 5869 TO pallavi.goradia@enron.com
## 2215 77015 5869 TO jan.moore@enron.com
## 2216 77016 5870 TO kimberly.bragg@enron.com
## 2217 77017 5870 CC john.cobb@enron.com
## 2218 77018 5870 BCC john.cobb@enron.com
## 2219 77019 5871 TO jan.moore@enron.com
## 2220 77020 5871 TO lindy.donoho@enron.com
## 2221 77021 5872 TO rod.hayslett@enron.com
## 2222 77022 5873 TO rod.hayslett@enron.com
## 2223 77023 5874 TO rod.hayslett@enron.com
## 2224 77024 5875 TO rod.hayslett@enron.com
## 2225 77025 5876 TO rod.hayslett@enron.com
## 2226 77026 5877 TO rod.hayslett@enron.com
## 2227 77027 5878 TO rod.hayslett@enron.com
## 2228 77028 5879 TO steven.harris@enron.com
## 2229 77029 5880 TO rod.hayslett@enron.com
## 2230 77030 5881 TO john.cobb@enron.com
## 2231 77031 5882 TO steven.harris@enron.com
## 2232 77032 5883 TO rod.hayslett@enron.com
## 2233 77033 5884 TO e..sommers@enron.com
## 2234 77034 5885 TO stanley.horton@enron.com
## 2235 77035 5886 TO jeff.sommers@enron.com
## 2236 77036 5887 TO blake.walker@enron.com
## 2237 77037 5887 TO chris.lambert@enron.com
## 2238 77038 5887 TO jeff.poche@enron.com
## 2239 77039 5888 TO agatha.tran@enron.com
## 2240 77040 5888 TO stephen.schwarzbach@enron.com
## 2241 77041 5889 TO stephen.schwarzbach@enron.com
## 2242 77042 5890 TO stephen.schwarzbach@enron.com
## 2243 77043 5891 TO stephen.schwarzbach@enron.com
## 2244 77044 5892 TO stephen.schwarzbach@enron.com
## 2245 77045 5893 TO chris.lambert@enron.com
## 2246 77046 5894 TO valerie.giles@enron.com
## 2247 77047 5894 TO kirk.stevens@enron.com
## 2248 77048 5895 TO steve.kleb@enron.com
## 2249 77049 5896 TO james.saunders@enron.com
## 2250 77050 5896 TO bob.chandler@enron.com
## 2251 77051 5896 TO e..sommers@enron.com
## 2252 77052 5896 TO michael.anderson@enron.com
## 2253 77053 5896 TO kirk.stevens@enron.com
## 2254 77054 5896 TO valerie.giles@enron.com
## 2255 77055 5896 TO a..lindholm@enron.com
## 2256 77056 5896 TO blake.walker@enron.com
## 2257 77057 5896 CC gary.zahn@enron.com
## 2258 77058 5896 CC harry.walters@enron.com
## 2259 77059 5896 BCC gary.zahn@enron.com
## 2260 77060 5896 BCC harry.walters@enron.com
## 2261 77061 5897 TO jan.moore@enron.com
## 2262 77062 5898 TO steven.harris@enron.com
## 2263 77063 5899 TO steven.harris@enron.com
## 2264 77064 5900 TO steven.harris@enron.com
## 2265 77065 5901 TO steven.harris@enron.com
## 2266 77066 5902 TO steve.kleb@enron.com
## 2267 77067 5903 TO rod.hayslett@enron.com
## 2268 77068 5904 TO e..lindsey@enron.com
## 2269 77069 5905 TO rod.hayslett@enron.com
## 2270 77070 5906 TO rod.hayslett@enron.com
## 2271 77071 5907 TO stephen.schwarzbach@enron.com
## 2272 77072 5907 CC rod.hayslett@enron.com
## 2273 77073 5907 BCC rod.hayslett@enron.com
## 2274 77074 5908 TO john.ambler@enron.com
## 2275 77075 5909 TO debbie.moore@enron.com
## 2276 77076 5910 TO debbie.moore@enron.com
## 2277 77077 5911 TO steven.harris@enron.com
## 2278 77078 5912 TO debbie.moore@enron.com
## 2279 77079 5913 TO security.sap@enron.com
## 2280 77080 5913 TO jan.moore@enron.com
## 2281 77081 5914 TO steven.harris@enron.com
## 2282 77082 5915 TO steven.harris@enron.com
## 2283 77083 5916 TO ruthann.frausto@enron.com
## 2284 77084 5916 CC pamela.daily@enron.com
## 2285 77085 5916 BCC pamela.daily@enron.com
## 2286 77086 5917 TO steve.kleb@enron.com
## 2287 77087 5917 TO jan.moore@enron.com
## 2288 77088 5917 TO mary.botello@enron.com
## 2289 77089 5917 TO james.weitekamp@enron.com
## 2290 77090 5918 TO cheryl.perchal@enron.com
## 2291 77091 5918 TO jerry.peters@enron.com
## 2292 77092 5918 CC james.weitekamp@enron.com
## 2293 77093 5918 BCC james.weitekamp@enron.com
## 2294 77094 5919 TO julie.armstrong@enron.com
## 2295 77095 5920 TO j..parrish@enron.com
## 2296 77096 5921 TO rod.hayslett@enron.com
## 2297 77097 5922 TO rod.hayslett@enron.com
## 2298 77098 5923 TO rod.hayslett@enron.com
## 2299 77099 5924 TO a..howard@enron.com
## 2300 77100 5925 TO a..howard@enron.com
## 2301 77101 5926 TO lee.baker@enron.com
## 2302 77102 5926 CC elaine.concklin@enron.com
## 2303 77103 5926 CC greg.lewis@enron.com
## 2304 77104 5926 BCC elaine.concklin@enron.com
## 2305 77105 5926 BCC greg.lewis@enron.com
## 2306 77106 5927 TO jeanette.doll@enron.com
## 2307 77107 5928 TO dan.fancler@enron.com
## 2308 77108 5928 TO steve.weller@enron.com
## 2309 77109 5928 TO g..stage@enron.com
## 2310 77110 5928 TO jennifer.lev@enron.com
## 2311 77111 5928 CC john.cobb@enron.com
## 2312 77112 5928 CC bob.chandler@enron.com
## 2313 77113 5928 BCC john.cobb@enron.com
## 2314 77114 5928 BCC bob.chandler@enron.com
## 2315 77115 5929 TO danny.mccarty@enron.com
## 2316 77116 5929 TO steven.harris@enron.com
## 2317 77117 5929 TO robert.hayes@enron.com
## 2318 77118 5929 TO dave.neubauer@enron.com
## 2319 77119 5929 TO steve.hotte@enron.com
## 2320 77120 5929 TO bill.cordes@enron.com
## 2321 77121 5929 TO phil.lowry@enron.com
## 2322 77122 5929 TO shelley.corman@enron.com
## 2323 77123 5929 TO drew.fossum@enron.com
## 2324 77124 5929 TO gary.smith@enron.com
## 2325 77125 5929 TO eric.gadd@enron.com
## 2326 77126 5929 TO rod.hayslett@enron.com
## 2327 77127 5929 CC cindy.stark@enron.com
## 2328 77128 5929 CC julie.armstrong@enron.com
## 2329 77129 5929 CC audrey.robertson@enron.com
## 2330 77130 5929 CC rita.houser@enron.com
## 2331 77131 5929 CC martha.benner@enron.com
## 2332 77132 5929 CC amelia.alder@enron.com
## 2333 77133 5929 CC ricki.winters@enron.com
## 2334 77134 5929 CC deborah.cappiello@enron.com
## 2335 77135 5929 CC tammy.kovalcik@enron.com
## 2336 77136 5929 CC susan.wadle@enron.com
## 2337 77137 5929 CC emily.sellers@enron.com
## 2338 77138 5929 CC carolyn.perry@enron.com
## 2339 77139 5929 CC kathy.campos@enron.com
## 2340 77140 5929 CC james.saunders@enron.com
## 2341 77141 5929 CC steve.gilbert@enron.com
## 2342 77142 5929 CC morris.brassfield@enron.com
## 2343 77143 5929 CC elaine.concklin@enron.com
## 2344 77144 5929 CC caroline.barnes@enron.com
## 2345 77145 5929 CC john.keiser@enron.com
## 2346 77146 5929 BCC cindy.stark@enron.com
## 2347 77147 5929 BCC julie.armstrong@enron.com
## 2348 77148 5929 BCC audrey.robertson@enron.com
## 2349 77149 5929 BCC rita.houser@enron.com
## 2350 77150 5929 BCC martha.benner@enron.com
## 2351 77151 5929 BCC amelia.alder@enron.com
## 2352 77152 5929 BCC ricki.winters@enron.com
## 2353 77153 5929 BCC deborah.cappiello@enron.com
## 2354 77154 5929 BCC tammy.kovalcik@enron.com
## 2355 77155 5929 BCC susan.wadle@enron.com
## 2356 77156 5929 BCC emily.sellers@enron.com
## 2357 77157 5929 BCC carolyn.perry@enron.com
## 2358 77158 5929 BCC kathy.campos@enron.com
## 2359 77159 5929 BCC james.saunders@enron.com
## 2360 77160 5929 BCC steve.gilbert@enron.com
## 2361 77161 5929 BCC morris.brassfield@enron.com
## 2362 77162 5929 BCC elaine.concklin@enron.com
## 2363 77163 5929 BCC caroline.barnes@enron.com
## 2364 77164 5929 BCC john.keiser@enron.com
## 2365 77165 5930 TO chris.samaniego@cingular.com
## 2366 77166 5931 TO rod.hayslett@enron.com
## 2367 77167 5932 TO rod.hayslett@enron.com
## 2368 77168 5933 TO steve.kleb@enron.com
## 2369 77169 5934 TO heidiblack@houston.rr.com
## 2370 77170 5935 TO steve.kleb@enron.com
## 2371 77171 5936 TO jana.domke@enron.com
## 2372 77172 5937 TO james.weitekamp@enron.com
## 2373 77173 5938 TO james.weitekamp@enron.com
## 2374 77174 5939 TO jeanette.doll@enron.com
## 2375 77175 5940 TO e..sommers@enron.com
## 2376 77176 5941 TO rod.hayslett@enron.com
## 2377 77177 5941 TO stanley.horton@enron.com
## 2378 77178 5941 CC cindy.stark@enron.com
## 2379 77179 5941 BCC cindy.stark@enron.com
## 2380 77180 5942 TO james.saunders@enron.com
## 2381 77181 5943 TO rod.hayslett@enron.com
## 2382 77182 5943 TO a..howard@enron.com
## 2383 77183 5944 TO rod.hayslett@enron.com
## 2384 77184 5944 TO john.keiser@enron.com
## 2385 77185 5944 TO steve.gilbert@enron.com
## 2386 77186 5944 TO steve.kleb@enron.com
## 2387 77187 5944 TO james.weitekamp@enron.com
## 2388 77188 5944 TO jan.moore@enron.com
## 2389 77189 5944 TO mary.botello@enron.com
## 2390 77190 5944 TO caroline.barnes@enron.com
## 2391 77191 5944 TO elaine.concklin@enron.com
## 2392 77192 5944 CC kathy.campos@enron.com
## 2393 77193 5944 CC cindy.stark@enron.com
## 2394 77194 5944 BCC kathy.campos@enron.com
## 2395 77195 5944 BCC cindy.stark@enron.com
## 2396 77196 5945 TO caroline.barnes@enron.com
## 2397 77197 5945 TO nancy.carpenter@enron.com
## 2398 77198 5945 TO elaine.concklin@enron.com
## 2399 77199 5946 TO a..howard@enron.com
## 2400 77200 5946 CC james.saunders@enron.com
## 2401 77201 5946 CC rod.hayslett@enron.com
## 2402 77202 5946 BCC james.saunders@enron.com
## 2403 77203 5946 BCC rod.hayslett@enron.com
## 2404 77204 5947 TO nancy.carpenter@enron.com
## 2405 77205 5948 TO nancy.carpenter@enron.com
## 2406 77206 5948 TO elaine.concklin@enron.com
## 2407 77207 5948 CC caroline.barnes@enron.com
## 2408 77208 5948 BCC caroline.barnes@enron.com
## 2409 77209 5949 TO james.saunders@enron.com
## 2410 77210 5950 TO a..howard@enron.com
## 2411 77211 5951 TO a..howard@enron.com
## 2412 77212 5952 TO no.address@enron.com
## 2413 77213 5953 TO rod.hayslett@enron.com
## 2414 77214 5954 TO rod.hayslett@enron.com
## 2415 77215 5955 TO rod.hayslett@enron.com
## 2416 77216 5956 TO rod.hayslett@enron.com
## 2417 77217 5957 TO haysletr@flash.net
## 2418 77218 5958 TO chris.samaniego@cingular.com
## 2419 77219 5959 TO a..howard@enron.com
## 2420 77220 5960 TO enron@cingular.com
## 2421 77221 5961 TO rod.hayslett@enron.com
## 2422 77222 5962 TO fali@adaytum.com
## 2423 77223 5963 TO fali@adaytum.com
## 2424 77224 5964 TO dan.fancler@enron.com
## 2425 77225 5965 TO henry.baker@enron.com
## 2426 77226 5965 TO steve.gilbert@enron.com
## 2427 77227 5965 CC jan.moore@enron.com
## 2428 77228 5965 BCC jan.moore@enron.com
## 2429 77229 5966 TO dtyson@adaytum.com
## 2430 77230 5966 TO jweitek@enron.com
## 2431 77231 5966 TO hvo@adaytum.com
## 2432 77232 5966 CC fali@adaytum.com
## 2433 77233 5966 CC tgeacco@enron.com
## 2434 77234 5966 BCC fali@adaytum.com
## 2435 77235 5966 BCC tgeacco@enron.com
## 2436 77236 5967 TO eric.gadd@enron.com
## 2437 77237 5967 TO danny.mccarty@enron.com
## 2438 77238 5967 CC stephen.dowd@enron.com
## 2439 77239 5967 BCC stephen.dowd@enron.com
## 2440 77240 5968 TO michael.anderson@enron.com
## 2441 77241 5969 TO greg.lewis@enron.com
## 2442 77242 5970 TO 8772374503@pagenetmessage.net
## 2443 77243 5971 TO cheryl.perchal@enron.com
## 2444 77244 5972 TO agatha.tran@enron.com
## 2445 77245 5972 TO a..lindholm@enron.com
## 2446 77246 5972 TO cheryl.perchal@enron.com
## 2447 77247 5972 TO blake.walker@enron.com
## 2448 77248 5972 TO michael.anderson@enron.com
## 2449 77249 5972 TO e..sommers@enron.com
## 2450 77250 5972 TO jim.barnes@enron.com
## 2451 77251 5973 TO brian.stanley@enron.com
## 2452 77252 5973 CC rachael.venable@enron.com
## 2453 77253 5973 CC cindy.stark@enron.com
## 2454 77254 5973 BCC rachael.venable@enron.com
## 2455 77255 5973 BCC cindy.stark@enron.com
## 2456 77256 5974 TO fali@adaytum.com
## 2457 77257 5974 TO hvo@adaytum.com
## 2458 77258 5974 CC tyson.demetrics@enron.com
## 2459 77259 5974 CC james.weitekamp@enron.com
## 2460 77260 5974 BCC tyson.demetrics@enron.com
## 2461 77261 5974 BCC james.weitekamp@enron.com
## 2462 77262 5975 TO james.weitekamp@enron.com
## 2463 77263 5976 TO fali@adaytum.com
## 2464 77264 5976 CC hvo@adaytum.com
## 2465 77265 5976 CC dtyson@adaytum.com
## 2466 77266 5976 CC jweitek@enron.com
## 2467 77267 5976 BCC hvo@adaytum.com
## 2468 77268 5976 BCC dtyson@adaytum.com
## 2469 77269 5976 BCC jweitek@enron.com
## 2470 77270 5977 TO cindy.stark@enron.com
## 2471 77271 5977 CC rod.hayslett@enron.com
## 2472 77272 5977 BCC rod.hayslett@enron.com
## 2473 77273 5978 TO cindy.stark@enron.com
## 2474 77274 5979 TO cindy.stark@enron.com
## 2475 77275 5979 CC julie.armstrong@enron.com
## 2476 77276 5979 BCC julie.armstrong@enron.com
## 2477 77277 5980 TO kathy.campos@enron.com
## 2478 77278 5981 TO gay.mayeux@enron.com
## 2479 77279 5981 CC jan.moore@enron.com
## 2480 77280 5981 BCC jan.moore@enron.com
## 2481 77281 5982 TO kathy.campos@enron.com
## 2482 77282 5983 TO lorraine.telles@enron.com
## 2483 77283 5983 CC cindy.stark@enron.com
## 2484 77284 5983 BCC cindy.stark@enron.com
## 2485 77285 5984 TO steven.harris@enron.com
## 2486 77286 5985 TO steven.harris@enron.com
## 2487 77287 5986 TO john.keiser@enron.com
## 2488 77288 5987 TO jan.moore@enron.com
## 2489 77289 5987 CC kimberly.watson@enron.com
## 2490 77290 5987 BCC kimberly.watson@enron.com
## 2491 77291 5988 TO morris.brassfield@enron.com
## 2492 77292 5988 CC mary.botello@enron.com
## 2493 77293 5988 BCC mary.botello@enron.com
## 2494 77294 5989 TO cindy.stark@enron.com
## 2495 77295 5990 TO stephen.schwarzbach@enron.com
## 2496 77296 5990 CC rod.hayslett@enron.com
## 2497 77297 5990 BCC rod.hayslett@enron.com
## 2498 77298 5991 TO stephen.schwarzbach@enron.com
## 2499 77299 5992 TO agatha.tran@enron.com
## 2500 77300 5992 TO a..lindholm@enron.com
## 2501 77301 5992 TO cheryl.perchal@enron.com
## 2502 77302 5992 TO blake.walker@enron.com
## 2503 77303 5992 TO michael.anderson@enron.com
## 2504 77304 5992 TO e..sommers@enron.com
## 2505 77305 5992 TO jim.barnes@enron.com
## 2506 77306 5993 TO cindy.stark@enron.com
## 2507 77307 5994 TO john.keiser@enron.com
## 2508 77308 5994 TO steve.gilbert@enron.com
## 2509 77309 5994 TO jan.moore@enron.com
## 2510 77310 5995 TO marian.bryant@enron.com
## 2511 77311 5995 CC caroline.barnes@enron.com
## 2512 77312 5995 CC rod.hayslett@enron.com
## 2513 77313 5995 CC james.saunders@enron.com
## 2514 77314 5995 CC ron.nightingale@enron.com
## 2515 77315 5995 CC timothy.bayles@enron.com
## 2516 77316 5995 BCC caroline.barnes@enron.com
## 2517 77317 5995 BCC rod.hayslett@enron.com
## 2518 77318 5995 BCC james.saunders@enron.com
## 2519 77319 5995 BCC ron.nightingale@enron.com
## 2520 77320 5995 BCC timothy.bayles@enron.com
## 2521 77321 5996 TO mhughes@paincarecenter.com
## 2522 77322 5997 TO lindy.donoho@enron.com
## 2523 77323 5998 TO steven.harris@enron.com
## 2524 77324 5999 TO jan.moore@enron.com
## 2525 77325 6000 TO james.weitekamp@enron.com
## 2526 77326 6000 TO mary.botello@enron.com
## 2527 77327 6001 TO rod.hayslett@enron.com
## 2528 77328 6002 TO john.keiser@enron.com
## 2529 77329 6002 TO steve.gilbert@enron.com
## 2530 77330 6003 TO love@enron.com
## 2531 77331 6003 TO elove@coair.com
## 2532 77332 6004 TO steve.gilbert@enron.com
## 2533 77333 6005 TO steven.harris@enron.com
## 2534 77334 6006 TO love@enron.com
## 2535 77335 6006 TO elove@coair.com
## 2536 77336 6007 TO john.ambler@enron.com
## 2537 77337 6008 TO rod.hayslett@enron.com
## 2538 77338 6009 TO love@enron.com
## 2539 77339 6009 TO elove@coair.com
## 2540 77340 6010 TO caroline.barnes@enron.com
## 2541 77341 6011 TO michelle.lokay@enron.com
## 2542 77342 6012 TO steven.harris@enron.com
## 2543 77343 6012 TO kimberly.watson@enron.com
## 2544 77344 6012 TO michelle.lokay@enron.com
## 2545 77345 6012 TO lorraine.lindberg@enron.com
## 2546 77346 6012 TO audrey.robertson@enron.com
## 2547 77347 6012 TO rod.hayslett@enron.com
## 2548 77348 6012 TO steve.gilbert@enron.com
## 2549 77349 6013 TO steven.harris@enron.com
## 2550 77350 6014 TO caroline.barnes@enron.com
## 2551 77351 6015 TO no.address@enron.com
## 2552 77352 6016 TO kathy.campos@enron.com
## 2553 77353 6017 TO agatha.tran@enron.com
## 2554 77354 6018 TO mary.botello@enron.com
## 2555 77355 6019 TO a..howard@enron.com
## 2556 77356 6019 TO john.ambler@enron.com
## 2557 77357 6020 TO steven.harris@enron.com
## 2558 77358 6020 TO dave.neubauer@enron.com
## 2559 77359 6020 TO robert.hayes@enron.com
## 2560 77360 6020 TO eric.gadd@enron.com
## 2561 77361 6020 TO kay.miller@enron.com
## 2562 77362 6020 TO robert.kilmer@enron.com
## 2563 77363 6020 CC danny.mccarty@enron.com
## 2564 77364 6020 CC julie.armstrong@enron.com
## 2565 77365 6020 CC audrey.robertson@enron.com
## 2566 77366 6020 CC tammy.kovalcik@enron.com
## 2567 77367 6020 CC susan.wadle@enron.com
## 2568 77368 6020 CC john.keiser@enron.com
## 2569 77369 6020 CC steve.gilbert@enron.com
## 2570 77370 6020 CC rod.hayslett@enron.com
## 2571 77371 6020 BCC danny.mccarty@enron.com
## 2572 77372 6020 BCC julie.armstrong@enron.com
## 2573 77373 6020 BCC audrey.robertson@enron.com
## 2574 77374 6020 BCC tammy.kovalcik@enron.com
## 2575 77375 6020 BCC susan.wadle@enron.com
## 2576 77376 6020 BCC john.keiser@enron.com
## 2577 77377 6020 BCC steve.gilbert@enron.com
## 2578 77378 6020 BCC rod.hayslett@enron.com
## 2579 77379 6021 TO steven.harris@enron.com
## 2580 77380 6021 TO robert.hayes@enron.com
## 2581 77381 6021 TO dave.neubauer@enron.com
## 2582 77382 6021 TO eric.gadd@enron.com
## 2583 77383 6021 CC steve.gilbert@enron.com
## 2584 77384 6021 CC john.keiser@enron.com
## 2585 77385 6021 CC julie.armstrong@enron.com
## 2586 77386 6021 CC audrey.robertson@enron.com
## 2587 77387 6021 CC tammy.kovalcik@enron.com
## 2588 77388 6021 CC susan.wadle@enron.com
## 2589 77389 6021 BCC steve.gilbert@enron.com
## 2590 77390 6021 BCC john.keiser@enron.com
## 2591 77391 6021 BCC julie.armstrong@enron.com
## 2592 77392 6021 BCC audrey.robertson@enron.com
## 2593 77393 6021 BCC tammy.kovalcik@enron.com
## 2594 77394 6021 BCC susan.wadle@enron.com
## 2595 77395 6022 TO steven.harris@enron.com
## 2596 77396 6022 TO dave.neubauer@enron.com
## 2597 77397 6022 TO robert.hayes@enron.com
## 2598 77398 6022 TO eric.gadd@enron.com
## 2599 77399 6022 TO kay.miller@enron.com
## 2600 77400 6022 TO robert.kilmer@enron.com
## 2601 77401 6022 CC danny.mccarty@enron.com
## 2602 77402 6022 CC julie.armstrong@enron.com
## 2603 77403 6022 CC audrey.robertson@enron.com
## 2604 77404 6022 CC tammy.kovalcik@enron.com
## 2605 77405 6022 CC susan.wadle@enron.com
## 2606 77406 6022 CC john.keiser@enron.com
## 2607 77407 6022 CC steve.gilbert@enron.com
## 2608 77408 6022 CC rod.hayslett@enron.com
## 2609 77409 6022 BCC danny.mccarty@enron.com
## 2610 77410 6022 BCC julie.armstrong@enron.com
## 2611 77411 6022 BCC audrey.robertson@enron.com
## 2612 77412 6022 BCC tammy.kovalcik@enron.com
## 2613 77413 6022 BCC susan.wadle@enron.com
## 2614 77414 6022 BCC john.keiser@enron.com
## 2615 77415 6022 BCC steve.gilbert@enron.com
## 2616 77416 6022 BCC rod.hayslett@enron.com
## 2617 77417 6023 TO judy.lin@enron.com
## 2618 77418 6023 CC michael.ratner@enron.com
## 2619 77419 6023 CC jennifer.lev@enron.com
## 2620 77420 6023 BCC michael.ratner@enron.com
## 2621 77421 6023 BCC jennifer.lev@enron.com
## 2622 77422 6024 TO steven.harris@enron.com
## 2623 77423 6024 TO dave.neubauer@enron.com
## 2624 77424 6024 TO robert.hayes@enron.com
## 2625 77425 6024 TO eric.gadd@enron.com
## 2626 77426 6024 TO kay.miller@enron.com
## 2627 77427 6024 TO robert.kilmer@enron.com
## 2628 77428 6024 CC danny.mccarty@enron.com
## 2629 77429 6024 CC julie.armstrong@enron.com
## 2630 77430 6024 CC audrey.robertson@enron.com
## 2631 77431 6024 CC tammy.kovalcik@enron.com
## 2632 77432 6024 CC susan.wadle@enron.com
## 2633 77433 6024 CC john.keiser@enron.com
## 2634 77434 6024 CC steve.gilbert@enron.com
## 2635 77435 6024 BCC danny.mccarty@enron.com
## 2636 77436 6024 BCC julie.armstrong@enron.com
## 2637 77437 6024 BCC audrey.robertson@enron.com
## 2638 77438 6024 BCC tammy.kovalcik@enron.com
## 2639 77439 6024 BCC susan.wadle@enron.com
## 2640 77440 6024 BCC john.keiser@enron.com
## 2641 77441 6024 BCC steve.gilbert@enron.com
## 2642 77442 6025 TO kimberly.watson@enron.com
## 2643 77443 6026 TO steven.harris@enron.com
## 2644 77444 6027 TO jim.barnes@enron.com
## 2645 77445 6027 TO valerie.giles@enron.com
## 2646 77446 6027 TO peggy.fowler@enron.com
## 2647 77447 6027 TO mary.trosper@enron.com
## 2648 77448 6028 TO valerie.giles@enron.com
## 2649 77449 6029 TO blake.walker@enron.com
## 2650 77450 6030 TO mary.botello@enron.com
## 2651 77451 6030 TO a..lindholm@enron.com
## 2652 77452 6030 TO agatha.tran@enron.com
## 2653 77453 6030 TO erin.copeland@enron.com
## 2654 77454 6030 TO michael.anderson@enron.com
## 2655 77455 6030 TO jim.barnes@enron.com
## 2656 77456 6030 TO valerie.giles@enron.com
## 2657 77457 6031 TO mary.botello@enron.com
## 2658 77458 6032 TO james.centilli@enron.com
## 2659 77459 6033 TO james.centilli@enron.com
## 2660 77460 6034 TO adam.umanoff@enron.com
## 2661 77461 6034 CC a..lindholm@enron.com
## 2662 77462 6034 BCC a..lindholm@enron.com
## 2663 77463 6035 TO dan.fancler@enron.com
## 2664 77464 6035 TO james.saunders@enron.com
## 2665 77465 6035 CC john.cobb@enron.com
## 2666 77466 6035 CC bob.chandler@enron.com
## 2667 77467 6035 CC steve.weller@enron.com
## 2668 77468 6035 CC raetta.zadow@enron.com
## 2669 77469 6035 BCC john.cobb@enron.com
## 2670 77470 6035 BCC bob.chandler@enron.com
## 2671 77471 6035 BCC steve.weller@enron.com
## 2672 77472 6035 BCC raetta.zadow@enron.com
## 2673 77473 6036 TO mei-ling.kaster@enron.com
## 2674 77474 6036 CC agatha.tran@enron.com
## 2675 77475 6036 CC e..sommers@enron.com
## 2676 77476 6036 CC rod.hayslett@enron.com
## 2677 77477 6036 BCC agatha.tran@enron.com
## 2678 77478 6036 BCC e..sommers@enron.com
## 2679 77479 6036 BCC rod.hayslett@enron.com
## 2680 77480 6037 TO mary.botello@enron.com
## 2681 77481 6038 TO cheryl.perchal@enron.com
## 2682 77482 6039 TO john.keiser@enron.com
## 2683 77483 6039 TO steve.gilbert@enron.com
## 2684 77484 6039 TO james.saunders@enron.com
## 2685 77485 6039 TO james.centilli@enron.com
## 2686 77486 6039 TO dennis.tufts@enron.com
## 2687 77487 6039 TO e..rosenberg@enron.com
## 2688 77488 6039 TO rod.hayslett@enron.com
## 2689 77489 6040 TO rod.hayslett@enron.com
## 2690 77490 6040 TO james.weitekamp@enron.com
## 2691 77491 6041 TO e..sommers@enron.com
## 2692 77492 6041 CC agatha.tran@enron.com
## 2693 77493 6041 BCC agatha.tran@enron.com
## 2694 77494 6042 TO rod.hayslett@enron.com
## 2695 77495 6043 TO grinotice@itiliti.com
## 2696 77496 6044 TO no.address@enron.com
## 2697 77497 6045 TO erin.copeland@enron.com
## 2698 77498 6045 CC rod.hayslett@enron.com
## 2699 77499 6045 BCC rod.hayslett@enron.com
## 2700 77500 6046 TO john.keiser@enron.com
## 2701 77501 6046 TO steve.gilbert@enron.com
## 2702 77502 6047 TO steve.hotte@enron.com
## 2703 77503 6048 TO e..sommers@enron.com
## 2704 77504 6048 TO kirk.stevens@enron.com
## 2705 77505 6048 TO valerie.giles@enron.com
## 2706 77506 6048 TO a..lindholm@enron.com
## 2707 77507 6048 TO michael.anderson@enron.com
## 2708 77508 6048 TO thomas.meers@enron.com
## 2709 77509 6048 TO erin.copeland@enron.com
## 2710 77510 6048 TO keith.dodson@enron.com
## 2711 77511 6048 CC rod.hayslett@enron.com
## 2712 77512 6048 BCC rod.hayslett@enron.com
## 2713 77513 6049 TO mary.trosper@enron.com
## 2714 77514 6049 TO e..ramirez@enron.com
## 2715 77515 6049 TO connie.blackwood@enron.com
## 2716 77516 6049 TO lorraine.telles@enron.com
## 2717 77517 6049 TO kathy.campos@enron.com
## 2718 77518 6049 TO rachael.venable@enron.com
## 2719 77519 6050 TO danny.mccarty@enron.com
## 2720 77520 6050 TO bill.cordes@enron.com
## 2721 77521 6050 TO brian.stanley@enron.com
## 2722 77522 6050 TO peggy.fowler@enron.com
## 2723 77523 6050 TO l.garrison@enron.com
## 2724 77524 6050 TO a..hughes@enron.com
## 2725 77525 6050 TO adam.umanoff@enron.com
## 2726 77526 6050 CC michael.anderson@enron.com
## 2727 77527 6050 CC e..sommers@enron.com
## 2728 77528 6050 CC jerry.peters@enron.com
## 2729 77529 6050 CC erin.copeland@enron.com
## 2730 77530 6050 CC keith.dodson@enron.com
## 2731 77531 6050 CC jim.piro@enron.com
## 2732 77532 6050 CC a..lindholm@enron.com
## 2733 77533 6050 CC julie.armstrong@enron.com
## 2734 77534 6050 CC cindy.stark@enron.com
## 2735 77535 6050 CC rod.hayslett@enron.com
## 2736 77536 6050 CC cindy.stark@enron.com
## 2737 77537 6050 BCC michael.anderson@enron.com
## 2738 77538 6050 BCC e..sommers@enron.com
## 2739 77539 6050 BCC jerry.peters@enron.com
## 2740 77540 6050 BCC erin.copeland@enron.com
## 2741 77541 6050 BCC keith.dodson@enron.com
## 2742 77542 6050 BCC jim.piro@enron.com
## 2743 77543 6050 BCC a..lindholm@enron.com
## 2744 77544 6050 BCC julie.armstrong@enron.com
## 2745 77545 6050 BCC cindy.stark@enron.com
## 2746 77546 6050 BCC rod.hayslett@enron.com
## 2747 77547 6050 BCC cindy.stark@enron.com
## 2748 77548 6051 TO rod.hayslett@enron.com
## 2749 77549 6052 TO carolyn_winowitch@pgn.com
## 2750 77550 6053 TO agatha.tran@enron.com
## 2751 77551 6053 TO e..sommers@enron.com
## 2752 77552 6054 TO mark.mcconnell@enron.com
## 2753 77553 6054 TO rod.hayslett@enron.com
## 2754 77554 6054 TO eric.gadd@enron.com
## 2755 77555 6054 CC kimberly.watson@enron.com
## 2756 77556 6054 BCC kimberly.watson@enron.com
## 2757 77557 6055 TO carolyn_winowitch@pgn.com
## 2758 77558 6056 TO james.centilli@enron.com
## 2759 77559 6057 TO rod.hayslett@enron.com
## 2760 77560 6058 TO erin.copeland@enron.com
## 2761 77561 6059 TO michael.anderson@enron.com
## 2762 77562 6060 TO a..lindholm@enron.com
## 2763 77563 6061 TO steven.harris@enron.com
## 2764 77564 6062 TO robert.kilmer@enron.com
## 2765 77565 6063 TO farley@enron.com
## 2766 77566 6063 TO jfarley@reliant.com
## 2767 77567 6064 TO john.keiser@enron.com
## 2768 77568 6065 TO danny.mccarty@enron.com
## 2769 77569 6065 TO steven.harris@enron.com
## 2770 77570 6065 TO robert.hayes@enron.com
## 2771 77571 6065 TO dave.neubauer@enron.com
## 2772 77572 6065 TO phil.lowry@enron.com
## 2773 77573 6065 TO steve.hotte@enron.com
## 2774 77574 6065 TO drew.fossum@enron.com
## 2775 77575 6065 TO eric.gadd@enron.com
## 2776 77576 6065 TO gary.smith@enron.com
## 2777 77577 6065 TO bill.cordes@enron.com
## 2778 77578 6065 TO rod.hayslett@enron.com
## 2779 77579 6065 CC cindy.stark@enron.com
## 2780 77580 6065 CC julie.armstrong@enron.com
## 2781 77581 6065 CC audrey.robertson@enron.com
## 2782 77582 6065 CC tammy.kovalcik@enron.com
## 2783 77583 6065 CC martha.benner@enron.com
## 2784 77584 6065 CC emily.sellers@enron.com
## 2785 77585 6065 CC susan.wadle@enron.com
## 2786 77586 6065 CC carolyn.perry@enron.com
## 2787 77587 6065 CC rita.houser@enron.com
## 2788 77588 6065 CC steve.gilbert@enron.com
## 2789 77589 6065 CC john.keiser@enron.com
## 2790 77590 6065 CC james.saunders@enron.com
## 2791 77591 6065 CC caroline.barnes@enron.com
## 2792 77592 6065 CC morris.brassfield@enron.com
## 2793 77593 6065 CC elaine.concklin@enron.com
## 2794 77594 6065 CC rita.houser@enron.com
## 2795 77595 6065 BCC cindy.stark@enron.com
## 2796 77596 6065 BCC julie.armstrong@enron.com
## 2797 77597 6065 BCC audrey.robertson@enron.com
## 2798 77598 6065 BCC tammy.kovalcik@enron.com
## 2799 77599 6065 BCC martha.benner@enron.com
## 2800 77600 6065 BCC emily.sellers@enron.com
## 2801 77601 6065 BCC susan.wadle@enron.com
## 2802 77602 6065 BCC carolyn.perry@enron.com
## 2803 77603 6065 BCC rita.houser@enron.com
## 2804 77604 6065 BCC steve.gilbert@enron.com
## 2805 77605 6065 BCC john.keiser@enron.com
## 2806 77606 6065 BCC james.saunders@enron.com
## 2807 77607 6065 BCC caroline.barnes@enron.com
## 2808 77608 6065 BCC morris.brassfield@enron.com
## 2809 77609 6065 BCC elaine.concklin@enron.com
## 2810 77610 6065 BCC rita.houser@enron.com
## 2811 77611 6066 TO mary.joyce@enron.com
## 2812 77612 6067 TO a..lindholm@enron.com
## 2813 77613 6068 TO security.sap@enron.com
## 2814 77614 6068 TO kim.phan@enron.com
## 2815 77615 6068 CC timothy.bayles@enron.com
## 2816 77616 6068 CC harry.walters@enron.com
## 2817 77617 6068 CC elaine.concklin@enron.com
## 2818 77618 6068 BCC timothy.bayles@enron.com
## 2819 77619 6068 BCC harry.walters@enron.com
## 2820 77620 6068 BCC elaine.concklin@enron.com
## 2821 77621 6069 TO erin.copeland@enron.com
## 2822 77622 6069 TO lori.maddox@enron.com
## 2823 77623 6069 TO cheryl.perchal@enron.com
## 2824 77624 6069 TO john.keiser@enron.com
## 2825 77625 6069 TO mary.botello@enron.com
## 2826 77626 6070 TO steve.gilbert@enron.com
## 2827 77627 6070 TO john.keiser@enron.com
## 2828 77628 6070 CC dana.jones@enron.com
## 2829 77629 6070 BCC dana.jones@enron.com
## 2830 77630 6071 TO gina.taylor@enron.com
## 2831 77631 6071 TO rod.hayslett@enron.com
## 2832 77632 6072 TO e..sommers@enron.com
## 2833 77633 6072 TO e..lindsey@enron.com
## 2834 77634 6072 TO stephen.schwarzbach@enron.com
## 2835 77635 6072 CC agatha.tran@enron.com
## 2836 77636 6072 CC a..hughes@enron.com
## 2837 77637 6072 CC rod.hayslett@enron.com
## 2838 77638 6072 BCC agatha.tran@enron.com
## 2839 77639 6072 BCC a..hughes@enron.com
## 2840 77640 6072 BCC rod.hayslett@enron.com
## 2841 77641 6073 TO steve.gilbert@enron.com
## 2842 77642 6073 TO john.keiser@enron.com
## 2843 77643 6073 CC dana.jones@enron.com
## 2844 77644 6073 BCC dana.jones@enron.com
## 2845 77645 6074 TO rod.hayslett@enron.com
## 2846 77646 6074 CC kathy.campos@enron.com
## 2847 77647 6074 BCC kathy.campos@enron.com
## 2848 77648 6075 TO jan.moore@enron.com
## 2849 77649 6076 TO hoang.vo@enron.com
## 2850 77650 6077 TO greg.lewis@enron.com
## 2851 77651 6078 TO drew.fossum@enron.com
## 2852 77652 6079 TO drew.fossum@enron.com
## 2853 77653 6080 TO stephen.schwarzbach@enron.com
## 2854 77654 6081 TO steve.kleb@enron.com
## 2855 77655 6082 TO darrington.outama@enron.com
## 2856 77656 6082 CC carolyn.winowitch@enron.com
## 2857 77657 6082 CC valerie.giles@enron.com
## 2858 77658 6082 CC jim.barnes@enron.com
## 2859 77659 6082 BCC carolyn.winowitch@enron.com
## 2860 77660 6082 BCC valerie.giles@enron.com
## 2861 77661 6082 BCC jim.barnes@enron.com
## 2862 77662 6083 TO mary.botello@enron.com
## 2863 77663 6084 TO joe.darensbourg@enron.com
## 2864 77664 6085 TO kathy.campos@enron.com
## 2865 77665 6086 TO rod.hayslett@enron.com
## 2866 77666 6087 TO steve.gilbert@enron.com
## 2867 77667 6088 TO kathy.campos@enron.com
## 2868 77668 6089 TO danny.mccarty@enron.com
## 2869 77669 6089 TO steven.harris@enron.com
## 2870 77670 6089 TO dave.neubauer@enron.com
## 2871 77671 6089 TO robert.hayes@enron.com
## 2872 77672 6089 TO bill.cordes@enron.com
## 2873 77673 6089 TO shelley.corman@enron.com
## 2874 77674 6089 TO drew.fossum@enron.com
## 2875 77675 6089 TO steve.hotte@enron.com
## 2876 77676 6089 TO phil.lowry@enron.com
## 2877 77677 6089 TO gary.smith@enron.com
## 2878 77678 6089 TO eric.gadd@enron.com
## 2879 77679 6089 CC steve.gilbert@enron.com
## 2880 77680 6089 CC john.keiser@enron.com
## 2881 77681 6089 CC jerry.peters@enron.com
## 2882 77682 6089 CC james.saunders@enron.com
## 2883 77683 6089 CC caroline.barnes@enron.com
## 2884 77684 6089 CC rod.hayslett@enron.com
## 2885 77685 6089 CC cindy.stark@enron.com
## 2886 77686 6089 CC martha.benner@enron.com
## 2887 77687 6089 CC emily.sellers@enron.com
## 2888 77688 6089 CC julie.armstrong@enron.com
## 2889 77689 6089 CC susan.wadle@enron.com
## 2890 77690 6089 CC dee.svatos@enron.com
## 2891 77691 6089 BCC steve.gilbert@enron.com
## 2892 77692 6089 BCC john.keiser@enron.com
## 2893 77693 6089 BCC jerry.peters@enron.com
## 2894 77694 6089 BCC james.saunders@enron.com
## 2895 77695 6089 BCC caroline.barnes@enron.com
## 2896 77696 6089 BCC rod.hayslett@enron.com
## 2897 77697 6089 BCC cindy.stark@enron.com
## 2898 77698 6089 BCC martha.benner@enron.com
## 2899 77699 6089 BCC emily.sellers@enron.com
## 2900 77700 6089 BCC julie.armstrong@enron.com
## 2901 77701 6089 BCC susan.wadle@enron.com
## 2902 77702 6089 BCC dee.svatos@enron.com
## 2903 77703 6090 TO jan.moore@enron.com
## 2904 77704 6091 TO jan.moore@enron.com
## 2905 77705 6092 TO michael.ratner@enron.com
## 2906 77706 6092 TO rod.hayslett@enron.com
## 2907 77707 6093 TO jennifer.lev@enron.com
## 2908 77708 6094 TO kathy.campos@enron.com
## 2909 77709 6095 TO jennifer.lev@enron.com
## 2910 77710 6096 TO jennifer.lev@enron.com
## 2911 77711 6097 TO demetrica.berry@enron.com
## 2912 77712 6098 TO jan.cobden@enron.com
## 2913 77713 6098 CC louis.soldano@enron.com
## 2914 77714 6098 BCC louis.soldano@enron.com
## 2915 77715 6099 TO kimberly.watson@enron.com
## 2916 77716 6099 TO lindy.donoho@enron.com
## 2917 77717 6100 TO danny.mccarty@enron.com
## 2918 77718 6101 TO john.keiser@enron.com
## 2919 77719 6102 TO john.keiser@enron.com
## 2920 77720 6102 TO cheryl.perchal@enron.com
## 2921 77721 6102 CC mary.botello@enron.com
## 2922 77722 6102 BCC mary.botello@enron.com
## 2923 77723 6103 TO mary.botello@enron.com
## 2924 77724 6104 TO rod.hayslett@enron.com
## 2925 77725 6105 TO rod.hayslett@enron.com
## 2926 77726 6106 TO kay.miller@enron.com
## 2927 77727 6106 TO steve.gilbert@enron.com
## 2928 77728 6107 TO jan.moore@enron.com
## 2929 77729 6107 TO lindy.donoho@enron.com
## 2930 77730 6108 TO steven.harris@enron.com
## 2931 77731 6109 TO cindy.stark@enron.com
## 2932 77732 6110 TO greg.lewis@enron.com
## 2933 77733 6110 CC michael.sullivan@enron.com
## 2934 77734 6110 CC mary.botello@enron.com
## 2935 77735 6110 CC caroline.barnes@enron.com
## 2936 77736 6110 BCC michael.sullivan@enron.com
## 2937 77737 6110 BCC mary.botello@enron.com
## 2938 77738 6110 BCC caroline.barnes@enron.com
## 2939 77739 6111 TO rod.hayslett@enron.com
## 2940 77740 6112 TO cindy.stark@enron.com
## 2941 77741 6113 TO rod.hayslett@enron.com
## 2942 77742 6114 TO e..sommers@enron.com
## 2943 77743 6114 CC rod.hayslett@enron.com
## 2944 77744 6114 BCC rod.hayslett@enron.com
## 2945 77745 6115 TO j..detmering@enron.com
## 2946 77746 6115 CC keith.dodson@enron.com
## 2947 77747 6115 CC erin.copeland@enron.com
## 2948 77748 6115 CC norma.petry@enron.com
## 2949 77749 6115 BCC keith.dodson@enron.com
## 2950 77750 6115 BCC erin.copeland@enron.com
## 2951 77751 6115 BCC norma.petry@enron.com
## 2952 77752 6116 TO rod.hayslett@enron.com
## 2953 77753 6116 TO james.saunders@enron.com
## 2954 77754 6117 TO rod.hayslett@enron.com
## 2955 77755 6118 TO dee.svatos@enron.com
## 2956 77756 6119 TO dee.svatos@enron.com
## 2957 77757 6119 TO kathy.campos@enron.com
## 2958 77758 6119 CC rod.hayslett@enron.com
## 2959 77759 6119 BCC rod.hayslett@enron.com
## 2960 77760 6120 TO cynthia.safford@enron.com
## 2961 77761 6121 TO rod.hayslett@enron.com
## 2962 77762 6122 TO steve.kleb@enron.com
## 2963 77763 6123 TO dee.svatos@enron.com
## 2964 77764 6123 TO rod.hayslett@enron.com
## 2965 77765 6123 CC kathy.campos@enron.com
## 2966 77766 6123 BCC kathy.campos@enron.com
## 2967 77767 6124 TO steve.gilbert@enron.com
## 2968 77768 6125 TO jan.moore@enron.com
## 2969 77769 6126 TO rod.hayslett@enron.com
## 2970 77770 6127 TO agatha.tran@enron.com
## 2971 77771 6128 TO caroline.barnes@enron.com
## 2972 77772 6129 TO steve.gilbert@enron.com
## 2973 77773 6130 TO nancy.carpenter@enron.com
## 2974 77774 6130 CC caroline.barnes@enron.com
## 2975 77775 6130 CC elaine.concklin@enron.com
## 2976 77776 6130 CC mary.botello@enron.com
## 2977 77777 6130 BCC caroline.barnes@enron.com
## 2978 77778 6130 BCC elaine.concklin@enron.com
## 2979 77779 6130 BCC mary.botello@enron.com
## 2980 77780 6131 TO agatha.tran@enron.com
## 2981 77781 6131 CC e..sommers@enron.com
## 2982 77782 6131 BCC e..sommers@enron.com
## 2983 77783 6132 TO norma.petry@enron.com
## 2984 77784 6132 TO rachael.venable@enron.com
## 2985 77785 6133 TO rod.hayslett@enron.com
## 2986 77786 6134 TO kathy.mayfield@enron.com
## 2987 77787 6135 TO kathy.campos@enron.com
## 2988 77788 6136 TO jan.moore@enron.com
## 2989 77789 6137 TO rod.hayslett@enron.com
## 2990 77790 6138 TO mary.botello@enron.com
## 2991 77791 6139 TO mary.botello@enron.com
## 2992 77792 6140 TO mary.botello@enron.com
## 2993 77793 6141 TO john.keiser@enron.com
## 2994 77794 6142 TO elaine.concklin@enron.com
## 2995 77795 6142 TO caroline.barnes@enron.com
## 2996 77796 6142 TO mary.botello@enron.com
## 2997 77797 6143 TO valerie.giles@enron.com
## 2998 77798 6143 TO a..lindholm@enron.com
## 2999 77799 6143 TO agatha.tran@enron.com
## 3000 77800 6143 TO erin.copeland@enron.com
## 3001 77801 6143 TO james.weitekamp@enron.com
## 3002 77802 6144 TO erin.copeland@enron.com
## 3003 77803 6144 TO rachael.venable@enron.com
## 3004 77804 6144 TO barbara.cook@enron.com
## 3005 77805 6144 TO norma.petry@enron.com
## 3006 77806 6144 TO blake.walker@enron.com
## 3007 77807 6144 CC cindy.stark@enron.com
## 3008 77808 6144 BCC cindy.stark@enron.com
## 3009 77809 6145 TO jebong.lee@enron.com
## 3010 77810 6146 TO kay.miller@enron.com
## 3011 77811 6147 TO e..ramirez@enron.com
## 3012 77812 6147 TO michael.anderson@enron.com
## 3013 77813 6147 TO rod.hayslett@enron.com
## 3014 77814 6147 CC cindy.stark@enron.com
## 3015 77815 6147 CC kathy.campos@enron.com
## 3016 77816 6147 BCC cindy.stark@enron.com
## 3017 77817 6147 BCC kathy.campos@enron.com
## 3018 77818 6148 TO robert.kilmer@enron.com
## 3019 77819 6149 TO cindy.stark@enron.com
## 3020 77820 6150 TO john.keiser@enron.com
## 3021 77821 6150 TO stephanie.korbelik@enron.com
## 3022 77822 6150 TO steve.gilbert@enron.com
## 3023 77823 6150 TO jan.moore@enron.com
## 3024 77824 6150 CC henry.baker@enron.com
## 3025 77825 6150 BCC henry.baker@enron.com
## 3026 77826 6151 TO lindy.donoho@enron.com
## 3027 77827 6152 TO stephen.schwarzbach@enron.com
## 3028 77828 6153 TO michael.anderson@enron.com
## 3029 77829 6153 TO e..ramirez@enron.com
## 3030 77830 6154 TO pam.butler@enron.com
## 3031 77831 6155 TO steven.harris@enron.com
## 3032 77832 6156 TO rod.hayslett@enron.com
## 3033 77833 6157 TO rod.hayslett@enron.com
## 3034 77834 6158 TO phaney@aoshouston.org
## 3035 77835 6159 TO a..lindholm@enron.com
## 3036 77836 6160 TO jennifer.lev@enron.com
## 3037 77837 6160 CC bob.chandler@enron.com
## 3038 77838 6160 BCC bob.chandler@enron.com
## 3039 77839 6161 TO michael.anderson@enron.com
## 3040 77840 6161 CC rod.hayslett@enron.com
## 3041 77841 6161 BCC rod.hayslett@enron.com
## 3042 77842 6162 TO mary.botello@enron.com
## 3043 77843 6163 TO james.weitekamp@enron.com
## 3044 77844 6164 TO rod.hayslett@enron.com
## 3045 77845 6165 TO rod.hayslett@enron.com
## 3046 77846 6166 TO mary.botello@enron.com
## 3047 77847 6167 TO lori.maddox@enron.com
## 3048 77848 6168 TO lori.maddox@enron.com
## 3049 77849 6169 TO no.address@enron.com
## 3050 77850 6170 TO james.saunders@enron.com
## 3051 77851 6171 TO cindy.stark@enron.com
## 3052 77852 6172 TO steven.harris@enron.com
## 3053 77853 6173 TO michael.anderson@enron.com
## 3054 77854 6174 TO michael.anderson@enron.com
## 3055 77855 6174 TO l.garrison@enron.com
## 3056 77856 6174 TO rod.hayslett@enron.com
## 3057 77857 6174 CC kathy.campos@enron.com
## 3058 77858 6174 CC cindy.stark@enron.com
## 3059 77859 6174 BCC kathy.campos@enron.com
## 3060 77860 6174 BCC cindy.stark@enron.com
## 3061 77861 6175 TO kathy.campos@enron.com
## 3062 77862 6176 TO james.weitekamp@enron.com
## 3063 77863 6177 TO john.cobb@enron.com
## 3064 77864 6177 CC dan.fancler@enron.com
## 3065 77865 6177 CC lindy.donoho@enron.com
## 3066 77866 6177 CC jan.moore@enron.com
## 3067 77867 6177 BCC dan.fancler@enron.com
## 3068 77868 6177 BCC lindy.donoho@enron.com
## 3069 77869 6177 BCC jan.moore@enron.com
## 3070 77870 6178 TO e..lindsey@enron.com
## 3071 77871 6178 CC rod.hayslett@enron.com
## 3072 77872 6178 CC stephen.schwarzbach@enron.com
## 3073 77873 6178 BCC rod.hayslett@enron.com
## 3074 77874 6178 BCC stephen.schwarzbach@enron.com
## 3075 77875 6179 TO steven.harris@enron.com
## 3076 77876 6180 TO steven.harris@enron.com
## 3077 77877 6181 TO steven.harris@enron.com
## 3078 77878 6182 TO steven.harris@enron.com
## 3079 77879 6183 TO steven.harris@enron.com
## 3080 77880 6184 TO steven.harris@enron.com
## 3081 77925 6202 TO bill.rapp@enron.com
## 3082 77926 6203 TO janet.butler@enron.com
## 3083 77927 6204 TO steven.harris@enron.com
## 3084 77928 6204 TO robert.kilmer@enron.com
## 3085 77929 6204 TO bill.rapp@enron.com
## 3086 77930 6204 TO lindy.donoho@enron.com
## 3087 77931 6204 TO glen.hass@enron.com
## 3088 77932 6204 TO kimberly.watson@enron.com
## 3089 77933 6204 TO darrell.schoolcraft@enron.com
## 3090 77934 6204 TO jeanette.doll@enron.com
## 3091 77935 6204 TO blair.lichtenwalter@enron.com
## 3092 77936 6205 TO robert.hayes@enron.com
## 3093 77937 6206 TO janet.butler@enron.com
## 3094 77938 6207 TO janet.butler@enron.com
## 3095 77939 6208 TO communications@enron.com
## 3096 77940 6209 TO shelley.corman@enron.com
## 3097 77941 6210 TO gerry.medeles@enron.com
## 3098 77942 6210 TO james.studebaker@enron.com
## 3099 77943 6210 TO theresa.hess@enron.com
## 3100 77944 6211 TO a..howard@enron.com
## 3101 77945 6212 TO kelly.allen@enron.com
## 3102 77946 6213 TO gerry.medeles@enron.com
## 3103 77947 6214 TO jeanette.doll@enron.com
## 3104 77948 6215 TO craig.buehler@enron.com
## 3105 77949 6216 TO jeanette.doll@enron.com
## 3106 77950 6216 CC bill.rapp@enron.com
## 3107 77951 6216 CC robert.kilmer@enron.com
## 3108 77952 6216 BCC bill.rapp@enron.com
## 3109 77953 6216 BCC robert.kilmer@enron.com
## 3110 77954 6217 TO sandyteb@aol.com
## 3111 77955 6218 TO jeanette.doll@enron.com
## 3112 77956 6218 TO robert.kilmer@enron.com
## 3113 77957 6219 TO david.sztroin@enron.com
## 3114 77958 6220 TO blair.lichtenwalter@enron.com
## 3115 77959 6221 TO e..rosenberg@enron.com
## 3116 77960 6222 TO no.address@enron.com
## 3117 77961 6223 TO e..rosenberg@enron.com
## 3118 77962 6224 TO theresa.porter@enron.com
## 3119 77963 6224 CC rachel.cady@enron.com
## 3120 77964 6224 CC shelley.corman@enron.com
## 3121 77965 6224 CC robert.kilmer@enron.com
## 3122 77966 6224 CC dan.fancler@enron.com
## 3123 77967 6224 BCC rachel.cady@enron.com
## 3124 77968 6224 BCC shelley.corman@enron.com
## 3125 77969 6224 BCC robert.kilmer@enron.com
## 3126 77970 6224 BCC dan.fancler@enron.com
## 3127 77971 6225 TO a..howard@enron.com
## 3128 77972 6226 TO a..howard@enron.com
## 3129 77973 6227 TO zelda.paschal@enron.com
## 3130 77974 6228 TO geneva.patterson@enron.com
## 3131 77975 6228 TO frazier.king@enron.com
## 3132 77976 6228 CC stephen.veatch@enron.com
## 3133 77977 6228 BCC stephen.veatch@enron.com
## 3134 77978 6229 TO rachel.cady@enron.com
## 3135 77979 6229 TO frazier.king@enron.com
## 3136 77980 6230 TO blair.lichtenwalter@enron.com
## 3137 77981 6231 TO taylor@enron.com
## 3138 77982 6231 TO staylor@sde.com
## 3139 77983 6232 TO jan.moore@enron.com
## 3140 77984 6232 TO john.cobb@enron.com
## 3141 77985 6232 TO dan.fancler@enron.com
## 3142 77986 6232 TO tracy.geaccone@enron.com
## 3143 77987 6232 TO paul.y barbo@enron.com
## 3144 77988 6232 TO lindy.donoho@enron.com
## 3145 77989 6232 TO tk.lohman@enron.com
## 3146 77990 6232 TO richard.hanagriff@enron.com
## 3147 77991 6232 TO robert.kilmer@enron.com
## 3148 77992 6233 TO jeanette.doll@enron.com
## 3149 77993 6233 TO tk.lohman@enron.com
## 3150 77994 6233 TO elizabeth.brown@enron.com
## 3151 77995 6233 TO bill.rapp@enron.com
## 3152 77996 6233 TO glen.hass@enron.com
## 3153 77997 6233 CC robert.kilmer@enron.com
## 3154 77998 6233 BCC robert.kilmer@enron.com
## 3155 77999 6234 TO jan.moore@enron.com
## 3156 78000 6234 TO john.cobb@enron.com
## 3157 78001 6234 TO dan.fancler@enron.com
## 3158 78002 6234 TO tracy.geaccone@enron.com
## 3159 78003 6234 TO paul.y barbo@enron.com
## 3160 78004 6234 TO lindy.donoho@enron.com
## 3161 78005 6234 TO tk.lohman@enron.com
## 3162 78006 6234 TO richard.hanagriff@enron.com
## 3163 78007 6235 TO audrey.robertson@enron.com
## 3164 78008 6236 TO robert.hayes@enron.com
## 3165 78009 6237 TO robert.hayes@enron.com
## 3166 78010 6238 TO john.keiser@enron.com
## 3167 78011 6238 TO maggie.schroeder@enron.com
## 3168 78012 6238 TO a..howard@enron.com
## 3169 78013 6238 TO robert.hayes@enron.com
## 3170 78014 6238 CC blair.lichtenwalter@enron.com
## 3171 78015 6238 BCC blair.lichtenwalter@enron.com
## 3172 78016 6239 TO frazier.king@enron.com
## 3173 78017 6239 TO blair.lichtenwalter@enron.com
## 3174 78018 6240 TO tracy.geaccone@enron.com
## 3175 78019 6240 TO kimberly.watson@enron.com
## 3176 78020 6240 CC james.saunders@enron.com
## 3177 78021 6240 CC debra.thompson@enron.com
## 3178 78022 6240 CC robert.kilmer@enron.com
## 3179 78023 6240 CC zelda.paschal@enron.com
## 3180 78024 6240 BCC james.saunders@enron.com
## 3181 78025 6240 BCC debra.thompson@enron.com
## 3182 78026 6240 BCC robert.kilmer@enron.com
## 3183 78027 6240 BCC zelda.paschal@enron.com
## 3184 78028 6241 TO debra.thompson@enron.com
## 3185 78029 6242 TO maria.pavlou@enron.com
## 3186 78030 6243 TO frazier.king@enron.com
## 3187 78031 6243 TO jimmy.dowden@enron.com
## 3188 78032 6243 TO thomas.nestor@enron.com
## 3189 78033 6243 TO james.studebaker@enron.com
## 3190 78034 6244 TO sandyteb@aol.com
## 3191 78035 6245 TO michelle.lokay@enron.com
## 3192 78036 6245 TO bill.rapp@enron.com
## 3193 78037 6245 TO robert.kilmer@enron.com
## 3194 78038 6246 TO jeanette.doll@enron.com
## 3195 78039 6246 CC dennis.lee@enron.com
## 3196 78040 6246 CC blair.lichtenwalter@enron.com
## 3197 78041 6246 CC debra.thompson@enron.com
## 3198 78042 6246 CC bill.rapp@enron.com
## 3199 78043 6246 BCC dennis.lee@enron.com
## 3200 78044 6246 BCC blair.lichtenwalter@enron.com
## 3201 78045 6246 BCC debra.thompson@enron.com
## 3202 78046 6246 BCC bill.rapp@enron.com
## 3203 78047 6247 TO bill.rapp@enron.com
## 3204 78048 6247 TO steven.harris@enron.com
## 3205 78049 6247 TO kimberly.watson@enron.com
## 3206 78050 6247 TO lorraine.lindberg@enron.com
## 3207 78051 6247 TO michelle.lokay@enron.com
## 3208 78052 6247 TO robert.kilmer@enron.com
## 3209 78053 6247 TO glen.hass@enron.com
## 3210 78054 6247 CC gregory.porter@enron.com
## 3211 78055 6247 BCC gregory.porter@enron.com
## 3212 78056 6248 TO kimberly.watson@enron.com
## 3213 78057 6249 TO shelley.corman@enron.com
## 3214 78058 6250 TO lorraine.lindberg@enron.com
## 3215 78059 6251 TO shelley.corman@enron.com
## 3216 78060 6252 TO maria.pavlou@enron.com
## 3217 78061 6252 TO jeanette.doll@enron.com
## 3218 78062 6252 TO robert.kilmer@enron.com
## 3219 78063 6252 TO bill.rapp@enron.com
## 3220 78064 6252 TO steven.harris@enron.com
## 3221 78065 6252 CC gregory.porter@enron.com
## 3222 78066 6252 CC kay.miller@enron.com
## 3223 78067 6252 BCC gregory.porter@enron.com
## 3224 78068 6252 BCC kay.miller@enron.com
## 3225 78071 6255 TO maggie.schroeder@enron.com
## 3226 78072 6255 TO maria.cisneros@enron.com
## 3227 78073 6256 TO zelda.paschal@enron.com
## 3228 78074 6257 TO robert.kilmer@enron.com
## 3229 78075 6258 TO nancy.bastida@enron.com
## 3230 78076 6258 TO frazier.king@enron.com
## 3231 78077 6258 CC linda.trevino@enron.com
## 3232 78078 6258 CC dale.eldridge@enron.com
## 3233 78079 6258 CC elizabeth.brown@enron.com
## 3234 78080 6258 BCC linda.trevino@enron.com
## 3235 78081 6258 BCC dale.eldridge@enron.com
## 3236 78082 6258 BCC elizabeth.brown@enron.com
## 3237 78083 6259 TO zelda.paschal@enron.com
## 3238 78084 6260 TO laura.giambrone@enron.com
## 3239 78085 6261 TO galen.coon@enron.com
## 3240 78086 6261 TO rachel.cady@enron.com
## 3241 78087 6261 TO sheila.nacey@enron.com
## 3242 78088 6261 TO james.studebaker@enron.com
## 3243 78089 6262 TO zelda.paschal@enron.com
## 3244 78090 6263 TO kimberly.watson@enron.com
## 3245 78091 6263 TO mansoor.abdmoulaie@enron.com
## 3246 78092 6263 TO ron.matthews@enron.com
## 3247 78093 6263 TO paul.cherry@enron.com
## 3248 78094 6263 TO bill.rapp@enron.com
## 3249 78095 6263 TO earl.chanley@enron.com
## 3250 78096 6263 TO tracy.geaccone@enron.com
## 3251 78097 6264 TO barnesfamilyus@prodigy.net
## 3252 78098 6264 TO thejulles@msn.com
## 3253 78099 6265 TO jeanette.doll@enron.com
## 3254 78100 6266 TO andy.brady@enron.com
## 3255 78101 6266 TO toby.kuehl@enron.com
## 3256 78102 6266 CC alma.green@enron.com
## 3257 78103 6266 CC maggie.matheson@enron.com
## 3258 78104 6266 CC zuela.carter@enron.com
## 3259 78105 6266 CC karen.clapper@enron.com
## 3260 78106 6266 CC nancy.bastida@enron.com
## 3261 78107 6266 CC dale.eldridge@enron.com
## 3262 78108 6266 CC lynda.laferla@enron.com
## 3263 78109 6266 CC marion.collins@enron.com
## 3264 78110 6266 CC jack.howard@enron.com
## 3265 78111 6266 CC richard.hanagriff@enron.com
## 3266 78112 6266 CC mary.draemer@enron.com
## 3267 78113 6266 CC linda.trevino@enron.com
## 3268 78114 6266 CC james.studebaker@enron.com
## 3269 78115 6266 CC cynthia.rivers@enron.com
## 3270 78116 6266 CC amy.mulligan@enron.com
## 3271 78117 6266 CC terry.kowalke@enron.com
## 3272 78118 6266 CC darrell.schoolcraft@enron.com
## 3273 78119 6266 CC tammy.kovalcik@enron.com
## 3274 78120 6266 CC craig.buehler@enron.com
## 3275 78121 6266 CC ramona.betancourt@enron.com
## 3276 78122 6266 CC marian.salinas@enron.com
## 3277 78123 6266 CC elizabeth.brown@enron.com
## 3278 78124 6266 CC blair.lichtenwalter@enron.com
## 3279 78125 6266 CC debra.thompson@enron.com
## 3280 78126 6266 CC jeanette.doll@enron.com
## 3281 78127 6266 CC zelda.paschal@enron.com
## 3282 78128 6266 CC stephen.veatch@enron.com
## 3283 78129 6266 CC christi.culwell@enron.com
## 3284 78130 6266 CC kelly.allen@enron.com
## 3285 78131 6266 CC james.studebaker@enron.com
## 3286 78132 6266 CC nancy.carpenter@enron.com
## 3287 78133 6266 CC laura.giambrone@enron.com
## 3288 78134 6266 CC donna.scott@enron.com
## 3289 78135 6266 CC rick.dietz@enron.com
## 3290 78136 6266 CC caroline.barnes@enron.com
## 3291 78137 6266 BCC alma.green@enron.com
## 3292 78138 6266 BCC maggie.matheson@enron.com
## 3293 78139 6266 BCC zuela.carter@enron.com
## 3294 78140 6266 BCC karen.clapper@enron.com
## 3295 78141 6266 BCC nancy.bastida@enron.com
## 3296 78142 6266 BCC dale.eldridge@enron.com
## 3297 78143 6266 BCC lynda.laferla@enron.com
## 3298 78144 6266 BCC marion.collins@enron.com
## 3299 78145 6266 BCC jack.howard@enron.com
## 3300 78146 6266 BCC richard.hanagriff@enron.com
## 3301 78147 6266 BCC mary.draemer@enron.com
## 3302 78148 6266 BCC linda.trevino@enron.com
## 3303 78149 6266 BCC james.studebaker@enron.com
## 3304 78150 6266 BCC cynthia.rivers@enron.com
## 3305 78151 6266 BCC amy.mulligan@enron.com
## 3306 78152 6266 BCC terry.kowalke@enron.com
## 3307 78153 6266 BCC darrell.schoolcraft@enron.com
## 3308 78154 6266 BCC tammy.kovalcik@enron.com
## 3309 78155 6266 BCC craig.buehler@enron.com
## 3310 78156 6266 BCC ramona.betancourt@enron.com
## 3311 78157 6266 BCC marian.salinas@enron.com
## 3312 78158 6266 BCC elizabeth.brown@enron.com
## 3313 78159 6266 BCC blair.lichtenwalter@enron.com
## 3314 78160 6266 BCC debra.thompson@enron.com
## 3315 78161 6266 BCC jeanette.doll@enron.com
## 3316 78162 6266 BCC zelda.paschal@enron.com
## 3317 78163 6266 BCC stephen.veatch@enron.com
## 3318 78164 6266 BCC christi.culwell@enron.com
## 3319 78165 6266 BCC kelly.allen@enron.com
## 3320 78166 6266 BCC james.studebaker@enron.com
## 3321 78167 6266 BCC nancy.carpenter@enron.com
## 3322 78168 6266 BCC laura.giambrone@enron.com
## 3323 78169 6266 BCC donna.scott@enron.com
## 3324 78170 6266 BCC rick.dietz@enron.com
## 3325 78171 6266 BCC caroline.barnes@enron.com
## 3326 78172 6267 TO liz.legros@enron.com
## 3327 78173 6267 CC robert.kilmer@enron.com
## 3328 78174 6267 CC debra.thompson@enron.com
## 3329 78175 6267 CC zelda.paschal@enron.com
## 3330 78176 6267 CC cynthia.duhon@enron.com
## 3331 78177 6267 BCC robert.kilmer@enron.com
## 3332 78178 6267 BCC debra.thompson@enron.com
## 3333 78179 6267 BCC zelda.paschal@enron.com
## 3334 78180 6267 BCC cynthia.duhon@enron.com
## 3335 78181 6268 TO liz.legros@enron.com
## 3336 78182 6268 CC robert.kilmer@enron.com
## 3337 78183 6268 CC debra.thompson@enron.com
## 3338 78184 6268 CC zelda.paschal@enron.com
## 3339 78185 6268 BCC robert.kilmer@enron.com
## 3340 78186 6268 BCC debra.thompson@enron.com
## 3341 78187 6268 BCC zelda.paschal@enron.com
## 3342 78188 6269 TO debra.thompson@enron.com
## 3343 78189 6269 TO zelda.paschal@enron.com
## 3344 78190 6270 TO craig.buehler@enron.com
## 3345 78191 6270 CC alma.green@enron.com
## 3346 78192 6270 CC james.studebaker@enron.com
## 3347 78193 6270 CC nancy.carpenter@enron.com
## 3348 78194 6270 CC laura.giambrone@enron.com
## 3349 78195 6270 CC stephen.veatch@enron.com
## 3350 78196 6270 CC robert.kilmer@enron.com
## 3351 78197 6270 CC blair.lichtenwalter@enron.com
## 3352 78198 6270 CC debra.thompson@enron.com
## 3353 78199 6270 CC jeanette.doll@enron.com
## 3354 78200 6270 CC zelda.paschal@enron.com
## 3355 78201 6270 CC christi.culwell@enron.com
## 3356 78202 6270 CC kelly.allen@enron.com
## 3357 78203 6270 CC rick.dietz@enron.com
## 3358 78204 6270 BCC alma.green@enron.com
## 3359 78205 6270 BCC james.studebaker@enron.com
## 3360 78206 6270 BCC nancy.carpenter@enron.com
## 3361 78207 6270 BCC laura.giambrone@enron.com
## 3362 78208 6270 BCC stephen.veatch@enron.com
## 3363 78209 6270 BCC robert.kilmer@enron.com
## 3364 78210 6270 BCC blair.lichtenwalter@enron.com
## 3365 78211 6270 BCC debra.thompson@enron.com
## 3366 78212 6270 BCC jeanette.doll@enron.com
## 3367 78213 6270 BCC zelda.paschal@enron.com
## 3368 78214 6270 BCC christi.culwell@enron.com
## 3369 78215 6270 BCC kelly.allen@enron.com
## 3370 78216 6270 BCC rick.dietz@enron.com
## 3371 78217 6271 TO debra.thompson@enron.com
## 3372 78218 6271 TO christi.culwell@enron.com
## 3373 78219 6271 TO stephen.veatch@enron.com
## 3374 78220 6271 TO robert.kilmer@enron.com
## 3375 78221 6271 TO kelly.allen@enron.com
## 3376 78222 6271 TO zelda.paschal@enron.com
## 3377 78223 6271 TO blair.lichtenwalter@enron.com
## 3378 78224 6271 TO jeanette.doll@enron.com
## 3379 78225 6272 TO mary.c.becker@deluxe.com
## 3380 78226 6273 TO jack.boatman@enron.com
## 3381 78227 6273 TO dorothy.mccoppin@enron.com
## 3382 78228 6273 TO frazier.king@enron.com
## 3383 78229 6273 TO staci.holtzman@enron.com
## 3384 78230 6273 TO robert.kilmer@enron.com
## 3385 78231 6273 TO robert.hayes@enron.com
## 3386 78232 6274 TO robert.kilmer@enron.com
## 3387 78233 6274 CC jeanette.doll@enron.com
## 3388 78234 6274 BCC jeanette.doll@enron.com
## 3389 78235 6275 TO john.long@enron.com
## 3390 78236 6275 TO james.cramer@enron.com
## 3391 78237 6275 TO sheila.nacey@enron.com
## 3392 78238 6275 TO frazier.king@enron.com
## 3393 78239 6275 CC rick.dietz@enron.com
## 3394 78240 6275 CC nancy.bastida@enron.com
## 3395 78241 6275 CC buzz.smith@enron.com
## 3396 78242 6275 BCC rick.dietz@enron.com
## 3397 78243 6275 BCC nancy.bastida@enron.com
## 3398 78244 6275 BCC buzz.smith@enron.com
## 3399 78245 6276 TO nancy.bastida@enron.com
## 3400 78246 6276 TO frazier.king@enron.com
## 3401 78247 6277 TO tremac2@yahoo.com
## 3402 78248 6278 TO cormanerb@cs.com
## 3403 78249 6279 TO dari.dornan@enron.com
## 3404 78250 6280 TO debra.thompson@enron.com
## 3405 78251 6280 TO christi.culwell@enron.com
## 3406 78252 6280 TO michele.winckowski@enron.com
## 3407 78253 6280 TO dari.dornan@enron.com
## 3408 78254 6280 TO alice.johnson@enron.com
## 3409 78255 6280 TO diana.porter@enron.com
## 3410 78256 6280 TO maggie.schroeder@enron.com
## 3411 78257 6280 TO cynthia.rivers@enron.com
## 3412 78258 6280 TO blair.lichtenwalter@enron.com
## 3413 78259 6280 TO robert.kilmer@enron.com
## 3414 78260 6280 TO jeanette.doll@enron.com
## 3415 78261 6281 TO cormanerb@cs.com
## 3416 78262 6282 TO shelley.corman@enron.com
## 3417 78263 6282 TO rachel.cady@enron.com
## 3418 78264 6283 TO david.sztroin@enron.com
## 3419 78266 6285 TO taylor@enron.com
## 3420 78267 6285 TO staylor@sde.com
## 3421 78268 6286 TO audrey.robertson@enron.com
## 3422 78269 6287 TO barbara.cain@enron.com
## 3423 78270 6288 TO craig.buehler@enron.com
## 3424 78271 6289 TO robert.geheb@enron.com
## 3425 78272 6289 CC kimberly.watson@enron.com
## 3426 78273 6289 CC steven.harris@enron.com
## 3427 78274 6289 CC stephen.veatch@enron.com
## 3428 78275 6289 CC robert.kilmer@enron.com
## 3429 78276 6289 BCC kimberly.watson@enron.com
## 3430 78277 6289 BCC steven.harris@enron.com
## 3431 78278 6289 BCC stephen.veatch@enron.com
## 3432 78279 6289 BCC robert.kilmer@enron.com
## 3433 78280 6290 TO lisa.sutton@enron.com
## 3434 78281 6291 TO zelda.paschal@enron.com
## 3435 78282 6292 TO audrey.robertson@enron.com
## 3436 78283 6292 TO steven.harris@enron.com
## 3437 78284 6292 TO glen.hass@enron.com
## 3438 78285 6292 TO lee.huber@enron.com
## 3439 78286 6292 TO mark.mcconnell@enron.com
## 3440 78287 6292 TO perry.frazier@enron.com
## 3441 78288 6292 TO morgan.gottsponer@enron.com
## 3442 78289 6292 CC kimberly.watson@enron.com
## 3443 78290 6292 BCC kimberly.watson@enron.com
## 3444 78291 6293 TO rachel.cady@enron.com
## 3445 78292 6293 TO galen.coon@enron.com
## 3446 78293 6294 TO calvin.eakins@enron.com
## 3447 78294 6295 TO matt.hughes@enron.com
## 3448 78295 6295 TO dennis.alters@enron.com
## 3449 78296 6295 TO gary.choquette@enron.com
## 3450 78297 6295 CC robert.kilmer@enron.com
## 3451 78298 6295 CC stephen.veatch@enron.com
## 3452 78299 6295 BCC robert.kilmer@enron.com
## 3453 78300 6295 BCC stephen.veatch@enron.com
## 3454 78301 6296 TO steve.kirk@enron.com
## 3455 78302 6296 TO kay.miller@enron.com
## 3456 78303 6296 TO robert.kilmer@enron.com
## 3457 78304 6297 TO jeanette.doll@enron.com
## 3458 78305 6298 TO jeanette.doll@enron.com
## 3459 78306 6299 TO robert.kilmer@enron.com
## 3460 78307 6300 TO kay.miller@enron.com
## 3461 78308 6300 TO steve.kirk@enron.com
## 3462 78309 6300 TO robert.kilmer@enron.com
## 3463 78310 6300 TO j..porter@enron.com
## 3464 78311 6300 TO mary.darveaux@enron.com
## 3465 78312 6300 TO glen.hass@enron.com
## 3466 78313 6301 TO j..porter@enron.com
## 3467 78314 6301 CC steven.harris@enron.com
## 3468 78315 6301 BCC steven.harris@enron.com
## 3469 78316 6302 TO blair.lichtenwalter@enron.com
## 3470 78317 6303 TO shelley.corman@enron.com
## 3471 78318 6304 TO jeanette.doll@enron.com
## 3472 78319 6305 TO jeanette.doll@enron.com
## 3473 78320 6306 TO blair.lichtenwalter@enron.com
## 3474 78321 6307 TO drew.fossum@enron.com
## 3475 78322 6308 TO christi.culwell@enron.com
## 3476 78323 6308 TO debra.thompson@enron.com
## 3477 78324 6308 TO blair.lichtenwalter@enron.com
## 3478 78325 6308 TO zelda.paschal@enron.com
## 3479 78326 6308 TO robert.kilmer@enron.com
## 3480 78327 6308 TO stephen.veatch@enron.com
## 3481 78328 6308 TO jeanette.doll@enron.com
## 3482 78329 6308 TO kelly.allen@enron.com
## 3483 78330 6308 TO michele.winckowski@enron.com
## 3484 78331 6309 TO blair.lichtenwalter@enron.com
## 3485 78332 6310 TO blair.lichtenwalter@enron.com
## 3486 78333 6311 TO debra.thompson@enron.com
## 3487 78334 6312 TO blair.lichtenwalter@enron.com
## 3488 78335 6313 TO susan.wadle@enron.com
## 3489 78336 6313 TO johnny.mcgee@enron.com
## 3490 78337 6313 TO doug.cebryk@enron.com
## 3491 78338 6313 TO eric.gadd@enron.com
## 3492 78339 6313 TO ron.matthews@enron.com
## 3493 78340 6313 TO dennis.alters@enron.com
## 3494 78341 6313 TO kimberly.watson@enron.com
## 3495 78342 6313 TO larry.f.campbell@enron.com
## 3496 78343 6313 TO gina.taylor@enron.com
## 3497 78344 6313 TO stephen.veatch@enron.com
## 3498 78345 6314 TO blair.lichtenwalter@enron.com
## 3499 78346 6315 TO robert.kilmer@enron.com
## 3500 78347 6316 TO denise.lagesse@enron.com
## 3501 78348 6317 TO blair.lichtenwalter@enron.com
## 3502 78349 6317 TO jeanette.doll@enron.com
## 3503 78350 6317 TO debra.thompson@enron.com
## 3504 78351 6317 TO zelda.paschal@enron.com
## 3505 78352 6317 TO christi.culwell@enron.com
## 3506 78353 6317 TO kelly.allen@enron.com
## 3507 78354 6318 TO michele.winckowski@enron.com
## 3508 78355 6319 TO glen.hass@enron.com
## 3509 78891 6403 TO james.saunders@enron.com
## 3510 78892 6403 TO dan.rittgers@enron.com
## 3511 78893 6403 TO carolyn.centilli@enron.com
## 3512 78894 6403 CC gavin.russo@enron.com
## 3513 78895 6403 CC bob.chandler@enron.com
## 3514 78896 6403 CC john.cobb@enron.com
## 3515 78897 6403 CC gary.zahn@enron.com
## 3516 78898 6403 CC robert.kilmer@enron.com
## 3517 78899 6403 CC teb.lokey@enron.com
## 3518 78900 6403 CC rod.hayslett@enron.com
## 3519 78901 6403 BCC gavin.russo@enron.com
## 3520 78902 6403 BCC bob.chandler@enron.com
## 3521 78903 6403 BCC john.cobb@enron.com
## 3522 78904 6403 BCC gary.zahn@enron.com
## 3523 78905 6403 BCC robert.kilmer@enron.com
## 3524 78906 6403 BCC teb.lokey@enron.com
## 3525 78907 6403 BCC rod.hayslett@enron.com
## 3526 79021 6420 TO james.saunders@enron.com
## 3527 79022 6420 TO tracy.geaccone@enron.com
## 3528 79023 6420 CC dan.rittgers@enron.com
## 3529 79024 6420 CC gavin.russo@enron.com
## 3530 79025 6420 CC bob.chandler@enron.com
## 3531 79026 6420 CC john.cobb@enron.com
## 3532 79027 6420 CC gary.zahn@enron.com
## 3533 79028 6420 CC robert.kilmer@enron.com
## 3534 79029 6420 CC teb.lokey@enron.com
## 3535 79030 6420 BCC dan.rittgers@enron.com
## 3536 79031 6420 BCC gavin.russo@enron.com
## 3537 79032 6420 BCC bob.chandler@enron.com
## 3538 79033 6420 BCC john.cobb@enron.com
## 3539 79034 6420 BCC gary.zahn@enron.com
## 3540 79035 6420 BCC robert.kilmer@enron.com
## 3541 79036 6420 BCC teb.lokey@enron.com
## 3542 79125 6435 TO dennis.alters@enron.com
## 3543 79126 6435 TO larry.f.campbell@enron.com
## 3544 79127 6435 TO sarah.haden@enron.com
## 3545 79128 6435 TO blair.lichtenwalter@enron.com
## 3546 79129 6435 TO teb.lokey@enron.com
## 3547 79130 6435 TO ron.matthews@enron.com
## 3548 79131 6435 TO johnny.mcgee@enron.com
## 3549 79132 6435 TO john.shafer@enron.com
## 3550 79133 6435 TO gina.taylor@enron.com
## 3551 79134 6435 TO stephen.veatch@enron.com
## 3552 79135 6435 TO kimberly.watson@enron.com
## 3553 79145 6438 TO robert.hayes@enron.com
## 3554 79146 6438 TO steven.harris@enron.com
## 3555 79147 6438 TO tracy.geaccone@enron.com
## 3556 79148 6438 TO john.keiser@enron.com
## 3557 79149 6438 TO james.centilli@enron.com
## 3558 79150 6438 TO maggie.schroeder@enron.com
## 3559 79151 6438 TO teb.lokey@enron.com
## 3560 79152 6438 TO a..howard@enron.com
## 3561 79153 6438 TO davis.thames@enron.com
## 3562 79154 6438 CC kathy.campos@enron.com
## 3563 79155 6438 BCC kathy.campos@enron.com
## 3564 79585 6494 TO teb.lokey@enron.com
## 3565 79710 6518 TO teb.lokey@enron.com
## 3566 79850 6539 TO kimberly.watson@enron.com
## 3567 79851 6539 TO teb.lokey@enron.com
## 3568 79852 6539 CC james.saunders@enron.com
## 3569 79853 6539 BCC james.saunders@enron.com
## 3570 79977 6567 TO bill.rapp@enron.com
## 3571 79978 6567 TO teb.lokey@enron.com
## 3572 79979 6567 TO robert.kilmer@enron.com
## 3573 80070 6588 TO jack.howard@enron.com
## 3574 80071 6588 CC tim.cooper@enron.com
## 3575 80072 6588 CC sheila.nacey@enron.com
## 3576 80073 6588 CC dannis.bellard@enron.com
## 3577 80074 6588 CC teb.lokey@enron.com
## 3578 80075 6588 BCC tim.cooper@enron.com
## 3579 80076 6588 BCC sheila.nacey@enron.com
## 3580 80077 6588 BCC dannis.bellard@enron.com
## 3581 80078 6588 BCC teb.lokey@enron.com
## 3582 80198 6592 TO dennis.alters@enron.com
## 3583 80199 6592 TO larry.f.campbell@enron.com
## 3584 80200 6592 TO doug.cebryk@enron.com
## 3585 80201 6592 TO sarah.haden@enron.com
## 3586 80202 6592 TO blair.lichtenwalter@enron.com
## 3587 80203 6592 TO teb.lokey@enron.com
## 3588 80204 6592 TO ron.matthews@enron.com
## 3589 80205 6592 TO johnny.mcgee@enron.com
## 3590 80206 6592 TO john.shafer@enron.com
## 3591 80207 6592 TO gina.taylor@enron.com
## 3592 80208 6592 TO stephen.veatch@enron.com
## 3593 80209 6592 TO kimberly.watson@enron.com
## 3594 80210 6592 CC eric.gadd@enron.com
## 3595 80211 6592 CC susan.wadle@enron.com
## 3596 80212 6592 BCC eric.gadd@enron.com
## 3597 80213 6592 BCC susan.wadle@enron.com
## 3598 80229 6594 TO teb.lokey@enron.com
## 3599 80242 6599 TO teb.lokey@enron.com
## 3600 80409 6624 TO james.saunders@enron.com
## 3601 80410 6624 TO teb.lokey@enron.com
## 3602 80411 6624 TO blair.lichtenwalter@enron.com
## 3603 80412 6624 TO stephen.veatch@enron.com
## 3604 80413 6624 TO eric.gadd@enron.com
## 3605 80414 6624 TO james.centilli@enron.com
## 3606 80415 6625 TO dennis.alters@enron.com
## 3607 80416 6625 TO larry.f.campbell@enron.com
## 3608 80417 6625 TO doug.cebryk@enron.com
## 3609 80418 6625 TO sarah.haden@enron.com
## 3610 80419 6625 TO blair.lichtenwalter@enron.com
## 3611 80420 6625 TO teb.lokey@enron.com
## 3612 80421 6625 TO ron.matthews@enron.com
## 3613 80422 6625 TO johnny.mcgee@enron.com
## 3614 80423 6625 TO john.shafer@enron.com
## 3615 80424 6625 TO gina.taylor@enron.com
## 3616 80425 6625 TO stephen.veatch@enron.com
## 3617 80426 6625 TO kimberly.watson@enron.com
## 3618 80430 6629 TO teb.lokey@enron.com
## 3619 80431 6629 TO rick.dietz@enron.com
## 3620 80432 6629 TO galen.coon@enron.com
## 3621 80433 6629 TO jack.boatman@enron.com
## 3622 80434 6629 TO rachel.cady@enron.com
## 3623 80435 6629 TO sheila.nacey@enron.com
## 3624 80436 6629 TO james.studebaker@enron.com
## 3625 80437 6629 TO robert.kilmer@enron.com
## 3626 80507 6641 TO shelley.corman@enron.com
## 3627 80508 6641 TO rick.dietz@enron.com
## 3628 80509 6641 TO galen.coon@enron.com
## 3629 80510 6641 TO jack.boatman@enron.com
## 3630 80511 6641 TO rachel.cady@enron.com
## 3631 80512 6641 TO sheila.nacey@enron.com
## 3632 80513 6641 TO james.studebaker@enron.com
## 3633 80514 6641 TO robert.kilmer@enron.com
## 3634 80574 6647 TO kimberly.watson@enron.com
## 3635 80575 6647 TO mansoor.abdmoulaie@enron.com
## 3636 80576 6647 TO ron.matthews@enron.com
## 3637 80577 6647 TO paul.cherry@enron.com
## 3638 80578 6647 TO bill.rapp@enron.com
## 3639 80579 6647 TO earl.chanley@enron.com
## 3640 80580 6647 TO teb.lokey@enron.com
## 3641 81243 6689 TO dennis.alters@enron.com
## 3642 81244 6689 TO larry.f.campbell@enron.com
## 3643 81245 6689 TO doug.cebryk@enron.com
## 3644 81246 6689 TO sarah.haden@enron.com
## 3645 81247 6689 TO blair.lichtenwalter@enron.com
## 3646 81248 6689 TO teb.lokey@enron.com
## 3647 81249 6689 TO ron.matthews@enron.com
## 3648 81250 6689 TO johnny.mcgee@enron.com
## 3649 81251 6689 TO john.shafer@enron.com
## 3650 81252 6689 TO gina.taylor@enron.com
## 3651 81253 6689 TO stephen.veatch@enron.com
## 3652 81254 6689 TO kimberly.watson@enron.com
## 3653 81255 6689 CC susan.wadle@enron.com
## 3654 81256 6689 BCC susan.wadle@enron.com
## 3655 81751 6758 TO teb.lokey@enron.com
## 3656 81752 6758 TO blair.lichtenwalter@enron.com
## 3657 81753 6758 TO steve.january@enron.com
## 3658 81754 6758 TO lynn.blair@enron.com
## 3659 81755 6758 TO glen.hass@enron.com
## 3660 81756 6758 TO mary.darveaux@enron.com
## 3661 81757 6758 TO richard.hanagriff@enron.com
## 3662 81758 6758 TO terry.kowalke@enron.com
## 3663 81759 6758 TO john.buchanan@enron.com
## 3664 81760 6758 TO ramona.betancourt@enron.com
## 3665 81761 6758 TO jeanette.doll@enron.com
## 3666 81762 6758 CC steven.harris@enron.com
## 3667 81763 6758 CC kimberly.watson@enron.com
## 3668 81764 6758 BCC steven.harris@enron.com
## 3669 81765 6758 BCC kimberly.watson@enron.com
## 3670 81817 6772 TO dennis.alters@enron.com
## 3671 81818 6772 TO larry.f.campbell@enron.com
## 3672 81819 6772 TO doug.cebryk@enron.com
## 3673 81820 6772 TO sarah.haden@enron.com
## 3674 81821 6772 TO blair.lichtenwalter@enron.com
## 3675 81822 6772 TO teb.lokey@enron.com
## 3676 81823 6772 TO ron.matthews@enron.com
## 3677 81824 6772 TO johnny.mcgee@enron.com
## 3678 81825 6772 TO john.shafer@enron.com
## 3679 81826 6772 TO gina.taylor@enron.com
## 3680 81827 6772 TO stephen.veatch@enron.com
## 3681 81828 6772 TO kimberly.watson@enron.com
## 3682 81829 6772 CC susan.wadle@enron.com
## 3683 81830 6772 BCC susan.wadle@enron.com
## 3684 82052 6791 TO glen.hass@enron.com
## 3685 82053 6791 TO mary.darveaux@enron.com
## 3686 82054 6791 TO lynn.blair@enron.com
## 3687 82055 6791 TO richard.hanagriff@enron.com
## 3688 82056 6791 TO ramona.betancourt@enron.com
## 3689 82057 6791 TO teb.lokey@enron.com
## 3690 82058 6791 TO blair.lichtenwalter@enron.com
## 3691 82059 6791 TO john.buchanan@enron.com
## 3692 82060 6791 CC steven.harris@enron.com
## 3693 82061 6791 CC kimberly.watson@enron.com
## 3694 82062 6791 CC shelley.corman@enron.com
## 3695 82063 6791 CC robert.kilmer@enron.com
## 3696 82064 6791 BCC steven.harris@enron.com
## 3697 82065 6791 BCC kimberly.watson@enron.com
## 3698 82066 6791 BCC shelley.corman@enron.com
## 3699 82067 6791 BCC robert.kilmer@enron.com
## 3700 82086 6798 TO glen.hass@enron.com
## 3701 82087 6798 TO gregory.porter@enron.com
## 3702 82088 6798 TO bill.rapp@enron.com
## 3703 82089 6798 TO kay.miller@enron.com
## 3704 82090 6798 TO robert.kilmer@enron.com
## 3705 82091 6798 TO teb.lokey@enron.com
## 3706 82092 6798 TO lindy.donoho@enron.com
## 3707 82093 6798 TO lorraine.lindberg@enron.com
## 3708 82094 6798 TO tk.lohman@enron.com
## 3709 82095 6798 TO michelle.lokay@enron.com
## 3710 82096 6798 TO mark.mcconnell@enron.com
## 3711 82097 6798 TO kimberly.watson@enron.com
## 3712 82098 6798 TO paul.y barbo@enron.com
## 3713 82163 6809 TO rachel.cady@enron.com
## 3714 82164 6809 CC teb.lokey@enron.com
## 3715 82165 6809 BCC teb.lokey@enron.com
## 3716 82169 6811 TO rachel.cady@enron.com
## 3717 82170 6811 CC teb.lokey@enron.com
## 3718 82171 6811 BCC teb.lokey@enron.com
## 3719 82857 6865 TO joe.hartsoe@enron.com
## 3720 82858 6865 TO nancy.bagot@enron.com
## 3721 82859 6865 CC kay.miller@enron.com
## 3722 82860 6865 CC no.address@enron.com
## 3723 82861 6865 CC teb.lokey@enron.com
## 3724 82862 6865 CC mike.bryant@enron.com
## 3725 82863 6865 CC steven.january@enron.com
## 3726 82864 6865 BCC kay.miller@enron.com
## 3727 82865 6865 BCC no.address@enron.com
## 3728 82866 6865 BCC teb.lokey@enron.com
## 3729 82867 6865 BCC mike.bryant@enron.com
## 3730 82868 6865 BCC steven.january@enron.com
## 3731 83091 6890 TO teb.lokey@enron.com
## 3732 83092 6890 TO audrey.robertson@enron.com
## 3733 83093 6890 TO glen.hass@enron.com
## 3734 83094 6890 TO lee.huber@enron.com
## 3735 83095 6890 TO mark.mcconnell@enron.com
## 3736 83096 6890 TO perry.frazier@enron.com
## 3737 83097 6890 TO morgan.gottsponer@enron.com
## 3738 83098 6890 CC kimberly.watson@enron.com
## 3739 83099 6890 BCC kimberly.watson@enron.com
## 3740 83101 6892 TO teb.lokey@enron.com
## 3741 83752 6896 TO dennis.alters@enron.com
## 3742 83753 6896 TO larry.f.campbell@enron.com
## 3743 83754 6896 TO doug.cebryk@enron.com
## 3744 83755 6896 TO teb.lokey@enron.com
## 3745 83756 6896 TO ron.matthews@enron.com
## 3746 83757 6896 TO johnny.mcgee@enron.com
## 3747 83758 6896 TO john.shafer@enron.com
## 3748 83759 6896 TO gina.taylor@enron.com
## 3749 83760 6896 TO stephen.veatch@enron.com
## 3750 83761 6896 TO kimberly.watson@enron.com
## 3751 83762 6896 CC eric.gadd@enron.com
## 3752 83763 6896 BCC eric.gadd@enron.com
## 3753 84260 6918 TO glen.hass@enron.com
## 3754 84261 6918 TO no.address@enron.com
## 3755 84262 6918 TO tony.pryor@enron.com
## 3756 84263 6918 TO drew.fossum@enron.com
## 3757 84264 6918 TO kay.miller@enron.com
## 3758 84265 6918 TO robert.kilmer@enron.com
## 3759 84266 6918 TO teb.lokey@enron.com
## 3760 84267 6918 TO blair.lichtenwalter@enron.com
## 3761 84268 6918 CC lorraine.lindberg@enron.com
## 3762 84269 6918 CC kimberly.watson@enron.com
## 3763 84270 6918 BCC lorraine.lindberg@enron.com
## 3764 84271 6918 BCC kimberly.watson@enron.com
## 3765 84276 6920 TO dorothy.mccoppin@enron.com
## 3766 84277 6920 TO frazier.king@enron.com
## 3767 84278 6920 TO shelley.corman@enron.com
## 3768 84279 6920 TO joe.hartsoe@enron.com
## 3769 84280 6920 TO robert.kilmer@enron.com
## 3770 84281 6920 TO elizabeth.brown@enron.com
## 3771 84282 6920 TO rick.dietz@enron.com
## 3772 84587 6936 TO teb.lokey@enron.com
## 3773 84588 6936 TO frazier.king@enron.com
## 3774 84906 6960 TO dennis.alters@enron.com
## 3775 84907 6960 TO larry.f.campbell@enron.com
## 3776 84908 6960 TO doug.cebryk@enron.com
## 3777 84909 6960 TO teb.lokey@enron.com
## 3778 84910 6960 TO ron.matthews@enron.com
## 3779 84911 6960 TO johnny.mcgee@enron.com
## 3780 84912 6960 TO john.shafer@enron.com
## 3781 84913 6960 TO gina.taylor@enron.com
## 3782 84914 6960 TO stephen.veatch@enron.com
## 3783 84915 6960 TO kimberly.watson@enron.com
## 3784 85322 7007 TO glen.hass@enron.com
## 3785 85323 7007 TO no.address@enron.com
## 3786 85324 7007 TO kimberly.watson@enron.com
## 3787 85325 7007 TO lorraine.lindberg@enron.com
## 3788 85326 7007 TO tk.lohman@enron.com
## 3789 85327 7007 TO lindy.donoho@enron.com
## 3790 85328 7007 TO tony.pryor@enron.com
## 3791 85329 7007 TO blair.lichtenwalter@enron.com
## 3792 85330 7007 TO teb.lokey@enron.com
## 3793 85331 7007 CC steven.harris@enron.com
## 3794 85332 7007 CC robert.kilmer@enron.com
## 3795 85333 7007 CC kay.miller@enron.com
## 3796 85334 7007 BCC steven.harris@enron.com
## 3797 85335 7007 BCC robert.kilmer@enron.com
## 3798 85336 7007 BCC kay.miller@enron.com
## 3799 85556 7017 TO teb.lokey@enron.com
## 3800 85600 7031 TO mary.darveaux@enron.com
## 3801 85601 7031 TO j..porter@enron.com
## 3802 85602 7031 CC kay.miller@enron.com
## 3803 85603 7031 CC teb.lokey@enron.com
## 3804 85604 7031 BCC kay.miller@enron.com
## 3805 85605 7031 BCC teb.lokey@enron.com
## 3806 85881 7091 TO dennis.alters@enron.com
## 3807 85882 7091 TO larry.f.campbell@enron.com
## 3808 85883 7091 TO doug.cebryk@enron.com
## 3809 85884 7091 TO sarah.haden@enron.com
## 3810 85885 7091 TO blair.lichtenwalter@enron.com
## 3811 85886 7091 TO teb.lokey@enron.com
## 3812 85887 7091 TO ron.matthews@enron.com
## 3813 85888 7091 TO johnny.mcgee@enron.com
## 3814 85889 7091 TO john.shafer@enron.com
## 3815 85890 7091 TO gina.taylor@enron.com
## 3816 85891 7091 TO stephen.veatch@enron.com
## 3817 85892 7091 TO kimberly.watson@enron.com
## 3818 85893 7091 CC susan.wadle@enron.com
## 3819 85894 7091 BCC susan.wadle@enron.com
## 3820 86061 7109 TO kevin.hyatt@enron.com
## 3821 86078 7115 TO drew.fossum@enron.com
## 3822 86079 7115 TO robert.kilmer@enron.com
## 3823 86080 7115 TO teb.lokey@enron.com
## 3824 86190 7126 TO drew.fossum@enron.com
## 3825 86191 7126 TO kimberly.watson@enron.com
## 3826 86192 7126 TO robert.kilmer@enron.com
## 3827 86193 7126 TO robert.abernethy@enron.com
## 3828 86194 7126 TO teb.lokey@enron.com
## 3829 86195 7126 TO steven.harris@enron.com
## 3830 86196 7127 TO drew.fossum@enron.com
## 3831 86197 7127 TO kay.miller@enron.com
## 3832 86198 7127 TO kimberly.watson@enron.com
## 3833 86199 7127 TO paul.y barbo@enron.com
## 3834 86200 7127 TO paul.y barbo@enron.com
## 3835 86201 7127 TO j..porter@enron.com
## 3836 86202 7127 TO maria.pavlou@enron.com
## 3837 86203 7127 TO teb.lokey@enron.com
## 3838 86226 7132 TO richard.ring@enron.com
## 3839 86411 7187 TO tina.holcombe@enron.com
## 3840 86412 7188 TO d..smith@enron.com
## 3841 86413 7189 TO d..smith@enron.com
## 3842 86414 7190 TO d..smith@enron.com
## 3843 86415 7191 TO d..smith@enron.com
## 3844 86416 7192 TO sssharma@aep.com
## 3845 86417 7193 TO bledsoe@enron.com
## 3846 86418 7193 TO michael.bledsoe@ca.com
## 3847 86419 7194 TO parellan@co.riverside.ca.us
## 3848 86420 7195 TO emainzer@attbi.com
## 3849 86421 7196 TO rick.wurlitzer@enron.com
## 3850 86422 7197 TO d..merril@enron.com
## 3851 86423 7198 TO boltonstacey@hotmail.com
## 3852 86424 7199 TO amador.granado@enron.com
## 3853 86425 7200 TO philip.crowley@enron.com
## 3854 86426 7201 TO no.address@enron.com
## 3855 86427 7202 TO bledsoe@enron.com
## 3856 86428 7202 TO michael.bledsoe@ca.com
## 3857 86429 7203 TO k.johnson@enron.com
## 3858 86430 7203 CC angela.smith@enron.com
## 3859 86431 7203 BCC angela.smith@enron.com
## 3860 86432 7204 TO james.d.steffes@enron.com
## 3861 86433 7205 TO d..smith@enron.com
## 3862 86434 7205 TO glenn.frazier@enron.com
## 3863 86435 7205 TO jeremy.blachman@enron.com
## 3864 86436 7205 TO angela.schwarz@enron.com
## 3865 86437 7205 TO jeff.dasovich@enron.com
## 3866 86438 7205 TO james.d.steffes@enron.com
## 3867 86439 7205 TO deborah.merril@enron.com
## 3868 86440 7206 TO d..smith@enron.com
## 3869 86441 7206 TO lamar.frazier@enron.com
## 3870 86442 7206 TO jeremy.blachman@enron.com
## 3871 86443 7206 TO angela.schwarz@enron.com
## 3872 86444 7206 TO jeff.dasovich@enron.com
## 3873 86445 7206 TO james.d.steffes@enron.com
## 3874 86446 7206 CC d..merril@enron.com
## 3875 86447 7206 CC . @enron.com
## 3876 86448 7206 BCC d..merril@enron.com
## 3877 86449 7206 BCC . @enron.com
## 3878 86450 7207 TO cathy.deleonardis@enron.com
## 3879 86451 7207 TO a..cordova@enron.com
## 3880 86452 7208 TO dtran2149@yahoo.com
## 3881 86453 7209 TO h..foster@enron.com
## 3882 86454 7210 TO sssharma@aep.com
## 3883 86455 7211 TO vivian.hart@enron.com
## 3884 86456 7212 TO sssharma@aep.com
## 3885 86457 7213 TO vivian.hart@enron.com
## 3886 86458 7214 TO rogers.herndon@enron.com
## 3887 86459 7215 TO rogers.herndon@enron.com
## 3888 86460 7216 TO juan.padron@enron.com
## 3889 86461 7217 TO k.johnson@enron.com
## 3890 86462 7218 TO christina.finelli@enron.com
## 3891 86463 7219 TO elliot.mainzer@enron.com
## 3892 86464 7220 TO rogers.herndon@enron.com
## 3893 86465 7221 TO stacey.bolton@enron.com
## 3894 86466 7221 CC elliot.mainzer@enron.com
## 3895 86467 7221 BCC elliot.mainzer@enron.com
## 3896 86468 7222 TO peggy.mahoney@enron.com
## 3897 86469 7222 CC rogers.herndon@enron.com
## 3898 86470 7222 BCC rogers.herndon@enron.com
## 3899 86471 7223 TO nichole.gunter@enron.com
## 3900 86472 7224 TO h..foster@enron.com
## 3901 86473 7225 TO kay.quigley@enron.com
## 3902 86474 7225 CC elliot.mainzer@enron.com
## 3903 86475 7225 BCC elliot.mainzer@enron.com
## 3904 86476 7226 TO bill.hatch@enron.com
## 3905 86477 7227 TO peggy.mahoney@enron.com
## 3906 86478 7228 TO wjordan2@houston.rr.com
## 3907 86479 7229 TO frank.rishe@enron.com
## 3908 86480 7230 TO juan.padron@enron.com
## 3909 86481 7231 TO juan.padron@enron.com
## 3910 86482 7232 TO juan.padron@enron.com
## 3911 86483 7233 TO elliot.mainzer@enron.com
## 3912 86484 7234 TO kay.quigley@enron.com
## 3913 86485 7234 TO elliot.mainzer@enron.com
## 3914 86486 7235 TO h..foster@enron.com
## 3915 86487 7236 TO alex.hidalgo@enron.com
## 3916 88774 7582 TO stacey.bolton@enron.com
## 3917 88775 7582 TO tim.belden@enron.com
## 3918 88776 7582 TO jeff.richter@enron.com
## 3919 88777 7582 TO elliot.mainzer@enron.com
## 3920 88778 7582 TO richard.ring@enron.com
## 3921 88779 7582 TO pearce.hammond@enron.com
## 3922 88780 7582 TO james.d.steffes@enron.com
## 3923 88781 7582 TO susan.mara@enron.com
## 3924 88782 7582 TO patrick.keene@enron.com
## 3925 88783 7582 CC michael.terraso@enron.com
## 3926 88784 7582 CC jeff.keeler@enron.com
## 3927 88785 7582 CC mary.schoen@enron.com
## 3928 88786 7582 BCC michael.terraso@enron.com
## 3929 88787 7582 BCC jeff.keeler@enron.com
## 3930 88788 7582 BCC mary.schoen@enron.com
## 3931 89640 7777 TO l..nicolay@enron.com
## 3932 89641 7777 TO sarah.novosel@enron.com
## 3933 89642 7777 TO rogers.herndon@enron.com
## 3934 89643 7777 TO juan.padron@enron.com
## 3935 89644 7777 TO richard.ring@enron.com
## 3936 89645 7777 TO dan.leff@enron.com
## 3937 89646 7777 TO janet.dietrich@enron.com
## 3938 89647 7777 TO marcus.nettelton@enron.com
## 3939 89801 7803 TO scott.franck@enron.com
## 3940 89802 7803 CC richard.ring@enron.com
## 3941 89803 7803 BCC richard.ring@enron.com
## 3942 89817 7807 TO rogers.herndon@enron.com
## 3943 89978 7852 TO leslie.hansen@enron.com
## 3944 89979 7853 TO brent.hendry@enron.com
## 3945 89980 7854 TO louise.kitchen@enron.com
## 3946 89981 7855 TO tanya.rohauer@enron.com
## 3947 89982 7856 TO outlook.team@enron.com
## 3948 89983 7857 TO eric.thode@enron.com
## 3949 89984 7858 TO tana.jones@enron.com
## 3950 89985 7859 TO homer.lin@enron.com
## 3951 89986 7860 TO tana.jones@enron.com
## 3952 89987 7861 TO melba.lozano@enron.com
## 3953 89988 7862 TO lhayman@skadden.com
## 3954 89989 7863 TO lhayman@skadden.com
## 3955 89990 7864 TO mcgovernw@sec.gov
## 3956 89991 7865 TO mcgovernw@sec.gov
## 3957 89992 7866 TO peter.keohane@enron.com
## 3958 89993 7866 CC russell.diamond@enron.com
## 3959 89994 7866 CC william.bradford@enron.com
## 3960 89995 7866 CC carol.clair@enron.com
## 3961 89996 7866 BCC russell.diamond@enron.com
## 3962 89997 7866 BCC william.bradford@enron.com
## 3963 89998 7866 BCC carol.clair@enron.com
## 3964 89999 7867 TO homer.lin@enron.com
## 3965 90000 7867 CC carlos.alatorre@enron.com
## 3966 90001 7867 CC joe.king@enron.com
## 3967 90002 7867 CC robert.quick@enron.com
## 3968 90003 7867 CC scott.moncrieff@enron.com
## 3969 90004 7867 BCC carlos.alatorre@enron.com
## 3970 90005 7867 BCC joe.king@enron.com
## 3971 90006 7867 BCC robert.quick@enron.com
## 3972 90007 7867 BCC scott.moncrieff@enron.com
## 3973 90008 7868 TO joe.king@enron.com
## 3974 90009 7868 TO homer.lin@enron.com
## 3975 90010 7868 TO carlos.alatorre@enron.com
## 3976 90011 7868 CC scott.moncrieff@enron.com
## 3977 90012 7868 CC robert.quick@enron.com
## 3978 90013 7868 BCC scott.moncrieff@enron.com
## 3979 90014 7868 BCC robert.quick@enron.com
## 3980 90015 7869 TO mcgovernw@sec.gov
## 3981 90016 7870 TO justin.boyd@enron.com
## 3982 90017 7871 TO michael.robison@enron.com
## 3983 90018 7872 TO cassandra.schultz@enron.com
## 3984 90019 7873 TO anthony.mends@enron.com
## 3985 90020 7874 TO 8778552081@pagenetmessage.net
## 3986 90021 7875 TO eireland@foleylaw.com
## 3987 90022 7875 CC julia.murray@enron.com
## 3988 90023 7875 CC carol.clair@enron.com
## 3989 90024 7875 BCC julia.murray@enron.com
## 3990 90025 7875 BCC carol.clair@enron.com
## 3991 90026 7876 TO 8778552081@pagenetmessage.net
## 3992 90027 7877 TO harry.collins@enron.com
## 3993 90028 7878 TO janette.elbertson@enron.com
## 3994 90029 7879 TO julia.murray@enron.com
## 3995 90030 7879 CC carol.clair@enron.com
## 3996 90031 7879 BCC carol.clair@enron.com
## 3997 90032 7880 TO eservice@coair.com
## 3998 90033 7881 TO holly.keiser@enron.com
## 3999 90034 7882 TO robert.quick@enron.com
## 4000 90035 7883 TO scarey@isda.org
## 4001 90036 7883 CC rainslie@isda.org
## 4002 90037 7883 CC e..haedicke@enron.com
## 4003 90038 7883 CC mark.evans@enron.com
## 4004 90039 7883 CC justin.boyd@enron.com
## 4005 90040 7883 CC paul.simons@enron.com
## 4006 90041 7883 CC marcus.polach@enron.com
## 4007 90042 7883 BCC rainslie@isda.org
## 4008 90043 7883 BCC e..haedicke@enron.com
## 4009 90044 7883 BCC mark.evans@enron.com
## 4010 90045 7883 BCC justin.boyd@enron.com
## 4011 90046 7883 BCC paul.simons@enron.com
## 4012 90047 7883 BCC marcus.polach@enron.com
## 4013 90048 7884 TO raislerk@sullcrom.com
## 4014 90049 7885 TO Enron IT Purchasing@ENRON
## 4015 90050 7886 TO samuel.schott@enron.com
## 4016 90051 7886 TO tom.moran@enron.com
## 4017 90052 7887 TO michael.hicks@enron.com
## 4018 90053 7887 TO nelly.carpenter@enron.com
## 4019 90054 7888 TO mark.e.taylor@enron.com
## 4020 90055 7889 TO michael.hicks@enron.com
## 4021 90056 7889 TO nelly.carpenter@enron.com
## 4022 90057 7890 TO carol.clair@enron.com
## 4023 90058 7891 TO michael.hayes@beachfire.com
## 4024 90059 7892 TO travis.mccullough@enron.com
## 4025 90060 7893 TO anne.koehler@enron.com
## 4026 90061 7893 TO brent.hendry@enron.com
## 4027 90062 7893 TO carol.clair@enron.com
## 4028 90063 7893 TO cheryl.nelson@enron.com
## 4029 90064 7893 TO francisco.leite@enron.com
## 4030 90065 7893 TO frank.sayre@enron.com
## 4031 90066 7893 TO mark.greenberg@enron.com
## 4032 90067 7893 TO mary.cook@enron.com
## 4033 90068 7893 TO sara.shackleton@enron.com
## 4034 90069 7893 TO susan.bailey@enron.com
## 4035 90070 7893 TO samantha.boyd@enron.com
## 4036 90071 7893 TO tana.jones@enron.com
## 4037 90072 7893 TO stephanie.panus@enron.com
## 4038 90073 7894 TO chris.gaffney@enron.com
## 4039 90074 7894 CC elizabeth.sager@enron.com
## 4040 90075 7894 CC jeffrey.hodge@enron.com
## 4041 90076 7894 BCC elizabeth.sager@enron.com
## 4042 90077 7894 BCC jeffrey.hodge@enron.com
## 4043 90078 7895 TO travis.mccullough@enron.com
## 4044 90079 7896 TO travis.mccullough@enron.com
## 4045 90080 7897 TO travis.mccullough@enron.com
## 4046 90081 7898 TO travis.mccullough@enron.com
## 4047 90082 7899 TO peter.keohane@enron.com
## 4048 90083 7899 CC e..haedicke@enron.com
## 4049 90084 7899 CC mark.powell@enron.com
## 4050 90085 7899 CC rob.milnthorp@enron.com
## 4051 90086 7899 CC sharon.crawford@enron.com
## 4052 90087 7899 CC mary.cook@enron.com
## 4053 90088 7899 BCC e..haedicke@enron.com
## 4054 90089 7899 BCC mark.powell@enron.com
## 4055 90090 7899 BCC rob.milnthorp@enron.com
## 4056 90091 7899 BCC sharon.crawford@enron.com
## 4057 90092 7899 BCC mary.cook@enron.com
## 4058 90093 7900 TO jeffrey.hodge@enron.com
## 4059 90094 7900 TO elizabeth.sager@enron.com
## 4060 90095 7901 TO mcgovernw@sec.gov
## 4061 90096 7902 TO mcgovernw@sec.gov
## 4062 90097 7903 TO robert.cass@enron.com
## 4063 90098 7904 TO mcgovernw@sec.gov
## 4064 90099 7905 TO mcgovernw@sec.gov
## 4065 90100 7906 TO holly.keiser@enron.com
## 4066 90101 7907 TO susan.bailey@enron.com
## 4067 90102 7907 TO mary.cook@enron.com
## 4068 90103 7907 TO mark.greenberg@enron.com
## 4069 90104 7907 TO brent.hendry@enron.com
## 4070 90105 7907 TO tana.jones@enron.com
## 4071 90106 7907 TO holly.keiser@enron.com
## 4072 90107 7907 TO anne.koehler@enron.com
## 4073 90108 7907 TO taffy.milligan@enron.com
## 4074 90109 7907 TO cheryl.nelson@enron.com
## 4075 90110 7907 TO stephanie.panus@enron.com
## 4076 90111 7907 TO francisco.leite@enron.com
## 4077 90112 7907 TO carol.clair@enron.com
## 4078 90113 7907 TO frank.sayre@enron.com
## 4079 90114 7907 TO sara.shackleton@enron.com
## 4080 90115 7908 TO ted.bockius@ivita.com
## 4081 90116 7909 TO ted.bockius@ivita.com
## 4082 90117 7909 TO tbockius@aol.com
## 4083 90118 7910 TO sara.shackleton@enron.com
## 4084 90119 7911 TO elizabeth.sager@enron.com
## 4085 90120 7912 TO janette.elbertson@enron.com
## 4086 90121 7913 TO guenther.klar@enron.com
## 4087 90122 7913 CC catharina.clabots@enron.com
## 4088 90123 7913 CC janine.juggins@enron.com
## 4089 90124 7913 CC jonathan.marsh@enron.com
## 4090 90125 7913 CC julie.watt@enron.com
## 4091 90126 7913 BCC catharina.clabots@enron.com
## 4092 90127 7913 BCC janine.juggins@enron.com
## 4093 90128 7913 BCC jonathan.marsh@enron.com
## 4094 90129 7913 BCC julie.watt@enron.com
## 4095 90130 7914 TO lhayman@skadden.com
## 4096 90131 7915 TO lhayman@skadden.com
## 4097 90132 7916 TO ted.bockius@ivita.com
## 4098 90133 7917 TO tana.jones@enron.com
## 4099 90134 7918 TO anne.koehler@enron.com
## 4100 90135 7918 TO brent.hendry@enron.com
## 4101 90136 7918 TO carol.clair@enron.com
## 4102 90137 7918 TO cheryl.nelson@enron.com
## 4103 90138 7918 TO francisco.leite@enron.com
## 4104 90139 7918 TO frank.sayre@enron.com
## 4105 90140 7918 TO mary.cook@enron.com
## 4106 90141 7918 TO sara.shackleton@enron.com
## 4107 90142 7918 TO susan.bailey@enron.com
## 4108 90143 7918 TO samantha.boyd@enron.com
## 4109 90144 7918 TO tana.jones@enron.com
## 4110 90145 7918 TO stephanie.panus@enron.com
## 4111 90146 7919 TO eddy.daniels@enron.com
## 4112 90147 7920 TO janette.elbertson@enron.com
## 4113 90148 7921 TO mcgovernw@sec.gov
## 4114 90149 7921 CC amh5h@server2.mail.virginia.edu
## 4115 90150 7921 BCC amh5h@server2.mail.virginia.edu
## 4116 90151 7922 TO nelly.carpenter@enron.com
## 4117 90152 7923 TO lhayman@skadden.com
## 4118 90153 7924 TO lhayman@skadden.com
## 4119 90154 7925 TO mzeleanor@juno.com
## 4120 90155 7926 TO lhayman@skadden.com
## 4121 90156 7927 TO ted.bockius@ivita.com
## 4122 90157 7928 TO david.forster@enron.com
## 4123 90158 7928 CC andy.zipper@enron.com
## 4124 90159 7928 BCC andy.zipper@enron.com
## 4125 90160 7929 TO lhayman@skadden.com
## 4126 90161 7930 TO lhayman@skadden.com
## 4127 90162 7931 TO kimberlee.bennick@enron.com
## 4128 90163 7932 TO david.forster@enron.com
## 4129 90164 7932 TO andy.zipper@enron.com
## 4130 90165 7932 CC mark.greenberg@enron.com
## 4131 90166 7932 BCC mark.greenberg@enron.com
## 4132 90167 7933 TO amh5h@cms.mail.virginia.edu
## 4133 90168 7934 TO raislerk@sullcrom.com
## 4134 90169 7935 TO amh5h@server2.mail.virginia.edu
## 4135 90170 7936 TO lhayman@skadden.com
## 4136 90171 7937 TO ted.bockius@ivita.com
## 4137 90172 7938 TO greg.johnston@enron.com
## 4138 90173 7939 TO lhayman@skadden.com
## 4139 90174 7940 TO mcgovernw@sec.gov
## 4140 90175 7940 CC amh5h@virginia.edu
## 4141 90176 7940 CC lhayman@skadden.com
## 4142 90177 7940 BCC amh5h@virginia.edu
## 4143 90178 7940 BCC lhayman@skadden.com
## 4144 90179 7941 TO andy.zipper@enron.com
## 4145 90180 7942 TO lhayman@skadden.com
## 4146 90181 7943 TO holly.keiser@enron.com
## 4147 90182 7944 TO mcgovernw@sec.gov
## 4148 90183 7944 CC lhayman@skadden.com
## 4149 90184 7944 CC amh5h@server2.mail.virginia.edu
## 4150 90185 7944 BCC lhayman@skadden.com
## 4151 90186 7944 BCC amh5h@server2.mail.virginia.edu
## 4152 90187 7945 TO paul.goddard@enron.com
## 4153 90188 7945 CC dave.samuels@enron.com
## 4154 90189 7945 CC imelda.frayre@enron.com
## 4155 90190 7945 CC justin.boyd@enron.com
## 4156 90191 7945 CC mark.greenberg@enron.com
## 4157 90192 7945 BCC dave.samuels@enron.com
## 4158 90193 7945 BCC imelda.frayre@enron.com
## 4159 90194 7945 BCC justin.boyd@enron.com
## 4160 90195 7945 BCC mark.greenberg@enron.com
## 4161 90196 7946 TO holly.keiser@enron.com
## 4162 90197 7947 TO paul.goddard@enron.com
## 4163 90198 7947 CC dave.samuels@enron.com
## 4164 90199 7947 CC imelda.frayre@enron.com
## 4165 90200 7947 CC justin.boyd@enron.com
## 4166 90201 7947 CC mark.greenberg@enron.com
## 4167 90202 7947 BCC dave.samuels@enron.com
## 4168 90203 7947 BCC imelda.frayre@enron.com
## 4169 90204 7947 BCC justin.boyd@enron.com
## 4170 90205 7947 BCC mark.greenberg@enron.com
## 4171 90206 7948 TO richardk@monm.edu
## 4172 90207 7949 TO richardk@monm.edu
## 4173 90208 7950 TO bill.hare@enron.com
## 4174 90209 7950 CC bernice.rodriguez@enron.com
## 4175 90210 7950 CC james.scribner@enron.com
## 4176 90211 7950 CC lisa.lees@enron.com
## 4177 90212 7950 CC marilyn.colbert@enron.com
## 4178 90213 7950 CC samuel.schott@enron.com
## 4179 90214 7950 CC stephanie.sever@enron.com
## 4180 90215 7950 CC tana.jones@enron.com
## 4181 90216 7950 CC tom.moran@enron.com
## 4182 90217 7950 CC walter.guidroz@enron.com
## 4183 90218 7950 BCC bernice.rodriguez@enron.com
## 4184 90219 7950 BCC james.scribner@enron.com
## 4185 90220 7950 BCC lisa.lees@enron.com
## 4186 90221 7950 BCC marilyn.colbert@enron.com
## 4187 90222 7950 BCC samuel.schott@enron.com
## 4188 90223 7950 BCC stephanie.sever@enron.com
## 4189 90224 7950 BCC tana.jones@enron.com
## 4190 90225 7950 BCC tom.moran@enron.com
## 4191 90226 7950 BCC walter.guidroz@enron.com
## 4192 90227 7951 TO harry.collins@enron.com
## 4193 90228 7952 TO bill.hare@enron.com
## 4194 90229 7952 CC samuel.schott@enron.com
## 4195 90230 7952 CC tana.jones@enron.com
## 4196 90231 7952 CC stephanie.sever@enron.com
## 4197 90232 7952 BCC samuel.schott@enron.com
## 4198 90233 7952 BCC tana.jones@enron.com
## 4199 90234 7952 BCC stephanie.sever@enron.com
## 4200 90235 7953 TO christian.yoder@enron.com
## 4201 90236 7954 TO e..haedicke@enron.com
## 4202 90237 7955 TO erica.bess@enron.com
## 4203 90238 7956 TO vance.meyer@enron.com
## 4204 90239 7957 TO chris.walker@enron.com
## 4205 90240 7958 TO anne.koehler@enron.com
## 4206 90241 7958 TO brent.hendry@enron.com
## 4207 90242 7958 TO carol.clair@enron.com
## 4208 90243 7958 TO cheryl.nelson@enron.com
## 4209 90244 7958 TO francisco.leite@enron.com
## 4210 90245 7958 TO frank.sayre@enron.com
## 4211 90246 7958 TO mary.cook@enron.com
## 4212 90247 7958 TO sara.shackleton@enron.com
## 4213 90248 7959 TO mary.cook@enron.com
## 4214 90249 7959 CC holly.keiser@enron.com
## 4215 90250 7959 BCC holly.keiser@enron.com
## 4216 90251 7960 TO susan.bailey@enron.com
## 4217 90252 7961 TO wavelengthsalon@aol.com
## 4218 90253 7962 TO mark.e.taylor@enron.com
## 4219 90254 7963 TO peter.keohane@enron.com
## 4220 90255 7963 CC brent.hendry@enron.com
## 4221 90256 7963 CC carol.clair@enron.com
## 4222 90257 7963 CC chris.gaffney@enron.com
## 4223 90258 7963 CC greg.johnston@enron.com
## 4224 90259 7963 CC mark.powell@enron.com
## 4225 90260 7963 CC mary.cook@enron.com
## 4226 90261 7963 CC russell.diamond@enron.com
## 4227 90262 7963 CC sara.shackleton@enron.com
## 4228 90263 7963 CC tana.jones@enron.com
## 4229 90264 7963 CC tanya.rohauer@enron.com
## 4230 90265 7963 CC william.bradford@enron.com
## 4231 90266 7963 BCC brent.hendry@enron.com
## 4232 90267 7963 BCC carol.clair@enron.com
## 4233 90268 7963 BCC chris.gaffney@enron.com
## 4234 90269 7963 BCC greg.johnston@enron.com
## 4235 90270 7963 BCC mark.powell@enron.com
## 4236 90271 7963 BCC mary.cook@enron.com
## 4237 90272 7963 BCC russell.diamond@enron.com
## 4238 90273 7963 BCC sara.shackleton@enron.com
## 4239 90274 7963 BCC tana.jones@enron.com
## 4240 90275 7963 BCC tanya.rohauer@enron.com
## 4241 90276 7963 BCC william.bradford@enron.com
## 4242 90277 7964 TO holly.keiser@enron.com
## 4243 90278 7965 TO kevin.meredith@enron.com
## 4244 90279 7966 TO robert.m.spielman@db.com
## 4245 90280 7967 TO john.estrada@motorola.com
## 4246 90281 7968 TO janette.elbertson@enron.com
## 4247 90282 7969 TO janette.elbertson@enron.com
## 4248 90283 7970 TO janette.elbertson@enron.com
## 4249 90284 7971 TO holly.keiser@enron.com
## 4250 90285 7972 TO gilbergd@sullcrom.com
## 4251 90286 7973 TO peter.keohane@enron.com
## 4252 90287 7973 CC chris.gaffney@enron.com
## 4253 90288 7973 BCC chris.gaffney@enron.com
## 4254 90289 7974 TO e..haedicke@enron.com
## 4255 90290 7974 CC janette.elbertson@enron.com
## 4256 90291 7974 CC holly.keiser@enron.com
## 4257 90292 7974 BCC janette.elbertson@enron.com
## 4258 90293 7974 BCC holly.keiser@enron.com
## 4259 90294 7975 TO angeline.poon@enron.com
## 4260 90295 7975 CC edmund.cooper@enron.com
## 4261 90296 7975 CC matthew.dawson@enron.com
## 4262 90297 7975 CC tana.jones@enron.com
## 4263 90298 7975 BCC edmund.cooper@enron.com
## 4264 90299 7975 BCC matthew.dawson@enron.com
## 4265 90300 7975 BCC tana.jones@enron.com
## 4266 90301 7976 TO david.forster@enron.com
## 4267 90302 7977 TO chris.gaffney@enron.com
## 4268 90303 7977 CC peter.keohane@enron.com
## 4269 90304 7977 CC nora.dobin@enron.com
## 4270 90305 7977 BCC peter.keohane@enron.com
## 4271 90306 7977 BCC nora.dobin@enron.com
## 4272 90307 7978 TO john.viverito@enron.com
## 4273 90308 7978 CC chad.south@enron.com
## 4274 90309 7978 BCC chad.south@enron.com
## 4275 90310 7979 TO ted.bockius@ivita.com
## 4276 90311 7980 TO andy.zipper@enron.com
## 4277 90312 7981 TO andy.zipper@enron.com
## 4278 90313 7981 CC marcus.nettelton@enron.com
## 4279 90314 7981 BCC marcus.nettelton@enron.com
## 4280 90315 7982 TO marcus.nettelton@enron.com
## 4281 90316 7982 CC tana.jones@enron.com
## 4282 90317 7982 CC kevin.meredith@enron.com
## 4283 90318 7982 BCC tana.jones@enron.com
## 4284 90319 7982 BCC kevin.meredith@enron.com
## 4285 90320 7983 TO andy.zipper@enron.com
## 4286 90321 7984 TO david.forster@enron.com
## 4287 90322 7985 TO sara.shackleton@enron.com
## 4288 90323 7986 TO sara.shackleton@enron.com
## 4289 90324 7987 TO sara.shackleton@enron.com
## 4290 90325 7988 TO keegan.farrell@enron.com
## 4291 90326 7989 TO kristina.mordaunt@enron.com
## 4292 90327 7990 TO sami.arap@enron.com
## 4293 90328 7991 TO mzeleanor@juno.com
## 4294 90329 7991 TO j_and_e_taylor@email.msn.com
## 4295 90330 7992 TO lisa.lees@enron.com
## 4296 90331 7993 TO sami.arap@enron.com
## 4297 90332 7993 CC brent.hendry@enron.com
## 4298 90333 7993 BCC brent.hendry@enron.com
## 4299 90334 7994 TO stephanie.sever@enron.com
## 4300 90335 7994 CC tana.jones@enron.com
## 4301 90336 7994 BCC tana.jones@enron.com
## 4302 90337 7995 TO molly.magee@enron.com
## 4303 90338 7996 TO mary.cook@enron.com
## 4304 90339 7996 TO michael.robison@enron.com
## 4305 90340 7997 TO molly.magee@enron.com
## 4306 90341 7998 TO janette.elbertson@enron.com
## 4307 90342 7999 TO alan.aronowitz@enron.com
## 4308 90343 8000 TO frank.sayre@enron.com
## 4309 90344 8001 TO greg.johnston@enron.com
## 4310 90345 8001 CC dianne.seib@enron.com
## 4311 90346 8001 CC lon.draper@enron.com
## 4312 90347 8001 CC melba.lozano@enron.com
## 4313 90348 8001 BCC dianne.seib@enron.com
## 4314 90349 8001 BCC lon.draper@enron.com
## 4315 90350 8001 BCC melba.lozano@enron.com
## 4316 90351 8002 TO tbockius@aol.com
## 4317 90352 8003 TO greg.johnston@enron.com
## 4318 90353 8003 CC dianne.seib@enron.com
## 4319 90354 8003 CC lon.draper@enron.com
## 4320 90355 8003 CC melba.lozano@enron.com
## 4321 90356 8003 BCC dianne.seib@enron.com
## 4322 90357 8003 BCC lon.draper@enron.com
## 4323 90358 8003 BCC melba.lozano@enron.com
## 4324 90359 8004 TO stephanie.panus@enron.com
## 4325 90360 8004 CC holly.keiser@enron.com
## 4326 90361 8004 BCC holly.keiser@enron.com
## 4327 90362 8005 TO brent.hendry@enron.com
## 4328 90363 8006 TO william.bradford@enron.com
## 4329 90364 8006 TO tanya.rohauer@enron.com
## 4330 90365 8007 TO tana.jones@enron.com
## 4331 90366 8008 TO frank.sayre@enron.com
## 4332 90367 8009 TO frank.sayre@enron.com
## 4333 90368 8010 TO vladimir.gorny@enron.com
## 4334 90369 8011 TO brent.hendry@enron.com
## 4335 90370 8012 TO mary.cook@enron.com
## 4336 90371 8013 TO david.forster@enron.com
## 4337 90372 8014 TO mark.e.taylor@enron.com
## 4338 90373 8015 TO mtaylor587@aol.com
## 4339 90374 8016 TO robert.bruce@enron.com
## 4340 90375 8016 TO andrea.calo@enron.com
## 4341 90376 8016 TO mary.cook@enron.com
## 4342 90377 8016 TO cheryl.nelson@enron.com
## 4343 90378 8016 TO brent.hendry@enron.com
## 4344 90379 8016 TO francisco.leite@enron.com
## 4345 90380 8016 TO carol.clair@enron.com
## 4346 90381 8016 TO frank.sayre@enron.com
## 4347 90382 8016 TO sara.shackleton@enron.com
## 4348 90383 8016 TO susan.bailey@enron.com
## 4349 90384 8016 TO samantha.boyd@enron.com
## 4350 90385 8016 TO tana.jones@enron.com
## 4351 90386 8016 TO stephanie.panus@enron.com
## 4352 90387 8017 TO heretohelp@site59.com
## 4353 90388 8018 TO ted.bockius@ivita.com
## 4354 90389 8019 TO travis.mccullough@enron.com
## 4355 90390 8020 TO jim.griffin@compaq.com
## 4356 90391 8021 TO carol.clair@enron.com
## 4357 90392 8022 TO jim.griffin@compaq.com
## 4358 90393 8023 TO chris.long@enron.com
## 4359 90394 8024 TO janette.elbertson@enron.com
## 4360 90395 8025 TO janette.elbertson@enron.com
## 4361 90396 8026 TO carol.clair@enron.com
## 4362 90397 8027 TO carol.clair@enron.com
## 4363 90398 8028 TO lisa.yoho@enron.com
## 4364 90399 8029 TO janette.elbertson@enron.com
## 4365 90400 8030 TO carol.clair@enron.com
## 4366 90401 8031 TO stephanie.truss@enron.com
## 4367 90402 8032 TO becky.spencer@enron.com
## 4368 90403 8033 TO carol.clair@enron.com
## 4369 90404 8034 TO janette.elbertson@enron.com
## 4370 90405 8035 TO andy.zipper@enron.com
## 4371 90406 8036 TO kevin.meredith@enron.com
## 4372 90407 8037 TO andy.zipper@enron.com
## 4373 90408 8038 TO 8778552081@pagenetmessage.net
## 4374 90409 8039 TO tana.jones@enron.com
## 4375 90410 8040 TO mark.greenberg@enron.com
## 4376 90411 8040 TO justin.boyd@enron.com
## 4377 90412 8041 TO amh5h@virginia.edu
## 4378 90413 8042 TO lisa.yoho@enron.com
## 4379 90414 8043 TO stephanie.panus@enron.com
## 4380 90415 8044 TO bruce.lundstrom@enron.com
## 4381 90416 8045 TO carol.clair@enron.com
## 4382 90417 8046 TO sara.shackleton@enron.com
## 4383 90418 8047 TO carol.clair@enron.com
## 4384 90419 8048 TO carol.clair@enron.com
## 4385 90420 8049 TO janette.elbertson@enron.com
## 4386 90421 8049 CC robert.bruce@enron.com
## 4387 90422 8049 BCC robert.bruce@enron.com
## 4388 90423 8050 TO travis.mccullough@enron.com
## 4389 90424 8051 TO john.viverito@enron.com
## 4390 90425 8051 CC adam.gross@enron.com
## 4391 90426 8051 CC alan.engberg@enron.com
## 4392 90427 8051 CC michael.robison@enron.com
## 4393 90428 8051 BCC adam.gross@enron.com
## 4394 90429 8051 BCC alan.engberg@enron.com
## 4395 90430 8051 BCC michael.robison@enron.com
## 4396 90431 8052 TO vikas.dwivedi@enron.com
## 4397 90432 8052 CC cassandra.schultz@enron.com
## 4398 90433 8052 BCC cassandra.schultz@enron.com
## 4399 90434 8053 TO anne.koehler@enron.com
## 4400 90435 8054 TO justin.boyd@enron.com
## 4401 90436 8055 TO norma.villarreal@enron.com
## 4402 90437 8055 TO sheila.walton@enron.com
## 4403 90438 8056 TO francisco.leite@enron.com
## 4404 90439 8057 TO carol.clair@enron.com
## 4405 90440 8058 TO gilbergd@sullcrom.com
## 4406 90441 8058 TO mcintyrk@sullcrom.com
## 4407 90442 8059 TO vanessa.schulte@enron.com
## 4408 90443 8059 CC mary.solmonson@enron.com
## 4409 90444 8059 BCC mary.solmonson@enron.com
## 4410 90445 8060 TO chris.long@enron.com
## 4411 90446 8061 TO carlos.alatorre@enron.com
## 4412 90447 8061 TO carl.carter@enron.com
## 4413 90448 8062 TO andy.zipper@enron.com
## 4414 90449 8063 TO stephen.douglas@enron.com
## 4415 90450 8064 TO carol.clair@enron.com
## 4416 90451 8065 TO carol.clair@enron.com
## 4417 90452 8066 TO francisco.leite@enron.com
## 4418 90453 8066 CC sara.shackleton@enron.com
## 4419 90454 8066 BCC sara.shackleton@enron.com
## 4420 90455 8067 TO holly.keiser@enron.com
## 4421 90456 8068 TO carol.clair@enron.com
## 4422 90457 8068 CC holly.keiser@enron.com
## 4423 90458 8068 BCC holly.keiser@enron.com
## 4424 90459 8069 TO mary.cook@enron.com
## 4425 90460 8070 TO jim.griffin@compaq.com
## 4426 90461 8071 TO carol.clair@enron.com
## 4427 90462 8072 TO tana.jones@enron.com
## 4428 90463 8072 CC louise.kitchen@enron.com
## 4429 90464 8072 BCC louise.kitchen@enron.com
## 4430 90465 8073 TO sheri.thomas@enron.com
## 4431 90466 8074 TO e..haedicke@enron.com
## 4432 90467 8075 TO holly.keiser@enron.com
## 4433 90468 8076 TO richard.b.sanders@enron.com
## 4434 90469 8077 TO janette.elbertson@enron.com
## 4435 90470 8077 CC sheri.cromwell@enron.com
## 4436 90471 8077 BCC sheri.cromwell@enron.com
## 4437 90472 8078 TO sara.shackleton@enron.com
## 4438 90473 8079 TO raislerk@sullcrom.com
## 4439 90474 8079 TO gilbergd@sullcrom.com
## 4440 90475 8080 TO sheri.cromwell@enron.com
## 4441 90476 8081 TO ned.crady@enron.com
## 4442 90477 8081 TO francisco.leite@enron.com
## 4443 90478 8081 TO daniel.rogers@enron.com
## 4444 90479 8081 TO ed.iii@enron.com
## 4445 90480 8082 TO mary.cook@enron.com
## 4446 90481 8083 TO janette.elbertson@enron.com
## 4447 90482 8084 TO alan.aronowitz@enron.com
## 4448 90483 8084 CC e..haedicke@enron.com
## 4449 90484 8084 CC janette.elbertson@enron.com
## 4450 90485 8084 CC frank.ortiz@enron.com
## 4451 90486 8084 BCC e..haedicke@enron.com
## 4452 90487 8084 BCC janette.elbertson@enron.com
## 4453 90488 8084 BCC frank.ortiz@enron.com
## 4454 90489 8085 TO holly.keiser@enron.com
## 4455 90490 8086 TO alan.aronowitz@enron.com
## 4456 90491 8086 TO jeffrey.hodge@enron.com
## 4457 90492 8086 TO elizabeth.sager@enron.com
## 4458 90493 8087 TO louise.kitchen@enron.com
## 4459 90494 8088 TO louise.kitchen@enron.com
## 4460 90495 8089 TO fred.philipson@enron.com
## 4461 90496 8090 TO travis.mccullough@enron.com
## 4462 90497 8091 TO ted.bockius@ivita.com
## 4463 90498 8092 TO holly.keiser@enron.com
## 4464 90499 8093 TO lhayman@skadden.com
## 4465 90500 8094 TO carol.clair@enron.com
## 4466 90501 8095 TO carol.clair@enron.com
## 4467 90502 8096 TO carol.clair@enron.com
## 4468 90503 8097 TO robbi.rossi@enron.com
## 4469 90504 8097 TO marie.heard@enron.com
## 4470 90505 8098 TO janette.elbertson@enron.com
## 4471 90506 8099 TO lisa.yoho@enron.com
## 4472 90507 8099 CC robert.bruce@enron.com
## 4473 90508 8099 BCC robert.bruce@enron.com
## 4474 90509 8100 TO louise.kitchen@enron.com
## 4475 90510 8101 TO lisa.yoho@enron.com
## 4476 90511 8102 TO raislerk@sullcrom.com
## 4477 90512 8103 TO holly.keiser@enron.com
## 4478 90513 8104 TO tana.jones@enron.com
## 4479 90514 8105 TO robert.george@enron.com
## 4480 90515 8106 TO timothy.taylor@apg.amedd.army.mil
## 4481 90516 8107 TO tana.jones@enron.com
## 4482 90517 8108 TO mary.cook@enron.com
## 4483 90518 8109 TO taffy.milligan@enron.com
## 4484 90519 8110 TO halbromm@hotmail.com
## 4485 90520 8111 TO anne.koehler@enron.com
## 4486 90521 8112 TO rex.shelby@enron.com
## 4487 90522 8113 TO jim.griffin@compaq.com
## 4488 90523 8114 TO peter.traung@enron.com
## 4489 90524 8115 TO awilliam@skadden.com
## 4490 90525 8116 TO anne.koehler@enron.com
## 4491 90526 8117 TO louise.kitchen@enron.com
## 4492 90527 8117 CC tana.jones@enron.com
## 4493 90528 8117 BCC tana.jones@enron.com
## 4494 90529 8118 TO halbromm@hotmail.com
## 4495 90530 8119 TO tana.jones@enron.com
## 4496 90531 8120 TO halbromm@hotmail.com
## 4497 90532 8121 TO chris.long@enron.com
## 4498 90533 8122 TO robert.bruce@enron.com
## 4499 90534 8122 TO andrea.calo@enron.com
## 4500 90535 8122 TO mary.cook@enron.com
## 4501 90536 8122 TO cheryl.nelson@enron.com
## 4502 90537 8122 TO brent.hendry@enron.com
## 4503 90538 8122 TO francisco.leite@enron.com
## 4504 90539 8122 TO carol.clair@enron.com
## 4505 90540 8122 TO frank.sayre@enron.com
## 4506 90541 8122 TO sara.shackleton@enron.com
## 4507 90542 8122 TO susan.bailey@enron.com
## 4508 90543 8122 TO samantha.boyd@enron.com
## 4509 90544 8122 TO tana.jones@enron.com
## 4510 90545 8122 TO stephanie.panus@enron.com
## 4511 90546 8123 TO chris.long@enron.com
## 4512 90547 8124 TO mary.cook@enron.com
## 4513 90548 8125 TO carol.clair@enron.com
## 4514 90549 8126 TO holly.keiser@enron.com
## 4515 90550 8127 TO andrea.calo@enron.com
## 4516 90551 8128 TO nora.dobin@enron.com
## 4517 90552 8129 TO david.forster@enron.com
## 4518 90553 8130 TO david.forster@enron.com
## 4519 90554 8131 TO andy.zipper@enron.com
## 4520 90555 8132 TO tbockius@aol.com
## 4521 90556 8133 TO raislerk@sullcrom.com
## 4522 90557 8134 TO russell.diamond@enron.com
## 4523 90558 8135 TO russell.diamond@enron.com
## 4524 90559 8136 TO mark.holsworth@enron.com
## 4525 90560 8137 TO janette.elbertson@enron.com
## 4526 90561 8138 TO linda.simmons@enron.com
## 4527 90562 8139 TO suzanne.adams@enron.com
## 4528 90563 8139 CC dina.snow@enron.com
## 4529 90564 8139 BCC dina.snow@enron.com
## 4530 90565 8140 TO janette.elbertson@enron.com
## 4531 90566 8141 TO lhayman@skadden.com
## 4532 90567 8142 TO lhayman@skadden.com
## 4533 90568 8142 CC amh5h@server2.mail.virginia.edu
## 4534 90569 8142 BCC amh5h@server2.mail.virginia.edu
## 4535 90570 8143 TO michelle.cash@enron.com
## 4536 90571 8143 TO angela.davis@enron.com
## 4537 90572 8143 TO peter.vecchio@enron.com
## 4538 90573 8143 TO james.grace@enron.com
## 4539 90574 8143 TO travis.mccullough@enron.com
## 4540 90575 8143 TO david.portz@enron.com
## 4541 90576 8143 TO richard.b.sanders@enron.com
## 4542 90577 8143 CC twanda.sweet@enron.com
## 4543 90578 8143 CC chaundra.woods@enron.com
## 4544 90579 8143 CC sheri.cromwell@enron.com
## 4545 90580 8143 CC dina.snow@enron.com
## 4546 90581 8143 CC linda.simmons@enron.com
## 4547 90582 8143 BCC twanda.sweet@enron.com
## 4548 90583 8143 BCC chaundra.woods@enron.com
## 4549 90584 8143 BCC sheri.cromwell@enron.com
## 4550 90585 8143 BCC dina.snow@enron.com
## 4551 90586 8143 BCC linda.simmons@enron.com
## 4552 90587 8144 TO shonnie.daniel@enron.com
## 4553 90588 8144 TO shawna.flynn@enron.com
## 4554 90589 8144 TO barbara.gray@enron.com
## 4555 90590 8144 TO lisa.mellencamp@enron.com
## 4556 90591 8144 TO lance.schuler-legal@enron.com
## 4557 90592 8144 TO lou.stoler@enron.com
## 4558 90593 8144 TO stuart.zisman@enron.com
## 4559 90594 8144 CC pat.radford@enron.com
## 4560 90595 8144 CC taffy.milligan@enron.com
## 4561 90596 8144 CC linda.simmons@enron.com
## 4562 90597 8144 CC dina.snow@enron.com
## 4563 90598 8144 BCC pat.radford@enron.com
## 4564 90599 8144 BCC taffy.milligan@enron.com
## 4565 90600 8144 BCC linda.simmons@enron.com
## 4566 90601 8144 BCC dina.snow@enron.com
## 4567 90602 8145 TO lhayman@skadden.com
## 4568 90603 8145 CC amh5h@server2.mail.virginia.edu
## 4569 90604 8145 BCC amh5h@server2.mail.virginia.edu
## 4570 90605 8146 TO tanya.rohauer@enron.com
## 4571 90606 8146 CC tana.jones@enron.com
## 4572 90607 8146 BCC tana.jones@enron.com
## 4573 90608 8147 TO becky.spencer@enron.com
## 4574 90609 8148 TO chris.long@enron.com
## 4575 90610 8149 TO stephanie.panus@enron.com
## 4576 90611 8149 CC taffy.milligan@enron.com
## 4577 90612 8149 BCC taffy.milligan@enron.com
## 4578 90613 8150 TO taffy.milligan@enron.com
## 4579 90614 8151 TO taffy.milligan@enron.com
## 4580 90615 8152 TO anne.koehler@enron.com
## 4581 90616 8152 CC tana.jones@enron.com
## 4582 90617 8152 BCC tana.jones@enron.com
## 4583 90618 8153 TO francisco.leite@enron.com
## 4584 90619 8154 TO taffy.milligan@enron.com
## 4585 90620 8155 TO anne.koehler@enron.com
## 4586 90621 8155 CC tana.jones@enron.com
## 4587 90622 8155 BCC tana.jones@enron.com
## 4588 90623 8156 TO mzeleanor@juno.com
## 4589 90624 8157 TO lhayman@skadden.com
## 4590 90625 8157 CC amh5h@server2.mail.virginia.edu
## 4591 90626 8157 CC mark.e.taylor@enron.com
## 4592 90627 8157 BCC amh5h@server2.mail.virginia.edu
## 4593 90628 8157 BCC mark.e.taylor@enron.com
## 4594 90629 8158 TO greg.johnston@enron.com
## 4595 90630 8158 CC dianne.seib@enron.com
## 4596 90631 8158 CC john.zufferli@enron.com
## 4597 90632 8158 CC melba.lozano@enron.com
## 4598 90633 8158 BCC dianne.seib@enron.com
## 4599 90634 8158 BCC john.zufferli@enron.com
## 4600 90635 8158 BCC melba.lozano@enron.com
## 4601 90636 8159 TO sales.central@prgr.com
## 4602 90637 8160 TO mark.e.taylor@enron.com
## 4603 90638 8161 TO denis.o connell@enron.com
## 4604 90639 8162 TO e..haedicke@enron.com
## 4605 90640 8163 TO john.arnold@enron.com
## 4606 90641 8163 TO dutch.quigley@enron.com
## 4607 90642 8164 TO mzeleanor@juno.com
## 4608 90643 8165 TO stephanie.panus@enron.com
## 4609 90644 8166 TO sara.shackleton@enron.com
## 4610 90645 8167 TO lisa.lees@enron.com
## 4611 90646 8168 TO tana.jones@enron.com
## 4612 90647 8169 TO mzeleanor@juno.com
## 4613 90648 8170 TO norma.villarreal@enron.com
## 4614 90649 8171 TO peter.keohane@enron.com
## 4615 90650 8171 CC tana.jones@enron.com
## 4616 90651 8171 BCC tana.jones@enron.com
## 4617 90652 8172 TO tana.jones@enron.com
## 4618 90653 8173 TO mary.cook@enron.com
## 4619 90654 8174 TO tana.jones@enron.com
## 4620 90655 8175 TO drakestra1@aol.com
## 4621 90656 8176 TO william.bradford@enron.com
## 4622 90657 8177 TO bob.shults@enron.com
## 4623 90658 8177 CC andy.zipper@enron.com
## 4624 90659 8177 CC daniel.diamond@enron.com
## 4625 90660 8177 BCC andy.zipper@enron.com
## 4626 90661 8177 BCC daniel.diamond@enron.com
## 4627 90662 8178 TO rlawrence@milbank.com
## 4628 90663 8179 TO craig.breslau@enron.com
## 4629 90664 8179 CC derek.bailey@enron.com
## 4630 90665 8179 CC tana.jones@enron.com
## 4631 90666 8179 BCC derek.bailey@enron.com
## 4632 90667 8179 BCC tana.jones@enron.com
## 4633 90668 8180 TO bob.shults@enron.com
## 4634 90669 8181 TO bob.shults@enron.com
## 4635 90670 8182 TO richard.b.sanders@enron.com
## 4636 90671 8183 TO mzeleanor@juno.com
## 4637 90672 8184 TO janette.elbertson@enron.com
## 4638 90673 8184 CC robert.bruce@enron.com
## 4639 90674 8184 BCC robert.bruce@enron.com
## 4640 90675 8185 TO robert.bruce@enron.com
## 4641 90676 8185 TO mary.cook@enron.com
## 4642 90677 8185 TO brent.hendry@enron.com
## 4643 90678 8185 TO cheryl.nelson@enron.com
## 4644 90679 8185 TO sara.shackleton@enron.com
## 4645 90680 8185 TO susan.bailey@enron.com
## 4646 90681 8185 TO samantha.boyd@enron.com
## 4647 90682 8185 TO tana.jones@enron.com
## 4648 90683 8185 TO stephanie.panus@enron.com
## 4649 90684 8185 TO justin.boyd@enron.com
## 4650 90685 8185 TO edmund.cooper@enron.com
## 4651 90686 8185 TO mark.evans@enron.com
## 4652 90687 8185 TO denis.o connell@enron.com
## 4653 90688 8185 TO paul.simons@enron.com
## 4654 90689 8186 TO melba.lozano@enron.com
## 4655 90690 8186 TO kevin.meredith@enron.com
## 4656 90691 8187 TO carol.clair@enron.com
## 4657 90692 8188 TO melba.lozano@enron.com
## 4658 90693 8188 TO kevin.meredith@enron.com
## 4659 90694 8189 TO peter.keavey@enron.com
## 4660 90695 8190 TO andy.zipper@enron.com
## 4661 90696 8191 TO andrew.wilson@enron.com
## 4662 90697 8192 TO melba.lozano@enron.com
## 4663 90698 8193 TO melba.lozano@enron.com
## 4664 90699 8193 CC sara.shackleton@enron.com
## 4665 90700 8193 BCC sara.shackleton@enron.com
## 4666 90701 8194 TO raislerk@sullcrom .com
## 4667 90702 8195 TO jeffrey.hodge@enron.com
## 4668 90703 8195 TO dan.hyvl@enron.com
## 4669 90704 8196 TO david.portz@enron.com
## 4670 90705 8197 TO raislerk@sullcrom.com
## 4671 90706 8198 TO rlawrence@milbank.com
## 4672 90707 8199 TO bob.shults@enron.com
## 4673 90708 8200 TO kristina.mordaunt@enron.com
## 4674 90709 8201 TO alan.aronowitz@enron.com
## 4675 90710 8202 TO dmitchel@cwt.com
## 4676 90711 8203 TO dmitchell@cwt.com
## 4677 90712 8204 TO elizabeth.sager@enron.com
## 4678 90713 8205 TO mzeleanor@juno.com
## 4679 90714 8206 TO chaundra.woods@enron.com
## 4680 90715 8207 TO ted.bockius@ivita.com
## 4681 90716 8208 TO patrick.wade@enron.com
## 4682 90717 8209 TO mzeleanor@juno.com
## 4683 90718 8210 TO robert.cass@enron.com
## 4684 90719 8211 TO mary.cook@enron.com
## 4685 90720 8211 TO angela.davis@enron.com
## 4686 90721 8211 TO sara.shackleton@enron.com
## 4687 90722 8212 TO janette.elbertson@enron.com
## 4688 90723 8213 TO andy.zipper@enron.com
## 4689 90724 8213 TO bob.shults@enron.com
## 4690 90725 8214 TO marie.westin@enron.com
## 4691 90726 8214 CC claudia.clark@enron.com
## 4692 90727 8214 CC enron.group@enron.com
## 4693 90728 8214 CC leslie.hansen@enron.com
## 4694 90729 8214 BCC claudia.clark@enron.com
## 4695 90730 8214 BCC enron.group@enron.com
## 4696 90731 8214 BCC leslie.hansen@enron.com
## 4697 90732 8215 TO health_center@enron.com
## 4698 90733 8216 TO steve.kim@enron.com
## 4699 90734 8216 CC mark.elliott@enron.com
## 4700 90735 8216 CC alan.aronowitz@enron.com
## 4701 90736 8216 BCC mark.elliott@enron.com
## 4702 90737 8216 BCC alan.aronowitz@enron.com
## 4703 90738 8217 TO angela.davis@enron.com
## 4704 90739 8218 TO travis.mccullough@enron.com
## 4705 90740 8219 TO tana.jones@enron.com
## 4706 90741 8220 TO etaylor@jvscinti.org
## 4707 90742 8221 TO rlawrence@milbank.com
## 4708 90743 8222 TO david.forster@enron.com
## 4709 90744 8223 TO mark_kopinski@americancentury.com
## 4710 90745 8224 TO taffy.milligan@enron.com
## 4711 90746 8225 TO maria.minguillon@enron.com
## 4712 90747 8226 TO tana.jones@enron.com
## 4713 90748 8227 TO mark_kopinski@americancentury.com
## 4714 90749 8228 TO michael.guerriero@enron.com
## 4715 90750 8229 TO david.minns@enron.com
## 4716 90751 8229 CC amita.gosalia@enron.com
## 4717 90752 8229 CC dale.neuner@enron.com
## 4718 90753 8229 CC jonathan.marsh@enron.com
## 4719 90754 8229 CC justin.boyd@enron.com
## 4720 90755 8229 CC justin.timothy@enron.com
## 4721 90756 8229 CC paul.smith@enron.com
## 4722 90757 8229 BCC amita.gosalia@enron.com
## 4723 90758 8229 BCC dale.neuner@enron.com
## 4724 90759 8229 BCC jonathan.marsh@enron.com
## 4725 90760 8229 BCC justin.boyd@enron.com
## 4726 90761 8229 BCC justin.timothy@enron.com
## 4727 90762 8229 BCC paul.smith@enron.com
## 4728 90763 8230 TO efeo@milbank.com
## 4729 90764 8231 TO sbj2@columbia.edu
## 4730 90765 8232 TO mark_kopinski@enron.com
## 4731 90766 8233 TO efeo@milbank.com
## 4732 90767 8234 TO nora.dobin@enron.com
## 4733 90768 8235 TO greg.johnston@enron.com
## 4734 90769 8236 TO efeo@milbank.com
## 4735 90770 8237 TO travis.mccullough@enron.com
## 4736 90771 8238 TO kay.mann@enron.com
## 4737 90772 8239 TO ClickAtHomePilot2@Enron
## 4738 90773 8240 TO cassandra.schultz@enron.com
## 4739 90774 8240 CC david.redmond@enron.com
## 4740 90775 8240 CC paul.simons@enron.com
## 4741 90776 8240 CC peter.crilly@enron.com
## 4742 90777 8240 CC richard.lewis@enron.com
## 4743 90778 8240 BCC david.redmond@enron.com
## 4744 90779 8240 BCC paul.simons@enron.com
## 4745 90780 8240 BCC peter.crilly@enron.com
## 4746 90781 8240 BCC richard.lewis@enron.com
## 4747 90782 8241 TO alan.aronowitz@enron.com
## 4748 90783 8241 TO harry.collins@enron.com
## 4749 90784 8241 TO shonnie.daniel@enron.com
## 4750 90785 8241 TO shawna.flynn@enron.com
## 4751 90786 8241 TO dan.hyvl@enron.com
## 4752 90787 8241 TO michael.robison@enron.com
## 4753 90788 8241 CC joya.davis@enron.com
## 4754 90789 8241 CC jenny.helton@enron.com
## 4755 90790 8241 CC pat.radford@enron.com
## 4756 90791 8241 CC becky.spencer@enron.com
## 4757 90792 8241 CC janette.elbertson@enron.com
## 4758 90793 8241 BCC joya.davis@enron.com
## 4759 90794 8241 BCC jenny.helton@enron.com
## 4760 90795 8241 BCC pat.radford@enron.com
## 4761 90796 8241 BCC becky.spencer@enron.com
## 4762 90797 8241 BCC janette.elbertson@enron.com
## 4763 90798 8242 TO roger.balog@enron.com
## 4764 90799 8242 TO peggy.banczak@enron.com
## 4765 90800 8242 TO robert.bruce@enron.com
## 4766 90801 8242 TO stacy.dickson@enron.com
## 4767 90802 8242 TO jeffrey.hodge@enron.com
## 4768 90803 8242 TO kay.mann@enron.com
## 4769 90804 8242 TO janice.moore@enron.com
## 4770 90805 8242 TO steve.hooser@enron.com
## 4771 90806 8242 CC chaundra.woods@enron.com
## 4772 90807 8242 CC kaye.ellis@enron.com
## 4773 90808 8242 CC brenda.whitehead@enron.com
## 4774 90809 8242 CC linda.noske@enron.com
## 4775 90810 8242 CC sheri.cromwell@enron.com
## 4776 90811 8242 CC becky.spencer@enron.com
## 4777 90812 8242 CC jenny.helton@enron.com
## 4778 90813 8242 CC suzanne.adams@enron.com
## 4779 90814 8242 CC pat.radford@enron.com
## 4780 90815 8242 CC janette.elbertson@enron.com
## 4781 90816 8242 CC joya.davis@enron.com
## 4782 90817 8242 BCC chaundra.woods@enron.com
## 4783 90818 8242 BCC kaye.ellis@enron.com
## 4784 90819 8242 BCC brenda.whitehead@enron.com
## 4785 90820 8242 BCC linda.noske@enron.com
## 4786 90821 8242 BCC sheri.cromwell@enron.com
## 4787 90822 8242 BCC becky.spencer@enron.com
## 4788 90823 8242 BCC jenny.helton@enron.com
## 4789 90824 8242 BCC suzanne.adams@enron.com
## 4790 90825 8242 BCC pat.radford@enron.com
## 4791 90826 8242 BCC janette.elbertson@enron.com
## 4792 90827 8242 BCC joya.davis@enron.com
## 4793 90828 8243 TO francisco.leite@enron.com
## 4794 90829 8244 TO janette.elbertson@enron.com
## 4795 90830 8245 TO greg.johnston@enron.com
## 4796 90831 8246 TO charlene.jackson@enron.com
## 4797 90832 8247 TO david.minns@enron.com
## 4798 90833 8247 CC christian.werner@enron.com
## 4799 90834 8247 CC heidi.mason@enron.com
## 4800 90835 8247 CC jerven.zhang@enron.com
## 4801 90836 8247 CC justin.timothy@enron.com
## 4802 90837 8247 CC paul.quilkey@enron.com
## 4803 90838 8247 CC raymond.yeow@enron.com
## 4804 90839 8247 CC rudi.zipter@enron.com
## 4805 90840 8247 CC susan.musch@enron.com
## 4806 90841 8247 BCC christian.werner@enron.com
## 4807 90842 8247 BCC heidi.mason@enron.com
## 4808 90843 8247 BCC jerven.zhang@enron.com
## 4809 90844 8247 BCC justin.timothy@enron.com
## 4810 90845 8247 BCC paul.quilkey@enron.com
## 4811 90846 8247 BCC raymond.yeow@enron.com
## 4812 90847 8247 BCC rudi.zipter@enron.com
## 4813 90848 8247 BCC susan.musch@enron.com
## 4814 90849 8248 TO rlawrence@milbank.com
## 4815 90850 8249 TO andrew.wilson@enron.com
## 4816 90851 8250 TO samantha.boyd@enron.com
## 4817 90852 8251 TO samantha.boyd@enron.com
## 4818 90853 8251 TO brent.hendry@enron.com
## 4819 90854 8251 TO tana.jones@enron.com
## 4820 90855 8251 TO taffy.milligan@enron.com
## 4821 90856 8251 TO stephanie.panus@enron.com
## 4822 90857 8251 TO sara.shackleton@enron.com
## 4823 90858 8252 TO john.peyton@enron.com
## 4824 90859 8253 TO ted.bockius@ivita.com
## 4825 90860 8254 TO richard.b.sanders@enron.com
## 4826 90861 8255 TO marc_cutler@bmc.com
## 4827 90862 8256 TO carol.clair@enron.com
## 4828 90863 8257 TO tana.jones@enron.com
## 4829 90864 8258 TO tana.jones@enron.com
## 4830 90865 8259 TO sara.shackleton@enron.com
## 4831 90866 8259 CC taffy.milligan@enron.com
## 4832 90867 8259 BCC taffy.milligan@enron.com
## 4833 90868 8260 TO robert.bruce@enron.com
## 4834 90869 8261 TO brent.hendry@enron.com
## 4835 90870 8262 TO brent.hendry@enron.com
## 4836 90871 8263 TO brent.hendry@enron.com
## 4837 90872 8264 TO brent.hendry@enron.com
## 4838 90873 8265 TO sami.arap@enron.com
## 4839 90874 8266 TO andy.zipper@enron.com
## 4840 90875 8267 TO craig.young@enron.com
## 4841 90876 8268 TO chris.long@enron.com
## 4842 90877 8268 CC e..haedicke@enron.com
## 4843 90878 8268 BCC e..haedicke@enron.com
## 4844 90879 8269 TO louise.kitchen@enron.com
## 4845 90880 8270 TO kaye.ellis@enron.com
## 4846 90881 8271 TO mary.cook@enron.com
## 4847 90882 8271 TO brent.hendry@enron.com
## 4848 90883 8271 TO sara.shackleton@enron.com
## 4849 90884 8271 TO susan.bailey@enron.com
## 4850 90885 8271 TO samantha.boyd@enron.com
## 4851 90886 8271 TO tana.jones@enron.com
## 4852 90887 8271 TO stephanie.panus@enron.com
## 4853 90888 8272 TO mark.elliott@enron.com
## 4854 90889 8273 TO andrew.wilson@enron.com
## 4855 90890 8274 TO janette.elbertson@enron.com
## 4856 90891 8275 TO david.forster@enron.com
## 4857 90892 8276 TO richard.b.sanders@enron.com
## 4858 90893 8276 CC christian.yoder@enron.com
## 4859 90894 8276 CC elizabeth.sager@enron.com
## 4860 90895 8276 CC e..haedicke@enron.com
## 4861 90896 8276 BCC christian.yoder@enron.com
## 4862 90897 8276 BCC elizabeth.sager@enron.com
## 4863 90898 8276 BCC e..haedicke@enron.com
## 4864 90899 8277 TO louise.bird@enron.com
## 4865 90900 8277 CC janine.juggins@enron.com
## 4866 90901 8277 CC jeff.blumenthal@enron.com
## 4867 90902 8277 CC sara.shackleton@enron.com
## 4868 90903 8277 CC stephen.douglas@enron.com
## 4869 90904 8277 BCC janine.juggins@enron.com
## 4870 90905 8277 BCC jeff.blumenthal@enron.com
## 4871 90906 8277 BCC sara.shackleton@enron.com
## 4872 90907 8277 BCC stephen.douglas@enron.com
## 4873 90908 8278 TO sami.arap@enron.com
## 4874 90909 8279 TO john.peyton@enron.com
## 4875 90910 8280 TO kathy.moore@enron.com
## 4876 90911 8281 TO help@enronline.com
## 4877 90912 8282 TO rlawrence@milbank.com
## 4878 90913 8283 TO sara.shackleton@enron.com
## 4879 90914 8284 TO leslie.hansen@enron.com
## 4880 90915 8284 TO elizabeth.sager@enron.com
## 4881 90916 8284 CC melba.lozano@enron.com
## 4882 90917 8284 BCC melba.lozano@enron.com
## 4883 90918 8285 TO rahil.jafry@enron.com
## 4884 90919 8286 TO sara.shackleton@enron.com
## 4885 90920 8287 TO taffy.milligan@enron.com
## 4886 90921 8288 TO taffy.milligan@enron.com
## 4887 90922 8289 TO tana.jones@enron.com
## 4888 90923 8290 TO tom.briggs@enron.com
## 4889 90924 8290 TO cynthia.sandherr@enron.com
## 4890 90925 8291 TO dale.neuner@enron.com
## 4891 90926 8292 TO mark.e.taylor@enron.com
## 4892 90927 8293 TO alan.aronowitz@enron.com
## 4893 90928 8293 CC tana.jones@enron.com
## 4894 90929 8293 BCC tana.jones@enron.com
## 4895 90930 8294 TO kim.stanley@enron.com
## 4896 90931 8295 TO tana.jones@enron.com
## 4897 90932 8296 TO tana.jones@enron.com
## 4898 90933 8297 TO e..haedicke@enron.com
## 4899 90934 8298 TO taffy.milligan@enron.com
## 4900 90935 8299 TO tana.jones@enron.com
## 4901 90936 8300 TO tana.jones@enron.com
## 4902 90937 8301 TO robert.bruce@enron.com
## 4903 90938 8301 TO mary.cook@enron.com
## 4904 90939 8301 TO brent.hendry@enron.com
## 4905 90940 8301 TO sara.shackleton@enron.com
## 4906 90941 8302 TO tana.jones@enron.com
## 4907 90942 8303 TO janette.elbertson@enron.com
## 4908 90943 8304 TO dale.neuner@enron.com
## 4909 90944 8305 TO tom.briggs@enron.com
## 4910 90945 8306 TO dina.snow@enron.com
## 4911 90946 8307 TO jon.chapman@enron.com
## 4912 90947 8308 TO htheaker@velaw.com
## 4913 90948 8309 TO louise.kitchen@enron.com
## 4914 90949 8310 TO jaroslaw.ferenc@enron.com
## 4915 90950 8311 TO andrew.wilson@enron.com
## 4916 90951 8312 TO tom.briggs@enron.com
## 4917 90952 8313 TO kim.stanley@enron.com
## 4918 90953 8314 TO susan.bailey@enron.com
## 4919 90954 8314 TO samantha.boyd@enron.com
## 4920 90955 8314 TO tana.jones@enron.com
## 4921 90956 8314 TO stephanie.panus@enron.com
## 4922 90957 8315 TO tana.jones@enron.com
## 4923 90958 8315 CC brent.hendry@enron.com
## 4924 90959 8315 BCC brent.hendry@enron.com
## 4925 90960 8316 TO jane.mcbride@enron.com
## 4926 90961 8316 CC alan.aronowitz@enron.com
## 4927 90962 8316 CC jeremy.pitts@bakernet.com
## 4928 90963 8316 CC mark.evans@enron.com
## 4929 90964 8316 CC paul.tyo.davis@bakernet.com
## 4930 90965 8316 BCC alan.aronowitz@enron.com
## 4931 90966 8316 BCC jeremy.pitts@bakernet.com
## 4932 90967 8316 BCC mark.evans@enron.com
## 4933 90968 8316 BCC paul.tyo.davis@bakernet.com
## 4934 90969 8317 TO brent.hendry@enron.com
## 4935 90970 8318 TO greg.johnston@enron.com
## 4936 90971 8319 TO greg.johnston@enron.com
## 4937 90972 8320 TO leslie.hansen@enron.com
## 4938 90973 8321 TO sami.arap@enron.com
## 4939 90974 8322 TO sara.shackleton@enron.com
## 4940 90975 8323 TO alfred.pennisi@enron.com
## 4941 90976 8323 CC alan.aronowitz@enron.com
## 4942 90977 8323 BCC alan.aronowitz@enron.com
## 4943 90978 8324 TO greg.johnston@enron.com
## 4944 90979 8325 TO michael.guerriero@enron.com
## 4945 90980 8326 TO janette.elbertson@enron.com
## 4946 90981 8327 TO brent.hendry@enron.com
## 4947 90982 8328 TO janette.elbertson@enron.com
## 4948 90983 8329 TO tana.jones@enron.com
## 4949 90984 8330 TO tana.jones@enron.com
## 4950 90985 8331 TO justin.boyd@enron.com
## 4951 90986 8331 CC alan.aronowitz@enron.com
## 4952 90987 8331 CC janine.juggins@enron.com
## 4953 90988 8331 CC jeffrey.hodge@enron.com
## 4954 90989 8331 BCC alan.aronowitz@enron.com
## 4955 90990 8331 BCC janine.juggins@enron.com
## 4956 90991 8331 BCC jeffrey.hodge@enron.com
## 4957 90992 8332 TO lisa.lees@enron.com
## 4958 90993 8333 TO clare.godson@allenovery.com
## 4959 90994 8333 CC tana.jones@enron.com
## 4960 90995 8333 BCC tana.jones@enron.com
## 4961 90996 8334 TO janette.elbertson@enron.com
## 4962 90997 8335 TO taffy.milligan@enron.com
## 4963 90998 8336 TO ted.bockius@ivita.com
## 4964 90999 8337 TO tana.jones@enron.com
## 4965 91000 8337 CC taffy.milligan@enron.com
## 4966 91001 8337 BCC taffy.milligan@enron.com
## 4967 91002 8338 TO raislerk@sullcrom.com
## 4968 91003 8339 TO louise.kitchen@enron.com
## 4969 91004 8339 TO andy.zipper@enron.com
## 4970 91005 8339 CC travis.mccullough@enron.com
## 4971 91006 8339 CC anne.koehler@enron.com
## 4972 91007 8339 BCC travis.mccullough@enron.com
## 4973 91008 8339 BCC anne.koehler@enron.com
## 4974 91009 8340 TO sheri.thomas@enron.com
## 4975 91010 8341 TO taffy.milligan@enron.com
## 4976 91011 8342 TO tana.jones@enron.com
## 4977 91012 8343 TO janette.elbertson@enron.com
## 4978 91013 8344 TO melba.lozano@enron.com
## 4979 91014 8345 TO taffy.milligan@enron.com
## 4980 91015 8346 TO mark.e.taylor@enron.com
## 4981 91016 8347 TO tanya.rohauer@enron.com
## 4982 91017 8348 TO heightsguys@houston.rr.com
## 4983 91018 8349 TO taffy.milligan@enron.com
## 4984 91019 8350 TO brent.hendry@enron.com
## 4985 91020 8351 TO joya.davis@enron.com
## 4986 91021 8352 TO elizabeth.sager@enron.com
## 4987 91022 8352 TO sara.shackleton@enron.com
## 4988 91023 8352 TO brent.hendry@enron.com
## 4989 91024 8353 TO ann.white@enron.com
## 4990 91025 8353 TO shari.stack@enron.com
## 4991 91026 8353 TO sheila.tweed@enron.com
## 4992 91027 8353 TO jeffrey.hodge@enron.com
## 4993 91028 8353 TO steve.hooser@enron.com
## 4994 91029 8353 TO barbara.gray@enron.com
## 4995 91030 8353 CC joya.davis@enron.com
## 4996 91031 8353 BCC joya.davis@enron.com
## 4997 91032 8354 TO skramer@milbank.com
## 4998 91033 8355 TO tana.jones@enron.com
## 4999 91034 8356 TO amel@amel.fr
## 5000 91035 8357 TO keith.macivor@enron.com
## 5001 91036 8357 TO susan.bailey@enron.com
## 5002 91037 8357 CC chris.hilgert@enron.com
## 5003 91038 8357 BCC chris.hilgert@enron.com
## 5004 91039 8358 TO brent.hendry@enron.com
## 5005 91040 8359 TO amel@amel.fr
## 5006 91041 8360 TO sara.shackleton@enron.com
## 5007 91042 8361 TO taffy.milligan@enron.com
## 5008 91043 8362 TO ted.bockius@ivita.com
## 5009 91044 8363 TO becky.tlucek@enron.com
## 5010 91045 8363 CC andrea.calo@enron.com
## 5011 91046 8363 CC brent.hendry@enron.com
## 5012 91047 8363 CC dan.hyvl@enron.com
## 5013 91048 8363 CC jeffrey.hodge@enron.com
## 5014 91049 8363 CC lynn.aven@enron.com
## 5015 91050 8363 CC e..haedicke@enron.com
## 5016 91051 8363 CC rick.hopkinson@enron.com
## 5017 91052 8363 BCC andrea.calo@enron.com
## 5018 91053 8363 BCC brent.hendry@enron.com
## 5019 91054 8363 BCC dan.hyvl@enron.com
## 5020 91055 8363 BCC jeffrey.hodge@enron.com
## 5021 91056 8363 BCC lynn.aven@enron.com
## 5022 91057 8363 BCC e..haedicke@enron.com
## 5023 91058 8363 BCC rick.hopkinson@enron.com
## 5024 91059 8364 TO john.peyton@enron.com
## 5025 91060 8365 TO gbrown@gcd.com
## 5026 91061 8366 TO sara.shackleton@enron.com
## 5027 91062 8367 TO amh5h@cms.mail.virginia.edu
## 5028 91063 8368 TO lerea.pharr@enron.com
## 5029 91064 8369 TO alan.aronowitz@enron.com
## 5030 91065 8369 CC leslie.reeves@enron.com
## 5031 91066 8369 CC thomas.gros@enron.com
## 5032 91067 8369 CC todd.ballengee@enron.com
## 5033 91068 8369 BCC leslie.reeves@enron.com
## 5034 91069 8369 BCC thomas.gros@enron.com
## 5035 91070 8369 BCC todd.ballengee@enron.com
## 5036 91071 8370 TO leslie.hansen@enron.com
## 5037 91072 8371 TO michael.moscoso@enron.com
## 5038 91073 8372 TO taffy.milligan@enron.com
## 5039 91074 8373 TO robert.bruce@enron.com
## 5040 91075 8374 TO sara.shackleton@enron.com
## 5041 91076 8375 TO janette.elbertson@enron.com
## 5042 91077 8376 TO david.forster@enron.com
## 5043 91078 8377 TO thomas.gros@enron.com
## 5044 91079 8377 CC alan.aronowitz@enron.com
## 5045 91080 8377 BCC alan.aronowitz@enron.com
## 5046 91081 8378 TO raislerk@sullcrom.com
## 5047 91082 8379 TO craig.young@enron.com
## 5048 91083 8380 TO taffy.milligan@enron.com
## 5049 91084 8381 TO craig.young@enron.com
## 5050 91085 8382 TO craig.young@enron.com
## 5051 91086 8382 CC taffy.milligan@enron.com
## 5052 91087 8382 BCC taffy.milligan@enron.com
## 5053 91088 8383 TO chris.long@enron.com
## 5054 91089 8384 TO leonardo.pacheco@enron.com
## 5055 91090 8384 CC dave.samuels@enron.com
## 5056 91091 8384 CC david.forster@enron.com
## 5057 91092 8384 CC leslie.hansen@enron.com
## 5058 91093 8384 BCC dave.samuels@enron.com
## 5059 91094 8384 BCC david.forster@enron.com
## 5060 91095 8384 BCC leslie.hansen@enron.com
## 5061 91096 8385 TO dave.samuels@enron.com
## 5062 91097 8385 CC justin.boyd@enron.com
## 5063 91098 8385 CC rahil.jafry@enron.com
## 5064 91099 8385 CC victor.browner@enron.com
## 5065 91100 8385 BCC justin.boyd@enron.com
## 5066 91101 8385 BCC rahil.jafry@enron.com
## 5067 91102 8385 BCC victor.browner@enron.com
## 5068 91103 8386 TO john.viverito@enron.com
## 5069 91104 8386 CC jonathan.whitehead@enron.com
## 5070 91105 8386 CC kevin.cordesman@enron.com
## 5071 91106 8386 CC steven.kleege@enron.com
## 5072 91107 8386 CC tom.bruce-jones@enron.com
## 5073 91108 8386 BCC jonathan.whitehead@enron.com
## 5074 91109 8386 BCC kevin.cordesman@enron.com
## 5075 91110 8386 BCC steven.kleege@enron.com
## 5076 91111 8386 BCC tom.bruce-jones@enron.com
## 5077 91112 8387 TO lhayman@skadden.com
## 5078 91113 8388 TO tana.jones@enron.com
## 5079 91114 8389 TO justin.boyd@enron.com
## 5080 91115 8390 TO melissa.murphy@enron.com
## 5081 91116 8390 CC edith.cross@enron.com
## 5082 91117 8390 CC jason.wiesepape@enron.com
## 5083 91118 8390 BCC edith.cross@enron.com
## 5084 91119 8390 BCC jason.wiesepape@enron.com
## 5085 91120 8391 TO melissa.murphy@enron.com
## 5086 91121 8391 CC edith.cross@enron.com
## 5087 91122 8391 CC jason.wiesepape@enron.com
## 5088 91123 8391 BCC edith.cross@enron.com
## 5089 91124 8391 BCC jason.wiesepape@enron.com
## 5090 91125 8392 TO travis.mccullough@enron.com
## 5091 91126 8393 TO travis.mccullough@enron.com
## 5092 91127 8394 TO travis.mccullough@enron.com
## 5093 91128 8394 CC tana.jones@enron.com
## 5094 91129 8394 BCC tana.jones@enron.com
## 5095 91130 8395 TO lhayman@skadden.com
## 5096 91131 8396 TO erica.bess@enron.com
## 5097 91132 8396 CC rahil.jafry@enron.com
## 5098 91133 8396 BCC rahil.jafry@enron.com
## 5099 91134 8397 TO louise.kitchen@enron.com
## 5100 91135 8397 CC andy.zipper@enron.com
## 5101 91136 8397 CC dave.samuels@enron.com
## 5102 91137 8397 CC david.forster@enron.com
## 5103 91138 8397 CC edmund.cooper@enron.com
## 5104 91139 8397 CC justin.boyd@enron.com
## 5105 91140 8397 CC leslie.hansen@enron.com
## 5106 91141 8397 BCC andy.zipper@enron.com
## 5107 91142 8397 BCC dave.samuels@enron.com
## 5108 91143 8397 BCC david.forster@enron.com
## 5109 91144 8397 BCC edmund.cooper@enron.com
## 5110 91145 8397 BCC justin.boyd@enron.com
## 5111 91146 8397 BCC leslie.hansen@enron.com
## 5112 91147 8398 TO lhayman@skadden.com
## 5113 91148 8399 TO amita.gosalia@enron.com
## 5114 91149 8400 TO justin.boyd@enron.com
## 5115 91150 8401 TO mark.e.taylor@enron.com
## 5116 91151 8402 TO louise.kitchen@enron.com
## 5117 91152 8402 TO andy.zipper@enron.com
## 5118 91153 8402 TO david.forster@enron.com
## 5119 91154 8402 TO dave.samuels@enron.com
## 5120 91155 8402 TO leslie.hansen@enron.com
## 5121 91156 8402 TO justin.boyd@enron.com
## 5122 91157 8402 TO edmund.cooper@enron.com
## 5123 91158 8403 TO stager@erols.com
## 5124 91159 8404 TO mary.cook@enron.com
## 5125 91160 8405 TO john.viverito@enron.com
## 5126 91161 8405 CC john.suttle@enron.com
## 5127 91162 8405 BCC john.suttle@enron.com
## 5128 91163 8406 TO janette.elbertson@enron.com
## 5129 91164 8407 TO dave.samuels@enron.com
## 5130 91165 8407 TO victor.browner@enron.com
## 5131 91166 8408 TO john.suttle@enron.com
## 5132 91167 8409 TO john.viverito@enron.com
## 5133 91168 8409 CC jonathan.whitehead@enron.com
## 5134 91169 8409 BCC jonathan.whitehead@enron.com
## 5135 91170 8410 TO janette.elbertson@enron.com
## 5136 91171 8411 TO ted.bockius@ivita.com
## 5137 91172 8412 TO stacy.dickson@enron.com
## 5138 91173 8413 TO carol.clair@enron.com
## 5139 91174 8414 TO leonardo.pacheco@enron.com
## 5140 91175 8415 TO infor@amexoffers.com
## 5141 91176 8416 TO mary.cook@enron.com
## 5142 91177 8416 CC sara.shackleton@enron.com
## 5143 91178 8416 BCC sara.shackleton@enron.com
## 5144 91179 8417 TO robert.bruce@enron.com
## 5145 91180 8417 CC robert.bruce@enron.com
## 5146 91181 8417 CC sara.shackleton@enron.com
## 5147 91182 8417 BCC robert.bruce@enron.com
## 5148 91183 8417 BCC sara.shackleton@enron.com
## 5149 91184 8418 TO john.peyton@enron.com
## 5150 91185 8418 CC keith.macivor@enron.com
## 5151 91186 8418 BCC keith.macivor@enron.com
## 5152 91187 8419 TO sara.shackleton@enron.com
## 5153 91188 8420 TO susan.bailey@enron.com
## 5154 91189 8420 TO samantha.boyd@enron.com
## 5155 91190 8420 TO tana.jones@enron.com
## 5156 91191 8420 TO stephanie.panus@enron.com
## 5157 91192 8420 TO brent.hendry@enron.com
## 5158 91193 8421 TO brent.hendry@enron.com
## 5159 91194 8422 TO whites@epenergy.com
## 5160 91195 8423 TO kay.young@enron.com
## 5161 91196 8423 CC julia.murray@enron.com
## 5162 91197 8423 CC mark.e.taylor@enron.com
## 5163 91198 8423 BCC julia.murray@enron.com
## 5164 91199 8423 BCC mark.e.taylor@enron.com
## 5165 91200 8424 TO tana.jones@enron.com
## 5166 91201 8425 TO janette.elbertson@enron.com
## 5167 91202 8426 TO sara.shackleton@enron.com
## 5168 91203 8427 TO wendi.lebrocq@enron.com
## 5169 91204 8428 TO travis.mccullough@enron.com
## 5170 91205 8429 TO mark.e.taylor@enron.com
## 5171 91206 8430 TO mark.e.taylor@enron.com
## 5172 91207 8431 TO mark.e.taylor@enron.com
## 5173 91208 8432 TO mark.e.taylor@enron.com
## 5174 91209 8433 TO mark.e.taylor@enron.com
## 5175 91210 8434 TO sara.shackleton@enron.com
## 5176 91211 8435 TO sara.shackleton@enron.com
## 5177 91212 8436 TO brent.hendry@enron.com
## 5178 91213 8437 TO sara.shackleton@enron.com
## 5179 91214 8438 TO teresa.smith@enron.com
## 5180 91215 8439 TO sara.shackleton@enron.com
## 5181 91216 8440 TO david.forster@enron.com
## 5182 91217 8441 TO sara.shackleton@enron.com
## 5183 91218 8442 TO john.viverito@enron.com
## 5184 91219 8443 TO tana.jones@enron.com
## 5185 91220 8443 CC susan.bailey@enron.com
## 5186 91221 8443 BCC susan.bailey@enron.com
## 5187 91222 8444 TO laura.johnson@enron.com
## 5188 91223 8445 TO tana.jones@enron.com
## 5189 91224 8446 TO sheri.thomas@enron.com
## 5190 91225 8446 CC frank.davis@enron.com
## 5191 91226 8446 BCC frank.davis@enron.com
## 5192 91227 8447 TO linda.noske@enron.com
## 5193 91228 8448 TO wmcgov1047@aol.com
## 5194 91229 8449 TO harry.arora@enron.com
## 5195 91230 8450 TO amh5h@virginia.edu
## 5196 91231 8450 TO wmcgov1047@aol.com
## 5197 91232 8451 TO david.forster@enron.com
## 5198 91233 8452 TO sara.shackleton@enron.com
## 5199 91234 8453 TO frank.davis@enron.com
## 5200 91235 8454 TO louise.kitchen@enron.com
## 5201 91236 8455 TO jeffrey.keeler@enron.com
## 5202 91237 8456 TO acurry@velaw.com
## 5203 91238 8456 CC andrea.v.reed@enron.com
## 5204 91239 8456 CC anne.c.koehler@enron.com
## 5205 91240 8456 CC dkeyes@velaw.com
## 5206 91241 8456 BCC andrea.v.reed@enron.com
## 5207 91242 8456 BCC anne.c.koehler@enron.com
## 5208 91243 8456 BCC dkeyes@velaw.com
## 5209 91244 8457 TO sara.shackleton@enron.com
## 5210 91245 8458 TO travis.mccullough@enron.com
## 5211 91246 8459 TO travis.mccullough@enron.com
## 5212 91247 8460 TO acurry@velaw.com
## 5213 91248 8461 TO michael.brown@enron.com
## 5214 91249 8462 TO david.minns@enron.com
## 5215 91250 8462 CC tana.jones@enron.com
## 5216 91251 8462 BCC tana.jones@enron.com
## 5217 91252 8463 TO elaine.bannerman-sowah@enron.com
## 5218 91253 8463 CC paul.simons@enron.com
## 5219 91254 8463 CC denis.o connell@enron.com
## 5220 91255 8463 BCC paul.simons@enron.com
## 5221 91256 8463 BCC denis.o connell@enron.com
## 5222 91257 8464 TO denis.o connell@enron.com
## 5223 91258 8464 TO michael.slade@enron.com
## 5224 91259 8464 CC paul.simons@enron.com
## 5225 91260 8464 BCC paul.simons@enron.com
## 5226 91261 8465 TO dave.samuels@enron.com
## 5227 91262 8466 TO anne.koehler@enron.com
## 5228 91263 8467 TO sara.shackleton@enron.com
## 5229 91264 8468 TO sara.shackleton@enron.com
## 5230 91265 8469 TO julia.murray@enron.com
## 5231 91266 8469 TO anne.koehler@enron.com
## 5232 91267 8469 TO dan.lyons@enron.com
## 5233 91268 8469 TO martin.penkwitz@enron.com
## 5234 91269 8469 CC joya.davis@enron.com
## 5235 91270 8469 BCC joya.davis@enron.com
## 5236 91271 8470 TO david.forster@enron.com
## 5237 91272 8471 TO sara.shackleton@enron.com
## 5238 91273 8472 TO john.viverito@enron.com
## 5239 91274 8472 TO brent.hendry@enron.com
## 5240 91275 8472 CC alan.aronowitz@enron.com
## 5241 91276 8472 CC jonathan.whitehead@enron.com
## 5242 91277 8472 BCC alan.aronowitz@enron.com
## 5243 91278 8472 BCC jonathan.whitehead@enron.com
## 5244 91279 8473 TO travis.mccullough@enron.com
## 5245 91280 8474 TO taffy.milligan@enron.com
## 5246 91281 8475 TO sara.shackleton@enron.com
## 5247 91282 8476 TO leslie.hansen@enron.com
## 5248 91283 8477 TO taffy.milligan@enron.com
## 5249 91284 8478 TO janette.elbertson@enron.com
## 5250 91285 8479 TO website@merck-medco.com
## 5251 91286 8480 TO john.peyton@enron.com
## 5252 91287 8481 TO andrea.bertone@enron.com
## 5253 91288 8482 TO david.forster@enron.com
## 5254 91289 8483 TO carol.clair@enron.com
## 5255 91290 8484 TO david.forster@enron.com
## 5256 91291 8485 TO e..haedicke@enron.com
## 5257 91292 8486 TO kal.shah@enron.com
## 5258 91293 8486 CC david.forster@enron.com
## 5259 91294 8486 CC mark.palmer@enron.com
## 5260 91295 8486 BCC david.forster@enron.com
## 5261 91296 8486 BCC mark.palmer@enron.com
## 5262 91297 8487 TO kal.shah@enron.com
## 5263 91298 8487 CC mark.palmer@enron.com
## 5264 91299 8487 CC david.forster@enron.com
## 5265 91300 8487 BCC mark.palmer@enron.com
## 5266 91301 8487 BCC david.forster@enron.com
## 5267 91302 8488 TO suzanne.adams@enron.com
## 5268 91303 8489 TO sara.shackleton@enron.com
## 5269 91304 8490 TO sara.shackleton@enron.com
## 5270 91305 8491 TO brenda.whitehead@enron.com
## 5271 91306 8492 TO michael.robison@enron.com
## 5272 91307 8493 TO brenda.whitehead@enron.com
## 5273 91308 8494 TO leslie.hansen@enron.com
## 5274 91309 8495 TO carol.clair@enron.com
## 5275 91310 8496 TO e..haedicke@enron.com
## 5276 91311 8497 TO sara.shackleton@enron.com
## 5277 91312 8497 TO robert.bruce@enron.com
## 5278 91313 8498 TO richard.b.sanders@enron.com
## 5279 91314 8499 TO bob.bowen@enron.com
## 5280 91315 8500 TO travis.mccullough@enron.com
## 5281 91316 8500 CC dave.samuels@enron.com
## 5282 91317 8500 BCC dave.samuels@enron.com
## 5283 91318 8501 TO taffy.milligan@enron.com
## 5284 91319 8502 TO sara.shackleton@enron.com
## 5285 91320 8503 TO tana.jones@enron.com
## 5286 91321 8503 CC brent.hendry@enron.com
## 5287 91322 8503 CC carol.clair@enron.com
## 5288 91323 8503 CC mary.cook@enron.com
## 5289 91324 8503 CC robert.bruce@enron.com
## 5290 91325 8503 CC samantha.boyd@enron.com
## 5291 91326 8503 CC sara.shackleton@enron.com
## 5292 91327 8503 CC susan.bailey@enron.com
## 5293 91328 8503 BCC brent.hendry@enron.com
## 5294 91329 8503 BCC carol.clair@enron.com
## 5295 91330 8503 BCC mary.cook@enron.com
## 5296 91331 8503 BCC robert.bruce@enron.com
## 5297 91332 8503 BCC samantha.boyd@enron.com
## 5298 91333 8503 BCC sara.shackleton@enron.com
## 5299 91334 8503 BCC susan.bailey@enron.com
## 5300 91335 8504 TO carol.clair@enron.com
## 5301 91336 8505 TO tana.jones@enron.com
## 5302 91337 8506 TO tana.jones@enron.com
## 5303 91338 8506 TO brenda.whitehead@enron.com
## 5304 91339 8507 TO patrick.hansen@enron.com
## 5305 91340 8507 CC andrea.calo@enron.com
## 5306 91341 8507 CC brent.hendry@enron.com
## 5307 91342 8507 CC carlos.bastos@enron.com
## 5308 91343 8507 CC david.forster@enron.com
## 5309 91344 8507 CC fabian.valle@enron.com
## 5310 91345 8507 CC jeff.kabel@enron.com
## 5311 91346 8507 CC leonardo.pacheco@enron.com
## 5312 91347 8507 CC maria.minguillon@enron.com
## 5313 91348 8507 CC michael.guerriero@enron.com
## 5314 91349 8507 CC brent.hendry@enron.com
## 5315 91350 8507 BCC andrea.calo@enron.com
## 5316 91351 8507 BCC brent.hendry@enron.com
## 5317 91352 8507 BCC carlos.bastos@enron.com
## 5318 91353 8507 BCC david.forster@enron.com
## 5319 91354 8507 BCC fabian.valle@enron.com
## 5320 91355 8507 BCC jeff.kabel@enron.com
## 5321 91356 8507 BCC leonardo.pacheco@enron.com
## 5322 91357 8507 BCC maria.minguillon@enron.com
## 5323 91358 8507 BCC michael.guerriero@enron.com
## 5324 91359 8507 BCC brent.hendry@enron.com
## 5325 91360 8508 TO sara.shackleton@enron.com
## 5326 91361 8508 CC taffy.milligan@enron.com
## 5327 91362 8508 BCC taffy.milligan@enron.com
## 5328 91363 8509 TO suryan.simunovic@enron.com
## 5329 91364 8510 TO justin.boyd@enron.com
## 5330 91365 8511 TO jim.griffin@compaq.com
## 5331 91366 8512 TO molly_sample@eott.com
## 5332 91367 8513 TO taffy.milligan@enron.com
## 5333 91368 8513 CC ann.white@enron.com
## 5334 91369 8513 CC susan.bailey@enron.com
## 5335 91370 8513 CC tana.jones@enron.com
## 5336 91371 8513 BCC ann.white@enron.com
## 5337 91372 8513 BCC susan.bailey@enron.com
## 5338 91373 8513 BCC tana.jones@enron.com
## 5339 91374 8514 TO craig.clark@enron.com
## 5340 91375 8514 CC amanda.angelini@ssmb.com
## 5341 91376 8514 CC annmarie.tiller@enron.com
## 5342 91377 8514 CC brent.vasconcellos@enron.com
## 5343 91378 8514 CC carol.clair@enron.com
## 5344 91379 8514 CC clint.walden@enron.com
## 5345 91380 8514 CC craig.clark@enron.com
## 5346 91381 8514 CC doug.mcdowell@enron.com
## 5347 91382 8514 CC fcochran@velaw.com
## 5348 91383 8514 CC gareth.bahlmann@enron.com
## 5349 91384 8514 CC kevin.jordan@enron.com
## 5350 91385 8514 CC kimberly.scardino@enron.com
## 5351 91386 8514 CC ryan.siurek@enron.com
## 5352 91387 8514 BCC amanda.angelini@ssmb.com
## 5353 91388 8514 BCC annmarie.tiller@enron.com
## 5354 91389 8514 BCC brent.vasconcellos@enron.com
## 5355 91390 8514 BCC carol.clair@enron.com
## 5356 91391 8514 BCC clint.walden@enron.com
## 5357 91392 8514 BCC craig.clark@enron.com
## 5358 91393 8514 BCC doug.mcdowell@enron.com
## 5359 91394 8514 BCC fcochran@velaw.com
## 5360 91395 8514 BCC gareth.bahlmann@enron.com
## 5361 91396 8514 BCC kevin.jordan@enron.com
## 5362 91397 8514 BCC kimberly.scardino@enron.com
## 5363 91398 8514 BCC ryan.siurek@enron.com
## 5364 91399 8515 TO carol.clair@enron.com
## 5365 91400 8516 TO chris.long@enron.com
## 5366 91401 8516 CC cynthia.sandherr@enron.com
## 5367 91402 8516 CC joe.hillings@enron.com
## 5368 91403 8516 CC raislerk@sullcrom.com
## 5369 91404 8516 CC richard.shapiro@enron.com
## 5370 91405 8516 CC stephen.burns@enron.com
## 5371 91406 8516 CC steven.j.kean@enron.com
## 5372 91407 8516 BCC cynthia.sandherr@enron.com
## 5373 91408 8516 BCC joe.hillings@enron.com
## 5374 91409 8516 BCC raislerk@sullcrom.com
## 5375 91410 8516 BCC richard.shapiro@enron.com
## 5376 91411 8516 BCC stephen.burns@enron.com
## 5377 91412 8516 BCC steven.j.kean@enron.com
## 5378 91413 8517 TO suryan.simunovic@enron.com
## 5379 91414 8517 CC david.forster@enron.com
## 5380 91415 8517 CC louise.kitchen@enron.com
## 5381 91416 8517 CC mark.palmer@enron.com
## 5382 91417 8517 CC nick.mooney@enron.com
## 5383 91418 8517 BCC david.forster@enron.com
## 5384 91419 8517 BCC louise.kitchen@enron.com
## 5385 91420 8517 BCC mark.palmer@enron.com
## 5386 91421 8517 BCC nick.mooney@enron.com
## 5387 91422 8518 TO louise.kitchen@enron.com
## 5388 91423 8518 CC gareth.bahlmann@enron.com
## 5389 91424 8518 BCC gareth.bahlmann@enron.com
## 5390 91425 8519 TO louise.kitchen@enron.com
## 5391 91426 8520 TO paul.simons@enron.com
## 5392 91427 8520 TO jonathan.marsh@linklaters.com
## 5393 91428 8520 CC louise.kitchen@enron.com
## 5394 91429 8520 BCC louise.kitchen@enron.com
## 5395 91430 8521 TO simon.duff@enron.com
## 5396 91431 8521 CC maria.raftery@enron.com
## 5397 91432 8521 CC richard.black@enron.com
## 5398 91433 8521 CC tomas.valnek@enron.com
## 5399 91434 8521 BCC maria.raftery@enron.com
## 5400 91435 8521 BCC richard.black@enron.com
## 5401 91436 8521 BCC tomas.valnek@enron.com
## 5402 91437 8522 TO information.management@enron.com
## 5403 91438 8523 TO andrea.calo@enron.com
## 5404 91439 8524 TO jeffrey.hodge@enron.com
## 5405 91440 8525 TO brent.hendry@enron.com
## 5406 91441 8526 TO tana.jones@enron.com
## 5407 91442 8527 TO teresa.bushman@enron.com
## 5408 91443 8528 TO taffy.milligan@enron.com
## 5409 91444 8529 TO taffy.milligan@enron.com
## 5410 91445 8530 TO peter.keohane@enron.com
## 5411 91446 8530 TO e..haedicke@enron.com
## 5412 91447 8531 TO john.peyton@enron.com
## 5413 91448 8532 TO david.forster@enron.com
## 5414 91449 8533 TO leslie.hansen@enron.com
## 5415 91450 8534 TO andy.zipper@enron.com
## 5416 91451 8535 TO leslie.hansen@enron.com
## 5417 91452 8536 TO leslie.hansen@enron.com
## 5418 91453 8537 TO andy.zipper@enron.com
## 5419 91454 8538 TO janet.place@enron.com
## 5420 91455 8539 TO louise.kitchen@enron.com
## 5421 91456 8539 CC leslie.hansen@enron.com
## 5422 91457 8539 BCC leslie.hansen@enron.com
## 5423 91458 8540 TO david.forster@enron.com
## 5424 91459 8541 TO michelle.cash@enron.com
## 5425 91460 8541 CC julia.murray@enron.com
## 5426 91461 8541 CC sharon.butcher@enron.com
## 5427 91462 8541 CC tanya.rohauer@enron.com
## 5428 91463 8541 BCC julia.murray@enron.com
## 5429 91464 8541 BCC sharon.butcher@enron.com
## 5430 91465 8541 BCC tanya.rohauer@enron.com
## 5431 91466 8542 TO peter.keohane@enron.com
## 5432 91467 8542 CC greg.johnston@enron.com
## 5433 91468 8542 CC e..haedicke@enron.com
## 5434 91469 8542 CC peggy.hedstrom@enron.com
## 5435 91470 8542 CC rob.milnthorp@enron.com
## 5436 91471 8542 BCC greg.johnston@enron.com
## 5437 91472 8542 BCC e..haedicke@enron.com
## 5438 91473 8542 BCC peggy.hedstrom@enron.com
## 5439 91474 8542 BCC rob.milnthorp@enron.com
## 5440 91475 8543 TO leonardo.pacheco@enron.com
## 5441 91476 8544 TO gilbergd@sullcrom.com
## 5442 91477 8544 CC alan.aronowitz@enron.com
## 5443 91478 8544 BCC alan.aronowitz@enron.com
## 5444 91479 8545 TO janette.elbertson@enron.com
## 5445 91480 8546 TO ted.bockius@ivita.com
## 5446 91481 8547 TO e..haedicke@enron.com
## 5447 91482 8548 TO andrea.calo@enron.com
## 5448 91483 8548 TO brent.hendry@enron.com
## 5449 91484 8549 TO andrea.calo@enron.com
## 5450 91485 8549 CC brent.hendry@enron.com
## 5451 91486 8549 BCC brent.hendry@enron.com
## 5452 91487 8550 TO david.forster@enron.com
## 5453 91488 8550 CC travis.mccullough@enron.com
## 5454 91489 8550 BCC travis.mccullough@enron.com
## 5455 91490 8551 TO ted.bockius@ivita.com
## 5456 91491 8552 TO andy.zipper@enron.com
## 5457 91492 8553 TO john.peyton@enron.com
## 5458 91493 8554 TO john.peyton@enron.com
## 5459 91494 8555 TO bob.bowen@enron.com
## 5460 91495 8555 TO john.peyton@enron.com
## 5461 91496 8556 TO john.peyton@enron.com
## 5462 91497 8557 TO margaret.allen@enron.com
## 5463 91498 8558 TO susan.bailey@enron.com
## 5464 91499 8558 TO samantha.boyd@enron.com
## 5465 91500 8558 TO kaye.ellis@enron.com
## 5466 91501 8558 TO tana.jones@enron.com
## 5467 91502 8558 TO taffy.milligan@enron.com
## 5468 91503 8558 TO jason.peters@enron.com
## 5469 91504 8559 TO mary.cook@enron.com
## 5470 91505 8560 TO david.forster@enron.com
## 5471 91506 8561 TO gilbergd@sullcrom.com
## 5472 91507 8562 TO susan.bailey@enron.com
## 5473 91508 8562 TO samantha.boyd@enron.com
## 5474 91509 8562 TO kaye.ellis@enron.com
## 5475 91510 8562 TO tana.jones@enron.com
## 5476 91511 8562 TO taffy.milligan@enron.com
## 5477 91512 8562 TO jason.peters@enron.com
## 5478 91513 8563 TO szacharias@media-general.com
## 5479 91514 8563 TO jbyrnes@dlalaw.com
## 5480 91515 8564 TO tana.jones@enron.com
## 5481 91516 8565 TO cool_international@coair.com
## 5482 91517 8566 TO david.forster@enron.com
## 5483 91518 8567 TO alan.aronowitz@enron.com
## 5484 91519 8568 TO alan.aronowitz@enron.com
## 5485 91520 8569 TO leslie.hansen@enron.com
## 5486 91521 8570 TO gilbergd@sullcrom.com
## 5487 91522 8571 TO joya.davis@enron.com
## 5488 91523 8572 TO alan.aronowitz@enron.com
## 5489 91524 8573 TO suryan.simunovic@enron.com
## 5490 91525 8573 CC amita.gosalia@enron.com
## 5491 91526 8573 CC edmund.cooper@enron.com
## 5492 91527 8573 CC mark.palmer@enron.com
## 5493 91528 8573 CC nick.mooney@enron.com
## 5494 91529 8573 CC peter.bradley@enron.com
## 5495 91530 8573 BCC amita.gosalia@enron.com
## 5496 91531 8573 BCC edmund.cooper@enron.com
## 5497 91532 8573 BCC mark.palmer@enron.com
## 5498 91533 8573 BCC nick.mooney@enron.com
## 5499 91534 8573 BCC peter.bradley@enron.com
## 5500 91535 8574 TO joya.davis@enron.com
## 5501 91536 8575 TO michele.word@enron.com
## 5502 91537 8575 CC carol.clair@enron.com
## 5503 91538 8575 BCC carol.clair@enron.com
## 5504 91539 8576 TO becky.tlucek@enron.com
## 5505 91540 8577 TO jason.peters@enron.com
## 5506 91541 8578 TO david.forster@enron.com
## 5507 91542 8579 TO nick.mooney@enron.com
## 5508 91543 8579 CC alan.aronowitz@enron.com
## 5509 91544 8579 BCC alan.aronowitz@enron.com
## 5510 91545 8580 TO richard.b.sanders@enron.com
## 5511 91546 8581 TO paul.simons@enron.com
## 5512 91547 8581 CC nick.mooney@enron.com
## 5513 91548 8581 CC amita.gosalia@enron.com
## 5514 91549 8581 CC dave.samuels@enron.com
## 5515 91550 8581 CC david.forster@enron.com
## 5516 91551 8581 CC louise.kitchen@enron.com
## 5517 91552 8581 BCC nick.mooney@enron.com
## 5518 91553 8581 BCC amita.gosalia@enron.com
## 5519 91554 8581 BCC dave.samuels@enron.com
## 5520 91555 8581 BCC david.forster@enron.com
## 5521 91556 8581 BCC louise.kitchen@enron.com
## 5522 91557 8582 TO louise.kitchen@enron.com
## 5523 91558 8583 TO james.bruce@enron.com
## 5524 91559 8583 CC jason.peters@enron.com
## 5525 91560 8583 BCC jason.peters@enron.com
## 5526 91561 8584 TO james.bruce@enron.com
## 5527 91562 8585 TO mark.e.taylor@enron.com
## 5528 91563 8586 TO travis.mccullough@enron.com
## 5529 91564 8587 TO taffy.milligan@enron.com
## 5530 91565 8588 TO ted.bockius@ivita.com
## 5531 91566 8589 TO tana.jones@enron.com
## 5532 91567 8590 TO taffy.milligan@enron.com
## 5533 91568 8591 TO craig.breslau@enron.com
## 5534 91569 8592 TO tana.jones@enron.com
## 5535 91570 8593 TO tana.jones@enron.com
## 5536 91571 8594 TO tana.jones@enron.com
## 5537 91572 8595 TO david.forster@enron.com
## 5538 91573 8596 TO stephen.douglas@enron.com
## 5539 91574 8597 TO jeff.blumenthal@enron.com
## 5540 91575 8597 CC carol.clair@enron.com
## 5541 91576 8597 CC jaime.williams@enron.com
## 5542 91577 8597 CC mario.cardoso@enron.com
## 5543 91578 8597 CC sara.shackleton@enron.com
## 5544 91579 8597 CC stephen.douglas@enron.com
## 5545 91580 8597 BCC carol.clair@enron.com
## 5546 91581 8597 BCC jaime.williams@enron.com
## 5547 91582 8597 BCC mario.cardoso@enron.com
## 5548 91583 8597 BCC sara.shackleton@enron.com
## 5549 91584 8597 BCC stephen.douglas@enron.com
## 5550 91585 8598 TO travis.mccullough@enron.com
## 5551 91586 8599 TO sara.shackleton@enron.com
## 5552 91587 8599 CC carol.clair@enron.com
## 5553 91588 8599 BCC carol.clair@enron.com
## 5554 91589 8600 TO julie.ferrara@enron.com
## 5555 91590 8601 TO susan.flynn@enron.com
## 5556 91591 8601 TO susan.bailey@enron.com
## 5557 91592 8602 TO daniel.diamond@enron.com
## 5558 91593 8603 TO daniel.diamond@enron.com
## 5559 91594 8603 CC jason.peters@enron.com
## 5560 91595 8603 BCC jason.peters@enron.com
## 5561 91596 8604 TO janette.elbertson@enron.com
## 5562 91597 8604 CC cynthia.sandherr@enron.com
## 5563 91598 8604 BCC cynthia.sandherr@enron.com
## 5564 91599 8605 TO cynthia.sandherr@enron.com
## 5565 91600 8606 TO e..haedicke@enron.com
## 5566 91601 8607 TO brent.hendry@enron.com
## 5567 91602 8608 TO david.minns@enron.com
## 5568 91603 8609 TO gilbergd@sullcrom.com
## 5569 91604 8609 TO raislerk@sullcrom.com
## 5570 91605 8609 CC louise.kitchen@enron.com
## 5571 91606 8609 CC andy.zipper@enron.com
## 5572 91607 8609 CC travis.mccullough@enron.com
## 5573 91608 8609 BCC louise.kitchen@enron.com
## 5574 91609 8609 BCC andy.zipper@enron.com
## 5575 91610 8609 BCC travis.mccullough@enron.com
## 5576 91611 8610 TO david.forster@enron.com
## 5577 91612 8611 TO melba.lozano@enron.com
## 5578 91613 8612 TO jeffr@monm.edu
## 5579 91614 8613 TO raislerk@sullcrom.com
## 5580 91615 8614 TO tana.jones@enron.com
## 5581 91616 8615 TO david.forster@enron.com
## 5582 91617 8616 TO leslie.hansen@enron.com
## 5583 91618 8617 TO leslie.hansen@enron.com
## 5584 91619 8618 TO leslie.hansen@enron.com
## 5585 91620 8619 TO leslie.hansen@enron.com
## 5586 91621 8620 TO leslie.hansen@enron.com
## 5587 91622 8621 TO leslie.hansen@enron.com
## 5588 91623 8622 TO leslie.hansen@enron.com
## 5589 91624 8623 TO leslie.hansen@enron.com
## 5590 91625 8624 TO sara.shackleton@enron.com
## 5591 91626 8625 TO sara.shackleton@enron.com
## 5592 91627 8626 TO janette.elbertson@enron.com
## 5593 91628 8626 CC becky.tlucek@enron.com
## 5594 91629 8626 BCC becky.tlucek@enron.com
## 5595 91630 8627 TO louise.kitchen@enron.com
## 5596 91631 8627 CC andy.zipper@enron.com
## 5597 91632 8627 CC lydia.cannon@enron.com
## 5598 91633 8627 CC travis.mccullough@enron.com
## 5599 91634 8627 BCC andy.zipper@enron.com
## 5600 91635 8627 BCC lydia.cannon@enron.com
## 5601 91636 8627 BCC travis.mccullough@enron.com
## 5602 91637 8628 TO craig.breslau@enron.com
## 5603 91638 8629 TO asdfga@usa.com
## 5604 91639 8630 TO brent.hendry@enron.com
## 5605 91640 8631 TO jason.peters@enron.com
## 5606 91641 8632 TO susan.flynn@enron.com
## 5607 91642 8633 TO bob.shults@enron.com
## 5608 91643 8634 TO julie.ferrara@enron.com
## 5609 91644 8635 TO melba.lozano@enron.com
## 5610 91645 8636 TO lou.stoler@enron.com
## 5611 91646 8637 TO bryan.seyfried@enron.com
## 5612 91647 8638 TO bryan.seyfried@enron.com
## 5613 91648 8638 CC paul.simons@enron.com
## 5614 91649 8638 BCC paul.simons@enron.com
## 5615 91650 8639 TO stephen_kruft@swissre.com
## 5616 91651 8639 CC lou.stoler@enron.com
## 5617 91652 8639 BCC lou.stoler@enron.com
## 5618 91653 8640 TO bryan.seyfried@enron.com
## 5619 91654 8640 CC denis.o connell@enron.com
## 5620 91655 8640 CC edmund.cooper@enron.com
## 5621 91656 8640 CC markus.fiala@enron.com
## 5622 91657 8640 CC paul.simons@enron.com
## 5623 91658 8640 CC rod.nelson@enron.com
## 5624 91659 8640 CC tomas.valnek@enron.com
## 5625 91660 8640 CC william.bradford@enron.com
## 5626 91661 8640 BCC denis.o connell@enron.com
## 5627 91662 8640 BCC edmund.cooper@enron.com
## 5628 91663 8640 BCC markus.fiala@enron.com
## 5629 91664 8640 BCC paul.simons@enron.com
## 5630 91665 8640 BCC rod.nelson@enron.com
## 5631 91666 8640 BCC tomas.valnek@enron.com
## 5632 91667 8640 BCC william.bradford@enron.com
## 5633 91668 8641 TO susan.flynn@enron.com
## 5634 91669 8642 TO tana.jones@enron.com
## 5635 91670 8643 TO lou.stoler@enron.com
## 5636 91671 8644 TO skruft@exit109.com
## 5637 91672 8644 CC lou.stoler@enron.com
## 5638 91673 8644 BCC lou.stoler@enron.com
## 5639 91674 8645 TO alan.aronowitz@enron.com
## 5640 91675 8645 CC jeffrey.hodge@enron.com
## 5641 91676 8645 BCC jeffrey.hodge@enron.com
## 5642 91677 8646 TO brent.hendry@enron.com
## 5643 91678 8646 CC andrea.calo@enron.com
## 5644 91679 8646 CC lynn.aven@enron.com
## 5645 91680 8646 BCC andrea.calo@enron.com
## 5646 91681 8646 BCC lynn.aven@enron.com
## 5647 91682 8647 TO sara.shackleton@enron.com
## 5648 91683 8648 TO travis.mccullough@enron.com
## 5649 91684 8649 TO paul.simons@enron.com
## 5650 91685 8650 TO sara.shackleton@enron.com
## 5651 91686 8651 TO mark.powell@enron.com
## 5652 91687 8651 CC alan.aronowitz@enron.com
## 5653 91688 8651 CC grant.oh@enron.com
## 5654 91689 8651 CC jeffrey.hodge@enron.com
## 5655 91690 8651 CC e..haedicke@enron.com
## 5656 91691 8651 BCC alan.aronowitz@enron.com
## 5657 91692 8651 BCC grant.oh@enron.com
## 5658 91693 8651 BCC jeffrey.hodge@enron.com
## 5659 91694 8651 BCC e..haedicke@enron.com
## 5660 91695 8652 TO andy.zipper@enron.com
## 5661 91696 8653 TO justin.boyd@enron.com
## 5662 91697 8654 TO brent.hendry@enron.com
## 5663 91698 8654 TO andrea.calo@enron.com
## 5664 91699 8655 TO sara.shackleton@enron.com
## 5665 91700 8656 TO andy.zipper@enron.com
## 5666 91701 8657 TO brent.hendry@enron.com
## 5667 91702 8658 TO sara.shackleton@enron.com
## 5668 91703 8659 TO john.viverito@enron.com
## 5669 91704 8660 TO john.viverito@enron.com
## 5670 91705 8661 TO tana.jones@enron.com
## 5671 91706 8662 TO jfa@daplaw.com
## 5672 91707 8663 TO andrea.bertone@enron.com
## 5673 91708 8664 TO andrea.bertone@enron.com
## 5674 91709 8665 TO sara.shackleton@enron.com
## 5675 91710 8666 TO fgetman@houstonstreet.com
## 5676 91711 8666 CC travis.mccullough@enron.com
## 5677 91712 8666 CC louise.kitchen@enron.com
## 5678 91713 8666 BCC travis.mccullough@enron.com
## 5679 91714 8666 BCC louise.kitchen@enron.com
## 5680 91715 8667 TO travis.mccullough@enron.com
## 5681 91716 8668 TO peoplefinder@enron.com
## 5682 91717 8669 TO louise.kitchen@enron.com
## 5683 91718 8670 TO mark.e.taylor@enron.com
## 5684 91719 8671 TO susan.flynn@enron.com
## 5685 91720 8672 TO susan.flynn@enron.com
## 5686 91721 8673 TO taffy.milligan@enron.com
## 5687 91722 8674 TO paul.simons@enron.com
## 5688 91723 8675 TO louise.kitchen@enron.com
## 5689 91724 8676 TO andrea.bertone@enron.com
## 5690 91725 8676 TO andrea.calo@enron.com
## 5691 91726 8676 TO brent.hendry@enron.com
## 5692 91727 8677 TO scmailsupport@sullcrom.com
## 5693 91728 8678 TO taffy.milligan@enron.com
## 5694 91729 8679 TO gilbergd@sullcrom.com
## 5695 91730 8679 CC travis.mccullough@enron.com
## 5696 91731 8679 BCC travis.mccullough@enron.com
## 5697 91732 8680 TO paul.simons@enron.com
## 5698 91733 8680 TO edmund.cooper@enron.com
## 5699 91734 8681 TO travis.mccullough@enron.com
## 5700 91735 8682 TO david.forster@enron.com
## 5701 91736 8683 TO louise.kitchen@enron.com
## 5702 91737 8684 TO sheila.glover@enron.com
## 5703 91738 8684 CC gareth.bahlmann@enron.com
## 5704 91739 8684 BCC gareth.bahlmann@enron.com
## 5705 91740 8685 TO kaye.ellis@enron.com
## 5706 91741 8686 TO mark.e.taylor@enron.com
## 5707 91742 8687 TO louise.kitchen@enron.com
## 5708 91743 8688 TO janette.elbertson@enron.com
## 5709 91744 8689 TO david.forster@enron.com
## 5710 91745 8689 CC jay.webb@enron.com
## 5711 91746 8689 CC mark.dilworth@enron.com
## 5712 91747 8689 CC sheri.thomas@enron.com
## 5713 91748 8689 CC amita.gosalia@enron.com
## 5714 91749 8689 CC dale.neuner@enron.com
## 5715 91750 8689 BCC jay.webb@enron.com
## 5716 91751 8689 BCC mark.dilworth@enron.com
## 5717 91752 8689 BCC sheri.thomas@enron.com
## 5718 91753 8689 BCC amita.gosalia@enron.com
## 5719 91754 8689 BCC dale.neuner@enron.com
## 5720 91755 8690 TO taffy.milligan@enron.com
## 5721 91756 8691 TO travis.mccullough@enron.com
## 5722 91757 8692 TO information.management@enron.com
## 5723 91758 8693 TO information.management@enron.com
## 5724 91759 8694 TO information.management@enron.com
## 5725 91760 8695 TO information.management@enron.com
## 5726 91761 8696 TO nedre.strambler@enron.com
## 5727 91762 8696 CC ann.white@enron.com
## 5728 91763 8696 BCC ann.white@enron.com
## 5729 91764 8697 TO nedre.strambler@enron.com
## 5730 91765 8698 TO tana.jones@enron.com
## 5731 91766 8699 TO david.forster@enron.com
## 5732 91767 8699 CC carol.clair@enron.com
## 5733 91768 8699 BCC carol.clair@enron.com
## 5734 91769 8700 TO jason.peters@enron.com
## 5735 91770 8700 TO carol.clair@enron.com
## 5736 91771 8701 TO janette.elbertson@enron.com
## 5737 91772 8702 TO brent.hendry@enron.com
## 5738 91773 8702 TO sara.shackleton@enron.com
## 5739 91774 8702 TO carol.clair@enron.com
## 5740 91775 8702 TO andrea.calo@enron.com
## 5741 91776 8702 TO tana.jones@enron.com
## 5742 91777 8702 TO susan.flynn@enron.com
## 5743 91778 8702 TO susan.bailey@enron.com
## 5744 91779 8702 TO becky.tlucek@enron.com
## 5745 91780 8702 TO taffy.milligan@enron.com
## 5746 91781 8702 TO kaye.ellis@enron.com
## 5747 91782 8702 TO suzanne.adams@enron.com
## 5748 91783 8703 TO carol.clair@enron.com
## 5749 91784 8704 TO carol.clair@enron.com
## 5750 91785 8705 TO carol.clair@enron.com
## 5751 91786 8706 TO leonardo.pacheco@enron.com
## 5752 91787 8706 CC jay.hawthorn@enron.com
## 5753 91788 8706 CC cynthia.harkness@enron.com
## 5754 91789 8706 CC jean.mrha@enron.com
## 5755 91790 8706 CC david.forster@enron.com
## 5756 91791 8706 CC julie.ferrara@enron.com
## 5757 91792 8706 CC kal.shah@enron.com
## 5758 91793 8706 BCC jay.hawthorn@enron.com
## 5759 91794 8706 BCC cynthia.harkness@enron.com
## 5760 91795 8706 BCC jean.mrha@enron.com
## 5761 91796 8706 BCC david.forster@enron.com
## 5762 91797 8706 BCC julie.ferrara@enron.com
## 5763 91798 8706 BCC kal.shah@enron.com
## 5764 91799 8707 TO carol.clair@enron.com
## 5765 91800 8708 TO joya.davis@enron.com
## 5766 91801 8708 CC taffy.milligan@enron.com
## 5767 91802 8708 CC chaundra.woods@enron.com
## 5768 91803 8708 CC becky.tlucek@enron.com
## 5769 91804 8708 BCC taffy.milligan@enron.com
## 5770 91805 8708 BCC chaundra.woods@enron.com
## 5771 91806 8708 BCC becky.tlucek@enron.com
## 5772 91807 8709 TO cynthia.harkness@enron.com
## 5773 91808 8709 CC dale.neuner@enron.com
## 5774 91809 8709 CC david.forster@enron.com
## 5775 91810 8709 CC james.ginty@enron.com
## 5776 91811 8709 CC jay.hawthorn@enron.com
## 5777 91812 8709 CC jeff.blumenthal@enron.com
## 5778 91813 8709 CC leonardo.pacheco@enron.com
## 5779 91814 8709 CC rudi.zipter@enron.com
## 5780 91815 8709 CC tana.jones@enron.com
## 5781 91816 8709 CC tom.moran@enron.com
## 5782 91817 8709 BCC dale.neuner@enron.com
## 5783 91818 8709 BCC david.forster@enron.com
## 5784 91819 8709 BCC james.ginty@enron.com
## 5785 91820 8709 BCC jay.hawthorn@enron.com
## 5786 91821 8709 BCC jeff.blumenthal@enron.com
## 5787 91822 8709 BCC leonardo.pacheco@enron.com
## 5788 91823 8709 BCC rudi.zipter@enron.com
## 5789 91824 8709 BCC tana.jones@enron.com
## 5790 91825 8709 BCC tom.moran@enron.com
## 5791 91826 8710 TO leonardo.pacheco@enron.com
## 5792 91827 8710 TO david.forster@enron.com
## 5793 91828 8710 TO dale.neuner@enron.com
## 5794 91829 8710 TO cynthia.harkness@enron.com
## 5795 91830 8710 CC jay.hawthorn@enron.com
## 5796 91831 8710 CC tom.moran@enron.com
## 5797 91832 8710 CC rudi.zipter@enron.com
## 5798 91833 8710 CC jeff.blumenthal@enron.com
## 5799 91834 8710 CC tana.jones@enron.com
## 5800 91835 8710 CC james.ginty@enron.com
## 5801 91836 8710 BCC jay.hawthorn@enron.com
## 5802 91837 8710 BCC tom.moran@enron.com
## 5803 91838 8710 BCC rudi.zipter@enron.com
## 5804 91839 8710 BCC jeff.blumenthal@enron.com
## 5805 91840 8710 BCC tana.jones@enron.com
## 5806 91841 8710 BCC james.ginty@enron.com
## 5807 91842 8711 TO tara.sweitzer@enron.com
## 5808 91843 8712 TO carol.clair@enron.com
## 5809 91844 8713 TO carol.clair@enron.com
## 5810 91845 8714 TO e..haedicke@enron.com
## 5811 91846 8714 CC travis.mccullough@enron.com
## 5812 91847 8714 CC sborgman@velaw.com
## 5813 91848 8714 BCC travis.mccullough@enron.com
## 5814 91849 8714 BCC sborgman@velaw.com
## 5815 91850 8715 TO tana.jones@enron.com
## 5816 91851 8716 TO cecilia.morellato@enron.com
## 5817 91852 8717 TO taffy.milligan@enron.com
## 5818 91853 8718 TO carol.clair@enron.com
## 5819 91854 8719 TO carol.clair@enron.com
## 5820 91855 8720 TO robin.tompkins@enron.com
## 5821 91856 8721 TO robin.tompkins@enron.com
## 5822 91857 8722 TO bob.crane@enron.com
## 5823 91858 8722 CC stephen.douglas@enron.com
## 5824 91859 8722 CC jeff.blumenthal@enron.com
## 5825 91860 8722 CC dale.neuner@enron.com
## 5826 91861 8722 BCC stephen.douglas@enron.com
## 5827 91862 8722 BCC jeff.blumenthal@enron.com
## 5828 91863 8722 BCC dale.neuner@enron.com
## 5829 91864 8723 TO storm-help@lists.hurricanecentral.com
## 5830 91865 8724 TO james.bruce@enron.com
## 5831 91866 8725 TO dsgould@midwest.net
## 5832 91867 8726 TO mark.holsworth@enron.com
## 5833 91868 8726 CC dave.samuels@enron.com
## 5834 91869 8726 BCC dave.samuels@enron.com
## 5835 91870 8727 TO stanford.lin@reuters.com
## 5836 91871 8727 CC dave.samuels@enron.com
## 5837 91872 8727 BCC dave.samuels@enron.com
## 5838 91873 8728 TO nedre.strambler@enron.com
## 5839 91874 8729 TO rousseau.anai@enron.com
## 5840 91875 8729 CC david.forster@enron.com
## 5841 91876 8729 BCC david.forster@enron.com
## 5842 91877 8730 TO david.forster@enron.com
## 5843 91878 8731 TO rousseau.anai@enron.com
## 5844 91879 8732 TO taffy.milligan@enron.com
## 5845 91880 8733 TO suggsa@epenergy.com
## 5846 91881 8734 TO louise.kitchen@enron.com
## 5847 91882 8734 CC nikki.slade@enron.com
## 5848 91883 8734 CC taffy.milligan@enron.com
## 5849 91884 8734 BCC nikki.slade@enron.com
## 5850 91885 8734 BCC taffy.milligan@enron.com
## 5851 91886 8735 TO taffy.milligan@enron.com
## 5852 91887 8736 TO travis.mccullough@enron.com
## 5853 91888 8737 TO alan.aronowitz@enron.com
## 5854 91889 8738 TO carol.clair@enron.com
## 5855 91890 8739 TO suzanne.adams@enron.com
## 5856 91891 8740 TO brent.hendry@enron.com
## 5857 91892 8741 TO rousseau.anai@enron.com
## 5858 91893 8741 CC mparraca@enron.com
## 5859 91894 8741 BCC mparraca@enron.com
## 5860 91895 8742 TO mario.cardoso@enron.com
## 5861 91896 8742 CC david.forster@enron.com
## 5862 91897 8742 BCC david.forster@enron.com
## 5863 91898 8743 TO nedre.strambler@enron.com
## 5864 91899 8744 TO nedre.strambler@enron.com
## 5865 91900 8745 TO robbi.rossi@enron.com
## 5866 91901 8745 CC alan.aronowitz@enron.com
## 5867 91902 8745 BCC alan.aronowitz@enron.com
## 5868 91903 8746 TO carol.clair@enron.com
## 5869 91904 8747 TO brenda.mcafee@enron.com
## 5870 91905 8748 TO etaylor@jvscinti.org
## 5871 91906 8749 TO carol.clair@enron.com
## 5872 91907 8749 TO sara.shackleton@enron.com
## 5873 91908 8750 TO mario.cardoso@enron.com
## 5874 91909 8750 CC david.forster@enron.com
## 5875 91910 8750 BCC david.forster@enron.com
## 5876 91911 8751 TO marc_cutler@bmc.com
## 5877 91912 8752 TO raislerk@sullcrom.com
## 5878 91913 8753 TO taffy.milligan@enron.com
## 5879 91914 8754 TO allison.navin@enron.com
## 5880 91915 8754 TO cynthia.sandherr@enron.com
## 5881 91916 8755 TO ted.bockius@ivita.com
## 5882 91917 8756 TO cynthia.sandherr@enron.com
## 5883 91918 8757 TO mzeleanor@juno.com
## 5884 91919 8758 TO richardk@monm.edu
## 5885 91920 8759 TO rousseau.anai@enron.com
## 5886 91921 8760 TO alan.aronowitz@enron.com
## 5887 91922 8760 CC joseph.hirl@enron.com
## 5888 91923 8760 CC john.ambler@enron.com
## 5889 91924 8760 CC rousseau.anai@enron.com
## 5890 91925 8760 BCC joseph.hirl@enron.com
## 5891 91926 8760 BCC john.ambler@enron.com
## 5892 91927 8760 BCC rousseau.anai@enron.com
## 5893 91928 8761 TO taffy.milligan@enron.com
## 5894 91929 8762 TO richardk@monm.edu
## 5895 91930 8763 TO mark_kopinski@americancentury.com
## 5896 91931 8764 TO information.management@enron.com
## 5897 91932 8765 TO moazzam.khoja@enron.com
## 5898 91933 8765 CC paul.simons@enron.com
## 5899 91934 8765 BCC paul.simons@enron.com
## 5900 91935 8766 TO mark_kopinski@americancentury.com
## 5901 91936 8767 TO mark.e.taylor@enron.com
## 5902 91937 8768 TO richardk@monm.edu
## 5903 91938 8769 TO information.management@enron.com
## 5904 91939 8770 TO no.address@enron.com
## 5905 91940 8771 TO e..haedicke@enron.com
## 5906 91941 8772 TO carol.clair@enron.com
## 5907 91942 8773 TO mzeleanor@juno.com
## 5908 91943 8774 TO alan.aronowitz@enron.com
## 5909 91944 8775 TO mzeleanor@juno.com
## 5910 91945 8776 TO information.management@enron.com
## 5911 91946 8777 TO james.bruce@enron.com
## 5912 91947 8778 TO tana.jones@enron.com
## 5913 91948 8779 TO rubelik@kochind.com
## 5914 91949 8779 TO moazzam.khoja@enron.com
## 5915 91950 8779 TO bryan.seyfried@enron.com
## 5916 91951 8779 TO john.metzler@enron.com
## 5917 91952 8779 TO paul.simons@enron.com
## 5918 91953 8780 TO david.forster@enron.com
## 5919 91954 8781 TO moazzam.khoja@enron.com
## 5920 91955 8781 TO bryan.seyfried@enron.com
## 5921 91956 8781 TO john.metzler@enron.com
## 5922 91957 8781 TO paul.simons@enron.com
## 5923 91958 8782 TO moazzam.khoja@enron.com
## 5924 91959 8782 TO bryan.seyfried@enron.com
## 5925 91960 8782 TO john.metzler@enron.com
## 5926 91961 8782 TO paul.simons@enron.com
## 5927 91962 8783 TO cynthia.sandherr@enron.com
## 5928 91963 8784 TO cynthia.sandherr@enron.com
## 5929 91964 8785 TO cynthia.sandherr@enron.com
## 5930 91965 8786 TO taffy.milligan@enron.com
## 5931 91966 8787 TO sandra.hart@enron.com
## 5932 91967 8788 TO leslie.hansen@enron.com
## 5933 91968 8789 TO ted.bockius@ivita.com
## 5934 91969 8790 TO information.management@enron.com
## 5935 91970 8791 TO david.minns@enron.com
## 5936 91971 8791 CC tana.jones@enron.com
## 5937 91972 8791 BCC tana.jones@enron.com
## 5938 91973 8792 TO harry.arora@enron.com
## 5939 91974 8793 TO justin.boyd@enron.com
## 5940 91975 8793 TO edmund.cooper@enron.com
## 5941 91976 8794 TO rob.bradley@enron.com
## 5942 91977 8795 TO louise.kitchen@enron.com
## 5943 91978 8796 TO david.forster@enron.com
## 5944 91979 8797 TO stephen.douglas@enron.com
## 5945 91980 8798 TO becky.tlucek@enron.com
## 5946 91981 8798 CC jeffrey.hodge@enron.com
## 5947 91982 8798 CC dan.hyvl@enron.com
## 5948 91983 8798 CC brent.hendry@enron.com
## 5949 91984 8798 CC andrea.calo@enron.com
## 5950 91985 8798 BCC jeffrey.hodge@enron.com
## 5951 91986 8798 BCC dan.hyvl@enron.com
## 5952 91987 8798 BCC brent.hendry@enron.com
## 5953 91988 8798 BCC andrea.calo@enron.com
## 5954 91989 8799 TO mcook@svdp.org
## 5955 91990 8800 TO mcook@svdp.edu
## 5956 91991 8801 TO justin.boyd@enron.com
## 5957 91992 8802 TO mcook@svdp.edu.org
## 5958 91993 8803 TO noel.petterson@enron.com
## 5959 91994 8803 CC carol.clair@enron.com
## 5960 91995 8803 BCC carol.clair@enron.com
## 5961 91996 8804 TO bryan.seyfried@enron.com
## 5962 91997 8804 CC paul.simons@enron.com
## 5963 91998 8804 BCC paul.simons@enron.com
## 5964 91999 8805 TO bryan.seyfried@enron.com
## 5965 92000 8805 TO paul.simons@enron.com
## 5966 92001 8805 TO edmund.cooper@enron.com
## 5967 92002 8805 CC mark.dilworth@enron.com
## 5968 92003 8805 BCC mark.dilworth@enron.com
## 5969 92004 8806 TO ted.bockius@ivita.com
## 5970 92005 8807 TO david.galloway@chron.com
## 5971 92006 8808 TO paul.simons@enron.com
## 5972 92007 8809 TO lori.pinder@enron.com
## 5973 92008 8810 TO paul.simons@enron.com
## 5974 92009 8811 TO rod.nelson@enron.com
## 5975 92010 8812 TO carol.clair@enron.com
## 5976 92011 8813 TO edmund.cooper@enron.com
## 5977 92012 8813 CC john.metzler@enron.com
## 5978 92013 8813 CC rod.nelson@enron.com
## 5979 92014 8813 BCC john.metzler@enron.com
## 5980 92015 8813 BCC rod.nelson@enron.com
## 5981 92016 8814 TO sheri.cromwell@enron.com
## 5982 92017 8815 TO tana.jones@enron.com
## 5983 92018 8815 CC paul.tyo.davis@bakernet.com
## 5984 92019 8815 CC alan.aronowitz@enron.com
## 5985 92020 8815 BCC paul.tyo.davis@bakernet.com
## 5986 92021 8815 BCC alan.aronowitz@enron.com
## 5987 92022 8816 TO rod.nelson@enron.com
## 5988 92023 8817 TO edmund.cooper@enron.com
## 5989 92024 8818 TO edmund.cooper@enron.com
## 5990 92025 8819 TO raislerk@sullcrom.com
## 5991 92026 8820 TO edmund.cooper@enron.com
## 5992 92027 8821 TO sheri.thomas@enron.com
## 5993 92028 8822 TO david.forster@enron.com
## 5994 92029 8822 CC justin.boyd@enron.com
## 5995 92030 8822 BCC justin.boyd@enron.com
## 5996 92031 8823 TO david.forster@enron.com
## 5997 92032 8824 TO david.forster@enron.com
## 5998 92033 8825 TO raislerk@sullcrom.com
## 5999 92034 8826 TO cynthia.sandherr@enron.com
## 6000 92035 8827 TO david.minns@enron.com
## 6001 92036 8828 TO cynthia.sandherr@enron.com
## 6002 92037 8829 TO michael.etringer@enron.com
## 6003 92038 8830 TO becky.tlucek@enron.com
## 6004 92039 8831 TO sara.shackleton@enron.com
## 6005 92040 8832 TO leslie.hansen@enron.com
## 6006 92041 8833 TO carol.clair@enron.com
## 6007 92042 8834 TO david.forster@enron.com
## 6008 92043 8835 TO mzeleanor@juno.com
## 6009 92044 8836 TO lydia.cannon@enron.com
## 6010 92045 8837 TO sara.shackleton@enron.com
## 6011 92046 8838 TO kristina.mordaunt@enron.com
## 6012 92047 8838 TO vicki.sharp@enron.com
## 6013 92048 8838 TO rob.walls@enron.com
## 6014 92049 8838 CC e..haedicke@enron.com
## 6015 92050 8838 BCC e..haedicke@enron.com
## 6016 92051 8839 TO dagodfrey@amherst.edu
## 6017 92052 8840 TO louise.kitchen@enron.com
## 6018 92053 8841 TO golbergd@sullcrom.com
## 6019 92054 8842 TO david.forster@enron.com
## 6020 92055 8843 TO david.minns@enron.com
## 6021 92056 8843 CC paul.smith@enron.com
## 6022 92057 8843 CC paul.quilkey@enron.com
## 6023 92058 8843 CC david.forster@enron.com
## 6024 92059 8843 BCC paul.smith@enron.com
## 6025 92060 8843 BCC paul.quilkey@enron.com
## 6026 92061 8843 BCC david.forster@enron.com
## 6027 92062 8844 TO bryan.seyfried@enron.com
## 6028 92063 8844 CC paul.simons@enron.com
## 6029 92064 8844 BCC paul.simons@enron.com
## 6030 92065 8845 TO david.forster@enron.com
## 6031 92066 8846 TO sheri.thomas@enron.com
## 6032 92067 8847 TO shari.stack@enron.com
## 6033 92068 8848 TO brent.hendry@enron.com
## 6034 92069 8849 TO gilbergd@sullcrom.com
## 6035 92070 8850 TO scott.sefton@enron.com
## 6036 92071 8850 CC mark.evans@enron.com
## 6037 92072 8850 CC stuart.schardin@enron.com
## 6038 92073 8850 CC carol.clair@enron.com
## 6039 92074 8850 CC nora.dobin@enron.com
## 6040 92075 8850 BCC mark.evans@enron.com
## 6041 92076 8850 BCC stuart.schardin@enron.com
## 6042 92077 8850 BCC carol.clair@enron.com
## 6043 92078 8850 BCC nora.dobin@enron.com
## 6044 92079 8851 TO shari.stack@enron.com
## 6045 92080 8852 TO raislerk@sullcrom.com
## 6046 92081 8852 TO gilbergd@sullcrom.com
## 6047 92082 8853 TO paul.simons@enron.com
## 6048 92083 8853 CC bryan.seyfried@enron.com
## 6049 92084 8853 BCC bryan.seyfried@enron.com
## 6050 92085 8854 TO sara.shackleton@enron.com
## 6051 92086 8854 TO shari.stack@enron.com
## 6052 92087 8854 TO carol.clair@enron.com
## 6053 92088 8855 TO richard.b.sanders@enron.com
## 6054 92089 8856 TO bryan.seyfried@enron.com
## 6055 92090 8856 TO paul.simons@enron.com
## 6056 92091 8857 TO david.forster@enron.com
## 6057 92092 8858 TO david.forster@enron.com
## 6058 92093 8859 TO bryan.seyfried@enron.com
## 6059 92094 8859 CC paul.simons@enron.com
## 6060 92095 8859 CC william.bradford@enron.com
## 6061 92096 8859 CC david.weekes@enron.com
## 6062 92097 8859 CC debbie.brackett@enron.com
## 6063 92098 8859 CC rod.nelson@enron.com
## 6064 92099 8859 CC eklavya.sareen@enron.com
## 6065 92100 8859 BCC paul.simons@enron.com
## 6066 92101 8859 BCC william.bradford@enron.com
## 6067 92102 8859 BCC david.weekes@enron.com
## 6068 92103 8859 BCC debbie.brackett@enron.com
## 6069 92104 8859 BCC rod.nelson@enron.com
## 6070 92105 8859 BCC eklavya.sareen@enron.com
## 6071 92106 8860 TO marc_cutler@bmc.com
## 6072 92107 8861 TO marc_cutler@bmc.com
## 6073 92108 8862 TO bryan.seyfried@enron.com
## 6074 92109 8863 TO timothy.taylor@apg.amedd.army.mil
## 6075 92110 8864 TO bryan.seyfried@enron.com
## 6076 92111 8865 TO paul.simons@enron.com
## 6077 92112 8865 TO bryan.seyfried@enron.com
## 6078 92113 8866 TO taffy.milligan@enron.com
## 6079 92114 8867 TO dale.neuner@enron.com
## 6080 92115 8867 CC stacy.dickson@enron.com
## 6081 92116 8867 CC jennifer.denny@enron.com
## 6082 92117 8867 BCC stacy.dickson@enron.com
## 6083 92118 8867 BCC jennifer.denny@enron.com
## 6084 92119 8868 TO debbie.brackett@enron.com
## 6085 92120 8868 TO rod.nelson@enron.com
## 6086 92121 8869 TO dale.neuner@enron.com
## 6087 92122 8870 TO dale.neuner@enron.com
## 6088 92123 8871 TO dale.neuner@enron.com
## 6089 92124 8872 TO dale.neuner@enron.com
## 6090 92125 8873 TO shari.stack@enron.com
## 6091 92126 8874 TO paul.simons@enron.com
## 6092 92127 8875 TO david.minns@enron.com
## 6093 92128 8875 TO shari.stack@enron.com
## 6094 92129 8875 TO leslie.hansen@enron.com
## 6095 92130 8876 TO paul.simons@enron.com
## 6096 92131 8877 TO brent.hendry@enron.com
## 6097 92132 8878 TO william.bradford@enron.com
## 6098 92133 8879 TO brent.hendry@enron.com
## 6099 92134 8880 TO alan.aronowitz@enron.com
## 6100 92135 8880 TO janice.moore@enron.com
## 6101 92136 8880 CC david.forster@enron.com
## 6102 92137 8880 BCC david.forster@enron.com
## 6103 92138 8881 TO kristina.mordaunt@enron.com
## 6104 92139 8881 TO vicki.sharp@enron.com
## 6105 92140 8881 TO rob.walls@enron.com
## 6106 92141 8881 CC e..haedicke@enron.com
## 6107 92142 8881 BCC e..haedicke@enron.com
## 6108 92143 8882 TO andrea.calo@enron.com
## 6109 92144 8883 TO paul.simons@enron.com
## 6110 92145 8884 TO david.forster@enron.com
## 6111 92146 8885 TO edmund.cooper@enron.com
## 6112 92147 8885 CC gilbergd@sullcrom.com
## 6113 92148 8885 BCC gilbergd@sullcrom.com
## 6114 92149 8886 TO gpier@doubleclick.net
## 6115 92150 8887 TO louise.kitchen@enron.com
## 6116 92151 8888 TO shari.stack@enron.com
## 6117 92152 8889 TO david.forster@enron.com
## 6118 92153 8890 TO raislerk@sullcrom.com
## 6119 92154 8891 TO david.forster@enron.com
## 6120 92155 8891 CC justin.boyd@enron.com
## 6121 92156 8891 CC gilbergd@sullcrom.com
## 6122 92157 8891 BCC justin.boyd@enron.com
## 6123 92158 8891 BCC gilbergd@sullcrom.com
## 6124 92159 8892 TO david.forster@enron.com
## 6125 92160 8892 CC debbie.brackett@enron.com
## 6126 92161 8892 BCC debbie.brackett@enron.com
## 6127 92162 8893 TO david.forster@enron.com
## 6128 92163 8894 TO david.forster@enron.com
## 6129 92164 8894 CC justin.boyd@enron.com
## 6130 92165 8894 BCC justin.boyd@enron.com
## 6131 92166 8895 TO gilbergd@sullcrom.com
## 6132 92167 8896 TO justin.boyd@enron.com
## 6133 92168 8897 TO david.forster@enron.com
## 6134 92169 8898 TO gilbergd@sullcrom.com
## 6135 92170 8899 TO justin.boyd@enron.com
## 6136 92171 8899 CC david.forster@enron.com
## 6137 92172 8899 BCC david.forster@enron.com
## 6138 92173 8900 TO alan.aronowitz@enron.com
## 6139 92174 8901 TO shari.stack@enron.com
## 6140 92175 8902 TO justin.boyd@enron.com
## 6141 92176 8902 TO paul.simons@enron.com
## 6142 92177 8903 TO brent.hendry@enron.com
## 6143 92178 8904 TO justin.boyd@enron.com
## 6144 92179 8904 CC david.forster@enron.com
## 6145 92180 8904 BCC david.forster@enron.com
## 6146 92181 8905 TO david.forster@enron.com
## 6147 92182 8906 TO david.forster@enron.com
## 6148 92183 8907 TO stacy.dickson@enron.com
## 6149 92184 8907 CC dale.neuner@enron.com
## 6150 92185 8907 CC jeffrey.hodge@enron.com
## 6151 92186 8907 BCC dale.neuner@enron.com
## 6152 92187 8907 BCC jeffrey.hodge@enron.com
## 6153 92188 8908 TO stacy.dickson@enron.com
## 6154 92189 8908 CC dale.neuner@enron.com
## 6155 92190 8908 CC jeffrey.hodge@enron.com
## 6156 92191 8908 BCC dale.neuner@enron.com
## 6157 92192 8908 BCC jeffrey.hodge@enron.com
## 6158 92193 8909 TO jan.king@enron.com
## 6159 92194 8910 TO brent.hendry@enron.com
## 6160 92195 8911 TO shari.stack@enron.com
## 6161 92196 8912 TO tbockius@aol.com
## 6162 92197 8913 TO raislerk@sullcrom.com
## 6163 92198 8913 TO gilbergd@sullcrom.com
## 6164 92199 8914 TO tbockius@aol.com
## 6165 92200 8915 TO tbockius@aol.com
## 6166 92201 8916 TO shari.stack@enron.com
## 6167 92202 8917 TO raislerk@sullcrom.com
## 6168 92203 8917 TO gilbergd@sullcrom.com
## 6169 92204 8917 CC louise.kitchen@enron.com
## 6170 92205 8917 CC harry.collins@enron.com
## 6171 92206 8917 BCC louise.kitchen@enron.com
## 6172 92207 8917 BCC harry.collins@enron.com
## 6173 92208 8918 TO bob.shults@enron.com
## 6174 92209 8918 CC louise.kitchen@enron.com
## 6175 92210 8918 CC per.sekse@enron.com
## 6176 92211 8918 BCC louise.kitchen@enron.com
## 6177 92212 8918 BCC per.sekse@enron.com
## 6178 92213 8919 TO schuyler.henderson@bakernet.com
## 6179 92214 8920 TO raislerk@sullcrom.com
## 6180 92215 8920 TO gilbergd@sullcrom.com
## 6181 92216 8921 TO raislerk@sullcrom.com
## 6182 92217 8921 TO gilbergd@sullcrom.com
## 6183 92218 8922 TO brent.hendry@enron.com
## 6184 92219 8923 TO carol.clair@enron.com
## 6185 92220 8924 TO dale.neuner@enron.com
## 6186 92221 8925 TO dale.neuner@enron.com
## 6187 92222 8926 TO leslie.hansen@enron.com
## 6188 92223 8927 TO leslie.hansen@enron.com
## 6189 92224 8928 TO jeffrey.mcmahon@enron.com
## 6190 92225 8929 TO stacy.dickson@enron.com
## 6191 92226 8929 TO jeffrey.hodge@enron.com
## 6192 92227 8930 TO mzeleanor@juno.com
## 6193 92228 8931 TO justin.boyd@enron.com
## 6194 92229 8932 TO arfan.aziz@enron.com
## 6195 92230 8932 TO edmund.cooper@enron.com
## 6196 92231 8933 TO raislerk@sullcrom.com
## 6197 92232 8933 TO gilbergd@sullcrom.com
## 6198 92233 8934 TO rudi.zipter@enron.com
## 6199 92234 8935 TO stephen.douglas@enron.com
## 6200 92235 8935 TO jeff.blumenthal@enron.com
## 6201 92236 8936 TO cecil.john@enron.com
## 6202 92237 8936 CC carol.clair@enron.com
## 6203 92238 8936 BCC carol.clair@enron.com
## 6204 92239 8937 TO mzeleanor@juno.com
## 6205 92240 8938 TO louise.kitchen@enron.com
## 6206 92241 8939 TO carol.clair@enron.com
## 6207 92242 8940 TO dale.neuner@enron.com
## 6208 92243 8941 TO dale.neuner@enron.com
## 6209 92244 8942 TO bob.shults@enron.com
## 6210 92245 8942 CC justin.boyd@enron.com
## 6211 92246 8942 CC edmund.cooper@enron.com
## 6212 92247 8942 CC louise.kitchen@enron.com
## 6213 92248 8942 CC david.forster@enron.com
## 6214 92249 8942 BCC justin.boyd@enron.com
## 6215 92250 8942 BCC edmund.cooper@enron.com
## 6216 92251 8942 BCC louise.kitchen@enron.com
## 6217 92252 8942 BCC david.forster@enron.com
## 6218 92253 8943 TO judith.schlesinger@enron.com
## 6219 92254 8944 TO dale.neuner@enron.com
## 6220 92255 8945 TO dale.neuner@enron.com
## 6221 92256 8946 TO louise.kitchen@enron.com
## 6222 92257 8947 TO mzeleanor@juno.com
## 6223 92258 8948 TO tana.jones@enron.com
## 6224 92259 8949 TO richard.b.sanders@enron.com
## 6225 92260 8950 TO louise.kitchen@enron.com
## 6226 92261 8951 TO david.minns@enron.com
## 6227 92262 8952 TO francisco.leite@enron.com
## 6228 92263 8953 TO peter.keohane@enron.com
## 6229 92264 8953 CC taffy.milligan@enron.com
## 6230 92265 8953 BCC taffy.milligan@enron.com
## 6231 92266 8954 TO kaye.ellis@enron.com
## 6232 92267 8955 TO louise.kitchen@enron.com
## 6233 92268 8956 TO louise.kitchen@enron.com
## 6234 92269 8957 TO mzeleanor@juno.com
## 6235 92270 8958 TO j_and_e_taylor@msn.com
## 6236 92271 8959 TO mzeleanor@juno.com
## 6237 92272 8960 TO j_and_e_taylor@msn.com
## 6238 92273 8961 TO mzeleanor@juno.com
## 6239 92274 8962 TO carol.clair@enron.com
## 6240 92275 8963 TO sara.shackleton@enron.com
## 6241 92276 8963 CC taffy.milligan@enron.com
## 6242 92277 8963 CC carol.clair@enron.com
## 6243 92278 8963 CC shari.stack@enron.com
## 6244 92279 8963 BCC taffy.milligan@enron.com
## 6245 92280 8963 BCC carol.clair@enron.com
## 6246 92281 8963 BCC shari.stack@enron.com
## 6247 92282 8964 TO louise.kitchen@enron.com
## 6248 92283 8965 TO michael.etringer@enron.com
## 6249 92284 8966 TO dale.neuner@enron.com
## 6250 92285 8967 TO bryan.seyfried@enron.com
## 6251 92286 8967 CC e..haedicke@enron.com
## 6252 92287 8967 CC louise.kitchen@enron.com
## 6253 92288 8967 CC paul.simons@enron.com
## 6254 92289 8967 BCC e..haedicke@enron.com
## 6255 92290 8967 BCC louise.kitchen@enron.com
## 6256 92291 8967 BCC paul.simons@enron.com
## 6257 92292 8968 TO deb.gebhardt@enron.com
## 6258 92293 8969 TO j_and_e_taylor@email.msn.com
## 6259 92294 8970 TO paul.simons@enron.com
## 6260 92295 8971 TO mzeleanor@juno.com
## 6261 92296 8972 TO louise.kitchen@enron.com
## 6262 92297 8973 TO ted.bockius@compaq.com
## 6263 92298 8974 TO michael.etringer@enron.com
## 6264 92299 8975 TO nony.flores@enron.com
## 6265 92300 8975 CC alan.aronowitz@enron.com
## 6266 92301 8975 CC harry.collins@enron.com
## 6267 92302 8975 CC janice.moore@enron.com
## 6268 92303 8975 CC michael.robison@enron.com
## 6269 92304 8975 BCC alan.aronowitz@enron.com
## 6270 92305 8975 BCC harry.collins@enron.com
## 6271 92306 8975 BCC janice.moore@enron.com
## 6272 92307 8975 BCC michael.robison@enron.com
## 6273 92308 8976 TO david.forster@enron.com
## 6274 92309 8976 TO bob.shults@enron.com
## 6275 92310 8976 TO frank.davis@enron.com
## 6276 92311 8976 TO dale.neuner@enron.com
## 6277 92312 8977 TO dale.neuner@enron.com
## 6278 92313 8978 TO justin.boyd@enron.com
## 6279 92314 8979 TO e..haedicke@enron.com
## 6280 92315 8980 TO louise.kitchen@enron.com
## 6281 92316 8981 TO janice.moore@enron.com
## 6282 92317 8982 TO david.forster@enron.com
## 6283 92318 8982 TO bob.shults@enron.com
## 6284 92319 8982 TO frank.davis@enron.com
## 6285 92320 8983 TO information.management@enron.com
## 6286 92321 8984 TO louise.kitchen@enron.com
## 6287 92322 8985 TO raislerk@sullcrom.com
## 6288 92323 8985 TO gilbergd@sullcrom.com
## 6289 92324 8986 TO tana.jones@enron.com
## 6290 92325 8987 TO mzeleanor@juno.com
## 6291 92326 8988 TO anthony.campos@enron.com
## 6292 92327 8988 TO karen.lambert@enron.com
## 6293 92328 8988 TO mary.solmonson@enron.com
## 6294 92329 8988 TO connie.sutton@enron.com
## 6295 92330 8988 CC edmund.cooper@enron.com
## 6296 92331 8988 CC david.forster@enron.com
## 6297 92332 8988 CC tana.jones@enron.com
## 6298 92333 8988 BCC edmund.cooper@enron.com
## 6299 92334 8988 BCC david.forster@enron.com
## 6300 92335 8988 BCC tana.jones@enron.com
## 6301 92336 8989 TO david.forster@enron.com
## 6302 92337 8990 TO carol.clair@enron.com
## 6303 92338 8991 TO tana.jones@enron.com
## 6304 92339 8992 TO adele.raspe2@pseg.com
## 6305 92340 8993 TO jeffrey.bortniker@enron.com
## 6306 92341 8993 CC donna.lowry@enron.com
## 6307 92342 8993 BCC donna.lowry@enron.com
## 6308 92343 8994 TO adele.raspe2@pseg.com
## 6309 92344 8995 TO mark.e.taylor@enron.com
## 6310 92345 8996 TO christian.yoder@enron.com
## 6311 92346 8997 TO mzeleanor@juno.com
## 6312 92347 8998 TO bob.bowen@enron.com
## 6313 92348 8999 TO paul.simons@enron.com
## 6314 92349 8999 TO bryan.seyfried@enron.com
## 6315 92350 9000 TO e..haedicke@enron.com
## 6316 92351 9001 TO raislerk@sullcrom.com
## 6317 92352 9002 TO bryan.seyfried@enron.com
## 6318 92353 9002 CC paul.simons@enron.com
## 6319 92354 9002 BCC paul.simons@enron.com
## 6320 92355 9003 TO tbockius@aol.com
## 6321 92356 9004 TO tbockius@aol.com
## 6322 92357 9005 TO marc_cutler@bmc.com
## 6323 92358 9006 TO taffy.milligan@enron.com
## 6324 92359 9006 CC ann.white@enron.com
## 6325 92360 9006 BCC ann.white@enron.com
## 6326 92361 9007 TO carol.clair@enron.com
## 6327 92362 9008 TO nony.flores@enron.com
## 6328 92363 9009 TO mark.elliott@enron.com
## 6329 92364 9010 TO louise.kitchen@enron.com
## 6330 92365 9011 TO mark.elliott@enron.com
## 6331 92366 9012 TO no.address@enron.com
## 6332 92367 9013 TO raislerk@sullcrom.com
## 6333 92368 9014 TO raislerk@sullcrom.com
## 6334 92369 9015 TO tana.jones@enron.com
## 6335 92370 9016 TO tana.jones@enron.com
## 6336 92371 9017 TO carol.clair@enron.com
## 6337 92372 9018 TO dale.neuner@enron.com
## 6338 92373 9019 TO dale.neuner@enron.com
## 6339 92374 9020 TO bryan.seyfried@enron.com
## 6340 92375 9020 CC paul.simons@enron.com
## 6341 92376 9020 BCC paul.simons@enron.com
## 6342 92377 9021 TO jeffrey.hodge@enron.com
## 6343 92378 9021 TO stacy.dickson@enron.com
## 6344 92379 9022 TO alan.aronowitz@enron.com
## 6345 92380 9022 TO jeffrey.hodge@enron.com
## 6346 92381 9022 TO mark.e.taylor@enron.com
## 6347 92382 9022 TO stacy.dickson@enron.com
## 6348 92383 9022 TO leslie.hansen@enron.com
## 6349 92384 9022 TO harry.collins@enron.com
## 6350 92385 9022 TO david.portz@enron.com
## 6351 92386 9022 TO elizabeth.sager@enron.com
## 6352 92387 9023 TO elena.kapralova@enron.com
## 6353 92388 9023 CC david.forster@enron.com
## 6354 92389 9023 BCC david.forster@enron.com
## 6355 92390 9024 TO alan.aronowitz@enron.com
## 6356 92391 9024 TO jeffrey.hodge@enron.com
## 6357 92392 9024 TO mark.e.taylor@enron.com
## 6358 92393 9024 TO stacy.dickson@enron.com
## 6359 92394 9024 TO leslie.hansen@enron.com
## 6360 92395 9024 TO harry.collins@enron.com
## 6361 92396 9024 TO david.portz@enron.com
## 6362 92397 9024 TO elizabeth.sager@enron.com
## 6363 92398 9025 TO alove@talisman-energy.com
## 6364 92399 9025 TO epaszkiewicz@talisman-energy.com
## 6365 92400 9026 TO tana.jones@enron.com
## 6366 92401 9027 TO cindy_evangelista@cemexusa.com
## 6367 92402 9028 TO foundation@ticonderoga.com
## 6368 92403 9029 TO dale.neuner@enron.com
## 6369 92404 9030 TO adele.raspe2@pseg.com
## 6370 92405 9031 TO cindy_evangelista@cemexusa.com
## 6371 92406 9032 TO dale.neuner@enron.com
## 6372 92407 9033 TO gary_burns@cemexusa.com
## 6373 92408 9033 CC cindy_evangelista@cemexusa.com
## 6374 92409 9033 CC george.zivic@enron.com
## 6375 92410 9033 BCC cindy_evangelista@cemexusa.com
## 6376 92411 9033 BCC george.zivic@enron.com
## 6377 92412 9034 TO dale.neuner@enron.com
## 6378 92413 9035 TO dale.neuner@enron.com
## 6379 92414 9036 TO taffy.milligan@enron.com
## 6380 92415 9037 TO dale.neuner@enron.com
## 6381 92416 9038 TO dale.neuner@enron.com
## 6382 92417 9039 TO gilbergd@sullcrom.com
## 6383 92418 9039 TO raislerk@sullcrom.com
## 6384 92419 9040 TO justin.boyd@enron.com
## 6385 92420 9041 TO sara.shackleton@enron.com
## 6386 92421 9042 TO sara.shackleton@enron.com
## 6387 92422 9043 TO gburns@cemexusa.com
## 6388 92423 9044 TO tana.jones@enron.com
## 6389 92424 9045 TO tana.jones@enron.com
## 6390 92425 9046 TO tana.jones@enron.com
## 6391 92426 9047 TO marc_cutler@bmc.com
## 6392 92427 9048 TO lucy.ortiz@enron.com
## 6393 92428 9048 CC susan.flynn@enron.com
## 6394 92429 9048 BCC susan.flynn@enron.com
## 6395 92430 9049 TO susan.bailey@enron.com
## 6396 92431 9049 TO susan.flynn@enron.com
## 6397 92432 9049 TO marie.heard@enron.com
## 6398 92433 9050 TO bob.shults@enron.com
## 6399 92434 9050 CC kathryn.cordes@enron.com
## 6400 92435 9050 CC debbie.brackett@enron.com
## 6401 92436 9050 CC jennifer.denny@enron.com
## 6402 92437 9050 CC jeffrey.hodge@enron.com
## 6403 92438 9050 CC brent.price@enron.com
## 6404 92439 9050 CC david.forster@enron.com
## 6405 92440 9050 BCC kathryn.cordes@enron.com
## 6406 92441 9050 BCC debbie.brackett@enron.com
## 6407 92442 9050 BCC jennifer.denny@enron.com
## 6408 92443 9050 BCC jeffrey.hodge@enron.com
## 6409 92444 9050 BCC brent.price@enron.com
## 6410 92445 9050 BCC david.forster@enron.com
## 6411 92446 9051 TO debbie.brackett@enron.com
## 6412 92447 9051 CC kathryn.cordes@enron.com
## 6413 92448 9051 CC bob.shults@enron.com
## 6414 92449 9051 CC jennifer.denny@enron.com
## 6415 92450 9051 CC jeffrey.hodge@enron.com
## 6416 92451 9051 CC brent.price@enron.com
## 6417 92452 9051 BCC kathryn.cordes@enron.com
## 6418 92453 9051 BCC bob.shults@enron.com
## 6419 92454 9051 BCC jennifer.denny@enron.com
## 6420 92455 9051 BCC jeffrey.hodge@enron.com
## 6421 92456 9051 BCC brent.price@enron.com
## 6422 92457 9052 TO david.forster@enron.com
## 6423 92458 9053 TO matt.motsinger@enron.com
## 6424 92459 9054 TO matt.motsinger@enron.com
## 6425 92460 9055 TO claire.dunnett@enron.com
## 6426 92461 9056 TO raislerk@sullcrom.com
## 6427 92462 9057 TO louise.kitchen@enron.com
## 6428 92463 9058 TO susan.flynn@enron.com
## 6429 92464 9058 CC taffy.milligan@enron.com
## 6430 92465 9058 BCC taffy.milligan@enron.com
## 6431 92466 9059 TO marc69@swbell.net
## 6432 92467 9060 TO jefferson.sorenson@enron.com
## 6433 92468 9061 TO donna.greif@enron.com
## 6434 92469 9062 TO carol.clair@enron.com
## 6435 92470 9063 TO louise.kitchen@enron.com
## 6436 92471 9063 TO david.forster@enron.com
## 6437 92472 9064 TO tana.jones@enron.com
## 6438 92473 9065 TO alan.aronowitz@enron.com
## 6439 92474 9066 TO steven.bunkin@gs.com
## 6440 92475 9067 TO j_and_e_taylor@email.msn.com
## 6441 92476 9067 TO mzeleanor@juno.com
## 6442 92477 9068 TO bhutt@ankarcapital.com
## 6443 92478 9069 TO e..haedicke@enron.com
## 6444 92479 9069 TO legal.1@enron.com
## 6445 92480 9070 TO david.forster@enron.com
## 6446 92481 9071 TO elena.kapralova@enron.com
## 6447 92482 9072 TO david.forster@enron.com
## 6448 92483 9073 TO david.forster@enron.com
## 6449 92484 9074 TO stacy.dickson@enron.com
## 6450 92485 9075 TO karen.lambert@enron.com
## 6451 92486 9075 CC bob.shults@enron.com
## 6452 92487 9075 BCC bob.shults@enron.com
## 6453 92488 9076 TO leslie.hansen@enron.com
## 6454 92489 9077 TO david.forster@enron.com
## 6455 92490 9078 TO enrononline@ect.enron.com
## 6456 92491 9079 TO jeffrey.hodge@enron.com
## 6457 92492 9079 CC david.forster@enron.com
## 6458 92493 9079 CC stacy.dickson@enron.com
## 6459 92494 9079 BCC david.forster@enron.com
## 6460 92495 9079 BCC stacy.dickson@enron.com
## 6461 92496 9080 TO karen.lambert@enron.com
## 6462 92497 9080 CC mary.solmonson@enron.com
## 6463 92498 9080 CC connie.sutton@enron.com
## 6464 92499 9080 CC bob.shults@enron.com
## 6465 92500 9080 BCC mary.solmonson@enron.com
## 6466 92501 9080 BCC connie.sutton@enron.com
## 6467 92502 9080 BCC bob.shults@enron.com
## 6468 92503 9081 TO peter.keohane@enron.com
## 6469 92504 9081 CC tana.jones@enron.com
## 6470 92505 9081 BCC tana.jones@enron.com
## 6471 92506 9082 TO monica.matias@enron.com
## 6472 92507 9083 TO tana.jones@enron.com
## 6473 92508 9084 TO sara.shackleton@enron.com
## 6474 92509 9084 TO carol.clair@enron.com
## 6475 92510 9084 TO shari.stack@enron.com
## 6476 92511 9084 CC taffy.milligan@enron.com
## 6477 92512 9084 BCC taffy.milligan@enron.com
## 6478 92513 9085 TO louise.kitchen@enron.com
## 6479 92514 9085 TO david.forster@enron.com
## 6480 92515 9085 TO marcello.romano@enron.com
## 6481 92516 9086 TO sara.shackleton@enron.com
## 6482 92517 9087 TO leslie.hansen@enron.com
## 6483 92518 9087 CC bob.shults@enron.com
## 6484 92519 9087 CC jeffrey.hodge@enron.com
## 6485 92520 9087 CC debbie.brackett@enron.com
## 6486 92521 9087 CC david.forster@enron.com
## 6487 92522 9087 BCC bob.shults@enron.com
## 6488 92523 9087 BCC jeffrey.hodge@enron.com
## 6489 92524 9087 BCC debbie.brackett@enron.com
## 6490 92525 9087 BCC david.forster@enron.com
## 6491 92526 9088 TO karen.lambert@enron.com
## 6492 92527 9088 CC stacy.dickson@enron.com
## 6493 92528 9088 CC connie.sutton@enron.com
## 6494 92529 9088 CC mary.solmonson@enron.com
## 6495 92530 9088 CC bob.shults@enron.com
## 6496 92531 9088 CC dale.neuner@enron.com
## 6497 92532 9088 BCC stacy.dickson@enron.com
## 6498 92533 9088 BCC connie.sutton@enron.com
## 6499 92534 9088 BCC mary.solmonson@enron.com
## 6500 92535 9088 BCC bob.shults@enron.com
## 6501 92536 9088 BCC dale.neuner@enron.com
## 6502 92537 9089 TO tana.jones@enron.com
## 6503 92538 9090 TO marcello.romano@enron.com
## 6504 92539 9091 TO tana.jones@enron.com
## 6505 92540 9091 CC peter.keohane@enron.com
## 6506 92541 9091 CC jeffrey.hodge@enron.com
## 6507 92542 9091 BCC peter.keohane@enron.com
## 6508 92543 9091 BCC jeffrey.hodge@enron.com
## 6509 92544 9092 TO gpier@doubleclick.net
## 6510 92545 9093 TO gpier@doubleclick.net
## 6511 92546 9094 TO gpier@doubleclick.net
## 6512 92547 9095 TO bhutt@ankarcapital.com
## 6513 92548 9096 TO bhutt@ankarcapital.com
## 6514 92549 9097 TO jeffrey.hodge@enron.com
## 6515 92550 9098 TO gpier@doubleclick.net
## 6516 92551 9099 TO bhutt@ankarcapital.com
## 6517 92552 9100 TO bhutt@ankarcapital.com
## 6518 92553 9100 CC gpier@doubleclick.net
## 6519 92554 9100 BCC gpier@doubleclick.net
## 6520 92555 9101 TO susan.bailey@enron.com
## 6521 92556 9101 TO marie.heard@enron.com
## 6522 92557 9101 TO brent.hendry@enron.com
## 6523 92558 9101 TO tana.jones@enron.com
## 6524 92559 9101 TO taffy.milligan@enron.com
## 6525 92560 9101 TO sara.shackleton@enron.com
## 6526 92561 9101 TO shari.stack@enron.com
## 6527 92562 9101 TO carol.clair@enron.com
## 6528 92563 9102 TO brent.hendry@enron.com
## 6529 92564 9103 TO david.minns@enron.com
## 6530 92565 9103 CC edmund.cooper@enron.com
## 6531 92566 9103 CC justin.boyd@enron.com
## 6532 92567 9103 BCC edmund.cooper@enron.com
## 6533 92568 9103 BCC justin.boyd@enron.com
## 6534 92569 9104 TO david.grevelle@enron.com
## 6535 92570 9105 TO gpier@doubleclick.net
## 6536 92571 9106 TO gpier@doubleclick.net
## 6537 92572 9106 TO bhutt@ankarcapital.com
## 6538 92573 9107 TO sara.shackleton@enron.com
## 6539 92574 9108 TO enrononline@ect.enron.com
## 6540 92575 9109 TO francisco.leite@enron.com
## 6541 92576 9109 TO lou.stoler@enron.com
## 6542 92577 9110 TO gilbergd@sullcrom.com
## 6543 92578 9110 TO raislerk@sullcrom.com
## 6544 92579 9111 TO tana.jones@enron.com
## 6545 92580 9112 TO donna.greif@enron.com
## 6546 92581 9112 CC amita.gosalia@enron.com
## 6547 92582 9112 CC bob.shults@enron.com
## 6548 92583 9112 CC david.forster@enron.com
## 6549 92584 9112 BCC amita.gosalia@enron.com
## 6550 92585 9112 BCC bob.shults@enron.com
## 6551 92586 9112 BCC david.forster@enron.com
## 6552 92587 9113 TO tana.jones@enron.com
## 6553 92588 9114 TO ted.bockius@compaq.com
## 6554 92589 9115 TO bhutt@ankarcapital.com
## 6555 92590 9115 CC gpier@doubleclick.net
## 6556 92591 9115 BCC gpier@doubleclick.net
## 6557 92592 9116 TO dale.neuner@enron.com
## 6558 92593 9117 TO jeffrey.hodge@enron.com
## 6559 92594 9117 TO alan.aronowitz@enron.com
## 6560 92595 9118 TO bhutt@ankarcapital.com
## 6561 92596 9118 CC gpier@doubleclick.net
## 6562 92597 9118 BCC gpier@doubleclick.net
## 6563 92598 9119 TO louise.kitchen@enron.com
## 6564 92599 9119 CC justin.boyd@enron.com
## 6565 92600 9119 BCC justin.boyd@enron.com
## 6566 92601 9120 TO carol.clair@enron.com
## 6567 92602 9121 TO awais.omar@enron.com
## 6568 92603 9121 CC david.forster@enron.com
## 6569 92604 9121 BCC david.forster@enron.com
## 6570 92605 9122 TO lucy.ortiz@enron.com
## 6571 92606 9123 TO david.forster@enron.com
## 6572 92607 9124 TO sara.shackleton@enron.com
## 6573 92608 9125 TO lucy.ortiz@enron.com
## 6574 92609 9125 CC tana.jones@enron.com
## 6575 92610 9125 BCC tana.jones@enron.com
## 6576 92611 9126 TO david.forster@enron.com
## 6577 92612 9127 TO taffy.milligan@enron.com
## 6578 92613 9128 TO louise.kitchen@enron.com
## 6579 92614 9128 CC justin.boyd@enron.com
## 6580 92615 9128 CC awais.omar@enron.com
## 6581 92616 9128 CC edmund.cooper@enron.com
## 6582 92617 9128 BCC justin.boyd@enron.com
## 6583 92618 9128 BCC awais.omar@enron.com
## 6584 92619 9128 BCC edmund.cooper@enron.com
## 6585 92620 9129 TO mark.e.taylor@enron.com
## 6586 92621 9130 TO mark.e.taylor@enron.com
## 6587 92622 9131 TO mark.e.taylor@enron.com
## 6588 92623 9132 TO no.address@enron.com
## 6589 92624 9133 TO bhutt@ankarcapital.com
## 6590 92625 9133 CC gpier@doubleclick.net
## 6591 92626 9133 BCC gpier@doubleclick.net
## 6592 92627 9134 TO mark.e.taylor@enron.com
## 6593 92628 9135 TO mark.e.taylor@enron.com
## 6594 92629 9136 TO bhutt@ankarcapital.com
## 6595 92630 9136 CC gpier@doubleclick.net
## 6596 92631 9136 BCC gpier@doubleclick.net
## 6597 92632 9137 TO frank.davis@enron.com
## 6598 92633 9137 CC bob.shults@enron.com
## 6599 92634 9137 CC david.forster@enron.com
## 6600 92635 9137 BCC bob.shults@enron.com
## 6601 92636 9137 BCC david.forster@enron.com
## 6602 92637 9138 TO alan.aronowitz@enron.com
## 6603 92638 9138 TO roger.balog@enron.com
## 6604 92639 9138 TO peggy.banczak@enron.com
## 6605 92640 9138 TO sandi.braband@enron.com
## 6606 92641 9138 TO teresa.bushman@enron.com
## 6607 92642 9138 TO bob.carter@enron.com
## 6608 92643 9138 TO michelle.cash@enron.com
## 6609 92644 9138 TO barton.clark@enron.com
## 6610 92645 9138 TO harry.collins@enron.com
## 6611 92646 9138 TO shonnie.daniel@enron.com
## 6612 92647 9138 TO peter.vecchio@enron.com
## 6613 92648 9138 TO stacy.dickson@enron.com
## 6614 92649 9138 TO shawna.flynn@enron.com
## 6615 92650 9138 TO chris.gaffney@enron.com
## 6616 92651 9138 TO barbara.gray@enron.com
## 6617 92652 9138 TO wayne.gresham@enron.com
## 6618 92653 9138 TO e..haedicke@enron.com
## 6619 92654 9138 TO leslie.hansen@enron.com
## 6620 92655 9138 TO jeffrey.hodge@enron.com
## 6621 92656 9138 TO dan.hyvl@enron.com
## 6622 92657 9138 TO monica.jordan@enron.com
## 6623 92658 9138 TO dan.lyons@enron.com
## 6624 92659 9138 TO travis.mccullough@enron.com
## 6625 92660 9138 TO lisa.mellencamp@enron.com
## 6626 92661 9138 TO janet.moore@enron.com
## 6627 92662 9138 TO julia.murray@enron.com
## 6628 92663 9138 TO gerald.nemec@enron.com
## 6629 92664 9138 TO doug.pedigo@enron.com
## 6630 92665 9138 TO david.portz@enron.com
## 6631 92666 9138 TO michael.robison@enron.com
## 6632 92667 9138 TO elizabeth.sager@enron.com
## 6633 92668 9138 TO richard.b.sanders@enron.com
## 6634 92669 9138 TO lance.schuler-legal@enron.com
## 6635 92670 9138 TO sara.shackleton@enron.com
## 6636 92671 9138 TO shari.stack@enron.com
## 6637 92672 9138 TO sheila.tweed@enron.com
## 6638 92673 9138 TO steve.hooser@enron.com
## 6639 92674 9138 TO ann.white@enron.com
## 6640 92675 9138 TO stuart.zisman@enron.com
## 6641 92676 9138 TO susan.bailey@enron.com
## 6642 92677 9138 TO kimberlee.bennick@enron.com
## 6643 92678 9138 TO genia.fitzgerald@enron.com
## 6644 92679 9138 TO nony.flores@enron.com
## 6645 92680 9138 TO susan.flynn@enron.com
## 6646 92681 9138 TO linda.guinn@enron.com
## 6647 92682 9138 TO marie.heard@enron.com
## 6648 92683 9138 TO ed.iii@enron.com
## 6649 92684 9138 TO mary.heinitz@enron.com
## 6650 92685 9138 TO tana.jones@enron.com
## 6651 92686 9138 TO deb.korkmas@enron.com
## 6652 92687 9138 TO mary.ogden@enron.com
## 6653 92688 9138 TO debra.perlingiere@enron.com
## 6654 92689 9138 TO robert.walker@enron.com
## 6655 92690 9138 TO kay.young@enron.com
## 6656 92691 9138 TO merrill.haas@enron.com
## 6657 92692 9138 TO brent.hendry@enron.com
## 6658 92693 9138 TO peter.keohane@enron.com
## 6659 92694 9138 TO michael.brown@enron.com
## 6660 92695 9138 TO dale.rasmussen@enron.com
## 6661 92696 9138 TO justin.boyd@enron.com
## 6662 92697 9138 TO paul.simons@enron.com
## 6663 92698 9138 TO lou.stoler@enron.com
## 6664 92699 9138 TO matthias.lee@enron.com
## 6665 92700 9138 TO laurie.mayer@enron.com
## 6666 92701 9138 TO greg.johnston@enron.com
## 6667 92702 9138 TO david.minns@enron.com
## 6668 92703 9138 CC taffy.milligan@enron.com
## 6669 92704 9138 CC suzanne.adams@enron.com
## 6670 92705 9138 CC joya.davis@enron.com
## 6671 92706 9138 BCC taffy.milligan@enron.com
## 6672 92707 9138 BCC suzanne.adams@enron.com
## 6673 92708 9138 BCC joya.davis@enron.com
## 6674 92709 9139 TO tana.jones@enron.com
## 6675 92710 9140 TO no.address@enron.com
## 6676 92711 9141 TO gpier@doubleclick.net
## 6677 92712 9141 CC bhutt@ankarcapital.com
## 6678 92713 9141 BCC bhutt@ankarcapital.com
## 6679 92714 9142 TO jeffrey.hodge@enron.com
## 6680 92715 9143 TO bhutt@ankarcapital.com
## 6681 92716 9143 CC gpier@doubleclick.net
## 6682 92717 9143 BCC gpier@doubleclick.net
## 6683 92718 9144 TO tana.jones@enron.com
## 6684 92719 9145 TO taffy.milligan@enron.com
## 6685 92720 9146 TO stacy.dickson@enron.com
## 6686 92721 9147 TO david.forster@enron.com
## 6687 92722 9147 CC elena.kapralova@enron.com
## 6688 92723 9147 BCC elena.kapralova@enron.com
## 6689 92724 9148 TO sara.shackleton@enron.com
## 6690 92725 9148 CC taffy.milligan@enron.com
## 6691 92726 9148 BCC taffy.milligan@enron.com
## 6692 92727 9149 TO justin.boyd@enron.com
## 6693 92728 9149 TO mark.elliott@enron.com
## 6694 92729 9149 TO paul.simons@enron.com
## 6695 92730 9150 TO justin.boyd@enron.com
## 6696 92731 9150 TO edmund.cooper@enron.com
## 6697 92732 9150 TO jeffrey.hodge@enron.com
## 6698 92733 9151 TO doug.mcdowell@enron.com
## 6699 92734 9152 TO carol.clair@enron.com
## 6700 92735 9153 TO carrie.southard@enron.com
## 6701 92736 9153 CC mark.e.taylor@enron.com
## 6702 92737 9153 CC lisa.gillette@enron.com
## 6703 92738 9153 CC lara.fields@enron.com
## 6704 92739 9153 BCC mark.e.taylor@enron.com
## 6705 92740 9153 BCC lisa.gillette@enron.com
## 6706 92741 9153 BCC lara.fields@enron.com
## 6707 92742 9154 TO david.forster@enron.com
## 6708 92743 9155 TO david.forster@enron.com
## 6709 92744 9155 TO justin.boyd@enron.com
## 6710 92745 9155 TO edmund.cooper@enron.com
## 6711 92746 9155 TO gilbergd@sullcrom.com
## 6712 92747 9155 TO raislerk@sullcrom.com
## 6713 92748 9155 TO stephen.douglas@enron.com
## 6714 92749 9155 TO jeff.blumenthal@enron.com
## 6715 92750 9155 CC louise.kitchen@enron.com
## 6716 92751 9155 BCC louise.kitchen@enron.com
## 6717 92752 9156 TO sara.shackleton@enron.com
## 6718 92753 9157 TO taffy.milligan@enron.com
## 6719 92754 9157 CC andrea.calo@enron.com
## 6720 92755 9157 BCC andrea.calo@enron.com
## 6721 92756 9158 TO tana.jones@enron.com
## 6722 92757 9159 TO lorraine.becker@enron.com
## 6723 92758 9160 TO andrea.calo@enron.com
## 6724 92759 9161 TO no.address@enron.com
## 6725 92760 9162 TO sara.shackleton@enron.com
## 6726 92761 9163 TO andrea.calo@enron.com
## 6727 92762 9164 TO sara.shackleton@enron.com
## 6728 92763 9165 TO gilbergd@sullcrom.com
## 6729 92764 9165 TO raislerk@sullcrom.com
## 6730 92765 9166 TO gpier@doubleclick.net
## 6731 92766 9167 TO ted.bockius@compaq.com
## 6732 92767 9167 CC jim.griffin@compaq.com
## 6733 92768 9167 BCC jim.griffin@compaq.com
## 6734 92769 9168 TO no.address@enron.com
## 6735 92770 9169 TO carol.clair@enron.com
## 6736 92771 9169 CC sara.shackleton@enron.com
## 6737 92772 9169 CC shari.stack@enron.com
## 6738 92773 9169 CC marie.heard@enron.com
## 6739 92774 9169 CC tana.jones@enron.com
## 6740 92775 9169 CC susan.bailey@enron.com
## 6741 92776 9169 CC susan.flynn@enron.com
## 6742 92777 9169 CC peter.keohane@enron.com
## 6743 92778 9169 BCC sara.shackleton@enron.com
## 6744 92779 9169 BCC shari.stack@enron.com
## 6745 92780 9169 BCC marie.heard@enron.com
## 6746 92781 9169 BCC tana.jones@enron.com
## 6747 92782 9169 BCC susan.bailey@enron.com
## 6748 92783 9169 BCC susan.flynn@enron.com
## 6749 92784 9169 BCC peter.keohane@enron.com
## 6750 92785 9170 TO anne@nyurbanventures.com
## 6751 92786 9171 TO mail@assurednyc.com
## 6752 92787 9172 TO david.forster@enron.com
## 6753 92788 9173 TO taffy.milligan@enron.com
## 6754 92789 9174 TO david.forster@enron.com
## 6755 92790 9175 TO carol.clair@enron.com
## 6756 92791 9175 TO john.enerson@enron.com
## 6757 92792 9176 TO brent.hendry@enron.com
## 6758 92793 9176 TO sara.shackleton@enron.com
## 6759 92794 9176 TO carol.clair@enron.com
## 6760 92795 9176 TO shari.stack@enron.com
## 6761 92796 9176 TO marie.heard@enron.com
## 6762 92797 9176 TO tana.jones@enron.com
## 6763 92798 9176 TO susan.flynn@enron.com
## 6764 92799 9176 TO susan.bailey@enron.com
## 6765 92800 9177 TO no.address@enron.com
## 6766 92801 9178 TO gpier@doubleclick.net
## 6767 92802 9179 TO debbie.brackett@enron.com
## 6768 92803 9180 TO raislerk@sullcrom.com
## 6769 92804 9181 TO gpier@doubleclick.net
## 6770 92805 9182 TO david.forster@enron.com
## 6771 92806 9183 TO mark_kopinski@americancentury.com
## 6772 92807 9184 TO david.forster@enron.com
## 6773 92808 9185 TO jeffrey.hodge@enron.com
## 6774 92809 9186 TO paul.simons@enron.com
## 6775 92810 9187 TO david.forster@enron.com
## 6776 92811 9188 TO enrononline@ect.enron.com
## 6777 92812 9189 TO tana.jones@enron.com
## 6778 92813 9190 TO gilbergd@sullcrom.com
## 6779 92814 9191 TO tana.jones@enron.com
## 6780 92815 9192 TO carol.clair@enron.com
## 6781 92816 9193 TO tana.jones@enron.com
## 6782 92817 9194 TO david.forster@enron.com
## 6783 92818 9194 CC elena.kapralova@enron.com
## 6784 92819 9194 CC bob.shults@enron.com
## 6785 92820 9194 CC marcello.romano@enron.com
## 6786 92821 9194 CC mark.dilworth@enron.com
## 6787 92822 9194 BCC elena.kapralova@enron.com
## 6788 92823 9194 BCC bob.shults@enron.com
## 6789 92824 9194 BCC marcello.romano@enron.com
## 6790 92825 9194 BCC mark.dilworth@enron.com
## 6791 92826 9195 TO louise.kitchen@enron.com
## 6792 92827 9195 CC tana.jones@enron.com
## 6793 92828 9195 CC debbie.brackett@enron.com
## 6794 92829 9195 CC william.bradford@enron.com
## 6795 92830 9195 CC david.port@enron.com
## 6796 92831 9195 CC bob.shults@enron.com
## 6797 92832 9195 CC david.forster@enron.com
## 6798 92833 9195 CC sara.shackleton@enron.com
## 6799 92834 9195 BCC tana.jones@enron.com
## 6800 92835 9195 BCC debbie.brackett@enron.com
## 6801 92836 9195 BCC william.bradford@enron.com
## 6802 92837 9195 BCC david.port@enron.com
## 6803 92838 9195 BCC bob.shults@enron.com
## 6804 92839 9195 BCC david.forster@enron.com
## 6805 92840 9195 BCC sara.shackleton@enron.com
## 6806 92841 9196 TO lou.stoler@enron.com
## 6807 92842 9197 TO shari.stack@enron.com
## 6808 92843 9198 TO elizabeth.sager@enron.com
## 6809 92844 9199 TO shari.stack@enron.com
## 6810 92845 9200 TO margaret_doucette@ei.enron.com
## 6811 92846 9200 CC francisco.leite@enron.com
## 6812 92847 9200 BCC francisco.leite@enron.com
## 6813 92848 9201 TO stephanie.balette@enron.com
## 6814 92849 9202 TO carol.clair@enron.com
## 6815 92850 9203 TO dale.neuner@enron.com
## 6816 92851 9204 TO dale.neuner@enron.com
## 6817 92852 9204 CC elizabeth.sager@enron.com
## 6818 92853 9204 CC david.minns@enron.com
## 6819 92854 9204 CC susan.bailey@enron.com
## 6820 92855 9204 CC casey.evans@enron.com
## 6821 92856 9204 CC patricia.cini@enron.com
## 6822 92857 9204 CC jefferson.sorenson@enron.com
## 6823 92858 9204 BCC elizabeth.sager@enron.com
## 6824 92859 9204 BCC david.minns@enron.com
## 6825 92860 9204 BCC susan.bailey@enron.com
## 6826 92861 9204 BCC casey.evans@enron.com
## 6827 92862 9204 BCC patricia.cini@enron.com
## 6828 92863 9204 BCC jefferson.sorenson@enron.com
## 6829 92864 9205 TO rahil.jafry@enron.com
## 6830 92865 9205 CC justin.boyd@enron.com
## 6831 92866 9205 CC louise.kitchen@enron.com
## 6832 92867 9205 CC david.forster@enron.com
## 6833 92868 9205 BCC justin.boyd@enron.com
## 6834 92869 9205 BCC louise.kitchen@enron.com
## 6835 92870 9205 BCC david.forster@enron.com
## 6836 92871 9206 TO karen.lambert@enron.com
## 6837 92872 9207 TO jennifer.denny@enron.com
## 6838 92873 9207 CC david.forster@enron.com
## 6839 92874 9207 BCC david.forster@enron.com
## 6840 92875 9208 TO carol.clair@enron.com
## 6841 92876 9209 TO jeffrey.keeler@enron.com
## 6842 92877 9210 TO taffy.milligan@enron.com
## 6843 92878 9211 TO brent.hendry@enron.com
## 6844 92879 9212 TO alan.aronowitz@enron.com
## 6845 92880 9212 TO david.minns@enron.com
## 6846 92881 9213 TO david.forster@enron.com
## 6847 92882 9213 CC jennifer.denny@enron.com
## 6848 92883 9213 BCC jennifer.denny@enron.com
## 6849 92884 9214 TO taffy.milligan@enron.com
## 6850 92885 9215 TO justin.boyd@enron.com
## 6851 92886 9215 TO edmund.cooper@enron.com
## 6852 92887 9216 TO susan.flynn@enron.com
## 6853 92888 9217 TO marc.r.cutler@bankofamerica.com
## 6854 92889 9218 TO shari.stack@enron.com
## 6855 92890 9219 TO larry.hunter@enron.com
## 6856 92891 9219 CC dale.neuner@enron.com
## 6857 92892 9219 BCC dale.neuner@enron.com
## 6858 92893 9220 TO susan.flynn@enron.com
## 6859 92894 9220 CC taffy.milligan@enron.com
## 6860 92895 9220 BCC taffy.milligan@enron.com
## 6861 92896 9221 TO tana.jones@enron.com
## 6862 92897 9222 TO louise.kitchen@enron.com
## 6863 92898 9222 CC awais.omar@enron.com
## 6864 92899 9222 CC gilbergd@sullcrom.com
## 6865 92900 9222 BCC awais.omar@enron.com
## 6866 92901 9222 BCC gilbergd@sullcrom.com
## 6867 92902 9223 TO susan.flynn@enron.com
## 6868 92903 9224 TO stacy.dickson@enron.com
## 6869 92904 9224 CC debbie.brackett@enron.com
## 6870 92905 9224 CC jeffrey.hodge@enron.com
## 6871 92906 9224 BCC debbie.brackett@enron.com
## 6872 92907 9224 BCC jeffrey.hodge@enron.com
## 6873 92908 9225 TO christian.yoder@enron.com
## 6874 92909 9225 CC christian.yoder@enron.com
## 6875 92910 9225 CC elizabeth.sager@enron.com
## 6876 92911 9225 BCC christian.yoder@enron.com
## 6877 92912 9225 BCC elizabeth.sager@enron.com
## 6878 92913 9226 TO taffy.milligan@enron.com
## 6879 92914 9227 TO david.forster@enron.com
## 6880 92915 9228 TO michael.corbally@enron.com
## 6881 92916 9229 TO suzanne.adams@enron.com
## 6882 92917 9230 TO rod.nelson@enron.com
## 6883 92918 9231 TO lucy.ortiz@enron.com
## 6884 92919 9232 TO paul.goddard@enron.com
## 6885 92920 9232 CC kal.shah@enron.com
## 6886 92921 9232 CC justin.boyd@enron.com
## 6887 92922 9232 CC louise.kitchen@enron.com
## 6888 92923 9232 CC david.forster@enron.com
## 6889 92924 9232 CC marcello.romano@enron.com
## 6890 92925 9232 CC gilbergd@sullcrom.com
## 6891 92926 9232 BCC kal.shah@enron.com
## 6892 92927 9232 BCC justin.boyd@enron.com
## 6893 92928 9232 BCC louise.kitchen@enron.com
## 6894 92929 9232 BCC david.forster@enron.com
## 6895 92930 9232 BCC marcello.romano@enron.com
## 6896 92931 9232 BCC gilbergd@sullcrom.com
## 6897 92932 9233 TO sara.shackleton@enron.com
## 6898 92933 9234 TO tana.jones@enron.com
## 6899 92934 9235 TO tana.jones@enron.com
## 6900 92935 9236 TO david.forster@enron.com
## 6901 92936 9237 TO mzeleanor@juno.com
## 6902 92937 9238 TO brent.hendry@enron.com
## 6903 92938 9238 TO sara.shackleton@enron.com
## 6904 92939 9238 TO carol.clair@enron.com
## 6905 92940 9238 TO shari.stack@enron.com
## 6906 92941 9238 TO marie.heard@enron.com
## 6907 92942 9238 TO tana.jones@enron.com
## 6908 92943 9238 TO susan.flynn@enron.com
## 6909 92944 9238 TO susan.bailey@enron.com
## 6910 92945 9239 TO suzanne.adams@enron.com
## 6911 92946 9240 TO tana.jones@enron.com
## 6912 92947 9241 TO frank.davis@enron.com
## 6913 92948 9242 TO david.forster@enron.com
## 6914 92949 9243 TO elizabeth.sager@enron.com
## 6915 92950 9244 TO taffy.milligan@enron.com
## 6916 92951 9245 TO mark.dilworth@enron.com
## 6917 92952 9245 CC jefferson.sorenson@enron.com
## 6918 92953 9245 CC dale.neuner@enron.com
## 6919 92954 9245 CC bob.bowen@enron.com
## 6920 92955 9245 CC lynn.shivers@enron.com
## 6921 92956 9245 CC kevin.sweeney@enron.com
## 6922 92957 9245 BCC jefferson.sorenson@enron.com
## 6923 92958 9245 BCC dale.neuner@enron.com
## 6924 92959 9245 BCC bob.bowen@enron.com
## 6925 92960 9245 BCC lynn.shivers@enron.com
## 6926 92961 9245 BCC kevin.sweeney@enron.com
## 6927 92962 9246 TO david.forster@enron.com
## 6928 92963 9247 TO barton.clark@enron.com
## 6929 92964 9248 TO david.forster@enron.com
## 6930 92965 9249 TO alan.aronowitz@enron.com
## 6931 92966 9249 TO barton.clark@enron.com
## 6932 92967 9249 TO harry.collins@enron.com
## 6933 92968 9249 TO stacy.dickson@enron.com
## 6934 92969 9249 TO wayne.gresham@enron.com
## 6935 92970 9249 TO leslie.hansen@enron.com
## 6936 92971 9249 TO jeffrey.hodge@enron.com
## 6937 92972 9249 TO dan.hyvl@enron.com
## 6938 92973 9249 TO monica.jordan@enron.com
## 6939 92974 9249 TO janice.moore@enron.com
## 6940 92975 9249 TO david.portz@enron.com
## 6941 92976 9249 TO elizabeth.sager@enron.com
## 6942 92977 9249 TO sara.shackleton@enron.com
## 6943 92978 9249 TO shari.stack@enron.com
## 6944 92979 9249 TO carol.clair@enron.com
## 6945 92980 9249 TO susan.bailey@enron.com
## 6946 92981 9249 TO genia.fitzgerald@enron.com
## 6947 92982 9249 TO susan.flynn@enron.com
## 6948 92983 9249 TO marie.heard@enron.com
## 6949 92984 9249 TO nony.flores@enron.com
## 6950 92985 9249 TO debra.perlingiere@enron.com
## 6951 92986 9249 TO tana.jones@enron.com
## 6952 92987 9249 CC mark.dilworth@enron.com
## 6953 92988 9249 BCC mark.dilworth@enron.com
## 6954 92989 9250 TO ginny@travelpark.com
## 6955 92990 9251 TO david.forster@enron.com
## 6956 92991 9252 TO mark.dilworth@enron.com
## 6957 92992 9253 TO fiona.lavelle@enron.com
## 6958 92993 9254 TO mark.dilworth@enron.com
## 6959 92994 9255 TO marcello.romano@enron.com
## 6960 92995 9255 TO david.forster@enron.com
## 6961 92996 9256 TO bob.bowen@enron.com
## 6962 92997 9256 CC dale.neuner@enron.com
## 6963 92998 9256 CC jefferson.sorenson@enron.com
## 6964 92999 9256 CC brent.hendry@enron.com
## 6965 93000 9256 CC sara.shackleton@enron.com
## 6966 93001 9256 CC carol.clair@enron.com
## 6967 93002 9256 CC shari.stack@enron.com
## 6968 93003 9256 CC marie.heard@enron.com
## 6969 93004 9256 CC tana.jones@enron.com
## 6970 93005 9256 CC susan.flynn@enron.com
## 6971 93006 9256 CC susan.bailey@enron.com
## 6972 93007 9256 BCC dale.neuner@enron.com
## 6973 93008 9256 BCC jefferson.sorenson@enron.com
## 6974 93009 9256 BCC brent.hendry@enron.com
## 6975 93010 9256 BCC sara.shackleton@enron.com
## 6976 93011 9256 BCC carol.clair@enron.com
## 6977 93012 9256 BCC shari.stack@enron.com
## 6978 93013 9256 BCC marie.heard@enron.com
## 6979 93014 9256 BCC tana.jones@enron.com
## 6980 93015 9256 BCC susan.flynn@enron.com
## 6981 93016 9256 BCC susan.bailey@enron.com
## 6982 93017 9257 TO justin.boyd@enron.com
## 6983 93018 9257 TO edmund.cooper@enron.com
## 6984 93019 9257 CC tana.jones@enron.com
## 6985 93020 9257 BCC tana.jones@enron.com
## 6986 93021 9258 TO michael.corbally@enron.com
## 6987 93022 9259 TO david.forster@enron.com
## 6988 93023 9260 TO tana.jones@enron.com
## 6989 93024 9261 TO shari.stack@enron.com
## 6990 93025 9261 CC rbaird@velaw.com
## 6991 93026 9261 BCC rbaird@velaw.com
## 6992 93027 9262 TO marcello.romano@enron.com
## 6993 93028 9263 TO shari.stack@enron.com
## 6994 93029 9263 CC janet.moore@enron.com
## 6995 93030 9263 BCC janet.moore@enron.com
## 6996 93031 9264 TO carol.clair@enron.com
## 6997 93032 9265 TO marie.heard@enron.com
## 6998 93033 9265 CC barbara.gray@enron.com
## 6999 93034 9265 BCC barbara.gray@enron.com
## 7000 93035 9266 TO mark.dilworth@enron.com
## 7001 93036 9267 TO shari.stack@enron.com
## 7002 93037 9268 TO shari.stack@enron.com
## 7003 93038 9269 TO paige.grumulaitis@enron.com
## 7004 93039 9270 TO ewatson@skadden.com
## 7005 93040 9271 TO mitch.enron@enron.com
## 7006 93041 9272 TO cindy.shaffer@enron.com
## 7007 93042 9273 TO louise.kitchen@enron.com
## 7008 93043 9274 TO tara.sweitzer@enron.com
## 7009 93044 9275 TO paige.grumulaitis@enron.com
## 7010 93045 9275 CC e..haedicke@enron.com
## 7011 93046 9275 BCC e..haedicke@enron.com
## 7012 93047 9276 TO tana.jones@enron.com
## 7013 93048 9277 TO tracy.ramsey@enron.com
## 7014 93049 9278 TO marc.r.cutler@bankamerica.com
## 7015 93050 9279 TO tana.jones@enron.com
## 7016 93051 9280 TO alan.aronowitz@enron.com
## 7017 93052 9280 TO stacy.dickson@enron.com
## 7018 93053 9280 TO leslie.hansen@enron.com
## 7019 93054 9280 CC mark.dilworth@enron.com
## 7020 93055 9280 BCC mark.dilworth@enron.com
## 7021 93056 9281 TO louise.kitchen@enron.com
## 7022 93057 9282 TO mark.dilworth@enron.com
## 7023 93058 9283 TO mark.dilworth@enron.com
## 7024 93059 9283 CC marcello.romano@enron.com
## 7025 93060 9283 CC david.forster@enron.com
## 7026 93061 9283 BCC marcello.romano@enron.com
## 7027 93062 9283 BCC david.forster@enron.com
## 7028 93063 9284 TO louise.kitchen@enron.com
## 7029 93064 9284 TO michael.corbally@enron.com
## 7030 93065 9284 CC justin.boyd@enron.com
## 7031 93066 9284 CC edmund.cooper@enron.com
## 7032 93067 9284 CC steven.vu@enron.com
## 7033 93068 9284 CC jeff.blumenthal@enron.com
## 7034 93069 9284 CC shari.stack@enron.com
## 7035 93070 9284 CC marcello.romano@enron.com
## 7036 93071 9284 BCC justin.boyd@enron.com
## 7037 93072 9284 BCC edmund.cooper@enron.com
## 7038 93073 9284 BCC steven.vu@enron.com
## 7039 93074 9284 BCC jeff.blumenthal@enron.com
## 7040 93075 9284 BCC shari.stack@enron.com
## 7041 93076 9284 BCC marcello.romano@enron.com
## 7042 93077 9285 TO mark.e.taylor@enron.com
## 7043 93078 9286 TO jcoelho@callnet.com.br
## 7044 93079 9287 TO louise.kitchen@enron.com
## 7045 93080 9288 TO gilbergd@sullcrom.com
## 7046 93081 9288 TO raislerk@sullcrom.com
## 7047 93082 9289 TO rbaird@velaw.com
## 7048 93083 9290 TO jeffrey.hodge@enron.com
## 7049 93084 9290 TO alan.aronowitz@enron.com
## 7050 93085 9290 TO stacy.dickson@enron.com
## 7051 93086 9290 TO elizabeth.sager@enron.com
## 7052 93087 9290 TO janice.moore@enron.com
## 7053 93088 9290 TO michael.robison@enron.com
## 7054 93089 9290 TO leslie.hansen@enron.com
## 7055 93090 9290 TO wayne.gresham@enron.com
## 7056 93091 9290 TO harry.collins@enron.com
## 7057 93092 9290 CC mark.dilworth@enron.com
## 7058 93093 9290 CC louise.kitchen@enron.com
## 7059 93094 9290 CC marcello.romano@enron.com
## 7060 93095 9290 BCC mark.dilworth@enron.com
## 7061 93096 9290 BCC louise.kitchen@enron.com
## 7062 93097 9290 BCC marcello.romano@enron.com
## 7063 93098 9291 TO justin.boyd@enron.com
## 7064 93099 9292 TO cindy.shaffer@enron.com
## 7065 93100 9293 TO ted.murphy@enron.com
## 7066 93101 9294 TO bhanlon@isda.org
## 7067 93102 9295 TO taffy.milligan@enron.com
## 7068 93103 9296 TO tana.jones@enron.com
## 7069 93104 9297 TO tana.jones@enron.com
## 7070 93105 9298 TO tana.jones@enron.com
## 7071 93106 9299 TO tana.jones@enron.com
## 7072 93107 9300 TO marcus.polach@enron.com
## 7073 93108 9301 TO yao.apasu@enron.com
## 7074 93109 9302 TO sara.shackleton@enron.com
## 7075 93110 9302 TO carol.clair@enron.com
## 7076 93111 9303 TO brent.hendry@enron.com
## 7077 93112 9304 TO andrew.thomas@enron.com
## 7078 93113 9305 TO onepass@opsc.flycontinental.com
## 7079 93114 9306 TO marc.r.cutler@bankofamerica.com
## 7080 93115 9307 TO gilbergd@sullcrom.com
## 7081 93116 9308 TO kim.zachary@enron.com
## 7082 93117 9308 CC lawrence.lawyer@enron.com
## 7083 93118 9308 CC janet.moore@enron.com
## 7084 93119 9308 BCC lawrence.lawyer@enron.com
## 7085 93120 9308 BCC janet.moore@enron.com
## 7086 93121 9309 TO marc.r.cutler@bankofamerica.com
## 7087 93122 9310 TO marc.r.cutler@bankamerica.com
## 7088 93123 9311 TO laurel.adams@enron.com
## 7089 93124 9312 TO taffy.milligan@enron.com
## 7090 93125 9313 TO carol.clair@enron.com
## 7091 93126 9314 TO carol.clair@enron.com
## 7092 93127 9315 TO carol.clair@enron.com
## 7093 93128 9316 TO taffy.milligan@enron.com
## 7094 93129 9317 TO shari.stack@enron.com
## 7095 93130 9318 TO susan.flynn@enron.com
## 7096 93131 9318 CC tanya.rohauer@enron.com
## 7097 93132 9318 BCC tanya.rohauer@enron.com
## 7098 93133 9319 TO ted.bockius@compaq.com
## 7099 93134 9320 TO marcus.polach@enron.com
## 7100 93135 9321 TO taffy.milligan@enron.com
## 7101 93136 9322 TO sara.shackleton@enron.com
## 7102 93137 9323 TO brent.enron@enron.com
## 7103 93138 9324 TO mitch.enron@enron.com
## 7104 93139 9325 TO gpier@doubleclick.net
## 7105 93140 9326 TO brent.enron@enron.com
## 7106 93141 9327 TO raislerk@sullcrom.com
## 7107 93142 9327 TO gilbergd@sullcrom.com
## 7108 93143 9328 TO jeff.blumenthal@enron.com
## 7109 93144 9329 TO don.black@enron.com
## 7110 93145 9330 TO alan.aronowitz@enron.com
## 7111 93146 9330 TO harry.collins@enron.com
## 7112 93147 9330 TO stacy.dickson@enron.com
## 7113 93148 9330 TO wayne.gresham@enron.com
## 7114 93149 9330 TO leslie.hansen@enron.com
## 7115 93150 9330 TO jeffrey.hodge@enron.com
## 7116 93151 9330 TO janice.moore@enron.com
## 7117 93152 9330 TO michael.robison@enron.com
## 7118 93153 9330 TO elizabeth.sager@enron.com
## 7119 93154 9331 TO justin.boyd@enron.com
## 7120 93155 9332 TO gilbergd@sullcrom.com
## 7121 93156 9333 TO tana.jones@enron.com
## 7122 93157 9334 TO tana.jones@enron.com
## 7123 93158 9335 TO raislerk@sullcrom.com
## 7124 93159 9335 TO giblergd@sullcrom.com
## 7125 93160 9336 TO tracy.foy@enron.com
## 7126 93161 9337 TO louise.kitchen@enron.com
## 7127 93162 9338 TO louise.kitchen@enron.com
## 7128 93163 9339 TO tana.jones@enron.com
## 7129 93164 9340 TO justin.boyd@enron.com
## 7130 93165 9340 TO timothy.hughes@cliffordchance.com
## 7131 93166 9341 TO alan.aronowitz@enron.com
## 7132 93167 9341 TO harry.collins@enron.com
## 7133 93168 9341 TO stacy.dickson@enron.com
## 7134 93169 9341 TO leslie.hansen@enron.com
## 7135 93170 9341 TO jeffrey.hodge@enron.com
## 7136 93171 9341 TO janice.moore@enron.com
## 7137 93172 9341 TO michael.robison@enron.com
## 7138 93173 9341 TO elizabeth.sager@enron.com
## 7139 93174 9342 TO jeffrey.hodge@enron.com
## 7140 93175 9343 TO alan.aronowitz@enron.com
## 7141 93176 9343 TO harry.collins@enron.com
## 7142 93177 9343 TO stacy.dickson@enron.com
## 7143 93178 9343 TO leslie.hansen@enron.com
## 7144 93179 9343 TO jeffrey.hodge@enron.com
## 7145 93180 9343 TO janice.moore@enron.com
## 7146 93181 9343 TO michael.robison@enron.com
## 7147 93182 9343 TO elizabeth.sager@enron.com
## 7148 93183 9344 TO harry.collins@enron.com
## 7149 93184 9344 CC alan.aronowitz@enron.com
## 7150 93185 9344 BCC alan.aronowitz@enron.com
## 7151 93186 9345 TO raislerk@sullcrom.com
## 7152 93187 9345 TO gilbergd@sullcrom.com
## 7153 93188 9346 TO alan.aronowitz@enron.com
## 7154 93189 9346 TO janice.moore@enron.com
## 7155 93190 9347 TO taffy.milligan@enron.com
## 7156 93191 9348 TO taffy.milligan@enron.com
## 7157 93192 9349 TO timothy.taylor@apg.amedd.army.mil
## 7158 93193 9350 TO sara.shackleton@enron.com
## 7159 93194 9351 TO tbockius@aol.com
## 7160 93195 9352 TO taffy.milligan@enron.com
## 7161 93196 9353 TO janice.moore@enron.com
## 7162 93197 9354 TO raislerk@sullcrom.com
## 7163 93198 9354 TO gilbergd@sullcrom.com
## 7164 93199 9355 TO timothy.taylor@apg.amedd.army.mil
## 7165 93200 9356 TO timothy.taylor@apg.amedd.army.mil
## 7166 93201 9357 TO sara.shackleton@enron.com
## 7167 93202 9358 TO carrd2@tdcibg.com
## 7168 93203 9358 CC jung-suk.suh@enron.com
## 7169 93204 9358 BCC jung-suk.suh@enron.com
## 7170 93205 9359 TO rod.nelson@enron.com
## 7171 93206 9360 TO jeffrey.hodge@enron.com
## 7172 93207 9361 TO rod.nelson@enron.com
## 7173 93208 9361 TO sara.shackleton@enron.com
## 7174 93209 9361 TO shari.stack@enron.com
## 7175 93210 9361 CC tanya.rohauer@enron.com
## 7176 93211 9361 CC susan.bailey@enron.com
## 7177 93212 9361 CC susan.flynn@enron.com
## 7178 93213 9361 CC marie.heard@enron.com
## 7179 93214 9361 CC tana.jones@enron.com
## 7180 93215 9361 CC carol.clair@enron.com
## 7181 93216 9361 CC justin.boyd@enron.com
## 7182 93217 9361 CC mark.elliott@enron.com
## 7183 93218 9361 CC paul.simons@enron.com
## 7184 93219 9361 BCC tanya.rohauer@enron.com
## 7185 93220 9361 BCC susan.bailey@enron.com
## 7186 93221 9361 BCC susan.flynn@enron.com
## 7187 93222 9361 BCC marie.heard@enron.com
## 7188 93223 9361 BCC tana.jones@enron.com
## 7189 93224 9361 BCC carol.clair@enron.com
## 7190 93225 9361 BCC justin.boyd@enron.com
## 7191 93226 9361 BCC mark.elliott@enron.com
## 7192 93227 9361 BCC paul.simons@enron.com
## 7193 93228 9362 TO taffy.milligan@enron.com
## 7194 93229 9363 TO gilbergd@sullcrom.com
## 7195 93230 9364 TO raislerk@sullcrom.com
## 7196 93231 9364 TO gilbergd@sullcrom.com
## 7197 93232 9364 CC justin.boyd@enron.com
## 7198 93233 9364 CC scott.sefton@enron.com
## 7199 93234 9364 CC louise.kitchen@enron.com
## 7200 93235 9364 BCC justin.boyd@enron.com
## 7201 93236 9364 BCC scott.sefton@enron.com
## 7202 93237 9364 BCC louise.kitchen@enron.com
## 7203 93238 9365 TO raislerk@sullcrom.com
## 7204 93239 9365 TO gilbergd@aullcrom.com
## 7205 93240 9366 TO marc.r.cutler@bankofamerica.com
## 7206 93241 9367 TO marc.r.cutler@bankofamerica.com
## 7207 93242 9368 TO tracy.foy@enron.com
## 7208 93243 9369 TO tracy.foy@enron.com
## 7209 93244 9370 TO robina.barker-bennett@enron.com
## 7210 93245 9370 CC shari.stack@enron.com
## 7211 93246 9370 BCC shari.stack@enron.com
## 7212 93247 9371 TO louise.kitchen@enron.com
## 7213 93248 9371 TO david.port@enron.com
## 7214 93249 9371 CC william.bradford@enron.com
## 7215 93250 9371 BCC william.bradford@enron.com
## 7216 93251 9372 TO alan.aronowitz@enron.com
## 7217 93252 9373 TO louise.kitchen@enron.com
## 7218 93253 9374 TO sara.shackleton@enron.com
## 7219 93254 9375 TO raislerk@sullcrom.com
## 7220 93255 9375 TO gilbergd@sullcrom.com
## 7221 93256 9376 TO marie.heard@enron.com
## 7222 93257 9377 TO geoffrey.allen@enron.com
## 7223 93258 9378 TO benedikt.messner@enron.com
## 7224 93259 9379 TO shari.stack@enron.com
## 7225 93260 9380 TO mark.elliott@enron.com
## 7226 93261 9380 TO paul.simons@enron.com
## 7227 93262 9380 TO justin.boyd@enron.com
## 7228 93263 9380 TO scott.sefton@enron.com
## 7229 93264 9381 TO sylvia.sauseda@enron.com
## 7230 93265 9382 TO gilbergd@sullcrom.com
## 7231 93266 9382 TO raislerk@sullcrom.com
## 7232 93267 9383 TO brent.hendry@enron.com
## 7233 93268 9383 TO andrea.calo@enron.com
## 7234 93269 9384 TO tbockius@aol.com
## 7235 93270 9385 TO susan.flynn@enron.com
## 7236 93271 9385 CC taffy.milligan@enron.com
## 7237 93272 9385 BCC taffy.milligan@enron.com
## 7238 93273 9386 TO marie.heard@enron.com
## 7239 93274 9387 TO tracy.foy@enron.com
## 7240 93275 9387 CC justin.boyd@enron.com
## 7241 93276 9387 BCC justin.boyd@enron.com
## 7242 93277 9388 TO elena.kapralova@enron.com
## 7243 93278 9388 CC rahil.jafry@enron.com
## 7244 93279 9388 CC louise.kitchen@enron.com
## 7245 93280 9388 CC marcello.romano@enron.com
## 7246 93281 9388 CC paul.goddard@enron.com
## 7247 93282 9388 CC justin.boyd@enron.com
## 7248 93283 9388 CC gary.foster@enron.com
## 7249 93284 9388 BCC rahil.jafry@enron.com
## 7250 93285 9388 BCC louise.kitchen@enron.com
## 7251 93286 9388 BCC marcello.romano@enron.com
## 7252 93287 9388 BCC paul.goddard@enron.com
## 7253 93288 9388 BCC justin.boyd@enron.com
## 7254 93289 9388 BCC gary.foster@enron.com
## 7255 93290 9389 TO raislerk@sullcrom.com
## 7256 93291 9389 TO gilbergd@sullcrom.com
## 7257 93292 9390 TO marc.r.cutler@bankamerica.com
## 7258 93293 9391 TO sara.shackleton@enron.com
## 7259 93294 9391 TO carol.clair@enron.com
## 7260 93295 9391 TO shari.stack@enron.com
## 7261 93296 9391 TO susan.flynn@enron.com
## 7262 93297 9391 TO marie.heard@enron.com
## 7263 93298 9391 TO tana.jones@enron.com
## 7264 93299 9392 TO shari.stack@enron.com
## 7265 93300 9393 TO kenneth.enron@enron.com
## 7266 93301 9394 TO susan.bailey@enron.com
## 7267 93302 9394 CC taffy.milligan@enron.com
## 7268 93303 9394 BCC taffy.milligan@enron.com
## 7269 93304 9395 TO kenneth.enron@enron.com
## 7270 93305 9396 TO kenneth.enron@enron.com
## 7271 93306 9397 TO louise.kitchen@enron.com
## 7272 93307 9398 TO martin.rosell@enron.com
## 7273 93308 9399 TO david.mally@enron.com
## 7274 93309 9399 CC louise.kitchen@enron.com
## 7275 93310 9399 CC david.port@enron.com
## 7276 93311 9399 BCC louise.kitchen@enron.com
## 7277 93312 9399 BCC david.port@enron.com
## 7278 93313 9400 TO david.mally@enron.com
## 7279 93314 9400 CC louise.kitchen@enron.com
## 7280 93315 9400 CC david.port@enron.com
## 7281 93316 9400 BCC louise.kitchen@enron.com
## 7282 93317 9400 BCC david.port@enron.com
## 7283 93318 9401 TO raislerk@sullcrom.com
## 7284 93319 9401 TO gilbergd@sullcrom.com
## 7285 93320 9402 TO martin.rosell@enron.com
## 7286 93321 9402 CC paul.simons@enron.com
## 7287 93322 9402 CC edmund.cooper@enron.com
## 7288 93323 9402 CC scott.sefton@enron.com
## 7289 93324 9402 CC justin.boyd@enron.com
## 7290 93325 9402 CC mark.elliott@enron.com
## 7291 93326 9402 BCC paul.simons@enron.com
## 7292 93327 9402 BCC edmund.cooper@enron.com
## 7293 93328 9402 BCC scott.sefton@enron.com
## 7294 93329 9402 BCC justin.boyd@enron.com
## 7295 93330 9402 BCC mark.elliott@enron.com
## 7296 93331 9403 TO martin.rosell@enron.com
## 7297 93332 9404 TO louise.kitchen@enron.com
## 7298 93333 9405 TO tracy.foy@enron.com
## 7299 93334 9406 TO legal.2@enron.com
## 7300 93335 9407 TO Mark EI.London Taylor@Enron
## 7301 93336 9408 TO Mark EI.London Taylor@Enron
## 7302 93337 9409 TO gilbergd@sullcrom.com
## 7303 93338 9410 TO jeffrey.keeler@enron.com
## 7304 93339 9410 CC e..haedicke@enron.com
## 7305 93340 9410 BCC e..haedicke@enron.com
## 7306 93341 9411 TO sylvia.sauseda@enron.com
## 7307 93342 9412 TO louise.kitchen@enron.com
## 7308 93343 9412 CC justin.boyd@enron.com
## 7309 93344 9412 CC scott.sefton@enron.com
## 7310 93345 9412 BCC justin.boyd@enron.com
## 7311 93346 9412 BCC scott.sefton@enron.com
## 7312 93347 9413 TO asmythe@isda.org
## 7313 93348 9414 TO louise.kitchen@enron.com
## 7314 93349 9415 TO asmythe@isda.org
## 7315 93350 9416 TO asmythe@isda.org
## 7316 93351 9417 TO kdleitao@llgm.com
## 7317 93352 9418 TO kaye.ellis@enron.com
## 7318 93353 9419 TO louise.kitchen@enron.com
## 7319 93354 9420 TO sara.shackleton@enron.com
## 7320 93355 9421 TO andrea_bertone@ei.enron.com
## 7321 93356 9421 CC bhendry@ei.enron.com
## 7322 93357 9421 CC robert_h_george@ei.enron.com
## 7323 93358 9421 BCC bhendry@ei.enron.com
## 7324 93359 9421 BCC robert_h_george@ei.enron.com
## 7325 93360 9422 TO kdleitao@llgm.com
## 7326 93361 9423 TO marc.r.cutler@bankamerica.com
## 7327 93362 9424 TO justin.boyd@enron.com
## 7328 93363 9425 TO marc.r.cutler@bankamerica.com
## 7329 93364 9426 TO kdleitao@llgm.com
## 7330 93365 9427 TO kdleitau@llgm.com
## 7331 93366 9428 TO timothy.taylor@apg.amedd.army.mil
## 7332 93367 9429 TO christian.yoder@enron.com
## 7333 93368 9430 TO christian.yoder@enron.com
## 7334 93369 9431 TO richard.weeks@enron.com
## 7335 93370 9431 CC sylvia.sauseda@enron.com
## 7336 93371 9431 CC legal.2@enron.com
## 7337 93372 9431 BCC sylvia.sauseda@enron.com
## 7338 93373 9431 BCC legal.2@enron.com
## 7339 93374 9432 TO brent.hendry@enron.com
## 7340 93375 9432 TO sara.shackleton@enron.com
## 7341 93376 9432 TO carol.clair@enron.com
## 7342 93377 9432 TO shari.stack@enron.com
## 7343 93378 9432 TO marie.heard@enron.com
## 7344 93379 9432 TO tana.jones@enron.com
## 7345 93380 9432 TO susan.flynn@enron.com
## 7346 93381 9432 TO susan.bailey@enron.com
## 7347 93382 9433 TO susan.bailey@enron.com
## 7348 93383 9434 TO brent.hendry@enron.com
## 7349 93384 9434 TO sara.shackleton@enron.com
## 7350 93385 9434 TO carol.clair@enron.com
## 7351 93386 9434 TO shari.stack@enron.com
## 7352 93387 9434 TO marie.heard@enron.com
## 7353 93388 9434 TO tana.jones@enron.com
## 7354 93389 9434 TO susan.flynn@enron.com
## 7355 93390 9435 TO marc.r.cutler@bankamerica.com
## 7356 93391 9436 TO marc.r.cutler@bankamerica.com
## 7357 93392 9437 TO justin.boyd@enron.com
## 7358 93393 9438 TO elizabeth.sager@enron.com
## 7359 93394 9439 TO gilbergd@sullcrom.com
## 7360 93395 9440 TO brent.hendry@enron.com
## 7361 93396 9440 TO andrea.calo@enron.com
## 7362 93397 9441 TO raislerk@sullcrom.com
## 7363 93398 9441 TO gilberd@sullcrom.com
## 7364 93399 9442 TO justin.boyd@enron.com
## 7365 93400 9443 TO justin.boyd@enron.com
## 7366 93401 9444 TO legal.2@enron.com
## 7367 93402 9445 TO thomas.gros@enron.com
## 7368 93403 9446 TO christian.yoder@enron.com
## 7369 93404 9447 TO paul.simons@enron.com
## 7370 93405 9448 TO javier.espinoza@enron.com
## 7371 93406 9449 TO louise.kitchen@enron.com
## 7372 93407 9450 TO tana.jones@enron.com
## 7373 93408 9450 CC susan.bailey@enron.com
## 7374 93409 9450 BCC susan.bailey@enron.com
## 7375 93410 9451 TO becky.tlucek@enron.com
## 7376 93411 9452 TO carol.clair@enron.com
## 7377 93412 9453 TO becky.tlucek@enron.com
## 7378 93413 9454 TO raislerk@sullcrom.com
## 7379 93414 9455 TO proyacht@aol.com
## 7380 93415 9456 TO carol.clair@enron.com
## 7381 93416 9456 CC legal.2@enron.com
## 7382 93417 9456 BCC legal.2@enron.com
## 7383 93418 9457 TO deb.gebhardt@enron.com
## 7384 93419 9458 TO janice.moore@enron.com
## 7385 93420 9458 CC elizabeth.sager@enron.com
## 7386 93421 9458 CC sara.shackleton@enron.com
## 7387 93422 9458 CC david.terlip@enron.com
## 7388 93423 9458 BCC elizabeth.sager@enron.com
## 7389 93424 9458 BCC sara.shackleton@enron.com
## 7390 93425 9458 BCC david.terlip@enron.com
## 7391 93426 9459 TO brent.hendry@enron.com
## 7392 93427 9459 TO sara.shackleton@enron.com
## 7393 93428 9459 TO carol.clair@enron.com
## 7394 93429 9459 TO shari.stack@enron.com
## 7395 93430 9460 TO raisler@sullcrom.com
## 7396 93431 9460 TO gilbertd@sullcrom.com
## 7397 93432 9461 TO nony.flores@enron.com
## 7398 93433 9462 TO tana.jones@enron.com
## 7399 93434 9463 TO shari.stack@enron.com
## 7400 93435 9464 TO scott.sefton@enron.com
## 7401 93436 9465 TO michael.kopper@enron.com
## 7402 93437 9466 TO mark.elliott@enron.com
## 7403 93438 9467 TO suzanne.adams@enron.com
## 7404 93439 9468 TO suzanne.adams@enron.com
## 7405 93440 9468 CC dan.lyons@enron.com
## 7406 93441 9468 BCC dan.lyons@enron.com
## 7407 93442 9469 TO vladimir.gorny@enron.com
## 7408 93443 9470 TO thomas.gros@enron.com
## 7409 93444 9471 TO carol.clair@enron.com
## 7410 93445 9471 CC legal.2@enron.com
## 7411 93446 9471 BCC legal.2@enron.com
## 7412 93447 9472 TO marc.r.cutler@bankamerica.com
## 7413 93448 9473 TO marc.r.cutler@bankamerica.com
## 7414 93449 9474 TO e..haedicke@enron.com
## 7415 93450 9475 TO marc.r.cutler@bankamerica.com
## 7416 93451 9476 TO torrey.moorer@enron.com
## 7417 93452 9477 TO sara.shackleton@enron.com
## 7418 93453 9478 TO edward.ondarza@enron.com
## 7419 93454 9478 TO william.bradford@enron.com
## 7420 93455 9479 TO marc.r.cutler@bankamerica.com
## 7421 93456 9480 TO marc.r.cutler@bankamerica.com
## 7422 93457 9481 TO dorice.cheong@enron.com
## 7423 93458 9482 TO dorice.cheong@enron.com
## 7424 93459 9483 TO tana.jones@enron.com
## 7425 93460 9484 TO jbakker@mayerbrown.com
## 7426 93461 9485 TO legal.2@enron.com
## 7427 93462 9486 TO marie.heard@enron.com
## 7428 93463 9487 TO lawrence.lawyer@enron.com
## 7429 93464 9488 TO deb.korkmas@enron.com
## 7430 93465 9489 TO becky.tlucek@enron.com
## 7431 93466 9490 TO gpier@doubleclick.net
## 7432 93467 9491 TO mark.elliott@enron.com
## 7433 93468 9491 CC martin.rosell@enron.com
## 7434 93469 9491 BCC martin.rosell@enron.com
## 7435 93470 9492 TO dmitchel@cwt.com
## 7436 93471 9493 TO martin.rosell@enron.com
## 7437 93472 9494 TO carol.clair@enron.com
## 7438 93473 9495 TO clair.fowler@enron.com
## 7439 93474 9496 TO scott.sefton@enron.com
## 7440 93475 9497 TO christian.yoder@enron.com
## 7441 93476 9498 TO proyacht@aol.com
## 7442 93477 9499 TO lisa.mellencamp@enron.com
## 7443 93478 9499 TO jeffrey.hodge@enron.com
## 7444 93479 9499 TO carol.clair@enron.com
## 7445 93480 9500 TO lisa.mellencamp@enron.com
## 7446 93481 9500 TO carol.clair@enron.com
## 7447 93482 9501 TO marcus.polach@enron.com
## 7448 93483 9502 TO justin.boyd@enron.com
## 7449 93484 9503 TO mark.elliott@enron.com
## 7450 93485 9504 TO Mark EI.London Taylor@Enron
## 7451 93486 9505 TO legal.3@enron.com
## 7452 93487 9506 TO sara.shackleton@enron.com
## 7453 93488 9507 TO yao.apasu@enron.com
## 7454 93489 9508 TO lhayman@skadden.com
## 7455 93490 9509 TO yao.apasu@enron.com
## 7456 93491 9510 TO marcus.polach@enron.com
## 7457 93492 9510 CC paul.simons@enron.com
## 7458 93493 9510 BCC paul.simons@enron.com
## 7459 93494 9511 TO lhayman@skadden.com
## 7460 93495 9511 CC yapasu@ect.enron.com
## 7461 93496 9511 CC amh5h@server2.mail.virginia.edu
## 7462 93497 9511 BCC yapasu@ect.enron.com
## 7463 93498 9511 BCC amh5h@server2.mail.virginia.edu
## 7464 93499 9512 TO susan.flynn@enron.com
## 7465 93500 9512 CC janet.dobernecker@enron.com
## 7466 93501 9512 BCC janet.dobernecker@enron.com
## 7467 93502 9513 TO timothy.taylor@apg.amedd.army.mil
## 7468 93503 9514 TO mark.elliott@enron.com
## 7469 93504 9514 CC jeffrey.hodge@enron.com
## 7470 93505 9514 CC alan.aronowitz@enron.com
## 7471 93506 9514 CC scott.sefton@enron.com
## 7472 93507 9514 BCC jeffrey.hodge@enron.com
## 7473 93508 9514 BCC alan.aronowitz@enron.com
## 7474 93509 9514 BCC scott.sefton@enron.com
## 7475 93510 9515 TO sara.shackleton@enron.com
## 7476 93511 9515 TO elizabeth.sager@enron.com
## 7477 93512 9516 TO lisa.mellencamp@enron.com
## 7478 93513 9517 TO tana.jones@enron.com
## 7479 93514 9518 TO scott.sefton@enron.com
## 7480 93515 9519 TO nony.flores@enron.com
## 7481 93516 9520 TO elizabeth.sager@enron.com
## 7482 93517 9521 TO rzochowski@shearman.com
## 7483 93518 9522 TO rzochowski@shearman.com
## 7484 93519 9523 TO tana.jones@enron.com
## 7485 93520 9524 TO no.address@enron.com
## 7486 93521 9525 TO justin.boyd@enron.com
## 7487 93522 9526 TO justin.boyd@enron.com
## 7488 93523 9527 TO michael.moulton@enron.com
## 7489 93524 9528 TO nony.flores@enron.com
## 7490 93525 9529 TO monica.jordan@enron.com
## 7491 93526 9530 TO carolina.waingortin@enron.com
## 7492 93527 9531 TO brent.hendry@enron.com
## 7493 93528 9532 TO carolina.waingortin@enron.com
## 7494 93529 9533 TO shari.stack@enron.com
## 7495 93530 9534 TO marc.r.cutler@bankamerica.com
## 7496 93531 9535 TO marc.r.cutler@bankamerica.com
## 7497 93532 9536 TO nony.flores@enron.com
## 7498 93533 9536 CC brent.hendry@enron.com
## 7499 93534 9536 BCC brent.hendry@enron.com
## 7500 93535 9537 TO yao.apasu@enron.com
## 7501 93536 9538 TO robert.quick@enron.com
## 7502 93537 9538 CC tana.jones@enron.com
## 7503 93538 9538 CC janet.dobernecker@enron.com
## 7504 93539 9538 BCC tana.jones@enron.com
## 7505 93540 9538 BCC janet.dobernecker@enron.com
## 7506 93541 9539 TO tana.jones@enron.com
## 7507 93542 9540 TO paul.simons@enron.com
## 7508 93543 9541 TO dan.hyvl@enron.com
## 7509 93544 9541 CC brent.hendry@enron.com
## 7510 93545 9541 BCC brent.hendry@enron.com
## 7511 93546 9542 TO tana.jones@enron.com
## 7512 93547 9543 TO marc.r.cutler@bankamerica.com
## 7513 93548 9544 TO marc.r.cutler@bankamerica.com
## 7514 93549 9545 TO marc.r.cutler@bankamerica.com
## 7515 93550 9546 TO debbie.brackett@enron.com
## 7516 93551 9547 TO marc.r.cutler@bankamerica.com
## 7517 93552 9548 TO debbie.brackett@enron.com
## 7518 93553 9549 TO marc.roche@enron.com
## 7519 93554 9550 TO marc.roche@enron.com
## 7520 93555 9550 CC doug.leach@enron.com
## 7521 93556 9550 BCC doug.leach@enron.com
## 7522 93557 9551 TO tana.jones@enron.com
## 7523 93558 9551 TO janet.dobernecker@enron.com
## 7524 93559 9552 TO mary.ogden@enron.com
## 7525 93560 9553 TO christian.yoder@enron.com
## 7526 93561 9554 TO robert.quick@enron.com
## 7527 93562 9555 TO brent.enron@enron.com
## 7528 93563 9556 TO cgreasley@isda.org
## 7529 93564 9557 TO marc.roche@enron.com
## 7530 93565 9558 TO erica.braden@enron.com
## 7531 93566 9559 TO mark.elliott@enron.com
## 7532 93567 9559 TO scott.sefton@enron.com
## 7533 93568 9559 TO paul.simons@enron.com
## 7534 93569 9560 TO marc.roche@enron.com
## 7535 93570 9561 TO tammy.drew@enron.com
## 7536 93571 9561 CC cindy.skinner@enron.com
## 7537 93572 9561 BCC cindy.skinner@enron.com
## 7538 93573 9562 TO christian.yoder@enron.com
## 7539 93574 9563 TO mtaylor587@aol.com
## 7540 93575 9564 TO randy.enron@enron.com
## 7541 93576 9565 TO janet.dobernecker@enron.com
## 7542 93577 9565 CC ann.white@enron.com
## 7543 93578 9565 CC tana.jones@enron.com
## 7544 93579 9565 BCC ann.white@enron.com
## 7545 93580 9565 BCC tana.jones@enron.com
## 7546 93581 9566 TO suzanne.adams@enron.com
## 7547 93582 9567 TO edmund.cooper@enron.com
## 7548 93583 9568 TO alan.aronowitz@enron.com
## 7549 93584 9569 TO alan.aronowitz@enron.com
## 7550 93585 9570 TO marc.r.cutler@bankamerica.com
## 7551 93586 9571 TO sasha.beard@enron.com
## 7552 93587 9572 TO marc.r.cutler@bankamerica.com
## 7553 93588 9573 TO marc.r.cutler@bankamerica.com
## 7554 93589 9574 TO brent.enron@enron.com
## 7555 93590 9575 TO peter.keohane@enron.com
## 7556 93591 9576 TO brent.enron@enron.com
## 7557 93592 9577 TO yao.apasu@enron.com
## 7558 93593 9577 TO sara.shackleton@enron.com
## 7559 93594 9578 TO yao.apasu@enron.com
## 7560 93595 9578 TO sara.shackleton@enron.com
## 7561 93596 9579 TO yao.apasu@enron.com
## 7562 93597 9579 TO sara.shackleton@enron.com
## 7563 93598 9580 TO tana.jones@enron.com
## 7564 93599 9581 TO deborah.culver@enron.com
## 7565 93600 9582 TO yao.apasu@enron.com
## 7566 93601 9583 TO jeffrey.keeler@enron.com
## 7567 93602 9584 TO yao.apasu@enron.com
## 7568 93603 9584 TO sara.shackleton@enron.com
## 7569 93604 9585 TO yao.apasu@enron.com
## 7570 93605 9585 TO sara.shackleton@enron.com
## 7571 93606 9586 TO yao.apasu@enron.com
## 7572 93607 9587 TO mzeleanor@juno.com
## 7573 93608 9588 TO yao.apasu@enron.com
## 7574 93609 9588 TO sara.shackleton@enron.com
## 7575 93610 9589 TO yao.apasu@enron.com
## 7576 93611 9589 TO sara.shackleton@enron.com
## 7577 93612 9590 TO yao.apasu@enron.com
## 7578 93613 9590 TO sara.shackleton@enron.com
## 7579 93614 9591 TO yao.apasu@enron.com
## 7580 93615 9591 TO sara.shackleton@enron.com
## 7581 93616 9592 TO yao.apasu@enron.com
## 7582 93617 9592 TO sara.shackleton@enron.com
## 7583 93618 9593 TO yao.apasu@enron.com
## 7584 93619 9593 TO sara.shackleton@enron.com
## 7585 93620 9594 TO yao.apasu@enron.com
## 7586 93621 9594 TO sara.shackleton@enron.com
## 7587 93622 9595 TO kimberly.dees@enron.com
## 7588 93623 9596 TO mitch.enron@enron.com
## 7589 93624 9597 TO yao.apasu@enron.com
## 7590 93625 9597 TO sara.shackleton@enron.com
## 7591 93626 9598 TO yao.apasu@enron.com
## 7592 93627 9598 TO sara.shackleton@enron.com
## 7593 93628 9599 TO tbockius@aol.com
## 7594 93629 9600 TO yao.apasu@enron.com
## 7595 93630 9600 TO mark.elliott@enron.com
## 7596 93631 9600 TO brent.hendry@enron.com
## 7597 93632 9600 TO sara.shackleton@enron.com
## 7598 93633 9600 TO shari.stack@enron.com
## 7599 93634 9600 TO paul.simons@enron.com
## 7600 93635 9600 TO marie.heard@enron.com
## 7601 93636 9600 TO tana.jones@enron.com
## 7602 93637 9600 TO susan.flynn@enron.com
## 7603 93638 9601 TO elizabeth.sager@enron.com
## 7604 93639 9602 TO brent.enron@enron.com
## 7605 93640 9603 TO yao.apasu@enron.com
## 7606 93641 9603 TO sara.shackleton@enron.com
## 7607 93642 9604 TO no.address@enron.com
## 7608 93643 9604 CC tana.jones@enron.com
## 7609 93644 9604 BCC tana.jones@enron.com
## 7610 93645 9605 TO amh5h@virginia.edu
## 7611 93646 9606 TO shari.stack@enron.com
## 7612 93647 9607 TO sylvia.sauseda@enron.com
## 7613 93648 9607 CC meagan.brinkworth@enron.com
## 7614 93649 9607 BCC meagan.brinkworth@enron.com
## 7615 93650 9608 TO tbockius@aol.com
## 7616 93651 9609 TO yao.apasu@enron.com
## 7617 93652 9609 TO sara.shackleton@enron.com
## 7618 93653 9610 TO gordon.hagendorf@kvaerner.com
## 7619 93654 9611 TO j_and_e_taylor@msn.com
## 7620 93655 9612 TO amh5h@virginia.edu
## 7621 93656 9613 TO mzeleanor@juno.com
## 7622 93657 9614 TO janet.dobernecker@enron.com
## 7623 93658 9615 TO yao.apasu@enron.com
## 7624 93659 9616 TO yao.apasu@enron.com
## 7625 93660 9617 TO dan.lyons@enron.com
## 7626 93661 9618 TO yao.apasu@enron.com
## 7627 93662 9618 TO alan.aronowitz@enron.com
## 7628 93663 9618 TO gareth.bahlmann@enron.com
## 7629 93664 9618 TO teresa.bushman@enron.com
## 7630 93665 9618 TO bob.carter@enron.com
## 7631 93666 9618 TO shonnie.daniel@enron.com
## 7632 93667 9618 TO stacy.dickson@enron.com
## 7633 93668 9618 TO kenton.erwin@enron.com
## 7634 93669 9618 TO shawna.flynn@enron.com
## 7635 93670 9618 TO barbara.gray@enron.com
## 7636 93671 9618 TO e..haedicke@enron.com
## 7637 93672 9618 TO jeffrey.hodge@enron.com
## 7638 93673 9618 TO dan.hyvl@enron.com
## 7639 93674 9618 TO monica.jordan@enron.com
## 7640 93675 9618 TO dan.lyons@enron.com
## 7641 93676 9618 TO travis.mccullough@enron.com
## 7642 93677 9618 TO janice.moore@enron.com
## 7643 93678 9618 TO kristina.mordaunt@enron.com
## 7644 93679 9618 TO elizabeth.sager@enron.com
## 7645 93680 9618 TO lance.legal@enron.com
## 7646 93681 9618 TO sara.shackleton@enron.com
## 7647 93682 9618 TO carol.clair@enron.com
## 7648 93683 9618 TO sheila.tweed@enron.com
## 7649 93684 9618 TO stephen.hooser@enron.com
## 7650 93685 9618 TO merrill.haas@enron.com
## 7651 93686 9618 TO genia.fitzgerald@enron.com
## 7652 93687 9618 TO nony.flores@enron.com
## 7653 93688 9618 TO marie.heard@enron.com
## 7654 93689 9618 TO ed.iii@enron.com
## 7655 93690 9618 TO mary.heinitz@enron.com
## 7656 93691 9618 TO tana.jones@enron.com
## 7657 93692 9618 TO deb.korkmas@enron.com
## 7658 93693 9618 TO robert.walker@enron.com
## 7659 93694 9618 TO kay.young@enron.com
## 7660 93695 9618 TO richard.b.sanders@enron.com
## 7661 93696 9618 TO linda.guinn@enron.com
## 7662 93697 9618 TO harry.collins@enron.com
## 7663 93698 9618 TO ann.white@enron.com
## 7664 93699 9618 TO julia.murray@enron.com
## 7665 93700 9618 TO david.buck@enron.com
## 7666 93701 9618 TO susan.flynn@enron.com
## 7667 93702 9618 TO doug.pedigo@enron.com
## 7668 93703 9618 TO sandi.braband@enron.com
## 7669 93704 9618 TO michelle.cash@enron.com
## 7670 93705 9618 TO peggy.banczak@enron.com
## 7671 93706 9618 TO ronald.haggerty@enron.com
## 7672 93707 9618 TO michael.robison@enron.com
## 7673 93708 9618 TO shari.stack@enron.com
## 7674 93709 9618 TO peter.vecchio@enron.com
## 7675 93710 9618 TO gerald.nemec@enron.com
## 7676 93711 9618 TO janet.moore@enron.com
## 7677 93712 9618 TO debra.perlingiere@enron.com
## 7678 93713 9619 TO scott.sefton@enron.com
## 7679 93714 9619 CC richard.b.sanders@enron.com
## 7680 93715 9619 CC paul.simons@enron.com
## 7681 93716 9619 CC tana.jones@enron.com
## 7682 93717 9619 CC edmund.cooper@enron.com
## 7683 93718 9619 BCC richard.b.sanders@enron.com
## 7684 93719 9619 BCC paul.simons@enron.com
## 7685 93720 9619 BCC tana.jones@enron.com
## 7686 93721 9619 BCC edmund.cooper@enron.com
## 7687 93722 9620 TO hessacres@sprintmail.com
## 7688 93723 9621 TO anita.fam@enron.com
## 7689 93724 9622 TO Mark EI.London Taylor@Enron
## 7690 93725 9623 TO martin.rosell@enron.com
## 7691 93726 9623 CC sylvia.sauseda@enron.com
## 7692 93727 9623 CC janet.dobernecker@enron.com
## 7693 93728 9623 BCC sylvia.sauseda@enron.com
## 7694 93729 9623 BCC janet.dobernecker@enron.com
## 7695 93730 9624 TO janet.dobernecker@enron.com
## 7696 93731 9624 CC tana.jones@enron.com
## 7697 93732 9624 BCC tana.jones@enron.com
## 7698 93733 9625 TO tbockius@aol.com
## 7699 93734 9626 TO richard.b.sanders@enron.com
## 7700 93735 9626 CC paul.simons@enron.com
## 7701 93736 9626 CC scott.sefton@enron.com
## 7702 93737 9626 CC tana.jones@enron.com
## 7703 93738 9626 BCC paul.simons@enron.com
## 7704 93739 9626 BCC scott.sefton@enron.com
## 7705 93740 9626 BCC tana.jones@enron.com
## 7706 93741 9627 TO peter.keohane@enron.com
## 7707 93742 9627 CC tana.jones@enron.com
## 7708 93743 9627 BCC tana.jones@enron.com
## 7709 93744 9628 TO carol.clair@enron.com
## 7710 93745 9629 TO marc.r.cutler@bankamerica.com
## 7711 93746 9630 TO jennifer.sabine@enron.com
## 7712 93747 9630 CC marie.heard@enron.com
## 7713 93748 9630 BCC marie.heard@enron.com
## 7714 93749 9631 TO tana.jones@enron.com
## 7715 93750 9632 TO asmythe@isda.org
## 7716 93751 9632 CC e..haedicke@enron.com
## 7717 93752 9632 BCC e..haedicke@enron.com
## 7718 93753 9633 TO scott.sefton@enron.com
## 7719 93754 9634 TO jenny.helton@enron.com
## 7720 93755 9635 TO scott.sefton@enron.com
## 7721 93756 9636 TO tana.jones@enron.com
## 7722 93757 9637 TO jennifer.fraser@enron.com
## 7723 93758 9637 TO jeffrey.hodge@enron.com
## 7724 93999 9720 TO david.port@enron.com
## 7725 94000 9720 TO mark.dilworth@enron.com
## 7726 94001 9720 TO david.mally@enron.com
## 7727 94002 9720 TO arfan.aziz@enron.com
## 7728 94003 9720 TO janine.juggins@enron.com
## 7729 94004 9720 TO justin.boyd@enron.com
## 7730 94005 9720 TO mark.e.taylor@enron.com
## 7731 94006 9720 TO marcello.romano@enron.com
## 7732 94007 9720 TO andrew.thomas@enron.com
## 7733 94008 9720 TO robert.campbell@enron.com
## 7734 94009 9720 TO paul.goddard@enron.com
## 7735 94010 9720 TO paul.racicot@enron.com
## 7736 94011 9720 TO rahil.jafry@enron.com
## 7737 94012 9720 TO elena.kapralova@enron.com
## 7738 94013 9720 TO scott.sefton@enron.com
## 7739 94014 9720 TO arfan.aziz@enron.com
## 7740 94015 9720 TO kevin.montagne@enron.com
## 7741 94016 9720 TO awais.omar@enron.com
## 7742 94017 9720 TO elena.kapralova@enron.com
## 7743 94018 9720 TO rahil.jafry@enron.com
## 7744 94019 9720 TO bryan.seyfried@enron.com
## 7745 94020 9720 TO edmund.cooper@enron.com
## 7746 94021 9720 TO david.forster@enron.com
## 7747 94022 9720 CC philippe.bibi@enron.com
## 7748 94023 9720 CC greg.whalley@enron.com
## 7749 94024 9720 CC john.sherriff@enron.com
## 7750 94025 9720 BCC philippe.bibi@enron.com
## 7751 94026 9720 BCC greg.whalley@enron.com
## 7752 94027 9720 BCC john.sherriff@enron.com
## 7753 94155 9751 TO mark.e.taylor@enron.com
## 7754 94156 9751 TO william.bradford@enron.com
## 7755 94157 9751 CC wendi.lebrocq@enron.com
## 7756 94158 9751 BCC wendi.lebrocq@enron.com
## 7757 94204 9757 TO mark.e.taylor@enron.com
## 7758 94205 9757 TO carol.clair@enron.com
## 7759 94217 9759 TO mark.e.taylor@enron.com
## 7760 94235 9762 TO mark.e.taylor@enron.com
## 7761 94488 9805 TO andrew.edison@enron.com
## 7762 94489 9805 CC mark.e.taylor@enron.com
## 7763 94490 9805 CC andy.zipper@enron.com
## 7764 94491 9805 BCC mark.e.taylor@enron.com
## 7765 94492 9805 BCC andy.zipper@enron.com
## 7766 94506 9807 TO mark.e.taylor@enron.com
## 7767 94652 9825 TO mark.e.taylor@enron.com
## 7768 94678 9829 TO mark.e.taylor@enron.com
## 7769 94836 9866 TO mark.e.taylor@enron.com
## 7770 95412 9946 TO bob.hall@enron.com
## 7771 95413 9946 TO brent.price@enron.com
## 7772 95414 9946 TO leslie.reeves@enron.com
## 7773 95415 9946 TO mary.solmonson@enron.com
## 7774 95416 9946 TO beth.perlman@enron.com
## 7775 95417 9946 TO peggy.hedstrom@enron.com
## 7776 95418 9946 TO james.scribner@enron.com
## 7777 95419 9946 TO sheri.thomas@enron.com
## 7778 95420 9946 TO william.bradford@enron.com
## 7779 95421 9946 TO brenda.herod@enron.com
## 7780 95422 9946 TO d.hall@enron.com
## 7781 95423 9946 TO thresa.allen@enron.com
## 7782 95424 9946 TO scott.earnest@enron.com
## 7783 95425 9946 TO kevin.sweeney@enron.com
## 7784 95426 9946 TO todd.busby@enron.com
## 7785 95427 9946 TO shona.wilson@enron.com
## 7786 95428 9946 TO robert.superty@enron.com
## 7787 95429 9946 TO michelle.bruce@enron.com
## 7788 95430 9946 TO vanessa.schulte@enron.com
## 7789 95431 9946 TO jennifer.denny@enron.com
## 7790 95432 9946 TO mark.e.taylor@enron.com
## 7791 95433 9946 TO wanda.curry@enron.com
## 7792 95434 9946 TO laura.scott@enron.com
## 7793 95435 9946 TO beth.apollo@enron.com
## 7794 95436 9946 TO mike.jordan@enron.com
## 7795 95437 9946 TO steve.whitaker@enron.com
## 7796 95438 9946 TO john.paskin@enron.com
## 7797 95439 9946 TO richard.sage@enron.com
## 7798 95440 9946 TO andrew.cornfield@enron.com
## 7799 95441 9946 CC heather.choate@enron.com
## 7800 95442 9946 CC chantelle.villanueva@enron.com
## 7801 95443 9946 CC zionette.vincent@enron.com
## 7802 95444 9946 CC marvia.jefferson@enron.com
## 7803 95445 9946 CC cherylene.westbrook@enron.com
## 7804 95446 9946 CC adrial.boals@enron.com
## 7805 95447 9946 CC jennifer.rosado@enron.com
## 7806 95448 9946 CC yvette.connevey@enron.com
## 7807 95449 9946 CC mercy.gil@enron.com
## 7808 95450 9946 CC salisha.ramos@enron.com
## 7809 95451 9946 CC sue.foust@enron.com
## 7810 95452 9946 CC braedi.craig@enron.com
## 7811 95453 9946 CC pamela.sonnier@enron.com
## 7812 95454 9946 CC fiona.mcnaught@enron.com
## 7813 95455 9946 BCC heather.choate@enron.com
## 7814 95456 9946 BCC chantelle.villanueva@enron.com
## 7815 95457 9946 BCC zionette.vincent@enron.com
## 7816 95458 9946 BCC marvia.jefferson@enron.com
## 7817 95459 9946 BCC cherylene.westbrook@enron.com
## 7818 95460 9946 BCC adrial.boals@enron.com
## 7819 95461 9946 BCC jennifer.rosado@enron.com
## 7820 95462 9946 BCC yvette.connevey@enron.com
## 7821 95463 9946 BCC mercy.gil@enron.com
## 7822 95464 9946 BCC salisha.ramos@enron.com
## 7823 95465 9946 BCC sue.foust@enron.com
## 7824 95466 9946 BCC braedi.craig@enron.com
## 7825 95467 9946 BCC pamela.sonnier@enron.com
## 7826 95468 9946 BCC fiona.mcnaught@enron.com
## 7827 95489 9952 TO chris.long@enron.com
## 7828 95490 9952 CC mark.e.taylor@enron.com
## 7829 95491 9952 BCC mark.e.taylor@enron.com
## 7830 95492 9953 TO brent.hendry@enron.com
## 7831 95493 9953 TO sara.shackleton@enron.com
## 7832 95494 9953 TO mark.e.taylor@enron.com
## 7833 95495 9953 TO carol.clair@enron.com
## 7834 95496 9953 TO susan.bailey@enron.com
## 7835 95497 9953 TO mary.cook@enron.com
## 7836 95498 9953 TO samantha.boyd@enron.com
## 7837 95499 9953 TO robert.bruce@enron.com
## 7838 95500 9953 TO tana.jones@enron.com
## 7839 95501 9953 TO taffy.milligan@enron.com
## 7840 95502 9953 TO francisco.leite@enron.com
## 7841 95503 9953 TO cheryl.nelson@enron.com
## 7842 95504 9953 TO frank.sayre@enron.com
## 7843 95505 9953 TO angela.davis@enron.com
## 7844 95506 9953 TO anne.koehler@enron.com
## 7845 95548 9964 TO susan.bailey@enron.com
## 7846 95549 9964 TO lou.stoler@enron.com
## 7847 95550 9964 TO steprg@bracepatt.com
## 7848 95551 9964 TO mark.e.taylor@enron.com
## 7849 95559 9966 TO steprg@bracepatt.com
## 7850 95560 9966 CC mark.e.taylor@enron.com
## 7851 95561 9966 CC lou.stoler@enron.com
## 7852 95562 9966 CC paul.radous@enron.com
## 7853 95563 9966 CC susan.bailey@enron.com
## 7854 95564 9966 BCC mark.e.taylor@enron.com
## 7855 95565 9966 BCC lou.stoler@enron.com
## 7856 95566 9966 BCC paul.radous@enron.com
## 7857 95567 9966 BCC susan.bailey@enron.com
## 7858 95568 9967 TO janette.elbertson@enron.com
## 7859 95569 9967 CC bstclair@msn.com
## 7860 95570 9967 CC mark.e.taylor@enron.com
## 7861 95571 9967 BCC bstclair@msn.com
## 7862 95572 9967 BCC mark.e.taylor@enron.com
## 7863 95573 9968 TO mark.e.taylor@enron.com
## 7864 95574 9968 CC susan.bailey@enron.com
## 7865 95575 9968 BCC susan.bailey@enron.com
## 7866 95775 9986 TO mark.e.taylor@enron.com
## 7867 95776 9986 CC gustavo.junqueira@enron.com
## 7868 95777 9986 BCC gustavo.junqueira@enron.com
## 7869 95827 9998 TO stephanie.panus@enron.com
## 7870 95828 9998 CC mark.e.taylor@enron.com
## 7871 95829 9998 CC jane.mcbride@enron.com
## 7872 95830 9998 BCC mark.e.taylor@enron.com
## 7873 95831 9998 BCC jane.mcbride@enron.com
## 7874 95891 10011 TO mark.e.taylor@enron.com
## 7875 96248 10044 TO bob.bowen@enron.com
## 7876 96249 10044 TO laurel.adams@enron.com
## 7877 96250 10044 TO andrea.guillen@enron.com
## 7878 96251 10044 TO larry.hunter@enron.com
## 7879 96252 10044 TO gordon.heaney@enron.com
## 7880 96253 10044 TO janie.aguayo@enron.com
## 7881 96254 10044 TO derek.bailey@enron.com
## 7882 96255 10044 TO diane.anderson@enron.com
## 7883 96256 10044 TO scott.tackett@enron.com
## 7884 96257 10044 TO celeste.cisneros@enron.com
## 7885 96258 10044 TO william.bradford@enron.com
## 7886 96259 10044 TO debbie.brackett@enron.com
## 7887 96260 10044 TO tanya.rohauer@enron.com
## 7888 96261 10044 TO brant.reves@enron.com
## 7889 96262 10044 TO russell.diamond@enron.com
## 7890 96263 10044 TO lesli.campbell@enron.com
## 7891 96264 10044 TO wendi.lebrocq@enron.com
## 7892 96265 10044 TO edward.sacks@enron.com
## 7893 96266 10044 TO veronica.espinoza@enron.com
## 7894 96267 10044 TO veronica.gonzalez@enron.com
## 7895 96268 10044 TO paul.radous@enron.com
## 7896 96269 10044 TO jason.williams@enron.com
## 7897 96270 10044 TO rudwell.johnson@enron.com
## 7898 96271 10044 TO darren.vanek@enron.com
## 7899 96272 10044 TO aparna.rajaram@enron.com
## 7900 96273 10044 TO wendy.conwell@enron.com
## 7901 96274 10044 TO ken.curry@enron.com
## 7902 96275 10044 TO tom.moran@enron.com
## 7903 96276 10044 TO nidia.mendoza@enron.com
## 7904 96277 10044 TO angela.brown@enron.com
## 7905 96278 10044 TO marilyn.colbert@enron.com
## 7906 96279 10044 TO diane.ellstrom@enron.com
## 7907 96280 10044 TO lynn.shivers@enron.com
## 7908 96281 10044 TO bill.hare@enron.com
## 7909 96282 10044 TO leslie.reeves@enron.com
## 7910 96283 10044 TO jason.moore@enron.com
## 7911 96284 10044 TO dianne.seib@enron.com
## 7912 96285 10044 TO samuel.schott@enron.com
## 7913 96286 10044 TO anthony.campos@enron.com
## 7914 96287 10044 TO bernice.rodriguez@enron.com
## 7915 96288 10044 TO dale.neuner@enron.com
## 7916 96289 10044 TO karen.lambert@enron.com
## 7917 96290 10044 TO frank.davis@enron.com
## 7918 96291 10044 TO carrie.southard@enron.com
## 7919 96292 10044 TO amber.ebow@enron.com
## 7920 96293 10044 TO melissa.murphy@enron.com
## 7921 96294 10044 TO stacey.richardson@enron.com
## 7922 96295 10044 TO lisa.lees@enron.com
## 7923 96296 10044 TO camille.gerard@enron.com
## 7924 96297 10044 TO georgi.landau@enron.com
## 7925 96298 10044 TO cheryl.johnson@enron.com
## 7926 96299 10044 TO stephanie.sever@enron.com
## 7927 96300 10044 TO brent.hendry@enron.com
## 7928 96301 10044 TO sara.shackleton@enron.com
## 7929 96302 10044 TO mark.e.taylor@enron.com
## 7930 96303 10044 TO carol.clair@enron.com
## 7931 96304 10044 TO susan.bailey@enron.com
## 7932 96305 10044 TO mary.cook@enron.com
## 7933 96306 10044 TO samantha.boyd@enron.com
## 7934 96307 10044 TO robert.bruce@enron.com
## 7935 96308 10044 TO tana.jones@enron.com
## 7936 96309 10044 TO francisco.leite@enron.com
## 7937 96310 10044 TO cheryl.nelson@enron.com
## 7938 96311 10044 TO frank.sayre@enron.com
## 7939 96312 10044 TO anne.koehler@enron.com
## 7940 96313 10044 TO angela.davis@enron.com
## 7941 96314 10044 TO holly.keiser@enron.com
## 7942 96609 10089 TO mark.e.taylor@enron.com
## 7943 96825 10109 TO mark.e.taylor@enron.com
## 7944 96826 10109 TO sara.shackleton@enron.com
## 7945 96827 10109 TO mary.cook@enron.com
## 7946 96828 10109 TO brent.hendry@enron.com
## 7947 96829 10109 TO tana.jones@enron.com
## 7948 96830 10109 TO robert.bruce@enron.com
## 7949 96831 10109 TO anne.koehler@enron.com
## 7950 96832 10109 TO cheryl.nelson@enron.com
## 7951 96833 10109 TO francisco.leite@enron.com
## 7952 96834 10109 TO frank.sayre@enron.com
## 7953 96835 10109 TO susan.bailey@enron.com
## 7954 96836 10109 TO samantha.boyd@enron.com
## 7955 96837 10109 TO stephanie.panus@enron.com
## 7956 96838 10109 CC julia.murray@enron.com
## 7957 96839 10109 BCC julia.murray@enron.com
## 7958 97763 10197 TO alan.aronowitz@enron.com
## 7959 97764 10197 TO barbara.gray@enron.com
## 7960 97765 10197 TO elizabeth.sager@enron.com
## 7961 97766 10197 TO jeffrey.hodge@enron.com
## 7962 97767 10197 TO julia.murray@enron.com
## 7963 97768 10197 TO lance.schuler-legal@enron.com
## 7964 97769 10197 TO mark.e.taylor@enron.com
## 7965 97770 10197 TO randy.young@enron.com
## 7966 97771 10197 TO richard.b.sanders@enron.com
## 7967 97772 10197 TO sheila.tweed@enron.com
## 7968 97773 10197 TO travis.mccullough@enron.com
## 7969 97774 10197 TO bruce.lundstrom@enron.com
## 7970 98319 10220 TO mark.e.taylor@enron.com
## 7971 98320 10220 TO carol.clair@enron.com
## 7972 98321 10221 TO sheila.tweed@enron.com
## 7973 98322 10221 TO barbara.gray@enron.com
## 7974 98323 10221 TO jeffrey.hodge@enron.com
## 7975 98324 10221 TO lance.schuler-legal@enron.com
## 7976 98325 10221 TO travis.mccullough@enron.com
## 7977 98326 10221 TO elizabeth.sager@enron.com
## 7978 98327 10221 TO richard.b.sanders@enron.com
## 7979 98328 10221 TO mark.e.taylor@enron.com
## 7980 98329 10221 TO julia.murray@enron.com
## 7981 98330 10221 TO alan.aronowitz@enron.com
## 7982 98331 10221 TO daniel.rogers@enron.com
## 7983 98332 10221 TO bruce.lundstrom@enron.com
## 7984 98333 10221 TO e..haedicke@enron.com
## 7985 98334 10221 CC jordan.mintz@enron.com
## 7986 98335 10221 BCC jordan.mintz@enron.com
## 7987 98385 10236 TO jjohnson@velaw.com
## 7988 98386 10236 CC mark.e.taylor@enron.com
## 7989 98387 10236 BCC mark.e.taylor@enron.com
## 7990 98552 10248 TO mark.e.taylor@enron.com
## 7991 98555 10251 TO larry.hunter@enron.com
## 7992 98556 10251 TO kim.theriot@enron.com
## 7993 98557 10251 CC sara.shackleton@enron.com
## 7994 98558 10251 CC mark.e.taylor@enron.com
## 7995 98559 10251 BCC sara.shackleton@enron.com
## 7996 98560 10251 BCC mark.e.taylor@enron.com
## 7997 98617 10264 TO holly.keiser@enron.com
## 7998 98618 10264 CC mark.e.taylor@enron.com
## 7999 98619 10264 BCC mark.e.taylor@enron.com
## 8000 98628 10268 TO carol.clair@enron.com
## 8001 98629 10268 TO mark.e.taylor@enron.com
## 8002 98630 10269 TO carol.clair@enron.com
## 8003 98631 10269 TO mark.e.taylor@enron.com
## 8004 98638 10273 TO mark.e.taylor@enron.com
## 8005 98639 10274 TO mark.e.taylor@enron.com
## 8006 98640 10274 TO mark.greenberg@enron.com
## 8007 98641 10274 TO mark.holsworth@enron.com
## 8008 98642 10274 CC bob.ward@enron.com
## 8009 98643 10274 BCC bob.ward@enron.com
## 8010 98660 10279 TO mark.e.taylor@enron.com
## 8011 98689 10289 TO mark.e.taylor@enron.com
## 8012 98690 10289 TO jeffrey.hodge@enron.com
## 8013 98691 10289 TO elizabeth.sager@enron.com
## 8014 98692 10289 TO lisa.mellencamp@enron.com
## 8015 98693 10289 TO mary.cook@enron.com
## 8016 98726 10296 TO sami.arap@enron.com
## 8017 98727 10296 CC mark.e.taylor@enron.com
## 8018 98728 10296 BCC mark.e.taylor@enron.com
## 8019 98729 10297 TO mark.e.taylor@enron.com
## 8020 98747 10303 TO ceklund@llgm.com
## 8021 98748 10303 TO jklauber@llgm.com
## 8022 98749 10303 TO jlhuemoe@llgm.com
## 8023 98750 10303 TO mark.e.taylor@enron.com
## 8024 98751 10303 TO carol.clair@enron.com
## 8025 98752 10303 TO jeffrey.hodge@enron.com
## 8026 98753 10303 TO peter.keohane@enron.com
## 8027 98754 10303 TO greg.johnston@enron.com
## 8028 98755 10303 TO william.bradford@enron.com
## 8029 98756 10303 TO tracy.ngo@enron.com
## 8030 98757 10303 TO christian.yoder@enron.com
## 8031 98758 10303 TO travis.mccullough@enron.com
## 8032 98759 10303 TO richard.b.sanders@enron.com
## 8033 98760 10303 CC e..haedicke@enron.com
## 8034 98761 10303 BCC e..haedicke@enron.com
## 8035 98781 10309 TO mark.e.taylor@enron.com
## 8036 98782 10309 TO sara.shackleton@enron.com
## 8037 98783 10309 TO mary.cook@enron.com
## 8038 98784 10309 TO brent.hendry@enron.com
## 8039 98785 10309 TO tana.jones@enron.com
## 8040 98786 10309 TO robert.bruce@enron.com
## 8041 98787 10309 TO anne.koehler@enron.com
## 8042 98788 10309 TO cheryl.nelson@enron.com
## 8043 98789 10309 TO francisco.leite@enron.com
## 8044 98790 10309 TO frank.sayre@enron.com
## 8045 98791 10309 TO susan.bailey@enron.com
## 8046 98792 10309 TO samantha.boyd@enron.com
## 8047 98793 10309 TO stephanie.panus@enron.com
## 8048 98794 10309 TO mark.greenberg@enron.com
## 8049 98837 10315 TO mark.greenberg@enron.com
## 8050 98838 10315 TO mark.e.taylor@enron.com
## 8051 98863 10321 TO deb.korkmas@enron.com
## 8052 98864 10321 CC mark.e.taylor@enron.com
## 8053 98865 10321 BCC mark.e.taylor@enron.com
## 8054 99010 10348 TO joao.carlos.albuquerque@enron.com
## 8055 99011 10348 TO ray.alvarez@enron.com
## 8056 99012 10348 TO sami.arap@enron.com
## 8057 99013 10348 TO sergio.assad@enron.com
## 8058 99014 10348 TO jarek.astramowicz@enron.com
## 8059 99015 10348 TO wilson.barbee@enron.com
## 8060 99016 10348 TO carolyn.barrett@enron.com
## 8061 99017 10348 TO kbean@enron.com
## 8062 99018 10348 TO brian.bierbach@enron.com
## 8063 99019 10348 TO ernesto.blanco@enron.com
## 8064 99020 10348 TO jack.boatman@enron.com
## 8065 99021 10348 TO tom.briggs@enron.com
## 8066 99022 10348 TO michael.l.brown@enron.com
## 8067 99023 10348 TO dbunnell@enron.com
## 8068 99024 10348 TO cedric.burgher@enron.com
## 8069 99025 10348 TO bob.butts@enron.com
## 8070 99026 10348 TO rick.buy@enron.com
## 8071 99027 10348 TO ccalger@enron.com
## 8072 99028 10348 TO eduardo.camara@enron.com
## 8073 99029 10348 TO rebecca.carter@enron.com
## 8074 99030 10348 TO daniel.castagnola@enron.com
## 8075 99031 10348 TO ckchew@enron.com
## 8076 99032 10348 TO rick.craig@enron.com
## 8077 99033 10348 TO greg.curran@enron.com
## 8078 99034 10348 TO paulcu@nepco.co
## 8079 99035 10348 TO steved@nepco.com
## 8080 99036 10348 TO ddelain2@enron.com
## 8081 99037 10348 TO jeff_donohue@enron.net
## 8082 99038 10348 TO wade_doshier@enron.net
## 8083 99039 10348 TO anthony_duenner@enron.net
## 8084 99040 10348 TO john.echols@enron.com
## 8085 99041 10348 TO steve_elliott@enron.net
## 8086 99042 10348 TO drew.fossum@enron.com
## 8087 99043 10348 TO craig.a.fox@enron.com
## 8088 99044 10348 TO paul.freeman@enron.com
## 8089 99045 10348 TO sgahn@enron.com
## 8090 99046 10348 TO bruce.garner@enron.com
## 8091 99047 10348 TO mike_golden@enron.net
## 8092 99048 10348 TO edward.e.graham@enron.com
## 8093 99049 10348 TO michael.guerriero@enron.com
## 8094 99050 10348 TO bgulyass@enron.com
## 8095 99051 10348 TO mohan.gurunal@enron.com
## 8096 99052 10348 TO hgutier@enron.com
## 8097 99053 10348 TO kevin_hannon@enron.net
## 8098 99054 10348 TO clay_harris@enron.net
## 8099 99055 10348 TO robert.hayes@enron.com
## 8100 99056 10348 TO greg.hermans@enron.com
## 8101 99057 10348 TO peggy.hedstrom@enron.com
## 8102 99058 10348 TO jhirl@enron.com
## 8103 99059 10348 TO georgeanne.hodges@enron.com
## 8104 99060 10348 TO kevin_howard@enron.net
## 8105 99061 10348 TO tim.r.jones@enron.com
## 8106 99062 10348 TO janine.juggins@enron.com
## 8107 99063 10348 TO john.r.keller@enron.com
## 8108 99064 10348 TO peter.keohane@enron.com
## 8109 99065 10348 TO jeff.kinneman@enron.com
## 8110 99066 10348 TO joe.kishkill@enron.com
## 8111 99067 10348 TO kkoye@enron.com
## 8112 99068 10348 TO rlammer@enron.com
## 8113 99069 10348 TO doug.leach@enron.com
## 8114 99070 10348 TO thor.lien@enron.com
## 8115 99071 10348 TO tlindho@enron.com
## 8116 99072 10348 TO phillip_lord@enron.net
## 8117 99073 10348 TO laura.luce@enron.com
## 8118 99074 10348 TO chris.mahoney@enron.com
## 8119 99075 10348 TO andrew.marsden@enron.com
## 8120 99076 10348 TO john_mcclain@enron.net
## 8121 99077 10348 TO mike.mcconnell@enron.com
## 8122 99078 10348 TO mike.mcgowan@enron.com
## 8123 99079 10348 TO neil.mcgregor@enron.com
## 8124 99080 10348 TO tom.mckeever@enron.com
## 8125 99081 10348 TO john_mcclain@enron.net
## 8126 99082 10348 TO emelvin@enron.com
## 8127 99083 10348 TO steve.montovano@enron.com
## 8128 99084 10348 TO jean.mrha@enron.com
## 8129 99085 10348 TO ted.murphy@enron.com
## 8130 99086 10348 TO tani.nath@enron.com
## 8131 99087 10348 TO mpadron@enron.com
## 8132 99088 10348 TO lou.l.pai@enron.com
## 8133 99089 10348 TO dparque@enron.com
## 8134 99090 10348 TO jpattill@enron.com
## 8135 99091 10348 TO everett_plante@enron.net
## 8136 99092 10348 TO laine.a.powell@enron.com
## 8137 99093 10348 TO kpresto@enron.com
## 8138 99094 10348 TO dan.pribble@enron.com
## 8139 99095 10348 TO miker@nepco.com
## 8140 99096 10348 TO stuart.g.rexrode@enron.com
## 8141 99097 10348 TO grice@enron.com
## 8142 99098 10348 TO ken.rice@enron.com
## 8143 99099 10348 TO triley@enron.com
## 8144 99100 10348 TO rrogers@enron.com
## 8145 99101 10348 TO mark_russ@enron.net
## 8146 99102 10348 TO jsaunde@enron.com
## 8147 99103 10348 TO frank.sayre@enron.com
## 8148 99104 10348 TO laura.e.scott@enron.com
## 8149 99105 10348 TO per.sekse@enron.com
## 8150 99106 10348 TO britaldo.soares@enron.com
## 8151 99107 10348 TO jsommer@enron.com
## 8152 99108 10348 TO stuart.staley@enron.com
## 8153 99109 10348 TO brian.stanley@enron.com
## 8154 99110 10348 TO rstewart@ei.enron.com
## 8155 99111 10348 TO peter.styles@enron.com
## 8156 99112 10348 TO csulliv@enron.com
## 8157 99113 10348 TO csutter@enron.com
## 8158 99114 10348 TO mark.e.taylor@enron.com
## 8159 99115 10348 TO mterras@enron.com
## 8160 99116 10348 TO jon_thomsen@enron.net
## 8161 99117 10348 TO rtio@enron.com
## 8162 99118 10348 TO ptwomey@enron.com
## 8163 99119 10348 TO tim.underdown@enron.com
## 8164 99120 10348 TO bvotaw@enron.com
## 8165 99121 10348 TO rick_waddell@enron.net
## 8166 99122 10348 TO christoph.waltenspuel@enron.com
## 8167 99123 10348 TO sherron.watkins@enron.com
## 8168 99124 10348 TO doug.weaver@enron.com
## 8169 99125 10348 TO leesa.white@enron.com
## 8170 99126 10348 TO mark.whitt@enron.com
## 8171 99127 10348 TO jimmie_williams@enron.com
## 8172 99128 10348 TO randy.young@enron.com
## 8173 99129 10348 TO stefan.bremer@enron.com
## 8174 99130 10348 TO jose.luis.gomez-banovio@enron.com
## 8175 99131 10348 TO kevin.greiner@enron.com
## 8176 99132 10348 TO michael.zuefle@enron.com
## 8177 99156 10351 TO mary.cook@enron.com
## 8178 99157 10351 TO sara.shackleton@enron.com
## 8179 99158 10351 TO mark.e.taylor@enron.com
## 8180 99160 10353 TO brent.hendry@enron.com
## 8181 99161 10353 CC mark.e.taylor@enron.com
## 8182 99162 10353 BCC mark.e.taylor@enron.com
## 8183 99407 10396 TO mark.e.taylor@enron.com
## 8184 99541 10410 TO mark.e.taylor@enron.com
## 8185 99542 10411 TO scarey@isda.org
## 8186 99543 10411 CC rainslie@isda.org
## 8187 99544 10411 BCC rainslie@isda.org
## 8188 99624 10420 TO mark.e.taylor@enron.com
## 8189 99625 10421 TO mark.e.taylor@enron.com
## 8190 99626 10422 TO mark.e.taylor@enron.com
## 8191 99849 10438 TO jeffrey.hodge@enron.com
## 8192 99850 10438 TO julia.murray@enron.com
## 8193 99851 10438 TO elizabeth.sager@enron.com
## 8194 99852 10438 TO lance.schuler-legal@enron.com
## 8195 99853 10438 TO alan.aronowitz@enron.com
## 8196 99854 10438 TO barbara.gray@enron.com
## 8197 99855 10438 TO mark.e.taylor@enron.com
## 8198 99856 10438 TO sheila.tweed@enron.com
## 8199 99889 10450 TO bob.bowen@enron.com
## 8200 99890 10450 TO laurel.adams@enron.com
## 8201 99891 10450 TO andrea.guillen@enron.com
## 8202 99892 10450 TO larry.hunter@enron.com
## 8203 99893 10450 TO gordon.heaney@enron.com
## 8204 99894 10450 TO janie.aguayo@enron.com
## 8205 99895 10450 TO derek.bailey@enron.com
## 8206 99896 10450 TO diane.anderson@enron.com
## 8207 99897 10450 TO scott.tackett@enron.com
## 8208 99898 10450 TO celeste.cisneros@enron.com
## 8209 99899 10450 TO julie.brewer@enron.com
## 8210 99900 10450 TO jason.fischer@enron.com
## 8211 99901 10450 TO jorge.garcia@enron.com
## 8212 99902 10450 TO kimberly.hundl@enron.com
## 8213 99903 10450 TO bianca.ornelas@enron.com
## 8214 99904 10450 TO melissa.murphy@enron.com
## 8215 99905 10450 TO dianne.seib@enron.com
## 8216 99906 10450 TO kim.theriot@enron.com
## 8217 99907 10450 TO jean.bell@enron.com
## 8218 99908 10450 TO sharen.cason@enron.com
## 8219 99909 10450 TO melinda.whalen@enron.com
## 8220 99910 10450 TO stephanie.piwetz@enron.com
## 8221 99911 10450 TO melissa.rodriguez@enron.com
## 8222 99912 10450 TO tiffany.williams@enron.com
## 8223 99913 10450 TO william.bradford@enron.com
## 8224 99914 10450 TO debbie.brackett@enron.com
## 8225 99915 10450 TO tanya.rohauer@enron.com
## 8226 99916 10450 TO brant.reves@enron.com
## 8227 99917 10450 TO russell.diamond@enron.com
## 8228 99918 10450 TO lesli.campbell@enron.com
## 8229 99919 10450 TO wendi.lebrocq@enron.com
## 8230 99920 10450 TO edward.sacks@enron.com
## 8231 99921 10450 TO veronica.espinoza@enron.com
## 8232 99922 10450 TO veronica.gonzalez@enron.com
## 8233 99923 10450 TO paul.radous@enron.com
## 8234 99924 10450 TO jason.williams@enron.com
## 8235 99925 10450 TO rudwell.johnson@enron.com
## 8236 99926 10450 TO darren.vanek@enron.com
## 8237 99927 10450 TO aparna.rajaram@enron.com
## 8238 99928 10450 TO wendy.conwell@enron.com
## 8239 99929 10450 TO ken.curry@enron.com
## 8240 99930 10450 TO tom.moran@enron.com
## 8241 99931 10450 TO nidia.mendoza@enron.com
## 8242 99932 10450 TO angela.brown@enron.com
## 8243 99933 10450 TO tracy.ngo@enron.com
## 8244 99934 10450 TO shemeika.landry@enron.com
## 8245 99935 10450 TO randy.otto@enron.com
## 8246 99936 10450 TO brent.hendry@enron.com
## 8247 99937 10450 TO sara.shackleton@enron.com
## 8248 99938 10450 TO mark.e.taylor@enron.com
## 8249 99939 10450 TO susan.bailey@enron.com
## 8250 99940 10450 TO mary.cook@enron.com
## 8251 99941 10450 TO tana.jones@enron.com
## 8252 99942 10450 TO francisco.leite@enron.com
## 8253 99943 10450 TO cheryl.nelson@enron.com
## 8254 99944 10450 TO frank.sayre@enron.com
## 8255 99945 10450 TO angela.davis@enron.com
## 8256 99946 10450 TO holly.keiser@enron.com
## 8257 99947 10450 TO marie.heard@enron.com
## 8258 99948 10450 TO marilyn.colbert@enron.com
## 8259 99949 10450 TO diane.ellstrom@enron.com
## 8260 99950 10450 TO lynn.shivers@enron.com
## 8261 99951 10450 TO bill.hare@enron.com
## 8262 99952 10450 TO leslie.reeves@enron.com
## 8263 99953 10450 TO jason.moore@enron.com
## 8264 99954 10450 TO samuel.schott@enron.com
## 8265 99955 10450 TO anthony.campos@enron.com
## 8266 99956 10450 TO bernice.rodriguez@enron.com
## 8267 99957 10450 TO dale.neuner@enron.com
## 8268 99958 10450 TO karen.lambert@enron.com
## 8269 99959 10450 TO frank.davis@enron.com
## 8270 99960 10450 TO carrie.southard@enron.com
## 8271 99961 10450 TO amber.ebow@enron.com
## 8272 99962 10450 TO stacey.richardson@enron.com
## 8273 99963 10450 TO lisa.lees@enron.com
## 8274 99964 10450 TO camille.gerard@enron.com
## 8275 99965 10450 TO georgi.landau@enron.com
## 8276 99966 10450 TO cheryl.johnson@enron.com
## 8277 99967 10450 TO stephanie.sever@enron.com
## 8278 99968 10450 TO sharon.crawford@enron.com
## 8279 99969 10450 TO linda.sietzema@enron.com
## 8280 99983 10455 TO bob.bowen@enron.com
## 8281 99984 10455 TO laurel.adams@enron.com
## 8282 99985 10455 TO andrea.guillen@enron.com
## 8283 99986 10455 TO larry.hunter@enron.com
## 8284 99987 10455 TO gordon.heaney@enron.com
## 8285 99988 10455 TO janie.aguayo@enron.com
## 8286 99989 10455 TO derek.bailey@enron.com
## 8287 99990 10455 TO diane.anderson@enron.com
## 8288 99991 10455 TO scott.tackett@enron.com
## 8289 99992 10455 TO celeste.cisneros@enron.com
## 8290 99993 10455 TO julie.brewer@enron.com
## 8291 99994 10455 TO jason.fischer@enron.com
## 8292 99995 10455 TO jorge.garcia@enron.com
## 8293 99996 10455 TO kimberly.hundl@enron.com
## 8294 99997 10455 TO bianca.ornelas@enron.com
## 8295 99998 10455 TO melissa.murphy@enron.com
## 8296 99999 10455 TO dianne.seib@enron.com
## 8297 100000 10455 TO kim.theriot@enron.com
## 8298 100001 10455 TO jean.bell@enron.com
## 8299 100002 10455 TO sharen.cason@enron.com
## 8300 100003 10455 TO melinda.whalen@enron.com
## 8301 100004 10455 TO stephanie.piwetz@enron.com
## 8302 100005 10455 TO melissa.rodriguez@enron.com
## 8303 100006 10455 TO tiffany.williams@enron.com
## 8304 100007 10455 TO william.bradford@enron.com
## 8305 100008 10455 TO debbie.brackett@enron.com
## 8306 100009 10455 TO tanya.rohauer@enron.com
## 8307 100010 10455 TO brant.reves@enron.com
## 8308 100011 10455 TO russell.diamond@enron.com
## 8309 100012 10455 TO lesli.campbell@enron.com
## 8310 100013 10455 TO wendi.lebrocq@enron.com
## 8311 100014 10455 TO edward.sacks@enron.com
## 8312 100015 10455 TO veronica.espinoza@enron.com
## 8313 100016 10455 TO veronica.gonzalez@enron.com
## 8314 100017 10455 TO paul.radous@enron.com
## 8315 100018 10455 TO jason.williams@enron.com
## 8316 100019 10455 TO rudwell.johnson@enron.com
## 8317 100020 10455 TO darren.vanek@enron.com
## 8318 100021 10455 TO aparna.rajaram@enron.com
## 8319 100022 10455 TO wendy.conwell@enron.com
## 8320 100023 10455 TO ken.curry@enron.com
## 8321 100024 10455 TO tom.moran@enron.com
## 8322 100025 10455 TO nidia.mendoza@enron.com
## 8323 100026 10455 TO angela.brown@enron.com
## 8324 100027 10455 TO tracy.ngo@enron.com
## 8325 100028 10455 TO shemeika.landry@enron.com
## 8326 100029 10455 TO randy.otto@enron.com
## 8327 100030 10455 TO marilyn.colbert@enron.com
## 8328 100031 10455 TO diane.ellstrom@enron.com
## 8329 100032 10455 TO lynn.shivers@enron.com
## 8330 100033 10455 TO bill.hare@enron.com
## 8331 100034 10455 TO leslie.reeves@enron.com
## 8332 100035 10455 TO jason.moore@enron.com
## 8333 100036 10455 TO samuel.schott@enron.com
## 8334 100037 10455 TO anthony.campos@enron.com
## 8335 100038 10455 TO bernice.rodriguez@enron.com
## 8336 100039 10455 TO dale.neuner@enron.com
## 8337 100040 10455 TO karen.lambert@enron.com
## 8338 100041 10455 TO frank.davis@enron.com
## 8339 100042 10455 TO carrie.southard@enron.com
## 8340 100043 10455 TO amber.ebow@enron.com
## 8341 100044 10455 TO stacey.richardson@enron.com
## 8342 100045 10455 TO lisa.lees@enron.com
## 8343 100046 10455 TO camille.gerard@enron.com
## 8344 100047 10455 TO georgi.landau@enron.com
## 8345 100048 10455 TO cheryl.johnson@enron.com
## 8346 100049 10455 TO stephanie.sever@enron.com
## 8347 100050 10455 TO sharon.crawford@enron.com
## 8348 100051 10455 TO linda.sietzema@enron.com
## 8349 100052 10455 TO brent.hendry@enron.com
## 8350 100053 10455 TO sara.shackleton@enron.com
## 8351 100054 10455 TO mark.e.taylor@enron.com
## 8352 100055 10455 TO susan.bailey@enron.com
## 8353 100056 10455 TO mary.cook@enron.com
## 8354 100057 10455 TO tana.jones@enron.com
## 8355 100058 10455 TO francisco.leite@enron.com
## 8356 100059 10455 TO cheryl.nelson@enron.com
## 8357 100060 10455 TO frank.sayre@enron.com
## 8358 100061 10455 TO angela.davis@enron.com
## 8359 100062 10455 TO holly.keiser@enron.com
## 8360 100063 10455 TO marie.heard@enron.com
## 8361 100187 10458 TO chris.walker@enron.com
## 8362 100188 10458 CC mark.e.taylor@enron.com
## 8363 100189 10458 BCC mark.e.taylor@enron.com
## 8364 100191 10460 TO mark.e.taylor@enron.com
## 8365 100192 10460 TO sara.shackleton@enron.com
## 8366 100193 10460 TO mary.cook@enron.com
## 8367 100194 10460 CC jim.crump@enron.com
## 8368 100195 10460 BCC jim.crump@enron.com
## 8369 100273 10476 TO steven.j.kean@enron.com
## 8370 100274 10476 TO richard.shapiro@enron.com
## 8371 100275 10476 TO e..haedicke@enron.com
## 8372 100276 10476 TO mark.e.taylor@enron.com
## 8373 100277 10476 TO lisa.yoho@enron.com
## 8374 100278 10476 TO sarah.novosel@enron.com
## 8375 100279 10476 TO linda.robertson@enron.com
## 8376 100280 10476 TO christi.nicolay@enron.com
## 8377 100282 10478 TO mark.e.taylor@enron.com
## 8378 100622 10489 TO mark.e.taylor@enron.com
## 8379 100623 10489 TO lisa.yoho@enron.com
## 8380 100624 10489 TO chris.long@enron.com
## 8381 100625 10489 TO linda.robertson@enron.com
## 8382 100645 10494 TO bob.bowen@enron.com
## 8383 100646 10494 TO laurel.adams@enron.com
## 8384 100647 10494 TO andrea.guillen@enron.com
## 8385 100648 10494 TO larry.hunter@enron.com
## 8386 100649 10494 TO gordon.heaney@enron.com
## 8387 100650 10494 TO janie.aguayo@enron.com
## 8388 100651 10494 TO derek.bailey@enron.com
## 8389 100652 10494 TO diane.anderson@enron.com
## 8390 100653 10494 TO scott.tackett@enron.com
## 8391 100654 10494 TO celeste.cisneros@enron.com
## 8392 100655 10494 TO julie.brewer@enron.com
## 8393 100656 10494 TO jason.fischer@enron.com
## 8394 100657 10494 TO jorge.garcia@enron.com
## 8395 100658 10494 TO kimberly.hundl@enron.com
## 8396 100659 10494 TO bianca.ornelas@enron.com
## 8397 100660 10494 TO melissa.murphy@enron.com
## 8398 100661 10494 TO dianne.seib@enron.com
## 8399 100662 10494 TO kim.theriot@enron.com
## 8400 100663 10494 TO jean.bell@enron.com
## 8401 100664 10494 TO sharen.cason@enron.com
## 8402 100665 10494 TO melinda.whalen@enron.com
## 8403 100666 10494 TO stephanie.piwetz@enron.com
## 8404 100667 10494 TO melissa.rodriguez@enron.com
## 8405 100668 10494 TO tiffany.williams@enron.com
## 8406 100669 10494 TO william.bradford@enron.com
## 8407 100670 10494 TO debbie.brackett@enron.com
## 8408 100671 10494 TO tanya.rohauer@enron.com
## 8409 100672 10494 TO brant.reves@enron.com
## 8410 100673 10494 TO russell.diamond@enron.com
## 8411 100674 10494 TO lesli.campbell@enron.com
## 8412 100675 10494 TO wendi.lebrocq@enron.com
## 8413 100676 10494 TO edward.sacks@enron.com
## 8414 100677 10494 TO veronica.espinoza@enron.com
## 8415 100678 10494 TO veronica.gonzalez@enron.com
## 8416 100679 10494 TO paul.radous@enron.com
## 8417 100680 10494 TO jason.williams@enron.com
## 8418 100681 10494 TO rudwell.johnson@enron.com
## 8419 100682 10494 TO darren.vanek@enron.com
## 8420 100683 10494 TO aparna.rajaram@enron.com
## 8421 100684 10494 TO wendy.conwell@enron.com
## 8422 100685 10494 TO ken.curry@enron.com
## 8423 100686 10494 TO tom.moran@enron.com
## 8424 100687 10494 TO nidia.mendoza@enron.com
## 8425 100688 10494 TO angela.brown@enron.com
## 8426 100689 10494 TO tracy.ngo@enron.com
## 8427 100690 10494 TO shemeika.landry@enron.com
## 8428 100691 10494 TO randy.otto@enron.com
## 8429 100692 10494 TO marilyn.colbert@enron.com
## 8430 100693 10494 TO diane.ellstrom@enron.com
## 8431 100694 10494 TO lynn.shivers@enron.com
## 8432 100695 10494 TO bill.hare@enron.com
## 8433 100696 10494 TO leslie.reeves@enron.com
## 8434 100697 10494 TO jason.moore@enron.com
## 8435 100698 10494 TO samuel.schott@enron.com
## 8436 100699 10494 TO anthony.campos@enron.com
## 8437 100700 10494 TO bernice.rodriguez@enron.com
## 8438 100701 10494 TO dale.neuner@enron.com
## 8439 100702 10494 TO karen.lambert@enron.com
## 8440 100703 10494 TO carrie.southard@enron.com
## 8441 100704 10494 TO amber.ebow@enron.com
## 8442 100705 10494 TO stacey.richardson@enron.com
## 8443 100706 10494 TO lisa.lees@enron.com
## 8444 100707 10494 TO camille.gerard@enron.com
## 8445 100708 10494 TO georgi.landau@enron.com
## 8446 100709 10494 TO cheryl.johnson@enron.com
## 8447 100710 10494 TO stephanie.sever@enron.com
## 8448 100711 10494 TO sharon.crawford@enron.com
## 8449 100712 10494 TO linda.sietzema@enron.com
## 8450 100713 10494 TO brent.hendry@enron.com
## 8451 100714 10494 TO sara.shackleton@enron.com
## 8452 100715 10494 TO mark.e.taylor@enron.com
## 8453 100716 10494 TO susan.bailey@enron.com
## 8454 100717 10494 TO mary.cook@enron.com
## 8455 100718 10494 TO tana.jones@enron.com
## 8456 100719 10494 TO francisco.leite@enron.com
## 8457 100720 10494 TO cheryl.nelson@enron.com
## 8458 100721 10494 TO frank.sayre@enron.com
## 8459 100722 10494 TO angela.davis@enron.com
## 8460 100723 10494 TO holly.keiser@enron.com
## 8461 100724 10494 TO marie.heard@enron.com
## 8462 100725 10495 TO mark.e.taylor@enron.com
## 8463 101163 10543 TO leslie.hansen@enron.com
## 8464 101164 10543 CC mark.e.taylor@enron.com
## 8465 101165 10543 BCC mark.e.taylor@enron.com
## 8466 101549 10566 TO mark.e.taylor@enron.com
## 8467 101579 10574 TO bob.bowen@enron.com
## 8468 101580 10574 TO laurel.adams@enron.com
## 8469 101581 10574 TO andrea.guillen@enron.com
## 8470 101582 10574 TO larry.hunter@enron.com
## 8471 101583 10574 TO jarrod.cyprow@enron.com
## 8472 101584 10574 TO gordon.heaney@enron.com
## 8473 101585 10574 TO janie.aguayo@enron.com
## 8474 101586 10574 TO derek.bailey@enron.com
## 8475 101587 10574 TO diane.anderson@enron.com
## 8476 101588 10574 TO kevin.meredith@enron.com
## 8477 101589 10574 TO scott.tackett@enron.com
## 8478 101590 10574 TO celeste.cisneros@enron.com
## 8479 101591 10574 TO william.bradford@enron.com
## 8480 101592 10574 TO debbie.brackett@enron.com
## 8481 101593 10574 TO tanya.rohauer@enron.com
## 8482 101594 10574 TO brant.reves@enron.com
## 8483 101595 10574 TO rod.nelson@enron.com
## 8484 101596 10574 TO tracy.ngo@enron.com
## 8485 101597 10574 TO john.suttle@enron.com
## 8486 101598 10574 TO russell.diamond@enron.com
## 8487 101599 10574 TO lesli.campbell@enron.com
## 8488 101600 10574 TO wendi.lebrocq@enron.com
## 8489 101601 10574 TO edward.sacks@enron.com
## 8490 101602 10574 TO james.copeland@enron.com
## 8491 101603 10574 TO veronica.espinoza@enron.com
## 8492 101604 10574 TO veronica.gonzalez@enron.com
## 8493 101605 10574 TO jane.wilhite@enron.com
## 8494 101606 10574 TO paul.radous@enron.com
## 8495 101607 10574 TO marilyn.colbert@enron.com
## 8496 101608 10574 TO diane.ellstrom@enron.com
## 8497 101609 10574 TO lynn.shivers@enron.com
## 8498 101610 10574 TO bill.hare@enron.com
## 8499 101611 10574 TO leslie.reeves@enron.com
## 8500 101612 10574 TO jason.moore@enron.com
## 8501 101613 10574 TO dianne.seib@enron.com
## 8502 101614 10574 TO samuel.schott@enron.com
## 8503 101615 10574 TO anthony.campos@enron.com
## 8504 101616 10574 TO bernice.rodriguez@enron.com
## 8505 101617 10574 TO mary.gosnell@enron.com
## 8506 101618 10574 TO dale.neuner@enron.com
## 8507 101619 10574 TO karen.lambert@enron.com
## 8508 101620 10574 TO frank.davis@enron.com
## 8509 101621 10574 TO carrie.southard@enron.com
## 8510 101622 10574 TO amber.ebow@enron.com
## 8511 101623 10574 TO adnan.patel@enron.com
## 8512 101624 10574 TO melissa.murphy@enron.com
## 8513 101625 10574 TO stacey.richardson@enron.com
## 8514 101626 10574 TO bridgette.anderson@enron.com
## 8515 101627 10574 TO lisa.lees@enron.com
## 8516 101628 10574 TO camille.gerard@enron.com
## 8517 101629 10574 TO georgi.landau@enron.com
## 8518 101630 10574 TO brent.hendry@enron.com
## 8519 101631 10574 TO sara.shackleton@enron.com
## 8520 101632 10574 TO mark.e.taylor@enron.com
## 8521 101633 10574 TO carol.clair@enron.com
## 8522 101634 10574 TO susan.bailey@enron.com
## 8523 101635 10574 TO mary.cook@enron.com
## 8524 101636 10574 TO samantha.boyd@enron.com
## 8525 101637 10574 TO robert.bruce@enron.com
## 8526 101638 10574 TO tana.jones@enron.com
## 8527 101639 10574 TO taffy.milligan@enron.com
## 8528 101640 10574 TO francisco.leite@enron.com
## 8529 101641 10574 TO cheryl.nelson@enron.com
## 8530 102161 10626 TO bob.bowen@enron.com
## 8531 102162 10626 TO laurel.adams@enron.com
## 8532 102163 10626 TO andrea.guillen@enron.com
## 8533 102164 10626 TO larry.hunter@enron.com
## 8534 102165 10626 TO jarrod.cyprow@enron.com
## 8535 102166 10626 TO gordon.heaney@enron.com
## 8536 102167 10626 TO janie.aguayo@enron.com
## 8537 102168 10626 TO derek.bailey@enron.com
## 8538 102169 10626 TO diane.anderson@enron.com
## 8539 102170 10626 TO kevin.meredith@enron.com
## 8540 102171 10626 TO scott.tackett@enron.com
## 8541 102172 10626 TO celeste.cisneros@enron.com
## 8542 102173 10626 TO william.bradford@enron.com
## 8543 102174 10626 TO debbie.brackett@enron.com
## 8544 102175 10626 TO tanya.rohauer@enron.com
## 8545 102176 10626 TO brant.reves@enron.com
## 8546 102177 10626 TO rod.nelson@enron.com
## 8547 102178 10626 TO tracy.ngo@enron.com
## 8548 102179 10626 TO john.suttle@enron.com
## 8549 102180 10626 TO russell.diamond@enron.com
## 8550 102181 10626 TO lesli.campbell@enron.com
## 8551 102182 10626 TO wendi.lebrocq@enron.com
## 8552 102183 10626 TO edward.sacks@enron.com
## 8553 102184 10626 TO james.copeland@enron.com
## 8554 102185 10626 TO veronica.espinoza@enron.com
## 8555 102186 10626 TO veronica.gonzalez@enron.com
## 8556 102187 10626 TO jane.wilhite@enron.com
## 8557 102188 10626 TO paul.radous@enron.com
## 8558 102189 10626 TO mary.solmonson@enron.com
## 8559 102190 10626 TO marilyn.colbert@enron.com
## 8560 102191 10626 TO diane.ellstrom@enron.com
## 8561 102192 10626 TO lynn.shivers@enron.com
## 8562 102193 10626 TO bill.hare@enron.com
## 8563 102194 10626 TO leslie.reeves@enron.com
## 8564 102195 10626 TO jason.moore@enron.com
## 8565 102196 10626 TO dianne.seib@enron.com
## 8566 102197 10626 TO samuel.schott@enron.com
## 8567 102198 10626 TO anthony.campos@enron.com
## 8568 102199 10626 TO bernice.rodriguez@enron.com
## 8569 102200 10626 TO mary.gosnell@enron.com
## 8570 102201 10626 TO dale.neuner@enron.com
## 8571 102202 10626 TO karen.lambert@enron.com
## 8572 102203 10626 TO frank.davis@enron.com
## 8573 102204 10626 TO carrie.southard@enron.com
## 8574 102205 10626 TO amber.ebow@enron.com
## 8575 102206 10626 TO adnan.patel@enron.com
## 8576 102207 10626 TO melissa.murphy@enron.com
## 8577 102208 10626 TO stacey.richardson@enron.com
## 8578 102209 10626 TO bridgette.anderson@enron.com
## 8579 102210 10626 TO lisa.lees@enron.com
## 8580 102211 10626 TO camille.gerard@enron.com
## 8581 102212 10626 TO georgi.landau@enron.com
## 8582 102213 10626 TO brent.hendry@enron.com
## 8583 102214 10626 TO sara.shackleton@enron.com
## 8584 102215 10626 TO mark.e.taylor@enron.com
## 8585 102216 10626 TO carol.clair@enron.com
## 8586 102217 10626 TO susan.bailey@enron.com
## 8587 102218 10626 TO mary.cook@enron.com
## 8588 102219 10626 TO samantha.boyd@enron.com
## 8589 102220 10626 TO robert.bruce@enron.com
## 8590 102221 10626 TO tana.jones@enron.com
## 8591 102222 10626 TO taffy.milligan@enron.com
## 8592 102226 10628 TO mark.e.taylor@enron.com
## 8593 102415 10644 TO mark.e.taylor@enron.com
## 8594 102661 10660 TO dmitchell@cwt.com
## 8595 102671 10664 TO michelle.blaine@enron.com
## 8596 102672 10664 CC mark.e.taylor@enron.com
## 8597 102673 10664 BCC mark.e.taylor@enron.com
## 8598 103640 10752 TO lance.schuler-legal@enron.com
## 8599 103641 10752 TO sheila.tweed@enron.com
## 8600 103642 10752 TO mark.e.taylor@enron.com
## 8601 103643 10752 TO elizabeth.sager@enron.com
## 8602 103644 10752 TO alan.aronowitz@enron.com
## 8603 103645 10752 TO julia.murray@enron.com
## 8604 103646 10752 TO travis.mccullough@enron.com
## 8605 103647 10752 TO jeffrey.hodge@enron.com
## 8606 103701 10763 TO sheri.thomas@enron.com
## 8607 103702 10763 CC leslie.hansen@enron.com
## 8608 103703 10763 CC mark.e.taylor@enron.com
## 8609 103704 10763 CC jennifer.denny@enron.com
## 8610 103705 10763 BCC leslie.hansen@enron.com
## 8611 103706 10763 BCC mark.e.taylor@enron.com
## 8612 103707 10763 BCC jennifer.denny@enron.com
## 8613 104405 10808 TO justin.boyd@enron.com
## 8614 104406 10808 CC bob.shults@enron.com
## 8615 104407 10808 CC mark.e.taylor@enron.com
## 8616 104408 10808 CC amita.gosalia@enron.com
## 8617 104409 10808 BCC bob.shults@enron.com
## 8618 104410 10808 BCC mark.e.taylor@enron.com
## 8619 104411 10808 BCC amita.gosalia@enron.com
## 8620 104417 10810 TO mark.e.taylor@enron.com
## 8621 104418 10811 TO mark.e.taylor@enron.com
## 8622 104762 10846 TO alan.aronowitz@enron.com
## 8623 104763 10846 TO barbara.gray@enron.com
## 8624 104764 10846 TO jeffrey.hodge@enron.com
## 8625 104765 10846 TO lance.schuler-legal@enron.com
## 8626 104766 10846 TO travis.mccullough@enron.com
## 8627 104767 10846 TO mark.e.taylor@enron.com
## 8628 104768 10846 TO sheila.tweed@enron.com
## 8629 104769 10846 TO richard.b.sanders@enron.com
## 8630 104770 10846 TO elizabeth.sager@enron.com
## 8631 104771 10846 TO julia.murray@enron.com
## 8632 104772 10846 CC peter.keohane@enron.com
## 8633 104773 10846 CC daniel.rogers@enron.com
## 8634 104774 10846 CC mark.frevert@enron.com
## 8635 104775 10846 BCC peter.keohane@enron.com
## 8636 104776 10846 BCC daniel.rogers@enron.com
## 8637 104777 10846 BCC mark.frevert@enron.com
## 8638 104841 10865 TO alan.aronowitz@enron.com
## 8639 104842 10865 TO daniel.rogers@enron.com
## 8640 104843 10865 TO julia.murray@enron.com
## 8641 104844 10865 TO mark.e.taylor@enron.com
## 8642 104845 10865 TO travis.mccullough@enron.com
## 8643 104990 10880 TO julia.murray@enron.com
## 8644 104991 10880 TO mark.e.taylor@enron.com
## 8645 104992 10880 TO deb.korkmas@enron.com
## 8646 104993 10880 TO jeffrey.hodge@enron.com
## 8647 104994 10880 TO alan.aronowitz@enron.com
## 8648 104995 10880 TO sheila.tweed@enron.com
## 8649 104996 10880 CC david.w.delainey@enron.com
## 8650 104997 10880 BCC david.w.delainey@enron.com
## 8651 105554 10931 TO mark.e.taylor@enron.com
## 8652 105565 10936 TO mark.e.taylor@enron.com
## 8653 105566 10936 TO jeffrey.hodge@enron.com
## 8654 105567 10936 TO tana.jones@enron.com
## 8655 105568 10937 TO carey.metz@enron.com
## 8656 105569 10937 CC richard.b.sanders@enron.com
## 8657 105570 10937 CC mark.e.taylor@enron.com
## 8658 105571 10937 CC jeffrey.hodge@enron.com
## 8659 105572 10937 CC tana.jones@enron.com
## 8660 105573 10937 BCC richard.b.sanders@enron.com
## 8661 105574 10937 BCC mark.e.taylor@enron.com
## 8662 105575 10937 BCC jeffrey.hodge@enron.com
## 8663 105576 10937 BCC tana.jones@enron.com
## 8664 105591 10946 TO mark.evans@enron.com
## 8665 105592 10946 TO justin.boyd@enron.com
## 8666 105593 10946 TO mark.e.taylor@enron.com
## 8667 105594 10946 TO travis.mccullough@enron.com
## 8668 105595 10946 TO anne.koehler@enron.com
## 8669 105596 10946 CC andy.zipper@enron.com
## 8670 105597 10946 CC david.forster@enron.com
## 8671 105598 10946 CC amita.gosalia@enron.com
## 8672 105599 10946 CC lara.fields@enron.com
## 8673 105600 10946 CC brent.hendry@enron.com
## 8674 105601 10946 BCC andy.zipper@enron.com
## 8675 105602 10946 BCC david.forster@enron.com
## 8676 105603 10946 BCC amita.gosalia@enron.com
## 8677 105604 10946 BCC lara.fields@enron.com
## 8678 105605 10946 BCC brent.hendry@enron.com
## 8679 105609 10948 TO mark.e.taylor@enron.com
## 8680 105610 10948 TO julia.murray@enron.com
## 8681 105611 10948 TO e..haedicke@enron.com
## 8682 105612 10948 TO alan.aronowitz@enron.com
## 8683 105613 10948 TO jeffrey.hodge@enron.com
## 8684 105614 10948 TO elizabeth.sager@enron.com
## 8685 105615 10948 TO lance.shuler@enron.com
## 8686 105616 10948 TO barbara.gray@enron.com
## 8687 105619 10951 TO mark.e.taylor@enron.com
## 8688 105933 10972 TO steve.hotte@enron.com
## 8689 105934 10972 CC dale.neuner@enron.com
## 8690 105935 10972 CC mark.e.taylor@enron.com
## 8691 105936 10972 BCC dale.neuner@enron.com
## 8692 105937 10972 BCC mark.e.taylor@enron.com
## 8693 105938 10973 TO mark.e.taylor@enron.com
## 8694 106134 11001 TO mark.e.taylor@enron.com
## 8695 106262 11031 TO mark.e.taylor@enron.com
## 8696 106263 11031 TO jeffrey.hodge@enron.com
## 8697 106264 11031 TO elizabeth.sager@enron.com
## 8698 106265 11031 TO mark.evans@enron.com
## 8699 106266 11031 TO paul.simons@enron.com
## 8700 106267 11031 TO justin.boyd@enron.com
## 8701 106364 11044 TO mark.e.taylor@enron.com
## 8702 106365 11044 TO mark.evans@enron.com
## 8703 106366 11044 CC mark.e.taylor@enron.com
## 8704 106367 11044 CC bruce.garner@enron.com
## 8705 106368 11044 BCC mark.e.taylor@enron.com
## 8706 106369 11044 BCC bruce.garner@enron.com
## 8707 106373 11046 TO mark.e.taylor@enron.com
## 8708 106491 11055 TO mark.e.taylor@enron.com
## 8709 106933 11118 TO mark.e.taylor@enron.com
## 8710 106937 11120 TO mark.e.taylor@enron.com
## 8711 106989 11128 TO mark.e.taylor@enron.com
## 8712 106990 11129 TO mark.e.taylor@enron.com
## 8713 107297 11191 TO amita.gosalia@enron.com
## 8714 107298 11191 CC mark.e.taylor@enron.com
## 8715 107299 11191 BCC mark.e.taylor@enron.com
## 8716 107888 11242 TO andy.zipper@enron.com
## 8717 107889 11242 CC david.forster@enron.com
## 8718 107890 11242 CC mark.e.taylor@enron.com
## 8719 107891 11242 BCC david.forster@enron.com
## 8720 107892 11242 BCC mark.e.taylor@enron.com
## 8721 108055 11276 TO mark.e.taylor@enron.com
## 8722 108056 11276 TO e..haedicke@enron.com
## 8723 108057 11276 CC andy.zipper@enron.com
## 8724 108058 11276 CC david.forster@enron.com
## 8725 108059 11276 BCC andy.zipper@enron.com
## 8726 108060 11276 BCC david.forster@enron.com
## 8727 108198 11303 TO mark.e.taylor@enron.com
## 8728 108199 11303 TO alan.aronowitz@enron.com
## 8729 108200 11303 TO travis.mccullough@enron.com
## 8730 108201 11303 CC janette.elbertson@enron.com
## 8731 108202 11303 BCC janette.elbertson@enron.com
## 8732 108275 11322 TO leslie.hansen@enron.com
## 8733 108276 11322 CC mark.e.taylor@enron.com
## 8734 108277 11322 BCC mark.e.taylor@enron.com
## 8735 108540 11359 TO mark.e.taylor@enron.com
## 8736 108545 11362 TO e..haedicke@enron.com
## 8737 108546 11362 TO mark.e.taylor@enron.com
## 8738 108547 11362 CC andy.zipper@enron.com
## 8739 108548 11362 CC mark.palmer@enron.com
## 8740 108549 11362 BCC andy.zipper@enron.com
## 8741 108550 11362 BCC mark.palmer@enron.com
## 8742 108586 11373 TO justin.boyd@enron.com
## 8743 108587 11373 TO mark.e.taylor@enron.com
## 8744 108588 11373 CC kal.shah@enron.com
## 8745 108589 11373 BCC kal.shah@enron.com
## 8746 108590 11374 TO tana.jones@enron.com
## 8747 108591 11374 CC tracy.ngo@enron.com
## 8748 108592 11374 CC mark.e.taylor@enron.com
## 8749 108593 11374 BCC tracy.ngo@enron.com
## 8750 108594 11374 BCC mark.e.taylor@enron.com
## 8751 108675 11387 TO mark.e.taylor@enron.com
## 8752 108676 11387 CC leslie.hansen@enron.com
## 8753 108677 11387 BCC leslie.hansen@enron.com
## 8754 108820 11405 TO mark.e.taylor@enron.com
## 8755 108821 11405 TO e..haedicke@enron.com
## 8756 108949 11429 TO mark.e.taylor@enron.com
## 8757 109033 11439 TO mark.e.taylor@enron.com
## 8758 109034 11439 TO sara.shackleton@enron.com
## 8759 109048 11444 TO gary.taylor@enron.com
## 8760 109049 11444 CC mark.e.taylor@enron.com
## 8761 109050 11444 BCC mark.e.taylor@enron.com
## 8762 109382 11490 TO andy.zipper@enron.com
## 8763 109383 11490 TO travis.mccullough@enron.com
## 8764 109384 11490 TO mark.e.taylor@enron.com
## 8765 109434 11507 TO mark.e.taylor@enron.com
## 8766 109435 11507 TO sara.shackleton@enron.com
## 8767 109448 11510 TO mark.e.taylor@enron.com
## 8768 109456 11512 TO mark.e.taylor@enron.com
## 8769 109458 11514 TO mark.e.taylor@enron.com
## 8770 109502 11520 TO mark.e.taylor@enron.com
## 8771 109503 11520 CC seth.hurwitz@enron.com
## 8772 109504 11520 BCC seth.hurwitz@enron.com
## 8773 109517 11523 TO mark.e.taylor@enron.com
## 8774 109533 11529 TO david.dupre@enron.com
## 8775 109534 11529 CC mark.e.taylor@enron.com
## 8776 109535 11529 CC jefferson.sorenson@enron.com
## 8777 109536 11529 BCC mark.e.taylor@enron.com
## 8778 109537 11529 BCC jefferson.sorenson@enron.com
## 8779 109640 11538 TO mark.e.taylor@enron.com
## 8780 109641 11539 TO david.forster@enron.com
## 8781 109642 11539 CC mark.e.taylor@enron.com
## 8782 109643 11539 BCC mark.e.taylor@enron.com
## 8783 109665 11544 TO mark.e.taylor@enron.com
## 8784 109666 11544 CC taffy.milligan@enron.com
## 8785 109667 11544 BCC taffy.milligan@enron.com
## 8786 109740 11554 TO tana.jones@enron.com
## 8787 109741 11554 CC mark.e.taylor@enron.com
## 8788 109742 11554 CC frank.davis@enron.com
## 8789 109743 11554 CC suzanne.adams@enron.com
## 8790 109744 11554 BCC mark.e.taylor@enron.com
## 8791 109745 11554 BCC frank.davis@enron.com
## 8792 109746 11554 BCC suzanne.adams@enron.com
## 8793 109780 11558 TO alove@talisman-energy.com
## 8794 109781 11558 CC mark.e.taylor@enron.com
## 8795 109782 11558 BCC mark.e.taylor@enron.com
## 8796 109785 11561 TO travis.mccullough@enron.com
## 8797 109786 11561 TO mark.e.taylor@enron.com
## 8798 109787 11562 TO travis.mccullough@enron.com
## 8799 109788 11562 TO mark.e.taylor@enron.com
## 8800 110061 11565 TO david.pope@enron.com
## 8801 110062 11565 CC john.sherriff@enron.com
## 8802 110063 11565 CC dave.samuels@enron.com
## 8803 110064 11565 CC david.forster@enron.com
## 8804 110065 11565 CC adam.tyrrell@enron.com
## 8805 110066 11565 CC elena.kapralova@enron.com
## 8806 110067 11565 CC kal.shah@enron.com
## 8807 110068 11565 CC mark.e.taylor@enron.com
## 8808 110069 11565 BCC john.sherriff@enron.com
## 8809 110070 11565 BCC dave.samuels@enron.com
## 8810 110071 11565 BCC david.forster@enron.com
## 8811 110072 11565 BCC adam.tyrrell@enron.com
## 8812 110073 11565 BCC elena.kapralova@enron.com
## 8813 110074 11565 BCC kal.shah@enron.com
## 8814 110075 11565 BCC mark.e.taylor@enron.com
## 8815 110076 11566 TO mark.e.taylor@enron.com
## 8816 110077 11566 CC jay.webb@enron.com
## 8817 110078 11566 BCC jay.webb@enron.com
## 8818 110079 11567 TO jaime.williams@enron.com
## 8819 110080 11567 CC mark.e.taylor@enron.com
## 8820 110081 11567 CC sara.shackleton@enron.com
## 8821 110082 11567 BCC mark.e.taylor@enron.com
## 8822 110083 11567 BCC sara.shackleton@enron.com
## 8823 110101 11573 TO mark.e.taylor@enron.com
## 8824 110102 11574 TO susan.flynn@enron.com
## 8825 110103 11574 CC mark.e.taylor@enron.com
## 8826 110104 11574 BCC mark.e.taylor@enron.com
## 8827 110105 11575 TO mark.e.taylor@enron.com
## 8828 110123 11579 TO mary.tudon@enron.com
## 8829 110124 11579 CC tanya.rohauer@enron.com
## 8830 110125 11579 CC mark.e.taylor@enron.com
## 8831 110126 11579 CC sara.shackleton@enron.com
## 8832 110127 11579 CC leslie.hansen@enron.com
## 8833 110128 11579 CC elizabeth.sager@enron.com
## 8834 110129 11579 CC stacy.dickson@enron.com
## 8835 110130 11579 CC jeffrey.hodge@enron.com
## 8836 110131 11579 CC harry.collins@enron.com
## 8837 110132 11579 CC tana.jones@enron.com
## 8838 110133 11579 CC susan.bailey@enron.com
## 8839 110134 11579 CC samantha.boyd@enron.com
## 8840 110135 11579 BCC tanya.rohauer@enron.com
## 8841 110136 11579 BCC mark.e.taylor@enron.com
## 8842 110137 11579 BCC sara.shackleton@enron.com
## 8843 110138 11579 BCC leslie.hansen@enron.com
## 8844 110139 11579 BCC elizabeth.sager@enron.com
## 8845 110140 11579 BCC stacy.dickson@enron.com
## 8846 110141 11579 BCC jeffrey.hodge@enron.com
## 8847 110142 11579 BCC harry.collins@enron.com
## 8848 110143 11579 BCC tana.jones@enron.com
## 8849 110144 11579 BCC susan.bailey@enron.com
## 8850 110145 11579 BCC samantha.boyd@enron.com
## 8851 110149 11581 TO mark.e.taylor@enron.com
## 8852 110150 11581 TO leslie.hansen@enron.com
## 8853 110152 11583 TO mark.e.taylor@enron.com
## 8854 110153 11583 TO sara.shackleton@enron.com
## 8855 110154 11583 TO tana.jones@enron.com
## 8856 110155 11583 TO susan.bailey@enron.com
## 8857 110156 11583 TO samantha.boyd@enron.com
## 8858 110157 11584 TO mary.tudon@enron.com
## 8859 110158 11584 CC tanya.rohauer@enron.com
## 8860 110159 11584 CC sara.shackleton@enron.com
## 8861 110160 11584 CC mark.e.taylor@enron.com
## 8862 110161 11584 CC susan.bailey@enron.com
## 8863 110162 11584 CC tana.jones@enron.com
## 8864 110163 11584 CC samantha.boyd@enron.com
## 8865 110164 11584 CC jeffrey.hodge@enron.com
## 8866 110165 11584 CC stacy.dickson@enron.com
## 8867 110166 11584 CC harry.collins@enron.com
## 8868 110167 11584 CC leslie.hansen@enron.com
## 8869 110168 11584 CC elizabeth.sager@enron.com
## 8870 110169 11584 BCC tanya.rohauer@enron.com
## 8871 110170 11584 BCC sara.shackleton@enron.com
## 8872 110171 11584 BCC mark.e.taylor@enron.com
## 8873 110172 11584 BCC susan.bailey@enron.com
## 8874 110173 11584 BCC tana.jones@enron.com
## 8875 110174 11584 BCC samantha.boyd@enron.com
## 8876 110175 11584 BCC jeffrey.hodge@enron.com
## 8877 110176 11584 BCC stacy.dickson@enron.com
## 8878 110177 11584 BCC harry.collins@enron.com
## 8879 110178 11584 BCC leslie.hansen@enron.com
## 8880 110179 11584 BCC elizabeth.sager@enron.com
## 8881 110180 11585 TO mary.tudon@enron.com
## 8882 110181 11585 CC tanya.rohauer@enron.com
## 8883 110182 11585 CC sara.shackleton@enron.com
## 8884 110183 11585 CC mark.e.taylor@enron.com
## 8885 110184 11585 CC susan.bailey@enron.com
## 8886 110185 11585 CC tana.jones@enron.com
## 8887 110186 11585 CC samantha.boyd@enron.com
## 8888 110187 11585 CC jeffrey.hodge@enron.com
## 8889 110188 11585 CC stacy.dickson@enron.com
## 8890 110189 11585 CC harry.collins@enron.com
## 8891 110190 11585 CC leslie.hansen@enron.com
## 8892 110191 11585 CC elizabeth.sager@enron.com
## 8893 110192 11585 BCC tanya.rohauer@enron.com
## 8894 110193 11585 BCC sara.shackleton@enron.com
## 8895 110194 11585 BCC mark.e.taylor@enron.com
## 8896 110195 11585 BCC susan.bailey@enron.com
## 8897 110196 11585 BCC tana.jones@enron.com
## 8898 110197 11585 BCC samantha.boyd@enron.com
## 8899 110198 11585 BCC jeffrey.hodge@enron.com
## 8900 110199 11585 BCC stacy.dickson@enron.com
## 8901 110200 11585 BCC harry.collins@enron.com
## 8902 110201 11585 BCC leslie.hansen@enron.com
## 8903 110202 11585 BCC elizabeth.sager@enron.com
## 8904 110303 11601 TO derek.edmiston@enron.com
## 8905 110304 11601 TO simon.hastings@enron.com
## 8906 110305 11601 CC mark.e.taylor@enron.com
## 8907 110306 11601 CC justin.boyd@enron.com
## 8908 110307 11601 BCC mark.e.taylor@enron.com
## 8909 110308 11601 BCC justin.boyd@enron.com
## 8910 110309 11602 TO mark.e.taylor@enron.com
## 8911 110310 11602 TO justin.boyd@enron.com
## 8912 110617 11639 TO susan.flynn@enron.com
## 8913 110618 11639 CC sara.shackleton@enron.com
## 8914 110619 11639 CC mark.e.taylor@enron.com
## 8915 110620 11639 BCC sara.shackleton@enron.com
## 8916 110621 11639 BCC mark.e.taylor@enron.com
## 8917 110832 11657 TO mark.e.taylor@enron.com
## 8918 110929 11688 TO mark.e.taylor@enron.com
## 8919 110948 11691 TO sara.shackleton@enron.com
## 8920 110949 11691 TO mark.e.taylor@enron.com
## 8921 110950 11691 TO stacy.dickson@enron.com
## 8922 110951 11691 TO jeffrey.hodge@enron.com
## 8923 110952 11691 TO leslie.hansen@enron.com
## 8924 110953 11691 TO elizabeth.sager@enron.com
## 8925 110954 11691 CC larry.hunter@enron.com
## 8926 110955 11691 BCC larry.hunter@enron.com
## 8927 111218 11726 TO mark.e.taylor@enron.com
## 8928 111322 11745 TO david.forster@enron.com
## 8929 111323 11745 CC louise.kitchen@enron.com
## 8930 111324 11745 CC mark.e.taylor@enron.com
## 8931 111325 11745 CC dave.samuels@enron.com
## 8932 111326 11745 CC justin.boyd@enron.com
## 8933 111327 11745 BCC louise.kitchen@enron.com
## 8934 111328 11745 BCC mark.e.taylor@enron.com
## 8935 111329 11745 BCC dave.samuels@enron.com
## 8936 111330 11745 BCC justin.boyd@enron.com
## 8937 111355 11750 TO susan.flynn@enron.com
## 8938 111356 11750 TO susan.bailey@enron.com
## 8939 111357 11750 TO tana.jones@enron.com
## 8940 111358 11750 TO samantha.boyd@enron.com
## 8941 111359 11750 CC sara.shackleton@enron.com
## 8942 111360 11750 CC mark.e.taylor@enron.com
## 8943 111361 11750 BCC sara.shackleton@enron.com
## 8944 111362 11750 BCC mark.e.taylor@enron.com
## 8945 111425 11766 TO mark.e.taylor@enron.com
## 8946 111426 11766 CC taffy.milligan@enron.com
## 8947 111427 11766 BCC taffy.milligan@enron.com
## 8948 111452 11776 TO mark.e.taylor@enron.com
## 8949 111453 11776 CC louise.kitchen@enron.com
## 8950 111454 11776 CC lydia.cannon@enron.com
## 8951 111455 11776 CC travis.mccullough@enron.com
## 8952 111456 11776 BCC louise.kitchen@enron.com
## 8953 111457 11776 BCC lydia.cannon@enron.com
## 8954 111458 11776 BCC travis.mccullough@enron.com
## 8955 111459 11777 TO travis.mccullough@enron.com
## 8956 111460 11777 CC andy.zipper@enron.com
## 8957 111461 11777 CC lydia.cannon@enron.com
## 8958 111462 11777 CC mark.e.taylor@enron.com
## 8959 111463 11777 BCC andy.zipper@enron.com
## 8960 111464 11777 BCC lydia.cannon@enron.com
## 8961 111465 11777 BCC mark.e.taylor@enron.com
## 8962 111496 11783 TO doug.mcdowell@enron.com
## 8963 111497 11783 CC mark.e.taylor@enron.com
## 8964 111498 11783 BCC mark.e.taylor@enron.com
## 8965 111611 11800 TO sara.shackleton@enron.com
## 8966 111612 11800 TO mark.e.taylor@enron.com
## 8967 111613 11800 TO susan.flynn@enron.com
## 8968 111614 11800 TO susan.bailey@enron.com
## 8969 111615 11800 TO tana.jones@enron.com
## 8970 111621 11804 TO mark.e.taylor@enron.com
## 8971 111825 11844 TO sara.shackleton@enron.com
## 8972 111826 11844 TO mark.e.taylor@enron.com
## 8973 111827 11844 TO jason.peters@enron.com
## 8974 111843 11847 TO mark.e.taylor@enron.com
## 8975 111867 11853 TO mark.e.taylor@enron.com
## 8976 111869 11855 TO mark.e.taylor@enron.com
## 8977 111958 11864 TO greg.johnston@enron.com
## 8978 111959 11864 CC sara.shackleton@enron.com
## 8979 111960 11864 CC mark.e.taylor@enron.com
## 8980 111961 11864 BCC sara.shackleton@enron.com
## 8981 111962 11864 BCC mark.e.taylor@enron.com
## 8982 111963 11865 TO richard.b.sanders@enron.com
## 8983 111964 11865 CC sara.shackleton@enron.com
## 8984 111965 11865 CC mark.e.taylor@enron.com
## 8985 111966 11865 CC tana.jones@enron.com
## 8986 111967 11865 CC susan.bailey@enron.com
## 8987 111968 11865 CC susan.flynn@enron.com
## 8988 111969 11865 BCC sara.shackleton@enron.com
## 8989 111970 11865 BCC mark.e.taylor@enron.com
## 8990 111971 11865 BCC tana.jones@enron.com
## 8991 111972 11865 BCC susan.bailey@enron.com
## 8992 111973 11865 BCC susan.flynn@enron.com
## 8993 111995 11869 TO susan.flynn@enron.com
## 8994 111996 11869 TO susan.bailey@enron.com
## 8995 111997 11869 TO tana.jones@enron.com
## 8996 111998 11869 CC sara.shackleton@enron.com
## 8997 111999 11869 CC mark.e.taylor@enron.com
## 8998 112000 11869 BCC sara.shackleton@enron.com
## 8999 112001 11869 BCC mark.e.taylor@enron.com
## 9000 112018 11874 TO leslie.hansen@enron.com
## 9001 112019 11874 CC mark.e.taylor@enron.com
## 9002 112020 11874 BCC mark.e.taylor@enron.com
## 9003 112054 11883 TO david.forster@enron.com
## 9004 112055 11883 CC mark.e.taylor@enron.com
## 9005 112056 11883 BCC mark.e.taylor@enron.com
## 9006 112068 11888 TO mark.e.taylor@enron.com
## 9007 112069 11888 CC andy.zipper@enron.com
## 9008 112070 11888 BCC andy.zipper@enron.com
## 9009 112087 11891 TO mark.e.taylor@enron.com
## 9010 112088 11892 TO mark.e.taylor@enron.com
## 9011 112131 11900 TO chris.edmonds@truequote.com
## 9012 112132 11900 CC andy.zipper@enron.com
## 9013 112133 11900 CC travis.mccullough@enron.com
## 9014 112134 11900 CC mark.e.taylor@enron.com
## 9015 112135 11900 BCC andy.zipper@enron.com
## 9016 112136 11900 BCC travis.mccullough@enron.com
## 9017 112137 11900 BCC mark.e.taylor@enron.com
## 9018 112141 11902 TO david.forster@enron.com
## 9019 112142 11902 CC mark.e.taylor@enron.com
## 9020 112143 11902 BCC mark.e.taylor@enron.com
## 9021 112147 11904 TO david.forster@enron.com
## 9022 112148 11904 CC mark.e.taylor@enron.com
## 9023 112149 11904 BCC mark.e.taylor@enron.com
## 9024 112150 11905 TO david.forster@enron.com
## 9025 112151 11905 CC mark.e.taylor@enron.com
## 9026 112152 11905 BCC mark.e.taylor@enron.com
## 9027 112166 11911 TO susan.bailey@enron.com
## 9028 112167 11911 CC mark.e.taylor@enron.com
## 9029 112168 11911 BCC mark.e.taylor@enron.com
## 9030 112193 11915 TO david.forster@enron.com
## 9031 112194 11915 CC tana.jones@enron.com
## 9032 112195 11915 CC mark.e.taylor@enron.com
## 9033 112196 11915 BCC tana.jones@enron.com
## 9034 112197 11915 BCC mark.e.taylor@enron.com
## 9035 112316 11920 TO david.forster@enron.com
## 9036 112317 11920 CC leslie.hansen@enron.com
## 9037 112318 11920 CC tana.jones@enron.com
## 9038 112319 11920 CC mark.e.taylor@enron.com
## 9039 112320 11920 BCC leslie.hansen@enron.com
## 9040 112321 11920 BCC tana.jones@enron.com
## 9041 112322 11920 BCC mark.e.taylor@enron.com
## 9042 112323 11921 TO mark.e.taylor@enron.com
## 9043 112324 11922 TO william.bradford@enron.com
## 9044 112325 11922 TO tanya.rohauer@enron.com
## 9045 112326 11922 CC sara.shackleton@enron.com
## 9046 112327 11922 CC mark.e.taylor@enron.com
## 9047 112328 11922 CC tana.jones@enron.com
## 9048 112329 11922 CC susan.flynn@enron.com
## 9049 112330 11922 CC susan.bailey@enron.com
## 9050 112331 11922 BCC sara.shackleton@enron.com
## 9051 112332 11922 BCC mark.e.taylor@enron.com
## 9052 112333 11922 BCC tana.jones@enron.com
## 9053 112334 11922 BCC susan.flynn@enron.com
## 9054 112335 11922 BCC susan.bailey@enron.com
## 9055 112346 11925 TO taffy.milligan@enron.com
## 9056 112347 11925 CC mark.e.taylor@enron.com
## 9057 112348 11925 CC sara.shackleton@enron.com
## 9058 112349 11925 BCC mark.e.taylor@enron.com
## 9059 112350 11925 BCC sara.shackleton@enron.com
## 9060 112351 11926 TO mark.e.taylor@enron.com
## 9061 112352 11927 TO david.forster@enron.com
## 9062 112353 11927 CC mark.e.taylor@enron.com
## 9063 112354 11927 CC tana.jones@enron.com
## 9064 112355 11927 BCC mark.e.taylor@enron.com
## 9065 112356 11927 BCC tana.jones@enron.com
## 9066 112397 11933 TO mark.e.taylor@enron.com
## 9067 112525 11946 TO sara.shackleton@enron.com
## 9068 112526 11946 CC mark.e.taylor@enron.com
## 9069 112527 11946 BCC mark.e.taylor@enron.com
## 9070 112617 11957 TO david.forster@enron.com
## 9071 112618 11957 CC mark.e.taylor@enron.com
## 9072 112619 11957 CC leslie.hansen@enron.com
## 9073 112620 11957 BCC mark.e.taylor@enron.com
## 9074 112621 11957 BCC leslie.hansen@enron.com
## 9075 112622 11958 TO susan.flynn@enron.com
## 9076 112623 11958 TO susan.bailey@enron.com
## 9077 112624 11958 TO tana.jones@enron.com
## 9078 112625 11958 CC sara.shackleton@enron.com
## 9079 112626 11958 CC mark.e.taylor@enron.com
## 9080 112627 11958 CC taffy.milligan@enron.com
## 9081 112628 11958 BCC sara.shackleton@enron.com
## 9082 112629 11958 BCC mark.e.taylor@enron.com
## 9083 112630 11958 BCC taffy.milligan@enron.com
## 9084 112801 11981 TO louise.kitchen@enron.com
## 9085 112802 11981 TO david.forster@enron.com
## 9086 112803 11981 CC bob.shults@enron.com
## 9087 112804 11981 CC mark.e.taylor@enron.com
## 9088 112805 11981 BCC bob.shults@enron.com
## 9089 112806 11981 BCC mark.e.taylor@enron.com
## 9090 112822 11985 TO mark.e.taylor@enron.com
## 9091 112828 11987 TO mark.e.taylor@enron.com
## 9092 112829 11987 TO sara.shackleton@enron.com
## 9093 112830 11988 TO david.forster@enron.com
## 9094 112831 11988 CC mark.e.taylor@enron.com
## 9095 112832 11988 BCC mark.e.taylor@enron.com
## 9096 112833 11989 TO carol.clair@enron.com
## 9097 112834 11989 CC david.forster@enron.com
## 9098 112835 11989 CC mark.e.taylor@enron.com
## 9099 112836 11989 CC bob.shults@enron.com
## 9100 112837 11989 BCC david.forster@enron.com
## 9101 112838 11989 BCC mark.e.taylor@enron.com
## 9102 112839 11989 BCC bob.shults@enron.com
## 9103 113083 12017 TO mark.e.taylor@enron.com
## 9104 113186 12031 TO mark.e.taylor@enron.com
## 9105 113187 12031 CC shirley.mckernan@enron.com
## 9106 113188 12031 BCC shirley.mckernan@enron.com
## 9107 113194 12033 TO nikki.slade@enron.com
## 9108 113195 12033 CC mark.e.taylor@enron.com
## 9109 113196 12033 CC taffy.milligan@enron.com
## 9110 113197 12033 BCC mark.e.taylor@enron.com
## 9111 113198 12033 BCC taffy.milligan@enron.com
## 9112 113205 12037 TO mark.e.taylor@enron.com
## 9113 113288 12049 TO mark.e.taylor@enron.com
## 9114 113444 12073 TO tana.jones@enron.com
## 9115 113445 12073 CC sara.shackleton@enron.com
## 9116 113446 12073 CC mark.e.taylor@enron.com
## 9117 113447 12073 BCC sara.shackleton@enron.com
## 9118 113448 12073 BCC mark.e.taylor@enron.com
## 9119 113610 12087 TO jefferson.sorenson@enron.com
## 9120 113611 12087 CC mary.gosnell@enron.com
## 9121 113612 12087 CC bob.bowen@enron.com
## 9122 113613 12087 CC mark.e.taylor@enron.com
## 9123 113614 12087 CC sara.shackleton@enron.com
## 9124 113615 12087 CC marie.heard@enron.com
## 9125 113616 12087 CC derek.davies@enron.com
## 9126 113617 12087 BCC mary.gosnell@enron.com
## 9127 113618 12087 BCC bob.bowen@enron.com
## 9128 113619 12087 BCC mark.e.taylor@enron.com
## 9129 113620 12087 BCC sara.shackleton@enron.com
## 9130 113621 12087 BCC marie.heard@enron.com
## 9131 113622 12087 BCC derek.davies@enron.com
## 9132 113624 12089 TO mark.e.taylor@enron.com
## 9133 113734 12101 TO susan.bailey@enron.com
## 9134 113735 12101 CC sara.shackleton@enron.com
## 9135 113736 12101 CC mark.e.taylor@enron.com
## 9136 113737 12101 BCC sara.shackleton@enron.com
## 9137 113738 12101 BCC mark.e.taylor@enron.com
## 9138 113748 12103 TO susan.flynn@enron.com
## 9139 113749 12103 TO marie.heard@enron.com
## 9140 113750 12103 TO tana.jones@enron.com
## 9141 113751 12103 TO susan.bailey@enron.com
## 9142 113752 12103 TO mark.e.taylor@enron.com
## 9143 113753 12103 TO sara.shackleton@enron.com
## 9144 113754 12103 CC taffy.milligan@enron.com
## 9145 113755 12103 BCC taffy.milligan@enron.com
## 9146 113863 12115 TO shari.stack@enron.com
## 9147 113864 12115 CC mark.e.taylor@enron.com
## 9148 113865 12115 BCC mark.e.taylor@enron.com
## 9149 113884 12121 TO rod.nelson@enron.com
## 9150 113885 12121 CC lisa.mellencamp@enron.com
## 9151 113886 12121 CC william.bradford@enron.com
## 9152 113887 12121 CC mark.e.taylor@enron.com
## 9153 113888 12121 BCC lisa.mellencamp@enron.com
## 9154 113889 12121 BCC william.bradford@enron.com
## 9155 113890 12121 BCC mark.e.taylor@enron.com
## 9156 113912 12129 TO mark.e.taylor@enron.com
## 9157 113977 12137 TO mark.e.taylor@enron.com
## 9158 114013 12144 TO mark.e.taylor@enron.com
## 9159 114014 12144 CC suzanne.adams@enron.com
## 9160 114015 12144 BCC suzanne.adams@enron.com
## 9161 114016 12145 TO lisa.mellencamp@enron.com
## 9162 114017 12145 CC mark.e.taylor@enron.com
## 9163 114018 12145 BCC mark.e.taylor@enron.com
## 9164 114066 12160 TO david.forster@enron.com
## 9165 114067 12160 CC mark.e.taylor@enron.com
## 9166 114068 12160 BCC mark.e.taylor@enron.com
## 9167 114104 12168 TO mark.e.taylor@enron.com
## 9168 114105 12169 TO mark.e.taylor@enron.com
## 9169 114106 12170 TO mark.e.taylor@enron.com
## 9170 114137 12173 TO mark.e.taylor@enron.com
## 9171 114375 12209 TO tana.jones@enron.com
## 9172 114376 12209 CC sara.shackleton@enron.com
## 9173 114377 12209 CC mark.e.taylor@enron.com
## 9174 114378 12209 BCC sara.shackleton@enron.com
## 9175 114379 12209 BCC mark.e.taylor@enron.com
## 9176 114380 12210 TO mark.e.taylor@enron.com
## 9177 114381 12210 TO lisa.mellencamp@enron.com
## 9178 114382 12210 TO jeffrey.hodge@enron.com
## 9179 114383 12210 TO elizabeth.sager@enron.com
## 9180 114438 12214 TO mark.e.taylor@enron.com
## 9181 114439 12214 CC tana.jones@enron.com
## 9182 114440 12214 BCC tana.jones@enron.com
## 9183 114477 12224 TO richard.b.sanders@enron.com
## 9184 114478 12224 TO mark.e.taylor@enron.com
## 9185 114608 12250 TO susan.flynn@enron.com
## 9186 114609 12250 TO susan.bailey@enron.com
## 9187 114610 12250 CC mark.e.taylor@enron.com
## 9188 114611 12250 CC sara.shackleton@enron.com
## 9189 114612 12250 CC shari.stack@enron.com
## 9190 114613 12250 CC marie.heard@enron.com
## 9191 114614 12250 CC tana.jones@enron.com
## 9192 114615 12250 BCC mark.e.taylor@enron.com
## 9193 114616 12250 BCC sara.shackleton@enron.com
## 9194 114617 12250 BCC shari.stack@enron.com
## 9195 114618 12250 BCC marie.heard@enron.com
## 9196 114619 12250 BCC tana.jones@enron.com
## 9197 114620 12251 TO marie.heard@enron.com
## 9198 114621 12251 CC mark.e.taylor@enron.com
## 9199 114622 12251 BCC mark.e.taylor@enron.com
## 9200 114664 12257 TO lisa.mellencamp@enron.com
## 9201 114665 12257 CC mark.e.taylor@enron.com
## 9202 114666 12257 BCC mark.e.taylor@enron.com
## 9203 114764 12272 TO mark.e.taylor@enron.com
## 9204 114772 12278 TO jeffrey.hodge@enron.com
## 9205 114773 12278 CC mark.e.taylor@enron.com
## 9206 114774 12278 CC lisa.mellencamp@enron.com
## 9207 114775 12278 BCC mark.e.taylor@enron.com
## 9208 114776 12278 BCC lisa.mellencamp@enron.com
## 9209 114791 12281 TO david.forster@enron.com
## 9210 114792 12281 CC mark.e.taylor@enron.com
## 9211 114793 12281 BCC mark.e.taylor@enron.com
## 9212 114842 12292 TO mark.e.taylor@enron.com
## 9213 114873 12300 TO mark.e.taylor@enron.com
## 9214 114886 12303 TO louise.kitchen@enron.com
## 9215 114887 12303 CC jay.webb@enron.com
## 9216 114888 12303 CC mark.e.taylor@enron.com
## 9217 114889 12303 CC michael.guadarrama@enron.com
## 9218 114890 12303 CC jarod.jenson@enron.com
## 9219 114891 12303 CC michael.belmont@enron.com
## 9220 114892 12303 CC kevin.montagne@enron.com
## 9221 114893 12303 CC awais.omar@enron.com
## 9222 114894 12303 CC paul.goddard@enron.com
## 9223 114895 12303 CC marcello.romano@enron.com
## 9224 114896 12303 CC mark.dilworth@enron.com
## 9225 114897 12303 CC amita.gosalia@enron.com
## 9226 114898 12303 CC sheri.thomas@enron.com
## 9227 114899 12303 CC david.forster@enron.com
## 9228 114900 12303 CC rahil.jafry@enron.com
## 9229 114901 12303 CC bob.shults@enron.com
## 9230 114902 12303 CC dave.samuels@enron.com
## 9231 114903 12303 CC debbie.brackett@enron.com
## 9232 114904 12303 CC frank.davis@enron.com
## 9233 114905 12303 BCC jay.webb@enron.com
## 9234 114906 12303 BCC mark.e.taylor@enron.com
## 9235 114907 12303 BCC michael.guadarrama@enron.com
## 9236 114908 12303 BCC jarod.jenson@enron.com
## 9237 114909 12303 BCC michael.belmont@enron.com
## 9238 114910 12303 BCC kevin.montagne@enron.com
## 9239 114911 12303 BCC awais.omar@enron.com
## 9240 114912 12303 BCC paul.goddard@enron.com
## 9241 114913 12303 BCC marcello.romano@enron.com
## 9242 114914 12303 BCC mark.dilworth@enron.com
## 9243 114915 12303 BCC amita.gosalia@enron.com
## 9244 114916 12303 BCC sheri.thomas@enron.com
## 9245 114917 12303 BCC david.forster@enron.com
## 9246 114918 12303 BCC rahil.jafry@enron.com
## 9247 114919 12303 BCC bob.shults@enron.com
## 9248 114920 12303 BCC dave.samuels@enron.com
## 9249 114921 12303 BCC debbie.brackett@enron.com
## 9250 114922 12303 BCC frank.davis@enron.com
## 9251 114923 12304 TO greg.whalley@enron.com
## 9252 114924 12304 TO john.sherriff@enron.com
## 9253 114925 12304 TO jeffrey.a.shankman@enron.com
## 9254 114926 12304 TO james.fallon@enron.com
## 9255 114927 12304 TO john.nowlan@enron.com
## 9256 114928 12304 TO wade.doshier@enron.com
## 9257 114929 12304 TO lynda.clemmons@enron.com
## 9258 114930 12304 TO douglas.friedman@enron.com
## 9259 114931 12304 TO greg.wolfe@enron.com
## 9260 114932 12304 TO bob.crane@enron.com
## 9261 114933 12304 TO joe.gold@enron.com
## 9262 114934 12304 TO richard.lewis@enron.com
## 9263 114935 12304 TO mark.e.taylor@enron.com
## 9264 114936 12304 TO philippe.bibi@enron.com
## 9265 114937 12304 TO mike.mcconnell@enron.com
## 9266 114938 12304 TO jay.fitzgerald@enron.com
## 9267 114939 12304 TO john.lavorato@enron.com
## 9268 114940 12304 TO david.w.delainey@enron.com
## 9269 114941 12304 TO janet.dietrich@enron.com
## 9270 114942 12304 TO thor.lien@enron.com
## 9271 114943 12304 TO daniel.reck@enron.com
## 9272 114944 12304 TO hunter.s.shively@enron.com
## 9273 114945 12304 TO liz.taylor@enron.com
## 9274 114946 12304 TO lauren.urquhart@enron.com
## 9275 114947 12304 TO jay.webb@enron.com
## 9276 114948 12304 TO peggy.mccurley@enron.com
## 9277 114949 12304 TO cathy.phillips@enron.com
## 9278 114950 12304 TO kimberly.hillis@enron.com
## 9279 114951 12304 TO david.forster@enron.com
## 9280 114952 12304 TO fletcher.j.sturm@enron.com
## 9281 114953 12304 TO jonathan.mckay@enron.com
## 9282 114954 12304 TO scott.neal@enron.com
## 9283 114955 12304 TO phillip.k.ellen@enron.com
## 9284 114956 12304 TO jonathan.whitehead@enron.com
## 9285 114957 12304 TO michael.corbally@enron.com
## 9286 114958 12304 TO john.arnold@enron.com
## 9287 114959 12304 TO bill.white@enron.com
## 9288 114960 12304 TO niamh.clarke@enron.com
## 9289 114961 12304 TO patrick.markey@enron.com
## 9290 114962 12304 TO peter.keavey@enron.com
## 9291 114963 12304 TO patrice.mims@enron.com
## 9292 114964 12304 TO zal.masani@enron.com
## 9293 114965 12304 TO steve.kim@enron.com
## 9294 114966 12304 TO harry.arora@enron.com
## 9295 114967 12304 TO william.bradford@enron.com
## 9296 114968 12304 TO debbie.brackett@enron.com
## 9297 114969 12304 TO bryan.seyfried@enron.com
## 9298 114970 12304 TO wade.doshier@enron.com
## 9299 114971 12304 TO daniel.diamond@enron.com
## 9300 114979 12309 TO marie.heard@enron.com
## 9301 114980 12309 TO susan.flynn@enron.com
## 9302 114981 12309 TO susan.bailey@enron.com
## 9303 114982 12309 TO tana.jones@enron.com
## 9304 114983 12309 CC sara.shackleton@enron.com
## 9305 114984 12309 CC shari.stack@enron.com
## 9306 114985 12309 CC mark.e.taylor@enron.com
## 9307 114986 12309 BCC sara.shackleton@enron.com
## 9308 114987 12309 BCC shari.stack@enron.com
## 9309 114988 12309 BCC mark.e.taylor@enron.com
## 9310 114996 12311 TO jay.webb@enron.com
## 9311 114997 12311 TO mark.e.taylor@enron.com
## 9312 114998 12311 CC david.forster@enron.com
## 9313 114999 12311 BCC david.forster@enron.com
## 9314 115024 12320 TO mark.e.taylor@enron.com
## 9315 115025 12320 TO david.forster@enron.com
## 9316 115026 12320 TO richard.b.sanders@enron.com
## 9317 115472 12375 TO mark.e.taylor@enron.com
## 9318 115474 12377 TO bryan.seyfried@enron.com
## 9319 115475 12377 CC david.forster@enron.com
## 9320 115476 12377 CC mark.dilworth@enron.com
## 9321 115477 12377 CC paul.goddard@enron.com
## 9322 115478 12377 CC mark.e.taylor@enron.com
## 9323 115479 12377 BCC david.forster@enron.com
## 9324 115480 12377 BCC mark.dilworth@enron.com
## 9325 115481 12377 BCC paul.goddard@enron.com
## 9326 115482 12377 BCC mark.e.taylor@enron.com
## 9327 115749 12406 TO greg.whalley@enron.com
## 9328 115750 12406 TO john.sherriff@enron.com
## 9329 115751 12406 TO philippe.bibi@enron.com
## 9330 115752 12406 TO mike.mcconnell@enron.com
## 9331 115753 12406 TO jay.fitzgerald@enron.com
## 9332 115754 12406 TO dave.samuels@enron.com
## 9333 115755 12406 TO jay.webb@enron.com
## 9334 115756 12406 TO mark.e.taylor@enron.com
## 9335 115757 12406 TO michael.guadarrama@enron.com
## 9336 115758 12406 TO jarod.jenson@enron.com
## 9337 115759 12406 TO michael.belmont@enron.com
## 9338 115760 12406 TO kevin.montagne@enron.com
## 9339 115761 12406 TO awais.omar@enron.com
## 9340 115762 12406 TO paul.goddard@enron.com
## 9341 115763 12406 TO marcello.romano@enron.com
## 9342 115764 12406 TO mark.dilworth@enron.com
## 9343 115765 12406 TO amita.gosalia@enron.com
## 9344 115766 12406 TO sheri.thomas@enron.com
## 9345 115767 12406 TO david.forster@enron.com
## 9346 115768 12406 TO rahil.jafry@enron.com
## 9347 115769 12406 TO bob.shults@enron.com
## 9348 115770 12406 TO dave.samuels@enron.com
## 9349 115771 12406 TO debbie.brackett@enron.com
## 9350 115772 12406 CC liz.taylor@enron.com
## 9351 115773 12406 CC lauren.urquhart@enron.com
## 9352 115774 12406 CC peggy.mccurley@enron.com
## 9353 115775 12406 CC cathy.phillips@enron.com
## 9354 115776 12406 CC kimberly.hillis@enron.com
## 9355 115777 12406 BCC liz.taylor@enron.com
## 9356 115778 12406 BCC lauren.urquhart@enron.com
## 9357 115779 12406 BCC peggy.mccurley@enron.com
## 9358 115780 12406 BCC cathy.phillips@enron.com
## 9359 115781 12406 BCC kimberly.hillis@enron.com
## 9360 115914 12420 TO derek.davies@enron.com
## 9361 115915 12420 CC mark.e.taylor@enron.com
## 9362 115916 12420 BCC mark.e.taylor@enron.com
## 9363 115917 12421 TO louise.kitchen@enron.com
## 9364 115918 12421 TO mark.e.taylor@enron.com
## 9365 115919 12422 TO louise.kitchen@enron.com
## 9366 115920 12422 TO mark.e.taylor@enron.com
## 9367 115940 12424 TO louise.kitchen@enron.com
## 9368 115941 12424 CC mark.e.taylor@enron.com
## 9369 115942 12424 BCC mark.e.taylor@enron.com
## 9370 116324 12434 TO mark.e.taylor@enron.com
## 9371 116325 12434 TO lisa.mellencamp@enron.com
## 9372 116326 12434 TO william.bradford@enron.com
## 9373 116446 12439 TO mark.e.taylor@enron.com
## 9374 116447 12439 CC taffy.milligan@enron.com
## 9375 116448 12439 CC suzanne.adams@enron.com
## 9376 116449 12439 BCC taffy.milligan@enron.com
## 9377 116450 12439 BCC suzanne.adams@enron.com
## 9378 116467 12443 TO mark.e.taylor@enron.com
## 9379 116468 12443 CC bob.shults@enron.com
## 9380 116469 12443 BCC bob.shults@enron.com
## 9381 116490 12451 TO mtaylo1@enron.com
## 9382 116536 12464 TO mark.e.taylor@enron.com
## 9383 116562 12470 TO mark.e.taylor@enron.com
## 9384 116563 12470 CC bryan.seyfried@enron.com
## 9385 116564 12470 CC e..haedicke@enron.com
## 9386 116565 12470 CC paul.simons@enron.com
## 9387 116566 12470 BCC bryan.seyfried@enron.com
## 9388 116567 12470 BCC e..haedicke@enron.com
## 9389 116568 12470 BCC paul.simons@enron.com
## 9390 116639 12479 TO paul.simons@enron.com
## 9391 116640 12479 TO bryan.seyfried@enron.com
## 9392 116641 12479 CC john.sherriff@enron.com
## 9393 116642 12479 CC bryan.seyfried@enron.com
## 9394 116643 12479 CC jeffrey.hodge@enron.com
## 9395 116644 12479 CC julia.murray@enron.com
## 9396 116645 12479 CC mark.e.taylor@enron.com
## 9397 116646 12479 CC michael.brown@enron.com
## 9398 116647 12479 CC edmund.cooper@enron.com
## 9399 116648 12479 CC justin.boyd@enron.com
## 9400 116649 12479 CC rod.sayers@enron.com
## 9401 116650 12479 CC janine.juggins@enron.com
## 9402 116651 12479 CC steve.young@enron.com
## 9403 116652 12479 CC david.weekes@enron.com
## 9404 116653 12479 CC david.forster@enron.com
## 9405 116654 12479 CC elena.kapralova@enron.com
## 9406 116655 12479 CC mark.dilworth@enron.com
## 9407 116656 12479 BCC john.sherriff@enron.com
## 9408 116657 12479 BCC bryan.seyfried@enron.com
## 9409 116658 12479 BCC jeffrey.hodge@enron.com
## 9410 116659 12479 BCC julia.murray@enron.com
## 9411 116660 12479 BCC mark.e.taylor@enron.com
## 9412 116661 12479 BCC michael.brown@enron.com
## 9413 116662 12479 BCC edmund.cooper@enron.com
## 9414 116663 12479 BCC justin.boyd@enron.com
## 9415 116664 12479 BCC rod.sayers@enron.com
## 9416 116665 12479 BCC janine.juggins@enron.com
## 9417 116666 12479 BCC steve.young@enron.com
## 9418 116667 12479 BCC david.weekes@enron.com
## 9419 116668 12479 BCC david.forster@enron.com
## 9420 116669 12479 BCC elena.kapralova@enron.com
## 9421 116670 12479 BCC mark.dilworth@enron.com
## 9422 154622 17768 TO david.forster@enron.com
## 9423 154623 17768 CC mark.e.taylor@enron.com
## 9424 154624 17768 BCC mark.e.taylor@enron.com
## 9425 154626 17770 TO mark.e.taylor@enron.com
## 9426 154702 17780 TO paul.simons@enron.com
## 9427 154703 17780 TO bryan.seyfried@enron.com
## 9428 154704 17780 CC john.sherriff@enron.com
## 9429 154705 17780 CC bryan.seyfried@enron.com
## 9430 154706 17780 CC jeffrey.hodge@enron.com
## 9431 154707 17780 CC julia.murray@enron.com
## 9432 154708 17780 CC mark.e.taylor@enron.com
## 9433 154709 17780 CC michael.brown@enron.com
## 9434 154710 17780 CC edmund.cooper@enron.com
## 9435 154711 17780 CC justin.boyd@enron.com
## 9436 154712 17780 CC rod.sayers@enron.com
## 9437 154713 17780 CC janine.juggins@enron.com
## 9438 154714 17780 CC steve.young@enron.com
## 9439 154715 17780 CC david.weekes@enron.com
## 9440 154716 17780 CC david.forster@enron.com
## 9441 154717 17780 CC elena.kapralova@enron.com
## 9442 154718 17780 CC mark.dilworth@enron.com
## 9443 154719 17780 BCC john.sherriff@enron.com
## 9444 154720 17780 BCC bryan.seyfried@enron.com
## 9445 154721 17780 BCC jeffrey.hodge@enron.com
## 9446 154722 17780 BCC julia.murray@enron.com
## 9447 154723 17780 BCC mark.e.taylor@enron.com
## 9448 154724 17780 BCC michael.brown@enron.com
## 9449 154725 17780 BCC edmund.cooper@enron.com
## 9450 154726 17780 BCC justin.boyd@enron.com
## 9451 154727 17780 BCC rod.sayers@enron.com
## 9452 154728 17780 BCC janine.juggins@enron.com
## 9453 154729 17780 BCC steve.young@enron.com
## 9454 154730 17780 BCC david.weekes@enron.com
## 9455 154731 17780 BCC david.forster@enron.com
## 9456 154732 17780 BCC elena.kapralova@enron.com
## 9457 154733 17780 BCC mark.dilworth@enron.com
## 9458 154777 17784 TO mark.e.taylor@enron.com
## 9459 154778 17784 CC bryan.seyfried@enron.com
## 9460 154779 17784 CC e..haedicke@enron.com
## 9461 154780 17784 CC paul.simons@enron.com
## 9462 154781 17784 BCC bryan.seyfried@enron.com
## 9463 154782 17784 BCC e..haedicke@enron.com
## 9464 154783 17784 BCC paul.simons@enron.com
## 9465 155037 17814 TO louise.kitchen@enron.com
## 9466 155038 17814 CC paul.simons@enron.com
## 9467 155039 17814 CC bryan.seyfried@enron.com
## 9468 155040 17814 CC john.sherriff@enron.com
## 9469 155041 17814 CC jeffrey.hodge@enron.com
## 9470 155042 17814 CC julia.murray@enron.com
## 9471 155043 17814 CC mark.e.taylor@enron.com
## 9472 155044 17814 CC michael.brown@enron.com
## 9473 155045 17814 CC edmund.cooper@enron.com
## 9474 155046 17814 CC justin.boyd@enron.com
## 9475 155047 17814 CC rod.sayers@enron.com
## 9476 155048 17814 CC janine.juggins@enron.com
## 9477 155049 17814 CC steve.young@enron.com
## 9478 155050 17814 CC david.weekes@enron.com
## 9479 155051 17814 CC david.forster@enron.com
## 9480 155052 17814 CC elena.kapralova@enron.com
## 9481 155053 17814 CC mark.dilworth@enron.com
## 9482 155054 17814 BCC paul.simons@enron.com
## 9483 155055 17814 BCC bryan.seyfried@enron.com
## 9484 155056 17814 BCC john.sherriff@enron.com
## 9485 155057 17814 BCC jeffrey.hodge@enron.com
## 9486 155058 17814 BCC julia.murray@enron.com
## 9487 155059 17814 BCC mark.e.taylor@enron.com
## 9488 155060 17814 BCC michael.brown@enron.com
## 9489 155061 17814 BCC edmund.cooper@enron.com
## 9490 155062 17814 BCC justin.boyd@enron.com
## 9491 155063 17814 BCC rod.sayers@enron.com
## 9492 155064 17814 BCC janine.juggins@enron.com
## 9493 155065 17814 BCC steve.young@enron.com
## 9494 155066 17814 BCC david.weekes@enron.com
## 9495 155067 17814 BCC david.forster@enron.com
## 9496 155068 17814 BCC elena.kapralova@enron.com
## 9497 155069 17814 BCC mark.dilworth@enron.com
## 9498 155147 17826 TO bryan.seyfried@enron.com
## 9499 155148 17826 CC david.forster@enron.com
## 9500 155149 17826 CC john.sherriff@enron.com
## 9501 155150 17826 CC mark.e.taylor@enron.com
## 9502 155151 17826 BCC david.forster@enron.com
## 9503 155152 17826 BCC john.sherriff@enron.com
## 9504 155153 17826 BCC mark.e.taylor@enron.com
## 9505 155232 17837 TO mark.e.taylor@enron.com
## 9506 155378 17857 TO kenneth.lay@enron.com
## 9507 155379 17857 TO jeff.skilling@enron.com
## 9508 155380 17857 TO joseph.sutton@enron.com
## 9509 155381 17857 TO cliff.baxter@enron.com
## 9510 155382 17857 TO mark.frevert@enron.com
## 9511 155383 17857 TO mike.mcconnell@enron.com
## 9512 155384 17857 TO jay.fitzgerald@enron.com
## 9513 155385 17857 TO mark.koenig@enron.com
## 9514 155386 17857 TO mark.palmer@enron.com
## 9515 155387 17857 TO john.sherriff@enron.com
## 9516 155388 17857 TO steven.j.kean@enron.com
## 9517 155389 17857 TO greg.whalley@enron.com
## 9518 155390 17857 TO philippe.bibi@enron.com
## 9519 155391 17857 TO jeffrey.a.shankman@enron.com
## 9520 155392 17857 TO john.lavorato@enron.com
## 9521 155393 17857 TO george.mcclellan@enron.com
## 9522 155394 17857 TO daniel.reck@enron.com
## 9523 155395 17857 TO james.fallon@enron.com
## 9524 155396 17857 TO tim.belden@enron.com
## 9525 155397 17857 TO thor.lien@enron.com
## 9526 155398 17857 TO douglas.friedman@enron.com
## 9527 155399 17857 TO bob.crane@enron.com
## 9528 155400 17857 TO joe.gold@enron.com
## 9529 155401 17857 TO richard.lewis@enron.com
## 9530 155402 17857 TO john.nowlan@enron.com
## 9531 155403 17857 TO paul.quilkey@enron.com
## 9532 155404 17857 TO bryan.seyfried@enron.com
## 9533 155405 17857 TO rick.buy@enron.com
## 9534 155406 17857 TO e..haedicke@enron.com
## 9535 155407 17857 TO mark.e.taylor@enron.com
## 9536 155408 17857 CC david.forster@enron.com
## 9537 155409 17857 BCC david.forster@enron.com
## 9538 155468 17867 TO greg.whalley@enron.com
## 9539 155469 17867 TO john.sherriff@enron.com
## 9540 155470 17867 TO jeffrey.a.shankman@enron.com
## 9541 155471 17867 TO james.fallon@enron.com
## 9542 155472 17867 TO john.nowlan@enron.com
## 9543 155473 17867 TO wade.doshier@enron.com
## 9544 155474 17867 TO lynda.clemmons@enron.com
## 9545 155475 17867 TO douglas.friedman@enron.com
## 9546 155476 17867 TO greg.wolfe@enron.com
## 9547 155477 17867 TO bob.crane@enron.com
## 9548 155478 17867 TO joe.gold@enron.com
## 9549 155479 17867 TO richard.lewis@enron.com
## 9550 155480 17867 TO mark.e.taylor@enron.com
## 9551 155481 17867 TO philippe.bibi@enron.com
## 9552 155482 17867 TO mike.mcconnell@enron.com
## 9553 155483 17867 TO jay.fitzgerald@enron.com
## 9554 155484 17867 TO john.lavorato@enron.com
## 9555 155485 17867 TO david.w.delainey@enron.com
## 9556 155486 17867 TO janet.dietrich@enron.com
## 9557 155487 17867 TO thor.lien@enron.com
## 9558 155488 17867 TO daniel.reck@enron.com
## 9559 155489 17867 TO hunter.s.shively@enron.com
## 9560 155490 17867 CC liz.taylor@enron.com
## 9561 155491 17867 CC lauren.urquhart@enron.com
## 9562 155492 17867 CC jay.webb@enron.com
## 9563 155493 17867 CC peggy.mccurley@enron.com
## 9564 155494 17867 CC cathy.phillips@enron.com
## 9565 155495 17867 CC kimberly.hillis@enron.com
## 9566 155496 17867 CC david.forster@enron.com
## 9567 155497 17867 BCC liz.taylor@enron.com
## 9568 155498 17867 BCC lauren.urquhart@enron.com
## 9569 155499 17867 BCC jay.webb@enron.com
## 9570 155500 17867 BCC peggy.mccurley@enron.com
## 9571 155501 17867 BCC cathy.phillips@enron.com
## 9572 155502 17867 BCC kimberly.hillis@enron.com
## 9573 155503 17867 BCC david.forster@enron.com
## 9574 155504 17868 TO lydia.cannon@enron.com
## 9575 155505 17868 CC greg.whalley@enron.com
## 9576 155506 17868 CC john.sherriff@enron.com
## 9577 155507 17868 CC philippe.bibi@enron.com
## 9578 155508 17868 CC dave.samuels@enron.com
## 9579 155509 17868 CC jay.webb@enron.com
## 9580 155510 17868 CC mark.e.taylor@enron.com
## 9581 155511 17868 CC michael.guadarrama@enron.com
## 9582 155512 17868 CC jarod.jenson@enron.com
## 9583 155513 17868 CC michael.belmont@enron.com
## 9584 155514 17868 CC kevin.montagne@enron.com
## 9585 155515 17868 CC awais.omar@enron.com
## 9586 155516 17868 CC paul.goddard@enron.com
## 9587 155517 17868 CC marcello.romano@enron.com
## 9588 155518 17868 CC mark.dilworth@enron.com
## 9589 155519 17868 CC amita.gosalia@enron.com
## 9590 155520 17868 CC sheri.thomas@enron.com
## 9591 155521 17868 CC david.forster@enron.com
## 9592 155522 17868 CC rahil.jafry@enron.com
## 9593 155523 17868 CC bob.shults@enron.com
## 9594 155524 17868 CC liz.taylor@enron.com
## 9595 155525 17868 CC lauren.urquhart@enron.com
## 9596 155526 17868 CC peggy.mccurley@enron.com
## 9597 155527 17868 CC cathy.phillips@enron.com
## 9598 155528 17868 CC kimberly.hillis@enron.com
## 9599 155529 17868 BCC greg.whalley@enron.com
## 9600 155530 17868 BCC john.sherriff@enron.com
## 9601 155531 17868 BCC philippe.bibi@enron.com
## 9602 155532 17868 BCC dave.samuels@enron.com
## 9603 155533 17868 BCC jay.webb@enron.com
## 9604 155534 17868 BCC mark.e.taylor@enron.com
## 9605 155535 17868 BCC michael.guadarrama@enron.com
## 9606 155536 17868 BCC jarod.jenson@enron.com
## 9607 155537 17868 BCC michael.belmont@enron.com
## 9608 155538 17868 BCC kevin.montagne@enron.com
## 9609 155539 17868 BCC awais.omar@enron.com
## 9610 155540 17868 BCC paul.goddard@enron.com
## 9611 155541 17868 BCC marcello.romano@enron.com
## 9612 155542 17868 BCC mark.dilworth@enron.com
## 9613 155543 17868 BCC amita.gosalia@enron.com
## 9614 155544 17868 BCC sheri.thomas@enron.com
## 9615 155545 17868 BCC david.forster@enron.com
## 9616 155546 17868 BCC rahil.jafry@enron.com
## 9617 155547 17868 BCC bob.shults@enron.com
## 9618 155548 17868 BCC liz.taylor@enron.com
## 9619 155549 17868 BCC lauren.urquhart@enron.com
## 9620 155550 17868 BCC peggy.mccurley@enron.com
## 9621 155551 17868 BCC cathy.phillips@enron.com
## 9622 155552 17868 BCC kimberly.hillis@enron.com
## 9623 155564 17872 TO jay.webb@enron.com
## 9624 155565 17872 TO mark.e.taylor@enron.com
## 9625 155566 17872 TO michael.guadarrama@enron.com
## 9626 155567 17872 TO jarod.jenson@enron.com
## 9627 155568 17872 TO michael.belmont@enron.com
## 9628 155569 17872 TO kevin.montagne@enron.com
## 9629 155570 17872 TO awais.omar@enron.com
## 9630 155571 17872 TO paul.goddard@enron.com
## 9631 155572 17872 TO marcello.romano@enron.com
## 9632 155573 17872 TO mark.dilworth@enron.com
## 9633 155574 17872 TO amita.gosalia@enron.com
## 9634 155575 17872 TO sheri.thomas@enron.com
## 9635 155576 17872 TO david.forster@enron.com
## 9636 155577 17872 TO rahil.jafry@enron.com
## 9637 155578 17872 TO bob.shults@enron.com
## 9638 155579 17872 TO dave.samuels@enron.com
## 9639 155580 17872 TO debbie.brackett@enron.com
## 9640 155581 17872 TO frank.davis@enron.com
## 9641 155582 17872 CC david.forster@enron.com
## 9642 155583 17872 BCC david.forster@enron.com
## 9643 155620 17882 TO dkrunnfusz@agency.com
## 9644 155621 17882 CC philippe.bibi@enron.com
## 9645 155622 17882 CC jay.webb@enron.com
## 9646 155623 17882 BCC philippe.bibi@enron.com
## 9647 155624 17882 BCC jay.webb@enron.com
## 9648 155625 17883 TO mark.e.taylor@enron.com
## 9649 155631 17886 TO mark.e.taylor@enron.com
## 9650 155632 17886 CC justin.boyd@enron.com
## 9651 155633 17886 CC david.forster@enron.com
## 9652 155634 17886 BCC justin.boyd@enron.com
## 9653 155635 17886 BCC david.forster@enron.com
## 9654 155826 17909 TO mark.e.taylor@enron.com
## 9655 155827 17910 TO donna.greif@enron.com
## 9656 155828 17910 CC amita.gosalia@enron.com
## 9657 155829 17910 CC bob.shults@enron.com
## 9658 155830 17910 CC david.forster@enron.com
## 9659 155831 17910 BCC amita.gosalia@enron.com
## 9660 155832 17910 BCC bob.shults@enron.com
## 9661 155833 17910 BCC david.forster@enron.com
## 9662 155889 17918 TO gary.foster@enron.com
## 9663 155890 17918 CC mark.e.taylor@enron.com
## 9664 155891 17918 BCC mark.e.taylor@enron.com
## 9665 155904 17923 TO david.forster@enron.com
## 9666 155905 17923 CC mark.e.taylor@enron.com
## 9667 155906 17923 CC jeffrey.hodge@enron.com
## 9668 155907 17923 BCC mark.e.taylor@enron.com
## 9669 155908 17923 BCC jeffrey.hodge@enron.com
## 9670 155928 17927 TO michael.brown@enron.com
## 9671 155929 17927 CC mark.e.taylor@enron.com
## 9672 155930 17927 BCC mark.e.taylor@enron.com
## 9673 155987 17932 TO mark.e.taylor@enron.com
## 9674 155988 17932 TO tana.jones@enron.com
## 9675 155989 17932 CC debbie.brackett@enron.com
## 9676 155990 17932 CC william.bradford@enron.com
## 9677 155991 17932 CC david.port@enron.com
## 9678 155992 17932 CC bob.shults@enron.com
## 9679 155993 17932 CC david.forster@enron.com
## 9680 155994 17932 BCC debbie.brackett@enron.com
## 9681 155995 17932 BCC william.bradford@enron.com
## 9682 155996 17932 BCC david.port@enron.com
## 9683 155997 17932 BCC bob.shults@enron.com
## 9684 155998 17932 BCC david.forster@enron.com
## 9685 156154 17963 TO justin.boyd@enron.com
## 9686 156155 17963 TO mark.e.taylor@enron.com
## 9687 156156 17963 TO gilbergd@sullcrom.com
## 9688 156157 17963 TO edmund.cooper@enron.com
## 9689 156158 17963 CC paul.goddard@enron.com
## 9690 156159 17963 CC elena.kapralova@enron.com
## 9691 156160 17963 CC rahil.jafry@enron.com
## 9692 156161 17963 BCC paul.goddard@enron.com
## 9693 156162 17963 BCC elena.kapralova@enron.com
## 9694 156163 17963 BCC rahil.jafry@enron.com
## 9695 156227 17972 TO mark.e.taylor@enron.com
## 9696 156228 17972 TO michael.corbally@enron.com
## 9697 156268 17979 TO sandra.hrna@enron.com
## 9698 156269 17979 CC david.mally@enron.com
## 9699 156270 17979 CC jordan.mintz@enron.com
## 9700 156271 17979 CC stephen.douglas@enron.com
## 9701 156272 17979 CC michael.fredell@enron.com
## 9702 156273 17979 CC matthew.gockerman@enron.com
## 9703 156274 17979 CC janine.juggins@enron.com
## 9704 156275 17979 CC mark.e.taylor@enron.com
## 9705 156276 17979 BCC david.mally@enron.com
## 9706 156277 17979 BCC jordan.mintz@enron.com
## 9707 156278 17979 BCC stephen.douglas@enron.com
## 9708 156279 17979 BCC michael.fredell@enron.com
## 9709 156280 17979 BCC matthew.gockerman@enron.com
## 9710 156281 17979 BCC janine.juggins@enron.com
## 9711 156282 17979 BCC mark.e.taylor@enron.com
## 9712 156301 17982 TO christopher.millard@cliffordchance.com
## 9713 156302 17982 TO ssefton@enron.co.uk
## 9714 156303 17982 TO jboyd@enron.co.uk
## 9715 156304 17982 TO mark.e.taylor@enron.com
## 9716 156305 17982 TO david.forster@enron.com
## 9717 156306 17982 TO jjuggins@enron.co.uk
## 9718 156307 17982 TO elena.kapralova@enron.com
## 9719 156308 17982 TO edmund.cooper@enron.com
## 9720 156309 17982 TO gilbergd@sullcrom.com
## 9721 156310 17982 TO timothy.hughes@cliffordchance.com
## 9722 156311 17982 TO charlotte.stalin@cliffordchance.com
## 9723 156356 17989 TO mark.e.taylor@enron.com
## 9724 156357 17989 CC jeffrey.hodge@enron.com
## 9725 156358 17989 BCC jeffrey.hodge@enron.com
## 9726 156362 17991 TO gilbergd@sullcrom.com
## 9727 156363 17991 CC mark.e.taylor@enron.com
## 9728 156364 17991 CC lkitchen@enron.co.uk
## 9729 156365 17991 CC raislerk@sullcrom.com
## 9730 156366 17991 BCC mark.e.taylor@enron.com
## 9731 156367 17991 BCC lkitchen@enron.co.uk
## 9732 156368 17991 BCC raislerk@sullcrom.com
## 9733 156381 17994 TO scott.sefton@enron.com
## 9734 156382 17994 TO justin.boyd@enron.com
## 9735 156383 17994 TO edmund.cooper@enron.com
## 9736 156384 17994 CC mark.e.taylor@enron.com
## 9737 156385 17994 BCC mark.e.taylor@enron.com
## 9738 156437 18002 TO mark.e.taylor@enron.com
## 9739 156474 18005 TO david.port@enron.com
## 9740 156475 18005 TO mark.dilworth@enron.com
## 9741 156476 18005 TO david.mally@enron.com
## 9742 156477 18005 TO arfan.aziz@enron.com
## 9743 156478 18005 TO janine.juggins@enron.com
## 9744 156479 18005 TO justin.boyd@enron.com
## 9745 156480 18005 TO mark.e.taylor@enron.com
## 9746 156481 18005 TO marcello.romano@enron.com
## 9747 156482 18005 TO andrew.thomas@enron.com
## 9748 156483 18005 TO robert.campbell@enron.com
## 9749 156484 18005 TO paul.goddard@enron.com
## 9750 156485 18005 TO paul.racicot@enron.com
## 9751 156486 18005 TO rahil.jafry@enron.com
## 9752 156487 18005 TO elena.kapralova@enron.com
## 9753 156488 18005 TO robert.campbell@enron.com
## 9754 156489 18005 TO mark.dilworth@enron.com
## 9755 156490 18005 TO scott.sefton@enron.com
## 9756 156491 18005 TO arfan.aziz@enron.com
## 9757 156492 18005 TO kevin.montagne@enron.com
## 9758 156493 18005 TO awais.omar@enron.com
## 9759 156494 18005 TO elena.kapralova@enron.com
## 9760 156495 18005 TO stephen.douglas@enron.com
## 9761 156496 18005 TO william.bradford@enron.com
## 9762 156497 18005 TO david.weekes@enron.com
## 9763 156498 18005 TO debbie.brackett@enron.com
## 9764 156499 18005 TO bryan.seyfried@enron.com
## 9765 156500 18005 TO kal.shah@enron.com
## 9766 156501 18005 TO david.forster@enron.com
## 9767 156502 18006 TO scott.sefton@enron.com
## 9768 156503 18006 TO mark.e.taylor@enron.com
## 9769 156504 18006 TO justin.boyd@enron.com
## 9770 156505 18006 CC elena.kapralova@enron.com
## 9771 156506 18006 BCC elena.kapralova@enron.com
## 9772 156507 18007 TO edmund.cooper@enron.com
## 9773 156508 18007 CC scott.sefton@enron.com
## 9774 156509 18007 CC mark.e.taylor@enron.com
## 9775 156510 18007 CC elena.kapralova@enron.com
## 9776 156511 18007 CC andrew.wilkinson@cliffordchance.com
## 9777 156512 18007 CC timothy.hughes@cliffordchance.com
## 9778 156513 18007 CC justin.boyd@enron.com
## 9779 156514 18007 CC paul.goddard@enron.com
## 9780 156515 18007 BCC scott.sefton@enron.com
## 9781 156516 18007 BCC mark.e.taylor@enron.com
## 9782 156517 18007 BCC elena.kapralova@enron.com
## 9783 156518 18007 BCC andrew.wilkinson@cliffordchance.com
## 9784 156519 18007 BCC timothy.hughes@cliffordchance.com
## 9785 156520 18007 BCC justin.boyd@enron.com
## 9786 156521 18007 BCC paul.goddard@enron.com
## 9787 156532 18010 TO scott.sefton@enron.com
## 9788 156533 18010 CC ecooper@enron.co.uk
## 9789 156534 18010 CC christopher.millard@cliffordchance.com
## 9790 156535 18010 CC timothy.hughes@cliffordchance.com
## 9791 156536 18010 CC lkitchen@enron.co.uk
## 9792 156537 18010 CC ssefton@enron.co.uk
## 9793 156538 18010 CC jboyd@enron.co.uk
## 9794 156539 18010 CC mark.e.taylor@enron.com
## 9795 156540 18010 CC pgoddard@enron.co.uk
## 9796 156541 18010 CC raislerk@sullcrom.com
## 9797 156542 18010 CC gilbergd@sullcrom.com
## 9798 156543 18010 BCC ecooper@enron.co.uk
## 9799 156544 18010 BCC christopher.millard@cliffordchance.com
## 9800 156545 18010 BCC timothy.hughes@cliffordchance.com
## 9801 156546 18010 BCC lkitchen@enron.co.uk
## 9802 156547 18010 BCC ssefton@enron.co.uk
## 9803 156548 18010 BCC jboyd@enron.co.uk
## 9804 156549 18010 BCC mark.e.taylor@enron.com
## 9805 156550 18010 BCC pgoddard@enron.co.uk
## 9806 156551 18010 BCC raislerk@sullcrom.com
## 9807 156552 18010 BCC gilbergd@sullcrom.com
## 9808 156554 18012 TO david.port@enron.com
## 9809 156555 18012 TO mark.dilworth@enron.com
## 9810 156556 18012 TO david.mally@enron.com
## 9811 156557 18012 TO arfan.aziz@enron.com
## 9812 156558 18012 TO janine.juggins@enron.com
## 9813 156559 18012 TO mark.e.taylor@enron.com
## 9814 156560 18012 TO jay.webb@enron.com
## 9815 156561 18012 TO marcello.romano@enron.com
## 9816 156562 18012 TO andrew.thomas@enron.com
## 9817 156563 18012 TO robert.campbell@enron.com
## 9818 156564 18012 TO paul.goddard@enron.com
## 9819 156565 18012 TO paul.racicot@enron.com
## 9820 156566 18012 TO rahil.jafry@enron.com
## 9821 156567 18012 TO elena.kapralova@enron.com
## 9822 156568 18012 TO john.sherriff@enron.com
## 9823 156569 18012 TO philippe.bibi@enron.com
## 9824 156570 18012 TO greg.whalley@enron.com
## 9825 156571 18012 TO louise.kitchen@enron.com
## 9826 156572 18012 TO scott.sefton@enron.com
## 9827 156573 18012 TO awais.omar@enron.com
## 9828 156574 18012 TO edmund.cooper@enron.com
## 9829 156575 18013 TO mark.e.taylor@enron.com
## 9830 156576 18013 TO scott.sefton@enron.com
## 9831 156592 18015 TO elena.kapralova@enron.com
## 9832 156593 18015 TO rahil.jafry@enron.com
## 9833 156594 18015 TO david.port@enron.com
## 9834 156595 18015 TO mark.dilworth@enron.com
## 9835 156596 18015 TO paul.goddard@enron.com
## 9836 156597 18015 TO justin.boyd@enron.com
## 9837 156598 18015 TO janine.juggins@enron.com
## 9838 156599 18015 TO mark.e.taylor@enron.com
## 9839 156600 18015 TO jay.webb@enron.com
## 9840 156601 18015 TO robert.campbell@enron.com
## 9841 156602 18015 TO timothy.hughes@cliffordchance.com
## 9842 156603 18015 TO andrew.wilkinson@cliffordchance.com
## 9843 156604 18015 TO scott.sefton@enron.com
## 9844 156605 18015 TO edmund.cooper@enron.com
## 9845 156606 18015 TO david.mally@enron.com
## 9846 156660 18023 TO mark.e.taylor@enron.com
## 9847 156661 18024 TO elena.kapralova@enron.com
## 9848 156662 18024 CC janine.juggins@enron.com
## 9849 156663 18024 CC justin.boyd@enron.com
## 9850 156664 18024 CC mark.e.taylor@enron.com
## 9851 156665 18024 CC marcello.romano@enron.com
## 9852 156666 18024 CC david.port@enron.com
## 9853 156667 18024 CC jay.webb@enron.com
## 9854 156668 18024 BCC janine.juggins@enron.com
## 9855 156669 18024 BCC justin.boyd@enron.com
## 9856 156670 18024 BCC mark.e.taylor@enron.com
## 9857 156671 18024 BCC marcello.romano@enron.com
## 9858 156672 18024 BCC david.port@enron.com
## 9859 156673 18024 BCC jay.webb@enron.com
## 9860 156681 18026 TO mark.e.taylor@enron.com
## 9861 156682 18026 TO justin.boyd@enron.com
## 9862 156740 18035 TO gilbergd@sullcrom.com
## 9863 156741 18035 CC mark.e.taylor@enron.com
## 9864 156742 18035 CC justin.boyd@enron.com
## 9865 156743 18035 CC gw125b.ny12533.raislerk@gw1.wise.net
## 9866 156744 18035 CC gw125b.ny12534.purvism@gw1.wise.net
## 9867 156745 18035 CC elena.kapralova@enron.com
## 9868 156746 18035 BCC mark.e.taylor@enron.com
## 9869 156747 18035 BCC justin.boyd@enron.com
## 9870 156748 18035 BCC gw125b.ny12533.raislerk@gw1.wise.net
## 9871 156749 18035 BCC gw125b.ny12534.purvism@gw1.wise.net
## 9872 156750 18035 BCC elena.kapralova@enron.com
## 9873 156840 18050 TO mark.e.taylor@enron.com
## 9874 156904 18063 TO charlie.hoang@enron.com
## 9875 156905 18063 TO taylor@enron.com
## 9876 156906 18064 TO taylor@enron.com
## 9877 156907 18064 CC chris.walker@enron.com
## 9878 156908 18064 BCC chris.walker@enron.com
## 9879 157161 18091 TO taylor@enron.com
## 9880 157162 18091 CC chris.walker@enron.com
## 9881 157163 18091 BCC chris.walker@enron.com
## 9882 157164 18092 TO chris.walker@enron.com
## 9883 157165 18092 CC taylor@enron.com
## 9884 157166 18092 BCC taylor@enron.com
## 9885 157464 18109 TO taylor@enron.com
## 9886 157465 18109 CC s..theriot@enron.com
## 9887 157466 18109 CC ellen.wallumrod@enron.com
## 9888 157467 18109 BCC s..theriot@enron.com
## 9889 157468 18109 BCC ellen.wallumrod@enron.com
## 9890 157478 18111 TO taylor@enron.com
## 9891 157479 18111 CC s..theriot@enron.com
## 9892 157480 18111 BCC s..theriot@enron.com
## 9893 157514 18120 TO taylor@enron.com
## 9894 157515 18120 CC s..theriot@enron.com
## 9895 157516 18120 CC leslie.hansen@enron.com
## 9896 157517 18120 BCC s..theriot@enron.com
## 9897 157518 18120 BCC leslie.hansen@enron.com
## 9898 157519 18121 TO taylor@enron.com
## 9899 157520 18121 CC s..theriot@enron.com
## 9900 157521 18121 BCC s..theriot@enron.com
## 9901 157586 18146 TO mark.e.taylor@enron.com
## 9902 157988 18179 TO brent.hendry@enron.com
## 9903 157989 18179 TO sara.shackleton@enron.com
## 9904 157990 18179 TO mark.e.taylor@enron.com
## 9905 157991 18179 TO carol.clair@enron.com
## 9906 157992 18179 TO susan.bailey@enron.com
## 9907 157993 18179 TO mary.cook@enron.com
## 9908 157994 18179 TO robert.bruce@enron.com
## 9909 157995 18179 TO tana.jones@enron.com
## 9910 157996 18179 TO francisco.leite@enron.com
## 9911 157997 18179 TO cheryl.nelson@enron.com
## 9912 157998 18179 TO frank.sayre@enron.com
## 9913 157999 18179 TO anne.koehler@enron.com
## 9914 158000 18179 TO angela.davis@enron.com
## 9915 158001 18179 TO holly.keiser@enron.com
## 9916 158183 18189 TO brent.hendry@enron.com
## 9917 158184 18189 TO sara.shackleton@enron.com
## 9918 158185 18189 TO mark.e.taylor@enron.com
## 9919 158186 18189 TO carol.clair@enron.com
## 9920 158187 18189 TO susan.bailey@enron.com
## 9921 158188 18189 TO mary.cook@enron.com
## 9922 158189 18189 TO samantha.boyd@enron.com
## 9923 158190 18189 TO robert.bruce@enron.com
## 9924 158191 18189 TO tana.jones@enron.com
## 9925 158192 18189 TO taffy.milligan@enron.com
## 9926 158193 18189 TO francisco.leite@enron.com
## 9927 158194 18189 TO cheryl.nelson@enron.com
## 9928 158195 18189 TO frank.sayre@enron.com
## 9929 158196 18189 TO anne.koehler@enron.com
## 9930 158197 18189 TO angela.davis@enron.com
## 9931 158225 18192 TO brent.hendry@enron.com
## 9932 158226 18192 TO sara.shackleton@enron.com
## 9933 158227 18192 TO mark.e.taylor@enron.com
## 9934 158228 18192 TO carol.clair@enron.com
## 9935 158229 18192 TO susan.bailey@enron.com
## 9936 158230 18192 TO mary.cook@enron.com
## 9937 158231 18192 TO samantha.boyd@enron.com
## 9938 158232 18192 TO robert.bruce@enron.com
## 9939 158233 18192 TO tana.jones@enron.com
## 9940 158234 18192 TO taffy.milligan@enron.com
## 9941 158235 18192 TO francisco.leite@enron.com
## 9942 158236 18192 TO cheryl.nelson@enron.com
## 9943 158237 18192 TO frank.sayre@enron.com
## 9944 158238 18192 TO becky.spencer@enron.com
## 9945 158376 18205 TO susan.bailey@enron.com
## 9946 158377 18205 TO robert.bruce@enron.com
## 9947 158378 18205 TO samantha.boyd@enron.com
## 9948 158379 18205 TO mary.cook@enron.com
## 9949 158380 18205 TO brent.hendry@enron.com
## 9950 158381 18205 TO tana.jones@enron.com
## 9951 158382 18205 TO sara.shackleton@enron.com
## 9952 158383 18205 TO becky.spencer@enron.com
## 9953 158384 18205 TO mark.e.taylor@enron.com
## 9954 158408 18208 TO susan.bailey@enron.com
## 9955 158409 18208 TO samantha.boyd@enron.com
## 9956 158410 18208 TO robert.bruce@enron.com
## 9957 158411 18208 TO mary.cook@enron.com
## 9958 158412 18208 TO brent.hendry@enron.com
## 9959 158413 18208 TO tana.jones@enron.com
## 9960 158414 18208 TO sara.shackleton@enron.com
## 9961 158415 18208 TO becky.spencer@enron.com
## 9962 158416 18208 TO mark.e.taylor@enron.com
## 9963 158454 18213 TO susan.bailey@enron.com
## 9964 158455 18213 TO samantha.boyd@enron.com
## 9965 158456 18213 TO robert.bruce@enron.com
## 9966 158457 18213 TO mary.cook@enron.com
## 9967 158458 18213 TO brent.hendry@enron.com
## 9968 158459 18213 TO tana.jones@enron.com
## 9969 158460 18213 TO sara.shackleton@enron.com
## 9970 158461 18213 TO becky.spencer@enron.com
## 9971 158462 18213 TO mark.e.taylor@enron.com
## 9972 159910 18349 TO no.address@enron.com
## 9973 159911 18350 TO no.address@enron.com
## 9974 159912 18351 TO no.address@enron.com
## 9975 159913 18352 TO no.address@enron.com
## 9976 159914 18353 TO no.address@enron.com
## 9977 159918 18357 TO no.address@enron.com
## 9978 159919 18358 TO no.address@enron.com
## 9979 159927 18366 TO no.address@enron.com
## 9980 159928 18367 TO no.address@enron.com
## 9981 159964 18383 TO robert.bruce@enron.com
## 9982 159981 18395 TO mark.e.taylor@enron.com
## 9983 159982 18396 TO mark.e.taylor@enron.com
## 9984 159983 18397 TO mark.e.taylor@enron.com
## 9985 159984 18398 TO mark.e.taylor@enron.com
## 9986 159985 18399 TO mark.e.taylor@enron.com
## 9987 164246 18675 TO mark.e.taylor@enron.com
## 9988 165320 18878 TO taylor@enron.com
## 9989 165568 18893 TO taylor@enron.com
## 9990 165745 18946 TO n..gray@enron.com
## 9991 165746 18946 TO savita.puthigai@enron.com
## 9992 165747 18946 TO taylor@enron.com
## 9993 165748 18946 CC brad.richter@enron.com
## 9994 165749 18946 BCC brad.richter@enron.com
## 9995 165754 18951 TO taylor@enron.com
## 9996 166022 18962 TO taylor@enron.com
## 9997 167273 19055 TO mary.cook@enron.com
## 9998 167274 19055 TO taylor@enron.com
## 9999 167275 19055 CC carol.st.@enron.com
## 10000 167276 19055 BCC carol.st.@enron.com
## 10001 167285 19058 TO susan.bailey@enron.com
## 10002 167286 19058 TO samantha.boyd@enron.com
## 10003 167287 19058 TO mary.cook@enron.com
## 10004 167288 19058 TO n..gray@enron.com
## 10005 167289 19058 TO marie.heard@enron.com
## 10006 167290 19058 TO brent.hendry@enron.com
## 10007 167291 19058 TO tana.jones@enron.com
## 10008 167292 19058 TO holly.keiser@enron.com
## 10009 167293 19058 TO c..koehler@enron.com
## 10010 167294 19058 TO pinto.leite@enron.com
## 10011 167295 19058 TO cheryl.nelson@enron.com
## 10012 167296 19058 TO frank.sayre@enron.com
## 10013 167297 19058 TO sara.shackleton@enron.com
## 10014 167298 19058 TO taylor@enron.com
## 10015 168181 19141 TO edward.ondarza@enron.com
## 10016 168182 19141 CC vicki.sharp@enron.com
## 10017 168183 19141 CC taylor@enron.com
## 10018 168184 19141 BCC vicki.sharp@enron.com
## 10019 168185 19141 BCC taylor@enron.com
## 10020 168275 19162 TO kcarter@simmonsco-intl.com
## 10021 168276 19163 TO kcarter@simmonsco-intl.com
## 10022 168277 19164 TO lsutaylor@hotmail.com
## 10023 168278 19165 TO kcarter@simmonsco-intl.com
## 10024 168279 19166 TO pocket515@hotmail.com
## 10025 168280 19167 TO rs772@stern.nyu.edu
## 10026 168281 19168 TO doug.block@halliburton.com
## 10027 168282 19169 TO doug.block@halliburton.com
## 10028 168283 19170 TO john.massey@enron.com
## 10029 168284 19171 TO trevor.woods@enron.com
## 10030 168285 19172 TO mary.schoen@enron.com
## 10031 168286 19172 TO lisa.jacobson@enron.com
## 10032 168287 19173 TO doug.block@halliburton.com
## 10033 168288 19174 TO mark.e.taylor@enron.com
## 10034 168289 19175 TO trevor.woods@enron.com
## 10035 168290 19176 TO pocket515@hotmail.com
## 10036 168291 19177 TO kcarter@simmonsco-intl.com
## 10037 168292 19178 TO paul.gregory@enron.com
## 10038 168293 19179 TO brian@universitytools.com
## 10039 168294 19180 TO kcarter@simmonsco-intl.com
## 10040 168295 19181 TO aaron.martinsen@enron.com
## 10041 168296 19182 TO adam.giannone@enron.com
## 10042 168297 19183 TO trevor.woods@enron.com
## 10043 168298 19184 TO trevor.woods@enron.com
## 10044 168299 19185 TO john.massey@enron.com
## 10045 168300 19186 TO john.massey@enron.com
## 10046 168301 19187 TO trevor.woods@enron.com
## 10047 168302 19188 TO trevor.woods@enron.com
## 10048 168303 19189 TO trevor.woods@enron.com
## 10049 168304 19190 TO trevor.woods@enron.com
## 10050 168305 19191 TO trevor.woods@enron.com
## 10051 168306 19192 TO trevor.woods@enron.com
## 10052 168307 19192 CC john.massey@enron.com
## 10053 168308 19192 BCC john.massey@enron.com
## 10054 168309 19193 TO trevor.woods@enron.com
## 10055 168310 19194 TO trevor.woods@enron.com
## 10056 168311 19195 TO john.massey@enron.com
## 10057 168312 19196 TO trevor.woods@enron.com
## 10058 168313 19197 TO trevor.woods@enron.com
## 10059 168314 19198 TO paul.gregory@enron.com
## 10060 168315 19199 TO trevor.woods@enron.com
## 10061 168316 19200 TO adam.giannone@enron.com
## 10062 168317 19201 TO trevor.woods@enron.com
## 10063 168318 19202 TO adam.giannone@enron.com
## 10064 168319 19203 TO adam.giannone@enron.com
## 10065 168320 19204 TO adam.giannone@enron.com
## 10066 168321 19205 TO trevor.woods@enron.com
## 10067 168322 19206 TO kcarter@simmonsco-intl.com
## 10068 168323 19207 TO kcarter@simmonsco-intl.com
## 10069 168324 19208 TO kcarter@simmonsco-intl.com
## 10070 168325 19209 TO kcarter@simmonsco-intl.com
## 10071 168326 19210 TO trevor.woods@enron.com
## 10072 168327 19210 TO lucy.king@enron.com
## 10073 168328 19211 TO aaron.martinsen@enron.com
## 10074 168329 19212 TO doug.block@halliburton.com
## 10075 168330 19213 TO trevor.woods@enron.com
## 10076 168732 19473 TO peter.keohane@enron.com
## 10077 168733 19474 TO lhayman@skadden.com
## 10078 168734 19475 TO holly.keiser@enron.com
## 10079 168735 19476 TO robert.quick@enron.com
## 10080 168736 19476 TO matthias.lee@enron.com
## 10081 168737 19476 TO justin.boyd@enron.com
## 10082 168738 19476 CC angeline.poon@enron.com
## 10083 168739 19476 BCC angeline.poon@enron.com
## 10084 168740 19477 TO christi.nicolay@enron.com
## 10085 168741 19477 CC e..haedicke@enron.com
## 10086 168742 19477 CC james.d.steffes@enron.com
## 10087 168743 19477 BCC e..haedicke@enron.com
## 10088 168744 19477 BCC james.d.steffes@enron.com
## 10089 168745 19478 TO lisa.mellencamp@enron.com
## 10090 168746 19478 CC sheila.tweed@enron.com
## 10091 168747 19478 CC charles.ward@enron.com
## 10092 168748 19478 BCC sheila.tweed@enron.com
## 10093 168749 19478 BCC charles.ward@enron.com
## 10094 168750 19479 TO kathlene.mosley@enron.com
## 10095 168751 19480 TO s..bradford@enron.com
## 10096 168752 19481 TO a.taylor@enron.com
## 10097 168753 19482 TO homer.lin@enron.com
## 10098 168754 19482 CC scott.moncrieff@enron.com
## 10099 168755 19482 CC joe.king@enron.com
## 10100 168756 19482 CC robert.quick@enron.com
## 10101 168757 19482 CC matthias.lee@enron.com
## 10102 168758 19482 BCC scott.moncrieff@enron.com
## 10103 168759 19482 BCC joe.king@enron.com
## 10104 168760 19482 BCC robert.quick@enron.com
## 10105 168761 19482 BCC matthias.lee@enron.com
## 10106 168762 19483 TO robbi.rossi@enron.com
## 10107 168763 19484 TO brent.hendry@enron.com
## 10108 168764 19485 TO jbirch@isda-eur.org
## 10109 168765 19485 CC scarey@isda.org
## 10110 168766 19485 BCC scarey@isda.org
## 10111 168767 19486 TO holly.keiser@enron.com
## 10112 168768 19487 TO lisa.mellencamp@enron.com
## 10113 168769 19488 TO jim.griffin@compaq.com
## 10114 168770 19489 TO wayne.gresham@enron.com
## 10115 168771 19489 TO alan.aronowitz@enron.com
## 10116 168772 19490 TO bhendry@houston.rr.com
## 10117 168773 19491 TO chris.walker@enron.com
## 10118 168774 19492 TO justin.boyd@enron.com
## 10119 168775 19493 TO mary.cook@enron.com
## 10120 168776 19493 TO brent.hendry@enron.com
## 10121 168777 19493 TO c..koehler@enron.com
## 10122 168778 19493 TO pinto.leite@enron.com
## 10123 168779 19493 TO cheryl.nelson@enron.com
## 10124 168780 19493 TO frank.sayre@enron.com
## 10125 168781 19493 TO sara.shackleton@enron.com
## 10126 168782 19493 TO susan.bailey@enron.com
## 10127 168783 19493 TO samantha.boyd@enron.com
## 10128 168784 19493 TO marie.heard@enron.com
## 10129 168785 19493 TO tana.jones@enron.com
## 10130 168786 19493 TO stephanie.panus@enron.com
## 10131 168787 19494 TO janette.elbertson@enron.com
## 10132 168788 19495 TO janette.elbertson@enron.com
## 10133 168789 19496 TO janette.elbertson@enron.com
## 10134 168790 19497 TO carol.st.@enron.com
## 10135 168791 19498 TO . stacy@enron.com
## 10136 168792 19498 TO e..haedicke@enron.com
## 10137 168793 19498 TO mark.e.taylor@enron.com
## 10138 168794 19499 TO jane.mcbride@enron.com
## 10139 168795 19499 CC susan.musch@enron.com
## 10140 168796 19499 BCC susan.musch@enron.com
## 10141 168797 19500 TO carlos.alatorre@enron.com
## 10142 168798 19501 TO tana.jones@enron.com
## 10143 168799 19502 TO lhayman@skadden.com
## 10144 168800 19503 TO kevdb@infospace.com
## 10145 168801 19504 TO tana.jones@enron.com
## 10146 168802 19505 TO louise.kitchen@enron.com
## 10147 168803 19506 TO ted.bockius@ivita.com
## 10148 168804 19507 TO ted.bockius@ivita.com
## 10149 168805 19508 TO ted.bockius@ivita.com
## 10150 168806 19509 TO ted.bockius@ivita.com
## 10151 168807 19510 TO tana.jones@enron.com
## 10152 168808 19511 TO a-mheard@houston.rr.com
## 10153 168809 19512 TO veronica_brock@hotmail.com
## 10154 168810 19513 TO tana.jones@enron.com
## 10155 168811 19514 TO tana.jones@enron.com
## 10156 168812 19515 TO tana.jones@enron.com
## 10157 168813 19516 TO tana.jones@enron.com
## 10158 168814 19517 TO tana.jones@enron.com
## 10159 168815 19518 TO outlook.team@enron.com
## 10160 168816 19519 TO tana.jones@enron.com
## 10161 168817 19520 TO tana.jones@enron.com
## 10162 168818 19521 TO lhayman@skadden.com
## 10163 168819 19522 TO lhayman@skadden.com
## 10164 168820 19523 TO mcgovern@enron.com
## 10165 168821 19523 TO mcgovernw@sec.gov
## 10166 168822 19524 TO mcgovern@enron.com
## 10167 168823 19524 TO mcgovernw@sec.gov
## 10168 168824 19525 TO peter.keohane@enron.com
## 10169 168825 19525 CC russell.diamond@enron.com
## 10170 168826 19525 CC william.bradford@enron.com
## 10171 168827 19525 CC carol.clair@enron.com
## 10172 168828 19525 BCC russell.diamond@enron.com
## 10173 168829 19525 BCC william.bradford@enron.com
## 10174 168830 19525 BCC carol.clair@enron.com
## 10175 168831 19526 TO mcgovern@enron.com
## 10176 168832 19526 TO mcgovernw@sec.gov
## 10177 168833 19527 TO michael.robison@enron.com
## 10178 168834 19528 TO cassandra.schultz@enron.com
## 10179 168835 19529 TO 8778552081@pagenetmessage.net
## 10180 168836 19530 TO eireland@foleylaw.com
## 10181 168837 19530 CC julia.murray@enron.com
## 10182 168838 19530 CC carol.clair@enron.com
## 10183 168839 19530 BCC julia.murray@enron.com
## 10184 168840 19530 BCC carol.clair@enron.com
## 10185 168841 19531 TO 8778552081@pagenetmessage.net
## 10186 168842 19532 TO janette.elbertson@enron.com
## 10187 168843 19533 TO eservice@coair.com
## 10188 168844 19534 TO scarey@isda.org
## 10189 168845 19534 CC rainslie@isda.org
## 10190 168846 19534 CC e..haedicke@enron.com
## 10191 168847 19534 CC mark.evans@enron.com
## 10192 168848 19534 CC justin.boyd@enron.com
## 10193 168849 19534 CC paul.simons@enron.com
## 10194 168850 19534 CC marcus.polach@enron.com
## 10195 168851 19534 BCC rainslie@isda.org
## 10196 168852 19534 BCC e..haedicke@enron.com
## 10197 168853 19534 BCC mark.evans@enron.com
## 10198 168854 19534 BCC justin.boyd@enron.com
## 10199 168855 19534 BCC paul.simons@enron.com
## 10200 168856 19534 BCC marcus.polach@enron.com
## 10201 168857 19535 TO samuel.schott@enron.com
## 10202 168858 19535 TO tom.moran@enron.com
## 10203 168859 19536 TO michael.hicks@enron.com
## 10204 168860 19536 TO nelly.carpenter@enron.com
## 10205 168861 19537 TO mark.e.taylor@enron.com
## 10206 168862 19538 TO michael.hicks@enron.com
## 10207 168863 19538 TO nelly.carpenter@enron.com
## 10208 169719 19740 TO mark.e.taylor@enron.com
## 10209 170076 19809 TO kcarter@simmonsco-intl.com
## 10210 170139 19824 TO laurel.adams@enron.com
## 10211 170140 19824 TO diane.anderson@enron.com
## 10212 170141 19824 TO jean.bell@enron.com
## 10213 170142 19824 TO bob.bowen@enron.com
## 10214 170143 19824 TO sharen.cason@enron.com
## 10215 170144 19824 TO celeste.cisneros@enron.com
## 10216 170145 19824 TO jason.fischer@enron.com
## 10217 170146 19824 TO a..garcia@enron.com
## 10218 170147 19824 TO gordon.heaney@enron.com
## 10219 170148 19824 TO kimberly.hundl@enron.com
## 10220 170149 19824 TO joe.hunter@enron.com
## 10221 170150 19824 TO ann.murphy@enron.com
## 10222 170151 19824 TO bianca.ornelas@enron.com
## 10223 170152 19824 TO stephanie.piwetz@enron.com
## 10224 170153 19824 TO melissa.rodriguez@enron.com
## 10225 170154 19824 TO dianne.seib@enron.com
## 10226 170155 19824 TO s..theriot@enron.com
## 10227 170156 19824 TO r..brackett@enron.com
## 10228 170157 19824 TO s..bradford@enron.com
## 10229 170158 19824 TO y..brown@enron.com
## 10230 170159 19824 TO wendy.conwell@enron.com
## 10231 170160 19824 TO ken.curry@enron.com
## 10232 170161 19824 TO veronica.espinoza@enron.com
## 10233 170162 19824 TO veronica.gonzalez@enron.com
## 10234 170163 19824 TO rudwell.johnson@enron.com
## 10235 170164 19824 TO s..landry@enron.com
## 10236 170165 19824 TO wendi.lebrocq@enron.com
## 10237 170166 19824 TO nidia.mendoza@enron.com
## 10238 170167 19824 TO maribel.monterrey@enron.com
## 10239 170168 19824 TO tom.moran@enron.com
## 10240 170169 19824 TO carol.north@enron.com
## 10241 170170 19824 TO randy.otto@enron.com
## 10242 170171 19824 TO paul.radous@enron.com
## 10243 170172 19824 TO aparna.rajaram@enron.com
## 10244 170173 19824 TO tanya.rohauer@enron.com
## 10245 170174 19824 TO edward.sacks@enron.com
## 10246 170175 19824 TO max.sonnonstine@enron.com
## 10247 170176 19824 TO darren.vanek@enron.com
## 10248 170177 19824 TO jason.williams@enron.com
## 10249 170178 19824 TO anthony.campos@enron.com
## 10250 170179 19824 TO sharon.crawford@enron.com
## 10251 170180 19824 TO amber.ebow@enron.com
## 10252 170181 19824 TO diane.ellstrom@enron.com
## 10253 170182 19824 TO camille.gerard@enron.com
## 10254 170183 19824 TO d..hare@enron.com
## 10255 170184 19824 TO cheryl.johnson@enron.com
## 10256 170185 19824 TO karen.lambert@enron.com
## 10257 170186 19824 TO georgi.landau@enron.com
## 10258 170187 19824 TO lisa.lees@enron.com
## 10259 170188 19824 TO jason.moore@enron.com
## 10260 170189 19824 TO dale.neuner@enron.com
## 10261 170190 19824 TO leslie.reeves@enron.com
## 10262 170191 19824 TO stacey.richardson@enron.com
## 10263 170192 19824 TO bernice.rodriguez@enron.com
## 10264 170193 19824 TO samuel.schott@enron.com
## 10265 170194 19824 TO stephanie.sever@enron.com
## 10266 170195 19824 TO lynn.shivers@enron.com
## 10267 170196 19824 TO linda.sietzema@enron.com
## 10268 170197 19824 TO carrie.southard@enron.com
## 10269 170198 19824 TO susan.bailey@enron.com
## 10270 170199 19824 TO samantha.boyd@enron.com
## 10271 170200 19824 TO mary.cook@enron.com
## 10272 170201 19824 TO n..gray@enron.com
## 10273 170202 19824 TO marie.heard@enron.com
## 10274 170203 19824 TO brent.hendry@enron.com
## 10275 170204 19824 TO tana.jones@enron.com
## 10276 170205 19824 TO holly.keiser@enron.com
## 10277 170206 19824 TO c..koehler@enron.com
## 10278 170207 19824 TO pinto.leite@enron.com
## 10279 170208 19824 TO cheryl.nelson@enron.com
## 10280 170209 19824 TO frank.sayre@enron.com
## 10281 170210 19824 TO sara.shackleton@enron.com
## 10282 170211 19824 TO taylor@enron.com
## 10283 170260 19829 TO laurel.adams@enron.com
## 10284 170261 19829 TO diane.anderson@enron.com
## 10285 170262 19829 TO jean.bell@enron.com
## 10286 170263 19829 TO bob.bowen@enron.com
## 10287 170264 19829 TO sharen.cason@enron.com
## 10288 170265 19829 TO celeste.cisneros@enron.com
## 10289 170266 19829 TO jason.fischer@enron.com
## 10290 170267 19829 TO a..garcia@enron.com
## 10291 170268 19829 TO gordon.heaney@enron.com
## 10292 170269 19829 TO kimberly.hundl@enron.com
## 10293 170270 19829 TO joe.hunter@enron.com
## 10294 170271 19829 TO ann.murphy@enron.com
## 10295 170272 19829 TO bianca.ornelas@enron.com
## 10296 170273 19829 TO stephanie.piwetz@enron.com
## 10297 170274 19829 TO melissa.rodriguez@enron.com
## 10298 170275 19829 TO dianne.seib@enron.com
## 10299 170276 19829 TO s..theriot@enron.com
## 10300 170277 19829 TO r..brackett@enron.com
## 10301 170278 19829 TO s..bradford@enron.com
## 10302 170279 19829 TO y..brown@enron.com
## 10303 170280 19829 TO wendy.conwell@enron.com
## 10304 170281 19829 TO ken.curry@enron.com
## 10305 170282 19829 TO veronica.espinoza@enron.com
## 10306 170283 19829 TO veronica.gonzalez@enron.com
## 10307 170284 19829 TO rudwell.johnson@enron.com
## 10308 170285 19829 TO s..landry@enron.com
## 10309 170286 19829 TO wendi.lebrocq@enron.com
## 10310 170287 19829 TO nidia.mendoza@enron.com
## 10311 170288 19829 TO maribel.monterrey@enron.com
## 10312 170289 19829 TO tom.moran@enron.com
## 10313 170290 19829 TO carol.north@enron.com
## 10314 170291 19829 TO randy.otto@enron.com
## 10315 170292 19829 TO paul.radous@enron.com
## 10316 170293 19829 TO aparna.rajaram@enron.com
## 10317 170294 19829 TO tanya.rohauer@enron.com
## 10318 170295 19829 TO edward.sacks@enron.com
## 10319 170296 19829 TO max.sonnonstine@enron.com
## 10320 170297 19829 TO darren.vanek@enron.com
## 10321 170298 19829 TO jason.williams@enron.com
## 10322 170299 19829 TO anthony.campos@enron.com
## 10323 170300 19829 TO sharon.crawford@enron.com
## 10324 170301 19829 TO amber.ebow@enron.com
## 10325 170302 19829 TO diane.ellstrom@enron.com
## 10326 170303 19829 TO camille.gerard@enron.com
## 10327 170304 19829 TO d..hare@enron.com
## 10328 170305 19829 TO cheryl.johnson@enron.com
## 10329 170306 19829 TO karen.lambert@enron.com
## 10330 170307 19829 TO georgi.landau@enron.com
## 10331 170308 19829 TO lisa.lees@enron.com
## 10332 170309 19829 TO jason.moore@enron.com
## 10333 170310 19829 TO dale.neuner@enron.com
## 10334 170311 19829 TO leslie.reeves@enron.com
## 10335 170312 19829 TO stacey.richardson@enron.com
## 10336 170313 19829 TO bernice.rodriguez@enron.com
## 10337 170314 19829 TO samuel.schott@enron.com
## 10338 170315 19829 TO stephanie.sever@enron.com
## 10339 170316 19829 TO lynn.shivers@enron.com
## 10340 170317 19829 TO linda.sietzema@enron.com
## 10341 170318 19829 TO carrie.southard@enron.com
## 10342 170319 19829 TO susan.bailey@enron.com
## 10343 170320 19829 TO samantha.boyd@enron.com
## 10344 170321 19829 TO mary.cook@enron.com
## 10345 170322 19829 TO n..gray@enron.com
## 10346 170323 19829 TO marie.heard@enron.com
## 10347 170324 19829 TO brent.hendry@enron.com
## 10348 170325 19829 TO tana.jones@enron.com
## 10349 170326 19829 TO holly.keiser@enron.com
## 10350 170327 19829 TO c..koehler@enron.com
## 10351 170328 19829 TO pinto.leite@enron.com
## 10352 170329 19829 TO cheryl.nelson@enron.com
## 10353 170330 19829 TO frank.sayre@enron.com
## 10354 170331 19829 TO sara.shackleton@enron.com
## 10355 170332 19829 TO taylor@enron.com
## 10356 170411 19835 TO taylor@enron.com
## 10357 170692 19896 TO laurel.adams@enron.com
## 10358 170693 19896 TO diane.anderson@enron.com
## 10359 170694 19896 TO jean.bell@enron.com
## 10360 170695 19896 TO bob.bowen@enron.com
## 10361 170696 19896 TO sharen.cason@enron.com
## 10362 170697 19896 TO celeste.cisneros@enron.com
## 10363 170698 19896 TO jason.fischer@enron.com
## 10364 170699 19896 TO a..garcia@enron.com
## 10365 170700 19896 TO gordon.heaney@enron.com
## 10366 170701 19896 TO kimberly.hundl@enron.com
## 10367 170702 19896 TO joe.hunter@enron.com
## 10368 170703 19896 TO ann.murphy@enron.com
## 10369 170704 19896 TO bianca.ornelas@enron.com
## 10370 170705 19896 TO stephanie.piwetz@enron.com
## 10371 170706 19896 TO melissa.rodriguez@enron.com
## 10372 170707 19896 TO dianne.seib@enron.com
## 10373 170708 19896 TO s..theriot@enron.com
## 10374 170709 19896 TO r..brackett@enron.com
## 10375 170710 19896 TO s..bradford@enron.com
## 10376 170711 19896 TO y..brown@enron.com
## 10377 170712 19896 TO wendy.conwell@enron.com
## 10378 170713 19896 TO ken.curry@enron.com
## 10379 170714 19896 TO veronica.espinoza@enron.com
## 10380 170715 19896 TO veronica.gonzalez@enron.com
## 10381 170716 19896 TO rudwell.johnson@enron.com
## 10382 170717 19896 TO s..landry@enron.com
## 10383 170718 19896 TO wendi.lebrocq@enron.com
## 10384 170719 19896 TO nidia.mendoza@enron.com
## 10385 170720 19896 TO maribel.monterrey@enron.com
## 10386 170721 19896 TO tom.moran@enron.com
## 10387 170722 19896 TO tracy.ngo@enron.com
## 10388 170723 19896 TO carol.north@enron.com
## 10389 170724 19896 TO randy.otto@enron.com
## 10390 170725 19896 TO paul.radous@enron.com
## 10391 170726 19896 TO aparna.rajaram@enron.com
## 10392 170727 19896 TO tanya.rohauer@enron.com
## 10393 170728 19896 TO edward.sacks@enron.com
## 10394 170729 19896 TO max.sonnonstine@enron.com
## 10395 170730 19896 TO darren.vanek@enron.com
## 10396 170731 19896 TO jason.williams@enron.com
## 10397 170732 19896 TO anthony.campos@enron.com
## 10398 170733 19896 TO sharon.crawford@enron.com
## 10399 170734 19896 TO amber.ebow@enron.com
## 10400 170735 19896 TO diane.ellstrom@enron.com
## 10401 170736 19896 TO camille.gerard@enron.com
## 10402 170737 19896 TO d..hare@enron.com
## 10403 170738 19896 TO cheryl.johnson@enron.com
## 10404 170739 19896 TO karen.lambert@enron.com
## 10405 170740 19896 TO georgi.landau@enron.com
## 10406 170741 19896 TO lisa.lees@enron.com
## 10407 170742 19896 TO jason.moore@enron.com
## 10408 170743 19896 TO dale.neuner@enron.com
## 10409 170744 19896 TO leslie.reeves@enron.com
## 10410 170745 19896 TO stacey.richardson@enron.com
## 10411 170746 19896 TO bernice.rodriguez@enron.com
## 10412 170747 19896 TO samuel.schott@enron.com
## 10413 170748 19896 TO stephanie.sever@enron.com
## 10414 170749 19896 TO lynn.shivers@enron.com
## 10415 170750 19896 TO linda.sietzema@enron.com
## 10416 170751 19896 TO carrie.southard@enron.com
## 10417 170752 19896 TO susan.bailey@enron.com
## 10418 170753 19896 TO samantha.boyd@enron.com
## 10419 170754 19896 TO mary.cook@enron.com
## 10420 170755 19896 TO n..gray@enron.com
## 10421 170756 19896 TO marie.heard@enron.com
## 10422 170757 19896 TO brent.hendry@enron.com
## 10423 170758 19896 TO tana.jones@enron.com
## 10424 170759 19896 TO holly.keiser@enron.com
## 10425 170760 19896 TO c..koehler@enron.com
## 10426 170761 19896 TO pinto.leite@enron.com
## 10427 170762 19896 TO cheryl.nelson@enron.com
## 10428 170763 19896 TO frank.sayre@enron.com
## 10429 170764 19896 TO sara.shackleton@enron.com
## 10430 170765 19896 TO taylor@enron.com
## 10431 171821 19976 TO lance.schuler-legal@enron.com
## 10432 171822 19976 TO julia.murray@enron.com
## 10433 171823 19976 TO elizabeth.sager@enron.com
## 10434 171824 19976 TO michelle.cash@enron.com
## 10435 171825 19976 TO jordan.mintz@enron.com
## 10436 171826 19976 TO taylor@enron.com
## 10437 171827 19976 TO richard.b.sanders@enron.com
## 10438 171828 19976 TO peter.del@enron.com
## 10439 171829 19976 TO joseph.henry@enron.com
## 10440 171830 19976 CC sandy.haldeman@enron.com
## 10441 171831 19976 CC carolyn.george@enron.com
## 10442 171832 19976 CC alice.wright@enron.com
## 10443 171833 19976 CC twanda.sweet@enron.com
## 10444 171834 19976 CC c..forsyth@enron.com
## 10445 171835 19976 CC holly.keiser@enron.com
## 10446 171836 19976 CC martha.keesler@enron.com
## 10447 171837 19976 CC susan.laird@enron.com
## 10448 171838 19976 BCC sandy.haldeman@enron.com
## 10449 171839 19976 BCC carolyn.george@enron.com
## 10450 171840 19976 BCC alice.wright@enron.com
## 10451 171841 19976 BCC twanda.sweet@enron.com
## 10452 171842 19976 BCC c..forsyth@enron.com
## 10453 171843 19976 BCC holly.keiser@enron.com
## 10454 171844 19976 BCC martha.keesler@enron.com
## 10455 171845 19976 BCC susan.laird@enron.com
## 10456 173599 20037 TO taylor@enron.com
## 10457 173600 20037 TO fran.mayes@enron.com
## 10458 173621 20039 TO julia.murray@enron.com
## 10459 173622 20039 TO travis.mccullough@enron.com
## 10460 173623 20039 TO carol.st.@enron.com
## 10461 173624 20039 TO lance.schuler-legal@enron.com
## 10462 173625 20039 TO taylor@enron.com
## 10463 173626 20039 TO richard.b.sanders@enron.com
## 10464 173627 20039 TO jordan.mintz@enron.com
## 10465 173628 20039 TO gareth.bahlmann@enron.com
## 10466 173629 20039 TO joel.ephross@enron.com
## 10467 173630 20039 CC carolyn.george@enron.com
## 10468 173631 20039 CC theresa.zucha@enron.com
## 10469 173632 20039 CC sandy.haldeman@enron.com
## 10470 173633 20039 CC twanda.sweet@enron.com
## 10471 173634 20039 CC c..forsyth@enron.com
## 10472 173635 20039 CC m..kumbalek@enron.com
## 10473 173636 20039 BCC carolyn.george@enron.com
## 10474 173637 20039 BCC theresa.zucha@enron.com
## 10475 173638 20039 BCC sandy.haldeman@enron.com
## 10476 173639 20039 BCC twanda.sweet@enron.com
## 10477 173640 20039 BCC c..forsyth@enron.com
## 10478 173641 20039 BCC m..kumbalek@enron.com
## 10479 173659 20050 TO e..haedicke@enron.com
## 10480 173660 20050 TO lance.schuler-legal@enron.com
## 10481 173661 20050 TO carol.st.@enron.com
## 10482 173662 20050 TO julia.murray@enron.com
## 10483 173663 20050 TO travis.mccullough@enron.com
## 10484 173664 20050 TO gareth.bahlmann@enron.com
## 10485 173665 20050 TO taylor@enron.com
## 10486 173679 20052 TO rosalee.fleming@enron.com
## 10487 173680 20052 CC taylor@enron.com
## 10488 173681 20052 BCC taylor@enron.com
## 10489 173682 20053 TO sheila.tweed@enron.com
## 10490 173683 20053 TO elizabeth.sager@enron.com
## 10491 173684 20053 TO richard.b.sanders@enron.com
## 10492 173685 20053 TO michelle.cash@enron.com
## 10493 173686 20053 TO taylor@enron.com
## 10494 173687 20053 TO lance.schuler-legal@enron.com
## 10495 173688 20053 CC edie.leschber@enron.com
## 10496 173689 20053 CC suzanne.adams@enron.com
## 10497 173690 20053 CC alice.wright@enron.com
## 10498 173691 20053 CC twanda.sweet@enron.com
## 10499 173692 20053 CC holly.keiser@enron.com
## 10500 173693 20053 CC sandy.haldeman@enron.com
## 10501 173694 20053 BCC edie.leschber@enron.com
## 10502 173695 20053 BCC suzanne.adams@enron.com
## 10503 173696 20053 BCC alice.wright@enron.com
## 10504 173697 20053 BCC twanda.sweet@enron.com
## 10505 173698 20053 BCC holly.keiser@enron.com
## 10506 173699 20053 BCC sandy.haldeman@enron.com
## 10507 173700 20054 TO julia.murray@enron.com
## 10508 173701 20054 TO travis.mccullough@enron.com
## 10509 173702 20054 TO carol.st.@enron.com
## 10510 173703 20054 TO lance.schuler-legal@enron.com
## 10511 173704 20054 TO taylor@enron.com
## 10512 173705 20054 TO richard.b.sanders@enron.com
## 10513 173706 20054 TO jordan.mintz@enron.com
## 10514 173707 20054 TO gareth.bahlmann@enron.com
## 10515 173708 20054 TO joel.ephross@enron.com
## 10516 173709 20054 CC carolyn.george@enron.com
## 10517 173710 20054 CC theresa.zucha@enron.com
## 10518 173711 20054 CC sandy.haldeman@enron.com
## 10519 173712 20054 CC holly.keiser@enron.com
## 10520 173713 20054 CC twanda.sweet@enron.com
## 10521 173714 20054 CC c..forsyth@enron.com
## 10522 173715 20054 BCC carolyn.george@enron.com
## 10523 173716 20054 BCC theresa.zucha@enron.com
## 10524 173717 20054 BCC sandy.haldeman@enron.com
## 10525 173718 20054 BCC holly.keiser@enron.com
## 10526 173719 20054 BCC twanda.sweet@enron.com
## 10527 173720 20054 BCC c..forsyth@enron.com
## 10528 173904 20085 TO h..douglas@enron.com
## 10529 173905 20085 TO wes.colwell@enron.com
## 10530 173906 20085 TO taylor@enron.com
## 10531 173907 20085 TO joseph.deffner@enron.com
## 10532 173908 20085 TO jordan.mintz@enron.com
## 10533 173909 20085 TO lance.schuler-legal@enron.com
## 10534 173910 20085 CC christina.brandli@enron.com
## 10535 173911 20085 CC holly.keiser@enron.com
## 10536 173912 20085 CC c..forsyth@enron.com
## 10537 173913 20085 CC shirley.tijerina@enron.com
## 10538 173914 20085 BCC christina.brandli@enron.com
## 10539 173915 20085 BCC holly.keiser@enron.com
## 10540 173916 20085 BCC c..forsyth@enron.com
## 10541 173917 20085 BCC shirley.tijerina@enron.com
## 10542 174888 20178 TO laurel.adams@enron.com
## 10543 174889 20178 TO kimberly.allen@enron.com
## 10544 174890 20178 TO diane.anderson@enron.com
## 10545 174891 20178 TO jean.bell@enron.com
## 10546 174892 20178 TO bob.bowen@enron.com
## 10547 174893 20178 TO sharen.cason@enron.com
## 10548 174894 20178 TO celeste.cisneros@enron.com
## 10549 174895 20178 TO jason.fischer@enron.com
## 10550 174896 20178 TO a..garcia@enron.com
## 10551 174897 20178 TO gordon.heaney@enron.com
## 10552 174898 20178 TO kimberly.hundl@enron.com
## 10553 174899 20178 TO joe.hunter@enron.com
## 10554 174900 20178 TO ann.murphy@enron.com
## 10555 174901 20178 TO bianca.ornelas@enron.com
## 10556 174902 20178 TO stephanie.piwetz@enron.com
## 10557 174903 20178 TO melissa.rodriguez@enron.com
## 10558 174904 20178 TO dianne.seib@enron.com
## 10559 174905 20178 TO scott.tackett@enron.com
## 10560 174906 20178 TO s..theriot@enron.com
## 10561 174907 20178 TO r..brackett@enron.com
## 10562 174908 20178 TO s..bradford@enron.com
## 10563 174909 20178 TO y..brown@enron.com
## 10564 174910 20178 TO wendy.conwell@enron.com
## 10565 174911 20178 TO ken.curry@enron.com
## 10566 174912 20178 TO veronica.espinoza@enron.com
## 10567 174913 20178 TO veronica.gonzalez@enron.com
## 10568 174914 20178 TO rudwell.johnson@enron.com
## 10569 174915 20178 TO s..landry@enron.com
## 10570 174916 20178 TO wendi.lebrocq@enron.com
## 10571 174917 20178 TO nidia.mendoza@enron.com
## 10572 174918 20178 TO maribel.monterrey@enron.com
## 10573 174919 20178 TO tom.moran@enron.com
## 10574 174920 20178 TO tracy.ngo@enron.com
## 10575 174921 20178 TO carol.north@enron.com
## 10576 174922 20178 TO randy.otto@enron.com
## 10577 174923 20178 TO paul.radous@enron.com
## 10578 174924 20178 TO aparna.rajaram@enron.com
## 10579 174925 20178 TO tanya.rohauer@enron.com
## 10580 174926 20178 TO edward.sacks@enron.com
## 10581 174927 20178 TO max.sonnonstine@enron.com
## 10582 174928 20178 TO darren.vanek@enron.com
## 10583 174929 20178 TO jason.williams@enron.com
## 10584 174930 20178 TO anthony.campos@enron.com
## 10585 174931 20178 TO sharon.crawford@enron.com
## 10586 174932 20178 TO amber.ebow@enron.com
## 10587 174933 20178 TO diane.ellstrom@enron.com
## 10588 174934 20178 TO camille.gerard@enron.com
## 10589 174935 20178 TO d..hare@enron.com
## 10590 174936 20178 TO cheryl.johnson@enron.com
## 10591 174937 20178 TO karen.lambert@enron.com
## 10592 174938 20178 TO georgi.landau@enron.com
## 10593 174939 20178 TO lisa.lees@enron.com
## 10594 174940 20178 TO jason.moore@enron.com
## 10595 174941 20178 TO dale.neuner@enron.com
## 10596 174942 20178 TO leslie.reeves@enron.com
## 10597 174943 20178 TO stacey.richardson@enron.com
## 10598 174944 20178 TO bernice.rodriguez@enron.com
## 10599 174945 20178 TO samuel.schott@enron.com
## 10600 174946 20178 TO stephanie.sever@enron.com
## 10601 174947 20178 TO lynn.shivers@enron.com
## 10602 174948 20178 TO linda.sietzema@enron.com
## 10603 174949 20178 TO carrie.southard@enron.com
## 10604 174950 20178 TO susan.bailey@enron.com
## 10605 174951 20178 TO samantha.boyd@enron.com
## 10606 174952 20178 TO mary.cook@enron.com
## 10607 174953 20178 TO n..gray@enron.com
## 10608 174954 20178 TO marie.heard@enron.com
## 10609 174955 20178 TO brent.hendry@enron.com
## 10610 174956 20178 TO tana.jones@enron.com
## 10611 174957 20178 TO holly.keiser@enron.com
## 10612 174958 20178 TO c..koehler@enron.com
## 10613 174959 20178 TO pinto.leite@enron.com
## 10614 174960 20178 TO cheryl.nelson@enron.com
## 10615 174961 20178 TO frank.sayre@enron.com
## 10616 174962 20178 TO sara.shackleton@enron.com
## 10617 174963 20178 TO taylor@enron.com
## 10618 174965 20180 TO laurel.adams@enron.com
## 10619 174966 20180 TO kimberly.allen@enron.com
## 10620 174967 20180 TO diane.anderson@enron.com
## 10621 174968 20180 TO jean.bell@enron.com
## 10622 174969 20180 TO bob.bowen@enron.com
## 10623 174970 20180 TO sharen.cason@enron.com
## 10624 174971 20180 TO celeste.cisneros@enron.com
## 10625 174972 20180 TO jason.fischer@enron.com
## 10626 174973 20180 TO a..garcia@enron.com
## 10627 174974 20180 TO gordon.heaney@enron.com
## 10628 174975 20180 TO kimberly.hundl@enron.com
## 10629 174976 20180 TO joe.hunter@enron.com
## 10630 174977 20180 TO ann.murphy@enron.com
## 10631 174978 20180 TO bianca.ornelas@enron.com
## 10632 174979 20180 TO stephanie.piwetz@enron.com
## 10633 174980 20180 TO melissa.rodriguez@enron.com
## 10634 174981 20180 TO dianne.seib@enron.com
## 10635 174982 20180 TO scott.tackett@enron.com
## 10636 174983 20180 TO s..theriot@enron.com
## 10637 174984 20180 TO r..brackett@enron.com
## 10638 174985 20180 TO s..bradford@enron.com
## 10639 174986 20180 TO y..brown@enron.com
## 10640 174987 20180 TO wendy.conwell@enron.com
## 10641 174988 20180 TO ken.curry@enron.com
## 10642 174989 20180 TO veronica.espinoza@enron.com
## 10643 174990 20180 TO veronica.gonzalez@enron.com
## 10644 174991 20180 TO rudwell.johnson@enron.com
## 10645 174992 20180 TO s..landry@enron.com
## 10646 174993 20180 TO wendi.lebrocq@enron.com
## 10647 174994 20180 TO nidia.mendoza@enron.com
## 10648 174995 20180 TO maribel.monterrey@enron.com
## 10649 174996 20180 TO tom.moran@enron.com
## 10650 174997 20180 TO tracy.ngo@enron.com
## 10651 174998 20180 TO carol.north@enron.com
## 10652 174999 20180 TO randy.otto@enron.com
## 10653 175000 20180 TO paul.radous@enron.com
## 10654 175001 20180 TO aparna.rajaram@enron.com
## 10655 175002 20180 TO tanya.rohauer@enron.com
## 10656 175003 20180 TO edward.sacks@enron.com
## 10657 175004 20180 TO max.sonnonstine@enron.com
## 10658 175005 20180 TO darren.vanek@enron.com
## 10659 175006 20180 TO jason.williams@enron.com
## 10660 175007 20180 TO anthony.campos@enron.com
## 10661 175008 20180 TO sharon.crawford@enron.com
## 10662 175009 20180 TO amber.ebow@enron.com
## 10663 175010 20180 TO diane.ellstrom@enron.com
## 10664 175011 20180 TO camille.gerard@enron.com
## 10665 175012 20180 TO d..hare@enron.com
## 10666 175013 20180 TO cheryl.johnson@enron.com
## 10667 175014 20180 TO karen.lambert@enron.com
## 10668 175015 20180 TO georgi.landau@enron.com
## 10669 175016 20180 TO lisa.lees@enron.com
## 10670 175017 20180 TO jason.moore@enron.com
## 10671 175018 20180 TO dale.neuner@enron.com
## 10672 175019 20180 TO leslie.reeves@enron.com
## 10673 175020 20180 TO stacey.richardson@enron.com
## 10674 175021 20180 TO bernice.rodriguez@enron.com
## 10675 175022 20180 TO samuel.schott@enron.com
## 10676 175023 20180 TO stephanie.sever@enron.com
## 10677 175024 20180 TO lynn.shivers@enron.com
## 10678 175025 20180 TO linda.sietzema@enron.com
## 10679 175026 20180 TO carrie.southard@enron.com
## 10680 175027 20180 TO susan.bailey@enron.com
## 10681 175028 20180 TO samantha.boyd@enron.com
## 10682 175029 20180 TO mary.cook@enron.com
## 10683 175030 20180 TO n..gray@enron.com
## 10684 175031 20180 TO marie.heard@enron.com
## 10685 175032 20180 TO brent.hendry@enron.com
## 10686 175033 20180 TO tana.jones@enron.com
## 10687 175034 20180 TO holly.keiser@enron.com
## 10688 175035 20180 TO c..koehler@enron.com
## 10689 175036 20180 TO pinto.leite@enron.com
## 10690 175037 20180 TO cheryl.nelson@enron.com
## 10691 175038 20180 TO frank.sayre@enron.com
## 10692 175039 20180 TO sara.shackleton@enron.com
## 10693 175040 20180 TO taylor@enron.com
## 10694 175183 20207 TO chris.walker@enron.com
## 10695 175184 20207 CC taylor@enron.com
## 10696 175185 20207 BCC taylor@enron.com
## 10697 175630 20252 TO alan.aronowitz@enron.com
## 10698 175631 20252 TO julia.murray@enron.com
## 10699 175632 20252 TO lance.schuler-legal@enron.com
## 10700 175633 20252 TO taylor@enron.com
## 10701 175634 20252 TO t..hodge@enron.com
## 10702 175635 20252 TO n..gray@enron.com
## 10703 175636 20252 TO sheila.tweed@enron.com
## 10704 175637 20252 TO richard.b.sanders@enron.com
## 10705 175638 20252 TO elizabeth.sager@enron.com
## 10706 175639 20252 TO frank.sayre@enron.com
## 10707 175640 20252 TO peter.keohane@enron.com
## 10708 175641 20252 CC nita.garcia@enron.com
## 10709 175642 20252 CC carolyn.george@enron.com
## 10710 175643 20252 CC sandy.haldeman@enron.com
## 10711 175644 20252 CC holly.keiser@enron.com
## 10712 175645 20252 CC joanne.rozycki@enron.com
## 10713 175646 20252 CC keegan.farrell@enron.com
## 10714 175647 20252 CC suzanne.adams@enron.com
## 10715 175648 20252 CC twanda.sweet@enron.com
## 10716 175649 20252 CC alice.wright@enron.com
## 10717 175650 20252 CC sharon.crawford@enron.com
## 10718 175651 20252 BCC nita.garcia@enron.com
## 10719 175652 20252 BCC carolyn.george@enron.com
## 10720 175653 20252 BCC sandy.haldeman@enron.com
## 10721 175654 20252 BCC holly.keiser@enron.com
## 10722 175655 20252 BCC joanne.rozycki@enron.com
## 10723 175656 20252 BCC keegan.farrell@enron.com
## 10724 175657 20252 BCC suzanne.adams@enron.com
## 10725 175658 20252 BCC twanda.sweet@enron.com
## 10726 175659 20252 BCC alice.wright@enron.com
## 10727 175660 20252 BCC sharon.crawford@enron.com
## 10728 175742 20256 TO laurel.adams@enron.com
## 10729 175743 20256 TO kimberly.allen@enron.com
## 10730 175744 20256 TO diane.anderson@enron.com
## 10731 175745 20256 TO jean.bell@enron.com
## 10732 175746 20256 TO bob.bowen@enron.com
## 10733 175747 20256 TO sharen.cason@enron.com
## 10734 175748 20256 TO celeste.cisneros@enron.com
## 10735 175749 20256 TO jason.fischer@enron.com
## 10736 175750 20256 TO a..garcia@enron.com
## 10737 175751 20256 TO gordon.heaney@enron.com
## 10738 175752 20256 TO kimberly.hundl@enron.com
## 10739 175753 20256 TO joe.hunter@enron.com
## 10740 175754 20256 TO ann.murphy@enron.com
## 10741 175755 20256 TO bianca.ornelas@enron.com
## 10742 175756 20256 TO stephanie.piwetz@enron.com
## 10743 175757 20256 TO melissa.rodriguez@enron.com
## 10744 175758 20256 TO dianne.seib@enron.com
## 10745 175759 20256 TO scott.tackett@enron.com
## 10746 175760 20256 TO s..theriot@enron.com
## 10747 175761 20256 TO r..brackett@enron.com
## 10748 175762 20256 TO s..bradford@enron.com
## 10749 175763 20256 TO y..brown@enron.com
## 10750 175764 20256 TO wendy.conwell@enron.com
## 10751 175765 20256 TO ken.curry@enron.com
## 10752 175766 20256 TO veronica.espinoza@enron.com
## 10753 175767 20256 TO veronica.gonzalez@enron.com
## 10754 175768 20256 TO rudwell.johnson@enron.com
## 10755 175769 20256 TO s..landry@enron.com
## 10756 175770 20256 TO wendi.lebrocq@enron.com
## 10757 175771 20256 TO nidia.mendoza@enron.com
## 10758 175772 20256 TO maribel.monterrey@enron.com
## 10759 175773 20256 TO tom.moran@enron.com
## 10760 175774 20256 TO tracy.ngo@enron.com
## 10761 175775 20256 TO carol.north@enron.com
## 10762 175776 20256 TO randy.otto@enron.com
## 10763 175777 20256 TO paul.radous@enron.com
## 10764 175778 20256 TO aparna.rajaram@enron.com
## 10765 175779 20256 TO tanya.rohauer@enron.com
## 10766 175780 20256 TO edward.sacks@enron.com
## 10767 175781 20256 TO max.sonnonstine@enron.com
## 10768 175782 20256 TO darren.vanek@enron.com
## 10769 175783 20256 TO jason.williams@enron.com
## 10770 175784 20256 TO anthony.campos@enron.com
## 10771 175785 20256 TO sharon.crawford@enron.com
## 10772 175786 20256 TO amber.ebow@enron.com
## 10773 175787 20256 TO diane.ellstrom@enron.com
## 10774 175788 20256 TO camille.gerard@enron.com
## 10775 175789 20256 TO d..hare@enron.com
## 10776 175790 20256 TO cheryl.johnson@enron.com
## 10777 175791 20256 TO karen.lambert@enron.com
## 10778 175792 20256 TO georgi.landau@enron.com
## 10779 175793 20256 TO lisa.lees@enron.com
## 10780 175794 20256 TO jason.moore@enron.com
## 10781 175795 20256 TO dale.neuner@enron.com
## 10782 175796 20256 TO leslie.reeves@enron.com
## 10783 175797 20256 TO stacey.richardson@enron.com
## 10784 175798 20256 TO bernice.rodriguez@enron.com
## 10785 175799 20256 TO samuel.schott@enron.com
## 10786 175800 20256 TO stephanie.sever@enron.com
## 10787 175801 20256 TO lynn.shivers@enron.com
## 10788 175802 20256 TO linda.sietzema@enron.com
## 10789 175803 20256 TO carrie.southard@enron.com
## 10790 175804 20256 TO susan.bailey@enron.com
## 10791 175805 20256 TO samantha.boyd@enron.com
## 10792 175806 20256 TO mary.cook@enron.com
## 10793 175807 20256 TO n..gray@enron.com
## 10794 175808 20256 TO marie.heard@enron.com
## 10795 175809 20256 TO brent.hendry@enron.com
## 10796 175810 20256 TO tana.jones@enron.com
## 10797 175811 20256 TO holly.keiser@enron.com
## 10798 175812 20256 TO c..koehler@enron.com
## 10799 175813 20256 TO pinto.leite@enron.com
## 10800 175814 20256 TO cheryl.nelson@enron.com
## 10801 175815 20256 TO frank.sayre@enron.com
## 10802 175816 20256 TO sara.shackleton@enron.com
## 10803 175817 20256 TO taylor@enron.com
## 10804 175923 20259 TO laurel.adams@enron.com
## 10805 175924 20259 TO kimberly.allen@enron.com
## 10806 175925 20259 TO diane.anderson@enron.com
## 10807 175926 20259 TO jean.bell@enron.com
## 10808 175927 20259 TO bob.bowen@enron.com
## 10809 175928 20259 TO julie.brewer@enron.com
## 10810 175929 20259 TO sharen.cason@enron.com
## 10811 175930 20259 TO celeste.cisneros@enron.com
## 10812 175931 20259 TO jason.fischer@enron.com
## 10813 175932 20259 TO a..garcia@enron.com
## 10814 175933 20259 TO gordon.heaney@enron.com
## 10815 175934 20259 TO kimberly.hundl@enron.com
## 10816 175935 20259 TO joe.hunter@enron.com
## 10817 175936 20259 TO ann.murphy@enron.com
## 10818 175937 20259 TO bianca.ornelas@enron.com
## 10819 175938 20259 TO stephanie.piwetz@enron.com
## 10820 175939 20259 TO melissa.rodriguez@enron.com
## 10821 175940 20259 TO dianne.seib@enron.com
## 10822 175941 20259 TO scott.tackett@enron.com
## 10823 175942 20259 TO s..theriot@enron.com
## 10824 175943 20259 TO r..brackett@enron.com
## 10825 175944 20259 TO s..bradford@enron.com
## 10826 175945 20259 TO y..brown@enron.com
## 10827 175946 20259 TO wendy.conwell@enron.com
## 10828 175947 20259 TO ken.curry@enron.com
## 10829 175948 20259 TO veronica.espinoza@enron.com
## 10830 175949 20259 TO veronica.gonzalez@enron.com
## 10831 175950 20259 TO rudwell.johnson@enron.com
## 10832 175951 20259 TO s..landry@enron.com
## 10833 175952 20259 TO wendi.lebrocq@enron.com
## 10834 175953 20259 TO nidia.mendoza@enron.com
## 10835 175954 20259 TO maribel.monterrey@enron.com
## 10836 175955 20259 TO tom.moran@enron.com
## 10837 175956 20259 TO tracy.ngo@enron.com
## 10838 175957 20259 TO carol.north@enron.com
## 10839 175958 20259 TO randy.otto@enron.com
## 10840 175959 20259 TO paul.radous@enron.com
## 10841 175960 20259 TO aparna.rajaram@enron.com
## 10842 175961 20259 TO tanya.rohauer@enron.com
## 10843 175962 20259 TO edward.sacks@enron.com
## 10844 175963 20259 TO max.sonnonstine@enron.com
## 10845 175964 20259 TO darren.vanek@enron.com
## 10846 175965 20259 TO jason.williams@enron.com
## 10847 175966 20259 TO anthony.campos@enron.com
## 10848 175967 20259 TO sharon.crawford@enron.com
## 10849 175968 20259 TO amber.ebow@enron.com
## 10850 175969 20259 TO diane.ellstrom@enron.com
## 10851 175970 20259 TO camille.gerard@enron.com
## 10852 175971 20259 TO d..hare@enron.com
## 10853 175972 20259 TO cheryl.johnson@enron.com
## 10854 175973 20259 TO karen.lambert@enron.com
## 10855 175974 20259 TO georgi.landau@enron.com
## 10856 175975 20259 TO lisa.lees@enron.com
## 10857 175976 20259 TO jason.moore@enron.com
## 10858 175977 20259 TO dale.neuner@enron.com
## 10859 175978 20259 TO leslie.reeves@enron.com
## 10860 175979 20259 TO stacey.richardson@enron.com
## 10861 175980 20259 TO bernice.rodriguez@enron.com
## 10862 175981 20259 TO samuel.schott@enron.com
## 10863 175982 20259 TO stephanie.sever@enron.com
## 10864 175983 20259 TO lynn.shivers@enron.com
## 10865 175984 20259 TO linda.sietzema@enron.com
## 10866 175985 20259 TO carrie.southard@enron.com
## 10867 175986 20259 TO susan.bailey@enron.com
## 10868 175987 20259 TO samantha.boyd@enron.com
## 10869 175988 20259 TO mary.cook@enron.com
## 10870 175989 20259 TO n..gray@enron.com
## 10871 175990 20259 TO marie.heard@enron.com
## 10872 175991 20259 TO brent.hendry@enron.com
## 10873 175992 20259 TO tana.jones@enron.com
## 10874 175993 20259 TO holly.keiser@enron.com
## 10875 175994 20259 TO c..koehler@enron.com
## 10876 175995 20259 TO pinto.leite@enron.com
## 10877 175996 20259 TO cheryl.nelson@enron.com
## 10878 175997 20259 TO frank.sayre@enron.com
## 10879 175998 20259 TO sara.shackleton@enron.com
## 10880 175999 20259 TO taylor@enron.com
## 10881 176041 20270 TO susan.bailey@enron.com
## 10882 176042 20270 TO samantha.boyd@enron.com
## 10883 176043 20270 TO mary.cook@enron.com
## 10884 176044 20270 TO n..gray@enron.com
## 10885 176045 20270 TO marie.heard@enron.com
## 10886 176046 20270 TO brent.hendry@enron.com
## 10887 176047 20270 TO tana.jones@enron.com
## 10888 176048 20270 TO holly.keiser@enron.com
## 10889 176049 20270 TO c..koehler@enron.com
## 10890 176050 20270 TO pinto.leite@enron.com
## 10891 176051 20270 TO cheryl.nelson@enron.com
## 10892 176052 20270 TO frank.sayre@enron.com
## 10893 176053 20270 TO sara.shackleton@enron.com
## 10894 176054 20270 TO taylor@enron.com
## 10895 176281 20285 TO laurel.adams@enron.com
## 10896 176282 20285 TO kimberly.allen@enron.com
## 10897 176283 20285 TO diane.anderson@enron.com
## 10898 176284 20285 TO jean.bell@enron.com
## 10899 176285 20285 TO bob.bowen@enron.com
## 10900 176286 20285 TO julie.brewer@enron.com
## 10901 176287 20285 TO sharen.cason@enron.com
## 10902 176288 20285 TO celeste.cisneros@enron.com
## 10903 176289 20285 TO jason.fischer@enron.com
## 10904 176290 20285 TO a..garcia@enron.com
## 10905 176291 20285 TO gordon.heaney@enron.com
## 10906 176292 20285 TO kimberly.hundl@enron.com
## 10907 176293 20285 TO joe.hunter@enron.com
## 10908 176294 20285 TO ann.murphy@enron.com
## 10909 176295 20285 TO bianca.ornelas@enron.com
## 10910 176296 20285 TO stephanie.piwetz@enron.com
## 10911 176297 20285 TO melissa.rodriguez@enron.com
## 10912 176298 20285 TO dianne.seib@enron.com
## 10913 176299 20285 TO scott.tackett@enron.com
## 10914 176300 20285 TO s..theriot@enron.com
## 10915 176301 20285 TO r..brackett@enron.com
## 10916 176302 20285 TO s..bradford@enron.com
## 10917 176303 20285 TO y..brown@enron.com
## 10918 176304 20285 TO wendy.conwell@enron.com
## 10919 176305 20285 TO ken.curry@enron.com
## 10920 176306 20285 TO veronica.espinoza@enron.com
## 10921 176307 20285 TO veronica.gonzalez@enron.com
## 10922 176308 20285 TO rudwell.johnson@enron.com
## 10923 176309 20285 TO s..landry@enron.com
## 10924 176310 20285 TO wendi.lebrocq@enron.com
## 10925 176311 20285 TO nidia.mendoza@enron.com
## 10926 176312 20285 TO maribel.monterrey@enron.com
## 10927 176313 20285 TO tom.moran@enron.com
## 10928 176314 20285 TO tracy.ngo@enron.com
## 10929 176315 20285 TO carol.north@enron.com
## 10930 176316 20285 TO randy.otto@enron.com
## 10931 176317 20285 TO paul.radous@enron.com
## 10932 176318 20285 TO aparna.rajaram@enron.com
## 10933 176319 20285 TO tanya.rohauer@enron.com
## 10934 176320 20285 TO edward.sacks@enron.com
## 10935 176321 20285 TO max.sonnonstine@enron.com
## 10936 176322 20285 TO darren.vanek@enron.com
## 10937 176323 20285 TO jason.williams@enron.com
## 10938 176324 20285 TO anthony.campos@enron.com
## 10939 176325 20285 TO marilyn.colbert@enron.com
## 10940 176326 20285 TO sharon.crawford@enron.com
## 10941 176327 20285 TO amber.ebow@enron.com
## 10942 176328 20285 TO diane.ellstrom@enron.com
## 10943 176329 20285 TO camille.gerard@enron.com
## 10944 176330 20285 TO d..hare@enron.com
## 10945 176331 20285 TO cheryl.johnson@enron.com
## 10946 176332 20285 TO karen.lambert@enron.com
## 10947 176333 20285 TO georgi.landau@enron.com
## 10948 176334 20285 TO lisa.lees@enron.com
## 10949 176335 20285 TO jason.moore@enron.com
## 10950 176336 20285 TO dale.neuner@enron.com
## 10951 176337 20285 TO leslie.reeves@enron.com
## 10952 176338 20285 TO stacey.richardson@enron.com
## 10953 176339 20285 TO bernice.rodriguez@enron.com
## 10954 176340 20285 TO samuel.schott@enron.com
## 10955 176341 20285 TO stephanie.sever@enron.com
## 10956 176342 20285 TO lynn.shivers@enron.com
## 10957 176343 20285 TO linda.sietzema@enron.com
## 10958 176344 20285 TO carrie.southard@enron.com
## 10959 176345 20285 TO susan.bailey@enron.com
## 10960 176346 20285 TO samantha.boyd@enron.com
## 10961 176347 20285 TO mary.cook@enron.com
## 10962 176348 20285 TO n..gray@enron.com
## 10963 176349 20285 TO marie.heard@enron.com
## 10964 176350 20285 TO brent.hendry@enron.com
## 10965 176351 20285 TO tana.jones@enron.com
## 10966 176352 20285 TO holly.keiser@enron.com
## 10967 176353 20285 TO c..koehler@enron.com
## 10968 176354 20285 TO pinto.leite@enron.com
## 10969 176355 20285 TO cheryl.nelson@enron.com
## 10970 176356 20285 TO frank.sayre@enron.com
## 10971 176357 20285 TO sara.shackleton@enron.com
## 10972 176358 20285 TO taylor@enron.com
## 10973 176401 20288 TO laurel.adams@enron.com
## 10974 176402 20288 TO kimberly.allen@enron.com
## 10975 176403 20288 TO diane.anderson@enron.com
## 10976 176404 20288 TO jean.bell@enron.com
## 10977 176405 20288 TO bob.bowen@enron.com
## 10978 176406 20288 TO julie.brewer@enron.com
## 10979 176407 20288 TO sharen.cason@enron.com
## 10980 176408 20288 TO celeste.cisneros@enron.com
## 10981 176409 20288 TO jason.fischer@enron.com
## 10982 176410 20288 TO a..garcia@enron.com
## 10983 176411 20288 TO gordon.heaney@enron.com
## 10984 176412 20288 TO kimberly.hundl@enron.com
## 10985 176413 20288 TO joe.hunter@enron.com
## 10986 176414 20288 TO ann.murphy@enron.com
## 10987 176415 20288 TO bianca.ornelas@enron.com
## 10988 176416 20288 TO stephanie.piwetz@enron.com
## 10989 176417 20288 TO melissa.rodriguez@enron.com
## 10990 176418 20288 TO dianne.seib@enron.com
## 10991 176419 20288 TO scott.tackett@enron.com
## 10992 176420 20288 TO s..theriot@enron.com
## 10993 176421 20288 TO r..brackett@enron.com
## 10994 176422 20288 TO s..bradford@enron.com
## 10995 176423 20288 TO y..brown@enron.com
## 10996 176424 20288 TO wendy.conwell@enron.com
## 10997 176425 20288 TO ken.curry@enron.com
## 10998 176426 20288 TO veronica.espinoza@enron.com
## 10999 176427 20288 TO veronica.gonzalez@enron.com
## 11000 176428 20288 TO rudwell.johnson@enron.com
## 11001 176429 20288 TO s..landry@enron.com
## 11002 176430 20288 TO wendi.lebrocq@enron.com
## 11003 176431 20288 TO nidia.mendoza@enron.com
## 11004 176432 20288 TO maribel.monterrey@enron.com
## 11005 176433 20288 TO tom.moran@enron.com
## 11006 176434 20288 TO tracy.ngo@enron.com
## 11007 176435 20288 TO carol.north@enron.com
## 11008 176436 20288 TO randy.otto@enron.com
## 11009 176437 20288 TO paul.radous@enron.com
## 11010 176438 20288 TO aparna.rajaram@enron.com
## 11011 176439 20288 TO tanya.rohauer@enron.com
## 11012 176440 20288 TO edward.sacks@enron.com
## 11013 176441 20288 TO max.sonnonstine@enron.com
## 11014 176442 20288 TO darren.vanek@enron.com
## 11015 176443 20288 TO jason.williams@enron.com
## 11016 176444 20288 TO anthony.campos@enron.com
## 11017 176445 20288 TO sharon.crawford@enron.com
## 11018 176446 20288 TO amber.ebow@enron.com
## 11019 176447 20288 TO diane.ellstrom@enron.com
## 11020 176448 20288 TO camille.gerard@enron.com
## 11021 176449 20288 TO d..hare@enron.com
## 11022 176450 20288 TO cheryl.johnson@enron.com
## 11023 176451 20288 TO karen.lambert@enron.com
## 11024 176452 20288 TO georgi.landau@enron.com
## 11025 176453 20288 TO lisa.lees@enron.com
## 11026 176454 20288 TO jason.moore@enron.com
## 11027 176455 20288 TO dale.neuner@enron.com
## 11028 176456 20288 TO leslie.reeves@enron.com
## 11029 176457 20288 TO stacey.richardson@enron.com
## 11030 176458 20288 TO bernice.rodriguez@enron.com
## 11031 176459 20288 TO samuel.schott@enron.com
## 11032 176460 20288 TO stephanie.sever@enron.com
## 11033 176461 20288 TO lynn.shivers@enron.com
## 11034 176462 20288 TO linda.sietzema@enron.com
## 11035 176463 20288 TO carrie.southard@enron.com
## 11036 176464 20288 TO susan.bailey@enron.com
## 11037 176465 20288 TO samantha.boyd@enron.com
## 11038 176466 20288 TO mary.cook@enron.com
## 11039 176467 20288 TO n..gray@enron.com
## 11040 176468 20288 TO marie.heard@enron.com
## 11041 176469 20288 TO brent.hendry@enron.com
## 11042 176470 20288 TO tana.jones@enron.com
## 11043 176471 20288 TO holly.keiser@enron.com
## 11044 176472 20288 TO c..koehler@enron.com
## 11045 176473 20288 TO pinto.leite@enron.com
## 11046 176474 20288 TO cheryl.nelson@enron.com
## 11047 176475 20288 TO frank.sayre@enron.com
## 11048 176476 20288 TO sara.shackleton@enron.com
## 11049 176477 20288 TO taylor@enron.com
## 11050 176856 20326 TO sheila.tweed@enron.com
## 11051 176857 20326 TO elizabeth.sager@enron.com
## 11052 176858 20326 TO t..hodge@enron.com
## 11053 176859 20326 TO peter.keohane@enron.com
## 11054 176860 20326 TO richard.b.sanders@enron.com
## 11055 176861 20326 TO taylor@enron.com
## 11056 176862 20326 TO lance.schuler-legal@enron.com
## 11057 176863 20326 TO julia.murray@enron.com
## 11058 176864 20326 TO alan.aronowitz@enron.com
## 11059 176865 20326 TO bruce.lundstrom@enron.com
## 11060 176866 20326 TO john.novak@enron.com
## 11061 176867 20326 CC margo.terrell@enron.com
## 11062 176868 20326 CC vicki.sharp@enron.com
## 11063 176869 20326 CC suzanne.adams@enron.com
## 11064 176870 20326 CC alice.wright@enron.com
## 11065 176871 20326 CC joanne.rozycki@enron.com
## 11066 176872 20326 CC sharon.crawford@enron.com
## 11067 176873 20326 CC twanda.sweet@enron.com
## 11068 176874 20326 CC holly.keiser@enron.com
## 11069 176875 20326 CC sandy.haldeman@enron.com
## 11070 176876 20326 CC carolyn.george@enron.com
## 11071 176877 20326 CC nita.garcia@enron.com
## 11072 176878 20326 CC wendi.hoelscher@enron.com
## 11073 176879 20326 CC mina.miyakawa@enron.com
## 11074 176880 20326 BCC margo.terrell@enron.com
## 11075 176881 20326 BCC vicki.sharp@enron.com
## 11076 176882 20326 BCC suzanne.adams@enron.com
## 11077 176883 20326 BCC alice.wright@enron.com
## 11078 176884 20326 BCC joanne.rozycki@enron.com
## 11079 176885 20326 BCC sharon.crawford@enron.com
## 11080 176886 20326 BCC twanda.sweet@enron.com
## 11081 176887 20326 BCC holly.keiser@enron.com
## 11082 176888 20326 BCC sandy.haldeman@enron.com
## 11083 176889 20326 BCC carolyn.george@enron.com
## 11084 176890 20326 BCC nita.garcia@enron.com
## 11085 176891 20326 BCC wendi.hoelscher@enron.com
## 11086 176892 20326 BCC mina.miyakawa@enron.com
## 11087 176921 20335 TO taylor@enron.com
## 11088 177499 20404 TO edward.ondarza@enron.com
## 11089 177500 20404 CC vicki.sharp@enron.com
## 11090 177501 20404 CC taylor@enron.com
## 11091 177502 20404 BCC vicki.sharp@enron.com
## 11092 177503 20404 BCC taylor@enron.com
## 11093 177684 20440 TO mark.e.taylor@enron.com
## 11094 177776 20465 TO mark.e.taylor@enron.com
## 11095 177777 20465 TO jeffrey.hodge@enron.com
## 11096 177778 20465 TO elizabeth.sager@enron.com
## 11097 177779 20465 TO mark.evans@enron.com
## 11098 177780 20465 TO paul.simons@enron.com
## 11099 177781 20465 TO justin.boyd@enron.com
## 11100 177878 20478 TO mark.e.taylor@enron.com
## 11101 177879 20478 TO mark.evans@enron.com
## 11102 177880 20478 CC mark.e.taylor@enron.com
## 11103 177881 20478 CC bruce.garner@enron.com
## 11104 177882 20478 BCC mark.e.taylor@enron.com
## 11105 177883 20478 BCC bruce.garner@enron.com
## 11106 177887 20480 TO mark.e.taylor@enron.com
## 11107 178003 20487 TO mark.e.taylor@enron.com
## 11108 178275 20540 TO mark.e.taylor@enron.com
## 11109 178276 20541 TO mark.e.taylor@enron.com
## 11110 178302 20547 TO mark.e.taylor@enron.com
## 11111 178303 20548 TO mark.e.taylor@enron.com
## 11112 178530 20594 TO amita.gosalia@enron.com
## 11113 178531 20594 CC mark.e.taylor@enron.com
## 11114 178532 20594 BCC mark.e.taylor@enron.com
## 11115 179094 20640 TO andy.zipper@enron.com
## 11116 179095 20640 CC david.forster@enron.com
## 11117 179096 20640 CC mark.e.taylor@enron.com
## 11118 179097 20640 BCC david.forster@enron.com
## 11119 179098 20640 BCC mark.e.taylor@enron.com
## 11120 179214 20669 TO mark.e.taylor@enron.com
## 11121 179215 20669 TO e..haedicke@enron.com
## 11122 179216 20669 CC andy.zipper@enron.com
## 11123 179217 20669 CC david.forster@enron.com
## 11124 179218 20669 BCC andy.zipper@enron.com
## 11125 179219 20669 BCC david.forster@enron.com
## 11126 179288 20690 TO mark.e.taylor@enron.com
## 11127 179289 20690 TO alan.aronowitz@enron.com
## 11128 179290 20690 TO travis.mccullough@enron.com
## 11129 179291 20690 CC janette.elbertson@enron.com
## 11130 179292 20690 BCC janette.elbertson@enron.com
## 11131 179363 20707 TO leslie.hansen@enron.com
## 11132 179364 20707 CC mark.e.taylor@enron.com
## 11133 179365 20707 BCC mark.e.taylor@enron.com
## 11134 179620 20742 TO mark.e.taylor@enron.com
## 11135 179625 20745 TO e..haedicke@enron.com
## 11136 179626 20745 TO mark.e.taylor@enron.com
## 11137 179627 20745 CC andy.zipper@enron.com
## 11138 179628 20745 CC mark.palmer@enron.com
## 11139 179629 20745 BCC andy.zipper@enron.com
## 11140 179630 20745 BCC mark.palmer@enron.com
## 11141 179665 20755 TO justin.boyd@enron.com
## 11142 179666 20755 TO mark.e.taylor@enron.com
## 11143 179667 20755 CC kal.shah@enron.com
## 11144 179668 20755 BCC kal.shah@enron.com
## 11145 179669 20756 TO tana.jones@enron.com
## 11146 179670 20756 CC tracy.ngo@enron.com
## 11147 179671 20756 CC mark.e.taylor@enron.com
## 11148 179672 20756 BCC tracy.ngo@enron.com
## 11149 179673 20756 BCC mark.e.taylor@enron.com
## 11150 179732 20767 TO mark.e.taylor@enron.com
## 11151 179733 20767 CC leslie.hansen@enron.com
## 11152 179734 20767 BCC leslie.hansen@enron.com
## 11153 179804 20776 TO mark.e.taylor@enron.com
## 11154 179805 20776 TO e..haedicke@enron.com
## 11155 179907 20796 TO mark.e.taylor@enron.com
## 11156 179991 20806 TO mark.e.taylor@enron.com
## 11157 179992 20806 TO sara.shackleton@enron.com
## 11158 179997 20810 TO gary.taylor@enron.com
## 11159 179998 20810 CC mark.e.taylor@enron.com
## 11160 179999 20810 BCC mark.e.taylor@enron.com
## 11161 180299 20843 TO andy.zipper@enron.com
## 11162 180300 20843 TO travis.mccullough@enron.com
## 11163 180301 20843 TO mark.e.taylor@enron.com
## 11164 180332 20856 TO mark.e.taylor@enron.com
## 11165 180333 20856 TO sara.shackleton@enron.com
## 11166 180339 20858 TO mark.e.taylor@enron.com
## 11167 180340 20859 TO mark.e.taylor@enron.com
## 11168 180341 20860 TO mark.e.taylor@enron.com
## 11169 180358 20865 TO mark.e.taylor@enron.com
## 11170 180359 20865 CC seth.hurwitz@enron.com
## 11171 180360 20865 BCC seth.hurwitz@enron.com
## 11172 180373 20868 TO mark.e.taylor@enron.com
## 11173 180479 20880 TO mark.e.taylor@enron.com
## 11174 180480 20881 TO david.forster@enron.com
## 11175 180481 20881 CC mark.e.taylor@enron.com
## 11176 180482 20881 BCC mark.e.taylor@enron.com
## 11177 180497 20885 TO mark.e.taylor@enron.com
## 11178 180498 20885 CC taffy.milligan@enron.com
## 11179 180499 20885 BCC taffy.milligan@enron.com
## 11180 180541 20892 TO tana.jones@enron.com
## 11181 180542 20892 CC mark.e.taylor@enron.com
## 11182 180543 20892 CC frank.davis@enron.com
## 11183 180544 20892 CC suzanne.adams@enron.com
## 11184 180545 20892 BCC mark.e.taylor@enron.com
## 11185 180546 20892 BCC frank.davis@enron.com
## 11186 180547 20892 BCC suzanne.adams@enron.com
## 11187 180565 20895 TO alove@talisman-energy.com
## 11188 180566 20895 CC mark.e.taylor@enron.com
## 11189 180567 20895 BCC mark.e.taylor@enron.com
## 11190 180581 20899 TO mark.e.taylor@enron.com
## 11191 180592 20902 TO mary.tudon@enron.com
## 11192 180593 20902 CC tanya.rohauer@enron.com
## 11193 180594 20902 CC mark.e.taylor@enron.com
## 11194 180595 20902 CC sara.shackleton@enron.com
## 11195 180596 20902 CC leslie.hansen@enron.com
## 11196 180597 20902 CC elizabeth.sager@enron.com
## 11197 180598 20902 CC stacy.dickson@enron.com
## 11198 180599 20902 CC jeffrey.hodge@enron.com
## 11199 180600 20902 CC harry.collins@enron.com
## 11200 180601 20902 CC tana.jones@enron.com
## 11201 180602 20902 CC susan.bailey@enron.com
## 11202 180603 20902 CC samantha.boyd@enron.com
## 11203 180604 20902 BCC tanya.rohauer@enron.com
## 11204 180605 20902 BCC mark.e.taylor@enron.com
## 11205 180606 20902 BCC sara.shackleton@enron.com
## 11206 180607 20902 BCC leslie.hansen@enron.com
## 11207 180608 20902 BCC elizabeth.sager@enron.com
## 11208 180609 20902 BCC stacy.dickson@enron.com
## 11209 180610 20902 BCC jeffrey.hodge@enron.com
## 11210 180611 20902 BCC harry.collins@enron.com
## 11211 180612 20902 BCC tana.jones@enron.com
## 11212 180613 20902 BCC susan.bailey@enron.com
## 11213 180614 20902 BCC samantha.boyd@enron.com
## 11214 180615 20903 TO mark.e.taylor@enron.com
## 11215 180616 20903 TO leslie.hansen@enron.com
## 11216 180618 20905 TO mary.tudon@enron.com
## 11217 180619 20905 CC tanya.rohauer@enron.com
## 11218 180620 20905 CC sara.shackleton@enron.com
## 11219 180621 20905 CC mark.e.taylor@enron.com
## 11220 180622 20905 CC susan.bailey@enron.com
## 11221 180623 20905 CC tana.jones@enron.com
## 11222 180624 20905 CC samantha.boyd@enron.com
## 11223 180625 20905 CC jeffrey.hodge@enron.com
## 11224 180626 20905 CC stacy.dickson@enron.com
## 11225 180627 20905 CC harry.collins@enron.com
## 11226 180628 20905 CC leslie.hansen@enron.com
## 11227 180629 20905 CC elizabeth.sager@enron.com
## 11228 180630 20905 BCC tanya.rohauer@enron.com
## 11229 180631 20905 BCC sara.shackleton@enron.com
## 11230 180632 20905 BCC mark.e.taylor@enron.com
## 11231 180633 20905 BCC susan.bailey@enron.com
## 11232 180634 20905 BCC tana.jones@enron.com
## 11233 180635 20905 BCC samantha.boyd@enron.com
## 11234 180636 20905 BCC jeffrey.hodge@enron.com
## 11235 180637 20905 BCC stacy.dickson@enron.com
## 11236 180638 20905 BCC harry.collins@enron.com
## 11237 180639 20905 BCC leslie.hansen@enron.com
## 11238 180640 20905 BCC elizabeth.sager@enron.com
## 11239 180641 20906 TO mary.tudon@enron.com
## 11240 180642 20906 CC tanya.rohauer@enron.com
## 11241 180643 20906 CC sara.shackleton@enron.com
## 11242 180644 20906 CC mark.e.taylor@enron.com
## 11243 180645 20906 CC susan.bailey@enron.com
## 11244 180646 20906 CC tana.jones@enron.com
## 11245 180647 20906 CC samantha.boyd@enron.com
## 11246 180648 20906 CC jeffrey.hodge@enron.com
## 11247 180649 20906 CC stacy.dickson@enron.com
## 11248 180650 20906 CC harry.collins@enron.com
## 11249 180651 20906 CC leslie.hansen@enron.com
## 11250 180652 20906 CC elizabeth.sager@enron.com
## 11251 180653 20906 BCC tanya.rohauer@enron.com
## 11252 180654 20906 BCC sara.shackleton@enron.com
## 11253 180655 20906 BCC mark.e.taylor@enron.com
## 11254 180656 20906 BCC susan.bailey@enron.com
## 11255 180657 20906 BCC tana.jones@enron.com
## 11256 180658 20906 BCC samantha.boyd@enron.com
## 11257 180659 20906 BCC jeffrey.hodge@enron.com
## 11258 180660 20906 BCC stacy.dickson@enron.com
## 11259 180661 20906 BCC harry.collins@enron.com
## 11260 180662 20906 BCC leslie.hansen@enron.com
## 11261 180663 20906 BCC elizabeth.sager@enron.com
## 11262 180715 20914 TO derek.edmiston@enron.com
## 11263 180716 20914 TO simon.hastings@enron.com
## 11264 180717 20914 CC mark.e.taylor@enron.com
## 11265 180718 20914 CC justin.boyd@enron.com
## 11266 180719 20914 BCC mark.e.taylor@enron.com
## 11267 180720 20914 BCC justin.boyd@enron.com
## 11268 180721 20915 TO mark.e.taylor@enron.com
## 11269 180722 20915 TO justin.boyd@enron.com
## 11270 181107 20947 TO mark.e.taylor@enron.com
## 11271 181184 20973 TO mark.e.taylor@enron.com
## 11272 181202 20975 TO sara.shackleton@enron.com
## 11273 181203 20975 TO mark.e.taylor@enron.com
## 11274 181204 20975 TO stacy.dickson@enron.com
## 11275 181205 20975 TO jeffrey.hodge@enron.com
## 11276 181206 20975 TO leslie.hansen@enron.com
## 11277 181207 20975 TO elizabeth.sager@enron.com
## 11278 181208 20975 CC larry.hunter@enron.com
## 11279 181209 20975 BCC larry.hunter@enron.com
## 11280 181463 21009 TO david.forster@enron.com
## 11281 181464 21009 CC louise.kitchen@enron.com
## 11282 181465 21009 CC mark.e.taylor@enron.com
## 11283 181466 21009 CC dave.samuels@enron.com
## 11284 181467 21009 CC justin.boyd@enron.com
## 11285 181468 21009 BCC louise.kitchen@enron.com
## 11286 181469 21009 BCC mark.e.taylor@enron.com
## 11287 181470 21009 BCC dave.samuels@enron.com
## 11288 181471 21009 BCC justin.boyd@enron.com
## 11289 181595 21028 TO mark.e.taylor@enron.com
## 11290 181769 21063 TO sara.shackleton@enron.com
## 11291 181770 21063 TO mark.e.taylor@enron.com
## 11292 181771 21063 TO jason.peters@enron.com
## 11293 181787 21066 TO mark.e.taylor@enron.com
## 11294 181811 21072 TO mark.e.taylor@enron.com
## 11295 181813 21074 TO mark.e.taylor@enron.com
## 11296 181898 21081 TO greg.johnston@enron.com
## 11297 181899 21081 CC sara.shackleton@enron.com
## 11298 181900 21081 CC mark.e.taylor@enron.com
## 11299 181901 21081 BCC sara.shackleton@enron.com
## 11300 181902 21081 BCC mark.e.taylor@enron.com
## 11301 181903 21082 TO richard.b.sanders@enron.com
## 11302 181904 21082 CC sara.shackleton@enron.com
## 11303 181905 21082 CC mark.e.taylor@enron.com
## 11304 181906 21082 CC tana.jones@enron.com
## 11305 181907 21082 CC susan.bailey@enron.com
## 11306 181908 21082 CC susan.flynn@enron.com
## 11307 181909 21082 BCC sara.shackleton@enron.com
## 11308 181910 21082 BCC mark.e.taylor@enron.com
## 11309 181911 21082 BCC tana.jones@enron.com
## 11310 181912 21082 BCC susan.bailey@enron.com
## 11311 181913 21082 BCC susan.flynn@enron.com
## 11312 181928 21085 TO susan.flynn@enron.com
## 11313 181929 21085 TO susan.bailey@enron.com
## 11314 181930 21085 TO tana.jones@enron.com
## 11315 181931 21085 CC sara.shackleton@enron.com
## 11316 181932 21085 CC mark.e.taylor@enron.com
## 11317 181933 21085 BCC sara.shackleton@enron.com
## 11318 181934 21085 BCC mark.e.taylor@enron.com
## 11319 181944 21087 TO leslie.hansen@enron.com
## 11320 181945 21087 CC mark.e.taylor@enron.com
## 11321 181946 21087 BCC mark.e.taylor@enron.com
## 11322 181976 21094 TO david.forster@enron.com
## 11323 181977 21094 CC mark.e.taylor@enron.com
## 11324 181978 21094 BCC mark.e.taylor@enron.com
## 11325 181990 21099 TO mark.e.taylor@enron.com
## 11326 181991 21099 CC andy.zipper@enron.com
## 11327 181992 21099 BCC andy.zipper@enron.com
## 11328 182009 21102 TO mark.e.taylor@enron.com
## 11329 182010 21103 TO mark.e.taylor@enron.com
## 11330 182053 21111 TO chris.edmonds@truequote.com
## 11331 182054 21111 CC andy.zipper@enron.com
## 11332 182055 21111 CC travis.mccullough@enron.com
## 11333 182056 21111 CC mark.e.taylor@enron.com
## 11334 182057 21111 BCC andy.zipper@enron.com
## 11335 182058 21111 BCC travis.mccullough@enron.com
## 11336 182059 21111 BCC mark.e.taylor@enron.com
## 11337 182060 21112 TO david.forster@enron.com
## 11338 182061 21112 CC mark.e.taylor@enron.com
## 11339 182062 21112 BCC mark.e.taylor@enron.com
## 11340 182066 21114 TO david.forster@enron.com
## 11341 182067 21114 CC mark.e.taylor@enron.com
## 11342 182068 21114 BCC mark.e.taylor@enron.com
## 11343 182069 21115 TO david.forster@enron.com
## 11344 182070 21115 CC mark.e.taylor@enron.com
## 11345 182071 21115 BCC mark.e.taylor@enron.com
## 11346 182084 21120 TO susan.bailey@enron.com
## 11347 182085 21120 CC mark.e.taylor@enron.com
## 11348 182086 21120 BCC mark.e.taylor@enron.com
## 11349 182110 21123 TO david.forster@enron.com
## 11350 182111 21123 CC tana.jones@enron.com
## 11351 182112 21123 CC mark.e.taylor@enron.com
## 11352 182113 21123 BCC tana.jones@enron.com
## 11353 182114 21123 BCC mark.e.taylor@enron.com
## 11354 182226 21127 TO david.forster@enron.com
## 11355 182227 21127 CC leslie.hansen@enron.com
## 11356 182228 21127 CC tana.jones@enron.com
## 11357 182229 21127 CC mark.e.taylor@enron.com
## 11358 182230 21127 BCC leslie.hansen@enron.com
## 11359 182231 21127 BCC tana.jones@enron.com
## 11360 182232 21127 BCC mark.e.taylor@enron.com
## 11361 182233 21128 TO mark.e.taylor@enron.com
## 11362 182234 21129 TO william.bradford@enron.com
## 11363 182235 21129 TO tanya.rohauer@enron.com
## 11364 182236 21129 CC sara.shackleton@enron.com
## 11365 182237 21129 CC mark.e.taylor@enron.com
## 11366 182238 21129 CC tana.jones@enron.com
## 11367 182239 21129 CC susan.flynn@enron.com
## 11368 182240 21129 CC susan.bailey@enron.com
## 11369 182241 21129 BCC sara.shackleton@enron.com
## 11370 182242 21129 BCC mark.e.taylor@enron.com
## 11371 182243 21129 BCC tana.jones@enron.com
## 11372 182244 21129 BCC susan.flynn@enron.com
## 11373 182245 21129 BCC susan.bailey@enron.com
## 11374 182253 21131 TO taffy.milligan@enron.com
## 11375 182254 21131 CC mark.e.taylor@enron.com
## 11376 182255 21131 CC sara.shackleton@enron.com
## 11377 182256 21131 BCC mark.e.taylor@enron.com
## 11378 182257 21131 BCC sara.shackleton@enron.com
## 11379 182258 21132 TO mark.e.taylor@enron.com
## 11380 182259 21133 TO david.forster@enron.com
## 11381 182260 21133 CC mark.e.taylor@enron.com
## 11382 182261 21133 CC tana.jones@enron.com
## 11383 182262 21133 BCC mark.e.taylor@enron.com
## 11384 182263 21133 BCC tana.jones@enron.com
## 11385 182279 21137 TO mark.e.taylor@enron.com
## 11386 182388 21146 TO sara.shackleton@enron.com
## 11387 182389 21146 CC mark.e.taylor@enron.com
## 11388 182390 21146 BCC mark.e.taylor@enron.com
## 11389 182464 21156 TO david.forster@enron.com
## 11390 182465 21156 CC mark.e.taylor@enron.com
## 11391 182466 21156 CC leslie.hansen@enron.com
## 11392 182467 21156 BCC mark.e.taylor@enron.com
## 11393 182468 21156 BCC leslie.hansen@enron.com
## 11394 182469 21157 TO susan.flynn@enron.com
## 11395 182470 21157 TO susan.bailey@enron.com
## 11396 182471 21157 TO tana.jones@enron.com
## 11397 182472 21157 CC sara.shackleton@enron.com
## 11398 182473 21157 CC mark.e.taylor@enron.com
## 11399 182474 21157 CC taffy.milligan@enron.com
## 11400 182475 21157 BCC sara.shackleton@enron.com
## 11401 182476 21157 BCC mark.e.taylor@enron.com
## 11402 182477 21157 BCC taffy.milligan@enron.com
## 11403 182635 21178 TO louise.kitchen@enron.com
## 11404 182636 21178 TO david.forster@enron.com
## 11405 182637 21178 CC bob.shults@enron.com
## 11406 182638 21178 CC mark.e.taylor@enron.com
## 11407 182639 21178 BCC bob.shults@enron.com
## 11408 182640 21178 BCC mark.e.taylor@enron.com
## 11409 183031 21188 TO mark.e.taylor@enron.com
## 11410 183032 21189 TO mark.e.taylor@enron.com
## 11411 183148 21218 TO mark.e.taylor@enron.com
## 11412 183161 21221 TO mark.e.taylor@enron.com
## 11413 183170 21224 TO peter.keohane@enron.com
## 11414 183171 21224 CC sara.shackleton@enron.com
## 11415 183172 21224 CC mark.e.taylor@enron.com
## 11416 183173 21224 BCC sara.shackleton@enron.com
## 11417 183174 21224 BCC mark.e.taylor@enron.com
## 11418 183186 21227 TO mark.e.taylor@enron.com
## 11419 183187 21227 CC bob.bowen@enron.com
## 11420 183188 21227 BCC bob.bowen@enron.com
## 11421 183253 21245 TO mtaylo1@enron.com
## 11422 183285 21255 TO mark.e.taylor@enron.com
## 11423 183364 21271 TO mark.e.taylor@enron.com
## 11424 183365 21272 TO mark.e.taylor@enron.com
## 11425 183481 21301 TO mark.e.taylor@enron.com
## 11426 183494 21304 TO mark.e.taylor@enron.com
## 11427 183503 21307 TO peter.keohane@enron.com
## 11428 183504 21307 CC sara.shackleton@enron.com
## 11429 183505 21307 CC mark.e.taylor@enron.com
## 11430 183506 21307 BCC sara.shackleton@enron.com
## 11431 183507 21307 BCC mark.e.taylor@enron.com
## 11432 183519 21310 TO mark.e.taylor@enron.com
## 11433 183520 21310 CC bob.bowen@enron.com
## 11434 183521 21310 BCC bob.bowen@enron.com
## 11435 183661 21329 TO taylor@enron.com
## 11436 183979 21373 TO lisa.yoho@enron.com
## 11437 183980 21373 TO christi.nicolay@enron.com
## 11438 183981 21373 CC steven.j.kean@enron.com
## 11439 183982 21373 CC richard.shapiro@enron.com
## 11440 183983 21373 CC linda.robertson@enron.com
## 11441 183984 21373 CC sarah.novosel@enron.com
## 11442 183985 21373 CC greg.whalley@enron.com
## 11443 183986 21373 CC john.lavorato@enron.com
## 11444 183987 21373 CC david.forster@enron.com
## 11445 183988 21373 CC s..bradford@enron.com
## 11446 183989 21373 CC james.d.steffes@enron.com
## 11447 183990 21373 CC elizabeth.sager@enron.com
## 11448 183991 21373 CC t..hodge@enron.com
## 11449 183992 21373 CC e..haedicke@enron.com
## 11450 183993 21373 CC mark.e.taylor@enron.com
## 11451 183994 21373 CC tom.briggs@enron.com
## 11452 183995 21373 CC chris.long@enron.com
## 11453 183996 21373 CC bob.butts@enron.com
## 11454 183997 21373 CC andy.zipper@enron.com
## 11455 183998 21373 BCC steven.j.kean@enron.com
## 11456 183999 21373 BCC richard.shapiro@enron.com
## 11457 184000 21373 BCC linda.robertson@enron.com
## 11458 184001 21373 BCC sarah.novosel@enron.com
## 11459 184002 21373 BCC greg.whalley@enron.com
## 11460 184003 21373 BCC john.lavorato@enron.com
## 11461 184004 21373 BCC david.forster@enron.com
## 11462 184005 21373 BCC s..bradford@enron.com
## 11463 184006 21373 BCC james.d.steffes@enron.com
## 11464 184007 21373 BCC elizabeth.sager@enron.com
## 11465 184008 21373 BCC t..hodge@enron.com
## 11466 184009 21373 BCC e..haedicke@enron.com
## 11467 184010 21373 BCC mark.e.taylor@enron.com
## 11468 184011 21373 BCC tom.briggs@enron.com
## 11469 184012 21373 BCC chris.long@enron.com
## 11470 184013 21373 BCC bob.butts@enron.com
## 11471 184014 21373 BCC andy.zipper@enron.com
## 11472 184015 21374 TO mark.e.taylor@enron.com
## 11473 184286 21437 TO taylor@enron.com
## 11474 184297 21448 TO taylor@enron.com
## 11475 184299 21450 TO taylor@enron.com
## 11476 184311 21460 TO taylor@enron.com
## 11477 184316 21465 TO taylor@enron.com
## 11478 187510 23462 TO jay.reitmeyer@enron.com
## 11479 187511 23462 TO theresa.staab@enron.com
## 11480 187598 23476 TO theresa.staab@enron.com
## 11481 187615 23482 TO theresa.staab@enron.com
## 11482 187646 23492 TO theresa.staab@enron.com
## 11483 187647 23492 TO scott.dozier@enron.com
## 11484 187650 23494 TO theresa.staab@enron.com
## 11485 187724 23522 TO megan.parker@enron.com
## 11486 187725 23523 TO megan.parker@enron.com
## 11487 187726 23524 TO peters@enron.com
## 11488 187727 23524 TO carmen.peters@nissan-usa.com
## 11489 187728 23525 TO dinah.schlecht@enron.com
## 11490 187729 23526 TO peters@enron.com
## 11491 187730 23526 TO carmen.peters@nissan-usa.com
## 11492 187731 23527 TO g..barkowsky@enron.com
## 11493 187732 23528 TO scott.sitter@enron.com
## 11494 187733 23528 TO walt.serrano@enron.com
## 11495 187734 23528 CC jay.reitmeyer@enron.com
## 11496 187735 23528 CC paul.lucci@enron.com
## 11497 187736 23528 CC shelly.mendel@enron.com
## 11498 187737 23528 CC susan.scott@enron.com
## 11499 187738 23528 CC p..adams@enron.com
## 11500 187739 23528 BCC jay.reitmeyer@enron.com
## 11501 187740 23528 BCC paul.lucci@enron.com
## 11502 187741 23528 BCC shelly.mendel@enron.com
## 11503 187742 23528 BCC susan.scott@enron.com
## 11504 187743 23528 BCC p..adams@enron.com
## 11505 187744 23529 TO jay.reitmeyer@enron.com
## 11506 187745 23530 TO g..barkowsky@enron.com
## 11507 187746 23531 TO rita.wynne@enron.com
## 11508 187747 23531 CC g..barkowsky@enron.com
## 11509 187748 23531 CC jim.pond@enron.com
## 11510 187749 23531 CC connie.lo@enron.com
## 11511 187750 23531 CC christopher.spears@enron.com
## 11512 187751 23531 BCC g..barkowsky@enron.com
## 11513 187752 23531 BCC jim.pond@enron.com
## 11514 187753 23531 BCC connie.lo@enron.com
## 11515 187754 23531 BCC christopher.spears@enron.com
## 11516 187755 23532 TO jay.reitmeyer@enron.com
## 11517 187756 23532 TO susan.scott@enron.com
## 11518 187757 23532 TO shelly.mendel@enron.com
## 11519 187758 23532 TO paul.lucci@enron.com
## 11520 187759 23533 TO amy.felling@enron.com
## 11521 187760 23534 TO g..barkowsky@enron.com
## 11522 187761 23535 TO barry.tycholiz@enron.com
## 11523 187762 23536 TO g..barkowsky@enron.com
## 11524 187763 23537 TO paul.lucci@enron.com
## 11525 187764 23538 TO g..barkowsky@enron.com
## 11526 187765 23539 TO g..barkowsky@enron.com
## 11527 187766 23540 TO heidi.dubose@enron.com
## 11528 187767 23541 TO barry.wiederholt@enron.com
## 11529 187768 23542 TO houston@enron.com
## 11530 187769 23542 TO stephanie.houston@xemkt.com
## 11531 187770 23543 TO kristen.jurgens@enron.com
## 11532 187771 23544 TO dinah.schlecht@enron.com
## 11533 187772 23544 TO scott.sitter@enron.com
## 11534 187773 23544 TO walt.serrano@enron.com
## 11535 187774 23544 CC amy.felling@enron.com
## 11536 187775 23544 BCC amy.felling@enron.com
## 11537 187776 23545 TO valerie.vela@enron.com
## 11538 187777 23545 CC robert.poole@atmosenergy.com
## 11539 187778 23545 BCC robert.poole@atmosenergy.com
## 11540 187779 23546 TO williams@enron.com
## 11541 187780 23546 TO bob.williams@elpaso.com
## 11542 187781 23547 TO rmr@vcn.com
## 11543 187782 23548 TO bob.williams@elpaso.com
## 11544 187783 23549 TO kjperry23@aol.com
## 11545 187784 23550 TO walt.serrano@enron.com
## 11546 187785 23550 TO rick.fresquez@enron.com
## 11547 187786 23550 TO jay.reitmeyer@enron.com
## 11548 187787 23550 TO shelly.mendel@enron.com
## 11549 187788 23550 TO p..adams@enron.com
## 11550 187789 23550 TO paul.lucci@enron.com
## 11551 187790 23550 TO amy.felling@enron.com
## 11552 187791 23551 TO jernigan@enron.com
## 11553 187792 23551 TO sjernig@entergy.com
## 11554 187793 23552 TO jernigan@enron.com
## 11555 187794 23552 TO sjernig@entergy.com
## 11556 187795 23553 TO jernigan@enron.com
## 11557 187796 23553 TO sjernig@entergy.com
## 11558 187797 23554 TO jernigan@enron.com
## 11559 187798 23554 TO sjernig@entergy.com
## 11560 187799 23555 TO jernigan@enron.com
## 11561 187800 23555 TO sjernig@entergy.com
## 11562 187801 23556 TO darla.saucier@enron.com
## 11563 187802 23557 TO stephanie.miller@enron.com
## 11564 187803 23558 TO rita.wynne@enron.com
## 11565 187804 23558 TO jim.pond@enron.com
## 11566 187805 23558 TO g..barkowsky@enron.com
## 11567 187806 23559 TO chris.price@enron.com
## 11568 187807 23560 TO laurie.ellis@enron.com
## 11569 187808 23561 TO rmr@vcn.com
## 11570 187809 23562 TO poole.jr.@enron.com
## 11571 187810 23562 TO robert.poole@atmosenergy.com
## 11572 187811 23563 TO lisa.finley@dvn.com
## 11573 187812 23564 TO g..barkowsky@enron.com
## 11574 187813 23564 TO laurie.ellis@enron.com
## 11575 187814 23565 TO carolyn.graham@enron.com
## 11576 187815 23566 TO darla.saucier@enron.com
## 11577 187816 23567 TO lisa.finley@dvn.com
## 11578 187817 23567 CC amy.felling@enron.com
## 11579 187818 23567 BCC amy.felling@enron.com
## 11580 187819 23568 TO peters@enron.com
## 11581 187820 23568 TO carmen.peters@nissan-usa.com
## 11582 187821 23569 TO rmr@vcn.com
## 11583 187822 23570 TO williams@enron.com
## 11584 187823 23570 TO bob.williams@elpaso.com
## 11585 187824 23571 TO matt.pena@enron.com
## 11586 187825 23572 TO valerie.vela@enron.com
## 11587 187826 23573 TO rmr@vcn.com
## 11588 187827 23574 TO walt.serrano@enron.com
## 11589 187828 23574 TO scott.sitter@enron.com
## 11590 187829 23575 TO scott.sitter@enron.com
## 11591 187830 23575 TO walt.serrano@enron.com
## 11592 187831 23575 CC jay.reitmeyer@enron.com
## 11593 187832 23575 CC paul.lucci@enron.com
## 11594 187833 23575 BCC jay.reitmeyer@enron.com
## 11595 187834 23575 BCC paul.lucci@enron.com
## 11596 187835 23576 TO megan.parker@enron.com
## 11597 187836 23577 TO valerie.vela@enron.com
## 11598 187837 23578 TO genaro.mendoza@enron.com
## 11599 187838 23579 TO megan.parker@enron.com
## 11600 187839 23580 TO coganja@aol.com
## 11601 187840 23581 TO jahartn@ppco.com
## 11602 187841 23582 TO carole.frank@enron.com
## 11603 187842 23583 TO g..barkowsky@enron.com
## 11604 187843 23584 TO g..barkowsky@enron.com
## 11605 187844 23585 TO megan.parker@enron.com
## 11606 187845 23585 TO g..barkowsky@enron.com
## 11607 187846 23586 TO valerie.vela@enron.com
## 11608 187847 23587 TO valerie.vela@enron.com
## 11609 187848 23588 TO g..barkowsky@enron.com
## 11610 187849 23589 TO carole.frank@enron.com
## 11611 187850 23589 TO paul.lucci@enron.com
## 11612 187851 23590 TO peters@enron.com
## 11613 187852 23590 TO carmen.peters@nissan-usa.com
## 11614 187853 23591 TO megan.parker@enron.com
## 11615 187854 23591 TO no.address@enron.com
## 11616 187855 23592 TO akoelemay@cogc.com
## 11617 187856 23593 TO rpacheco@westerngas.com
## 11618 187857 23594 TO akoelemay@cogc.com
## 11619 187858 23595 TO sean.riordan@enron.com
## 11620 187859 23596 TO mark.whitt@enron.com
## 11621 187860 23597 TO mark.whitt@enron.com
## 11622 187861 23598 TO jeff.ishee@xemkt.com
## 11623 187862 23599 TO mark.whitt@enron.com
## 11624 187863 23600 TO susan.helton@enron.com
## 11625 187864 23600 CC mark.whitt@enron.com
## 11626 187865 23600 BCC mark.whitt@enron.com
## 11627 187866 23601 TO sprungm@pogoproducing.com
## 11628 187867 23602 TO roscoe@cyberhighway.net
## 11629 187868 23603 TO megan.parker@enron.com
## 11630 187869 23604 TO megan.parker@enron.com
## 11631 187870 23605 TO megan.parker@enron.com
## 11632 187871 23606 TO s..olinger@enron.com
## 11633 187872 23607 TO megan.parker@enron.com
## 11634 187873 23608 TO rmr@vcn.com
## 11635 187874 23609 TO valerie.vela@enron.com
## 11636 187875 23610 TO g..barkowsky@enron.com
## 11637 187876 23611 TO g..barkowsky@enron.com
## 11638 187877 23612 TO g..barkowsky@enron.com
## 11639 187878 23613 TO g..barkowsky@enron.com
## 11640 187879 23614 TO megan.parker@enron.com
## 11641 187880 23615 TO catrina.lucero@enron.com
## 11642 187881 23616 TO sherlyn.schumack@enron.com
## 11643 187914 23644 TO gerald.nemec@enron.com
## 11644 187915 23644 TO theresa.staab@enron.com
## 11645 188165 23695 TO theresa.staab@enron.com
## 11646 188540 23759 TO theresa.staab@enron.com
## 11647 188652 23819 TO theresa.staab@enron.com
## 11648 188653 23819 TO jay.reitmeyer@enron.com
## 11649 188656 23821 TO akoelemay@cogc.com
## 11650 188657 23822 TO angela_mtgoper@yahoo.com
## 11651 188658 23823 TO crobacker@ipcgas.com
## 11652 188659 23824 TO cguthrie@vcn.com
## 11653 188660 23825 TO cubs@colorado.edu
## 11654 188661 23826 TO enron_update@concureworkplace.com
## 11655 188662 23827 TO carole.frank@enron.com
## 11656 188663 23828 TO drhatte@ppco.com
## 11657 188664 23828 TO @enron.com
## 11658 188665 23828 TO jahartn@ppco.com
## 11659 188666 23829 TO petersjeffry@yahoo.com
## 11660 188667 23830 TO jtstaab@msn.com
## 11661 188668 23831 TO sunshin@trib.com
## 11662 188669 23832 TO genaro.mendoza@enron.com
## 11663 188670 23833 TO petersjeffry@yahoo.com
## 11664 188671 23834 TO quantum.courtney@enron.com
## 11665 188672 23834 TO mysyk.courtney@enron.com
## 11666 188673 23835 TO tjc-wellstar@qwest.net
## 11667 188674 23836 TO vjelvis@hotmail.com
## 11668 189046 23910 TO p..adams@enron.com
## 11669 189047 23910 TO theresa.staab@enron.com
## 11670 189062 23917 TO amy.felling@enron.com
## 11671 189063 23917 TO theresa.staab@enron.com
## 11672 189065 23919 TO jay.reitmeyer@enron.com
## 11673 189066 23919 TO theresa.staab@enron.com
## 11674 189069 23922 TO ellen.wallumrod@enron.com
## 11675 189070 23922 TO theresa.staab@enron.com
## 11676 189071 23922 TO gerald.nemec@enron.com
## 11677 189072 23922 TO stacey.richardson@enron.com
## 11678 189073 23923 TO theresa.staab@enron.com
## 11679 189074 23923 TO gerald.nemec@enron.com
## 11680 189075 23924 TO theresa.staab@enron.com
## 11681 189077 23926 TO mark.whitt@enron.com
## 11682 189082 23929 TO jay.reitmeyer@enron.com
## 11683 189083 23929 TO mark.whitt@enron.com
## 11684 189084 23929 TO theresa.staab@enron.com
## 11685 189085 23930 TO theresa.staab@enron.com
## 11686 189137 23957 TO theresa.staab@enron.com
## 11687 189138 23957 TO jay.reitmeyer@enron.com
## 11688 189530 23995 TO mark.whitt@enron.com
## 11689 189531 23995 TO tyrell.harrison@enron.com
## 11690 189532 23995 TO theresa.staab@enron.com
## 11691 189533 23995 TO scott.sitter@enron.com
## 11692 189534 23995 TO charles.varnell@enron.com
## 11693 189535 23996 TO mark.whitt@enron.com
## 11694 189536 23996 TO theresa.staab@enron.com
## 11695 189575 24010 TO sue.dolan@xemkt.com
## 11696 189576 24011 TO mark.whitt@enron.com
## 11697 189577 24011 TO theresa.staab@enron.com
## 11698 189589 24019 TO theresa.staab@enron.com
## 11699 189590 24019 TO amy.felling@enron.com
## 11700 190758 24509 TO im-urlaub@t-online.de
## 11701 190759 24510 TO jane.tholt@enron.com
## 11702 190760 24511 TO kenneth.lay@enron.com
## 11703 190761 24512 TO stevens_hollister@eott.com
## 11704 190762 24513 TO stevens_hollister@eott.com
## 11705 190763 24514 TO stevens_hollister@eott.com
## 11706 190764 24515 TO laurie.ellis@enron.com
## 11707 190765 24516 TO chris.germany@enron.com
## 11708 190766 24517 TO laurie.ellis@enron.com
## 11709 190767 24518 TO tlester@firstunion1.com
## 11710 190768 24519 TO kam.keiser@enron.com
## 11711 190769 24520 TO frank.hayden@enron.com
## 11712 190770 24521 TO frank.hayden@enron.com
## 11713 190771 24522 TO valerie.curtis@enron.com
## 11714 190772 24523 TO frank.hayden@enron.com
## 11715 190773 24524 TO laurie.ellis@enron.com
## 11716 190774 24525 TO laurie.ellis@enron.com
## 11717 190775 24526 TO valerie.curtis@enron.com
## 11718 190776 24527 TO karen.gruesen@enron.com
## 11719 190777 24528 TO d..mcilvoy@enron.com
## 11720 190778 24529 TO d..mcilvoy@enron.com
## 11721 190779 24530 TO valerie.curtis@enron.com
## 11722 190780 24531 TO scharnberger-armin@t-online.de
## 11723 190781 24532 TO rudolph.reynolds@intcx.com
## 11724 190782 24533 TO scharnberger-armin@t-online.de
## 11725 190783 24534 TO beth.miertschin@enron.com
## 11726 190784 24535 TO tlester@firstunion1.com
## 11727 190785 24536 TO campozark@campozark.com
## 11728 190786 24537 TO laurie.ellis@enron.com
## 11729 190787 24538 TO louis.allen@enron.com
## 11730 190788 24539 TO tlester@firstunion1.com
## 11731 190789 24540 TO carolyn.graham@enron.com
## 11732 190790 24541 TO carolyn.graham@enron.com
## 11733 190791 24542 TO melba.lozano@enron.com
## 11734 190792 24543 TO melba.lozano@enron.com
## 11735 190793 24544 TO pereira@houston.rr.com
## 11736 190794 24545 TO fiberworks@hotmail.com
## 11737 190795 24546 TO rmfarley@swbell.net
## 11738 190796 24547 TO marilyng@wt.net
## 11739 190797 24548 TO rmfarley@swbell.net
## 11740 190798 24549 TO bmayarchitect@ev1.net
## 11741 190799 24550 TO gjaxson@swbell.net
## 11742 190800 24551 TO kam.keiser@enron.com
## 11743 190801 24552 TO george.grant@enron.com
## 11744 190802 24553 TO valerie.curtis@enron.com
## 11745 190803 24554 TO ev1.net@enron.com
## 11746 190804 24554 TO jpiper5360@aol.com
## 11747 190805 24555 TO jpiper5360@aol.com
## 11748 190806 24556 TO citymgr@southside-place.org
## 11749 190807 24557 TO tlester@firstunion1.com
## 11750 190808 24558 TO clickathome@enron.com
## 11751 190809 24559 TO christina.sanchez@enron.com
## 11752 190810 24560 TO laurie.ellis@enron.com
## 11753 190811 24561 TO valerie.curtis@enron.com
## 11754 190812 24562 TO schick1@earthlink.net
## 11755 190813 24563 TO kimberly.bates@enron.com
## 11756 190814 24564 TO pereira@houston.rr.com
## 11757 190815 24565 TO ragan.bond@enron.com
## 11758 190816 24566 TO ragan.bond@enron.com
## 11759 190817 24567 TO kimberly.bates@enron.com
## 11760 190818 24568 TO kathy.mayfield@enron.com
## 11761 190819 24569 TO schick1@earthlink.net
## 11762 190820 24570 TO stevens_hollister@eott.com
## 11763 190821 24571 TO craig.breslau@enron.com
## 11764 190822 24572 TO scharnberger-armin@t-online.de
## 11765 190823 24573 TO scharnberger-armin@t-online.de
## 11766 190824 24574 TO tlester@firstunion1.com
## 11767 190825 24575 TO c4009@aol.com
## 11768 190826 24575 TO bobgomez@hal-pc.org
## 11769 190827 24575 TO pg1315@aol.com
## 11770 190828 24575 TO tclester@msn.com
## 11771 190829 24575 TO jpiper5360@aol.com
## 11772 190830 24575 TO vwilbeck@houston.rr.com
## 11773 190831 24575 TO angiodad@swbell.net
## 11774 190832 24575 TO jar7133739@aol.com
## 11775 190833 24575 TO tblackden@aol.com
## 11776 190834 24575 TO connollys3@juno.com
## 11777 190835 24576 TO aol.com@enron.com
## 11778 190836 24576 TO c4009@aol.com
## 11779 190837 24576 TO bobgomez@hal-pc.org
## 11780 190838 24576 TO pg1315@aol.com
## 11781 190839 24576 TO tclester@msn.com
## 11782 190840 24576 TO jpiper5360@aol.com
## 11783 190841 24576 TO vwilbeck@houston.rr.com
## 11784 190842 24576 TO angiodad@swbell.net
## 11785 190843 24576 TO jar7133739@aol.com
## 11786 190844 24577 TO jeanne.wukasch@enron.com
## 11787 190845 24578 TO kimberly.bates@enron.com
## 11788 190846 24579 TO pereira@houston.rr.com
## 11789 190847 24580 TO ragan.bond@enron.com
## 11790 190848 24581 TO stephanie.erwin@enron.com
## 11791 190859 24592 TO danny.mccarty@enron.com
## 11792 190860 24592 TO steven.harris@enron.com
## 11793 190861 24592 TO kimberly.watson@enron.com
## 11794 190929 24605 TO dave.neubauer@enron.com
## 11795 190930 24605 TO jo.williams@enron.com
## 11796 190931 24605 TO steven.harris@enron.com
## 11797 190932 24605 TO sue.neville@enron.com
## 11798 190933 24605 TO kent.miller@enron.com
## 11799 190962 24615 TO kimberly.watson@enron.com
## 11800 190963 24615 CC steven.harris@enron.com
## 11801 190964 24615 CC lorraine.lindberg@enron.com
## 11802 190965 24615 CC bill.rapp@enron.com
## 11803 190966 24615 CC paul.cherry@enron.com
## 11804 190967 24615 CC tk.lohman@enron.com
## 11805 190968 24615 CC drew.fossum@enron.com
## 11806 190969 24615 CC gregory.porter@enron.com
## 11807 190970 24615 BCC steven.harris@enron.com
## 11808 190971 24615 BCC lorraine.lindberg@enron.com
## 11809 190972 24615 BCC bill.rapp@enron.com
## 11810 190973 24615 BCC paul.cherry@enron.com
## 11811 190974 24615 BCC tk.lohman@enron.com
## 11812 190975 24615 BCC drew.fossum@enron.com
## 11813 190976 24615 BCC gregory.porter@enron.com
## 11814 190996 24624 TO raymond.bowen@enron.com
## 11815 190997 24624 TO jeffrey.mcmahon@enron.com
## 11816 190998 24624 TO richard.causey@enron.com
## 11817 190999 24624 TO bill.cordes@enron.com
## 11818 191000 24624 TO shelley.corman@enron.com
## 11819 191001 24624 TO rick.craig@enron.com
## 11820 191002 24624 TO drew.fossum@enron.com
## 11821 191003 24624 TO eric.gadd@enron.com
## 11822 191004 24624 TO dana.gibbs@enron.com
## 11823 191005 24624 TO steven.harris@enron.com
## 11824 191006 24624 TO joe.hartsoe@enron.com
## 11825 191007 24624 TO robert.hayes@enron.com
## 11826 191008 24624 TO stanley.horton@enron.com
## 11827 191009 24624 TO steve.hotte@enron.com
## 11828 191010 24624 TO a..howard@enron.com
## 11829 191011 24624 TO r..keller@enron.com
## 11830 191012 24624 TO robert.kilmer@enron.com
## 11831 191013 24624 TO danny.mccarty@enron.com
## 11832 191014 24624 TO kay.miller@enron.com
## 11833 191015 24624 TO mike.nelson@enron.com
## 11834 191016 24624 TO dave.neubauer@enron.com
## 11835 191017 24624 TO jerry.peters@enron.com
## 11836 191018 24624 TO jim.prentice@enron.com
## 11837 191019 24624 TO dan.pribble@enron.com
## 11838 191020 24624 TO james.saunders@enron.com
## 11839 191021 24624 TO gary.smith@enron.com
## 11840 191022 24624 TO michael.anderson@enron.com
## 11841 191023 24624 TO kenny.bickett@enron.com
## 11842 191024 24624 TO lawrence.clayton@enron.com
## 11843 191025 24624 TO tracy.geaccone@enron.com
## 11844 191026 24624 TO dave.gunther@enron.com
## 11845 191027 24624 TO robert.guthrie@enron.com
## 11846 191028 24624 TO a..lindholm@enron.com
## 11847 191029 24624 TO lori.maddox@enron.com
## 11848 191030 24624 TO keith.marlow@enron.com
## 11849 191031 24624 TO michael.norris@enron.com
## 11850 191032 24624 TO jim.piro@enron.com
## 11851 191033 24624 TO susan.ralph@enron.com
## 11852 191034 24624 TO greek.rice@enron.com
## 11853 191035 24624 TO e..sommers@enron.com
## 11854 191036 24624 TO kirk.stevens@enron.com
## 11855 191037 24624 TO mike.westbeld@enron.com
## 11856 191038 24624 CC earlene.ackley@enron.com
## 11857 191039 24624 CC amelia.alder@enron.com
## 11858 191040 24624 CC julie.armstrong@enron.com
## 11859 191041 24624 CC janice.hogan@enron.com
## 11860 191042 24624 CC rita.houser@enron.com
## 11861 191043 24624 CC ruth.mann@enron.com
## 11862 191044 24624 CC carolyn.perry@enron.com
## 11863 191045 24624 CC emily.sellers@enron.com
## 11864 191046 24624 CC cindy.stark@enron.com
## 11865 191047 24624 CC ricki.winters@enron.com
## 11866 191048 24624 BCC earlene.ackley@enron.com
## 11867 191049 24624 BCC amelia.alder@enron.com
## 11868 191050 24624 BCC julie.armstrong@enron.com
## 11869 191051 24624 BCC janice.hogan@enron.com
## 11870 191052 24624 BCC rita.houser@enron.com
## 11871 191053 24624 BCC ruth.mann@enron.com
## 11872 191054 24624 BCC carolyn.perry@enron.com
## 11873 191055 24624 BCC emily.sellers@enron.com
## 11874 191056 24624 BCC cindy.stark@enron.com
## 11875 191057 24624 BCC ricki.winters@enron.com
## 11876 191058 24625 TO steven.harris@enron.com
## 11877 191059 24625 TO kimberly.watson@enron.com
## 11878 191060 24625 TO lorraine.lindberg@enron.com
## 11879 191061 24625 TO tk.lohman@enron.com
## 11880 191062 24625 TO lindy.donoho@enron.com
## 11881 191063 24625 TO mark.mcconnell@enron.com
## 11882 191064 24625 TO paul.y barbo@enron.com
## 11883 191065 24625 CC audrey.robertson@enron.com
## 11884 191066 24625 CC michelle.lokay@enron.com
## 11885 191067 24625 BCC audrey.robertson@enron.com
## 11886 191068 24625 BCC michelle.lokay@enron.com
## 11887 191100 24634 TO shelley.corman@enron.com
## 11888 191101 24634 TO stephen.dowd@enron.com
## 11889 191102 24634 TO eric.gadd@enron.com
## 11890 191103 24634 TO steven.harris@enron.com
## 11891 191104 24634 TO joe.hartsoe@enron.com
## 11892 191105 24634 TO robert.hayes@enron.com
## 11893 191106 24634 TO robert.kilmer@enron.com
## 11894 191107 24634 TO w..mcgowan@enron.com
## 11895 191108 24634 TO kay.miller@enron.com
## 11896 191109 24634 TO dave.neubauer@enron.com
## 11897 191110 24634 CC josie.call@enron.com
## 11898 191111 24634 CC deborah.cappiello@enron.com
## 11899 191112 24634 CC tammy.kovalcik@enron.com
## 11900 191113 24634 CC ruth.mann@enron.com
## 11901 191114 24634 CC julie.mccoy@enron.com
## 11902 191115 24634 CC zelda.paschal@enron.com
## 11903 191116 24634 CC audrey.robertson@enron.com
## 11904 191117 24634 CC mike.van@enron.com
## 11905 191118 24634 CC susan.wadle@enron.com
## 11906 191119 24634 CC ricki.winters@enron.com
## 11907 191120 24634 BCC josie.call@enron.com
## 11908 191121 24634 BCC deborah.cappiello@enron.com
## 11909 191122 24634 BCC tammy.kovalcik@enron.com
## 11910 191123 24634 BCC ruth.mann@enron.com
## 11911 191124 24634 BCC julie.mccoy@enron.com
## 11912 191125 24634 BCC zelda.paschal@enron.com
## 11913 191126 24634 BCC audrey.robertson@enron.com
## 11914 191127 24634 BCC mike.van@enron.com
## 11915 191128 24634 BCC susan.wadle@enron.com
## 11916 191129 24634 BCC ricki.winters@enron.com
## 11917 191147 24637 TO no.address@enron.com
## 11918 191200 24640 TO dana.davis@enron.com
## 11919 191201 24640 TO lisa.burnett@enron.com
## 11920 191202 24640 TO jeffrey.miller@enron.com
## 11921 191203 24640 TO leslie.reeves@enron.com
## 11922 191204 24640 TO casey.evans@enron.com
## 11923 191205 24640 TO stacey.w.white@enron.com
## 11924 191206 24640 TO gerald.gilbert@enron.com
## 11925 191207 24640 TO corry.bentley@enron.com
## 11926 191208 24640 TO elizabeth.sager@enron.com
## 11927 191209 24640 TO marcus.nettelton@enron.com
## 11928 191210 24640 TO s..bradford@enron.com
## 11929 191211 24640 TO edward.sacks@enron.com
## 11930 191212 24640 TO david.portz@enron.com
## 11931 191213 24640 TO jason.choate@enron.com
## 11932 191214 24640 TO fletcher.j.sturm@enron.com
## 11933 191215 24640 TO paul.racicot@enron.com
## 11934 191216 24640 TO stephanie.panus@enron.com
## 11935 191217 24640 TO harlan.murphy@enron.com
## 11936 191218 24640 CC jim.fallon@enron.com
## 11937 191219 24640 BCC jim.fallon@enron.com
## 11938 191377 24649 TO kevin.m.presto@enron.com
## 11939 191378 24649 TO edward.baughman@enron.com
## 11940 191379 24650 TO tanya.rohauer@enron.com
## 11941 191380 24650 TO r..brackett@enron.com
## 11942 191381 24650 CC sara.shackleton@enron.com
## 11943 191382 24650 CC carol.st.@enron.com
## 11944 191383 24650 BCC sara.shackleton@enron.com
## 11945 191384 24650 BCC carol.st.@enron.com
## 11946 191385 24651 TO diane.anderson@enron.com
## 11947 191386 24651 TO jean.bell@enron.com
## 11948 191401 24659 TO joyce.teixeira@enron.com
## 11949 191402 24660 TO david.l.johnson@enron.com
## 11950 191403 24660 TO john.shafer@enron.com
## 11951 191404 24661 TO greg.piper@enron.com
## 11952 191405 24662 TO greg.piper@enron.com
## 11953 191406 24663 TO l..gay@enron.com
## 11954 191407 24664 TO chad.landry@enron.com
## 11955 191408 24665 TO chad.landry@enron.com
## 11956 191409 24666 TO mike.grigsby@enron.com
## 11957 191410 24666 TO keith.holst@enron.com
## 11958 191411 24667 TO paul.kaufman@enron.com
## 11959 191412 24668 TO jay.reitmeyer@enron.com
## 11960 191413 24669 TO stagecoachmama@hotmail.com
## 11961 191414 24670 TO stagecoachmama@hotmail.com
## 11962 191415 24671 TO llewter@palm.net
## 11963 191416 24672 TO stouchstone@natsource.com
## 11964 191417 24673 TO jsmith@austintx.com
## 11965 191418 24674 TO jsmith@austintx.com
## 11966 191419 24675 TO cbpres@austin.rr.com
## 11967 191420 24675 TO llewter@austin.rr.com
## 11968 191422 24677 TO mac.d.hargrove@rssmb.com
## 11969 191423 24678 TO mac.d.hargrove@rssmb.com
## 11970 191424 24679 TO dawn.kenne@enron.com
## 11971 191425 24679 CC mary.gosnell@enron.com
## 11972 191426 24679 CC jason.moore@enron.com
## 11973 191427 24679 BCC mary.gosnell@enron.com
## 11974 191428 24679 BCC jason.moore@enron.com
## 11975 191429 24680 TO jonathan.mckay@enron.com
## 11976 191430 24681 TO jason.moore@enron.com
## 11977 191431 24682 TO steven.j.kean@enron.com
## 11978 191432 24683 TO jsmith@austintx.com
## 11979 191433 24684 TO jim123@pdq.net
## 11980 191434 24685 TO cbpres@austin.rr.com
## 11981 191435 24685 TO llewter@austin.rr.com
## 11982 191436 24686 TO llewter@austin.rr.com
## 11983 191437 24687 TO john.lavorato@enron.com
## 11984 191438 24688 TO mike.grigsby@enron.com
## 11985 191439 24688 TO jane.tholt@enron.com
## 11986 191440 24688 TO frank.ermis@enron.com
## 11987 191441 24688 TO tori.kuykendall@enron.com
## 11988 191442 24689 TO keith.holst@enron.com
## 11989 191443 24690 TO llewter@austin.rr.com
## 11990 191444 24691 TO llewter@austin.rr.com
## 11991 191445 24692 TO gallen@thermon.com
## 11992 191446 24693 TO fescofield@1411west.com
## 11993 191447 24694 TO tbland@enron.com
## 11994 191448 24695 TO vladimir.gorny@enron.com
## 11995 191449 24696 TO stagecoachmama@hotmail.com
## 11996 191450 24696 CC gallen@thermon.com
## 11997 191451 24696 BCC gallen@thermon.com
## 11998 191452 24697 TO cbpres@austin.rr.com
## 11999 191453 24698 TO ben.jacoby@enron.com
## 12000 191454 24699 TO llewter@austin.rr.com
## 12001 191455 24700 TO stagecoachmama@hotmail.com
## 12002 191456 24701 TO james.d.steffes@enron.com
## 12003 191457 24702 TO pallen70@hotmail.com
## 12004 191458 24703 TO patti.sullivan@enron.com
## 12005 191459 24704 TO andrea.richards@enron.com
## 12006 191460 24705 TO kristin.walsh@enron.com
## 12007 191461 24706 TO keith.holst@enron.com
## 12008 191462 24707 TO mike.grigsby@enron.com
## 12009 191463 24707 TO keith.holst@enron.com
## 12010 191464 24708 TO stagecoachmama@hotmail.com
## 12011 191465 24709 TO llewter@austin.rr.com
## 12012 191466 24710 TO jsmith@austintx.com
## 12013 191467 24711 TO ina.rangel@enron.com
## 12014 191468 24712 TO ina.rangel@enron.com
## 12015 191469 24713 TO mike.grigsby@enron.com
## 12016 191470 24714 TO john.lavorato@enron.com
## 12017 191471 24715 TO llewter@austin.rr.com
## 12018 191472 24715 CC cbpres@austin.rr.com
## 12019 191473 24715 BCC cbpres@austin.rr.com
## 12020 191474 24716 TO stagecoachmama@hotmail.com
## 12021 191475 24717 TO mike.grigsby@enron.com
## 12022 191476 24718 TO stagecoachmama@hotmail.com
## 12023 191477 24719 TO pallen70@hotmail.com
## 12024 191478 24720 TO nick.politis@enron.com
## 12025 191479 24721 TO patti.sullivan@enron.com
## 12026 191480 24722 TO mike.grigsby@enron.com
## 12027 191481 24722 TO keith.holst@enron.com
## 12028 191482 24723 TO mary.gray@enron.com
## 12029 191483 24724 TO dexter@intelligencepress.com
## 12030 191484 24725 TO cbpres@austin.rr.com
## 12031 191485 24726 TO keith.holst@enron.com
## 12032 191486 24727 TO jsmith@austintx.com
## 12033 191487 24728 TO pallen70@hotmail.com
## 12034 191488 24729 TO cbpres@austin.rr.com
## 12035 191489 24730 TO mike.grigsby@enron.com
## 12036 191490 24731 TO stagecoachmama@hotmail.com
## 12037 191491 24732 TO mike.grigsby@enron.com
## 12038 191492 24732 TO keith.holst@enron.com
## 12039 191493 24733 TO jsmith@austintx.com
## 12040 191494 24734 TO 8774820206@pagenetmessage.net
## 12041 191495 24735 TO jeff.richter@enron.com
## 12042 191496 24736 TO jeff.richter@enron.com
## 12043 191497 24737 TO info@geoswan.com
## 12044 191498 24738 TO cbpres@austin.rr.com
## 12045 191499 24739 TO jeffrey.gossett@enron.com
## 12046 191500 24739 TO sally.beck@enron.com
## 12047 191501 24740 TO ina.rangel@enron.com
## 12048 191502 24741 TO jacquestc@aol.com
## 12049 191503 24742 TO stagecoachmama@hotmail.com
## 12050 191504 24743 TO pallen@hotmail.com
## 12051 191505 24744 TO mike.grigsby@enron.com
## 12052 191506 24745 TO susan.scott@enron.com
## 12053 191507 24746 TO jsmith@austintx.com
## 12054 191508 24747 TO jsmith@austintx.com
## 12055 191509 24748 TO bridgette.anderson@enron.com
## 12056 191510 24749 TO mike.grigsby@enron.com
## 12057 191511 24750 TO keith.holst@enron.com
## 12058 191512 24750 TO mike.grigsby@enron.com
## 12059 191513 24751 TO jacquestc@aol.com
## 12060 191514 24752 TO jsmith@austintx.com
## 12061 191515 24753 TO stagecoachmama@hotmail.com
## 12062 191516 24754 TO gallen@thermon.com
## 12063 191517 24755 TO stagecoachmama@hotmail.com
## 12064 191518 24756 TO frank.ermis@enron.com
## 12065 191519 24757 TO frank.ermis@enron.com
## 12066 191520 24758 TO mark.whitt@enron.com
## 12067 191521 24759 TO colleen.sullivan@enron.com
## 12068 191522 24760 TO tim.belden@enron.com
## 12069 191523 24761 TO mike.grigsby@enron.com
## 12070 191524 24761 TO keith.holst@enron.com
## 12071 191525 24762 TO stouchstone@natsource.com
## 12072 191526 24763 TO stagecoachmama@hotmail.com
## 12073 191527 24764 TO lodonnell@spbank.com
## 12074 191528 24765 TO stagecoachmama@hotmail.com
## 12075 191529 24766 TO johnny.palmer@enron.com
## 12076 191530 24767 TO jsmith@austintx.com
## 12077 191531 24768 TO lodonnell@spbank.com
## 12078 191532 24769 TO andrew_m_ozuna@mail.bankone.com
## 12079 191533 24770 TO cbpres@austin.rr.com
## 12080 191534 24771 TO pallen70@hotmail.com
## 12081 191535 24772 TO pallen70@hotmail.com
## 12082 191536 24773 TO jeanie.slone@enron.com
## 12083 191537 24773 CC john.lavorato@enron.com
## 12084 191538 24773 BCC john.lavorato@enron.com
## 12085 191539 24774 TO cbpres@austin.rr.com
## 12086 191540 24775 TO jacquestc@aol.com
## 12087 191541 24776 TO stagecoachmama@hotmail.com
## 12088 191542 24777 TO pallen70@hotmail.com
## 12089 191543 24778 TO frank.hayden@enron.com
## 12090 191544 24779 TO jacquestc@aol.com
## 12091 191545 24780 TO body.shop@enron.com
## 12092 191547 24782 TO keith.holst@enron.com
## 12093 191548 24783 TO tara.piazze@enron.com
## 12094 191549 24784 TO keith.holst@enron.com
## 12095 191550 24785 TO keith.holst@enron.com
## 12096 191551 24786 TO cbpres@austin.rr.com
## 12097 191552 24787 TO pallen70@hotmail.com
## 12098 191553 24788 TO mike.grigsby@enron.com
## 12099 191554 24788 TO keith.holst@enron.com
## 12100 191555 24788 TO frank.ermis@enron.com
## 12101 191556 24789 TO cbpres@austin.rr.com
## 12102 191557 24790 TO barry.tycholiz@enron.com
## 12103 191558 24791 TO keith.holst@enron.com
## 12104 191559 24792 TO cbpres@austin.rr.com
## 12105 191560 24793 TO cbpres@austin.rr.com
## 12106 191561 24794 TO stagecoachmama@hotmail.com
## 12107 191562 24795 TO bnelson@situscos.com
## 12108 191563 24796 TO mike.grigsby@enron.com
## 12109 191564 24797 TO don.black@enron.com
## 12110 191565 24798 TO angela.collins@enron.com
## 12111 191566 24799 TO jim123@pdq.net
## 12112 191567 24800 TO cbpres@austin.rr.com
## 12113 191568 24800 CC llewter@austin.rr.com
## 12114 191569 24800 CC jacquestc@aol.com
## 12115 191570 24800 BCC llewter@austin.rr.com
## 12116 191571 24800 BCC jacquestc@aol.com
## 12117 191572 24801 TO cbpres@austin.rr.com
## 12118 191573 24801 CC llewter@austin.rr.com
## 12119 191574 24801 BCC llewter@austin.rr.com
## 12120 191575 24802 TO john.lavorato@enron.com
## 12121 191576 24803 TO al.pollard@enron.com
## 12122 191577 24804 TO djack@stic.net
## 12123 191578 24805 TO jsmith@austintx.com
## 12124 191579 24806 TO jsmith@austintx.com
## 12125 191580 24807 TO rlehmann@yahoo.com
## 12126 191581 24808 TO robert.badeer@enron.com
## 12127 191582 24809 TO djack@keyad.com
## 12128 191583 24810 TO gthorse@keyad.com
## 12129 191585 24812 TO stagecoachmama@hotmail.com
## 12130 191586 24813 TO matt.smith@enron.com
## 12131 191587 24814 TO cbpres@austin.rr.com
## 12132 191588 24814 CC llewter@austin.rr.com
## 12133 191589 24814 BCC llewter@austin.rr.com
## 12134 191590 24815 TO tori.kuykendall@enron.com
## 12135 191591 24816 TO jacquestc@aol.com
## 12136 191592 24817 TO jacquestc@aol.com
## 12137 191593 24818 TO gthorse@keyad.com
## 12138 191594 24818 TO djack@keyad.com
## 12139 191595 24819 TO pallen70@hotmail.com
## 12140 191596 24820 TO pallen70@hotmail.com
## 12141 191597 24821 TO pallen70@hotmail.com
## 12142 191598 24822 TO stagecoachmama@hotmail.com
## 12143 191599 24823 TO gthorse@keyad.com
## 12144 191600 24823 CC djack@keyad.com
## 12145 191601 24823 BCC djack@keyad.com
## 12146 191602 24824 TO kim.bolton@enron.com
## 12147 191603 24825 TO jeff.richter@enron.com
## 12148 191604 24826 TO todd.burke@enron.com
## 12149 191605 24827 TO stagecoachmama@hotmail.com
## 12150 191606 24828 TO matt.smith@enron.com
## 12151 191607 24829 TO jacquestc@aol.com
## 12152 191608 24830 TO llewter@austin.rr.com
## 12153 191609 24831 TO jacquestc@aol.com
## 12154 191610 24832 TO ina.rangel@enron.com
## 12155 191611 24833 TO jacquestc@aol.com
## 12156 191612 24834 TO gthorse@keyad.com
## 12157 191613 24835 TO llewter@austin.rr.com
## 12158 191614 24835 CC jacquestc@aol.com
## 12159 191615 24835 BCC jacquestc@aol.com
## 12160 191616 24836 TO stouchstone@natsource.com
## 12161 191617 24837 TO keith.holst@enron.com
## 12162 191618 24837 TO mike.grigsby@enron.com
## 12163 191619 24837 TO frank.ermis@enron.com
## 12164 191620 24838 TO jacquestc@aol.com
## 12165 191621 24839 TO jess.hewitt@enron.com
## 12166 191622 24840 TO gthorse@keyad.com
## 12167 191623 24841 TO rlehmann@yahoo.com
## 12168 191624 24842 TO john.lavorato@enron.com
## 12169 191625 24843 TO mary.gray@enron.com
## 12170 191626 24844 TO gthorse@keyad.com
## 12171 191627 24845 TO denisjr@ev1.net
## 12172 191628 24846 TO dennisjr@ev1.net
## 12173 191629 24847 TO jacquestc@aol.com
## 12174 191630 24848 TO llewter@austin.rr.com
## 12175 191631 24849 TO rlehmann@yahoo.com
## 12176 191632 24850 TO barry.tycholiz@enron.com
## 12177 191633 24851 TO scsatkfa@caprock.net
## 12178 191634 24852 TO scsatkfa@caprock.net
## 12179 191635 24853 TO scfatkfa@caprock.net
## 12180 191636 24854 TO scfatkfa@caprock.net
## 12181 191637 24855 TO rlehmann@yahoo.com
## 12182 191638 24856 TO jacquestc@aol.com
## 12183 191639 24857 TO pallen70@hotmail.com
## 12184 191640 24858 TO monique.sanchez@enron.com
## 12185 191641 24859 TO sara.solorio@enron.com
## 12186 191642 24860 TO jacquestc@aol.com
## 12187 191643 24861 TO ina.rangel@enron.com
## 12188 191644 24862 TO rlehmann@yahoo.com
## 12189 191645 24863 TO john.lavorato@enron.com
## 12190 191646 24864 TO jacquestc@aol.com
## 12191 191647 24865 TO rlehmann@yahoo.com
## 12192 191648 24866 TO mark.e.taylor@enron.com
## 12193 191649 24867 TO jhershey@sempratrading.com
## 12194 191650 24868 TO jhershey@sempratrading.com
## 12195 191651 24869 TO stagecoachmama@hotmail.com
## 12196 191652 24870 TO mike.grigsby@enron.com
## 12197 191653 24871 TO nicholasnelson@centurytel.net
## 12198 191654 24872 TO stagecoachmama@hotmail.com
## 12199 191655 24873 TO llewter@austin.rr.com
## 12200 191656 24874 TO jsmith@austintx.com
## 12201 191657 24875 TO jeff.richter@enron.com
## 12202 191658 24875 TO tim.belden@enron.com
## 12203 191659 24875 TO tim.heizenrader@enron.com
## 12204 191660 24876 TO john.lavorato@enron.com
## 12205 191661 24877 TO jsmith@austintx.com
## 12206 191662 24878 TO jsmith@austintx.com
## 12207 191663 24879 TO keith.holst@enron.com
## 12208 191664 24879 TO frank.ermis@enron.com
## 12209 191665 24879 TO mike.grigsby@enron.com
## 12210 191666 24880 TO jsmith@austintx.com
## 12211 191667 24881 TO karen.buckley@enron.com
## 12212 191668 24882 TO jsmith@austintx.com
## 12213 191669 24883 TO chad.landry@enron.com
## 12214 191670 24884 TO ina.rangel@enron.com
## 12215 191671 24885 TO julie.pechersky@enron.com
## 12216 191672 24886 TO johnniebrown@juno.com
## 12217 191673 24887 TO karen.buckley@enron.com
## 12218 191674 24888 TO andrea.richards@enron.com
## 12219 191675 24889 TO matthew.lenhart@enron.com
## 12220 191676 24890 TO andrea.richards@enron.com
## 12221 191677 24891 TO mary.gray@enron.com
## 12222 191678 24892 TO mike.grigsby@enron.com
## 12223 191679 24893 TO jsmith@austintx.com
## 12224 191680 24894 TO frank.hayden@enron.com
## 12225 191681 24895 TO mike.grigsby@enron.com
## 12226 191682 24895 TO keith.holst@enron.com
## 12227 191683 24895 TO matthew.lenhart@enron.com
## 12228 191684 24895 TO monique.sanchez@enron.com
## 12229 191685 24895 TO l..gay@enron.com
## 12230 191686 24895 TO frank.ermis@enron.com
## 12231 191687 24895 TO jane.tholt@enron.com
## 12232 191688 24895 TO tori.kuykendall@enron.com
## 12233 191689 24895 TO steven.p.south@enron.com
## 12234 191690 24895 TO jay.reitmeyer@enron.com
## 12235 191691 24895 TO susan.scott@enron.com
## 12236 191692 24896 TO eric.benson@enron.com
## 12237 191693 24897 TO gary@creativepanel.com
## 12238 191694 24898 TO ray.alvarez@enron.com
## 12239 191695 24899 TO john.lavorato@enron.com
## 12240 191696 24900 TO ned.higgins@enron.com
## 12241 191697 24900 CC mike.grigsby@enron.com
## 12242 191698 24900 BCC mike.grigsby@enron.com
## 12243 191699 24901 TO ray.alvarez@enron.com
## 12244 191700 24902 TO gary@creativepanel.com
## 12245 191701 24903 TO jsmith@austintx.com
## 12246 191702 24904 TO tim.heizenrader@enron.com
## 12247 191703 24904 CC tim.belden@enron.com
## 12248 191704 24904 BCC tim.belden@enron.com
## 12249 191705 24905 TO lisa.jones@enron.com
## 12250 191706 24906 TO keith.holst@enron.com
## 12251 191707 24907 TO keith.holst@enron.com
## 12252 191708 24908 TO alan.comnes@enron.com
## 12253 191709 24909 TO ina.rangel@enron.com
## 12254 191710 24910 TO ina.rangel@enron.com
## 12255 191711 24911 TO tori.kuykendall@enron.com
## 12256 191712 24912 TO james.d.steffes@enron.com
## 12257 191713 24913 TO rlehmann@yahoo.com
## 12258 191714 24914 TO tim.heizenrader@enron.com
## 12259 191715 24915 TO john.lavorato@enron.com
## 12260 191716 24916 TO mike.grigsby@enron.com
## 12261 191717 24916 TO keith.holst@enron.com
## 12262 191718 24916 TO frank.ermis@enron.com
## 12263 191719 24916 TO jane.tholt@enron.com
## 12264 191720 24916 TO jay.reitmeyer@enron.com
## 12265 191721 24916 TO tori.kuykendall@enron.com
## 12266 191722 24916 TO matthew.lenhart@enron.com
## 12267 191723 24917 TO keith.holst@enron.com
## 12268 191724 24918 TO matthew.lenhart@enron.com
## 12269 191725 24918 TO jay.reitmeyer@enron.com
## 12270 191726 24918 TO matt.smith@enron.com
## 12271 191727 24919 TO stanley.horton@enron.com
## 12272 191728 24919 TO dmccarty@enron.com
## 12273 191729 24920 TO john.lavorato@enron.com
## 12274 191730 24921 TO jsmith@austintx.com
## 12275 191731 24922 TO jsmith@austintx.com
## 12276 191732 24923 TO outlook.team@enron.com
## 12277 191733 24924 TO tim.belden@enron.com
## 12278 191734 24925 TO naomi.johnston@enron.com
## 12279 191735 24926 TO pallen70@hotmail.com
## 12280 191736 24927 TO patti99@hotmail.com
## 12281 191737 24928 TO maryrichards7@hotmail.com
## 12282 191738 24929 TO maryrichards7@hotmail.com
## 12283 191739 24930 TO brenda.flores-cuellar@enron.com
## 12284 191740 24930 CC tara.sweitzer@enron.com
## 12285 191741 24930 BCC tara.sweitzer@enron.com
## 12286 191742 24931 TO tim.belden@enron.com
## 12287 191743 24931 TO kevin.mcgowan@enron.com
## 12288 191744 24931 TO robert.badeer@enron.com
## 12289 191745 24931 TO jeff.richter@enron.com
## 12290 191746 24932 TO stouchstone@natsource.com
## 12291 191747 24933 TO brenda.flores-cuellar@enron.com
## 12292 191748 24933 CC dale.neuner@enron.com
## 12293 191749 24933 BCC dale.neuner@enron.com
## 12294 191750 24934 TO slewis2@enron.com
## 12295 191751 24935 TO tara.sweitzer@enron.com
## 12296 191752 24935 CC brenda.flores-cuellar@enron.com
## 12297 191753 24935 BCC brenda.flores-cuellar@enron.com
## 12298 191754 24936 TO william.kelly@enron.com
## 12299 191755 24937 TO pallen70@hotmail.com
## 12300 191756 24938 TO fletcher.j.sturm@enron.com
## 12301 191757 24938 TO hunter.s.shively@enron.com
## 12302 191758 24939 TO julie.gomez@enron.com
## 12303 191759 24940 TO candace.womack@enron.com
## 12304 191760 24941 TO julie.gomez@enron.com
## 12305 191761 24942 TO tara.sweitzer@enron.com
## 12306 191762 24943 TO jim.brysch@enron.com
## 12307 191763 24944 TO pallen70@hotmail.com
## 12308 191764 24945 TO william.kelly@enron.com
## 12309 191765 24946 TO robert.superty@enron.com
## 12310 191766 24947 TO kimberly.olinger@enron.com
## 12311 191767 24948 TO george.rahal@acnpower.com
## 12312 191768 24949 TO william.kelly@enron.com
## 12313 191769 24950 TO keith.holst@enron.com
## 12314 191770 24951 TO keith.holst@enron.com
## 12315 191771 24952 TO mike.grigsby@enron.com
## 12316 191772 24953 TO hunter.s.shively@enron.com
## 12317 191773 24954 TO maryrichards7@hotmail.com
## 12318 191774 24955 TO maryrichards7@hotmail.com
## 12319 191775 24956 TO tara.sweitzer@enron.com
## 12320 191776 24957 TO mike.grigsby@enron.com
## 12321 191777 24958 TO jsmith@austintx.com
## 12322 191778 24959 TO maryrichards7@hotmail.com
## 12323 191779 24960 TO maryrichards7@hotmail.com
## 12324 191780 24961 TO imelda.frayre@enron.com
## 12325 191781 24962 TO matthew.lenhart@enron.com
## 12326 191782 24963 TO maryrichards7@hotmail.com
## 12327 191783 24964 TO mike.grigsby@enron.com
## 12328 191784 24965 TO jim.brysch@enron.com
## 12329 191785 24966 TO maryrichards7@hotmail.com
## 12330 191786 24967 TO jsmith@austintx.com
## 12331 191787 24968 TO maryrichards7@hotmail.com
## 12332 191788 24969 TO stephen.wolfe@enron.com
## 12333 191789 24970 TO maryrichards7@hotmail.com
## 12334 191790 24971 TO william.kelly@enron.com
## 12335 191791 24971 TO steve.jackson@enron.com
## 12336 191792 24971 TO brent.price@enron.com
## 12337 191793 24972 TO monique.sanchez@enron.com
## 12338 191794 24973 TO ina.rangel@enron.com
## 12339 191795 24973 TO monique.sanchez@enron.com
## 12340 191796 24974 TO maryrichards7@hotmail.com
## 12341 191797 24975 TO ina.rangel@enron.com
## 12342 191798 24976 TO dwagman@ftenergy.com
## 12343 191799 24977 TO fletcher.j.sturm@enron.com
## 12344 191800 24978 TO steven.p.south@enron.com
## 12345 191801 24979 TO maryrichards7@hotmail.com
## 12346 191802 24980 TO keith.holst@enron.com
## 12347 191803 24981 TO brian.hoskins@enron.com
## 12348 191804 24982 TO stephane.brodeur@enron.com
## 12349 191805 24983 TO ina.rangel@enron.com
## 12350 191806 24984 TO mark.miles@enron.com
## 12351 191807 24985 TO keith.holst@enron.com
## 12352 191808 24986 TO maryrichards7@hotmail.com
## 12353 191809 24987 TO tara.sweitzer@enron.com
## 12354 191810 24988 TO jsmith@austintx.com
## 12355 191811 24989 TO mac05@flash.net
## 12356 191812 24990 TO mac.d.hargrove@rssmb.com
## 12357 191813 24991 TO jsmith@austintx.com
## 12358 191814 24992 TO beth.perlman@enron.com
## 12359 191815 24993 TO mike.grigsby@enron.com
## 12360 191816 24994 TO frank.ermis@enron.com
## 12361 191817 24994 TO steven.p.south@enron.com
## 12362 191818 24995 TO suzanne.marshall@enron.com
## 12363 191819 24996 TO david.wile@enron.com
## 12364 191820 24997 TO maryrichards7@hotmail.com
## 12365 191821 24998 TO hargr@webtv.net
## 12366 191822 24999 TO hector.campos@enron.com
## 12367 191823 25000 TO ina.rangel@enron.com
## 12368 191824 25001 TO hargr@webtv.net
## 12369 191825 25002 TO laird.dyer@enron.com
## 12370 191826 25003 TO kenneth.shulklapper@enron.com
## 12371 191827 25004 TO Circuit Provisioning@ENRON
## 12372 191828 25005 TO dawn.kenne@enron.com
## 12373 191829 25006 TO tim.belden@enron.com
## 12374 191830 25007 TO jsmith@austintx.com
## 12375 191831 25008 TO matthew.lenhart@enron.com
## 12376 191832 25008 TO jane.tholt@enron.com
## 12377 191833 25008 TO steven.p.south@enron.com
## 12378 191834 25008 TO tori.kuykendall@enron.com
## 12379 191835 25008 TO frank.ermis@enron.com
## 12380 191836 25009 TO tara.sweitzer@enron.com
## 12381 191837 25010 TO stagecoachmama@hotmail.com
## 12382 191838 25011 TO stagecoachmama@hotmail.com
## 12383 191839 25012 TO hunter.s.shively@enron.com
## 12384 191840 25013 TO maryrichards7@hotmail.com
## 12385 191841 25014 TO jeffrey.gossett@enron.com
## 12386 191842 25015 TO al.pollard@enron.com
## 12387 191843 25016 TO jsmith@austintx.com
## 12388 191844 25017 TO stagecoachmama@hotmail.com
## 12389 191845 25018 TO felix.buitron@enron.com
## 12390 191846 25019 TO robert.badeer@enron.com
## 12391 191847 25020 TO jeff.richter@enron.com
## 12392 191848 25021 TO jeff.richter@enron.com
## 12393 191849 25022 TO jeff.richter@enron.com
## 12394 191850 25022 TO tim.belden@enron.com
## 12395 191851 25023 TO matthew.lenhart@enron.com
## 12396 191852 25024 TO matthew.lenhart@enron.com
## 12397 191853 25025 TO stagecoachmama@hotmail.com
## 12398 191854 25026 TO scott.carter@chase.com
## 12399 191855 25027 TO torrey.moorer@enron.com
## 12400 191856 25028 TO keith.holst@enron.com
## 12401 191857 25029 TO stouchstone@natsource.com
## 12402 191858 25030 TO stouchstone@natsource.com
## 12403 191859 25031 TO kenneth.shulklapper@enron.com
## 12404 191860 25032 TO mike.grigsby@enron.com
## 12405 191861 25032 TO keith.holst@enron.com
## 12406 191862 25033 TO ina.rangel@enron.com
## 12407 191863 25034 TO stagecoachmama@hotmail.com
## 12408 191864 25035 TO ina.rangel@enron.com
## 12409 191865 25036 TO tim.belden@enron.com
## 12410 191866 25037 TO felix.buitron@enron.com
## 12411 191867 25038 TO gary.taylor@enron.com
## 12412 191868 25039 TO jsmith@austintx.com
## 12413 191869 25040 TO brendas@tgn.net
## 12414 191870 25041 TO al.pollard@enron.com
## 12415 191871 25042 TO ina.rangel@enron.com
## 12416 191872 25043 TO matthew.lenhart@enron.com
## 12417 191873 25043 TO kenneth.shulklapper@enron.com
## 12418 191874 25044 TO ina.rangel@enron.com
## 12419 191875 25045 TO brendas@surffree.com
## 12420 191876 25046 TO ywang@enron.com
## 12421 191877 25047 TO al.pollard@enron.com
## 12422 191878 25048 TO celeste.roberts@enron.com
## 12423 191879 25049 TO ina.rangel@enron.com
## 12424 191880 25050 TO matthew.lenhart@enron.com
## 12425 191881 25050 TO mike.grigsby@enron.com
## 12426 191882 25051 TO l..gay@enron.com
## 12427 191883 25052 TO keith.holst@enron.com
## 12428 191884 25053 TO hargr@webtv.net
## 12429 191885 25054 TO frank.davis@enron.com
## 12430 191886 25054 TO niamh.clarke@enron.com
## 12431 191887 25054 TO sonya.clarke@enron.com
## 12432 191888 25055 TO paul.lucci@enron.com
## 12433 191889 25056 TO al.pollard@enron.com
## 12434 191890 25057 TO hunter.s.shively@enron.com
## 12435 191891 25058 TO fletcher.j.sturm@enron.com
## 12436 191892 25058 TO hunter.s.shively@enron.com
## 12437 191893 25059 TO mac.d.hargrove@rssmb.com
## 12438 191894 25060 TO stagecoachmama@hotmail.com
## 12439 191895 25061 TO frank.ermis@enron.com
## 12440 191896 25062 TO ywang@enron.com
## 12441 191897 25063 TO mike.grigsby@enron.com
## 12442 191898 25063 TO keith.holst@enron.com
## 12443 191899 25063 TO matthew.lenhart@enron.com
## 12444 191900 25063 TO frank.ermis@enron.com
## 12445 191901 25063 TO jay.reitmeyer@enron.com
## 12446 191902 25064 TO stagecoachmama@hotmail.com
## 12447 191903 25065 TO john.lavorato@enron.com
## 12448 191904 25066 TO chris.gaskill@enron.com
## 12449 191905 25067 TO hunter.s.shively@enron.com
## 12450 191906 25068 TO mike.grigsby@enron.com
## 12451 191907 25068 TO keith.holst@enron.com
## 12452 191908 25068 TO frank.ermis@enron.com
## 12453 191909 25068 TO jane.tholt@enron.com
## 12454 191910 25068 TO steven.p.south@enron.com
## 12455 191911 25069 TO stagecoachmama@hotmail.com
## 12456 191912 25070 TO matt.smith@enron.com
## 12457 191913 25071 TO barry.steinhart@enron.com
## 12458 191914 25072 TO ina.rangel@enron.com
## 12459 191915 25073 TO ina.rangel@enron.com
## 12460 191916 25074 TO stagecoachmama@hotmail.com
## 12461 191917 25075 TO colleen.sullivan@enron.com
## 12462 191918 25076 TO keith.holst@enron.com
## 12463 191919 25077 TO sunil.dalal@enron.com
## 12464 191920 25078 TO stephen.harrington@enron.com
## 12465 191921 25079 TO stephanie.sever@enron.com
## 12466 191922 25080 TO cooper.richey@enron.com
## 12467 191923 25081 TO cooper.richey@enron.com
## 12468 191924 25082 TO ina.rangel@enron.com
## 12469 191925 25083 TO cooper.richey@enron.com
## 12470 191926 25084 TO mac.d.hargrove@rssmb.com
## 12471 191927 25085 TO pallen70@hotmail.com
## 12472 191928 25086 TO pallen70@hotmail.com
## 12473 191929 25087 TO pallen70@hotmail.com
## 12474 191930 25088 TO mac.d.hargrove@rssmb.com
## 12475 191931 25089 TO stagecoachmama@hotmail.com
## 12476 191932 25090 TO stagecoachmama@hotmail.com
## 12477 191933 25091 TO stagecoachmama@hotmail.com
## 12478 191934 25092 TO ina.rangel@enron.com
## 12479 191935 25093 TO stagecoachmama@hotmail.com
## 12480 191936 25094 TO stagecoachmama@hotmail.com
## 12481 191937 25095 TO bruce.ferrell@enron.com
## 12482 191938 25096 TO brad.mcsherry@enron.com
## 12483 191939 25096 CC john.lavorato@enron.com
## 12484 191940 25096 CC hunter.s.shively@enron.com
## 12485 191941 25096 BCC john.lavorato@enron.com
## 12486 191942 25096 BCC hunter.s.shively@enron.com
## 12487 191943 25097 TO colleen.sullivan@enron.com
## 12488 191944 25098 TO suzanne.nicholie@enron.com
## 12489 191945 25099 TO mark@intelligencepress.com
## 12490 191946 25100 TO mark@intelligencepress.com
## 12491 191947 25101 TO matthew.lenhart@enron.com
## 12492 191948 25101 TO mike.grigsby@enron.com
## 12493 191949 25101 TO keith.holst@enron.com
## 12494 191950 25101 TO frank.ermis@enron.com
## 12495 191951 25101 TO jay.reitmeyer@enron.com
## 12496 191952 25102 TO bs_stone@yahoo.com
## 12497 191953 25103 TO mark@intelligencepress.com
## 12498 191954 25104 TO mark@intelligencepress.com
## 12499 191955 25105 TO cindy.long@enron.com
## sender date
## 1 cooper.richey@enron.com 2000-08-23
## 2 cooper.richey@enron.com 2000-08-23
## 3 cooper.richey@enron.com 2000-08-23
## 4 cooper.richey@enron.com 2000-08-23
## 5 cooper.richey@enron.com 2000-08-23
## 6 jeff.dasovich@enron.com 2000-08-07
## 7 jeff.dasovich@enron.com 2000-08-07
## 8 jeff.dasovich@enron.com 2000-08-07
## 9 jeff.dasovich@enron.com 2000-08-07
## 10 jeff.dasovich@enron.com 2000-08-07
## 11 jeff.dasovich@enron.com 2000-08-07
## 12 jeff.dasovich@enron.com 2000-08-07
## 13 jeff.dasovich@enron.com 2000-08-07
## 14 jeff.dasovich@enron.com 2000-08-07
## 15 jeff.dasovich@enron.com 2000-08-07
## 16 jeff.dasovich@enron.com 2000-08-07
## 17 jeff.dasovich@enron.com 2000-08-07
## 18 jeff.dasovich@enron.com 2000-08-10
## 19 jeff.dasovich@enron.com 2000-08-10
## 20 jeff.dasovich@enron.com 2000-08-10
## 21 jeff.dasovich@enron.com 2000-08-10
## 22 jeff.dasovich@enron.com 2000-08-10
## 23 jeff.dasovich@enron.com 2000-08-10
## 24 jeff.dasovich@enron.com 2000-08-10
## 25 jeff.dasovich@enron.com 2000-08-10
## 26 jeff.dasovich@enron.com 2000-08-10
## 27 jeff.dasovich@enron.com 2000-08-10
## 28 jeff.dasovich@enron.com 2000-08-10
## 29 jeff.dasovich@enron.com 2000-08-10
## 30 jeff.dasovich@enron.com 2000-08-16
## 31 jeff.dasovich@enron.com 2000-08-16
## 32 jeff.dasovich@enron.com 2000-08-09
## 33 jeff.dasovich@enron.com 2000-08-09
## 34 jeff.dasovich@enron.com 2000-08-09
## 35 jeff.dasovich@enron.com 2000-08-09
## 36 jeff.dasovich@enron.com 2000-08-09
## 37 jeff.dasovich@enron.com 2000-08-09
## 38 jeff.dasovich@enron.com 2000-08-09
## 39 jeff.dasovich@enron.com 2000-08-09
## 40 jeff.dasovich@enron.com 2000-08-09
## 41 jeff.dasovich@enron.com 2000-08-09
## 42 jeff.dasovich@enron.com 2000-08-09
## 43 jeff.dasovich@enron.com 2000-08-10
## 44 jeff.dasovich@enron.com 2000-08-10
## 45 jeff.dasovich@enron.com 2000-08-10
## 46 jeff.dasovich@enron.com 2000-08-10
## 47 jeff.dasovich@enron.com 2000-08-10
## 48 jeff.dasovich@enron.com 2000-08-10
## 49 jeff.dasovich@enron.com 2000-08-10
## 50 jeff.dasovich@enron.com 2000-08-10
## 51 jeff.dasovich@enron.com 2000-08-10
## 52 jeff.dasovich@enron.com 2000-08-10
## 53 jeff.dasovich@enron.com 2000-08-10
## 54 jeff.dasovich@enron.com 2000-08-10
## 55 jeff.dasovich@enron.com 2000-08-10
## 56 jeff.dasovich@enron.com 2000-08-10
## 57 jeff.dasovich@enron.com 2000-08-10
## 58 jeff.dasovich@enron.com 2000-08-11
## 59 jeff.dasovich@enron.com 2000-08-11
## 60 jeff.dasovich@enron.com 2000-08-11
## 61 robert.badeer@enron.com 2001-08-17
## 62 robert.badeer@enron.com 2002-03-07
## 63 robert.badeer@enron.com 2002-03-07
## 64 robert.badeer@enron.com 2002-03-07
## 65 robert.badeer@enron.com 2002-03-07
## 66 robert.badeer@enron.com 2002-03-08
## 67 robert.badeer@enron.com 2002-03-08
## 68 robert.badeer@enron.com 2002-03-08
## 69 kevin.hyatt@enron.com 2001-01-29
## 70 kevin.hyatt@enron.com 2002-03-08
## 71 kevin.hyatt@enron.com 2002-03-08
## 72 kevin.hyatt@enron.com 2002-03-08
## 73 kevin.hyatt@enron.com 2002-03-08
## 74 kevin.hyatt@enron.com 2002-03-08
## 75 kevin.hyatt@enron.com 2002-03-08
## 76 kevin.hyatt@enron.com 2002-02-27
## 77 kevin.hyatt@enron.com 2002-02-27
## 78 kevin.hyatt@enron.com 2002-02-27
## 79 kevin.hyatt@enron.com 2002-02-27
## 80 kevin.hyatt@enron.com 2002-02-27
## 81 kevin.hyatt@enron.com 2002-02-27
## 82 kevin.hyatt@enron.com 2002-02-27
## 83 kevin.hyatt@enron.com 2001-06-06
## 84 kevin.hyatt@enron.com 2002-03-18
## 85 kevin.hyatt@enron.com 2002-03-18
## 86 kevin.hyatt@enron.com 2002-03-18
## 87 kevin.hyatt@enron.com 2002-03-15
## 88 kevin.hyatt@enron.com 2002-03-15
## 89 kevin.hyatt@enron.com 2002-03-15
## 90 kevin.hyatt@enron.com 2002-03-15
## 91 kevin.hyatt@enron.com 2002-03-15
## 92 kevin.hyatt@enron.com 2002-03-15
## 93 kevin.hyatt@enron.com 2002-03-08
## 94 kevin.hyatt@enron.com 2002-03-08
## 95 kevin.hyatt@enron.com 2002-03-08
## 96 kevin.hyatt@enron.com 2002-03-08
## 97 kevin.hyatt@enron.com 2002-03-01
## 98 kevin.hyatt@enron.com 2002-03-01
## 99 kevin.hyatt@enron.com 2002-03-01
## 100 kevin.hyatt@enron.com 2002-03-01
## 101 kevin.hyatt@enron.com 2002-03-01
## 102 kevin.hyatt@enron.com 2002-03-01
## 103 kevin.hyatt@enron.com 2002-03-01
## 104 kevin.hyatt@enron.com 2002-03-01
## 105 kevin.hyatt@enron.com 2002-02-14
## 106 kevin.hyatt@enron.com 2002-02-14
## 107 kevin.hyatt@enron.com 2002-02-14
## 108 kevin.hyatt@enron.com 2002-02-14
## 109 kevin.hyatt@enron.com 2002-02-01
## 110 kevin.hyatt@enron.com 2002-02-01
## 111 kevin.hyatt@enron.com 2002-01-25
## 112 kevin.hyatt@enron.com 2002-01-25
## 113 kevin.hyatt@enron.com 2002-01-03
## 114 kevin.hyatt@enron.com 2002-01-03
## 115 kevin.hyatt@enron.com 2002-01-03
## 116 kevin.hyatt@enron.com 2002-01-03
## 117 kevin.hyatt@enron.com 2002-01-03
## 118 kevin.hyatt@enron.com 2002-01-11
## 119 kevin.hyatt@enron.com 2002-01-11
## 120 kevin.hyatt@enron.com 2001-12-04
## 121 kevin.hyatt@enron.com 2001-12-04
## 122 kevin.hyatt@enron.com 2001-12-04
## 123 kevin.hyatt@enron.com 2001-12-04
## 124 kevin.hyatt@enron.com 2001-12-04
## 125 larry.f.campbell@enron.com 2001-09-28
## 126 larry.f.campbell@enron.com 2001-09-28
## 127 larry.f.campbell@enron.com 2001-09-28
## 128 larry.f.campbell@enron.com 2001-09-28
## 129 larry.f.campbell@enron.com 2001-09-28
## 130 larry.f.campbell@enron.com 2001-09-28
## 131 larry.f.campbell@enron.com 2001-09-28
## 132 larry.f.campbell@enron.com 2001-09-28
## 133 larry.f.campbell@enron.com 2001-09-28
## 134 larry.f.campbell@enron.com 2001-09-28
## 135 larry.f.campbell@enron.com 2001-09-28
## 136 larry.f.campbell@enron.com 2001-09-28
## 137 larry.f.campbell@enron.com 2001-09-28
## 138 larry.f.campbell@enron.com 2001-09-28
## 139 larry.f.campbell@enron.com 2001-09-28
## 140 larry.f.campbell@enron.com 2001-09-28
## 141 larry.f.campbell@enron.com 2001-09-26
## 142 larry.f.campbell@enron.com 2001-09-26
## 143 larry.f.campbell@enron.com 2001-09-26
## 144 larry.f.campbell@enron.com 2001-09-26
## 145 larry.f.campbell@enron.com 2001-09-26
## 146 larry.f.campbell@enron.com 2001-09-26
## 147 larry.f.campbell@enron.com 2001-09-26
## 148 larry.f.campbell@enron.com 2001-09-26
## 149 larry.f.campbell@enron.com 2001-09-26
## 150 larry.f.campbell@enron.com 2001-09-26
## 151 larry.f.campbell@enron.com 2001-09-26
## 152 larry.f.campbell@enron.com 2001-09-26
## 153 larry.f.campbell@enron.com 2001-09-26
## 154 larry.f.campbell@enron.com 2001-09-26
## 155 larry.f.campbell@enron.com 2001-09-26
## 156 larry.f.campbell@enron.com 2001-09-26
## 157 larry.f.campbell@enron.com 2001-09-26
## 158 larry.f.campbell@enron.com 2001-09-26
## 159 kevin.hyatt@enron.com 2001-09-05
## 160 kevin.hyatt@enron.com 2001-09-04
## 161 kevin.hyatt@enron.com 2001-08-27
## 162 kevin.hyatt@enron.com 2001-08-27
## 163 kevin.hyatt@enron.com 2001-08-23
## 164 larry.f.campbell@enron.com 2001-07-31
## 165 larry.f.campbell@enron.com 2001-07-31
## 166 larry.f.campbell@enron.com 2001-07-31
## 167 larry.f.campbell@enron.com 2001-07-31
## 168 kevin.hyatt@enron.com 2001-07-06
## 169 kevin.hyatt@enron.com 2001-07-06
## 170 kevin.hyatt@enron.com 2001-07-06
## 171 kevin.hyatt@enron.com 2001-07-06
## 172 kevin.hyatt@enron.com 2001-07-06
## 173 kevin.hyatt@enron.com 2001-07-06
## 174 lindy.donoho@enron.com 2001-05-10
## 175 lindy.donoho@enron.com 2001-04-18
## 176 lindy.donoho@enron.com 2001-04-18
## 177 lindy.donoho@enron.com 2001-04-18
## 178 lindy.donoho@enron.com 2001-04-18
## 179 lindy.donoho@enron.com 2001-04-18
## 180 lindy.donoho@enron.com 2001-04-18
## 181 lindy.donoho@enron.com 2001-04-18
## 182 lindy.donoho@enron.com 2001-04-18
## 183 lindy.donoho@enron.com 2001-04-18
## 184 lindy.donoho@enron.com 2001-04-18
## 185 lindy.donoho@enron.com 2001-04-18
## 186 lindy.donoho@enron.com 2001-04-18
## 187 lindy.donoho@enron.com 2001-04-18
## 188 lindy.donoho@enron.com 2001-04-18
## 189 lindy.donoho@enron.com 2001-04-18
## 190 lindy.donoho@enron.com 2001-04-18
## 191 lindy.donoho@enron.com 2001-04-18
## 192 steven.harris@enron.com 2001-02-15
## 193 steven.harris@enron.com 2001-02-15
## 194 steven.harris@enron.com 2001-02-15
## 195 steven.harris@enron.com 2001-02-15
## 196 steven.harris@enron.com 2001-02-15
## 197 steven.harris@enron.com 2001-02-15
## 198 steven.harris@enron.com 2001-02-15
## 199 steven.harris@enron.com 2001-02-15
## 200 steven.harris@enron.com 2001-02-15
## 201 steven.harris@enron.com 2001-02-15
## 202 steven.harris@enron.com 2001-02-15
## 203 steven.harris@enron.com 2001-02-15
## 204 steven.harris@enron.com 2001-02-15
## 205 steven.harris@enron.com 2001-02-15
## 206 steven.harris@enron.com 2001-02-15
## 207 steven.harris@enron.com 2001-02-15
## 208 steven.harris@enron.com 2001-02-15
## 209 steven.harris@enron.com 2001-02-15
## 210 steven.harris@enron.com 2001-02-15
## 211 kevin.hyatt@enron.com 2001-02-21
## 212 kevin.hyatt@enron.com 2001-02-21
## 213 kevin.hyatt@enron.com 2001-02-21
## 214 kevin.hyatt@enron.com 2001-02-21
## 215 kevin.hyatt@enron.com 2001-02-21
## 216 kevin.hyatt@enron.com 2001-02-21
## 217 kevin.hyatt@enron.com 2001-02-21
## 218 kevin.hyatt@enron.com 2001-02-21
## 219 kevin.hyatt@enron.com 2001-02-21
## 220 kevin.hyatt@enron.com 2001-02-21
## 221 kevin.hyatt@enron.com 2001-02-21
## 222 kevin.hyatt@enron.com 2001-02-21
## 223 kevin.hyatt@enron.com 2001-02-21
## 224 kevin.hyatt@enron.com 2001-02-21
## 225 kevin.hyatt@enron.com 2001-02-21
## 226 kevin.hyatt@enron.com 2001-02-21
## 227 kevin.hyatt@enron.com 2001-02-21
## 228 kevin.hyatt@enron.com 2001-02-21
## 229 kevin.hyatt@enron.com 2001-02-21
## 230 kevin.hyatt@enron.com 2001-02-21
## 231 kevin.hyatt@enron.com 2001-02-21
## 232 kevin.hyatt@enron.com 2001-02-21
## 233 kevin.hyatt@enron.com 2001-02-21
## 234 kevin.hyatt@enron.com 2001-02-21
## 235 kevin.hyatt@enron.com 2001-02-21
## 236 kevin.hyatt@enron.com 2001-02-21
## 237 kevin.hyatt@enron.com 2001-02-21
## 238 kevin.hyatt@enron.com 2001-02-21
## 239 kevin.hyatt@enron.com 2001-02-21
## 240 kevin.hyatt@enron.com 2001-02-21
## 241 kevin.hyatt@enron.com 2001-02-21
## 242 kevin.hyatt@enron.com 2001-02-21
## 243 kevin.hyatt@enron.com 2001-02-21
## 244 kevin.hyatt@enron.com 2001-02-21
## 245 kevin.hyatt@enron.com 2001-02-21
## 246 kevin.hyatt@enron.com 2001-02-21
## 247 kevin.hyatt@enron.com 2001-02-21
## 248 kevin.hyatt@enron.com 2001-02-21
## 249 kevin.hyatt@enron.com 2001-02-21
## 250 kevin.hyatt@enron.com 2001-02-21
## 251 kevin.hyatt@enron.com 2001-02-21
## 252 kevin.hyatt@enron.com 2001-02-21
## 253 kevin.hyatt@enron.com 2001-02-21
## 254 kevin.hyatt@enron.com 2001-02-21
## 255 kevin.hyatt@enron.com 2001-02-21
## 256 kevin.hyatt@enron.com 2001-02-21
## 257 kevin.hyatt@enron.com 2001-02-21
## 258 kevin.hyatt@enron.com 2001-02-21
## 259 kevin.hyatt@enron.com 2001-02-21
## 260 kevin.hyatt@enron.com 2001-02-21
## 261 kevin.hyatt@enron.com 2001-02-21
## 262 kevin.hyatt@enron.com 2001-02-21
## 263 kevin.hyatt@enron.com 2001-02-21
## 264 kevin.hyatt@enron.com 2001-02-21
## 265 kevin.hyatt@enron.com 2001-02-21
## 266 kevin.hyatt@enron.com 2001-02-21
## 267 kevin.hyatt@enron.com 2001-02-21
## 268 kevin.hyatt@enron.com 2001-02-21
## 269 kevin.hyatt@enron.com 2001-02-21
## 270 kevin.hyatt@enron.com 2001-02-21
## 271 kevin.hyatt@enron.com 2001-02-21
## 272 kevin.hyatt@enron.com 2001-02-21
## 273 kevin.hyatt@enron.com 2001-02-21
## 274 kevin.hyatt@enron.com 2001-12-04
## 275 kevin.hyatt@enron.com 2001-06-12
## 276 kevin.hyatt@enron.com 2001-06-05
## 277 kevin.hyatt@enron.com 2001-04-16
## 278 kevin.hyatt@enron.com 2001-11-08
## 279 kevin.hyatt@enron.com 2001-11-08
## 280 kevin.hyatt@enron.com 2001-11-08
## 281 shelley.corman@enron.com 2002-03-22
## 282 kevin.hyatt@enron.com 2001-11-28
## 283 kevin.hyatt@enron.com 2001-11-28
## 284 kevin.hyatt@enron.com 2001-11-27
## 285 kevin.hyatt@enron.com 2001-11-27
## 286 kevin.hyatt@enron.com 2001-11-27
## 287 kevin.hyatt@enron.com 2001-11-27
## 288 kevin.hyatt@enron.com 2001-11-27
## 289 kevin.hyatt@enron.com 2001-11-27
## 290 kevin.hyatt@enron.com 2001-11-27
## 291 kevin.hyatt@enron.com 2001-11-27
## 292 kevin.hyatt@enron.com 2001-11-26
## 293 kevin.hyatt@enron.com 2001-11-26
## 294 kevin.hyatt@enron.com 2001-11-26
## 295 kevin.hyatt@enron.com 2001-11-26
## 296 kevin.hyatt@enron.com 2001-11-26
## 297 kevin.hyatt@enron.com 2001-11-26
## 298 kevin.hyatt@enron.com 2001-11-26
## 299 kevin.hyatt@enron.com 2001-11-26
## 300 kevin.hyatt@enron.com 2001-11-26
## 301 kevin.hyatt@enron.com 2001-11-26
## 302 kevin.hyatt@enron.com 2001-11-26
## 303 kevin.hyatt@enron.com 2001-11-26
## 304 kevin.hyatt@enron.com 2001-11-26
## 305 kevin.hyatt@enron.com 2001-11-26
## 306 kevin.hyatt@enron.com 2001-11-19
## 307 kevin.hyatt@enron.com 2001-11-19
## 308 kevin.hyatt@enron.com 2001-11-19
## 309 kevin.hyatt@enron.com 2001-11-19
## 310 kevin.hyatt@enron.com 2001-11-19
## 311 kevin.hyatt@enron.com 2001-11-19
## 312 kevin.hyatt@enron.com 2001-11-19
## 313 kevin.hyatt@enron.com 2001-11-19
## 314 kevin.hyatt@enron.com 2001-11-19
## 315 kevin.hyatt@enron.com 2001-11-19
## 316 kevin.hyatt@enron.com 2001-11-19
## 317 kevin.hyatt@enron.com 2001-11-19
## 318 kevin.hyatt@enron.com 2001-11-19
## 319 kevin.hyatt@enron.com 2001-11-15
## 320 kevin.hyatt@enron.com 2001-11-15
## 321 kevin.hyatt@enron.com 2001-11-15
## 322 kevin.hyatt@enron.com 2001-11-15
## 323 kevin.hyatt@enron.com 2001-11-14
## 324 kevin.hyatt@enron.com 2001-11-14
## 325 kevin.hyatt@enron.com 2001-11-14
## 326 kevin.hyatt@enron.com 2001-11-14
## 327 kevin.hyatt@enron.com 2001-11-14
## 328 kevin.hyatt@enron.com 2001-11-14
## 329 kevin.hyatt@enron.com 2001-11-14
## 330 kevin.hyatt@enron.com 2001-11-14
## 331 kevin.hyatt@enron.com 2001-11-14
## 332 kevin.hyatt@enron.com 2001-11-14
## 333 kevin.hyatt@enron.com 2001-11-14
## 334 kevin.hyatt@enron.com 2001-11-14
## 335 kevin.hyatt@enron.com 2001-11-14
## 336 kevin.hyatt@enron.com 2001-11-14
## 337 kevin.hyatt@enron.com 2001-11-14
## 338 kevin.hyatt@enron.com 2001-11-14
## 339 kevin.hyatt@enron.com 2001-11-14
## 340 kevin.hyatt@enron.com 2001-11-14
## 341 kevin.hyatt@enron.com 2001-11-14
## 342 kevin.hyatt@enron.com 2001-11-14
## 343 kevin.hyatt@enron.com 2001-11-14
## 344 kevin.hyatt@enron.com 2001-11-14
## 345 kevin.hyatt@enron.com 2001-11-13
## 346 kevin.hyatt@enron.com 2001-11-13
## 347 kevin.hyatt@enron.com 2001-11-13
## 348 kevin.hyatt@enron.com 2001-11-13
## 349 kevin.hyatt@enron.com 2001-11-13
## 350 kevin.hyatt@enron.com 2001-11-13
## 351 kevin.hyatt@enron.com 2001-11-13
## 352 kevin.hyatt@enron.com 2001-11-13
## 353 kevin.hyatt@enron.com 2001-11-13
## 354 kevin.hyatt@enron.com 2001-11-13
## 355 kevin.hyatt@enron.com 2001-11-13
## 356 kevin.hyatt@enron.com 2001-11-13
## 357 kevin.hyatt@enron.com 2001-11-13
## 358 kevin.hyatt@enron.com 2001-11-13
## 359 kevin.hyatt@enron.com 2001-11-13
## 360 kevin.hyatt@enron.com 2001-11-08
## 361 kevin.hyatt@enron.com 2001-11-08
## 362 kevin.hyatt@enron.com 2001-11-08
## 363 kevin.hyatt@enron.com 2001-11-08
## 364 kevin.hyatt@enron.com 2001-11-08
## 365 kevin.hyatt@enron.com 2001-11-08
## 366 kevin.hyatt@enron.com 2001-11-08
## 367 kevin.hyatt@enron.com 2001-11-08
## 368 kevin.hyatt@enron.com 2001-11-08
## 369 kevin.hyatt@enron.com 2001-11-08
## 370 kevin.hyatt@enron.com 2001-11-08
## 371 kevin.hyatt@enron.com 2001-11-08
## 372 kevin.hyatt@enron.com 2001-11-08
## 373 kevin.hyatt@enron.com 2001-11-08
## 374 kevin.hyatt@enron.com 2001-11-08
## 375 kevin.hyatt@enron.com 2001-11-08
## 376 kevin.hyatt@enron.com 2001-11-08
## 377 kevin.hyatt@enron.com 2001-11-08
## 378 kevin.hyatt@enron.com 2001-11-08
## 379 kevin.hyatt@enron.com 2001-11-08
## 380 kevin.hyatt@enron.com 2001-11-08
## 381 kevin.hyatt@enron.com 2001-11-08
## 382 kevin.hyatt@enron.com 2001-11-08
## 383 kevin.hyatt@enron.com 2001-11-07
## 384 kevin.hyatt@enron.com 2001-11-07
## 385 kevin.hyatt@enron.com 2001-11-07
## 386 kevin.hyatt@enron.com 2001-11-07
## 387 kevin.hyatt@enron.com 2001-11-07
## 388 kevin.hyatt@enron.com 2001-11-07
## 389 kevin.hyatt@enron.com 2001-11-07
## 390 kevin.hyatt@enron.com 2001-11-07
## 391 kevin.hyatt@enron.com 2001-11-07
## 392 kevin.hyatt@enron.com 2001-11-07
## 393 kevin.hyatt@enron.com 2001-11-07
## 394 kevin.hyatt@enron.com 2001-11-07
## 395 kevin.hyatt@enron.com 2001-11-07
## 396 kevin.hyatt@enron.com 2001-11-07
## 397 kevin.hyatt@enron.com 2001-11-07
## 398 kevin.hyatt@enron.com 2001-11-07
## 399 kevin.hyatt@enron.com 2001-11-07
## 400 kevin.hyatt@enron.com 2001-11-07
## 401 kevin.hyatt@enron.com 2001-11-07
## 402 kevin.hyatt@enron.com 2001-11-07
## 403 kevin.hyatt@enron.com 2001-11-07
## 404 kevin.hyatt@enron.com 2001-11-07
## 405 kevin.hyatt@enron.com 2001-11-07
## 406 kevin.hyatt@enron.com 2001-11-07
## 407 kevin.hyatt@enron.com 2001-11-07
## 408 kevin.hyatt@enron.com 2001-11-07
## 409 kevin.hyatt@enron.com 2001-11-07
## 410 kevin.hyatt@enron.com 2001-11-07
## 411 kevin.hyatt@enron.com 2001-11-07
## 412 kevin.hyatt@enron.com 2001-11-07
## 413 kevin.hyatt@enron.com 2001-11-07
## 414 kevin.hyatt@enron.com 2001-11-07
## 415 kevin.hyatt@enron.com 2001-11-07
## 416 kevin.hyatt@enron.com 2001-11-07
## 417 kevin.hyatt@enron.com 2001-11-07
## 418 kevin.hyatt@enron.com 2001-11-07
## 419 kevin.hyatt@enron.com 2001-11-07
## 420 kevin.hyatt@enron.com 2001-11-07
## 421 kevin.hyatt@enron.com 2001-11-07
## 422 kevin.hyatt@enron.com 2001-11-07
## 423 kevin.hyatt@enron.com 2001-11-05
## 424 kevin.hyatt@enron.com 2001-11-02
## 425 kevin.hyatt@enron.com 2001-11-02
## 426 kevin.hyatt@enron.com 2001-11-02
## 427 kevin.hyatt@enron.com 2001-11-02
## 428 kevin.hyatt@enron.com 2001-11-02
## 429 kevin.hyatt@enron.com 2001-11-02
## 430 kevin.hyatt@enron.com 2001-11-02
## 431 kevin.hyatt@enron.com 2001-11-02
## 432 kevin.hyatt@enron.com 2001-11-02
## 433 kevin.hyatt@enron.com 2001-11-02
## 434 kevin.hyatt@enron.com 2001-11-02
## 435 kevin.hyatt@enron.com 2001-11-02
## 436 kevin.hyatt@enron.com 2001-11-02
## 437 kevin.hyatt@enron.com 2001-11-02
## 438 kevin.hyatt@enron.com 2001-11-02
## 439 kevin.hyatt@enron.com 2001-11-01
## 440 kevin.hyatt@enron.com 2001-11-01
## 441 kevin.hyatt@enron.com 2001-11-01
## 442 kevin.hyatt@enron.com 2001-11-01
## 443 kevin.hyatt@enron.com 2001-11-01
## 444 kevin.hyatt@enron.com 2001-11-01
## 445 kevin.hyatt@enron.com 2001-11-01
## 446 kevin.hyatt@enron.com 2001-11-01
## 447 kevin.hyatt@enron.com 2001-11-01
## 448 kevin.hyatt@enron.com 2001-11-01
## 449 kevin.hyatt@enron.com 2001-11-01
## 450 kevin.hyatt@enron.com 2001-10-31
## 451 kevin.hyatt@enron.com 2001-10-26
## 452 kevin.hyatt@enron.com 2001-10-26
## 453 kevin.hyatt@enron.com 2001-10-26
## 454 kevin.hyatt@enron.com 2001-10-26
## 455 kevin.hyatt@enron.com 2001-10-26
## 456 kevin.hyatt@enron.com 2001-10-26
## 457 kevin.hyatt@enron.com 2001-10-26
## 458 kevin.hyatt@enron.com 2001-10-26
## 459 kevin.hyatt@enron.com 2001-10-26
## 460 kevin.hyatt@enron.com 2001-10-26
## 461 kevin.hyatt@enron.com 2001-10-26
## 462 kevin.hyatt@enron.com 2001-10-26
## 463 kevin.hyatt@enron.com 2001-10-26
## 464 kevin.hyatt@enron.com 2001-10-26
## 465 kevin.hyatt@enron.com 2001-10-26
## 466 kevin.hyatt@enron.com 2001-10-26
## 467 kevin.hyatt@enron.com 2001-10-26
## 468 kevin.hyatt@enron.com 2001-10-26
## 469 kevin.hyatt@enron.com 2001-10-26
## 470 kevin.hyatt@enron.com 2001-10-26
## 471 kevin.hyatt@enron.com 2001-10-26
## 472 kevin.hyatt@enron.com 2001-10-25
## 473 kevin.hyatt@enron.com 2001-10-25
## 474 kevin.hyatt@enron.com 2001-10-25
## 475 kevin.hyatt@enron.com 2001-10-25
## 476 kevin.hyatt@enron.com 2001-10-25
## 477 kevin.hyatt@enron.com 2001-10-25
## 478 kevin.hyatt@enron.com 2001-10-25
## 479 kevin.hyatt@enron.com 2001-10-24
## 480 kevin.hyatt@enron.com 2001-10-24
## 481 kevin.hyatt@enron.com 2001-10-24
## 482 kevin.hyatt@enron.com 2001-10-24
## 483 kevin.hyatt@enron.com 2001-10-24
## 484 kevin.hyatt@enron.com 2001-10-24
## 485 kevin.hyatt@enron.com 2001-10-24
## 486 kevin.hyatt@enron.com 2001-10-24
## 487 kevin.hyatt@enron.com 2001-10-24
## 488 kevin.hyatt@enron.com 2001-10-24
## 489 kevin.hyatt@enron.com 2001-10-24
## 490 kevin.hyatt@enron.com 2001-10-24
## 491 kevin.hyatt@enron.com 2001-10-23
## 492 kevin.hyatt@enron.com 2001-10-23
## 493 kevin.hyatt@enron.com 2001-10-23
## 494 kevin.hyatt@enron.com 2001-10-23
## 495 kevin.hyatt@enron.com 2001-10-23
## 496 kevin.hyatt@enron.com 2001-10-23
## 497 kevin.hyatt@enron.com 2001-10-22
## 498 kevin.hyatt@enron.com 2001-10-22
## 499 kevin.hyatt@enron.com 2001-10-22
## 500 kevin.hyatt@enron.com 2001-10-22
## 501 kevin.hyatt@enron.com 2001-10-22
## 502 kevin.hyatt@enron.com 2001-10-22
## 503 kevin.hyatt@enron.com 2001-10-22
## 504 kevin.hyatt@enron.com 2002-03-22
## 505 kevin.hyatt@enron.com 2002-03-22
## 506 kevin.hyatt@enron.com 2002-03-22
## 507 kevin.hyatt@enron.com 2002-03-22
## 508 kevin.hyatt@enron.com 2002-03-22
## 509 kevin.hyatt@enron.com 2002-03-22
## 510 kevin.hyatt@enron.com 2002-03-22
## 511 kevin.hyatt@enron.com 2002-03-22
## 512 kevin.hyatt@enron.com 2002-03-22
## 513 kevin.hyatt@enron.com 2002-03-22
## 514 kevin.hyatt@enron.com 2002-03-22
## 515 kevin.hyatt@enron.com 2002-03-22
## 516 kevin.hyatt@enron.com 2002-03-22
## 517 kevin.hyatt@enron.com 2002-03-22
## 518 kevin.hyatt@enron.com 2002-03-22
## 519 kevin.hyatt@enron.com 2002-03-22
## 520 kevin.hyatt@enron.com 2002-03-18
## 521 kevin.hyatt@enron.com 2002-03-18
## 522 kevin.hyatt@enron.com 2002-03-18
## 523 kevin.hyatt@enron.com 2002-03-18
## 524 kevin.hyatt@enron.com 2002-03-18
## 525 kevin.hyatt@enron.com 2002-03-18
## 526 kevin.hyatt@enron.com 2002-03-15
## 527 kevin.hyatt@enron.com 2002-03-15
## 528 kevin.hyatt@enron.com 2002-03-15
## 529 kevin.hyatt@enron.com 2002-03-15
## 530 kevin.hyatt@enron.com 2002-03-15
## 531 kevin.hyatt@enron.com 2002-03-15
## 532 kevin.hyatt@enron.com 2002-03-15
## 533 kevin.hyatt@enron.com 2002-03-15
## 534 kevin.hyatt@enron.com 2002-03-15
## 535 kevin.hyatt@enron.com 2002-03-15
## 536 kevin.hyatt@enron.com 2002-03-14
## 537 kevin.hyatt@enron.com 2002-03-14
## 538 kevin.hyatt@enron.com 2002-03-14
## 539 kevin.hyatt@enron.com 2002-03-14
## 540 kevin.hyatt@enron.com 2002-03-14
## 541 kevin.hyatt@enron.com 2002-03-14
## 542 kevin.hyatt@enron.com 2002-03-14
## 543 kevin.hyatt@enron.com 2002-03-14
## 544 kevin.hyatt@enron.com 2002-03-08
## 545 kevin.hyatt@enron.com 2002-03-08
## 546 kevin.hyatt@enron.com 2002-03-08
## 547 kevin.hyatt@enron.com 2002-03-08
## 548 kevin.hyatt@enron.com 2002-03-08
## 549 kevin.hyatt@enron.com 2002-03-08
## 550 kevin.hyatt@enron.com 2002-03-08
## 551 kevin.hyatt@enron.com 2002-03-08
## 552 kevin.hyatt@enron.com 2002-03-08
## 553 kevin.hyatt@enron.com 2002-03-08
## 554 kevin.hyatt@enron.com 2002-03-08
## 555 kevin.hyatt@enron.com 2002-03-08
## 556 kevin.hyatt@enron.com 2002-03-08
## 557 kevin.hyatt@enron.com 2002-03-08
## 558 kevin.hyatt@enron.com 2002-03-08
## 559 kevin.hyatt@enron.com 2002-03-08
## 560 kevin.hyatt@enron.com 2002-03-08
## 561 kevin.hyatt@enron.com 2002-03-08
## 562 kevin.hyatt@enron.com 2002-03-08
## 563 kevin.hyatt@enron.com 2002-03-08
## 564 kevin.hyatt@enron.com 2002-03-08
## 565 kevin.hyatt@enron.com 2002-03-08
## 566 kevin.hyatt@enron.com 2002-03-08
## 567 kevin.hyatt@enron.com 2002-03-08
## 568 kevin.hyatt@enron.com 2002-03-08
## 569 kevin.hyatt@enron.com 2002-03-07
## 570 kevin.hyatt@enron.com 2002-03-07
## 571 kevin.hyatt@enron.com 2002-03-07
## 572 kevin.hyatt@enron.com 2002-03-07
## 573 kevin.hyatt@enron.com 2002-03-07
## 574 kevin.hyatt@enron.com 2002-03-06
## 575 kevin.hyatt@enron.com 2002-03-06
## 576 kevin.hyatt@enron.com 2002-03-05
## 577 kevin.hyatt@enron.com 2002-03-05
## 578 kevin.hyatt@enron.com 2002-03-05
## 579 kevin.hyatt@enron.com 2002-03-05
## 580 kevin.hyatt@enron.com 2002-03-05
## 581 kevin.hyatt@enron.com 2002-03-05
## 582 kevin.hyatt@enron.com 2002-03-05
## 583 kevin.hyatt@enron.com 2002-03-04
## 584 kevin.hyatt@enron.com 2002-03-04
## 585 kevin.hyatt@enron.com 2002-03-04
## 586 kevin.hyatt@enron.com 2002-03-04
## 587 kevin.hyatt@enron.com 2002-03-04
## 588 kevin.hyatt@enron.com 2002-03-04
## 589 kevin.hyatt@enron.com 2002-03-04
## 590 kevin.hyatt@enron.com 2002-03-04
## 591 kevin.hyatt@enron.com 2002-03-04
## 592 kevin.hyatt@enron.com 2002-03-04
## 593 kevin.hyatt@enron.com 2002-03-04
## 594 kevin.hyatt@enron.com 2002-03-04
## 595 kevin.hyatt@enron.com 2002-03-04
## 596 kevin.hyatt@enron.com 2002-03-01
## 597 kevin.hyatt@enron.com 2002-03-01
## 598 kevin.hyatt@enron.com 2002-03-01
## 599 kevin.hyatt@enron.com 2002-03-01
## 600 kevin.hyatt@enron.com 2002-03-01
## 601 kevin.hyatt@enron.com 2002-03-01
## 602 kevin.hyatt@enron.com 2002-03-01
## 603 kevin.hyatt@enron.com 2002-03-01
## 604 kevin.hyatt@enron.com 2002-03-01
## 605 kevin.hyatt@enron.com 2002-03-01
## 606 kevin.hyatt@enron.com 2002-03-01
## 607 kevin.hyatt@enron.com 2002-03-01
## 608 kevin.hyatt@enron.com 2002-03-01
## 609 kevin.hyatt@enron.com 2002-03-01
## 610 kevin.hyatt@enron.com 2002-03-01
## 611 kevin.hyatt@enron.com 2002-03-01
## 612 kevin.hyatt@enron.com 2002-03-01
## 613 kevin.hyatt@enron.com 2002-03-01
## 614 kevin.hyatt@enron.com 2002-03-01
## 615 kevin.hyatt@enron.com 2002-03-01
## 616 kevin.hyatt@enron.com 2002-03-01
## 617 kevin.hyatt@enron.com 2002-03-01
## 618 kevin.hyatt@enron.com 2002-03-01
## 619 kevin.hyatt@enron.com 2002-02-28
## 620 kevin.hyatt@enron.com 2002-02-28
## 621 kevin.hyatt@enron.com 2002-02-28
## 622 kevin.hyatt@enron.com 2002-02-28
## 623 kevin.hyatt@enron.com 2002-02-28
## 624 kevin.hyatt@enron.com 2002-02-28
## 625 kevin.hyatt@enron.com 2002-02-27
## 626 kevin.hyatt@enron.com 2002-02-27
## 627 kevin.hyatt@enron.com 2002-02-27
## 628 kevin.hyatt@enron.com 2002-02-27
## 629 kevin.hyatt@enron.com 2002-02-27
## 630 kevin.hyatt@enron.com 2002-02-27
## 631 kevin.hyatt@enron.com 2002-02-27
## 632 kevin.hyatt@enron.com 2002-02-27
## 633 kevin.hyatt@enron.com 2002-02-27
## 634 kevin.hyatt@enron.com 2002-02-27
## 635 kevin.hyatt@enron.com 2002-02-27
## 636 kevin.hyatt@enron.com 2002-02-27
## 637 kevin.hyatt@enron.com 2002-02-27
## 638 kevin.hyatt@enron.com 2002-02-27
## 639 kevin.hyatt@enron.com 2002-02-27
## 640 kevin.hyatt@enron.com 2002-02-26
## 641 kevin.hyatt@enron.com 2002-02-26
## 642 kevin.hyatt@enron.com 2002-02-26
## 643 kevin.hyatt@enron.com 2002-02-26
## 644 kevin.hyatt@enron.com 2002-02-26
## 645 kevin.hyatt@enron.com 2002-02-26
## 646 kevin.hyatt@enron.com 2002-02-26
## 647 kevin.hyatt@enron.com 2002-02-26
## 648 kevin.hyatt@enron.com 2002-02-26
## 649 kevin.hyatt@enron.com 2002-02-26
## 650 kevin.hyatt@enron.com 2002-02-26
## 651 kevin.hyatt@enron.com 2002-02-25
## 652 kevin.hyatt@enron.com 2002-02-25
## 653 kevin.hyatt@enron.com 2002-02-25
## 654 kevin.hyatt@enron.com 2002-02-25
## 655 kevin.hyatt@enron.com 2002-02-25
## 656 kevin.hyatt@enron.com 2002-02-25
## 657 kevin.hyatt@enron.com 2002-02-21
## 658 kevin.hyatt@enron.com 2002-02-21
## 659 kevin.hyatt@enron.com 2002-02-21
## 660 kevin.hyatt@enron.com 2002-02-21
## 661 kevin.hyatt@enron.com 2002-02-21
## 662 kevin.hyatt@enron.com 2002-02-21
## 663 kevin.hyatt@enron.com 2002-02-21
## 664 kevin.hyatt@enron.com 2002-02-21
## 665 kevin.hyatt@enron.com 2002-02-21
## 666 kevin.hyatt@enron.com 2002-02-21
## 667 kevin.hyatt@enron.com 2002-02-21
## 668 kevin.hyatt@enron.com 2002-02-20
## 669 kevin.hyatt@enron.com 2002-02-20
## 670 kevin.hyatt@enron.com 2002-02-20
## 671 kevin.hyatt@enron.com 2002-02-20
## 672 kevin.hyatt@enron.com 2002-02-20
## 673 kevin.hyatt@enron.com 2002-02-20
## 674 kevin.hyatt@enron.com 2002-02-20
## 675 kevin.hyatt@enron.com 2002-02-20
## 676 kevin.hyatt@enron.com 2002-02-20
## 677 kevin.hyatt@enron.com 2002-02-20
## 678 kevin.hyatt@enron.com 2002-02-20
## 679 kevin.hyatt@enron.com 2002-02-19
## 680 kevin.hyatt@enron.com 2002-02-19
## 681 kevin.hyatt@enron.com 2002-02-19
## 682 kevin.hyatt@enron.com 2002-02-19
## 683 kevin.hyatt@enron.com 2002-02-19
## 684 kevin.hyatt@enron.com 2002-02-19
## 685 kevin.hyatt@enron.com 2002-02-19
## 686 kevin.hyatt@enron.com 2002-02-19
## 687 kevin.hyatt@enron.com 2002-02-19
## 688 kevin.hyatt@enron.com 2002-02-19
## 689 kevin.hyatt@enron.com 2002-02-19
## 690 kevin.hyatt@enron.com 2002-02-19
## 691 kevin.hyatt@enron.com 2002-02-19
## 692 kevin.hyatt@enron.com 2002-02-19
## 693 kevin.hyatt@enron.com 2002-02-19
## 694 kevin.hyatt@enron.com 2002-02-19
## 695 kevin.hyatt@enron.com 2002-02-19
## 696 kevin.hyatt@enron.com 2002-02-19
## 697 kevin.hyatt@enron.com 2002-02-19
## 698 kevin.hyatt@enron.com 2002-02-19
## 699 kevin.hyatt@enron.com 2002-02-19
## 700 kevin.hyatt@enron.com 2002-02-19
## 701 kevin.hyatt@enron.com 2002-02-19
## 702 kevin.hyatt@enron.com 2002-02-15
## 703 kevin.hyatt@enron.com 2002-02-15
## 704 kevin.hyatt@enron.com 2002-02-15
## 705 kevin.hyatt@enron.com 2002-02-15
## 706 kevin.hyatt@enron.com 2002-02-15
## 707 kevin.hyatt@enron.com 2002-02-15
## 708 kevin.hyatt@enron.com 2002-02-15
## 709 kevin.hyatt@enron.com 2002-02-15
## 710 kevin.hyatt@enron.com 2002-02-15
## 711 kevin.hyatt@enron.com 2002-02-15
## 712 kevin.hyatt@enron.com 2002-02-14
## 713 kevin.hyatt@enron.com 2002-02-13
## 714 kevin.hyatt@enron.com 2002-02-13
## 715 kevin.hyatt@enron.com 2002-02-13
## 716 kevin.hyatt@enron.com 2002-02-13
## 717 kevin.hyatt@enron.com 2002-02-12
## 718 kevin.hyatt@enron.com 2002-02-12
## 719 kevin.hyatt@enron.com 2002-02-12
## 720 kevin.hyatt@enron.com 2002-02-12
## 721 kevin.hyatt@enron.com 2002-02-11
## 722 kevin.hyatt@enron.com 2002-02-11
## 723 kevin.hyatt@enron.com 2002-02-11
## 724 kevin.hyatt@enron.com 2002-02-11
## 725 kevin.hyatt@enron.com 2002-02-11
## 726 kevin.hyatt@enron.com 2002-02-11
## 727 kevin.hyatt@enron.com 2002-02-11
## 728 kevin.hyatt@enron.com 2002-02-11
## 729 kevin.hyatt@enron.com 2002-02-11
## 730 kevin.hyatt@enron.com 2002-02-11
## 731 kevin.hyatt@enron.com 2002-02-11
## 732 kevin.hyatt@enron.com 2002-02-11
## 733 kevin.hyatt@enron.com 2002-02-11
## 734 kevin.hyatt@enron.com 2002-02-11
## 735 kevin.hyatt@enron.com 2002-02-11
## 736 kevin.hyatt@enron.com 2002-02-11
## 737 kevin.hyatt@enron.com 2002-02-11
## 738 kevin.hyatt@enron.com 2002-02-11
## 739 kevin.hyatt@enron.com 2002-02-11
## 740 kevin.hyatt@enron.com 2002-02-11
## 741 kevin.hyatt@enron.com 2002-02-11
## 742 kevin.hyatt@enron.com 2002-02-11
## 743 kevin.hyatt@enron.com 2002-02-11
## 744 kevin.hyatt@enron.com 2002-02-11
## 745 kevin.hyatt@enron.com 2002-02-11
## 746 kevin.hyatt@enron.com 2002-02-11
## 747 kevin.hyatt@enron.com 2002-02-11
## 748 kevin.hyatt@enron.com 2002-02-11
## 749 kevin.hyatt@enron.com 2002-02-11
## 750 kevin.hyatt@enron.com 2002-02-11
## 751 kevin.hyatt@enron.com 2002-02-11
## 752 kevin.hyatt@enron.com 2002-02-11
## 753 kevin.hyatt@enron.com 2002-02-11
## 754 kevin.hyatt@enron.com 2002-02-11
## 755 kevin.hyatt@enron.com 2002-02-11
## 756 kevin.hyatt@enron.com 2002-02-11
## 757 kevin.hyatt@enron.com 2002-02-11
## 758 kevin.hyatt@enron.com 2002-02-11
## 759 kevin.hyatt@enron.com 2002-02-11
## 760 kevin.hyatt@enron.com 2002-02-11
## 761 kevin.hyatt@enron.com 2002-02-11
## 762 kevin.hyatt@enron.com 2002-02-08
## 763 kevin.hyatt@enron.com 2002-02-08
## 764 kevin.hyatt@enron.com 2002-02-08
## 765 kevin.hyatt@enron.com 2002-02-08
## 766 kevin.hyatt@enron.com 2002-02-08
## 767 kevin.hyatt@enron.com 2002-02-08
## 768 kevin.hyatt@enron.com 2002-02-08
## 769 kevin.hyatt@enron.com 2002-02-08
## 770 kevin.hyatt@enron.com 2002-02-06
## 771 kevin.hyatt@enron.com 2002-02-05
## 772 kevin.hyatt@enron.com 2002-02-05
## 773 kevin.hyatt@enron.com 2002-02-05
## 774 kevin.hyatt@enron.com 2002-02-05
## 775 kevin.hyatt@enron.com 2002-02-05
## 776 kevin.hyatt@enron.com 2002-02-05
## 777 kevin.hyatt@enron.com 2002-02-05
## 778 kevin.hyatt@enron.com 2002-02-05
## 779 kevin.hyatt@enron.com 2002-02-05
## 780 kevin.hyatt@enron.com 2002-02-05
## 781 kevin.hyatt@enron.com 2002-02-05
## 782 kevin.hyatt@enron.com 2002-02-05
## 783 kevin.hyatt@enron.com 2002-02-05
## 784 kevin.hyatt@enron.com 2002-02-05
## 785 kevin.hyatt@enron.com 2002-02-05
## 786 kevin.hyatt@enron.com 2002-02-04
## 787 kevin.hyatt@enron.com 2002-02-04
## 788 kevin.hyatt@enron.com 2002-02-04
## 789 kevin.hyatt@enron.com 2002-02-04
## 790 kevin.hyatt@enron.com 2002-02-01
## 791 kevin.hyatt@enron.com 2002-02-01
## 792 kevin.hyatt@enron.com 2002-01-31
## 793 kevin.hyatt@enron.com 2002-01-31
## 794 kevin.hyatt@enron.com 2002-01-31
## 795 kevin.hyatt@enron.com 2002-01-31
## 796 kevin.hyatt@enron.com 2002-01-31
## 797 kevin.hyatt@enron.com 2002-01-31
## 798 kevin.hyatt@enron.com 2002-01-31
## 799 kevin.hyatt@enron.com 2002-01-31
## 800 kevin.hyatt@enron.com 2002-01-31
## 801 kevin.hyatt@enron.com 2002-01-31
## 802 kevin.hyatt@enron.com 2002-01-31
## 803 kevin.hyatt@enron.com 2002-01-29
## 804 kevin.hyatt@enron.com 2002-01-25
## 805 kevin.hyatt@enron.com 2002-01-25
## 806 kevin.hyatt@enron.com 2002-01-24
## 807 kevin.hyatt@enron.com 2002-01-24
## 808 kevin.hyatt@enron.com 2002-01-24
## 809 kevin.hyatt@enron.com 2002-01-24
## 810 kevin.hyatt@enron.com 2002-01-24
## 811 kevin.hyatt@enron.com 2002-01-24
## 812 kevin.hyatt@enron.com 2002-01-23
## 813 kevin.hyatt@enron.com 2002-01-23
## 814 kevin.hyatt@enron.com 2002-01-22
## 815 kevin.hyatt@enron.com 2002-01-22
## 816 kevin.hyatt@enron.com 2002-01-22
## 817 kevin.hyatt@enron.com 2002-01-22
## 818 kevin.hyatt@enron.com 2002-01-22
## 819 kevin.hyatt@enron.com 2002-01-17
## 820 kevin.hyatt@enron.com 2002-01-17
## 821 kevin.hyatt@enron.com 2002-01-17
## 822 kevin.hyatt@enron.com 2002-01-17
## 823 kevin.hyatt@enron.com 2002-01-16
## 824 kevin.hyatt@enron.com 2002-01-16
## 825 kevin.hyatt@enron.com 2002-01-16
## 826 kevin.hyatt@enron.com 2002-01-16
## 827 kevin.hyatt@enron.com 2002-01-16
## 828 kevin.hyatt@enron.com 2002-01-16
## 829 kevin.hyatt@enron.com 2002-01-16
## 830 kevin.hyatt@enron.com 2002-01-16
## 831 kevin.hyatt@enron.com 2002-01-16
## 832 kevin.hyatt@enron.com 2002-01-16
## 833 kevin.hyatt@enron.com 2002-01-16
## 834 kevin.hyatt@enron.com 2002-01-16
## 835 kevin.hyatt@enron.com 2002-01-16
## 836 kevin.hyatt@enron.com 2002-01-16
## 837 kevin.hyatt@enron.com 2002-01-16
## 838 kevin.hyatt@enron.com 2002-01-16
## 839 kevin.hyatt@enron.com 2002-01-16
## 840 kevin.hyatt@enron.com 2002-01-16
## 841 kevin.hyatt@enron.com 2002-01-16
## 842 kevin.hyatt@enron.com 2002-01-16
## 843 kevin.hyatt@enron.com 2002-01-15
## 844 kevin.hyatt@enron.com 2002-01-15
## 845 kevin.hyatt@enron.com 2002-01-15
## 846 kevin.hyatt@enron.com 2002-01-14
## 847 kevin.hyatt@enron.com 2002-01-14
## 848 kevin.hyatt@enron.com 2002-01-14
## 849 kevin.hyatt@enron.com 2002-01-14
## 850 kevin.hyatt@enron.com 2002-01-14
## 851 kevin.hyatt@enron.com 2002-01-14
## 852 kevin.hyatt@enron.com 2002-01-14
## 853 kevin.hyatt@enron.com 2002-01-14
## 854 kevin.hyatt@enron.com 2002-01-14
## 855 kevin.hyatt@enron.com 2002-01-14
## 856 kevin.hyatt@enron.com 2002-01-14
## 857 kevin.hyatt@enron.com 2002-01-14
## 858 kevin.hyatt@enron.com 2002-01-14
## 859 kevin.hyatt@enron.com 2002-01-14
## 860 kevin.hyatt@enron.com 2002-01-14
## 861 kevin.hyatt@enron.com 2002-01-14
## 862 kevin.hyatt@enron.com 2002-01-14
## 863 kevin.hyatt@enron.com 2002-01-14
## 864 kevin.hyatt@enron.com 2002-01-14
## 865 kevin.hyatt@enron.com 2002-01-14
## 866 kevin.hyatt@enron.com 2002-01-14
## 867 kevin.hyatt@enron.com 2002-01-14
## 868 kevin.hyatt@enron.com 2002-01-14
## 869 kevin.hyatt@enron.com 2002-01-14
## 870 kevin.hyatt@enron.com 2002-01-14
## 871 kevin.hyatt@enron.com 2002-01-14
## 872 kevin.hyatt@enron.com 2002-01-14
## 873 kevin.hyatt@enron.com 2002-01-14
## 874 kevin.hyatt@enron.com 2002-01-14
## 875 kevin.hyatt@enron.com 2002-01-14
## 876 kevin.hyatt@enron.com 2002-01-14
## 877 kevin.hyatt@enron.com 2002-01-14
## 878 kevin.hyatt@enron.com 2002-01-14
## 879 kevin.hyatt@enron.com 2002-01-14
## 880 kevin.hyatt@enron.com 2002-01-14
## 881 kevin.hyatt@enron.com 2002-01-11
## 882 kevin.hyatt@enron.com 2002-01-11
## 883 kevin.hyatt@enron.com 2002-01-11
## 884 kevin.hyatt@enron.com 2002-01-11
## 885 kevin.hyatt@enron.com 2002-01-11
## 886 kevin.hyatt@enron.com 2001-12-14
## 887 kevin.hyatt@enron.com 2001-12-14
## 888 kevin.hyatt@enron.com 2001-12-12
## 889 kevin.hyatt@enron.com 2001-12-12
## 890 kevin.hyatt@enron.com 2001-12-12
## 891 kevin.hyatt@enron.com 2001-12-12
## 892 kevin.hyatt@enron.com 2001-12-12
## 893 kevin.hyatt@enron.com 2001-12-11
## 894 kevin.hyatt@enron.com 2001-12-11
## 895 kevin.hyatt@enron.com 2001-12-11
## 896 kevin.hyatt@enron.com 2001-12-10
## 897 kevin.hyatt@enron.com 2001-12-10
## 898 kevin.hyatt@enron.com 2001-12-10
## 899 kevin.hyatt@enron.com 2001-12-10
## 900 kevin.hyatt@enron.com 2001-12-10
## 901 kevin.hyatt@enron.com 2001-10-29
## 902 kevin.hyatt@enron.com 2001-10-29
## 903 kevin.hyatt@enron.com 2001-10-29
## 904 kevin.hyatt@enron.com 2001-10-29
## 905 kevin.hyatt@enron.com 2001-10-29
## 906 kevin.hyatt@enron.com 2001-10-29
## 907 kevin.hyatt@enron.com 2001-10-29
## 908 kevin.hyatt@enron.com 2001-10-29
## 909 kevin.hyatt@enron.com 2001-10-29
## 910 kevin.hyatt@enron.com 2001-10-29
## 911 kevin.hyatt@enron.com 2001-10-29
## 912 kevin.hyatt@enron.com 2001-10-29
## 913 kevin.hyatt@enron.com 2001-10-29
## 914 kevin.hyatt@enron.com 2001-10-29
## 915 kevin.hyatt@enron.com 2001-10-29
## 916 kevin.hyatt@enron.com 2001-10-29
## 917 kevin.hyatt@enron.com 2001-10-29
## 918 kevin.hyatt@enron.com 2001-10-29
## 919 kevin.hyatt@enron.com 2001-10-29
## 920 kevin.hyatt@enron.com 2001-10-29
## 921 kevin.hyatt@enron.com 2001-10-30
## 922 kevin.hyatt@enron.com 2001-10-30
## 923 kevin.hyatt@enron.com 2001-10-30
## 924 kevin.hyatt@enron.com 2001-10-30
## 925 kevin.hyatt@enron.com 2001-10-31
## 926 kevin.hyatt@enron.com 2001-10-31
## 927 kevin.hyatt@enron.com 2001-10-31
## 928 larry.f.campbell@enron.com 2001-08-31
## 929 larry.f.campbell@enron.com 2001-08-31
## 930 larry.f.campbell@enron.com 2001-08-31
## 931 larry.f.campbell@enron.com 2001-08-31
## 932 larry.f.campbell@enron.com 2001-08-31
## 933 larry.f.campbell@enron.com 2001-08-31
## 934 larry.f.campbell@enron.com 2001-08-31
## 935 larry.f.campbell@enron.com 2001-08-31
## 936 larry.f.campbell@enron.com 2001-08-31
## 937 larry.f.campbell@enron.com 2001-08-31
## 938 larry.f.campbell@enron.com 2001-08-31
## 939 larry.f.campbell@enron.com 2001-08-31
## 940 larry.f.campbell@enron.com 2001-08-31
## 941 larry.f.campbell@enron.com 2001-08-31
## 942 larry.f.campbell@enron.com 2001-08-31
## 943 larry.f.campbell@enron.com 2001-08-31
## 944 larry.f.campbell@enron.com 2001-08-31
## 945 larry.f.campbell@enron.com 2001-08-31
## 946 larry.f.campbell@enron.com 2001-08-31
## 947 michelle.lokay@enron.com 2002-03-01
## 948 steven.harris@enron.com 2002-02-14
## 949 steven.harris@enron.com 2002-02-14
## 950 steven.harris@enron.com 2002-02-15
## 951 steven.harris@enron.com 2002-02-15
## 952 kevin.hyatt@enron.com 2002-01-16
## 953 kevin.hyatt@enron.com 2002-01-16
## 954 kevin.hyatt@enron.com 2002-01-16
## 955 kevin.hyatt@enron.com 2002-01-24
## 956 kevin.hyatt@enron.com 2002-01-22
## 957 kevin.hyatt@enron.com 2002-01-22
## 958 kevin.hyatt@enron.com 2002-01-22
## 959 kevin.hyatt@enron.com 2002-01-16
## 960 kevin.hyatt@enron.com 2002-01-16
## 961 kevin.hyatt@enron.com 2002-01-16
## 962 kevin.hyatt@enron.com 2002-01-16
## 963 kevin.hyatt@enron.com 2002-01-16
## 964 kevin.hyatt@enron.com 2002-01-16
## 965 kevin.hyatt@enron.com 2002-01-16
## 966 kevin.hyatt@enron.com 2002-01-16
## 967 kevin.hyatt@enron.com 2002-01-16
## 968 kevin.hyatt@enron.com 2002-01-16
## 969 kevin.hyatt@enron.com 2002-01-16
## 970 kevin.hyatt@enron.com 2002-01-16
## 971 kevin.hyatt@enron.com 2002-01-16
## 972 kevin.hyatt@enron.com 2002-01-15
## 973 steven.harris@enron.com 2002-01-14
## 974 steven.harris@enron.com 2002-01-14
## 975 steven.harris@enron.com 2002-01-14
## 976 steven.harris@enron.com 2002-01-14
## 977 steven.harris@enron.com 2002-01-14
## 978 kevin.hyatt@enron.com 2001-12-18
## 979 kevin.hyatt@enron.com 2002-01-07
## 980 kevin.hyatt@enron.com 2002-01-07
## 981 kevin.hyatt@enron.com 2002-01-07
## 982 kevin.hyatt@enron.com 2002-01-07
## 983 kevin.hyatt@enron.com 2002-01-07
## 984 kevin.hyatt@enron.com 2002-01-07
## 985 kevin.hyatt@enron.com 2002-01-07
## 986 kevin.hyatt@enron.com 2002-01-07
## 987 kevin.hyatt@enron.com 2002-01-07
## 988 kevin.hyatt@enron.com 2002-01-07
## 989 kevin.hyatt@enron.com 2002-01-07
## 990 kevin.hyatt@enron.com 2002-01-07
## 991 kevin.hyatt@enron.com 2002-01-07
## 992 kevin.hyatt@enron.com 2002-01-07
## 993 kevin.hyatt@enron.com 2002-01-07
## 994 kevin.hyatt@enron.com 2002-01-08
## 995 kevin.hyatt@enron.com 2002-01-08
## 996 kevin.hyatt@enron.com 2002-01-08
## 997 kevin.hyatt@enron.com 2002-01-11
## 998 kevin.hyatt@enron.com 2002-01-11
## 999 kevin.hyatt@enron.com 2002-01-11
## 1000 kevin.hyatt@enron.com 2002-01-11
## 1001 kevin.hyatt@enron.com 2002-01-11
## 1002 kevin.hyatt@enron.com 2002-01-11
## 1003 kevin.hyatt@enron.com 2002-01-11
## 1004 kevin.hyatt@enron.com 2002-01-11
## 1005 kevin.hyatt@enron.com 2002-01-11
## 1006 kevin.hyatt@enron.com 2002-01-11
## 1007 kevin.hyatt@enron.com 2002-01-11
## 1008 kevin.hyatt@enron.com 2002-01-11
## 1009 kevin.hyatt@enron.com 2001-12-19
## 1010 kevin.hyatt@enron.com 2002-01-03
## 1011 kevin.hyatt@enron.com 2001-06-06
## 1012 kevin.hyatt@enron.com 2001-04-08
## 1013 kevin.hyatt@enron.com 2001-04-08
## 1014 kevin.hyatt@enron.com 2001-04-08
## 1015 kevin.hyatt@enron.com 2001-04-08
## 1016 kevin.hyatt@enron.com 2001-04-08
## 1017 kevin.hyatt@enron.com 2001-04-08
## 1018 kevin.hyatt@enron.com 2001-04-08
## 1019 kevin.hyatt@enron.com 2001-04-08
## 1020 kevin.hyatt@enron.com 2001-04-08
## 1021 kevin.hyatt@enron.com 2001-04-08
## 1022 kevin.hyatt@enron.com 2001-04-08
## 1023 kevin.hyatt@enron.com 2001-04-08
## 1024 kevin.hyatt@enron.com 2001-04-08
## 1025 kevin.hyatt@enron.com 2001-04-08
## 1026 kevin.hyatt@enron.com 2001-04-08
## 1027 kevin.hyatt@enron.com 2001-04-08
## 1028 kevin.hyatt@enron.com 2001-04-08
## 1029 kevin.hyatt@enron.com 2001-04-08
## 1030 kevin.hyatt@enron.com 2001-04-08
## 1031 kevin.hyatt@enron.com 2001-09-06
## 1032 kevin.hyatt@enron.com 2001-07-27
## 1033 kevin.hyatt@enron.com 2001-04-08
## 1034 kevin.hyatt@enron.com 2001-03-20
## 1035 shelley.corman@enron.com 2001-02-26
## 1036 shelley.corman@enron.com 2001-02-26
## 1037 shelley.corman@enron.com 2001-02-26
## 1038 shelley.corman@enron.com 2001-02-26
## 1039 kevin.hyatt@enron.com 2001-06-04
## 1040 kevin.hyatt@enron.com 2001-08-10
## 1041 diana.scholtes@enron.com 2000-12-04
## 1042 diana.scholtes@enron.com 2000-12-04
## 1043 diana.scholtes@enron.com 2000-12-04
## 1044 diana.scholtes@enron.com 2000-12-04
## 1045 diana.scholtes@enron.com 2000-12-04
## 1046 kevin.m.presto@enron.com 2001-01-23
## 1047 kevin.m.presto@enron.com 2001-01-23
## 1048 kevin.m.presto@enron.com 2001-01-23
## 1049 kevin.m.presto@enron.com 2001-01-23
## 1050 kevin.m.presto@enron.com 2001-01-23
## 1051 kevin.m.presto@enron.com 2001-01-23
## 1052 kevin.m.presto@enron.com 2001-01-23
## 1053 kevin.m.presto@enron.com 2001-01-23
## 1054 kevin.m.presto@enron.com 2001-01-23
## 1055 kevin.m.presto@enron.com 2001-01-23
## 1056 kevin.m.presto@enron.com 2001-01-23
## 1057 cara.semperger@enron.com 2001-01-23
## 1058 cara.semperger@enron.com 2001-01-23
## 1059 cara.semperger@enron.com 2001-01-23
## 1060 cara.semperger@enron.com 2001-01-23
## 1061 cara.semperger@enron.com 2001-01-23
## 1062 cara.semperger@enron.com 2001-01-25
## 1063 cara.semperger@enron.com 2001-01-25
## 1064 cara.semperger@enron.com 2001-01-25
## 1065 cara.semperger@enron.com 2001-01-25
## 1066 cara.semperger@enron.com 2001-01-25
## 1067 cara.semperger@enron.com 2001-01-25
## 1068 cara.semperger@enron.com 2001-01-25
## 1069 cara.semperger@enron.com 2001-01-25
## 1070 cara.semperger@enron.com 2001-01-25
## 1071 cara.semperger@enron.com 2001-01-25
## 1072 cara.semperger@enron.com 2001-01-25
## 1073 cara.semperger@enron.com 2001-01-25
## 1074 cara.semperger@enron.com 2001-01-25
## 1075 cara.semperger@enron.com 2001-01-25
## 1076 cara.semperger@enron.com 2001-01-25
## 1077 cara.semperger@enron.com 2001-01-25
## 1078 cara.semperger@enron.com 2001-01-25
## 1079 cara.semperger@enron.com 2001-01-25
## 1080 kevin.m.presto@enron.com 2001-02-20
## 1081 kevin.m.presto@enron.com 2001-02-20
## 1082 kevin.m.presto@enron.com 2001-02-20
## 1083 kevin.m.presto@enron.com 2001-02-20
## 1084 kevin.m.presto@enron.com 2001-02-20
## 1085 kevin.m.presto@enron.com 2001-02-20
## 1086 kevin.m.presto@enron.com 2001-02-20
## 1087 kevin.m.presto@enron.com 2001-02-20
## 1088 kevin.m.presto@enron.com 2001-02-20
## 1089 kevin.m.presto@enron.com 2001-02-20
## 1090 kevin.m.presto@enron.com 2001-02-20
## 1091 kevin.m.presto@enron.com 2001-02-20
## 1092 kevin.m.presto@enron.com 2001-02-20
## 1093 kevin.m.presto@enron.com 2001-02-20
## 1094 kevin.m.presto@enron.com 2001-02-20
## 1095 diana.scholtes@enron.com 2001-02-22
## 1096 james.d.steffes@enron.com 2001-03-01
## 1097 james.d.steffes@enron.com 2001-03-01
## 1098 james.d.steffes@enron.com 2001-03-01
## 1099 james.d.steffes@enron.com 2001-03-01
## 1100 james.d.steffes@enron.com 2001-03-01
## 1101 james.d.steffes@enron.com 2001-03-01
## 1102 james.d.steffes@enron.com 2001-03-01
## 1103 james.d.steffes@enron.com 2001-03-01
## 1104 james.d.steffes@enron.com 2001-03-01
## 1105 james.d.steffes@enron.com 2001-03-01
## 1106 diana.scholtes@enron.com 2001-03-05
## 1107 james.d.steffes@enron.com 2001-03-06
## 1108 james.d.steffes@enron.com 2001-03-06
## 1109 james.d.steffes@enron.com 2001-03-06
## 1110 james.d.steffes@enron.com 2001-03-06
## 1111 james.d.steffes@enron.com 2001-03-06
## 1112 james.d.steffes@enron.com 2001-03-06
## 1113 james.d.steffes@enron.com 2001-03-06
## 1114 james.d.steffes@enron.com 2001-03-06
## 1115 james.d.steffes@enron.com 2001-03-06
## 1116 james.d.steffes@enron.com 2001-03-07
## 1117 james.d.steffes@enron.com 2001-03-07
## 1118 james.d.steffes@enron.com 2001-03-07
## 1119 james.d.steffes@enron.com 2001-03-07
## 1120 james.d.steffes@enron.com 2001-03-07
## 1121 james.d.steffes@enron.com 2001-03-07
## 1122 james.d.steffes@enron.com 2001-03-07
## 1123 james.d.steffes@enron.com 2001-03-07
## 1124 james.d.steffes@enron.com 2001-03-07
## 1125 james.d.steffes@enron.com 2001-03-07
## 1126 james.d.steffes@enron.com 2001-03-07
## 1127 james.d.steffes@enron.com 2001-03-07
## 1128 james.d.steffes@enron.com 2001-03-07
## 1129 james.d.steffes@enron.com 2001-03-07
## 1130 james.d.steffes@enron.com 2001-03-07
## 1131 james.d.steffes@enron.com 2001-03-07
## 1132 james.d.steffes@enron.com 2001-03-07
## 1133 james.d.steffes@enron.com 2001-03-07
## 1134 james.d.steffes@enron.com 2001-03-07
## 1135 james.d.steffes@enron.com 2001-03-07
## 1136 cara.semperger@enron.com 2001-03-12
## 1137 diana.scholtes@enron.com 2001-03-12
## 1138 james.d.steffes@enron.com 2001-03-12
## 1139 james.d.steffes@enron.com 2001-03-12
## 1140 james.d.steffes@enron.com 2001-03-12
## 1141 james.d.steffes@enron.com 2001-03-12
## 1142 james.d.steffes@enron.com 2001-03-12
## 1143 james.d.steffes@enron.com 2001-03-12
## 1144 james.d.steffes@enron.com 2001-03-12
## 1145 james.d.steffes@enron.com 2001-03-12
## 1146 james.d.steffes@enron.com 2001-03-12
## 1147 james.d.steffes@enron.com 2001-03-12
## 1148 james.d.steffes@enron.com 2001-03-12
## 1149 james.d.steffes@enron.com 2001-03-12
## 1150 james.d.steffes@enron.com 2001-03-12
## 1151 cara.semperger@enron.com 2001-03-13
## 1152 james.d.steffes@enron.com 2001-03-14
## 1153 james.d.steffes@enron.com 2001-03-14
## 1154 james.d.steffes@enron.com 2001-03-14
## 1155 james.d.steffes@enron.com 2001-03-14
## 1156 james.d.steffes@enron.com 2001-03-14
## 1157 james.d.steffes@enron.com 2001-03-14
## 1158 james.d.steffes@enron.com 2001-03-14
## 1159 james.d.steffes@enron.com 2001-03-14
## 1160 james.d.steffes@enron.com 2001-03-14
## 1161 james.d.steffes@enron.com 2001-03-14
## 1162 james.d.steffes@enron.com 2001-03-14
## 1163 james.d.steffes@enron.com 2001-03-15
## 1164 james.d.steffes@enron.com 2001-03-15
## 1165 james.d.steffes@enron.com 2001-03-15
## 1166 james.d.steffes@enron.com 2001-03-15
## 1167 james.d.steffes@enron.com 2001-03-15
## 1168 james.d.steffes@enron.com 2001-03-15
## 1169 james.d.steffes@enron.com 2001-03-15
## 1170 james.d.steffes@enron.com 2001-03-15
## 1171 james.d.steffes@enron.com 2001-03-15
## 1172 james.d.steffes@enron.com 2001-03-15
## 1173 jeff.dasovich@enron.com 2001-03-19
## 1174 jeff.dasovich@enron.com 2001-03-19
## 1175 jeff.dasovich@enron.com 2001-03-19
## 1176 jeff.dasovich@enron.com 2001-03-19
## 1177 jeff.dasovich@enron.com 2001-03-19
## 1178 jeff.dasovich@enron.com 2001-03-19
## 1179 jeff.dasovich@enron.com 2001-03-19
## 1180 jeff.dasovich@enron.com 2001-03-19
## 1181 jeff.dasovich@enron.com 2001-03-19
## 1182 jeff.dasovich@enron.com 2001-03-19
## 1183 jeff.dasovich@enron.com 2001-03-19
## 1184 jeff.dasovich@enron.com 2001-03-19
## 1185 jeff.dasovich@enron.com 2001-03-19
## 1186 jeff.dasovich@enron.com 2001-03-19
## 1187 jeff.dasovich@enron.com 2001-03-19
## 1188 jeff.dasovich@enron.com 2001-03-19
## 1189 jeff.dasovich@enron.com 2001-03-19
## 1190 jeff.dasovich@enron.com 2001-03-19
## 1191 jeff.dasovich@enron.com 2001-03-19
## 1192 jeff.dasovich@enron.com 2001-03-19
## 1193 jeff.dasovich@enron.com 2001-03-19
## 1194 jeff.dasovich@enron.com 2001-03-19
## 1195 jeff.dasovich@enron.com 2001-03-19
## 1196 jeff.dasovich@enron.com 2001-03-19
## 1197 jeff.dasovich@enron.com 2001-03-19
## 1198 jeff.dasovich@enron.com 2001-03-19
## 1199 jeff.dasovich@enron.com 2001-03-20
## 1200 jeff.dasovich@enron.com 2001-03-20
## 1201 jeff.dasovich@enron.com 2001-03-20
## 1202 jeff.dasovich@enron.com 2001-03-20
## 1203 jeff.dasovich@enron.com 2001-03-20
## 1204 jeff.dasovich@enron.com 2001-03-20
## 1205 jeff.dasovich@enron.com 2001-03-20
## 1206 jeff.dasovich@enron.com 2001-03-20
## 1207 jeff.dasovich@enron.com 2001-03-20
## 1208 james.d.steffes@enron.com 2001-03-21
## 1209 james.d.steffes@enron.com 2001-03-21
## 1210 james.d.steffes@enron.com 2001-03-21
## 1211 james.d.steffes@enron.com 2001-03-21
## 1212 james.d.steffes@enron.com 2001-03-21
## 1213 james.d.steffes@enron.com 2001-03-21
## 1214 james.d.steffes@enron.com 2001-03-21
## 1215 james.d.steffes@enron.com 2001-03-21
## 1216 james.d.steffes@enron.com 2001-03-21
## 1217 james.d.steffes@enron.com 2001-03-21
## 1218 james.d.steffes@enron.com 2001-03-21
## 1219 james.d.steffes@enron.com 2001-03-21
## 1220 james.d.steffes@enron.com 2001-03-21
## 1221 james.d.steffes@enron.com 2001-03-21
## 1222 james.d.steffes@enron.com 2001-03-21
## 1223 james.d.steffes@enron.com 2001-03-21
## 1224 james.d.steffes@enron.com 2001-03-21
## 1225 james.d.steffes@enron.com 2001-03-21
## 1226 james.d.steffes@enron.com 2001-03-21
## 1227 james.d.steffes@enron.com 2001-03-21
## 1228 james.d.steffes@enron.com 2001-03-21
## 1229 james.d.steffes@enron.com 2001-03-21
## 1230 james.d.steffes@enron.com 2001-03-21
## 1231 james.d.steffes@enron.com 2001-03-21
## 1232 james.d.steffes@enron.com 2001-03-21
## 1233 jeff.dasovich@enron.com 2001-03-21
## 1234 jeff.dasovich@enron.com 2001-03-21
## 1235 jeff.dasovich@enron.com 2001-03-21
## 1236 jeff.dasovich@enron.com 2001-03-21
## 1237 jeff.dasovich@enron.com 2001-03-21
## 1238 jeff.dasovich@enron.com 2001-03-21
## 1239 jeff.dasovich@enron.com 2001-03-21
## 1240 jeff.dasovich@enron.com 2001-03-21
## 1241 jeff.dasovich@enron.com 2001-03-21
## 1242 jeff.dasovich@enron.com 2001-03-21
## 1243 james.d.steffes@enron.com 2001-03-21
## 1244 james.d.steffes@enron.com 2001-03-21
## 1245 james.d.steffes@enron.com 2001-03-21
## 1246 james.d.steffes@enron.com 2001-03-21
## 1247 james.d.steffes@enron.com 2001-03-21
## 1248 james.d.steffes@enron.com 2001-03-21
## 1249 james.d.steffes@enron.com 2001-03-21
## 1250 james.d.steffes@enron.com 2001-03-21
## 1251 james.d.steffes@enron.com 2001-03-21
## 1252 james.d.steffes@enron.com 2001-03-21
## 1253 james.d.steffes@enron.com 2001-03-21
## 1254 james.d.steffes@enron.com 2001-03-21
## 1255 james.d.steffes@enron.com 2001-03-21
## 1256 james.d.steffes@enron.com 2001-03-21
## 1257 james.d.steffes@enron.com 2001-03-21
## 1258 james.d.steffes@enron.com 2001-03-21
## 1259 james.d.steffes@enron.com 2001-03-21
## 1260 james.d.steffes@enron.com 2001-03-21
## 1261 james.d.steffes@enron.com 2001-03-21
## 1262 james.d.steffes@enron.com 2001-03-21
## 1263 james.d.steffes@enron.com 2001-03-22
## 1264 james.d.steffes@enron.com 2001-03-22
## 1265 james.d.steffes@enron.com 2001-03-22
## 1266 james.d.steffes@enron.com 2001-03-22
## 1267 james.d.steffes@enron.com 2001-03-22
## 1268 james.d.steffes@enron.com 2001-03-22
## 1269 james.d.steffes@enron.com 2001-03-22
## 1270 james.d.steffes@enron.com 2001-03-22
## 1271 james.d.steffes@enron.com 2001-03-22
## 1272 james.d.steffes@enron.com 2001-03-22
## 1273 james.d.steffes@enron.com 2001-03-22
## 1274 james.d.steffes@enron.com 2001-03-22
## 1275 james.d.steffes@enron.com 2001-03-22
## 1276 james.d.steffes@enron.com 2001-03-22
## 1277 james.d.steffes@enron.com 2001-03-22
## 1278 james.d.steffes@enron.com 2001-03-22
## 1279 james.d.steffes@enron.com 2001-03-22
## 1280 james.d.steffes@enron.com 2001-03-22
## 1281 james.d.steffes@enron.com 2001-03-22
## 1282 james.d.steffes@enron.com 2001-03-22
## 1283 james.d.steffes@enron.com 2001-03-22
## 1284 james.d.steffes@enron.com 2001-03-22
## 1285 james.d.steffes@enron.com 2001-03-22
## 1286 james.d.steffes@enron.com 2001-03-22
## 1287 james.d.steffes@enron.com 2001-03-22
## 1288 james.d.steffes@enron.com 2001-03-22
## 1289 james.d.steffes@enron.com 2001-03-22
## 1290 james.d.steffes@enron.com 2001-03-21
## 1291 james.d.steffes@enron.com 2001-03-21
## 1292 james.d.steffes@enron.com 2001-03-21
## 1293 james.d.steffes@enron.com 2001-03-21
## 1294 james.d.steffes@enron.com 2001-03-21
## 1295 james.d.steffes@enron.com 2001-03-21
## 1296 james.d.steffes@enron.com 2001-03-21
## 1297 james.d.steffes@enron.com 2001-03-21
## 1298 james.d.steffes@enron.com 2001-03-21
## 1299 james.d.steffes@enron.com 2001-03-21
## 1300 james.d.steffes@enron.com 2001-03-21
## 1301 james.d.steffes@enron.com 2001-03-21
## 1302 james.d.steffes@enron.com 2001-03-21
## 1303 james.d.steffes@enron.com 2001-03-21
## 1304 james.d.steffes@enron.com 2001-03-21
## 1305 james.d.steffes@enron.com 2001-03-21
## 1306 james.d.steffes@enron.com 2001-03-21
## 1307 james.d.steffes@enron.com 2001-03-21
## 1308 james.d.steffes@enron.com 2001-03-21
## 1309 cara.semperger@enron.com 2001-03-22
## 1310 cara.semperger@enron.com 2001-03-22
## 1311 cara.semperger@enron.com 2001-03-22
## 1312 cara.semperger@enron.com 2001-03-22
## 1313 cara.semperger@enron.com 2001-03-22
## 1314 cara.semperger@enron.com 2001-03-22
## 1315 cara.semperger@enron.com 2001-03-22
## 1316 cara.semperger@enron.com 2001-03-22
## 1317 cara.semperger@enron.com 2001-03-22
## 1318 cara.semperger@enron.com 2001-03-22
## 1319 cara.semperger@enron.com 2001-03-22
## 1320 cara.semperger@enron.com 2001-03-22
## 1321 cara.semperger@enron.com 2001-03-22
## 1322 cara.semperger@enron.com 2001-03-22
## 1323 cara.semperger@enron.com 2001-03-22
## 1324 cara.semperger@enron.com 2001-03-22
## 1325 richard.shapiro@enron.com 2001-03-23
## 1326 richard.shapiro@enron.com 2001-03-23
## 1327 richard.shapiro@enron.com 2001-03-23
## 1328 richard.shapiro@enron.com 2001-03-23
## 1329 richard.shapiro@enron.com 2001-03-23
## 1330 richard.shapiro@enron.com 2001-03-23
## 1331 richard.shapiro@enron.com 2001-03-23
## 1332 richard.shapiro@enron.com 2001-03-23
## 1333 richard.shapiro@enron.com 2001-03-23
## 1334 richard.shapiro@enron.com 2001-03-23
## 1335 richard.shapiro@enron.com 2001-03-23
## 1336 richard.shapiro@enron.com 2001-03-23
## 1337 richard.shapiro@enron.com 2001-03-23
## 1338 richard.shapiro@enron.com 2001-03-23
## 1339 richard.shapiro@enron.com 2001-03-23
## 1340 richard.shapiro@enron.com 2001-03-23
## 1341 richard.shapiro@enron.com 2001-03-23
## 1342 richard.shapiro@enron.com 2001-03-23
## 1343 richard.shapiro@enron.com 2001-03-23
## 1344 richard.shapiro@enron.com 2001-03-23
## 1345 richard.shapiro@enron.com 2001-03-23
## 1346 richard.shapiro@enron.com 2001-03-23
## 1347 richard.shapiro@enron.com 2001-03-23
## 1348 richard.shapiro@enron.com 2001-03-23
## 1349 richard.shapiro@enron.com 2001-03-23
## 1350 richard.shapiro@enron.com 2001-03-23
## 1351 richard.shapiro@enron.com 2001-03-23
## 1352 richard.shapiro@enron.com 2001-03-23
## 1353 richard.shapiro@enron.com 2001-03-23
## 1354 richard.shapiro@enron.com 2001-03-23
## 1355 richard.shapiro@enron.com 2001-03-23
## 1356 richard.shapiro@enron.com 2001-03-23
## 1357 richard.shapiro@enron.com 2001-03-23
## 1358 richard.shapiro@enron.com 2001-03-23
## 1359 richard.shapiro@enron.com 2001-03-23
## 1360 richard.shapiro@enron.com 2001-03-23
## 1361 richard.shapiro@enron.com 2001-03-23
## 1362 richard.shapiro@enron.com 2001-03-23
## 1363 richard.shapiro@enron.com 2001-03-23
## 1364 richard.shapiro@enron.com 2001-03-23
## 1365 richard.shapiro@enron.com 2001-03-23
## 1366 richard.shapiro@enron.com 2001-03-23
## 1367 richard.shapiro@enron.com 2001-03-23
## 1368 richard.shapiro@enron.com 2001-03-23
## 1369 richard.shapiro@enron.com 2001-03-23
## 1370 richard.shapiro@enron.com 2001-03-23
## 1371 richard.shapiro@enron.com 2001-03-23
## 1372 richard.shapiro@enron.com 2001-03-23
## 1373 richard.shapiro@enron.com 2001-03-23
## 1374 richard.shapiro@enron.com 2001-03-23
## 1375 richard.shapiro@enron.com 2001-03-23
## 1376 richard.shapiro@enron.com 2001-03-23
## 1377 richard.shapiro@enron.com 2001-03-23
## 1378 richard.shapiro@enron.com 2001-03-23
## 1379 richard.shapiro@enron.com 2001-03-23
## 1380 richard.shapiro@enron.com 2001-03-23
## 1381 richard.shapiro@enron.com 2001-03-23
## 1382 shelley.corman@enron.com 2001-03-30
## 1383 shelley.corman@enron.com 2001-03-30
## 1384 shelley.corman@enron.com 2001-03-30
## 1385 shelley.corman@enron.com 2001-03-30
## 1386 shelley.corman@enron.com 2001-03-30
## 1387 shelley.corman@enron.com 2001-03-30
## 1388 shelley.corman@enron.com 2001-03-30
## 1389 shelley.corman@enron.com 2001-03-30
## 1390 shelley.corman@enron.com 2001-03-30
## 1391 shelley.corman@enron.com 2001-03-30
## 1392 shelley.corman@enron.com 2001-03-30
## 1393 shelley.corman@enron.com 2001-03-30
## 1394 shelley.corman@enron.com 2001-03-30
## 1395 shelley.corman@enron.com 2001-03-30
## 1396 shelley.corman@enron.com 2001-03-30
## 1397 shelley.corman@enron.com 2001-03-30
## 1398 shelley.corman@enron.com 2001-03-30
## 1399 shelley.corman@enron.com 2001-03-30
## 1400 shelley.corman@enron.com 2001-03-30
## 1401 shelley.corman@enron.com 2001-03-30
## 1402 shelley.corman@enron.com 2001-03-30
## 1403 shelley.corman@enron.com 2001-03-30
## 1404 shelley.corman@enron.com 2001-03-30
## 1405 shelley.corman@enron.com 2001-03-30
## 1406 shelley.corman@enron.com 2001-03-30
## 1407 shelley.corman@enron.com 2001-03-30
## 1408 shelley.corman@enron.com 2001-03-30
## 1409 shelley.corman@enron.com 2001-03-30
## 1410 shelley.corman@enron.com 2001-03-30
## 1411 shelley.corman@enron.com 2001-03-30
## 1412 shelley.corman@enron.com 2001-03-30
## 1413 shelley.corman@enron.com 2001-03-30
## 1414 shelley.corman@enron.com 2001-03-30
## 1415 shelley.corman@enron.com 2001-03-30
## 1416 shelley.corman@enron.com 2001-03-30
## 1417 shelley.corman@enron.com 2001-03-30
## 1418 shelley.corman@enron.com 2001-03-30
## 1419 shelley.corman@enron.com 2001-03-30
## 1420 shelley.corman@enron.com 2001-03-30
## 1421 shelley.corman@enron.com 2001-03-30
## 1422 shelley.corman@enron.com 2001-03-30
## 1423 shelley.corman@enron.com 2001-03-30
## 1424 shelley.corman@enron.com 2001-03-30
## 1425 shelley.corman@enron.com 2001-03-30
## 1426 shelley.corman@enron.com 2001-03-30
## 1427 shelley.corman@enron.com 2001-03-30
## 1428 shelley.corman@enron.com 2001-03-30
## 1429 shelley.corman@enron.com 2001-03-30
## 1430 shelley.corman@enron.com 2001-03-30
## 1431 shelley.corman@enron.com 2001-03-30
## 1432 shelley.corman@enron.com 2001-03-30
## 1433 shelley.corman@enron.com 2001-03-30
## 1434 shelley.corman@enron.com 2001-03-30
## 1435 shelley.corman@enron.com 2001-03-30
## 1436 shelley.corman@enron.com 2001-03-30
## 1437 shelley.corman@enron.com 2001-03-30
## 1438 shelley.corman@enron.com 2001-03-30
## 1439 shelley.corman@enron.com 2001-03-30
## 1440 shelley.corman@enron.com 2001-03-30
## 1441 shelley.corman@enron.com 2001-03-30
## 1442 shelley.corman@enron.com 2001-03-30
## 1443 shelley.corman@enron.com 2001-03-30
## 1444 shelley.corman@enron.com 2001-03-30
## 1445 shelley.corman@enron.com 2001-03-30
## 1446 shelley.corman@enron.com 2001-03-30
## 1447 shelley.corman@enron.com 2001-03-30
## 1448 shelley.corman@enron.com 2001-03-30
## 1449 shelley.corman@enron.com 2001-03-30
## 1450 shelley.corman@enron.com 2001-03-30
## 1451 shelley.corman@enron.com 2001-03-30
## 1452 shelley.corman@enron.com 2001-03-30
## 1453 shelley.corman@enron.com 2001-03-30
## 1454 shelley.corman@enron.com 2001-03-30
## 1455 shelley.corman@enron.com 2001-03-30
## 1456 shelley.corman@enron.com 2001-03-30
## 1457 shelley.corman@enron.com 2001-03-30
## 1458 shelley.corman@enron.com 2001-03-30
## 1459 shelley.corman@enron.com 2001-03-30
## 1460 shelley.corman@enron.com 2001-03-30
## 1461 shelley.corman@enron.com 2001-03-30
## 1462 shelley.corman@enron.com 2001-03-30
## 1463 shelley.corman@enron.com 2001-03-30
## 1464 shelley.corman@enron.com 2001-03-30
## 1465 shelley.corman@enron.com 2001-03-30
## 1466 shelley.corman@enron.com 2001-03-30
## 1467 shelley.corman@enron.com 2001-03-30
## 1468 shelley.corman@enron.com 2001-03-30
## 1469 shelley.corman@enron.com 2001-03-30
## 1470 shelley.corman@enron.com 2001-03-30
## 1471 shelley.corman@enron.com 2001-03-30
## 1472 shelley.corman@enron.com 2001-03-30
## 1473 shelley.corman@enron.com 2001-03-30
## 1474 shelley.corman@enron.com 2001-03-30
## 1475 shelley.corman@enron.com 2001-03-30
## 1476 shelley.corman@enron.com 2001-03-30
## 1477 shelley.corman@enron.com 2001-03-30
## 1478 shelley.corman@enron.com 2001-03-30
## 1479 shelley.corman@enron.com 2001-03-30
## 1480 shelley.corman@enron.com 2001-03-30
## 1481 shelley.corman@enron.com 2001-03-30
## 1482 shelley.corman@enron.com 2001-03-30
## 1483 shelley.corman@enron.com 2001-03-30
## 1484 shelley.corman@enron.com 2001-03-30
## 1485 shelley.corman@enron.com 2001-03-30
## 1486 shelley.corman@enron.com 2001-03-30
## 1487 shelley.corman@enron.com 2001-03-30
## 1488 shelley.corman@enron.com 2001-03-30
## 1489 james.d.steffes@enron.com 2001-04-09
## 1490 james.d.steffes@enron.com 2001-04-09
## 1491 james.d.steffes@enron.com 2001-04-09
## 1492 james.d.steffes@enron.com 2001-04-09
## 1493 james.d.steffes@enron.com 2001-04-09
## 1494 james.d.steffes@enron.com 2001-04-09
## 1495 james.d.steffes@enron.com 2001-04-09
## 1496 james.d.steffes@enron.com 2001-04-09
## 1497 james.d.steffes@enron.com 2001-04-09
## 1498 james.d.steffes@enron.com 2001-04-09
## 1499 james.d.steffes@enron.com 2001-04-09
## 1500 james.d.steffes@enron.com 2001-04-09
## 1501 james.d.steffes@enron.com 2001-04-09
## 1502 james.d.steffes@enron.com 2001-04-09
## 1503 james.d.steffes@enron.com 2001-04-09
## 1504 james.d.steffes@enron.com 2001-04-09
## 1505 james.d.steffes@enron.com 2001-04-09
## 1506 james.d.steffes@enron.com 2001-04-09
## 1507 james.d.steffes@enron.com 2001-04-09
## 1508 james.d.steffes@enron.com 2001-04-09
## 1509 james.d.steffes@enron.com 2001-04-09
## 1510 james.d.steffes@enron.com 2001-04-09
## 1511 james.d.steffes@enron.com 2001-04-09
## 1512 james.d.steffes@enron.com 2001-04-09
## 1513 james.d.steffes@enron.com 2001-04-09
## 1514 james.d.steffes@enron.com 2001-04-09
## 1515 james.d.steffes@enron.com 2001-04-09
## 1516 james.d.steffes@enron.com 2001-04-09
## 1517 james.d.steffes@enron.com 2001-04-09
## 1518 james.d.steffes@enron.com 2001-04-09
## 1519 james.d.steffes@enron.com 2001-04-09
## 1520 james.d.steffes@enron.com 2001-04-09
## 1521 james.d.steffes@enron.com 2001-04-09
## 1522 james.d.steffes@enron.com 2001-04-09
## 1523 james.d.steffes@enron.com 2001-04-09
## 1524 james.d.steffes@enron.com 2001-04-09
## 1525 james.d.steffes@enron.com 2001-04-09
## 1526 james.d.steffes@enron.com 2001-04-09
## 1527 james.d.steffes@enron.com 2001-04-09
## 1528 james.d.steffes@enron.com 2001-04-09
## 1529 james.d.steffes@enron.com 2001-04-09
## 1530 james.d.steffes@enron.com 2001-04-09
## 1531 james.d.steffes@enron.com 2001-04-09
## 1532 james.d.steffes@enron.com 2001-04-09
## 1533 james.d.steffes@enron.com 2001-04-09
## 1534 james.d.steffes@enron.com 2001-04-09
## 1535 james.d.steffes@enron.com 2001-04-09
## 1536 james.d.steffes@enron.com 2001-04-09
## 1537 james.d.steffes@enron.com 2001-04-09
## 1538 james.d.steffes@enron.com 2001-04-09
## 1539 james.d.steffes@enron.com 2001-04-09
## 1540 james.d.steffes@enron.com 2001-04-09
## 1541 james.d.steffes@enron.com 2001-04-09
## 1542 james.d.steffes@enron.com 2001-04-09
## 1543 james.d.steffes@enron.com 2001-04-09
## 1544 james.d.steffes@enron.com 2001-04-09
## 1545 james.d.steffes@enron.com 2001-04-09
## 1546 james.d.steffes@enron.com 2001-04-09
## 1547 james.d.steffes@enron.com 2001-04-09
## 1548 james.d.steffes@enron.com 2001-04-09
## 1549 james.d.steffes@enron.com 2001-04-09
## 1550 james.d.steffes@enron.com 2001-04-09
## 1551 james.d.steffes@enron.com 2001-04-09
## 1552 rod.hayslett@enron.com 2001-02-15
## 1553 rod.hayslett@enron.com 2001-02-15
## 1554 rod.hayslett@enron.com 2001-02-15
## 1555 rod.hayslett@enron.com 2001-02-23
## 1556 rod.hayslett@enron.com 2001-02-23
## 1557 rod.hayslett@enron.com 2001-02-23
## 1558 rod.hayslett@enron.com 2001-02-23
## 1559 rod.hayslett@enron.com 2001-02-23
## 1560 rod.hayslett@enron.com 2001-02-23
## 1561 rod.hayslett@enron.com 2001-02-23
## 1562 rod.hayslett@enron.com 2001-02-23
## 1563 rod.hayslett@enron.com 2001-02-23
## 1564 rod.hayslett@enron.com 2001-02-23
## 1565 rod.hayslett@enron.com 2001-02-23
## 1566 rod.hayslett@enron.com 2001-02-23
## 1567 rod.hayslett@enron.com 2001-04-12
## 1568 rod.hayslett@enron.com 2001-04-12
## 1569 rod.hayslett@enron.com 2001-04-12
## 1570 rod.hayslett@enron.com 2001-04-12
## 1571 rod.hayslett@enron.com 2001-04-12
## 1572 rod.hayslett@enron.com 2001-04-12
## 1573 rod.hayslett@enron.com 2001-03-23
## 1574 rod.hayslett@enron.com 2001-03-23
## 1575 rod.hayslett@enron.com 2001-03-23
## 1576 rod.hayslett@enron.com 2001-03-23
## 1577 rod.hayslett@enron.com 2001-03-23
## 1578 rod.hayslett@enron.com 2001-03-23
## 1579 rod.hayslett@enron.com 2001-03-23
## 1580 rod.hayslett@enron.com 2001-03-23
## 1581 rod.hayslett@enron.com 2001-03-23
## 1582 rod.hayslett@enron.com 2001-03-23
## 1583 rod.hayslett@enron.com 2001-03-23
## 1584 rod.hayslett@enron.com 2001-03-23
## 1585 rod.hayslett@enron.com 2001-03-23
## 1586 rod.hayslett@enron.com 2001-03-23
## 1587 rod.hayslett@enron.com 2001-03-23
## 1588 rod.hayslett@enron.com 2001-03-02
## 1589 steven.harris@enron.com 2001-09-10
## 1590 tracy.geaccone@enron.com 2001-10-30
## 1591 steven.harris@enron.com 2001-08-06
## 1592 rod.hayslett@enron.com 2001-11-09
## 1593 rod.hayslett@enron.com 2001-07-26
## 1594 rod.hayslett@enron.com 2001-07-26
## 1595 rod.hayslett@enron.com 2001-07-26
## 1596 rod.hayslett@enron.com 2001-04-27
## 1597 rod.hayslett@enron.com 2001-04-27
## 1598 rod.hayslett@enron.com 2001-04-27
## 1599 rod.hayslett@enron.com 2001-04-20
## 1600 rod.hayslett@enron.com 2001-04-20
## 1601 rod.hayslett@enron.com 2001-04-20
## 1602 rod.hayslett@enron.com 2001-04-20
## 1603 rod.hayslett@enron.com 2001-04-20
## 1604 rod.hayslett@enron.com 2001-04-20
## 1605 rod.hayslett@enron.com 2001-04-09
## 1606 rod.hayslett@enron.com 2001-03-08
## 1607 rod.hayslett@enron.com 2001-03-08
## 1608 rod.hayslett@enron.com 2001-03-08
## 1609 rod.hayslett@enron.com 2001-03-05
## 1610 rod.hayslett@enron.com 2001-03-05
## 1611 rod.hayslett@enron.com 2001-03-05
## 1612 rod.hayslett@enron.com 2001-03-05
## 1613 rod.hayslett@enron.com 2001-03-05
## 1614 rod.hayslett@enron.com 2001-03-05
## 1615 rod.hayslett@enron.com 2001-03-05
## 1616 rod.hayslett@enron.com 2001-03-05
## 1617 rod.hayslett@enron.com 2001-03-05
## 1618 rod.hayslett@enron.com 2001-03-05
## 1619 rod.hayslett@enron.com 2001-02-20
## 1620 rod.hayslett@enron.com 2001-02-20
## 1621 rod.hayslett@enron.com 2001-11-28
## 1622 rod.hayslett@enron.com 2001-11-28
## 1623 rod.hayslett@enron.com 2001-11-28
## 1624 rod.hayslett@enron.com 2001-11-28
## 1625 rod.hayslett@enron.com 2001-11-28
## 1626 rod.hayslett@enron.com 2001-11-28
## 1627 rod.hayslett@enron.com 2001-11-28
## 1628 rod.hayslett@enron.com 2001-11-28
## 1629 rod.hayslett@enron.com 2001-11-28
## 1630 rod.hayslett@enron.com 2001-11-28
## 1631 rod.hayslett@enron.com 2001-11-28
## 1632 rod.hayslett@enron.com 2001-11-27
## 1633 rod.hayslett@enron.com 2001-11-27
## 1634 rod.hayslett@enron.com 2001-11-27
## 1635 rod.hayslett@enron.com 2001-11-27
## 1636 rod.hayslett@enron.com 2001-11-27
## 1637 rod.hayslett@enron.com 2001-11-27
## 1638 rod.hayslett@enron.com 2001-11-27
## 1639 rod.hayslett@enron.com 2001-11-27
## 1640 rod.hayslett@enron.com 2001-11-27
## 1641 rod.hayslett@enron.com 2001-11-27
## 1642 rod.hayslett@enron.com 2001-11-27
## 1643 rod.hayslett@enron.com 2001-11-27
## 1644 rod.hayslett@enron.com 2001-11-27
## 1645 rod.hayslett@enron.com 2001-11-27
## 1646 rod.hayslett@enron.com 2001-11-27
## 1647 steven.harris@enron.com 2001-11-27
## 1648 rod.hayslett@enron.com 2001-11-27
## 1649 rod.hayslett@enron.com 2001-11-27
## 1650 rod.hayslett@enron.com 2001-11-27
## 1651 rod.hayslett@enron.com 2001-11-27
## 1652 rod.hayslett@enron.com 2001-11-27
## 1653 rod.hayslett@enron.com 2001-11-27
## 1654 rod.hayslett@enron.com 2001-11-27
## 1655 rod.hayslett@enron.com 2001-11-27
## 1656 rod.hayslett@enron.com 2001-11-27
## 1657 lindy.donoho@enron.com 2001-11-27
## 1658 lindy.donoho@enron.com 2001-11-27
## 1659 lindy.donoho@enron.com 2001-11-27
## 1660 rod.hayslett@enron.com 2001-11-27
## 1661 rod.hayslett@enron.com 2001-11-27
## 1662 rod.hayslett@enron.com 2001-11-27
## 1663 rod.hayslett@enron.com 2001-11-27
## 1664 rod.hayslett@enron.com 2001-11-27
## 1665 rod.hayslett@enron.com 2001-11-26
## 1666 stanley.horton@enron.com 2001-11-26
## 1667 michelle.lokay@enron.com 2001-11-26
## 1668 michelle.lokay@enron.com 2001-11-26
## 1669 michelle.lokay@enron.com 2001-11-26
## 1670 michelle.lokay@enron.com 2001-11-26
## 1671 michelle.lokay@enron.com 2001-11-26
## 1672 kevin.hyatt@enron.com 2001-11-26
## 1673 kevin.hyatt@enron.com 2001-11-26
## 1674 kevin.hyatt@enron.com 2001-11-26
## 1675 kevin.hyatt@enron.com 2001-11-26
## 1676 rod.hayslett@enron.com 2001-11-26
## 1677 rod.hayslett@enron.com 2001-11-26
## 1678 rod.hayslett@enron.com 2001-11-26
## 1679 rod.hayslett@enron.com 2001-11-26
## 1680 lindy.donoho@enron.com 2001-11-26
## 1681 lindy.donoho@enron.com 2001-11-26
## 1682 lindy.donoho@enron.com 2001-11-26
## 1683 lindy.donoho@enron.com 2001-11-26
## 1684 rod.hayslett@enron.com 2001-11-21
## 1685 rod.hayslett@enron.com 2001-11-21
## 1686 rod.hayslett@enron.com 2001-11-21
## 1687 rod.hayslett@enron.com 2001-11-21
## 1688 rod.hayslett@enron.com 2001-11-21
## 1689 rod.hayslett@enron.com 2001-11-21
## 1690 rod.hayslett@enron.com 2001-11-21
## 1691 rod.hayslett@enron.com 2001-11-21
## 1692 rod.hayslett@enron.com 2001-11-21
## 1693 rod.hayslett@enron.com 2001-11-21
## 1694 rod.hayslett@enron.com 2001-11-21
## 1695 rod.hayslett@enron.com 2001-11-21
## 1696 rod.hayslett@enron.com 2001-11-21
## 1697 rod.hayslett@enron.com 2001-11-21
## 1698 rod.hayslett@enron.com 2001-11-21
## 1699 rod.hayslett@enron.com 2001-11-21
## 1700 rod.hayslett@enron.com 2001-11-21
## 1701 rod.hayslett@enron.com 2001-11-21
## 1702 rod.hayslett@enron.com 2001-11-21
## 1703 rod.hayslett@enron.com 2001-11-21
## 1704 rod.hayslett@enron.com 2001-11-21
## 1705 rod.hayslett@enron.com 2001-11-21
## 1706 rod.hayslett@enron.com 2001-11-21
## 1707 rod.hayslett@enron.com 2001-11-21
## 1708 rod.hayslett@enron.com 2001-11-21
## 1709 rod.hayslett@enron.com 2001-11-21
## 1710 rod.hayslett@enron.com 2001-11-21
## 1711 rod.hayslett@enron.com 2001-11-21
## 1712 rod.hayslett@enron.com 2001-11-21
## 1713 rod.hayslett@enron.com 2001-11-21
## 1714 rod.hayslett@enron.com 2001-11-21
## 1715 rod.hayslett@enron.com 2001-11-21
## 1716 rod.hayslett@enron.com 2001-11-21
## 1717 rod.hayslett@enron.com 2001-11-21
## 1718 rod.hayslett@enron.com 2001-11-21
## 1719 rod.hayslett@enron.com 2001-11-21
## 1720 rod.hayslett@enron.com 2001-11-21
## 1721 rod.hayslett@enron.com 2001-11-21
## 1722 rod.hayslett@enron.com 2001-11-21
## 1723 steven.harris@enron.com 2001-11-20
## 1724 rod.hayslett@enron.com 2001-11-19
## 1725 rod.hayslett@enron.com 2001-11-19
## 1726 rod.hayslett@enron.com 2001-11-19
## 1727 rod.hayslett@enron.com 2001-11-19
## 1728 rod.hayslett@enron.com 2001-11-19
## 1729 rod.hayslett@enron.com 2001-11-17
## 1730 rod.hayslett@enron.com 2001-11-17
## 1731 rod.hayslett@enron.com 2001-11-17
## 1732 rod.hayslett@enron.com 2001-11-17
## 1733 rod.hayslett@enron.com 2001-11-17
## 1734 rod.hayslett@enron.com 2001-11-17
## 1735 rod.hayslett@enron.com 2001-11-17
## 1736 rod.hayslett@enron.com 2001-11-17
## 1737 rod.hayslett@enron.com 2001-11-17
## 1738 rod.hayslett@enron.com 2001-11-17
## 1739 rod.hayslett@enron.com 2001-11-17
## 1740 rod.hayslett@enron.com 2001-11-17
## 1741 steven.harris@enron.com 2001-11-15
## 1742 rod.hayslett@enron.com 2001-11-15
## 1743 rod.hayslett@enron.com 2001-11-15
## 1744 rod.hayslett@enron.com 2001-11-15
## 1745 rod.hayslett@enron.com 2001-11-15
## 1746 rod.hayslett@enron.com 2001-11-15
## 1747 rod.hayslett@enron.com 2001-11-15
## 1748 rod.hayslett@enron.com 2001-11-15
## 1749 rod.hayslett@enron.com 2001-11-14
## 1750 rod.hayslett@enron.com 2001-11-14
## 1751 rod.hayslett@enron.com 2001-11-14
## 1752 rod.hayslett@enron.com 2001-11-14
## 1753 rod.hayslett@enron.com 2001-11-14
## 1754 steven.harris@enron.com 2001-11-13
## 1755 steven.harris@enron.com 2001-11-13
## 1756 rod.hayslett@enron.com 2001-11-12
## 1757 steven.harris@enron.com 2001-11-12
## 1758 steven.harris@enron.com 2001-11-12
## 1759 rod.hayslett@enron.com 2001-11-08
## 1760 rod.hayslett@enron.com 2001-11-07
## 1761 rod.hayslett@enron.com 2001-11-07
## 1762 rod.hayslett@enron.com 2001-11-07
## 1763 rod.hayslett@enron.com 2001-11-07
## 1764 rod.hayslett@enron.com 2001-11-07
## 1765 rod.hayslett@enron.com 2001-11-07
## 1766 rod.hayslett@enron.com 2001-11-07
## 1767 rod.hayslett@enron.com 2001-11-07
## 1768 rod.hayslett@enron.com 2001-11-07
## 1769 rod.hayslett@enron.com 2001-11-07
## 1770 rod.hayslett@enron.com 2001-11-07
## 1771 rod.hayslett@enron.com 2001-11-07
## 1772 rod.hayslett@enron.com 2001-11-07
## 1773 rod.hayslett@enron.com 2001-11-07
## 1774 rod.hayslett@enron.com 2001-11-07
## 1775 rod.hayslett@enron.com 2001-11-07
## 1776 rod.hayslett@enron.com 2001-11-07
## 1777 rod.hayslett@enron.com 2001-11-07
## 1778 rod.hayslett@enron.com 2001-11-07
## 1779 rod.hayslett@enron.com 2001-11-07
## 1780 rod.hayslett@enron.com 2001-11-07
## 1781 rod.hayslett@enron.com 2001-11-07
## 1782 rod.hayslett@enron.com 2001-11-07
## 1783 rod.hayslett@enron.com 2001-11-07
## 1784 rod.hayslett@enron.com 2001-11-07
## 1785 rod.hayslett@enron.com 2001-11-07
## 1786 rod.hayslett@enron.com 2001-11-07
## 1787 rod.hayslett@enron.com 2001-11-07
## 1788 rod.hayslett@enron.com 2001-11-07
## 1789 rod.hayslett@enron.com 2001-11-07
## 1790 rod.hayslett@enron.com 2001-11-07
## 1791 lindy.donoho@enron.com 2001-11-07
## 1792 lindy.donoho@enron.com 2001-11-07
## 1793 lindy.donoho@enron.com 2001-11-07
## 1794 lindy.donoho@enron.com 2001-11-06
## 1795 rod.hayslett@enron.com 2001-11-06
## 1796 rod.hayslett@enron.com 2001-11-06
## 1797 rod.hayslett@enron.com 2001-11-06
## 1798 rod.hayslett@enron.com 2001-11-06
## 1799 steven.harris@enron.com 2001-11-06
## 1800 rod.hayslett@enron.com 2001-11-05
## 1801 steven.harris@enron.com 2001-11-01
## 1802 steven.harris@enron.com 2001-10-30
## 1803 rod.hayslett@enron.com 2001-08-22
## 1804 rod.hayslett@enron.com 2001-08-08
## 1805 rod.hayslett@enron.com 2001-09-24
## 1806 steven.harris@enron.com 2001-10-29
## 1807 rod.hayslett@enron.com 2001-10-25
## 1808 rod.hayslett@enron.com 2001-10-25
## 1809 rod.hayslett@enron.com 2001-10-25
## 1810 rod.hayslett@enron.com 2001-10-25
## 1811 rod.hayslett@enron.com 2001-10-25
## 1812 rod.hayslett@enron.com 2001-10-25
## 1813 steven.harris@enron.com 2001-10-25
## 1814 steven.harris@enron.com 2001-10-24
## 1815 steven.harris@enron.com 2001-10-23
## 1816 rod.hayslett@enron.com 2001-10-23
## 1817 rod.hayslett@enron.com 2001-10-23
## 1818 rod.hayslett@enron.com 2001-10-23
## 1819 rod.hayslett@enron.com 2001-10-23
## 1820 rod.hayslett@enron.com 2001-10-18
## 1821 rod.hayslett@enron.com 2001-10-18
## 1822 rod.hayslett@enron.com 2001-10-18
## 1823 rod.hayslett@enron.com 2001-10-18
## 1824 rod.hayslett@enron.com 2001-10-18
## 1825 rod.hayslett@enron.com 2001-10-18
## 1826 rod.hayslett@enron.com 2001-10-18
## 1827 rod.hayslett@enron.com 2001-10-18
## 1828 rod.hayslett@enron.com 2001-10-18
## 1829 rod.hayslett@enron.com 2001-10-15
## 1830 rod.hayslett@enron.com 2001-10-15
## 1831 rod.hayslett@enron.com 2001-10-15
## 1832 rod.hayslett@enron.com 2001-10-15
## 1833 rod.hayslett@enron.com 2001-10-15
## 1834 rod.hayslett@enron.com 2001-10-15
## 1835 rod.hayslett@enron.com 2001-10-15
## 1836 rod.hayslett@enron.com 2001-10-15
## 1837 rod.hayslett@enron.com 2001-10-15
## 1838 rod.hayslett@enron.com 2001-10-15
## 1839 rod.hayslett@enron.com 2001-10-15
## 1840 rod.hayslett@enron.com 2001-10-15
## 1841 rod.hayslett@enron.com 2001-10-15
## 1842 rod.hayslett@enron.com 2001-10-15
## 1843 rod.hayslett@enron.com 2001-10-15
## 1844 rod.hayslett@enron.com 2001-10-15
## 1845 rod.hayslett@enron.com 2001-10-15
## 1846 rod.hayslett@enron.com 2001-10-15
## 1847 rod.hayslett@enron.com 2001-10-15
## 1848 rod.hayslett@enron.com 2001-10-15
## 1849 rod.hayslett@enron.com 2001-10-15
## 1850 rod.hayslett@enron.com 2001-10-15
## 1851 rod.hayslett@enron.com 2001-10-15
## 1852 rod.hayslett@enron.com 2001-10-15
## 1853 rod.hayslett@enron.com 2001-10-09
## 1854 rod.hayslett@enron.com 2001-10-09
## 1855 rod.hayslett@enron.com 2001-10-09
## 1856 rod.hayslett@enron.com 2001-10-09
## 1857 rod.hayslett@enron.com 2001-10-09
## 1858 rod.hayslett@enron.com 2001-10-09
## 1859 rod.hayslett@enron.com 2001-10-09
## 1860 rod.hayslett@enron.com 2001-10-09
## 1861 rod.hayslett@enron.com 2001-10-09
## 1862 rod.hayslett@enron.com 2001-10-09
## 1863 rod.hayslett@enron.com 2001-10-09
## 1864 rod.hayslett@enron.com 2001-10-09
## 1865 lindy.donoho@enron.com 2001-10-09
## 1866 lindy.donoho@enron.com 2001-10-09
## 1867 lindy.donoho@enron.com 2001-10-09
## 1868 lindy.donoho@enron.com 2001-10-09
## 1869 lindy.donoho@enron.com 2001-10-09
## 1870 rod.hayslett@enron.com 2001-10-08
## 1871 rod.hayslett@enron.com 2001-10-08
## 1872 rod.hayslett@enron.com 2001-10-08
## 1873 rod.hayslett@enron.com 2001-10-08
## 1874 rod.hayslett@enron.com 2001-10-08
## 1875 rod.hayslett@enron.com 2001-10-08
## 1876 rod.hayslett@enron.com 2001-10-08
## 1877 rod.hayslett@enron.com 2001-10-08
## 1878 rod.hayslett@enron.com 2001-10-05
## 1879 rod.hayslett@enron.com 2001-10-05
## 1880 rod.hayslett@enron.com 2001-10-05
## 1881 rod.hayslett@enron.com 2001-10-05
## 1882 rod.hayslett@enron.com 2001-10-05
## 1883 rod.hayslett@enron.com 2001-10-05
## 1884 rod.hayslett@enron.com 2001-10-05
## 1885 rod.hayslett@enron.com 2001-10-05
## 1886 rod.hayslett@enron.com 2001-10-05
## 1887 rod.hayslett@enron.com 2001-10-05
## 1888 rod.hayslett@enron.com 2001-10-05
## 1889 rod.hayslett@enron.com 2001-10-05
## 1890 rod.hayslett@enron.com 2001-10-05
## 1891 rod.hayslett@enron.com 2001-10-05
## 1892 rod.hayslett@enron.com 2001-10-05
## 1893 rod.hayslett@enron.com 2001-10-05
## 1894 rod.hayslett@enron.com 2001-10-04
## 1895 rod.hayslett@enron.com 2001-10-04
## 1896 rod.hayslett@enron.com 2001-10-04
## 1897 rod.hayslett@enron.com 2001-10-02
## 1898 rod.hayslett@enron.com 2001-10-02
## 1899 rod.hayslett@enron.com 2001-10-02
## 1900 rod.hayslett@enron.com 2001-10-01
## 1901 rod.hayslett@enron.com 2001-10-01
## 1902 rod.hayslett@enron.com 2001-10-01
## 1903 rod.hayslett@enron.com 2001-10-01
## 1904 rod.hayslett@enron.com 2001-09-28
## 1905 rod.hayslett@enron.com 2001-09-28
## 1906 rod.hayslett@enron.com 2001-09-28
## 1907 rod.hayslett@enron.com 2001-09-28
## 1908 rod.hayslett@enron.com 2001-09-28
## 1909 rod.hayslett@enron.com 2001-09-28
## 1910 rod.hayslett@enron.com 2001-09-28
## 1911 rod.hayslett@enron.com 2001-09-28
## 1912 rod.hayslett@enron.com 2001-09-28
## 1913 rod.hayslett@enron.com 2001-09-28
## 1914 rod.hayslett@enron.com 2001-09-28
## 1915 rod.hayslett@enron.com 2001-09-28
## 1916 rod.hayslett@enron.com 2001-09-28
## 1917 rod.hayslett@enron.com 2001-09-27
## 1918 rod.hayslett@enron.com 2001-09-27
## 1919 rod.hayslett@enron.com 2001-09-27
## 1920 rod.hayslett@enron.com 2001-09-27
## 1921 rod.hayslett@enron.com 2001-09-27
## 1922 rod.hayslett@enron.com 2001-09-27
## 1923 rod.hayslett@enron.com 2001-09-27
## 1924 rod.hayslett@enron.com 2001-09-27
## 1925 rod.hayslett@enron.com 2001-09-27
## 1926 rod.hayslett@enron.com 2001-09-27
## 1927 rod.hayslett@enron.com 2001-09-27
## 1928 rod.hayslett@enron.com 2001-09-27
## 1929 rod.hayslett@enron.com 2001-09-27
## 1930 rod.hayslett@enron.com 2001-09-27
## 1931 rod.hayslett@enron.com 2001-09-27
## 1932 rod.hayslett@enron.com 2001-09-27
## 1933 rod.hayslett@enron.com 2001-09-27
## 1934 rod.hayslett@enron.com 2001-09-27
## 1935 rod.hayslett@enron.com 2001-09-27
## 1936 rod.hayslett@enron.com 2001-09-27
## 1937 rod.hayslett@enron.com 2001-09-27
## 1938 rod.hayslett@enron.com 2001-09-27
## 1939 rod.hayslett@enron.com 2001-09-27
## 1940 rod.hayslett@enron.com 2001-09-27
## 1941 rod.hayslett@enron.com 2001-09-27
## 1942 rod.hayslett@enron.com 2001-09-27
## 1943 rod.hayslett@enron.com 2001-09-27
## 1944 rod.hayslett@enron.com 2001-09-27
## 1945 rod.hayslett@enron.com 2001-09-27
## 1946 rod.hayslett@enron.com 2001-09-27
## 1947 rod.hayslett@enron.com 2001-09-27
## 1948 rod.hayslett@enron.com 2001-09-27
## 1949 rod.hayslett@enron.com 2001-09-27
## 1950 rod.hayslett@enron.com 2001-09-26
## 1951 rod.hayslett@enron.com 2001-09-26
## 1952 rod.hayslett@enron.com 2001-09-26
## 1953 rod.hayslett@enron.com 2001-09-26
## 1954 rod.hayslett@enron.com 2001-09-26
## 1955 rod.hayslett@enron.com 2001-09-26
## 1956 rod.hayslett@enron.com 2001-09-26
## 1957 rod.hayslett@enron.com 2001-09-26
## 1958 teb.lokey@enron.com 2001-09-24
## 1959 teb.lokey@enron.com 2001-09-24
## 1960 rod.hayslett@enron.com 2001-09-24
## 1961 rod.hayslett@enron.com 2001-09-24
## 1962 rod.hayslett@enron.com 2001-09-24
## 1963 rod.hayslett@enron.com 2001-09-24
## 1964 rod.hayslett@enron.com 2001-09-24
## 1965 rod.hayslett@enron.com 2001-09-19
## 1966 rod.hayslett@enron.com 2001-09-19
## 1967 rod.hayslett@enron.com 2001-09-19
## 1968 rod.hayslett@enron.com 2001-09-17
## 1969 rod.hayslett@enron.com 2001-09-17
## 1970 rod.hayslett@enron.com 2001-09-17
## 1971 rod.hayslett@enron.com 2001-09-17
## 1972 rod.hayslett@enron.com 2001-09-17
## 1973 rod.hayslett@enron.com 2001-09-17
## 1974 rod.hayslett@enron.com 2001-09-17
## 1975 rod.hayslett@enron.com 2001-09-17
## 1976 rod.hayslett@enron.com 2001-09-17
## 1977 rod.hayslett@enron.com 2001-09-17
## 1978 rod.hayslett@enron.com 2001-09-17
## 1979 rod.hayslett@enron.com 2001-09-17
## 1980 rod.hayslett@enron.com 2001-09-17
## 1981 rod.hayslett@enron.com 2001-09-17
## 1982 rod.hayslett@enron.com 2001-09-17
## 1983 rod.hayslett@enron.com 2001-09-17
## 1984 rod.hayslett@enron.com 2001-09-14
## 1985 rod.hayslett@enron.com 2001-09-14
## 1986 rod.hayslett@enron.com 2001-09-14
## 1987 rod.hayslett@enron.com 2001-09-13
## 1988 rod.hayslett@enron.com 2001-09-13
## 1989 rod.hayslett@enron.com 2001-09-13
## 1990 rod.hayslett@enron.com 2001-09-13
## 1991 rod.hayslett@enron.com 2001-09-12
## 1992 rod.hayslett@enron.com 2001-09-12
## 1993 rod.hayslett@enron.com 2001-09-12
## 1994 rod.hayslett@enron.com 2001-09-12
## 1995 rod.hayslett@enron.com 2001-09-12
## 1996 rod.hayslett@enron.com 2001-09-12
## 1997 rod.hayslett@enron.com 2001-09-12
## 1998 rod.hayslett@enron.com 2001-09-12
## 1999 rod.hayslett@enron.com 2001-09-12
## 2000 rod.hayslett@enron.com 2001-09-12
## 2001 rod.hayslett@enron.com 2001-09-12
## 2002 rod.hayslett@enron.com 2001-09-12
## 2003 rod.hayslett@enron.com 2001-09-12
## 2004 rod.hayslett@enron.com 2001-09-12
## 2005 rod.hayslett@enron.com 2001-09-12
## 2006 rod.hayslett@enron.com 2001-09-10
## 2007 rod.hayslett@enron.com 2001-09-04
## 2008 rod.hayslett@enron.com 2001-09-04
## 2009 rod.hayslett@enron.com 2001-09-04
## 2010 rod.hayslett@enron.com 2001-09-04
## 2011 rod.hayslett@enron.com 2001-09-04
## 2012 rod.hayslett@enron.com 2001-09-04
## 2013 rod.hayslett@enron.com 2001-09-04
## 2014 rod.hayslett@enron.com 2001-09-04
## 2015 rod.hayslett@enron.com 2001-09-07
## 2016 rod.hayslett@enron.com 2001-09-07
## 2017 rod.hayslett@enron.com 2001-09-07
## 2018 rod.hayslett@enron.com 2001-09-07
## 2019 rod.hayslett@enron.com 2001-09-07
## 2020 rod.hayslett@enron.com 2001-09-07
## 2021 rod.hayslett@enron.com 2001-09-07
## 2022 rod.hayslett@enron.com 2001-09-07
## 2023 rod.hayslett@enron.com 2001-09-07
## 2024 rod.hayslett@enron.com 2001-09-07
## 2025 rod.hayslett@enron.com 2001-09-07
## 2026 rod.hayslett@enron.com 2001-09-07
## 2027 rod.hayslett@enron.com 2001-09-07
## 2028 rod.hayslett@enron.com 2001-09-07
## 2029 rod.hayslett@enron.com 2001-09-07
## 2030 rod.hayslett@enron.com 2001-09-07
## 2031 rod.hayslett@enron.com 2001-09-07
## 2032 rod.hayslett@enron.com 2001-09-07
## 2033 rod.hayslett@enron.com 2001-09-07
## 2034 rod.hayslett@enron.com 2001-09-07
## 2035 rod.hayslett@enron.com 2001-09-07
## 2036 rod.hayslett@enron.com 2001-09-07
## 2037 rod.hayslett@enron.com 2001-09-07
## 2038 rod.hayslett@enron.com 2001-09-07
## 2039 rod.hayslett@enron.com 2001-09-07
## 2040 rod.hayslett@enron.com 2001-09-07
## 2041 rod.hayslett@enron.com 2001-09-07
## 2042 rod.hayslett@enron.com 2001-09-07
## 2043 rod.hayslett@enron.com 2001-09-07
## 2044 rod.hayslett@enron.com 2001-09-07
## 2045 rod.hayslett@enron.com 2001-09-07
## 2046 rod.hayslett@enron.com 2001-09-07
## 2047 rod.hayslett@enron.com 2001-09-07
## 2048 rod.hayslett@enron.com 2001-09-04
## 2049 rod.hayslett@enron.com 2001-09-04
## 2050 rod.hayslett@enron.com 2001-09-04
## 2051 rod.hayslett@enron.com 2001-09-04
## 2052 rod.hayslett@enron.com 2001-09-04
## 2053 rod.hayslett@enron.com 2001-09-04
## 2054 rod.hayslett@enron.com 2001-09-04
## 2055 rod.hayslett@enron.com 2001-09-04
## 2056 rod.hayslett@enron.com 2001-09-04
## 2057 rod.hayslett@enron.com 2001-09-04
## 2058 rod.hayslett@enron.com 2001-09-04
## 2059 rod.hayslett@enron.com 2001-09-04
## 2060 rod.hayslett@enron.com 2001-09-04
## 2061 rod.hayslett@enron.com 2001-08-28
## 2062 rod.hayslett@enron.com 2001-08-28
## 2063 rod.hayslett@enron.com 2001-08-28
## 2064 rod.hayslett@enron.com 2001-08-28
## 2065 rod.hayslett@enron.com 2001-08-28
## 2066 rod.hayslett@enron.com 2001-08-28
## 2067 rod.hayslett@enron.com 2001-08-28
## 2068 rod.hayslett@enron.com 2001-08-28
## 2069 rod.hayslett@enron.com 2001-08-28
## 2070 rod.hayslett@enron.com 2001-08-28
## 2071 rod.hayslett@enron.com 2001-08-28
## 2072 rod.hayslett@enron.com 2001-08-28
## 2073 rod.hayslett@enron.com 2001-08-28
## 2074 rod.hayslett@enron.com 2001-08-28
## 2075 rod.hayslett@enron.com 2001-08-28
## 2076 rod.hayslett@enron.com 2001-08-28
## 2077 rod.hayslett@enron.com 2001-08-28
## 2078 rod.hayslett@enron.com 2001-08-28
## 2079 rod.hayslett@enron.com 2001-08-28
## 2080 rod.hayslett@enron.com 2001-08-28
## 2081 rod.hayslett@enron.com 2001-08-28
## 2082 rod.hayslett@enron.com 2001-08-28
## 2083 rod.hayslett@enron.com 2001-08-28
## 2084 rod.hayslett@enron.com 2001-08-24
## 2085 rod.hayslett@enron.com 2001-08-24
## 2086 rod.hayslett@enron.com 2001-08-23
## 2087 rod.hayslett@enron.com 2001-08-23
## 2088 rod.hayslett@enron.com 2001-08-23
## 2089 rod.hayslett@enron.com 2001-08-20
## 2090 rod.hayslett@enron.com 2001-08-20
## 2091 rod.hayslett@enron.com 2001-08-20
## 2092 rod.hayslett@enron.com 2001-08-20
## 2093 rod.hayslett@enron.com 2001-08-20
## 2094 rod.hayslett@enron.com 2001-08-20
## 2095 rod.hayslett@enron.com 2001-08-20
## 2096 rod.hayslett@enron.com 2001-08-20
## 2097 rod.hayslett@enron.com 2001-08-20
## 2098 rod.hayslett@enron.com 2001-08-20
## 2099 rod.hayslett@enron.com 2001-08-17
## 2100 rod.hayslett@enron.com 2001-08-17
## 2101 rod.hayslett@enron.com 2001-08-17
## 2102 rod.hayslett@enron.com 2001-08-17
## 2103 rod.hayslett@enron.com 2001-08-17
## 2104 rod.hayslett@enron.com 2001-08-17
## 2105 rod.hayslett@enron.com 2001-08-17
## 2106 rod.hayslett@enron.com 2001-08-17
## 2107 rod.hayslett@enron.com 2001-08-17
## 2108 rod.hayslett@enron.com 2001-08-17
## 2109 rod.hayslett@enron.com 2001-08-17
## 2110 rod.hayslett@enron.com 2001-08-17
## 2111 rod.hayslett@enron.com 2001-08-17
## 2112 rod.hayslett@enron.com 2001-08-02
## 2113 rod.hayslett@enron.com 2001-08-01
## 2114 rod.hayslett@enron.com 2001-08-01
## 2115 rod.hayslett@enron.com 2001-08-01
## 2116 rod.hayslett@enron.com 2001-08-01
## 2117 rod.hayslett@enron.com 2001-08-01
## 2118 rod.hayslett@enron.com 2001-08-01
## 2119 rod.hayslett@enron.com 2001-08-01
## 2120 rod.hayslett@enron.com 2001-08-01
## 2121 rod.hayslett@enron.com 2001-08-01
## 2122 rod.hayslett@enron.com 2001-08-01
## 2123 rod.hayslett@enron.com 2001-08-01
## 2124 rod.hayslett@enron.com 2001-08-01
## 2125 rod.hayslett@enron.com 2001-08-01
## 2126 rod.hayslett@enron.com 2001-08-01
## 2127 rod.hayslett@enron.com 2001-08-01
## 2128 rod.hayslett@enron.com 2001-08-01
## 2129 rod.hayslett@enron.com 2001-08-01
## 2130 rod.hayslett@enron.com 2001-08-01
## 2131 rod.hayslett@enron.com 2001-07-31
## 2132 rod.hayslett@enron.com 2001-07-31
## 2133 rod.hayslett@enron.com 2001-07-31
## 2134 rod.hayslett@enron.com 2001-07-31
## 2135 rod.hayslett@enron.com 2001-07-31
## 2136 rod.hayslett@enron.com 2001-07-31
## 2137 rod.hayslett@enron.com 2001-07-31
## 2138 rod.hayslett@enron.com 2001-07-31
## 2139 rod.hayslett@enron.com 2001-07-31
## 2140 rod.hayslett@enron.com 2001-07-31
## 2141 rod.hayslett@enron.com 2001-07-31
## 2142 rod.hayslett@enron.com 2001-07-31
## 2143 rod.hayslett@enron.com 2001-07-31
## 2144 kevin.hyatt@enron.com 2001-07-30
## 2145 rod.hayslett@enron.com 2001-07-30
## 2146 rod.hayslett@enron.com 2001-07-27
## 2147 tracy.geaccone@enron.com 2001-11-28
## 2148 tracy.geaccone@enron.com 2001-11-28
## 2149 tracy.geaccone@enron.com 2001-11-28
## 2150 tracy.geaccone@enron.com 2001-11-28
## 2151 tracy.geaccone@enron.com 2001-11-28
## 2152 tracy.geaccone@enron.com 2001-11-28
## 2153 tracy.geaccone@enron.com 2001-11-28
## 2154 tracy.geaccone@enron.com 2001-11-28
## 2155 tracy.geaccone@enron.com 2001-11-28
## 2156 tracy.geaccone@enron.com 2001-11-28
## 2157 tracy.geaccone@enron.com 2001-11-28
## 2158 tracy.geaccone@enron.com 2001-11-28
## 2159 tracy.geaccone@enron.com 2001-11-28
## 2160 tracy.geaccone@enron.com 2001-11-28
## 2161 tracy.geaccone@enron.com 2001-11-28
## 2162 tracy.geaccone@enron.com 2001-11-28
## 2163 tracy.geaccone@enron.com 2001-11-28
## 2164 tracy.geaccone@enron.com 2001-11-28
## 2165 tracy.geaccone@enron.com 2001-11-28
## 2166 tracy.geaccone@enron.com 2001-11-28
## 2167 tracy.geaccone@enron.com 2001-11-28
## 2168 tracy.geaccone@enron.com 2001-11-28
## 2169 tracy.geaccone@enron.com 2001-11-28
## 2170 tracy.geaccone@enron.com 2001-11-27
## 2171 tracy.geaccone@enron.com 2001-11-27
## 2172 tracy.geaccone@enron.com 2001-11-27
## 2173 tracy.geaccone@enron.com 2001-11-27
## 2174 tracy.geaccone@enron.com 2001-11-27
## 2175 tracy.geaccone@enron.com 2001-11-27
## 2176 tracy.geaccone@enron.com 2001-11-27
## 2177 tracy.geaccone@enron.com 2001-11-27
## 2178 tracy.geaccone@enron.com 2001-11-27
## 2179 tracy.geaccone@enron.com 2001-11-27
## 2180 tracy.geaccone@enron.com 2001-11-27
## 2181 tracy.geaccone@enron.com 2001-11-27
## 2182 tracy.geaccone@enron.com 2001-11-27
## 2183 tracy.geaccone@enron.com 2001-11-27
## 2184 tracy.geaccone@enron.com 2001-11-27
## 2185 tracy.geaccone@enron.com 2001-11-27
## 2186 tracy.geaccone@enron.com 2001-11-27
## 2187 tracy.geaccone@enron.com 2001-11-27
## 2188 tracy.geaccone@enron.com 2001-11-27
## 2189 tracy.geaccone@enron.com 2001-11-27
## 2190 tracy.geaccone@enron.com 2001-11-27
## 2191 tracy.geaccone@enron.com 2001-11-27
## 2192 tracy.geaccone@enron.com 2001-11-27
## 2193 tracy.geaccone@enron.com 2001-11-27
## 2194 tracy.geaccone@enron.com 2001-11-27
## 2195 tracy.geaccone@enron.com 2001-11-27
## 2196 tracy.geaccone@enron.com 2001-11-26
## 2197 tracy.geaccone@enron.com 2001-11-26
## 2198 tracy.geaccone@enron.com 2001-11-26
## 2199 tracy.geaccone@enron.com 2001-11-26
## 2200 tracy.geaccone@enron.com 2001-11-26
## 2201 tracy.geaccone@enron.com 2001-11-26
## 2202 tracy.geaccone@enron.com 2001-11-26
## 2203 tracy.geaccone@enron.com 2001-11-26
## 2204 tracy.geaccone@enron.com 2001-11-26
## 2205 tracy.geaccone@enron.com 2001-11-26
## 2206 tracy.geaccone@enron.com 2001-11-26
## 2207 tracy.geaccone@enron.com 2001-11-26
## 2208 tracy.geaccone@enron.com 2001-11-26
## 2209 tracy.geaccone@enron.com 2001-11-26
## 2210 tracy.geaccone@enron.com 2001-11-26
## 2211 tracy.geaccone@enron.com 2001-11-26
## 2212 tracy.geaccone@enron.com 2001-11-26
## 2213 tracy.geaccone@enron.com 2001-11-26
## 2214 tracy.geaccone@enron.com 2001-11-26
## 2215 tracy.geaccone@enron.com 2001-11-26
## 2216 tracy.geaccone@enron.com 2001-11-26
## 2217 tracy.geaccone@enron.com 2001-11-26
## 2218 tracy.geaccone@enron.com 2001-11-26
## 2219 tracy.geaccone@enron.com 2001-11-26
## 2220 tracy.geaccone@enron.com 2001-11-26
## 2221 tracy.geaccone@enron.com 2001-11-21
## 2222 tracy.geaccone@enron.com 2001-11-20
## 2223 tracy.geaccone@enron.com 2001-11-20
## 2224 tracy.geaccone@enron.com 2001-11-20
## 2225 tracy.geaccone@enron.com 2001-11-20
## 2226 tracy.geaccone@enron.com 2001-11-20
## 2227 tracy.geaccone@enron.com 2001-11-20
## 2228 tracy.geaccone@enron.com 2001-11-20
## 2229 tracy.geaccone@enron.com 2001-11-20
## 2230 tracy.geaccone@enron.com 2001-11-20
## 2231 tracy.geaccone@enron.com 2001-11-20
## 2232 tracy.geaccone@enron.com 2001-11-20
## 2233 tracy.geaccone@enron.com 2001-11-20
## 2234 tracy.geaccone@enron.com 2001-11-19
## 2235 tracy.geaccone@enron.com 2001-11-19
## 2236 tracy.geaccone@enron.com 2001-11-16
## 2237 tracy.geaccone@enron.com 2001-11-16
## 2238 tracy.geaccone@enron.com 2001-11-16
## 2239 tracy.geaccone@enron.com 2001-11-16
## 2240 tracy.geaccone@enron.com 2001-11-16
## 2241 tracy.geaccone@enron.com 2001-11-16
## 2242 tracy.geaccone@enron.com 2001-11-16
## 2243 tracy.geaccone@enron.com 2001-11-16
## 2244 tracy.geaccone@enron.com 2001-11-16
## 2245 tracy.geaccone@enron.com 2001-11-16
## 2246 tracy.geaccone@enron.com 2001-11-16
## 2247 tracy.geaccone@enron.com 2001-11-16
## 2248 tracy.geaccone@enron.com 2001-11-16
## 2249 tracy.geaccone@enron.com 2001-11-16
## 2250 tracy.geaccone@enron.com 2001-11-16
## 2251 tracy.geaccone@enron.com 2001-11-16
## 2252 tracy.geaccone@enron.com 2001-11-16
## 2253 tracy.geaccone@enron.com 2001-11-16
## 2254 tracy.geaccone@enron.com 2001-11-16
## 2255 tracy.geaccone@enron.com 2001-11-16
## 2256 tracy.geaccone@enron.com 2001-11-16
## 2257 tracy.geaccone@enron.com 2001-11-16
## 2258 tracy.geaccone@enron.com 2001-11-16
## 2259 tracy.geaccone@enron.com 2001-11-16
## 2260 tracy.geaccone@enron.com 2001-11-16
## 2261 tracy.geaccone@enron.com 2001-11-15
## 2262 tracy.geaccone@enron.com 2001-11-15
## 2263 tracy.geaccone@enron.com 2001-11-15
## 2264 tracy.geaccone@enron.com 2001-11-15
## 2265 tracy.geaccone@enron.com 2001-11-15
## 2266 tracy.geaccone@enron.com 2001-11-14
## 2267 tracy.geaccone@enron.com 2001-11-14
## 2268 tracy.geaccone@enron.com 2001-11-14
## 2269 tracy.geaccone@enron.com 2001-11-14
## 2270 tracy.geaccone@enron.com 2001-11-14
## 2271 tracy.geaccone@enron.com 2001-11-13
## 2272 tracy.geaccone@enron.com 2001-11-13
## 2273 tracy.geaccone@enron.com 2001-11-13
## 2274 tracy.geaccone@enron.com 2001-11-13
## 2275 tracy.geaccone@enron.com 2001-11-13
## 2276 tracy.geaccone@enron.com 2001-11-13
## 2277 tracy.geaccone@enron.com 2001-11-13
## 2278 tracy.geaccone@enron.com 2001-11-13
## 2279 tracy.geaccone@enron.com 2001-11-13
## 2280 tracy.geaccone@enron.com 2001-11-13
## 2281 tracy.geaccone@enron.com 2001-11-13
## 2282 tracy.geaccone@enron.com 2001-11-13
## 2283 tracy.geaccone@enron.com 2001-11-12
## 2284 tracy.geaccone@enron.com 2001-11-12
## 2285 tracy.geaccone@enron.com 2001-11-12
## 2286 tracy.geaccone@enron.com 2001-11-12
## 2287 tracy.geaccone@enron.com 2001-11-12
## 2288 tracy.geaccone@enron.com 2001-11-12
## 2289 tracy.geaccone@enron.com 2001-11-12
## 2290 tracy.geaccone@enron.com 2001-11-12
## 2291 tracy.geaccone@enron.com 2001-11-12
## 2292 tracy.geaccone@enron.com 2001-11-12
## 2293 tracy.geaccone@enron.com 2001-11-12
## 2294 tracy.geaccone@enron.com 2001-11-12
## 2295 tracy.geaccone@enron.com 2001-11-12
## 2296 tracy.geaccone@enron.com 2001-11-09
## 2297 tracy.geaccone@enron.com 2001-11-08
## 2298 tracy.geaccone@enron.com 2001-11-08
## 2299 tracy.geaccone@enron.com 2001-11-08
## 2300 tracy.geaccone@enron.com 2001-11-08
## 2301 tracy.geaccone@enron.com 2001-11-08
## 2302 tracy.geaccone@enron.com 2001-11-08
## 2303 tracy.geaccone@enron.com 2001-11-08
## 2304 tracy.geaccone@enron.com 2001-11-08
## 2305 tracy.geaccone@enron.com 2001-11-08
## 2306 tracy.geaccone@enron.com 2001-11-08
## 2307 tracy.geaccone@enron.com 2001-11-07
## 2308 tracy.geaccone@enron.com 2001-11-07
## 2309 tracy.geaccone@enron.com 2001-11-07
## 2310 tracy.geaccone@enron.com 2001-11-07
## 2311 tracy.geaccone@enron.com 2001-11-07
## 2312 tracy.geaccone@enron.com 2001-11-07
## 2313 tracy.geaccone@enron.com 2001-11-07
## 2314 tracy.geaccone@enron.com 2001-11-07
## 2315 tracy.geaccone@enron.com 2001-11-07
## 2316 tracy.geaccone@enron.com 2001-11-07
## 2317 tracy.geaccone@enron.com 2001-11-07
## 2318 tracy.geaccone@enron.com 2001-11-07
## 2319 tracy.geaccone@enron.com 2001-11-07
## 2320 tracy.geaccone@enron.com 2001-11-07
## 2321 tracy.geaccone@enron.com 2001-11-07
## 2322 tracy.geaccone@enron.com 2001-11-07
## 2323 tracy.geaccone@enron.com 2001-11-07
## 2324 tracy.geaccone@enron.com 2001-11-07
## 2325 tracy.geaccone@enron.com 2001-11-07
## 2326 tracy.geaccone@enron.com 2001-11-07
## 2327 tracy.geaccone@enron.com 2001-11-07
## 2328 tracy.geaccone@enron.com 2001-11-07
## 2329 tracy.geaccone@enron.com 2001-11-07
## 2330 tracy.geaccone@enron.com 2001-11-07
## 2331 tracy.geaccone@enron.com 2001-11-07
## 2332 tracy.geaccone@enron.com 2001-11-07
## 2333 tracy.geaccone@enron.com 2001-11-07
## 2334 tracy.geaccone@enron.com 2001-11-07
## 2335 tracy.geaccone@enron.com 2001-11-07
## 2336 tracy.geaccone@enron.com 2001-11-07
## 2337 tracy.geaccone@enron.com 2001-11-07
## 2338 tracy.geaccone@enron.com 2001-11-07
## 2339 tracy.geaccone@enron.com 2001-11-07
## 2340 tracy.geaccone@enron.com 2001-11-07
## 2341 tracy.geaccone@enron.com 2001-11-07
## 2342 tracy.geaccone@enron.com 2001-11-07
## 2343 tracy.geaccone@enron.com 2001-11-07
## 2344 tracy.geaccone@enron.com 2001-11-07
## 2345 tracy.geaccone@enron.com 2001-11-07
## 2346 tracy.geaccone@enron.com 2001-11-07
## 2347 tracy.geaccone@enron.com 2001-11-07
## 2348 tracy.geaccone@enron.com 2001-11-07
## 2349 tracy.geaccone@enron.com 2001-11-07
## 2350 tracy.geaccone@enron.com 2001-11-07
## 2351 tracy.geaccone@enron.com 2001-11-07
## 2352 tracy.geaccone@enron.com 2001-11-07
## 2353 tracy.geaccone@enron.com 2001-11-07
## 2354 tracy.geaccone@enron.com 2001-11-07
## 2355 tracy.geaccone@enron.com 2001-11-07
## 2356 tracy.geaccone@enron.com 2001-11-07
## 2357 tracy.geaccone@enron.com 2001-11-07
## 2358 tracy.geaccone@enron.com 2001-11-07
## 2359 tracy.geaccone@enron.com 2001-11-07
## 2360 tracy.geaccone@enron.com 2001-11-07
## 2361 tracy.geaccone@enron.com 2001-11-07
## 2362 tracy.geaccone@enron.com 2001-11-07
## 2363 tracy.geaccone@enron.com 2001-11-07
## 2364 tracy.geaccone@enron.com 2001-11-07
## 2365 tracy.geaccone@enron.com 2001-11-07
## 2366 tracy.geaccone@enron.com 2001-11-07
## 2367 tracy.geaccone@enron.com 2001-11-06
## 2368 tracy.geaccone@enron.com 2001-11-06
## 2369 tracy.geaccone@enron.com 2001-11-06
## 2370 tracy.geaccone@enron.com 2001-11-06
## 2371 tracy.geaccone@enron.com 2001-11-06
## 2372 tracy.geaccone@enron.com 2001-11-06
## 2373 tracy.geaccone@enron.com 2001-11-06
## 2374 tracy.geaccone@enron.com 2001-11-06
## 2375 tracy.geaccone@enron.com 2001-11-06
## 2376 tracy.geaccone@enron.com 2001-11-06
## 2377 tracy.geaccone@enron.com 2001-11-06
## 2378 tracy.geaccone@enron.com 2001-11-06
## 2379 tracy.geaccone@enron.com 2001-11-06
## 2380 tracy.geaccone@enron.com 2001-11-06
## 2381 tracy.geaccone@enron.com 2001-11-06
## 2382 tracy.geaccone@enron.com 2001-11-06
## 2383 tracy.geaccone@enron.com 2001-11-05
## 2384 tracy.geaccone@enron.com 2001-11-05
## 2385 tracy.geaccone@enron.com 2001-11-05
## 2386 tracy.geaccone@enron.com 2001-11-05
## 2387 tracy.geaccone@enron.com 2001-11-05
## 2388 tracy.geaccone@enron.com 2001-11-05
## 2389 tracy.geaccone@enron.com 2001-11-05
## 2390 tracy.geaccone@enron.com 2001-11-05
## 2391 tracy.geaccone@enron.com 2001-11-05
## 2392 tracy.geaccone@enron.com 2001-11-05
## 2393 tracy.geaccone@enron.com 2001-11-05
## 2394 tracy.geaccone@enron.com 2001-11-05
## 2395 tracy.geaccone@enron.com 2001-11-05
## 2396 tracy.geaccone@enron.com 2001-11-05
## 2397 tracy.geaccone@enron.com 2001-11-05
## 2398 tracy.geaccone@enron.com 2001-11-05
## 2399 tracy.geaccone@enron.com 2001-11-05
## 2400 tracy.geaccone@enron.com 2001-11-05
## 2401 tracy.geaccone@enron.com 2001-11-05
## 2402 tracy.geaccone@enron.com 2001-11-05
## 2403 tracy.geaccone@enron.com 2001-11-05
## 2404 tracy.geaccone@enron.com 2001-11-05
## 2405 tracy.geaccone@enron.com 2001-11-05
## 2406 tracy.geaccone@enron.com 2001-11-05
## 2407 tracy.geaccone@enron.com 2001-11-05
## 2408 tracy.geaccone@enron.com 2001-11-05
## 2409 tracy.geaccone@enron.com 2001-11-05
## 2410 tracy.geaccone@enron.com 2001-11-05
## 2411 tracy.geaccone@enron.com 2001-11-05
## 2412 tracy.geaccone@enron.com 2001-11-04
## 2413 tracy.geaccone@enron.com 2001-11-04
## 2414 tracy.geaccone@enron.com 2001-11-03
## 2415 tracy.geaccone@enron.com 2001-11-03
## 2416 tracy.geaccone@enron.com 2001-11-03
## 2417 tracy.geaccone@enron.com 2001-11-03
## 2418 tracy.geaccone@enron.com 2001-11-03
## 2419 tracy.geaccone@enron.com 2001-11-03
## 2420 tracy.geaccone@enron.com 2001-11-02
## 2421 tracy.geaccone@enron.com 2001-11-02
## 2422 tracy.geaccone@enron.com 2001-11-02
## 2423 tracy.geaccone@enron.com 2001-11-02
## 2424 tracy.geaccone@enron.com 2001-11-01
## 2425 tracy.geaccone@enron.com 2001-10-31
## 2426 tracy.geaccone@enron.com 2001-10-31
## 2427 tracy.geaccone@enron.com 2001-10-31
## 2428 tracy.geaccone@enron.com 2001-10-31
## 2429 tracy.geaccone@enron.com 2001-10-31
## 2430 tracy.geaccone@enron.com 2001-10-31
## 2431 tracy.geaccone@enron.com 2001-10-31
## 2432 tracy.geaccone@enron.com 2001-10-31
## 2433 tracy.geaccone@enron.com 2001-10-31
## 2434 tracy.geaccone@enron.com 2001-10-31
## 2435 tracy.geaccone@enron.com 2001-10-31
## 2436 tracy.geaccone@enron.com 2001-10-31
## 2437 tracy.geaccone@enron.com 2001-10-31
## 2438 tracy.geaccone@enron.com 2001-10-31
## 2439 tracy.geaccone@enron.com 2001-10-31
## 2440 tracy.geaccone@enron.com 2001-10-31
## 2441 tracy.geaccone@enron.com 2001-10-31
## 2442 tracy.geaccone@enron.com 2001-10-31
## 2443 tracy.geaccone@enron.com 2001-10-31
## 2444 tracy.geaccone@enron.com 2001-10-31
## 2445 tracy.geaccone@enron.com 2001-10-31
## 2446 tracy.geaccone@enron.com 2001-10-31
## 2447 tracy.geaccone@enron.com 2001-10-31
## 2448 tracy.geaccone@enron.com 2001-10-31
## 2449 tracy.geaccone@enron.com 2001-10-31
## 2450 tracy.geaccone@enron.com 2001-10-31
## 2451 tracy.geaccone@enron.com 2001-10-30
## 2452 tracy.geaccone@enron.com 2001-10-30
## 2453 tracy.geaccone@enron.com 2001-10-30
## 2454 tracy.geaccone@enron.com 2001-10-30
## 2455 tracy.geaccone@enron.com 2001-10-30
## 2456 tracy.geaccone@enron.com 2001-10-30
## 2457 tracy.geaccone@enron.com 2001-10-30
## 2458 tracy.geaccone@enron.com 2001-10-30
## 2459 tracy.geaccone@enron.com 2001-10-30
## 2460 tracy.geaccone@enron.com 2001-10-30
## 2461 tracy.geaccone@enron.com 2001-10-30
## 2462 tracy.geaccone@enron.com 2001-10-30
## 2463 tracy.geaccone@enron.com 2001-10-30
## 2464 tracy.geaccone@enron.com 2001-10-30
## 2465 tracy.geaccone@enron.com 2001-10-30
## 2466 tracy.geaccone@enron.com 2001-10-30
## 2467 tracy.geaccone@enron.com 2001-10-30
## 2468 tracy.geaccone@enron.com 2001-10-30
## 2469 tracy.geaccone@enron.com 2001-10-30
## 2470 tracy.geaccone@enron.com 2001-10-29
## 2471 tracy.geaccone@enron.com 2001-10-29
## 2472 tracy.geaccone@enron.com 2001-10-29
## 2473 tracy.geaccone@enron.com 2001-10-29
## 2474 tracy.geaccone@enron.com 2001-10-29
## 2475 tracy.geaccone@enron.com 2001-10-29
## 2476 tracy.geaccone@enron.com 2001-10-29
## 2477 tracy.geaccone@enron.com 2001-10-29
## 2478 tracy.geaccone@enron.com 2001-10-29
## 2479 tracy.geaccone@enron.com 2001-10-29
## 2480 tracy.geaccone@enron.com 2001-10-29
## 2481 tracy.geaccone@enron.com 2001-10-29
## 2482 tracy.geaccone@enron.com 2001-10-29
## 2483 tracy.geaccone@enron.com 2001-10-29
## 2484 tracy.geaccone@enron.com 2001-10-29
## 2485 tracy.geaccone@enron.com 2001-10-29
## 2486 tracy.geaccone@enron.com 2001-10-29
## 2487 tracy.geaccone@enron.com 2001-10-29
## 2488 tracy.geaccone@enron.com 2001-10-29
## 2489 tracy.geaccone@enron.com 2001-10-29
## 2490 tracy.geaccone@enron.com 2001-10-29
## 2491 tracy.geaccone@enron.com 2001-10-29
## 2492 tracy.geaccone@enron.com 2001-10-29
## 2493 tracy.geaccone@enron.com 2001-10-29
## 2494 tracy.geaccone@enron.com 2001-10-29
## 2495 tracy.geaccone@enron.com 2001-10-26
## 2496 tracy.geaccone@enron.com 2001-10-26
## 2497 tracy.geaccone@enron.com 2001-10-26
## 2498 tracy.geaccone@enron.com 2001-10-26
## 2499 tracy.geaccone@enron.com 2001-10-26
## 2500 tracy.geaccone@enron.com 2001-10-26
## 2501 tracy.geaccone@enron.com 2001-10-26
## 2502 tracy.geaccone@enron.com 2001-10-26
## 2503 tracy.geaccone@enron.com 2001-10-26
## 2504 tracy.geaccone@enron.com 2001-10-26
## 2505 tracy.geaccone@enron.com 2001-10-26
## 2506 tracy.geaccone@enron.com 2001-10-26
## 2507 tracy.geaccone@enron.com 2001-10-25
## 2508 tracy.geaccone@enron.com 2001-10-25
## 2509 tracy.geaccone@enron.com 2001-10-25
## 2510 tracy.geaccone@enron.com 2001-10-25
## 2511 tracy.geaccone@enron.com 2001-10-25
## 2512 tracy.geaccone@enron.com 2001-10-25
## 2513 tracy.geaccone@enron.com 2001-10-25
## 2514 tracy.geaccone@enron.com 2001-10-25
## 2515 tracy.geaccone@enron.com 2001-10-25
## 2516 tracy.geaccone@enron.com 2001-10-25
## 2517 tracy.geaccone@enron.com 2001-10-25
## 2518 tracy.geaccone@enron.com 2001-10-25
## 2519 tracy.geaccone@enron.com 2001-10-25
## 2520 tracy.geaccone@enron.com 2001-10-25
## 2521 tracy.geaccone@enron.com 2001-10-25
## 2522 tracy.geaccone@enron.com 2001-10-25
## 2523 tracy.geaccone@enron.com 2001-10-25
## 2524 tracy.geaccone@enron.com 2001-10-25
## 2525 tracy.geaccone@enron.com 2001-10-25
## 2526 tracy.geaccone@enron.com 2001-10-25
## 2527 tracy.geaccone@enron.com 2001-10-24
## 2528 tracy.geaccone@enron.com 2001-10-24
## 2529 tracy.geaccone@enron.com 2001-10-24
## 2530 tracy.geaccone@enron.com 2001-10-24
## 2531 tracy.geaccone@enron.com 2001-10-24
## 2532 tracy.geaccone@enron.com 2001-10-24
## 2533 tracy.geaccone@enron.com 2001-10-24
## 2534 tracy.geaccone@enron.com 2001-10-24
## 2535 tracy.geaccone@enron.com 2001-10-24
## 2536 tracy.geaccone@enron.com 2001-10-24
## 2537 tracy.geaccone@enron.com 2001-10-24
## 2538 tracy.geaccone@enron.com 2001-10-24
## 2539 tracy.geaccone@enron.com 2001-10-24
## 2540 tracy.geaccone@enron.com 2001-10-24
## 2541 tracy.geaccone@enron.com 2001-10-24
## 2542 tracy.geaccone@enron.com 2001-10-24
## 2543 tracy.geaccone@enron.com 2001-10-24
## 2544 tracy.geaccone@enron.com 2001-10-24
## 2545 tracy.geaccone@enron.com 2001-10-24
## 2546 tracy.geaccone@enron.com 2001-10-24
## 2547 tracy.geaccone@enron.com 2001-10-24
## 2548 tracy.geaccone@enron.com 2001-10-24
## 2549 tracy.geaccone@enron.com 2001-10-24
## 2550 tracy.geaccone@enron.com 2001-10-24
## 2551 tracy.geaccone@enron.com 2001-10-24
## 2552 tracy.geaccone@enron.com 2001-10-23
## 2553 tracy.geaccone@enron.com 2001-10-23
## 2554 tracy.geaccone@enron.com 2001-10-23
## 2555 tracy.geaccone@enron.com 2001-10-23
## 2556 tracy.geaccone@enron.com 2001-10-23
## 2557 tracy.geaccone@enron.com 2001-10-23
## 2558 tracy.geaccone@enron.com 2001-10-23
## 2559 tracy.geaccone@enron.com 2001-10-23
## 2560 tracy.geaccone@enron.com 2001-10-23
## 2561 tracy.geaccone@enron.com 2001-10-23
## 2562 tracy.geaccone@enron.com 2001-10-23
## 2563 tracy.geaccone@enron.com 2001-10-23
## 2564 tracy.geaccone@enron.com 2001-10-23
## 2565 tracy.geaccone@enron.com 2001-10-23
## 2566 tracy.geaccone@enron.com 2001-10-23
## 2567 tracy.geaccone@enron.com 2001-10-23
## 2568 tracy.geaccone@enron.com 2001-10-23
## 2569 tracy.geaccone@enron.com 2001-10-23
## 2570 tracy.geaccone@enron.com 2001-10-23
## 2571 tracy.geaccone@enron.com 2001-10-23
## 2572 tracy.geaccone@enron.com 2001-10-23
## 2573 tracy.geaccone@enron.com 2001-10-23
## 2574 tracy.geaccone@enron.com 2001-10-23
## 2575 tracy.geaccone@enron.com 2001-10-23
## 2576 tracy.geaccone@enron.com 2001-10-23
## 2577 tracy.geaccone@enron.com 2001-10-23
## 2578 tracy.geaccone@enron.com 2001-10-23
## 2579 tracy.geaccone@enron.com 2001-10-23
## 2580 tracy.geaccone@enron.com 2001-10-23
## 2581 tracy.geaccone@enron.com 2001-10-23
## 2582 tracy.geaccone@enron.com 2001-10-23
## 2583 tracy.geaccone@enron.com 2001-10-23
## 2584 tracy.geaccone@enron.com 2001-10-23
## 2585 tracy.geaccone@enron.com 2001-10-23
## 2586 tracy.geaccone@enron.com 2001-10-23
## 2587 tracy.geaccone@enron.com 2001-10-23
## 2588 tracy.geaccone@enron.com 2001-10-23
## 2589 tracy.geaccone@enron.com 2001-10-23
## 2590 tracy.geaccone@enron.com 2001-10-23
## 2591 tracy.geaccone@enron.com 2001-10-23
## 2592 tracy.geaccone@enron.com 2001-10-23
## 2593 tracy.geaccone@enron.com 2001-10-23
## 2594 tracy.geaccone@enron.com 2001-10-23
## 2595 tracy.geaccone@enron.com 2001-10-23
## 2596 tracy.geaccone@enron.com 2001-10-23
## 2597 tracy.geaccone@enron.com 2001-10-23
## 2598 tracy.geaccone@enron.com 2001-10-23
## 2599 tracy.geaccone@enron.com 2001-10-23
## 2600 tracy.geaccone@enron.com 2001-10-23
## 2601 tracy.geaccone@enron.com 2001-10-23
## 2602 tracy.geaccone@enron.com 2001-10-23
## 2603 tracy.geaccone@enron.com 2001-10-23
## 2604 tracy.geaccone@enron.com 2001-10-23
## 2605 tracy.geaccone@enron.com 2001-10-23
## 2606 tracy.geaccone@enron.com 2001-10-23
## 2607 tracy.geaccone@enron.com 2001-10-23
## 2608 tracy.geaccone@enron.com 2001-10-23
## 2609 tracy.geaccone@enron.com 2001-10-23
## 2610 tracy.geaccone@enron.com 2001-10-23
## 2611 tracy.geaccone@enron.com 2001-10-23
## 2612 tracy.geaccone@enron.com 2001-10-23
## 2613 tracy.geaccone@enron.com 2001-10-23
## 2614 tracy.geaccone@enron.com 2001-10-23
## 2615 tracy.geaccone@enron.com 2001-10-23
## 2616 tracy.geaccone@enron.com 2001-10-23
## 2617 tracy.geaccone@enron.com 2001-10-22
## 2618 tracy.geaccone@enron.com 2001-10-22
## 2619 tracy.geaccone@enron.com 2001-10-22
## 2620 tracy.geaccone@enron.com 2001-10-22
## 2621 tracy.geaccone@enron.com 2001-10-22
## 2622 tracy.geaccone@enron.com 2001-10-22
## 2623 tracy.geaccone@enron.com 2001-10-22
## 2624 tracy.geaccone@enron.com 2001-10-22
## 2625 tracy.geaccone@enron.com 2001-10-22
## 2626 tracy.geaccone@enron.com 2001-10-22
## 2627 tracy.geaccone@enron.com 2001-10-22
## 2628 tracy.geaccone@enron.com 2001-10-22
## 2629 tracy.geaccone@enron.com 2001-10-22
## 2630 tracy.geaccone@enron.com 2001-10-22
## 2631 tracy.geaccone@enron.com 2001-10-22
## 2632 tracy.geaccone@enron.com 2001-10-22
## 2633 tracy.geaccone@enron.com 2001-10-22
## 2634 tracy.geaccone@enron.com 2001-10-22
## 2635 tracy.geaccone@enron.com 2001-10-22
## 2636 tracy.geaccone@enron.com 2001-10-22
## 2637 tracy.geaccone@enron.com 2001-10-22
## 2638 tracy.geaccone@enron.com 2001-10-22
## 2639 tracy.geaccone@enron.com 2001-10-22
## 2640 tracy.geaccone@enron.com 2001-10-22
## 2641 tracy.geaccone@enron.com 2001-10-22
## 2642 tracy.geaccone@enron.com 2001-10-22
## 2643 tracy.geaccone@enron.com 2001-10-22
## 2644 tracy.geaccone@enron.com 2001-10-22
## 2645 tracy.geaccone@enron.com 2001-10-22
## 2646 tracy.geaccone@enron.com 2001-10-22
## 2647 tracy.geaccone@enron.com 2001-10-22
## 2648 tracy.geaccone@enron.com 2001-10-22
## 2649 tracy.geaccone@enron.com 2001-10-22
## 2650 tracy.geaccone@enron.com 2001-10-22
## 2651 tracy.geaccone@enron.com 2001-10-22
## 2652 tracy.geaccone@enron.com 2001-10-22
## 2653 tracy.geaccone@enron.com 2001-10-22
## 2654 tracy.geaccone@enron.com 2001-10-22
## 2655 tracy.geaccone@enron.com 2001-10-22
## 2656 tracy.geaccone@enron.com 2001-10-22
## 2657 tracy.geaccone@enron.com 2001-10-22
## 2658 tracy.geaccone@enron.com 2001-10-19
## 2659 tracy.geaccone@enron.com 2001-10-19
## 2660 tracy.geaccone@enron.com 2001-10-19
## 2661 tracy.geaccone@enron.com 2001-10-19
## 2662 tracy.geaccone@enron.com 2001-10-19
## 2663 tracy.geaccone@enron.com 2001-10-19
## 2664 tracy.geaccone@enron.com 2001-10-19
## 2665 tracy.geaccone@enron.com 2001-10-19
## 2666 tracy.geaccone@enron.com 2001-10-19
## 2667 tracy.geaccone@enron.com 2001-10-19
## 2668 tracy.geaccone@enron.com 2001-10-19
## 2669 tracy.geaccone@enron.com 2001-10-19
## 2670 tracy.geaccone@enron.com 2001-10-19
## 2671 tracy.geaccone@enron.com 2001-10-19
## 2672 tracy.geaccone@enron.com 2001-10-19
## 2673 tracy.geaccone@enron.com 2001-10-19
## 2674 tracy.geaccone@enron.com 2001-10-19
## 2675 tracy.geaccone@enron.com 2001-10-19
## 2676 tracy.geaccone@enron.com 2001-10-19
## 2677 tracy.geaccone@enron.com 2001-10-19
## 2678 tracy.geaccone@enron.com 2001-10-19
## 2679 tracy.geaccone@enron.com 2001-10-19
## 2680 tracy.geaccone@enron.com 2001-10-19
## 2681 tracy.geaccone@enron.com 2001-10-19
## 2682 tracy.geaccone@enron.com 2001-10-18
## 2683 tracy.geaccone@enron.com 2001-10-18
## 2684 tracy.geaccone@enron.com 2001-10-18
## 2685 tracy.geaccone@enron.com 2001-10-18
## 2686 tracy.geaccone@enron.com 2001-10-18
## 2687 tracy.geaccone@enron.com 2001-10-18
## 2688 tracy.geaccone@enron.com 2001-10-18
## 2689 tracy.geaccone@enron.com 2001-10-18
## 2690 tracy.geaccone@enron.com 2001-10-18
## 2691 tracy.geaccone@enron.com 2001-10-18
## 2692 tracy.geaccone@enron.com 2001-10-18
## 2693 tracy.geaccone@enron.com 2001-10-18
## 2694 tracy.geaccone@enron.com 2001-10-18
## 2695 tracy.geaccone@enron.com 2001-10-18
## 2696 tracy.geaccone@enron.com 2001-10-18
## 2697 tracy.geaccone@enron.com 2001-10-18
## 2698 tracy.geaccone@enron.com 2001-10-18
## 2699 tracy.geaccone@enron.com 2001-10-18
## 2700 tracy.geaccone@enron.com 2001-10-18
## 2701 tracy.geaccone@enron.com 2001-10-18
## 2702 tracy.geaccone@enron.com 2001-10-18
## 2703 tracy.geaccone@enron.com 2001-10-18
## 2704 tracy.geaccone@enron.com 2001-10-18
## 2705 tracy.geaccone@enron.com 2001-10-18
## 2706 tracy.geaccone@enron.com 2001-10-18
## 2707 tracy.geaccone@enron.com 2001-10-18
## 2708 tracy.geaccone@enron.com 2001-10-18
## 2709 tracy.geaccone@enron.com 2001-10-18
## 2710 tracy.geaccone@enron.com 2001-10-18
## 2711 tracy.geaccone@enron.com 2001-10-18
## 2712 tracy.geaccone@enron.com 2001-10-18
## 2713 tracy.geaccone@enron.com 2001-10-18
## 2714 tracy.geaccone@enron.com 2001-10-18
## 2715 tracy.geaccone@enron.com 2001-10-18
## 2716 tracy.geaccone@enron.com 2001-10-18
## 2717 tracy.geaccone@enron.com 2001-10-18
## 2718 tracy.geaccone@enron.com 2001-10-18
## 2719 tracy.geaccone@enron.com 2001-10-18
## 2720 tracy.geaccone@enron.com 2001-10-18
## 2721 tracy.geaccone@enron.com 2001-10-18
## 2722 tracy.geaccone@enron.com 2001-10-18
## 2723 tracy.geaccone@enron.com 2001-10-18
## 2724 tracy.geaccone@enron.com 2001-10-18
## 2725 tracy.geaccone@enron.com 2001-10-18
## 2726 tracy.geaccone@enron.com 2001-10-18
## 2727 tracy.geaccone@enron.com 2001-10-18
## 2728 tracy.geaccone@enron.com 2001-10-18
## 2729 tracy.geaccone@enron.com 2001-10-18
## 2730 tracy.geaccone@enron.com 2001-10-18
## 2731 tracy.geaccone@enron.com 2001-10-18
## 2732 tracy.geaccone@enron.com 2001-10-18
## 2733 tracy.geaccone@enron.com 2001-10-18
## 2734 tracy.geaccone@enron.com 2001-10-18
## 2735 tracy.geaccone@enron.com 2001-10-18
## 2736 tracy.geaccone@enron.com 2001-10-18
## 2737 tracy.geaccone@enron.com 2001-10-18
## 2738 tracy.geaccone@enron.com 2001-10-18
## 2739 tracy.geaccone@enron.com 2001-10-18
## 2740 tracy.geaccone@enron.com 2001-10-18
## 2741 tracy.geaccone@enron.com 2001-10-18
## 2742 tracy.geaccone@enron.com 2001-10-18
## 2743 tracy.geaccone@enron.com 2001-10-18
## 2744 tracy.geaccone@enron.com 2001-10-18
## 2745 tracy.geaccone@enron.com 2001-10-18
## 2746 tracy.geaccone@enron.com 2001-10-18
## 2747 tracy.geaccone@enron.com 2001-10-18
## 2748 tracy.geaccone@enron.com 2001-10-18
## 2749 tracy.geaccone@enron.com 2001-10-18
## 2750 tracy.geaccone@enron.com 2001-10-18
## 2751 tracy.geaccone@enron.com 2001-10-18
## 2752 tracy.geaccone@enron.com 2001-10-18
## 2753 tracy.geaccone@enron.com 2001-10-18
## 2754 tracy.geaccone@enron.com 2001-10-18
## 2755 tracy.geaccone@enron.com 2001-10-18
## 2756 tracy.geaccone@enron.com 2001-10-18
## 2757 tracy.geaccone@enron.com 2001-10-18
## 2758 tracy.geaccone@enron.com 2001-10-18
## 2759 tracy.geaccone@enron.com 2001-10-18
## 2760 tracy.geaccone@enron.com 2001-10-18
## 2761 tracy.geaccone@enron.com 2001-10-18
## 2762 tracy.geaccone@enron.com 2001-10-18
## 2763 tracy.geaccone@enron.com 2001-10-16
## 2764 tracy.geaccone@enron.com 2001-10-16
## 2765 tracy.geaccone@enron.com 2001-10-16
## 2766 tracy.geaccone@enron.com 2001-10-16
## 2767 tracy.geaccone@enron.com 2001-10-16
## 2768 tracy.geaccone@enron.com 2001-10-16
## 2769 tracy.geaccone@enron.com 2001-10-16
## 2770 tracy.geaccone@enron.com 2001-10-16
## 2771 tracy.geaccone@enron.com 2001-10-16
## 2772 tracy.geaccone@enron.com 2001-10-16
## 2773 tracy.geaccone@enron.com 2001-10-16
## 2774 tracy.geaccone@enron.com 2001-10-16
## 2775 tracy.geaccone@enron.com 2001-10-16
## 2776 tracy.geaccone@enron.com 2001-10-16
## 2777 tracy.geaccone@enron.com 2001-10-16
## 2778 tracy.geaccone@enron.com 2001-10-16
## 2779 tracy.geaccone@enron.com 2001-10-16
## 2780 tracy.geaccone@enron.com 2001-10-16
## 2781 tracy.geaccone@enron.com 2001-10-16
## 2782 tracy.geaccone@enron.com 2001-10-16
## 2783 tracy.geaccone@enron.com 2001-10-16
## 2784 tracy.geaccone@enron.com 2001-10-16
## 2785 tracy.geaccone@enron.com 2001-10-16
## 2786 tracy.geaccone@enron.com 2001-10-16
## 2787 tracy.geaccone@enron.com 2001-10-16
## 2788 tracy.geaccone@enron.com 2001-10-16
## 2789 tracy.geaccone@enron.com 2001-10-16
## 2790 tracy.geaccone@enron.com 2001-10-16
## 2791 tracy.geaccone@enron.com 2001-10-16
## 2792 tracy.geaccone@enron.com 2001-10-16
## 2793 tracy.geaccone@enron.com 2001-10-16
## 2794 tracy.geaccone@enron.com 2001-10-16
## 2795 tracy.geaccone@enron.com 2001-10-16
## 2796 tracy.geaccone@enron.com 2001-10-16
## 2797 tracy.geaccone@enron.com 2001-10-16
## 2798 tracy.geaccone@enron.com 2001-10-16
## 2799 tracy.geaccone@enron.com 2001-10-16
## 2800 tracy.geaccone@enron.com 2001-10-16
## 2801 tracy.geaccone@enron.com 2001-10-16
## 2802 tracy.geaccone@enron.com 2001-10-16
## 2803 tracy.geaccone@enron.com 2001-10-16
## 2804 tracy.geaccone@enron.com 2001-10-16
## 2805 tracy.geaccone@enron.com 2001-10-16
## 2806 tracy.geaccone@enron.com 2001-10-16
## 2807 tracy.geaccone@enron.com 2001-10-16
## 2808 tracy.geaccone@enron.com 2001-10-16
## 2809 tracy.geaccone@enron.com 2001-10-16
## 2810 tracy.geaccone@enron.com 2001-10-16
## 2811 tracy.geaccone@enron.com 2001-10-16
## 2812 tracy.geaccone@enron.com 2001-10-16
## 2813 tracy.geaccone@enron.com 2001-10-16
## 2814 tracy.geaccone@enron.com 2001-10-16
## 2815 tracy.geaccone@enron.com 2001-10-16
## 2816 tracy.geaccone@enron.com 2001-10-16
## 2817 tracy.geaccone@enron.com 2001-10-16
## 2818 tracy.geaccone@enron.com 2001-10-16
## 2819 tracy.geaccone@enron.com 2001-10-16
## 2820 tracy.geaccone@enron.com 2001-10-16
## 2821 tracy.geaccone@enron.com 2001-10-16
## 2822 tracy.geaccone@enron.com 2001-10-16
## 2823 tracy.geaccone@enron.com 2001-10-16
## 2824 tracy.geaccone@enron.com 2001-10-16
## 2825 tracy.geaccone@enron.com 2001-10-16
## 2826 tracy.geaccone@enron.com 2001-10-16
## 2827 tracy.geaccone@enron.com 2001-10-16
## 2828 tracy.geaccone@enron.com 2001-10-16
## 2829 tracy.geaccone@enron.com 2001-10-16
## 2830 tracy.geaccone@enron.com 2001-10-16
## 2831 tracy.geaccone@enron.com 2001-10-16
## 2832 tracy.geaccone@enron.com 2001-10-16
## 2833 tracy.geaccone@enron.com 2001-10-16
## 2834 tracy.geaccone@enron.com 2001-10-16
## 2835 tracy.geaccone@enron.com 2001-10-16
## 2836 tracy.geaccone@enron.com 2001-10-16
## 2837 tracy.geaccone@enron.com 2001-10-16
## 2838 tracy.geaccone@enron.com 2001-10-16
## 2839 tracy.geaccone@enron.com 2001-10-16
## 2840 tracy.geaccone@enron.com 2001-10-16
## 2841 tracy.geaccone@enron.com 2001-10-16
## 2842 tracy.geaccone@enron.com 2001-10-16
## 2843 tracy.geaccone@enron.com 2001-10-16
## 2844 tracy.geaccone@enron.com 2001-10-16
## 2845 tracy.geaccone@enron.com 2001-10-15
## 2846 tracy.geaccone@enron.com 2001-10-15
## 2847 tracy.geaccone@enron.com 2001-10-15
## 2848 tracy.geaccone@enron.com 2001-10-15
## 2849 tracy.geaccone@enron.com 2001-10-15
## 2850 tracy.geaccone@enron.com 2001-10-15
## 2851 tracy.geaccone@enron.com 2001-10-15
## 2852 tracy.geaccone@enron.com 2001-10-15
## 2853 tracy.geaccone@enron.com 2001-10-12
## 2854 tracy.geaccone@enron.com 2001-10-12
## 2855 tracy.geaccone@enron.com 2001-10-12
## 2856 tracy.geaccone@enron.com 2001-10-12
## 2857 tracy.geaccone@enron.com 2001-10-12
## 2858 tracy.geaccone@enron.com 2001-10-12
## 2859 tracy.geaccone@enron.com 2001-10-12
## 2860 tracy.geaccone@enron.com 2001-10-12
## 2861 tracy.geaccone@enron.com 2001-10-12
## 2862 tracy.geaccone@enron.com 2001-10-12
## 2863 tracy.geaccone@enron.com 2001-10-12
## 2864 tracy.geaccone@enron.com 2001-10-12
## 2865 tracy.geaccone@enron.com 2001-10-10
## 2866 tracy.geaccone@enron.com 2001-10-10
## 2867 tracy.geaccone@enron.com 2001-10-10
## 2868 tracy.geaccone@enron.com 2001-10-10
## 2869 tracy.geaccone@enron.com 2001-10-10
## 2870 tracy.geaccone@enron.com 2001-10-10
## 2871 tracy.geaccone@enron.com 2001-10-10
## 2872 tracy.geaccone@enron.com 2001-10-10
## 2873 tracy.geaccone@enron.com 2001-10-10
## 2874 tracy.geaccone@enron.com 2001-10-10
## 2875 tracy.geaccone@enron.com 2001-10-10
## 2876 tracy.geaccone@enron.com 2001-10-10
## 2877 tracy.geaccone@enron.com 2001-10-10
## 2878 tracy.geaccone@enron.com 2001-10-10
## 2879 tracy.geaccone@enron.com 2001-10-10
## 2880 tracy.geaccone@enron.com 2001-10-10
## 2881 tracy.geaccone@enron.com 2001-10-10
## 2882 tracy.geaccone@enron.com 2001-10-10
## 2883 tracy.geaccone@enron.com 2001-10-10
## 2884 tracy.geaccone@enron.com 2001-10-10
## 2885 tracy.geaccone@enron.com 2001-10-10
## 2886 tracy.geaccone@enron.com 2001-10-10
## 2887 tracy.geaccone@enron.com 2001-10-10
## 2888 tracy.geaccone@enron.com 2001-10-10
## 2889 tracy.geaccone@enron.com 2001-10-10
## 2890 tracy.geaccone@enron.com 2001-10-10
## 2891 tracy.geaccone@enron.com 2001-10-10
## 2892 tracy.geaccone@enron.com 2001-10-10
## 2893 tracy.geaccone@enron.com 2001-10-10
## 2894 tracy.geaccone@enron.com 2001-10-10
## 2895 tracy.geaccone@enron.com 2001-10-10
## 2896 tracy.geaccone@enron.com 2001-10-10
## 2897 tracy.geaccone@enron.com 2001-10-10
## 2898 tracy.geaccone@enron.com 2001-10-10
## 2899 tracy.geaccone@enron.com 2001-10-10
## 2900 tracy.geaccone@enron.com 2001-10-10
## 2901 tracy.geaccone@enron.com 2001-10-10
## 2902 tracy.geaccone@enron.com 2001-10-10
## 2903 tracy.geaccone@enron.com 2001-10-10
## 2904 tracy.geaccone@enron.com 2001-10-10
## 2905 tracy.geaccone@enron.com 2001-10-09
## 2906 tracy.geaccone@enron.com 2001-10-09
## 2907 tracy.geaccone@enron.com 2001-10-09
## 2908 tracy.geaccone@enron.com 2001-10-09
## 2909 tracy.geaccone@enron.com 2001-10-09
## 2910 tracy.geaccone@enron.com 2001-10-09
## 2911 tracy.geaccone@enron.com 2001-10-09
## 2912 tracy.geaccone@enron.com 2001-10-09
## 2913 tracy.geaccone@enron.com 2001-10-09
## 2914 tracy.geaccone@enron.com 2001-10-09
## 2915 tracy.geaccone@enron.com 2001-10-09
## 2916 tracy.geaccone@enron.com 2001-10-09
## 2917 tracy.geaccone@enron.com 2001-10-09
## 2918 tracy.geaccone@enron.com 2001-10-09
## 2919 tracy.geaccone@enron.com 2001-10-08
## 2920 tracy.geaccone@enron.com 2001-10-08
## 2921 tracy.geaccone@enron.com 2001-10-08
## 2922 tracy.geaccone@enron.com 2001-10-08
## 2923 tracy.geaccone@enron.com 2001-10-08
## 2924 tracy.geaccone@enron.com 2001-10-08
## 2925 tracy.geaccone@enron.com 2001-10-08
## 2926 tracy.geaccone@enron.com 2001-10-08
## 2927 tracy.geaccone@enron.com 2001-10-08
## 2928 tracy.geaccone@enron.com 2001-10-08
## 2929 tracy.geaccone@enron.com 2001-10-08
## 2930 tracy.geaccone@enron.com 2001-10-08
## 2931 tracy.geaccone@enron.com 2001-10-08
## 2932 tracy.geaccone@enron.com 2001-10-08
## 2933 tracy.geaccone@enron.com 2001-10-08
## 2934 tracy.geaccone@enron.com 2001-10-08
## 2935 tracy.geaccone@enron.com 2001-10-08
## 2936 tracy.geaccone@enron.com 2001-10-08
## 2937 tracy.geaccone@enron.com 2001-10-08
## 2938 tracy.geaccone@enron.com 2001-10-08
## 2939 tracy.geaccone@enron.com 2001-10-08
## 2940 tracy.geaccone@enron.com 2001-10-08
## 2941 tracy.geaccone@enron.com 2001-10-06
## 2942 tracy.geaccone@enron.com 2001-10-06
## 2943 tracy.geaccone@enron.com 2001-10-06
## 2944 tracy.geaccone@enron.com 2001-10-06
## 2945 tracy.geaccone@enron.com 2001-10-06
## 2946 tracy.geaccone@enron.com 2001-10-06
## 2947 tracy.geaccone@enron.com 2001-10-06
## 2948 tracy.geaccone@enron.com 2001-10-06
## 2949 tracy.geaccone@enron.com 2001-10-06
## 2950 tracy.geaccone@enron.com 2001-10-06
## 2951 tracy.geaccone@enron.com 2001-10-06
## 2952 tracy.geaccone@enron.com 2001-10-06
## 2953 tracy.geaccone@enron.com 2001-10-06
## 2954 tracy.geaccone@enron.com 2001-10-06
## 2955 tracy.geaccone@enron.com 2001-10-05
## 2956 tracy.geaccone@enron.com 2001-10-05
## 2957 tracy.geaccone@enron.com 2001-10-05
## 2958 tracy.geaccone@enron.com 2001-10-05
## 2959 tracy.geaccone@enron.com 2001-10-05
## 2960 tracy.geaccone@enron.com 2001-10-05
## 2961 tracy.geaccone@enron.com 2001-10-05
## 2962 tracy.geaccone@enron.com 2001-10-05
## 2963 tracy.geaccone@enron.com 2001-10-05
## 2964 tracy.geaccone@enron.com 2001-10-05
## 2965 tracy.geaccone@enron.com 2001-10-05
## 2966 tracy.geaccone@enron.com 2001-10-05
## 2967 tracy.geaccone@enron.com 2001-10-05
## 2968 tracy.geaccone@enron.com 2001-10-04
## 2969 tracy.geaccone@enron.com 2001-10-04
## 2970 tracy.geaccone@enron.com 2001-10-04
## 2971 tracy.geaccone@enron.com 2001-10-04
## 2972 tracy.geaccone@enron.com 2001-10-04
## 2973 tracy.geaccone@enron.com 2001-10-04
## 2974 tracy.geaccone@enron.com 2001-10-04
## 2975 tracy.geaccone@enron.com 2001-10-04
## 2976 tracy.geaccone@enron.com 2001-10-04
## 2977 tracy.geaccone@enron.com 2001-10-04
## 2978 tracy.geaccone@enron.com 2001-10-04
## 2979 tracy.geaccone@enron.com 2001-10-04
## 2980 tracy.geaccone@enron.com 2001-10-04
## 2981 tracy.geaccone@enron.com 2001-10-04
## 2982 tracy.geaccone@enron.com 2001-10-04
## 2983 tracy.geaccone@enron.com 2001-10-04
## 2984 tracy.geaccone@enron.com 2001-10-04
## 2985 tracy.geaccone@enron.com 2001-10-04
## 2986 tracy.geaccone@enron.com 2001-10-04
## 2987 tracy.geaccone@enron.com 2001-10-03
## 2988 tracy.geaccone@enron.com 2001-10-03
## 2989 tracy.geaccone@enron.com 2001-10-03
## 2990 tracy.geaccone@enron.com 2001-10-03
## 2991 tracy.geaccone@enron.com 2001-10-03
## 2992 tracy.geaccone@enron.com 2001-10-03
## 2993 tracy.geaccone@enron.com 2001-10-03
## 2994 tracy.geaccone@enron.com 2001-10-03
## 2995 tracy.geaccone@enron.com 2001-10-03
## 2996 tracy.geaccone@enron.com 2001-10-03
## 2997 tracy.geaccone@enron.com 2001-10-03
## 2998 tracy.geaccone@enron.com 2001-10-03
## 2999 tracy.geaccone@enron.com 2001-10-03
## 3000 tracy.geaccone@enron.com 2001-10-03
## 3001 tracy.geaccone@enron.com 2001-10-03
## 3002 tracy.geaccone@enron.com 2001-10-03
## 3003 tracy.geaccone@enron.com 2001-10-03
## 3004 tracy.geaccone@enron.com 2001-10-03
## 3005 tracy.geaccone@enron.com 2001-10-03
## 3006 tracy.geaccone@enron.com 2001-10-03
## 3007 tracy.geaccone@enron.com 2001-10-03
## 3008 tracy.geaccone@enron.com 2001-10-03
## 3009 tracy.geaccone@enron.com 2001-10-03
## 3010 tracy.geaccone@enron.com 2001-10-03
## 3011 tracy.geaccone@enron.com 2001-10-03
## 3012 tracy.geaccone@enron.com 2001-10-03
## 3013 tracy.geaccone@enron.com 2001-10-03
## 3014 tracy.geaccone@enron.com 2001-10-03
## 3015 tracy.geaccone@enron.com 2001-10-03
## 3016 tracy.geaccone@enron.com 2001-10-03
## 3017 tracy.geaccone@enron.com 2001-10-03
## 3018 tracy.geaccone@enron.com 2001-10-03
## 3019 tracy.geaccone@enron.com 2001-10-03
## 3020 tracy.geaccone@enron.com 2001-10-03
## 3021 tracy.geaccone@enron.com 2001-10-03
## 3022 tracy.geaccone@enron.com 2001-10-03
## 3023 tracy.geaccone@enron.com 2001-10-03
## 3024 tracy.geaccone@enron.com 2001-10-03
## 3025 tracy.geaccone@enron.com 2001-10-03
## 3026 tracy.geaccone@enron.com 2001-10-03
## 3027 tracy.geaccone@enron.com 2001-10-02
## 3028 tracy.geaccone@enron.com 2001-10-02
## 3029 tracy.geaccone@enron.com 2001-10-02
## 3030 tracy.geaccone@enron.com 2001-10-02
## 3031 tracy.geaccone@enron.com 2001-10-02
## 3032 tracy.geaccone@enron.com 2001-10-02
## 3033 tracy.geaccone@enron.com 2001-10-02
## 3034 tracy.geaccone@enron.com 2001-10-02
## 3035 tracy.geaccone@enron.com 2001-10-02
## 3036 tracy.geaccone@enron.com 2001-10-02
## 3037 tracy.geaccone@enron.com 2001-10-02
## 3038 tracy.geaccone@enron.com 2001-10-02
## 3039 tracy.geaccone@enron.com 2001-10-02
## 3040 tracy.geaccone@enron.com 2001-10-02
## 3041 tracy.geaccone@enron.com 2001-10-02
## 3042 tracy.geaccone@enron.com 2001-10-02
## 3043 tracy.geaccone@enron.com 2001-10-02
## 3044 tracy.geaccone@enron.com 2001-10-01
## 3045 tracy.geaccone@enron.com 2001-10-01
## 3046 tracy.geaccone@enron.com 2001-10-01
## 3047 tracy.geaccone@enron.com 2001-10-01
## 3048 tracy.geaccone@enron.com 2001-10-01
## 3049 tracy.geaccone@enron.com 2001-10-01
## 3050 tracy.geaccone@enron.com 2001-10-01
## 3051 tracy.geaccone@enron.com 2001-10-01
## 3052 tracy.geaccone@enron.com 2001-10-01
## 3053 tracy.geaccone@enron.com 2001-10-01
## 3054 tracy.geaccone@enron.com 2001-10-01
## 3055 tracy.geaccone@enron.com 2001-10-01
## 3056 tracy.geaccone@enron.com 2001-10-01
## 3057 tracy.geaccone@enron.com 2001-10-01
## 3058 tracy.geaccone@enron.com 2001-10-01
## 3059 tracy.geaccone@enron.com 2001-10-01
## 3060 tracy.geaccone@enron.com 2001-10-01
## 3061 tracy.geaccone@enron.com 2001-10-01
## 3062 tracy.geaccone@enron.com 2001-10-01
## 3063 tracy.geaccone@enron.com 2001-10-01
## 3064 tracy.geaccone@enron.com 2001-10-01
## 3065 tracy.geaccone@enron.com 2001-10-01
## 3066 tracy.geaccone@enron.com 2001-10-01
## 3067 tracy.geaccone@enron.com 2001-10-01
## 3068 tracy.geaccone@enron.com 2001-10-01
## 3069 tracy.geaccone@enron.com 2001-10-01
## 3070 tracy.geaccone@enron.com 2001-09-28
## 3071 tracy.geaccone@enron.com 2001-09-28
## 3072 tracy.geaccone@enron.com 2001-09-28
## 3073 tracy.geaccone@enron.com 2001-09-28
## 3074 tracy.geaccone@enron.com 2001-09-28
## 3075 tracy.geaccone@enron.com 2001-09-28
## 3076 tracy.geaccone@enron.com 2001-09-27
## 3077 tracy.geaccone@enron.com 2001-09-27
## 3078 tracy.geaccone@enron.com 2001-09-27
## 3079 tracy.geaccone@enron.com 2001-09-24
## 3080 tracy.geaccone@enron.com 2001-09-17
## 3081 teb.lokey@enron.com 2002-03-25
## 3082 teb.lokey@enron.com 2002-03-25
## 3083 teb.lokey@enron.com 2002-03-20
## 3084 teb.lokey@enron.com 2002-03-20
## 3085 teb.lokey@enron.com 2002-03-20
## 3086 teb.lokey@enron.com 2002-03-20
## 3087 teb.lokey@enron.com 2002-03-20
## 3088 teb.lokey@enron.com 2002-03-20
## 3089 teb.lokey@enron.com 2002-03-20
## 3090 teb.lokey@enron.com 2002-03-20
## 3091 teb.lokey@enron.com 2002-03-20
## 3092 teb.lokey@enron.com 2002-03-19
## 3093 teb.lokey@enron.com 2002-03-15
## 3094 teb.lokey@enron.com 2002-03-15
## 3095 teb.lokey@enron.com 2002-03-14
## 3096 teb.lokey@enron.com 2002-03-14
## 3097 teb.lokey@enron.com 2002-03-14
## 3098 teb.lokey@enron.com 2002-03-14
## 3099 teb.lokey@enron.com 2002-03-14
## 3100 teb.lokey@enron.com 2002-03-13
## 3101 teb.lokey@enron.com 2002-03-12
## 3102 teb.lokey@enron.com 2002-03-12
## 3103 teb.lokey@enron.com 2002-03-11
## 3104 teb.lokey@enron.com 2002-03-08
## 3105 teb.lokey@enron.com 2002-03-08
## 3106 teb.lokey@enron.com 2002-03-08
## 3107 teb.lokey@enron.com 2002-03-08
## 3108 teb.lokey@enron.com 2002-03-08
## 3109 teb.lokey@enron.com 2002-03-08
## 3110 teb.lokey@enron.com 2002-03-08
## 3111 teb.lokey@enron.com 2002-03-07
## 3112 teb.lokey@enron.com 2002-03-07
## 3113 teb.lokey@enron.com 2002-03-06
## 3114 teb.lokey@enron.com 2002-03-06
## 3115 teb.lokey@enron.com 2002-03-05
## 3116 teb.lokey@enron.com 2002-02-25
## 3117 teb.lokey@enron.com 2002-02-25
## 3118 teb.lokey@enron.com 2002-02-25
## 3119 teb.lokey@enron.com 2002-02-25
## 3120 teb.lokey@enron.com 2002-02-25
## 3121 teb.lokey@enron.com 2002-02-25
## 3122 teb.lokey@enron.com 2002-02-25
## 3123 teb.lokey@enron.com 2002-02-25
## 3124 teb.lokey@enron.com 2002-02-25
## 3125 teb.lokey@enron.com 2002-02-25
## 3126 teb.lokey@enron.com 2002-02-25
## 3127 teb.lokey@enron.com 2002-02-25
## 3128 teb.lokey@enron.com 2002-02-22
## 3129 teb.lokey@enron.com 2002-02-22
## 3130 teb.lokey@enron.com 2002-02-15
## 3131 teb.lokey@enron.com 2002-02-15
## 3132 teb.lokey@enron.com 2002-02-15
## 3133 teb.lokey@enron.com 2002-02-15
## 3134 teb.lokey@enron.com 2002-02-15
## 3135 teb.lokey@enron.com 2002-02-15
## 3136 teb.lokey@enron.com 2002-02-14
## 3137 teb.lokey@enron.com 2002-02-14
## 3138 teb.lokey@enron.com 2002-02-14
## 3139 teb.lokey@enron.com 2002-02-11
## 3140 teb.lokey@enron.com 2002-02-11
## 3141 teb.lokey@enron.com 2002-02-11
## 3142 teb.lokey@enron.com 2002-02-11
## 3143 teb.lokey@enron.com 2002-02-11
## 3144 teb.lokey@enron.com 2002-02-11
## 3145 teb.lokey@enron.com 2002-02-11
## 3146 teb.lokey@enron.com 2002-02-11
## 3147 teb.lokey@enron.com 2002-02-11
## 3148 teb.lokey@enron.com 2002-02-11
## 3149 teb.lokey@enron.com 2002-02-11
## 3150 teb.lokey@enron.com 2002-02-11
## 3151 teb.lokey@enron.com 2002-02-11
## 3152 teb.lokey@enron.com 2002-02-11
## 3153 teb.lokey@enron.com 2002-02-11
## 3154 teb.lokey@enron.com 2002-02-11
## 3155 teb.lokey@enron.com 2002-02-07
## 3156 teb.lokey@enron.com 2002-02-07
## 3157 teb.lokey@enron.com 2002-02-07
## 3158 teb.lokey@enron.com 2002-02-07
## 3159 teb.lokey@enron.com 2002-02-07
## 3160 teb.lokey@enron.com 2002-02-07
## 3161 teb.lokey@enron.com 2002-02-07
## 3162 teb.lokey@enron.com 2002-02-07
## 3163 teb.lokey@enron.com 2002-02-06
## 3164 teb.lokey@enron.com 2002-02-05
## 3165 teb.lokey@enron.com 2002-02-05
## 3166 teb.lokey@enron.com 2002-02-05
## 3167 teb.lokey@enron.com 2002-02-05
## 3168 teb.lokey@enron.com 2002-02-05
## 3169 teb.lokey@enron.com 2002-02-05
## 3170 teb.lokey@enron.com 2002-02-05
## 3171 teb.lokey@enron.com 2002-02-05
## 3172 teb.lokey@enron.com 2002-01-28
## 3173 teb.lokey@enron.com 2002-01-28
## 3174 teb.lokey@enron.com 2002-01-24
## 3175 teb.lokey@enron.com 2002-01-24
## 3176 teb.lokey@enron.com 2002-01-24
## 3177 teb.lokey@enron.com 2002-01-24
## 3178 teb.lokey@enron.com 2002-01-24
## 3179 teb.lokey@enron.com 2002-01-24
## 3180 teb.lokey@enron.com 2002-01-24
## 3181 teb.lokey@enron.com 2002-01-24
## 3182 teb.lokey@enron.com 2002-01-24
## 3183 teb.lokey@enron.com 2002-01-24
## 3184 teb.lokey@enron.com 2002-01-23
## 3185 teb.lokey@enron.com 2002-01-22
## 3186 teb.lokey@enron.com 2002-01-22
## 3187 teb.lokey@enron.com 2002-01-22
## 3188 teb.lokey@enron.com 2002-01-22
## 3189 teb.lokey@enron.com 2002-01-22
## 3190 teb.lokey@enron.com 2002-01-22
## 3191 teb.lokey@enron.com 2002-01-21
## 3192 teb.lokey@enron.com 2002-01-21
## 3193 teb.lokey@enron.com 2002-01-21
## 3194 teb.lokey@enron.com 2002-01-18
## 3195 teb.lokey@enron.com 2002-01-18
## 3196 teb.lokey@enron.com 2002-01-18
## 3197 teb.lokey@enron.com 2002-01-18
## 3198 teb.lokey@enron.com 2002-01-18
## 3199 teb.lokey@enron.com 2002-01-18
## 3200 teb.lokey@enron.com 2002-01-18
## 3201 teb.lokey@enron.com 2002-01-18
## 3202 teb.lokey@enron.com 2002-01-18
## 3203 teb.lokey@enron.com 2002-01-18
## 3204 teb.lokey@enron.com 2002-01-18
## 3205 teb.lokey@enron.com 2002-01-18
## 3206 teb.lokey@enron.com 2002-01-18
## 3207 teb.lokey@enron.com 2002-01-18
## 3208 teb.lokey@enron.com 2002-01-18
## 3209 teb.lokey@enron.com 2002-01-18
## 3210 teb.lokey@enron.com 2002-01-18
## 3211 teb.lokey@enron.com 2002-01-18
## 3212 teb.lokey@enron.com 2002-01-18
## 3213 teb.lokey@enron.com 2002-01-16
## 3214 teb.lokey@enron.com 2002-01-16
## 3215 teb.lokey@enron.com 2002-01-16
## 3216 teb.lokey@enron.com 2002-01-16
## 3217 teb.lokey@enron.com 2002-01-16
## 3218 teb.lokey@enron.com 2002-01-16
## 3219 teb.lokey@enron.com 2002-01-16
## 3220 teb.lokey@enron.com 2002-01-16
## 3221 teb.lokey@enron.com 2002-01-16
## 3222 teb.lokey@enron.com 2002-01-16
## 3223 teb.lokey@enron.com 2002-01-16
## 3224 teb.lokey@enron.com 2002-01-16
## 3225 teb.lokey@enron.com 2002-01-14
## 3226 teb.lokey@enron.com 2002-01-14
## 3227 teb.lokey@enron.com 2002-01-14
## 3228 teb.lokey@enron.com 2002-01-14
## 3229 teb.lokey@enron.com 2002-01-14
## 3230 teb.lokey@enron.com 2002-01-14
## 3231 teb.lokey@enron.com 2002-01-14
## 3232 teb.lokey@enron.com 2002-01-14
## 3233 teb.lokey@enron.com 2002-01-14
## 3234 teb.lokey@enron.com 2002-01-14
## 3235 teb.lokey@enron.com 2002-01-14
## 3236 teb.lokey@enron.com 2002-01-14
## 3237 teb.lokey@enron.com 2002-01-11
## 3238 teb.lokey@enron.com 2002-01-11
## 3239 teb.lokey@enron.com 2002-01-11
## 3240 teb.lokey@enron.com 2002-01-11
## 3241 teb.lokey@enron.com 2002-01-11
## 3242 teb.lokey@enron.com 2002-01-11
## 3243 teb.lokey@enron.com 2002-01-11
## 3244 teb.lokey@enron.com 2002-01-11
## 3245 teb.lokey@enron.com 2002-01-11
## 3246 teb.lokey@enron.com 2002-01-11
## 3247 teb.lokey@enron.com 2002-01-11
## 3248 teb.lokey@enron.com 2002-01-11
## 3249 teb.lokey@enron.com 2002-01-11
## 3250 teb.lokey@enron.com 2002-01-11
## 3251 teb.lokey@enron.com 2002-01-10
## 3252 teb.lokey@enron.com 2002-01-10
## 3253 teb.lokey@enron.com 2002-01-10
## 3254 teb.lokey@enron.com 2002-01-10
## 3255 teb.lokey@enron.com 2002-01-10
## 3256 teb.lokey@enron.com 2002-01-10
## 3257 teb.lokey@enron.com 2002-01-10
## 3258 teb.lokey@enron.com 2002-01-10
## 3259 teb.lokey@enron.com 2002-01-10
## 3260 teb.lokey@enron.com 2002-01-10
## 3261 teb.lokey@enron.com 2002-01-10
## 3262 teb.lokey@enron.com 2002-01-10
## 3263 teb.lokey@enron.com 2002-01-10
## 3264 teb.lokey@enron.com 2002-01-10
## 3265 teb.lokey@enron.com 2002-01-10
## 3266 teb.lokey@enron.com 2002-01-10
## 3267 teb.lokey@enron.com 2002-01-10
## 3268 teb.lokey@enron.com 2002-01-10
## 3269 teb.lokey@enron.com 2002-01-10
## 3270 teb.lokey@enron.com 2002-01-10
## 3271 teb.lokey@enron.com 2002-01-10
## 3272 teb.lokey@enron.com 2002-01-10
## 3273 teb.lokey@enron.com 2002-01-10
## 3274 teb.lokey@enron.com 2002-01-10
## 3275 teb.lokey@enron.com 2002-01-10
## 3276 teb.lokey@enron.com 2002-01-10
## 3277 teb.lokey@enron.com 2002-01-10
## 3278 teb.lokey@enron.com 2002-01-10
## 3279 teb.lokey@enron.com 2002-01-10
## 3280 teb.lokey@enron.com 2002-01-10
## 3281 teb.lokey@enron.com 2002-01-10
## 3282 teb.lokey@enron.com 2002-01-10
## 3283 teb.lokey@enron.com 2002-01-10
## 3284 teb.lokey@enron.com 2002-01-10
## 3285 teb.lokey@enron.com 2002-01-10
## 3286 teb.lokey@enron.com 2002-01-10
## 3287 teb.lokey@enron.com 2002-01-10
## 3288 teb.lokey@enron.com 2002-01-10
## 3289 teb.lokey@enron.com 2002-01-10
## 3290 teb.lokey@enron.com 2002-01-10
## 3291 teb.lokey@enron.com 2002-01-10
## 3292 teb.lokey@enron.com 2002-01-10
## 3293 teb.lokey@enron.com 2002-01-10
## 3294 teb.lokey@enron.com 2002-01-10
## 3295 teb.lokey@enron.com 2002-01-10
## 3296 teb.lokey@enron.com 2002-01-10
## 3297 teb.lokey@enron.com 2002-01-10
## 3298 teb.lokey@enron.com 2002-01-10
## 3299 teb.lokey@enron.com 2002-01-10
## 3300 teb.lokey@enron.com 2002-01-10
## 3301 teb.lokey@enron.com 2002-01-10
## 3302 teb.lokey@enron.com 2002-01-10
## 3303 teb.lokey@enron.com 2002-01-10
## 3304 teb.lokey@enron.com 2002-01-10
## 3305 teb.lokey@enron.com 2002-01-10
## 3306 teb.lokey@enron.com 2002-01-10
## 3307 teb.lokey@enron.com 2002-01-10
## 3308 teb.lokey@enron.com 2002-01-10
## 3309 teb.lokey@enron.com 2002-01-10
## 3310 teb.lokey@enron.com 2002-01-10
## 3311 teb.lokey@enron.com 2002-01-10
## 3312 teb.lokey@enron.com 2002-01-10
## 3313 teb.lokey@enron.com 2002-01-10
## 3314 teb.lokey@enron.com 2002-01-10
## 3315 teb.lokey@enron.com 2002-01-10
## 3316 teb.lokey@enron.com 2002-01-10
## 3317 teb.lokey@enron.com 2002-01-10
## 3318 teb.lokey@enron.com 2002-01-10
## 3319 teb.lokey@enron.com 2002-01-10
## 3320 teb.lokey@enron.com 2002-01-10
## 3321 teb.lokey@enron.com 2002-01-10
## 3322 teb.lokey@enron.com 2002-01-10
## 3323 teb.lokey@enron.com 2002-01-10
## 3324 teb.lokey@enron.com 2002-01-10
## 3325 teb.lokey@enron.com 2002-01-10
## 3326 teb.lokey@enron.com 2002-01-10
## 3327 teb.lokey@enron.com 2002-01-10
## 3328 teb.lokey@enron.com 2002-01-10
## 3329 teb.lokey@enron.com 2002-01-10
## 3330 teb.lokey@enron.com 2002-01-10
## 3331 teb.lokey@enron.com 2002-01-10
## 3332 teb.lokey@enron.com 2002-01-10
## 3333 teb.lokey@enron.com 2002-01-10
## 3334 teb.lokey@enron.com 2002-01-10
## 3335 teb.lokey@enron.com 2002-01-09
## 3336 teb.lokey@enron.com 2002-01-09
## 3337 teb.lokey@enron.com 2002-01-09
## 3338 teb.lokey@enron.com 2002-01-09
## 3339 teb.lokey@enron.com 2002-01-09
## 3340 teb.lokey@enron.com 2002-01-09
## 3341 teb.lokey@enron.com 2002-01-09
## 3342 teb.lokey@enron.com 2002-01-09
## 3343 teb.lokey@enron.com 2002-01-09
## 3344 teb.lokey@enron.com 2002-01-09
## 3345 teb.lokey@enron.com 2002-01-09
## 3346 teb.lokey@enron.com 2002-01-09
## 3347 teb.lokey@enron.com 2002-01-09
## 3348 teb.lokey@enron.com 2002-01-09
## 3349 teb.lokey@enron.com 2002-01-09
## 3350 teb.lokey@enron.com 2002-01-09
## 3351 teb.lokey@enron.com 2002-01-09
## 3352 teb.lokey@enron.com 2002-01-09
## 3353 teb.lokey@enron.com 2002-01-09
## 3354 teb.lokey@enron.com 2002-01-09
## 3355 teb.lokey@enron.com 2002-01-09
## 3356 teb.lokey@enron.com 2002-01-09
## 3357 teb.lokey@enron.com 2002-01-09
## 3358 teb.lokey@enron.com 2002-01-09
## 3359 teb.lokey@enron.com 2002-01-09
## 3360 teb.lokey@enron.com 2002-01-09
## 3361 teb.lokey@enron.com 2002-01-09
## 3362 teb.lokey@enron.com 2002-01-09
## 3363 teb.lokey@enron.com 2002-01-09
## 3364 teb.lokey@enron.com 2002-01-09
## 3365 teb.lokey@enron.com 2002-01-09
## 3366 teb.lokey@enron.com 2002-01-09
## 3367 teb.lokey@enron.com 2002-01-09
## 3368 teb.lokey@enron.com 2002-01-09
## 3369 teb.lokey@enron.com 2002-01-09
## 3370 teb.lokey@enron.com 2002-01-09
## 3371 teb.lokey@enron.com 2002-01-09
## 3372 teb.lokey@enron.com 2002-01-09
## 3373 teb.lokey@enron.com 2002-01-09
## 3374 teb.lokey@enron.com 2002-01-09
## 3375 teb.lokey@enron.com 2002-01-09
## 3376 teb.lokey@enron.com 2002-01-09
## 3377 teb.lokey@enron.com 2002-01-09
## 3378 teb.lokey@enron.com 2002-01-09
## 3379 teb.lokey@enron.com 2002-01-09
## 3380 teb.lokey@enron.com 2002-01-08
## 3381 teb.lokey@enron.com 2002-01-08
## 3382 teb.lokey@enron.com 2002-01-08
## 3383 teb.lokey@enron.com 2002-01-08
## 3384 teb.lokey@enron.com 2002-01-08
## 3385 teb.lokey@enron.com 2002-01-08
## 3386 teb.lokey@enron.com 2002-01-08
## 3387 teb.lokey@enron.com 2002-01-08
## 3388 teb.lokey@enron.com 2002-01-08
## 3389 teb.lokey@enron.com 2002-01-07
## 3390 teb.lokey@enron.com 2002-01-07
## 3391 teb.lokey@enron.com 2002-01-07
## 3392 teb.lokey@enron.com 2002-01-07
## 3393 teb.lokey@enron.com 2002-01-07
## 3394 teb.lokey@enron.com 2002-01-07
## 3395 teb.lokey@enron.com 2002-01-07
## 3396 teb.lokey@enron.com 2002-01-07
## 3397 teb.lokey@enron.com 2002-01-07
## 3398 teb.lokey@enron.com 2002-01-07
## 3399 teb.lokey@enron.com 2002-01-03
## 3400 teb.lokey@enron.com 2002-01-03
## 3401 teb.lokey@enron.com 2002-01-03
## 3402 teb.lokey@enron.com 2001-12-21
## 3403 teb.lokey@enron.com 2001-12-20
## 3404 teb.lokey@enron.com 2001-12-20
## 3405 teb.lokey@enron.com 2001-12-20
## 3406 teb.lokey@enron.com 2001-12-20
## 3407 teb.lokey@enron.com 2001-12-20
## 3408 teb.lokey@enron.com 2001-12-20
## 3409 teb.lokey@enron.com 2001-12-20
## 3410 teb.lokey@enron.com 2001-12-20
## 3411 teb.lokey@enron.com 2001-12-20
## 3412 teb.lokey@enron.com 2001-12-20
## 3413 teb.lokey@enron.com 2001-12-20
## 3414 teb.lokey@enron.com 2001-12-20
## 3415 teb.lokey@enron.com 2001-12-17
## 3416 teb.lokey@enron.com 2001-12-11
## 3417 teb.lokey@enron.com 2001-12-11
## 3418 teb.lokey@enron.com 2001-12-10
## 3419 teb.lokey@enron.com 2001-09-26
## 3420 teb.lokey@enron.com 2001-09-26
## 3421 teb.lokey@enron.com 2001-09-26
## 3422 teb.lokey@enron.com 2001-09-26
## 3423 teb.lokey@enron.com 2001-09-27
## 3424 teb.lokey@enron.com 2001-09-27
## 3425 teb.lokey@enron.com 2001-09-27
## 3426 teb.lokey@enron.com 2001-09-27
## 3427 teb.lokey@enron.com 2001-09-27
## 3428 teb.lokey@enron.com 2001-09-27
## 3429 teb.lokey@enron.com 2001-09-27
## 3430 teb.lokey@enron.com 2001-09-27
## 3431 teb.lokey@enron.com 2001-09-27
## 3432 teb.lokey@enron.com 2001-09-27
## 3433 teb.lokey@enron.com 2001-09-27
## 3434 teb.lokey@enron.com 2001-09-28
## 3435 teb.lokey@enron.com 2001-09-28
## 3436 teb.lokey@enron.com 2001-09-28
## 3437 teb.lokey@enron.com 2001-09-28
## 3438 teb.lokey@enron.com 2001-09-28
## 3439 teb.lokey@enron.com 2001-09-28
## 3440 teb.lokey@enron.com 2001-09-28
## 3441 teb.lokey@enron.com 2001-09-28
## 3442 teb.lokey@enron.com 2001-09-28
## 3443 teb.lokey@enron.com 2001-09-28
## 3444 teb.lokey@enron.com 2001-10-01
## 3445 teb.lokey@enron.com 2001-10-01
## 3446 teb.lokey@enron.com 2001-10-01
## 3447 teb.lokey@enron.com 2001-10-04
## 3448 teb.lokey@enron.com 2001-10-04
## 3449 teb.lokey@enron.com 2001-10-04
## 3450 teb.lokey@enron.com 2001-10-04
## 3451 teb.lokey@enron.com 2001-10-04
## 3452 teb.lokey@enron.com 2001-10-04
## 3453 teb.lokey@enron.com 2001-10-04
## 3454 teb.lokey@enron.com 2001-10-04
## 3455 teb.lokey@enron.com 2001-10-04
## 3456 teb.lokey@enron.com 2001-10-04
## 3457 teb.lokey@enron.com 2001-10-04
## 3458 teb.lokey@enron.com 2001-10-04
## 3459 teb.lokey@enron.com 2001-10-04
## 3460 teb.lokey@enron.com 2001-10-05
## 3461 teb.lokey@enron.com 2001-10-05
## 3462 teb.lokey@enron.com 2001-10-05
## 3463 teb.lokey@enron.com 2001-10-05
## 3464 teb.lokey@enron.com 2001-10-05
## 3465 teb.lokey@enron.com 2001-10-05
## 3466 teb.lokey@enron.com 2001-10-05
## 3467 teb.lokey@enron.com 2001-10-05
## 3468 teb.lokey@enron.com 2001-10-05
## 3469 teb.lokey@enron.com 2001-10-08
## 3470 teb.lokey@enron.com 2001-10-08
## 3471 teb.lokey@enron.com 2001-10-09
## 3472 teb.lokey@enron.com 2001-10-09
## 3473 teb.lokey@enron.com 2001-10-09
## 3474 teb.lokey@enron.com 2001-10-10
## 3475 teb.lokey@enron.com 2001-10-11
## 3476 teb.lokey@enron.com 2001-10-11
## 3477 teb.lokey@enron.com 2001-10-11
## 3478 teb.lokey@enron.com 2001-10-11
## 3479 teb.lokey@enron.com 2001-10-11
## 3480 teb.lokey@enron.com 2001-10-11
## 3481 teb.lokey@enron.com 2001-10-11
## 3482 teb.lokey@enron.com 2001-10-11
## 3483 teb.lokey@enron.com 2001-10-11
## 3484 teb.lokey@enron.com 2001-10-15
## 3485 teb.lokey@enron.com 2001-10-15
## 3486 teb.lokey@enron.com 2001-10-15
## 3487 teb.lokey@enron.com 2001-10-22
## 3488 teb.lokey@enron.com 2001-10-22
## 3489 teb.lokey@enron.com 2001-10-22
## 3490 teb.lokey@enron.com 2001-10-22
## 3491 teb.lokey@enron.com 2001-10-22
## 3492 teb.lokey@enron.com 2001-10-22
## 3493 teb.lokey@enron.com 2001-10-22
## 3494 teb.lokey@enron.com 2001-10-22
## 3495 teb.lokey@enron.com 2001-10-22
## 3496 teb.lokey@enron.com 2001-10-22
## 3497 teb.lokey@enron.com 2001-10-22
## 3498 teb.lokey@enron.com 2001-10-22
## 3499 teb.lokey@enron.com 2001-10-23
## 3500 teb.lokey@enron.com 2001-10-23
## 3501 teb.lokey@enron.com 2001-10-25
## 3502 teb.lokey@enron.com 2001-10-25
## 3503 teb.lokey@enron.com 2001-10-25
## 3504 teb.lokey@enron.com 2001-10-25
## 3505 teb.lokey@enron.com 2001-10-25
## 3506 teb.lokey@enron.com 2001-10-25
## 3507 teb.lokey@enron.com 2001-10-25
## 3508 teb.lokey@enron.com 2001-10-25
## 3509 tracy.geaccone@enron.com 2002-02-08
## 3510 tracy.geaccone@enron.com 2002-02-08
## 3511 tracy.geaccone@enron.com 2002-02-08
## 3512 tracy.geaccone@enron.com 2002-02-08
## 3513 tracy.geaccone@enron.com 2002-02-08
## 3514 tracy.geaccone@enron.com 2002-02-08
## 3515 tracy.geaccone@enron.com 2002-02-08
## 3516 tracy.geaccone@enron.com 2002-02-08
## 3517 tracy.geaccone@enron.com 2002-02-08
## 3518 tracy.geaccone@enron.com 2002-02-08
## 3519 tracy.geaccone@enron.com 2002-02-08
## 3520 tracy.geaccone@enron.com 2002-02-08
## 3521 tracy.geaccone@enron.com 2002-02-08
## 3522 tracy.geaccone@enron.com 2002-02-08
## 3523 tracy.geaccone@enron.com 2002-02-08
## 3524 tracy.geaccone@enron.com 2002-02-08
## 3525 tracy.geaccone@enron.com 2002-02-08
## 3526 rod.hayslett@enron.com 2002-02-07
## 3527 rod.hayslett@enron.com 2002-02-07
## 3528 rod.hayslett@enron.com 2002-02-07
## 3529 rod.hayslett@enron.com 2002-02-07
## 3530 rod.hayslett@enron.com 2002-02-07
## 3531 rod.hayslett@enron.com 2002-02-07
## 3532 rod.hayslett@enron.com 2002-02-07
## 3533 rod.hayslett@enron.com 2002-02-07
## 3534 rod.hayslett@enron.com 2002-02-07
## 3535 rod.hayslett@enron.com 2002-02-07
## 3536 rod.hayslett@enron.com 2002-02-07
## 3537 rod.hayslett@enron.com 2002-02-07
## 3538 rod.hayslett@enron.com 2002-02-07
## 3539 rod.hayslett@enron.com 2002-02-07
## 3540 rod.hayslett@enron.com 2002-02-07
## 3541 rod.hayslett@enron.com 2002-02-07
## 3542 kevin.hyatt@enron.com 2002-02-05
## 3543 kevin.hyatt@enron.com 2002-02-05
## 3544 kevin.hyatt@enron.com 2002-02-05
## 3545 kevin.hyatt@enron.com 2002-02-05
## 3546 kevin.hyatt@enron.com 2002-02-05
## 3547 kevin.hyatt@enron.com 2002-02-05
## 3548 kevin.hyatt@enron.com 2002-02-05
## 3549 kevin.hyatt@enron.com 2002-02-05
## 3550 kevin.hyatt@enron.com 2002-02-05
## 3551 kevin.hyatt@enron.com 2002-02-05
## 3552 kevin.hyatt@enron.com 2002-02-05
## 3553 rod.hayslett@enron.com 2002-02-05
## 3554 rod.hayslett@enron.com 2002-02-05
## 3555 rod.hayslett@enron.com 2002-02-05
## 3556 rod.hayslett@enron.com 2002-02-05
## 3557 rod.hayslett@enron.com 2002-02-05
## 3558 rod.hayslett@enron.com 2002-02-05
## 3559 rod.hayslett@enron.com 2002-02-05
## 3560 rod.hayslett@enron.com 2002-02-05
## 3561 rod.hayslett@enron.com 2002-02-05
## 3562 rod.hayslett@enron.com 2002-02-05
## 3563 rod.hayslett@enron.com 2002-02-05
## 3564 lindy.donoho@enron.com 2002-01-28
## 3565 lindy.donoho@enron.com 2002-01-25
## 3566 tracy.geaccone@enron.com 2002-01-23
## 3567 tracy.geaccone@enron.com 2002-01-23
## 3568 tracy.geaccone@enron.com 2002-01-23
## 3569 tracy.geaccone@enron.com 2002-01-23
## 3570 michelle.lokay@enron.com 2002-01-18
## 3571 michelle.lokay@enron.com 2002-01-18
## 3572 michelle.lokay@enron.com 2002-01-18
## 3573 shelley.corman@enron.com 2002-01-17
## 3574 shelley.corman@enron.com 2002-01-17
## 3575 shelley.corman@enron.com 2002-01-17
## 3576 shelley.corman@enron.com 2002-01-17
## 3577 shelley.corman@enron.com 2002-01-17
## 3578 shelley.corman@enron.com 2002-01-17
## 3579 shelley.corman@enron.com 2002-01-17
## 3580 shelley.corman@enron.com 2002-01-17
## 3581 shelley.corman@enron.com 2002-01-17
## 3582 kevin.hyatt@enron.com 2002-01-16
## 3583 kevin.hyatt@enron.com 2002-01-16
## 3584 kevin.hyatt@enron.com 2002-01-16
## 3585 kevin.hyatt@enron.com 2002-01-16
## 3586 kevin.hyatt@enron.com 2002-01-16
## 3587 kevin.hyatt@enron.com 2002-01-16
## 3588 kevin.hyatt@enron.com 2002-01-16
## 3589 kevin.hyatt@enron.com 2002-01-16
## 3590 kevin.hyatt@enron.com 2002-01-16
## 3591 kevin.hyatt@enron.com 2002-01-16
## 3592 kevin.hyatt@enron.com 2002-01-16
## 3593 kevin.hyatt@enron.com 2002-01-16
## 3594 kevin.hyatt@enron.com 2002-01-16
## 3595 kevin.hyatt@enron.com 2002-01-16
## 3596 kevin.hyatt@enron.com 2002-01-16
## 3597 kevin.hyatt@enron.com 2002-01-16
## 3598 shelley.corman@enron.com 2002-01-16
## 3599 shelley.corman@enron.com 2002-01-16
## 3600 kevin.hyatt@enron.com 2002-01-14
## 3601 kevin.hyatt@enron.com 2002-01-14
## 3602 kevin.hyatt@enron.com 2002-01-14
## 3603 kevin.hyatt@enron.com 2002-01-14
## 3604 kevin.hyatt@enron.com 2002-01-14
## 3605 kevin.hyatt@enron.com 2002-01-14
## 3606 kevin.hyatt@enron.com 2002-01-14
## 3607 kevin.hyatt@enron.com 2002-01-14
## 3608 kevin.hyatt@enron.com 2002-01-14
## 3609 kevin.hyatt@enron.com 2002-01-14
## 3610 kevin.hyatt@enron.com 2002-01-14
## 3611 kevin.hyatt@enron.com 2002-01-14
## 3612 kevin.hyatt@enron.com 2002-01-14
## 3613 kevin.hyatt@enron.com 2002-01-14
## 3614 kevin.hyatt@enron.com 2002-01-14
## 3615 kevin.hyatt@enron.com 2002-01-14
## 3616 kevin.hyatt@enron.com 2002-01-14
## 3617 kevin.hyatt@enron.com 2002-01-14
## 3618 shelley.corman@enron.com 2002-01-14
## 3619 shelley.corman@enron.com 2002-01-14
## 3620 shelley.corman@enron.com 2002-01-14
## 3621 shelley.corman@enron.com 2002-01-14
## 3622 shelley.corman@enron.com 2002-01-14
## 3623 shelley.corman@enron.com 2002-01-14
## 3624 shelley.corman@enron.com 2002-01-14
## 3625 shelley.corman@enron.com 2002-01-14
## 3626 teb.lokey@enron.com 2002-01-11
## 3627 teb.lokey@enron.com 2002-01-11
## 3628 teb.lokey@enron.com 2002-01-11
## 3629 teb.lokey@enron.com 2002-01-11
## 3630 teb.lokey@enron.com 2002-01-11
## 3631 teb.lokey@enron.com 2002-01-11
## 3632 teb.lokey@enron.com 2002-01-11
## 3633 teb.lokey@enron.com 2002-01-11
## 3634 tracy.geaccone@enron.com 2002-01-11
## 3635 tracy.geaccone@enron.com 2002-01-11
## 3636 tracy.geaccone@enron.com 2002-01-11
## 3637 tracy.geaccone@enron.com 2002-01-11
## 3638 tracy.geaccone@enron.com 2002-01-11
## 3639 tracy.geaccone@enron.com 2002-01-11
## 3640 tracy.geaccone@enron.com 2002-01-11
## 3641 kevin.hyatt@enron.com 2002-01-07
## 3642 kevin.hyatt@enron.com 2002-01-07
## 3643 kevin.hyatt@enron.com 2002-01-07
## 3644 kevin.hyatt@enron.com 2002-01-07
## 3645 kevin.hyatt@enron.com 2002-01-07
## 3646 kevin.hyatt@enron.com 2002-01-07
## 3647 kevin.hyatt@enron.com 2002-01-07
## 3648 kevin.hyatt@enron.com 2002-01-07
## 3649 kevin.hyatt@enron.com 2002-01-07
## 3650 kevin.hyatt@enron.com 2002-01-07
## 3651 kevin.hyatt@enron.com 2002-01-07
## 3652 kevin.hyatt@enron.com 2002-01-07
## 3653 kevin.hyatt@enron.com 2002-01-07
## 3654 kevin.hyatt@enron.com 2002-01-07
## 3655 lindy.donoho@enron.com 2001-12-19
## 3656 lindy.donoho@enron.com 2001-12-19
## 3657 lindy.donoho@enron.com 2001-12-19
## 3658 lindy.donoho@enron.com 2001-12-19
## 3659 lindy.donoho@enron.com 2001-12-19
## 3660 lindy.donoho@enron.com 2001-12-19
## 3661 lindy.donoho@enron.com 2001-12-19
## 3662 lindy.donoho@enron.com 2001-12-19
## 3663 lindy.donoho@enron.com 2001-12-19
## 3664 lindy.donoho@enron.com 2001-12-19
## 3665 lindy.donoho@enron.com 2001-12-19
## 3666 lindy.donoho@enron.com 2001-12-19
## 3667 lindy.donoho@enron.com 2001-12-19
## 3668 lindy.donoho@enron.com 2001-12-19
## 3669 lindy.donoho@enron.com 2001-12-19
## 3670 kevin.hyatt@enron.com 2001-12-17
## 3671 kevin.hyatt@enron.com 2001-12-17
## 3672 kevin.hyatt@enron.com 2001-12-17
## 3673 kevin.hyatt@enron.com 2001-12-17
## 3674 kevin.hyatt@enron.com 2001-12-17
## 3675 kevin.hyatt@enron.com 2001-12-17
## 3676 kevin.hyatt@enron.com 2001-12-17
## 3677 kevin.hyatt@enron.com 2001-12-17
## 3678 kevin.hyatt@enron.com 2001-12-17
## 3679 kevin.hyatt@enron.com 2001-12-17
## 3680 kevin.hyatt@enron.com 2001-12-17
## 3681 kevin.hyatt@enron.com 2001-12-17
## 3682 kevin.hyatt@enron.com 2001-12-17
## 3683 kevin.hyatt@enron.com 2001-12-17
## 3684 lindy.donoho@enron.com 2001-12-13
## 3685 lindy.donoho@enron.com 2001-12-13
## 3686 lindy.donoho@enron.com 2001-12-13
## 3687 lindy.donoho@enron.com 2001-12-13
## 3688 lindy.donoho@enron.com 2001-12-13
## 3689 lindy.donoho@enron.com 2001-12-13
## 3690 lindy.donoho@enron.com 2001-12-13
## 3691 lindy.donoho@enron.com 2001-12-13
## 3692 lindy.donoho@enron.com 2001-12-13
## 3693 lindy.donoho@enron.com 2001-12-13
## 3694 lindy.donoho@enron.com 2001-12-13
## 3695 lindy.donoho@enron.com 2001-12-13
## 3696 lindy.donoho@enron.com 2001-12-13
## 3697 lindy.donoho@enron.com 2001-12-13
## 3698 lindy.donoho@enron.com 2001-12-13
## 3699 lindy.donoho@enron.com 2001-12-13
## 3700 steven.harris@enron.com 2001-12-12
## 3701 steven.harris@enron.com 2001-12-12
## 3702 steven.harris@enron.com 2001-12-12
## 3703 steven.harris@enron.com 2001-12-12
## 3704 steven.harris@enron.com 2001-12-12
## 3705 steven.harris@enron.com 2001-12-12
## 3706 steven.harris@enron.com 2001-12-12
## 3707 steven.harris@enron.com 2001-12-12
## 3708 steven.harris@enron.com 2001-12-12
## 3709 steven.harris@enron.com 2001-12-12
## 3710 steven.harris@enron.com 2001-12-12
## 3711 steven.harris@enron.com 2001-12-12
## 3712 steven.harris@enron.com 2001-12-12
## 3713 shelley.corman@enron.com 2001-12-11
## 3714 shelley.corman@enron.com 2001-12-11
## 3715 shelley.corman@enron.com 2001-12-11
## 3716 shelley.corman@enron.com 2001-12-11
## 3717 shelley.corman@enron.com 2001-12-11
## 3718 shelley.corman@enron.com 2001-12-11
## 3719 shelley.corman@enron.com 2001-09-27
## 3720 shelley.corman@enron.com 2001-09-27
## 3721 shelley.corman@enron.com 2001-09-27
## 3722 shelley.corman@enron.com 2001-09-27
## 3723 shelley.corman@enron.com 2001-09-27
## 3724 shelley.corman@enron.com 2001-09-27
## 3725 shelley.corman@enron.com 2001-09-27
## 3726 shelley.corman@enron.com 2001-09-27
## 3727 shelley.corman@enron.com 2001-09-27
## 3728 shelley.corman@enron.com 2001-09-27
## 3729 shelley.corman@enron.com 2001-09-27
## 3730 shelley.corman@enron.com 2001-09-27
## 3731 steven.harris@enron.com 2001-09-28
## 3732 steven.harris@enron.com 2001-09-28
## 3733 steven.harris@enron.com 2001-09-28
## 3734 steven.harris@enron.com 2001-09-28
## 3735 steven.harris@enron.com 2001-09-28
## 3736 steven.harris@enron.com 2001-09-28
## 3737 steven.harris@enron.com 2001-09-28
## 3738 steven.harris@enron.com 2001-09-28
## 3739 steven.harris@enron.com 2001-09-28
## 3740 michelle.lokay@enron.com 2001-09-28
## 3741 kevin.hyatt@enron.com 2001-09-28
## 3742 kevin.hyatt@enron.com 2001-09-28
## 3743 kevin.hyatt@enron.com 2001-09-28
## 3744 kevin.hyatt@enron.com 2001-09-28
## 3745 kevin.hyatt@enron.com 2001-09-28
## 3746 kevin.hyatt@enron.com 2001-09-28
## 3747 kevin.hyatt@enron.com 2001-09-28
## 3748 kevin.hyatt@enron.com 2001-09-28
## 3749 kevin.hyatt@enron.com 2001-09-28
## 3750 kevin.hyatt@enron.com 2001-09-28
## 3751 kevin.hyatt@enron.com 2001-09-28
## 3752 kevin.hyatt@enron.com 2001-09-28
## 3753 steven.harris@enron.com 2001-10-03
## 3754 steven.harris@enron.com 2001-10-03
## 3755 steven.harris@enron.com 2001-10-03
## 3756 steven.harris@enron.com 2001-10-03
## 3757 steven.harris@enron.com 2001-10-03
## 3758 steven.harris@enron.com 2001-10-03
## 3759 steven.harris@enron.com 2001-10-03
## 3760 steven.harris@enron.com 2001-10-03
## 3761 steven.harris@enron.com 2001-10-03
## 3762 steven.harris@enron.com 2001-10-03
## 3763 steven.harris@enron.com 2001-10-03
## 3764 steven.harris@enron.com 2001-10-03
## 3765 teb.lokey@enron.com 2001-10-03
## 3766 teb.lokey@enron.com 2001-10-03
## 3767 teb.lokey@enron.com 2001-10-03
## 3768 teb.lokey@enron.com 2001-10-03
## 3769 teb.lokey@enron.com 2001-10-03
## 3770 teb.lokey@enron.com 2001-10-03
## 3771 teb.lokey@enron.com 2001-10-03
## 3772 shelley.corman@enron.com 2001-10-04
## 3773 shelley.corman@enron.com 2001-10-04
## 3774 kevin.hyatt@enron.com 2001-10-08
## 3775 kevin.hyatt@enron.com 2001-10-08
## 3776 kevin.hyatt@enron.com 2001-10-08
## 3777 kevin.hyatt@enron.com 2001-10-08
## 3778 kevin.hyatt@enron.com 2001-10-08
## 3779 kevin.hyatt@enron.com 2001-10-08
## 3780 kevin.hyatt@enron.com 2001-10-08
## 3781 kevin.hyatt@enron.com 2001-10-08
## 3782 kevin.hyatt@enron.com 2001-10-08
## 3783 kevin.hyatt@enron.com 2001-10-08
## 3784 jeff.dasovich@enron.com 2001-10-19
## 3785 jeff.dasovich@enron.com 2001-10-19
## 3786 jeff.dasovich@enron.com 2001-10-19
## 3787 jeff.dasovich@enron.com 2001-10-19
## 3788 jeff.dasovich@enron.com 2001-10-19
## 3789 jeff.dasovich@enron.com 2001-10-19
## 3790 jeff.dasovich@enron.com 2001-10-19
## 3791 jeff.dasovich@enron.com 2001-10-19
## 3792 jeff.dasovich@enron.com 2001-10-19
## 3793 jeff.dasovich@enron.com 2001-10-19
## 3794 jeff.dasovich@enron.com 2001-10-19
## 3795 jeff.dasovich@enron.com 2001-10-19
## 3796 jeff.dasovich@enron.com 2001-10-19
## 3797 jeff.dasovich@enron.com 2001-10-19
## 3798 jeff.dasovich@enron.com 2001-10-19
## 3799 shelley.corman@enron.com 2001-10-23
## 3800 drew.fossum@enron.com 2001-10-24
## 3801 drew.fossum@enron.com 2001-10-24
## 3802 drew.fossum@enron.com 2001-10-24
## 3803 drew.fossum@enron.com 2001-10-24
## 3804 drew.fossum@enron.com 2001-10-24
## 3805 drew.fossum@enron.com 2001-10-24
## 3806 kevin.hyatt@enron.com 2001-10-29
## 3807 kevin.hyatt@enron.com 2001-10-29
## 3808 kevin.hyatt@enron.com 2001-10-29
## 3809 kevin.hyatt@enron.com 2001-10-29
## 3810 kevin.hyatt@enron.com 2001-10-29
## 3811 kevin.hyatt@enron.com 2001-10-29
## 3812 kevin.hyatt@enron.com 2001-10-29
## 3813 kevin.hyatt@enron.com 2001-10-29
## 3814 kevin.hyatt@enron.com 2001-10-29
## 3815 kevin.hyatt@enron.com 2001-10-29
## 3816 kevin.hyatt@enron.com 2001-10-29
## 3817 kevin.hyatt@enron.com 2001-10-29
## 3818 kevin.hyatt@enron.com 2001-10-29
## 3819 kevin.hyatt@enron.com 2001-10-29
## 3820 kevin.hyatt@enron.com 2001-07-16
## 3821 drew.fossum@enron.com 2001-07-27
## 3822 drew.fossum@enron.com 2001-07-27
## 3823 drew.fossum@enron.com 2001-07-27
## 3824 drew.fossum@enron.com 2001-10-10
## 3825 drew.fossum@enron.com 2001-10-10
## 3826 drew.fossum@enron.com 2001-10-10
## 3827 drew.fossum@enron.com 2001-10-10
## 3828 drew.fossum@enron.com 2001-10-10
## 3829 drew.fossum@enron.com 2001-10-10
## 3830 drew.fossum@enron.com 2001-10-16
## 3831 drew.fossum@enron.com 2001-10-16
## 3832 drew.fossum@enron.com 2001-10-16
## 3833 drew.fossum@enron.com 2001-10-16
## 3834 drew.fossum@enron.com 2001-10-16
## 3835 drew.fossum@enron.com 2001-10-16
## 3836 drew.fossum@enron.com 2001-10-16
## 3837 drew.fossum@enron.com 2001-10-16
## 3838 james.d.steffes@enron.com 2002-01-18
## 3839 richard.ring@enron.com 2002-01-31
## 3840 richard.ring@enron.com 2002-01-29
## 3841 richard.ring@enron.com 2002-01-29
## 3842 richard.ring@enron.com 2002-01-29
## 3843 richard.ring@enron.com 2002-01-29
## 3844 richard.ring@enron.com 2002-01-29
## 3845 richard.ring@enron.com 2002-01-29
## 3846 richard.ring@enron.com 2002-01-29
## 3847 richard.ring@enron.com 2002-01-29
## 3848 richard.ring@enron.com 2002-01-29
## 3849 richard.ring@enron.com 2002-01-28
## 3850 richard.ring@enron.com 2002-01-25
## 3851 richard.ring@enron.com 2002-01-24
## 3852 richard.ring@enron.com 2002-01-23
## 3853 richard.ring@enron.com 2002-01-23
## 3854 richard.ring@enron.com 2002-01-23
## 3855 richard.ring@enron.com 2002-01-23
## 3856 richard.ring@enron.com 2002-01-23
## 3857 richard.ring@enron.com 2002-01-22
## 3858 richard.ring@enron.com 2002-01-22
## 3859 richard.ring@enron.com 2002-01-22
## 3860 richard.ring@enron.com 2002-01-18
## 3861 richard.ring@enron.com 2002-01-17
## 3862 richard.ring@enron.com 2002-01-17
## 3863 richard.ring@enron.com 2002-01-17
## 3864 richard.ring@enron.com 2002-01-17
## 3865 richard.ring@enron.com 2002-01-17
## 3866 richard.ring@enron.com 2002-01-17
## 3867 richard.ring@enron.com 2002-01-17
## 3868 richard.ring@enron.com 2002-01-17
## 3869 richard.ring@enron.com 2002-01-17
## 3870 richard.ring@enron.com 2002-01-17
## 3871 richard.ring@enron.com 2002-01-17
## 3872 richard.ring@enron.com 2002-01-17
## 3873 richard.ring@enron.com 2002-01-17
## 3874 richard.ring@enron.com 2002-01-17
## 3875 richard.ring@enron.com 2002-01-17
## 3876 richard.ring@enron.com 2002-01-17
## 3877 richard.ring@enron.com 2002-01-17
## 3878 richard.ring@enron.com 2002-01-16
## 3879 richard.ring@enron.com 2002-01-16
## 3880 richard.ring@enron.com 2002-01-16
## 3881 richard.ring@enron.com 2002-01-14
## 3882 richard.ring@enron.com 2002-01-09
## 3883 richard.ring@enron.com 2002-01-08
## 3884 richard.ring@enron.com 2002-01-08
## 3885 richard.ring@enron.com 2002-01-08
## 3886 richard.ring@enron.com 2002-01-03
## 3887 richard.ring@enron.com 2001-12-26
## 3888 richard.ring@enron.com 2001-12-26
## 3889 richard.ring@enron.com 2001-12-26
## 3890 richard.ring@enron.com 2001-12-19
## 3891 richard.ring@enron.com 2001-10-24
## 3892 richard.ring@enron.com 2001-10-24
## 3893 richard.ring@enron.com 2001-10-25
## 3894 richard.ring@enron.com 2001-10-25
## 3895 richard.ring@enron.com 2001-10-25
## 3896 richard.ring@enron.com 2001-10-25
## 3897 richard.ring@enron.com 2001-10-25
## 3898 richard.ring@enron.com 2001-10-25
## 3899 richard.ring@enron.com 2001-10-26
## 3900 richard.ring@enron.com 2001-10-26
## 3901 richard.ring@enron.com 2001-10-26
## 3902 richard.ring@enron.com 2001-10-26
## 3903 richard.ring@enron.com 2001-10-26
## 3904 richard.ring@enron.com 2001-10-26
## 3905 richard.ring@enron.com 2001-10-26
## 3906 richard.ring@enron.com 2001-10-26
## 3907 richard.ring@enron.com 2001-10-29
## 3908 richard.ring@enron.com 2001-10-29
## 3909 richard.ring@enron.com 2001-10-29
## 3910 richard.ring@enron.com 2001-10-29
## 3911 richard.ring@enron.com 2001-10-29
## 3912 richard.ring@enron.com 2001-10-29
## 3913 richard.ring@enron.com 2001-10-29
## 3914 richard.ring@enron.com 2001-10-29
## 3915 richard.ring@enron.com 2001-10-29
## 3916 jeff.dasovich@enron.com 2001-08-28
## 3917 jeff.dasovich@enron.com 2001-08-28
## 3918 jeff.dasovich@enron.com 2001-08-28
## 3919 jeff.dasovich@enron.com 2001-08-28
## 3920 jeff.dasovich@enron.com 2001-08-28
## 3921 jeff.dasovich@enron.com 2001-08-28
## 3922 jeff.dasovich@enron.com 2001-08-28
## 3923 jeff.dasovich@enron.com 2001-08-28
## 3924 jeff.dasovich@enron.com 2001-08-28
## 3925 jeff.dasovich@enron.com 2001-08-28
## 3926 jeff.dasovich@enron.com 2001-08-28
## 3927 jeff.dasovich@enron.com 2001-08-28
## 3928 jeff.dasovich@enron.com 2001-08-28
## 3929 jeff.dasovich@enron.com 2001-08-28
## 3930 jeff.dasovich@enron.com 2001-08-28
## 3931 james.d.steffes@enron.com 2001-12-11
## 3932 james.d.steffes@enron.com 2001-12-11
## 3933 james.d.steffes@enron.com 2001-12-11
## 3934 james.d.steffes@enron.com 2001-12-11
## 3935 james.d.steffes@enron.com 2001-12-11
## 3936 james.d.steffes@enron.com 2001-12-11
## 3937 james.d.steffes@enron.com 2001-12-11
## 3938 james.d.steffes@enron.com 2001-12-11
## 3939 elizabeth.sager@enron.com 2001-09-27
## 3940 elizabeth.sager@enron.com 2001-09-27
## 3941 elizabeth.sager@enron.com 2001-09-27
## 3942 richard.ring@enron.com 2001-10-03
## 3943 mark.e.taylor@enron.com 2000-06-08
## 3944 mark.e.taylor@enron.com 2000-05-30
## 3945 mark.e.taylor@enron.com 1999-07-30
## 3946 mark.e.taylor@enron.com 1999-07-02
## 3947 mark.e.taylor@enron.com 2001-06-07
## 3948 mark.e.taylor@enron.com 2001-06-07
## 3949 mark.e.taylor@enron.com 2001-06-07
## 3950 mark.e.taylor@enron.com 2001-06-07
## 3951 mark.e.taylor@enron.com 2001-06-05
## 3952 mark.e.taylor@enron.com 2001-06-04
## 3953 mark.e.taylor@enron.com 2001-06-01
## 3954 mark.e.taylor@enron.com 2001-06-01
## 3955 mark.e.taylor@enron.com 2001-06-01
## 3956 mark.e.taylor@enron.com 2001-06-01
## 3957 mark.e.taylor@enron.com 2001-06-01
## 3958 mark.e.taylor@enron.com 2001-06-01
## 3959 mark.e.taylor@enron.com 2001-06-01
## 3960 mark.e.taylor@enron.com 2001-06-01
## 3961 mark.e.taylor@enron.com 2001-06-01
## 3962 mark.e.taylor@enron.com 2001-06-01
## 3963 mark.e.taylor@enron.com 2001-06-01
## 3964 mark.e.taylor@enron.com 2001-06-01
## 3965 mark.e.taylor@enron.com 2001-06-01
## 3966 mark.e.taylor@enron.com 2001-06-01
## 3967 mark.e.taylor@enron.com 2001-06-01
## 3968 mark.e.taylor@enron.com 2001-06-01
## 3969 mark.e.taylor@enron.com 2001-06-01
## 3970 mark.e.taylor@enron.com 2001-06-01
## 3971 mark.e.taylor@enron.com 2001-06-01
## 3972 mark.e.taylor@enron.com 2001-06-01
## 3973 mark.e.taylor@enron.com 2001-05-31
## 3974 mark.e.taylor@enron.com 2001-05-31
## 3975 mark.e.taylor@enron.com 2001-05-31
## 3976 mark.e.taylor@enron.com 2001-05-31
## 3977 mark.e.taylor@enron.com 2001-05-31
## 3978 mark.e.taylor@enron.com 2001-05-31
## 3979 mark.e.taylor@enron.com 2001-05-31
## 3980 mark.e.taylor@enron.com 2001-05-31
## 3981 mark.e.taylor@enron.com 2001-05-31
## 3982 mark.e.taylor@enron.com 2001-05-31
## 3983 mark.e.taylor@enron.com 2001-05-31
## 3984 mark.e.taylor@enron.com 2001-05-29
## 3985 mark.e.taylor@enron.com 2001-05-25
## 3986 mark.e.taylor@enron.com 2001-05-25
## 3987 mark.e.taylor@enron.com 2001-05-25
## 3988 mark.e.taylor@enron.com 2001-05-25
## 3989 mark.e.taylor@enron.com 2001-05-25
## 3990 mark.e.taylor@enron.com 2001-05-25
## 3991 mark.e.taylor@enron.com 2001-05-25
## 3992 mark.e.taylor@enron.com 2001-05-25
## 3993 mark.e.taylor@enron.com 2001-05-25
## 3994 mark.e.taylor@enron.com 2001-05-25
## 3995 mark.e.taylor@enron.com 2001-05-25
## 3996 mark.e.taylor@enron.com 2001-05-25
## 3997 mark.e.taylor@enron.com 2001-05-25
## 3998 mark.e.taylor@enron.com 2001-05-25
## 3999 mark.e.taylor@enron.com 2001-05-25
## 4000 mark.e.taylor@enron.com 2001-05-24
## 4001 mark.e.taylor@enron.com 2001-05-24
## 4002 mark.e.taylor@enron.com 2001-05-24
## 4003 mark.e.taylor@enron.com 2001-05-24
## 4004 mark.e.taylor@enron.com 2001-05-24
## 4005 mark.e.taylor@enron.com 2001-05-24
## 4006 mark.e.taylor@enron.com 2001-05-24
## 4007 mark.e.taylor@enron.com 2001-05-24
## 4008 mark.e.taylor@enron.com 2001-05-24
## 4009 mark.e.taylor@enron.com 2001-05-24
## 4010 mark.e.taylor@enron.com 2001-05-24
## 4011 mark.e.taylor@enron.com 2001-05-24
## 4012 mark.e.taylor@enron.com 2001-05-24
## 4013 mark.e.taylor@enron.com 2001-05-24
## 4014 mark.e.taylor@enron.com 2001-05-22
## 4015 mark.e.taylor@enron.com 2001-05-22
## 4016 mark.e.taylor@enron.com 2001-05-22
## 4017 mark.e.taylor@enron.com 2001-05-22
## 4018 mark.e.taylor@enron.com 2001-05-22
## 4019 mark.e.taylor@enron.com 2001-05-22
## 4020 mark.e.taylor@enron.com 2001-05-22
## 4021 mark.e.taylor@enron.com 2001-05-22
## 4022 mark.e.taylor@enron.com 2001-05-10
## 4023 mark.e.taylor@enron.com 2001-05-10
## 4024 mark.e.taylor@enron.com 2001-05-10
## 4025 mark.e.taylor@enron.com 2001-05-10
## 4026 mark.e.taylor@enron.com 2001-05-10
## 4027 mark.e.taylor@enron.com 2001-05-10
## 4028 mark.e.taylor@enron.com 2001-05-10
## 4029 mark.e.taylor@enron.com 2001-05-10
## 4030 mark.e.taylor@enron.com 2001-05-10
## 4031 mark.e.taylor@enron.com 2001-05-10
## 4032 mark.e.taylor@enron.com 2001-05-10
## 4033 mark.e.taylor@enron.com 2001-05-10
## 4034 mark.e.taylor@enron.com 2001-05-10
## 4035 mark.e.taylor@enron.com 2001-05-10
## 4036 mark.e.taylor@enron.com 2001-05-10
## 4037 mark.e.taylor@enron.com 2001-05-10
## 4038 mark.e.taylor@enron.com 2001-05-10
## 4039 mark.e.taylor@enron.com 2001-05-10
## 4040 mark.e.taylor@enron.com 2001-05-10
## 4041 mark.e.taylor@enron.com 2001-05-10
## 4042 mark.e.taylor@enron.com 2001-05-10
## 4043 mark.e.taylor@enron.com 2001-05-10
## 4044 mark.e.taylor@enron.com 2001-05-10
## 4045 mark.e.taylor@enron.com 2001-05-10
## 4046 mark.e.taylor@enron.com 2001-05-10
## 4047 mark.e.taylor@enron.com 2001-05-10
## 4048 mark.e.taylor@enron.com 2001-05-10
## 4049 mark.e.taylor@enron.com 2001-05-10
## 4050 mark.e.taylor@enron.com 2001-05-10
## 4051 mark.e.taylor@enron.com 2001-05-10
## 4052 mark.e.taylor@enron.com 2001-05-10
## 4053 mark.e.taylor@enron.com 2001-05-10
## 4054 mark.e.taylor@enron.com 2001-05-10
## 4055 mark.e.taylor@enron.com 2001-05-10
## 4056 mark.e.taylor@enron.com 2001-05-10
## 4057 mark.e.taylor@enron.com 2001-05-10
## 4058 mark.e.taylor@enron.com 2001-05-09
## 4059 mark.e.taylor@enron.com 2001-05-09
## 4060 mark.e.taylor@enron.com 2001-05-09
## 4061 mark.e.taylor@enron.com 2001-05-09
## 4062 mark.e.taylor@enron.com 2001-05-09
## 4063 mark.e.taylor@enron.com 2001-05-09
## 4064 mark.e.taylor@enron.com 2001-05-09
## 4065 mark.e.taylor@enron.com 2001-05-09
## 4066 mark.e.taylor@enron.com 2001-05-09
## 4067 mark.e.taylor@enron.com 2001-05-09
## 4068 mark.e.taylor@enron.com 2001-05-09
## 4069 mark.e.taylor@enron.com 2001-05-09
## 4070 mark.e.taylor@enron.com 2001-05-09
## 4071 mark.e.taylor@enron.com 2001-05-09
## 4072 mark.e.taylor@enron.com 2001-05-09
## 4073 mark.e.taylor@enron.com 2001-05-09
## 4074 mark.e.taylor@enron.com 2001-05-09
## 4075 mark.e.taylor@enron.com 2001-05-09
## 4076 mark.e.taylor@enron.com 2001-05-09
## 4077 mark.e.taylor@enron.com 2001-05-09
## 4078 mark.e.taylor@enron.com 2001-05-09
## 4079 mark.e.taylor@enron.com 2001-05-09
## 4080 mark.e.taylor@enron.com 2001-05-08
## 4081 mark.e.taylor@enron.com 2001-05-08
## 4082 mark.e.taylor@enron.com 2001-05-08
## 4083 mark.e.taylor@enron.com 2001-05-08
## 4084 mark.e.taylor@enron.com 2001-05-08
## 4085 mark.e.taylor@enron.com 2001-05-03
## 4086 mark.e.taylor@enron.com 2001-05-03
## 4087 mark.e.taylor@enron.com 2001-05-03
## 4088 mark.e.taylor@enron.com 2001-05-03
## 4089 mark.e.taylor@enron.com 2001-05-03
## 4090 mark.e.taylor@enron.com 2001-05-03
## 4091 mark.e.taylor@enron.com 2001-05-03
## 4092 mark.e.taylor@enron.com 2001-05-03
## 4093 mark.e.taylor@enron.com 2001-05-03
## 4094 mark.e.taylor@enron.com 2001-05-03
## 4095 mark.e.taylor@enron.com 2001-05-03
## 4096 mark.e.taylor@enron.com 2001-05-03
## 4097 mark.e.taylor@enron.com 2001-05-02
## 4098 mark.e.taylor@enron.com 2001-05-01
## 4099 mark.e.taylor@enron.com 2001-05-01
## 4100 mark.e.taylor@enron.com 2001-05-01
## 4101 mark.e.taylor@enron.com 2001-05-01
## 4102 mark.e.taylor@enron.com 2001-05-01
## 4103 mark.e.taylor@enron.com 2001-05-01
## 4104 mark.e.taylor@enron.com 2001-05-01
## 4105 mark.e.taylor@enron.com 2001-05-01
## 4106 mark.e.taylor@enron.com 2001-05-01
## 4107 mark.e.taylor@enron.com 2001-05-01
## 4108 mark.e.taylor@enron.com 2001-05-01
## 4109 mark.e.taylor@enron.com 2001-05-01
## 4110 mark.e.taylor@enron.com 2001-05-01
## 4111 mark.e.taylor@enron.com 2001-05-01
## 4112 mark.e.taylor@enron.com 2001-05-01
## 4113 mark.e.taylor@enron.com 2001-04-30
## 4114 mark.e.taylor@enron.com 2001-04-30
## 4115 mark.e.taylor@enron.com 2001-04-30
## 4116 mark.e.taylor@enron.com 2001-04-30
## 4117 mark.e.taylor@enron.com 2001-04-30
## 4118 mark.e.taylor@enron.com 2001-04-30
## 4119 mark.e.taylor@enron.com 2001-04-30
## 4120 mark.e.taylor@enron.com 2001-04-30
## 4121 mark.e.taylor@enron.com 2001-04-27
## 4122 mark.e.taylor@enron.com 2001-04-27
## 4123 mark.e.taylor@enron.com 2001-04-27
## 4124 mark.e.taylor@enron.com 2001-04-27
## 4125 mark.e.taylor@enron.com 2001-04-27
## 4126 mark.e.taylor@enron.com 2001-04-27
## 4127 mark.e.taylor@enron.com 2001-04-27
## 4128 mark.e.taylor@enron.com 2001-04-27
## 4129 mark.e.taylor@enron.com 2001-04-27
## 4130 mark.e.taylor@enron.com 2001-04-27
## 4131 mark.e.taylor@enron.com 2001-04-27
## 4132 mark.e.taylor@enron.com 2001-04-27
## 4133 mark.e.taylor@enron.com 2001-04-27
## 4134 mark.e.taylor@enron.com 2001-04-26
## 4135 mark.e.taylor@enron.com 2001-04-26
## 4136 mark.e.taylor@enron.com 2001-04-25
## 4137 mark.e.taylor@enron.com 2001-04-25
## 4138 mark.e.taylor@enron.com 2001-04-25
## 4139 mark.e.taylor@enron.com 2001-04-25
## 4140 mark.e.taylor@enron.com 2001-04-25
## 4141 mark.e.taylor@enron.com 2001-04-25
## 4142 mark.e.taylor@enron.com 2001-04-25
## 4143 mark.e.taylor@enron.com 2001-04-25
## 4144 mark.e.taylor@enron.com 2001-04-25
## 4145 mark.e.taylor@enron.com 2001-04-25
## 4146 mark.e.taylor@enron.com 2001-04-24
## 4147 mark.e.taylor@enron.com 2001-04-23
## 4148 mark.e.taylor@enron.com 2001-04-23
## 4149 mark.e.taylor@enron.com 2001-04-23
## 4150 mark.e.taylor@enron.com 2001-04-23
## 4151 mark.e.taylor@enron.com 2001-04-23
## 4152 mark.e.taylor@enron.com 2001-04-19
## 4153 mark.e.taylor@enron.com 2001-04-19
## 4154 mark.e.taylor@enron.com 2001-04-19
## 4155 mark.e.taylor@enron.com 2001-04-19
## 4156 mark.e.taylor@enron.com 2001-04-19
## 4157 mark.e.taylor@enron.com 2001-04-19
## 4158 mark.e.taylor@enron.com 2001-04-19
## 4159 mark.e.taylor@enron.com 2001-04-19
## 4160 mark.e.taylor@enron.com 2001-04-19
## 4161 mark.e.taylor@enron.com 2001-04-19
## 4162 mark.e.taylor@enron.com 2001-04-19
## 4163 mark.e.taylor@enron.com 2001-04-19
## 4164 mark.e.taylor@enron.com 2001-04-19
## 4165 mark.e.taylor@enron.com 2001-04-19
## 4166 mark.e.taylor@enron.com 2001-04-19
## 4167 mark.e.taylor@enron.com 2001-04-19
## 4168 mark.e.taylor@enron.com 2001-04-19
## 4169 mark.e.taylor@enron.com 2001-04-19
## 4170 mark.e.taylor@enron.com 2001-04-19
## 4171 mark.e.taylor@enron.com 2001-04-19
## 4172 mark.e.taylor@enron.com 2001-04-17
## 4173 mark.e.taylor@enron.com 2001-04-16
## 4174 mark.e.taylor@enron.com 2001-04-16
## 4175 mark.e.taylor@enron.com 2001-04-16
## 4176 mark.e.taylor@enron.com 2001-04-16
## 4177 mark.e.taylor@enron.com 2001-04-16
## 4178 mark.e.taylor@enron.com 2001-04-16
## 4179 mark.e.taylor@enron.com 2001-04-16
## 4180 mark.e.taylor@enron.com 2001-04-16
## 4181 mark.e.taylor@enron.com 2001-04-16
## 4182 mark.e.taylor@enron.com 2001-04-16
## 4183 mark.e.taylor@enron.com 2001-04-16
## 4184 mark.e.taylor@enron.com 2001-04-16
## 4185 mark.e.taylor@enron.com 2001-04-16
## 4186 mark.e.taylor@enron.com 2001-04-16
## 4187 mark.e.taylor@enron.com 2001-04-16
## 4188 mark.e.taylor@enron.com 2001-04-16
## 4189 mark.e.taylor@enron.com 2001-04-16
## 4190 mark.e.taylor@enron.com 2001-04-16
## 4191 mark.e.taylor@enron.com 2001-04-16
## 4192 mark.e.taylor@enron.com 2001-04-16
## 4193 mark.e.taylor@enron.com 2001-04-16
## 4194 mark.e.taylor@enron.com 2001-04-16
## 4195 mark.e.taylor@enron.com 2001-04-16
## 4196 mark.e.taylor@enron.com 2001-04-16
## 4197 mark.e.taylor@enron.com 2001-04-16
## 4198 mark.e.taylor@enron.com 2001-04-16
## 4199 mark.e.taylor@enron.com 2001-04-16
## 4200 mark.e.taylor@enron.com 2001-04-16
## 4201 mark.e.taylor@enron.com 2001-04-13
## 4202 mark.e.taylor@enron.com 2001-04-12
## 4203 mark.e.taylor@enron.com 2001-04-12
## 4204 mark.e.taylor@enron.com 2001-04-11
## 4205 mark.e.taylor@enron.com 2001-04-11
## 4206 mark.e.taylor@enron.com 2001-04-11
## 4207 mark.e.taylor@enron.com 2001-04-11
## 4208 mark.e.taylor@enron.com 2001-04-11
## 4209 mark.e.taylor@enron.com 2001-04-11
## 4210 mark.e.taylor@enron.com 2001-04-11
## 4211 mark.e.taylor@enron.com 2001-04-11
## 4212 mark.e.taylor@enron.com 2001-04-11
## 4213 mark.e.taylor@enron.com 2001-04-10
## 4214 mark.e.taylor@enron.com 2001-04-10
## 4215 mark.e.taylor@enron.com 2001-04-10
## 4216 mark.e.taylor@enron.com 2001-04-10
## 4217 mark.e.taylor@enron.com 2001-04-10
## 4218 mark.e.taylor@enron.com 2001-04-10
## 4219 mark.e.taylor@enron.com 2001-04-03
## 4220 mark.e.taylor@enron.com 2001-04-03
## 4221 mark.e.taylor@enron.com 2001-04-03
## 4222 mark.e.taylor@enron.com 2001-04-03
## 4223 mark.e.taylor@enron.com 2001-04-03
## 4224 mark.e.taylor@enron.com 2001-04-03
## 4225 mark.e.taylor@enron.com 2001-04-03
## 4226 mark.e.taylor@enron.com 2001-04-03
## 4227 mark.e.taylor@enron.com 2001-04-03
## 4228 mark.e.taylor@enron.com 2001-04-03
## 4229 mark.e.taylor@enron.com 2001-04-03
## 4230 mark.e.taylor@enron.com 2001-04-03
## 4231 mark.e.taylor@enron.com 2001-04-03
## 4232 mark.e.taylor@enron.com 2001-04-03
## 4233 mark.e.taylor@enron.com 2001-04-03
## 4234 mark.e.taylor@enron.com 2001-04-03
## 4235 mark.e.taylor@enron.com 2001-04-03
## 4236 mark.e.taylor@enron.com 2001-04-03
## 4237 mark.e.taylor@enron.com 2001-04-03
## 4238 mark.e.taylor@enron.com 2001-04-03
## 4239 mark.e.taylor@enron.com 2001-04-03
## 4240 mark.e.taylor@enron.com 2001-04-03
## 4241 mark.e.taylor@enron.com 2001-04-03
## 4242 mark.e.taylor@enron.com 2001-04-02
## 4243 mark.e.taylor@enron.com 2001-04-02
## 4244 mark.e.taylor@enron.com 2001-04-02
## 4245 mark.e.taylor@enron.com 2001-04-02
## 4246 mark.e.taylor@enron.com 2001-03-30
## 4247 mark.e.taylor@enron.com 2001-03-30
## 4248 mark.e.taylor@enron.com 2001-03-28
## 4249 mark.e.taylor@enron.com 2001-03-16
## 4250 mark.e.taylor@enron.com 2001-03-16
## 4251 mark.e.taylor@enron.com 2001-03-16
## 4252 mark.e.taylor@enron.com 2001-03-16
## 4253 mark.e.taylor@enron.com 2001-03-16
## 4254 mark.e.taylor@enron.com 2001-03-16
## 4255 mark.e.taylor@enron.com 2001-03-16
## 4256 mark.e.taylor@enron.com 2001-03-16
## 4257 mark.e.taylor@enron.com 2001-03-16
## 4258 mark.e.taylor@enron.com 2001-03-16
## 4259 mark.e.taylor@enron.com 2001-03-16
## 4260 mark.e.taylor@enron.com 2001-03-16
## 4261 mark.e.taylor@enron.com 2001-03-16
## 4262 mark.e.taylor@enron.com 2001-03-16
## 4263 mark.e.taylor@enron.com 2001-03-16
## 4264 mark.e.taylor@enron.com 2001-03-16
## 4265 mark.e.taylor@enron.com 2001-03-16
## 4266 mark.e.taylor@enron.com 2001-03-16
## 4267 mark.e.taylor@enron.com 2001-03-15
## 4268 mark.e.taylor@enron.com 2001-03-15
## 4269 mark.e.taylor@enron.com 2001-03-15
## 4270 mark.e.taylor@enron.com 2001-03-15
## 4271 mark.e.taylor@enron.com 2001-03-15
## 4272 mark.e.taylor@enron.com 2001-03-15
## 4273 mark.e.taylor@enron.com 2001-03-15
## 4274 mark.e.taylor@enron.com 2001-03-15
## 4275 mark.e.taylor@enron.com 2001-03-15
## 4276 mark.e.taylor@enron.com 2001-03-15
## 4277 mark.e.taylor@enron.com 2001-03-15
## 4278 mark.e.taylor@enron.com 2001-03-15
## 4279 mark.e.taylor@enron.com 2001-03-15
## 4280 mark.e.taylor@enron.com 2001-03-15
## 4281 mark.e.taylor@enron.com 2001-03-15
## 4282 mark.e.taylor@enron.com 2001-03-15
## 4283 mark.e.taylor@enron.com 2001-03-15
## 4284 mark.e.taylor@enron.com 2001-03-15
## 4285 mark.e.taylor@enron.com 2001-03-15
## 4286 mark.e.taylor@enron.com 2001-03-15
## 4287 mark.e.taylor@enron.com 2001-03-14
## 4288 mark.e.taylor@enron.com 2001-03-14
## 4289 mark.e.taylor@enron.com 2001-03-14
## 4290 mark.e.taylor@enron.com 2001-03-14
## 4291 mark.e.taylor@enron.com 2001-03-14
## 4292 mark.e.taylor@enron.com 2001-03-14
## 4293 mark.e.taylor@enron.com 2001-03-14
## 4294 mark.e.taylor@enron.com 2001-03-14
## 4295 mark.e.taylor@enron.com 2001-03-14
## 4296 mark.e.taylor@enron.com 2001-03-14
## 4297 mark.e.taylor@enron.com 2001-03-14
## 4298 mark.e.taylor@enron.com 2001-03-14
## 4299 mark.e.taylor@enron.com 2001-03-13
## 4300 mark.e.taylor@enron.com 2001-03-13
## 4301 mark.e.taylor@enron.com 2001-03-13
## 4302 mark.e.taylor@enron.com 2001-03-13
## 4303 mark.e.taylor@enron.com 2001-03-13
## 4304 mark.e.taylor@enron.com 2001-03-13
## 4305 mark.e.taylor@enron.com 2001-03-13
## 4306 mark.e.taylor@enron.com 2001-03-13
## 4307 mark.e.taylor@enron.com 2001-03-12
## 4308 mark.e.taylor@enron.com 2001-03-12
## 4309 mark.e.taylor@enron.com 2001-03-12
## 4310 mark.e.taylor@enron.com 2001-03-12
## 4311 mark.e.taylor@enron.com 2001-03-12
## 4312 mark.e.taylor@enron.com 2001-03-12
## 4313 mark.e.taylor@enron.com 2001-03-12
## 4314 mark.e.taylor@enron.com 2001-03-12
## 4315 mark.e.taylor@enron.com 2001-03-12
## 4316 mark.e.taylor@enron.com 2001-03-12
## 4317 mark.e.taylor@enron.com 2001-03-12
## 4318 mark.e.taylor@enron.com 2001-03-12
## 4319 mark.e.taylor@enron.com 2001-03-12
## 4320 mark.e.taylor@enron.com 2001-03-12
## 4321 mark.e.taylor@enron.com 2001-03-12
## 4322 mark.e.taylor@enron.com 2001-03-12
## 4323 mark.e.taylor@enron.com 2001-03-12
## 4324 mark.e.taylor@enron.com 2001-03-12
## 4325 mark.e.taylor@enron.com 2001-03-12
## 4326 mark.e.taylor@enron.com 2001-03-12
## 4327 mark.e.taylor@enron.com 2001-03-12
## 4328 mark.e.taylor@enron.com 2001-03-08
## 4329 mark.e.taylor@enron.com 2001-03-08
## 4330 mark.e.taylor@enron.com 2001-03-08
## 4331 mark.e.taylor@enron.com 2001-03-08
## 4332 mark.e.taylor@enron.com 2001-03-08
## 4333 mark.e.taylor@enron.com 2001-03-07
## 4334 mark.e.taylor@enron.com 2001-03-07
## 4335 mark.e.taylor@enron.com 2001-03-07
## 4336 mark.e.taylor@enron.com 2001-03-07
## 4337 mark.e.taylor@enron.com 2001-03-07
## 4338 mark.e.taylor@enron.com 2001-03-07
## 4339 mark.e.taylor@enron.com 2001-03-06
## 4340 mark.e.taylor@enron.com 2001-03-06
## 4341 mark.e.taylor@enron.com 2001-03-06
## 4342 mark.e.taylor@enron.com 2001-03-06
## 4343 mark.e.taylor@enron.com 2001-03-06
## 4344 mark.e.taylor@enron.com 2001-03-06
## 4345 mark.e.taylor@enron.com 2001-03-06
## 4346 mark.e.taylor@enron.com 2001-03-06
## 4347 mark.e.taylor@enron.com 2001-03-06
## 4348 mark.e.taylor@enron.com 2001-03-06
## 4349 mark.e.taylor@enron.com 2001-03-06
## 4350 mark.e.taylor@enron.com 2001-03-06
## 4351 mark.e.taylor@enron.com 2001-03-06
## 4352 mark.e.taylor@enron.com 2001-03-05
## 4353 mark.e.taylor@enron.com 2001-03-02
## 4354 mark.e.taylor@enron.com 2001-03-02
## 4355 mark.e.taylor@enron.com 2001-03-02
## 4356 mark.e.taylor@enron.com 2001-03-01
## 4357 mark.e.taylor@enron.com 2001-03-01
## 4358 mark.e.taylor@enron.com 2001-03-01
## 4359 mark.e.taylor@enron.com 2001-03-01
## 4360 mark.e.taylor@enron.com 2001-02-28
## 4361 mark.e.taylor@enron.com 2001-02-28
## 4362 mark.e.taylor@enron.com 2001-02-27
## 4363 mark.e.taylor@enron.com 2001-02-27
## 4364 mark.e.taylor@enron.com 2001-02-27
## 4365 mark.e.taylor@enron.com 2001-02-27
## 4366 mark.e.taylor@enron.com 2001-02-27
## 4367 mark.e.taylor@enron.com 2001-02-27
## 4368 mark.e.taylor@enron.com 2001-02-26
## 4369 mark.e.taylor@enron.com 2001-02-23
## 4370 mark.e.taylor@enron.com 2001-02-23
## 4371 mark.e.taylor@enron.com 2001-02-23
## 4372 mark.e.taylor@enron.com 2001-02-23
## 4373 mark.e.taylor@enron.com 2001-02-23
## 4374 mark.e.taylor@enron.com 2001-02-23
## 4375 mark.e.taylor@enron.com 2001-02-23
## 4376 mark.e.taylor@enron.com 2001-02-23
## 4377 mark.e.taylor@enron.com 2001-02-23
## 4378 mark.e.taylor@enron.com 2001-02-22
## 4379 mark.e.taylor@enron.com 2001-02-22
## 4380 mark.e.taylor@enron.com 2001-02-22
## 4381 mark.e.taylor@enron.com 2001-02-22
## 4382 mark.e.taylor@enron.com 2001-02-21
## 4383 mark.e.taylor@enron.com 2001-02-21
## 4384 mark.e.taylor@enron.com 2001-02-21
## 4385 mark.e.taylor@enron.com 2001-02-21
## 4386 mark.e.taylor@enron.com 2001-02-21
## 4387 mark.e.taylor@enron.com 2001-02-21
## 4388 mark.e.taylor@enron.com 2001-02-20
## 4389 mark.e.taylor@enron.com 2001-02-20
## 4390 mark.e.taylor@enron.com 2001-02-20
## 4391 mark.e.taylor@enron.com 2001-02-20
## 4392 mark.e.taylor@enron.com 2001-02-20
## 4393 mark.e.taylor@enron.com 2001-02-20
## 4394 mark.e.taylor@enron.com 2001-02-20
## 4395 mark.e.taylor@enron.com 2001-02-20
## 4396 mark.e.taylor@enron.com 2001-02-20
## 4397 mark.e.taylor@enron.com 2001-02-20
## 4398 mark.e.taylor@enron.com 2001-02-20
## 4399 mark.e.taylor@enron.com 2001-02-20
## 4400 mark.e.taylor@enron.com 2001-02-20
## 4401 mark.e.taylor@enron.com 2001-02-16
## 4402 mark.e.taylor@enron.com 2001-02-16
## 4403 mark.e.taylor@enron.com 2001-02-16
## 4404 mark.e.taylor@enron.com 2001-02-16
## 4405 mark.e.taylor@enron.com 2001-02-16
## 4406 mark.e.taylor@enron.com 2001-02-16
## 4407 mark.e.taylor@enron.com 2001-02-15
## 4408 mark.e.taylor@enron.com 2001-02-15
## 4409 mark.e.taylor@enron.com 2001-02-15
## 4410 mark.e.taylor@enron.com 2001-02-15
## 4411 mark.e.taylor@enron.com 2001-02-15
## 4412 mark.e.taylor@enron.com 2001-02-15
## 4413 mark.e.taylor@enron.com 2001-02-14
## 4414 mark.e.taylor@enron.com 2001-02-14
## 4415 mark.e.taylor@enron.com 2001-02-14
## 4416 mark.e.taylor@enron.com 2001-02-11
## 4417 mark.e.taylor@enron.com 2001-02-11
## 4418 mark.e.taylor@enron.com 2001-02-11
## 4419 mark.e.taylor@enron.com 2001-02-11
## 4420 mark.e.taylor@enron.com 2001-02-10
## 4421 mark.e.taylor@enron.com 2001-02-09
## 4422 mark.e.taylor@enron.com 2001-02-09
## 4423 mark.e.taylor@enron.com 2001-02-09
## 4424 mark.e.taylor@enron.com 2001-02-09
## 4425 mark.e.taylor@enron.com 2001-02-09
## 4426 mark.e.taylor@enron.com 2001-02-08
## 4427 mark.e.taylor@enron.com 2001-02-08
## 4428 mark.e.taylor@enron.com 2001-02-08
## 4429 mark.e.taylor@enron.com 2001-02-08
## 4430 mark.e.taylor@enron.com 2001-02-08
## 4431 mark.e.taylor@enron.com 2001-02-07
## 4432 mark.e.taylor@enron.com 2001-02-07
## 4433 mark.e.taylor@enron.com 2001-02-06
## 4434 mark.e.taylor@enron.com 2001-02-06
## 4435 mark.e.taylor@enron.com 2001-02-06
## 4436 mark.e.taylor@enron.com 2001-02-06
## 4437 mark.e.taylor@enron.com 2001-02-06
## 4438 mark.e.taylor@enron.com 2001-02-06
## 4439 mark.e.taylor@enron.com 2001-02-06
## 4440 mark.e.taylor@enron.com 2001-02-06
## 4441 mark.e.taylor@enron.com 2001-02-06
## 4442 mark.e.taylor@enron.com 2001-02-06
## 4443 mark.e.taylor@enron.com 2001-02-06
## 4444 mark.e.taylor@enron.com 2001-02-06
## 4445 mark.e.taylor@enron.com 2001-02-06
## 4446 mark.e.taylor@enron.com 2001-02-06
## 4447 mark.e.taylor@enron.com 2001-02-06
## 4448 mark.e.taylor@enron.com 2001-02-06
## 4449 mark.e.taylor@enron.com 2001-02-06
## 4450 mark.e.taylor@enron.com 2001-02-06
## 4451 mark.e.taylor@enron.com 2001-02-06
## 4452 mark.e.taylor@enron.com 2001-02-06
## 4453 mark.e.taylor@enron.com 2001-02-06
## 4454 mark.e.taylor@enron.com 2001-02-06
## 4455 mark.e.taylor@enron.com 2001-02-05
## 4456 mark.e.taylor@enron.com 2001-02-05
## 4457 mark.e.taylor@enron.com 2001-02-05
## 4458 mark.e.taylor@enron.com 2001-02-05
## 4459 mark.e.taylor@enron.com 2001-02-05
## 4460 mark.e.taylor@enron.com 2001-02-02
## 4461 mark.e.taylor@enron.com 2001-02-01
## 4462 mark.e.taylor@enron.com 2001-02-01
## 4463 mark.e.taylor@enron.com 2001-02-01
## 4464 mark.e.taylor@enron.com 2001-02-01
## 4465 mark.e.taylor@enron.com 2001-01-31
## 4466 mark.e.taylor@enron.com 2001-01-31
## 4467 mark.e.taylor@enron.com 2001-01-31
## 4468 mark.e.taylor@enron.com 2001-01-30
## 4469 mark.e.taylor@enron.com 2001-01-30
## 4470 mark.e.taylor@enron.com 2001-01-30
## 4471 mark.e.taylor@enron.com 2001-01-29
## 4472 mark.e.taylor@enron.com 2001-01-29
## 4473 mark.e.taylor@enron.com 2001-01-29
## 4474 mark.e.taylor@enron.com 2001-01-29
## 4475 mark.e.taylor@enron.com 2001-01-29
## 4476 mark.e.taylor@enron.com 2001-01-29
## 4477 mark.e.taylor@enron.com 2001-01-29
## 4478 mark.e.taylor@enron.com 2001-01-29
## 4479 mark.e.taylor@enron.com 2001-01-26
## 4480 mark.e.taylor@enron.com 2001-01-26
## 4481 mark.e.taylor@enron.com 2001-01-24
## 4482 mark.e.taylor@enron.com 2001-01-24
## 4483 mark.e.taylor@enron.com 2001-01-24
## 4484 mark.e.taylor@enron.com 2001-01-24
## 4485 mark.e.taylor@enron.com 2001-01-21
## 4486 mark.e.taylor@enron.com 2001-01-19
## 4487 mark.e.taylor@enron.com 2001-01-18
## 4488 mark.e.taylor@enron.com 2001-01-18
## 4489 mark.e.taylor@enron.com 2001-01-18
## 4490 mark.e.taylor@enron.com 2001-01-18
## 4491 mark.e.taylor@enron.com 2001-01-18
## 4492 mark.e.taylor@enron.com 2001-01-18
## 4493 mark.e.taylor@enron.com 2001-01-18
## 4494 mark.e.taylor@enron.com 2001-01-17
## 4495 mark.e.taylor@enron.com 2001-01-17
## 4496 mark.e.taylor@enron.com 2001-01-17
## 4497 mark.e.taylor@enron.com 2001-01-16
## 4498 mark.e.taylor@enron.com 2001-01-16
## 4499 mark.e.taylor@enron.com 2001-01-16
## 4500 mark.e.taylor@enron.com 2001-01-16
## 4501 mark.e.taylor@enron.com 2001-01-16
## 4502 mark.e.taylor@enron.com 2001-01-16
## 4503 mark.e.taylor@enron.com 2001-01-16
## 4504 mark.e.taylor@enron.com 2001-01-16
## 4505 mark.e.taylor@enron.com 2001-01-16
## 4506 mark.e.taylor@enron.com 2001-01-16
## 4507 mark.e.taylor@enron.com 2001-01-16
## 4508 mark.e.taylor@enron.com 2001-01-16
## 4509 mark.e.taylor@enron.com 2001-01-16
## 4510 mark.e.taylor@enron.com 2001-01-16
## 4511 mark.e.taylor@enron.com 2001-01-16
## 4512 mark.e.taylor@enron.com 2001-01-16
## 4513 mark.e.taylor@enron.com 2001-01-16
## 4514 mark.e.taylor@enron.com 2001-01-12
## 4515 mark.e.taylor@enron.com 2001-01-11
## 4516 mark.e.taylor@enron.com 2001-01-11
## 4517 mark.e.taylor@enron.com 2001-01-11
## 4518 mark.e.taylor@enron.com 2001-01-11
## 4519 mark.e.taylor@enron.com 2001-01-11
## 4520 mark.e.taylor@enron.com 2001-01-10
## 4521 mark.e.taylor@enron.com 2001-01-09
## 4522 mark.e.taylor@enron.com 2001-01-09
## 4523 mark.e.taylor@enron.com 2001-01-08
## 4524 mark.e.taylor@enron.com 2001-01-08
## 4525 mark.e.taylor@enron.com 2001-01-08
## 4526 mark.e.taylor@enron.com 2001-01-08
## 4527 mark.e.taylor@enron.com 2001-01-05
## 4528 mark.e.taylor@enron.com 2001-01-05
## 4529 mark.e.taylor@enron.com 2001-01-05
## 4530 mark.e.taylor@enron.com 2001-01-05
## 4531 mark.e.taylor@enron.com 2001-01-05
## 4532 mark.e.taylor@enron.com 2001-01-05
## 4533 mark.e.taylor@enron.com 2001-01-05
## 4534 mark.e.taylor@enron.com 2001-01-05
## 4535 mark.e.taylor@enron.com 2001-01-04
## 4536 mark.e.taylor@enron.com 2001-01-04
## 4537 mark.e.taylor@enron.com 2001-01-04
## 4538 mark.e.taylor@enron.com 2001-01-04
## 4539 mark.e.taylor@enron.com 2001-01-04
## 4540 mark.e.taylor@enron.com 2001-01-04
## 4541 mark.e.taylor@enron.com 2001-01-04
## 4542 mark.e.taylor@enron.com 2001-01-04
## 4543 mark.e.taylor@enron.com 2001-01-04
## 4544 mark.e.taylor@enron.com 2001-01-04
## 4545 mark.e.taylor@enron.com 2001-01-04
## 4546 mark.e.taylor@enron.com 2001-01-04
## 4547 mark.e.taylor@enron.com 2001-01-04
## 4548 mark.e.taylor@enron.com 2001-01-04
## 4549 mark.e.taylor@enron.com 2001-01-04
## 4550 mark.e.taylor@enron.com 2001-01-04
## 4551 mark.e.taylor@enron.com 2001-01-04
## 4552 mark.e.taylor@enron.com 2001-01-04
## 4553 mark.e.taylor@enron.com 2001-01-04
## 4554 mark.e.taylor@enron.com 2001-01-04
## 4555 mark.e.taylor@enron.com 2001-01-04
## 4556 mark.e.taylor@enron.com 2001-01-04
## 4557 mark.e.taylor@enron.com 2001-01-04
## 4558 mark.e.taylor@enron.com 2001-01-04
## 4559 mark.e.taylor@enron.com 2001-01-04
## 4560 mark.e.taylor@enron.com 2001-01-04
## 4561 mark.e.taylor@enron.com 2001-01-04
## 4562 mark.e.taylor@enron.com 2001-01-04
## 4563 mark.e.taylor@enron.com 2001-01-04
## 4564 mark.e.taylor@enron.com 2001-01-04
## 4565 mark.e.taylor@enron.com 2001-01-04
## 4566 mark.e.taylor@enron.com 2001-01-04
## 4567 mark.e.taylor@enron.com 2001-01-04
## 4568 mark.e.taylor@enron.com 2001-01-04
## 4569 mark.e.taylor@enron.com 2001-01-04
## 4570 mark.e.taylor@enron.com 2001-01-04
## 4571 mark.e.taylor@enron.com 2001-01-04
## 4572 mark.e.taylor@enron.com 2001-01-04
## 4573 mark.e.taylor@enron.com 2001-01-04
## 4574 mark.e.taylor@enron.com 2001-01-04
## 4575 mark.e.taylor@enron.com 2001-01-04
## 4576 mark.e.taylor@enron.com 2001-01-04
## 4577 mark.e.taylor@enron.com 2001-01-04
## 4578 mark.e.taylor@enron.com 2001-01-04
## 4579 mark.e.taylor@enron.com 2001-01-03
## 4580 mark.e.taylor@enron.com 2001-01-03
## 4581 mark.e.taylor@enron.com 2001-01-03
## 4582 mark.e.taylor@enron.com 2001-01-03
## 4583 mark.e.taylor@enron.com 2001-01-03
## 4584 mark.e.taylor@enron.com 2001-01-03
## 4585 mark.e.taylor@enron.com 2001-01-03
## 4586 mark.e.taylor@enron.com 2001-01-03
## 4587 mark.e.taylor@enron.com 2001-01-03
## 4588 mark.e.taylor@enron.com 2001-01-03
## 4589 mark.e.taylor@enron.com 2001-01-02
## 4590 mark.e.taylor@enron.com 2001-01-02
## 4591 mark.e.taylor@enron.com 2001-01-02
## 4592 mark.e.taylor@enron.com 2001-01-02
## 4593 mark.e.taylor@enron.com 2001-01-02
## 4594 mark.e.taylor@enron.com 2001-01-02
## 4595 mark.e.taylor@enron.com 2001-01-02
## 4596 mark.e.taylor@enron.com 2001-01-02
## 4597 mark.e.taylor@enron.com 2001-01-02
## 4598 mark.e.taylor@enron.com 2001-01-02
## 4599 mark.e.taylor@enron.com 2001-01-02
## 4600 mark.e.taylor@enron.com 2001-01-02
## 4601 mark.e.taylor@enron.com 2000-12-29
## 4602 mark.e.taylor@enron.com 2000-12-27
## 4603 mark.e.taylor@enron.com 2000-12-27
## 4604 mark.e.taylor@enron.com 2000-12-21
## 4605 mark.e.taylor@enron.com 2000-12-21
## 4606 mark.e.taylor@enron.com 2000-12-21
## 4607 mark.e.taylor@enron.com 2000-12-21
## 4608 mark.e.taylor@enron.com 2000-12-20
## 4609 mark.e.taylor@enron.com 2000-12-20
## 4610 mark.e.taylor@enron.com 2000-12-19
## 4611 mark.e.taylor@enron.com 2000-12-19
## 4612 mark.e.taylor@enron.com 2000-12-19
## 4613 mark.e.taylor@enron.com 2000-12-15
## 4614 mark.e.taylor@enron.com 2000-12-15
## 4615 mark.e.taylor@enron.com 2000-12-15
## 4616 mark.e.taylor@enron.com 2000-12-15
## 4617 mark.e.taylor@enron.com 2000-12-15
## 4618 mark.e.taylor@enron.com 2000-12-15
## 4619 mark.e.taylor@enron.com 2000-12-14
## 4620 mark.e.taylor@enron.com 2000-12-14
## 4621 mark.e.taylor@enron.com 2000-12-14
## 4622 mark.e.taylor@enron.com 2000-12-13
## 4623 mark.e.taylor@enron.com 2000-12-13
## 4624 mark.e.taylor@enron.com 2000-12-13
## 4625 mark.e.taylor@enron.com 2000-12-13
## 4626 mark.e.taylor@enron.com 2000-12-13
## 4627 mark.e.taylor@enron.com 2000-12-13
## 4628 mark.e.taylor@enron.com 2000-12-13
## 4629 mark.e.taylor@enron.com 2000-12-13
## 4630 mark.e.taylor@enron.com 2000-12-13
## 4631 mark.e.taylor@enron.com 2000-12-13
## 4632 mark.e.taylor@enron.com 2000-12-13
## 4633 mark.e.taylor@enron.com 2000-12-13
## 4634 mark.e.taylor@enron.com 2000-12-13
## 4635 mark.e.taylor@enron.com 2000-12-12
## 4636 mark.e.taylor@enron.com 2000-12-12
## 4637 mark.e.taylor@enron.com 2000-12-12
## 4638 mark.e.taylor@enron.com 2000-12-12
## 4639 mark.e.taylor@enron.com 2000-12-12
## 4640 mark.e.taylor@enron.com 2000-12-12
## 4641 mark.e.taylor@enron.com 2000-12-12
## 4642 mark.e.taylor@enron.com 2000-12-12
## 4643 mark.e.taylor@enron.com 2000-12-12
## 4644 mark.e.taylor@enron.com 2000-12-12
## 4645 mark.e.taylor@enron.com 2000-12-12
## 4646 mark.e.taylor@enron.com 2000-12-12
## 4647 mark.e.taylor@enron.com 2000-12-12
## 4648 mark.e.taylor@enron.com 2000-12-12
## 4649 mark.e.taylor@enron.com 2000-12-12
## 4650 mark.e.taylor@enron.com 2000-12-12
## 4651 mark.e.taylor@enron.com 2000-12-12
## 4652 mark.e.taylor@enron.com 2000-12-12
## 4653 mark.e.taylor@enron.com 2000-12-12
## 4654 mark.e.taylor@enron.com 2000-12-11
## 4655 mark.e.taylor@enron.com 2000-12-11
## 4656 mark.e.taylor@enron.com 2000-12-11
## 4657 mark.e.taylor@enron.com 2000-12-11
## 4658 mark.e.taylor@enron.com 2000-12-11
## 4659 mark.e.taylor@enron.com 2000-12-11
## 4660 mark.e.taylor@enron.com 2000-12-11
## 4661 mark.e.taylor@enron.com 2000-12-11
## 4662 mark.e.taylor@enron.com 2000-12-08
## 4663 mark.e.taylor@enron.com 2000-12-08
## 4664 mark.e.taylor@enron.com 2000-12-08
## 4665 mark.e.taylor@enron.com 2000-12-08
## 4666 mark.e.taylor@enron.com 2000-12-08
## 4667 mark.e.taylor@enron.com 2000-12-07
## 4668 mark.e.taylor@enron.com 2000-12-07
## 4669 mark.e.taylor@enron.com 2000-12-06
## 4670 mark.e.taylor@enron.com 2000-12-04
## 4671 mark.e.taylor@enron.com 2000-12-04
## 4672 mark.e.taylor@enron.com 2000-12-04
## 4673 mark.e.taylor@enron.com 2000-12-04
## 4674 mark.e.taylor@enron.com 2000-12-01
## 4675 mark.e.taylor@enron.com 2000-11-30
## 4676 mark.e.taylor@enron.com 2000-11-30
## 4677 mark.e.taylor@enron.com 2000-11-30
## 4678 mark.e.taylor@enron.com 2000-11-29
## 4679 mark.e.taylor@enron.com 2000-11-29
## 4680 mark.e.taylor@enron.com 2000-11-29
## 4681 mark.e.taylor@enron.com 2000-11-29
## 4682 mark.e.taylor@enron.com 2000-11-29
## 4683 mark.e.taylor@enron.com 2000-11-28
## 4684 mark.e.taylor@enron.com 2000-11-27
## 4685 mark.e.taylor@enron.com 2000-11-27
## 4686 mark.e.taylor@enron.com 2000-11-27
## 4687 mark.e.taylor@enron.com 2000-11-27
## 4688 mark.e.taylor@enron.com 2000-11-22
## 4689 mark.e.taylor@enron.com 2000-11-22
## 4690 mark.e.taylor@enron.com 2000-11-21
## 4691 mark.e.taylor@enron.com 2000-11-21
## 4692 mark.e.taylor@enron.com 2000-11-21
## 4693 mark.e.taylor@enron.com 2000-11-21
## 4694 mark.e.taylor@enron.com 2000-11-21
## 4695 mark.e.taylor@enron.com 2000-11-21
## 4696 mark.e.taylor@enron.com 2000-11-21
## 4697 mark.e.taylor@enron.com 2000-11-21
## 4698 mark.e.taylor@enron.com 2000-11-21
## 4699 mark.e.taylor@enron.com 2000-11-21
## 4700 mark.e.taylor@enron.com 2000-11-21
## 4701 mark.e.taylor@enron.com 2000-11-21
## 4702 mark.e.taylor@enron.com 2000-11-21
## 4703 mark.e.taylor@enron.com 2000-11-21
## 4704 mark.e.taylor@enron.com 2000-11-21
## 4705 mark.e.taylor@enron.com 2000-11-20
## 4706 mark.e.taylor@enron.com 2000-11-20
## 4707 mark.e.taylor@enron.com 2000-11-20
## 4708 mark.e.taylor@enron.com 2000-11-15
## 4709 mark.e.taylor@enron.com 2000-11-15
## 4710 mark.e.taylor@enron.com 2000-11-13
## 4711 mark.e.taylor@enron.com 2000-11-13
## 4712 mark.e.taylor@enron.com 2000-11-13
## 4713 mark.e.taylor@enron.com 2000-11-13
## 4714 mark.e.taylor@enron.com 2000-11-13
## 4715 mark.e.taylor@enron.com 2000-11-13
## 4716 mark.e.taylor@enron.com 2000-11-13
## 4717 mark.e.taylor@enron.com 2000-11-13
## 4718 mark.e.taylor@enron.com 2000-11-13
## 4719 mark.e.taylor@enron.com 2000-11-13
## 4720 mark.e.taylor@enron.com 2000-11-13
## 4721 mark.e.taylor@enron.com 2000-11-13
## 4722 mark.e.taylor@enron.com 2000-11-13
## 4723 mark.e.taylor@enron.com 2000-11-13
## 4724 mark.e.taylor@enron.com 2000-11-13
## 4725 mark.e.taylor@enron.com 2000-11-13
## 4726 mark.e.taylor@enron.com 2000-11-13
## 4727 mark.e.taylor@enron.com 2000-11-13
## 4728 mark.e.taylor@enron.com 2000-11-10
## 4729 mark.e.taylor@enron.com 2000-11-10
## 4730 mark.e.taylor@enron.com 2000-11-10
## 4731 mark.e.taylor@enron.com 2000-11-10
## 4732 mark.e.taylor@enron.com 2000-11-10
## 4733 mark.e.taylor@enron.com 2000-11-10
## 4734 mark.e.taylor@enron.com 2000-11-10
## 4735 mark.e.taylor@enron.com 2000-11-10
## 4736 mark.e.taylor@enron.com 2000-11-10
## 4737 mark.e.taylor@enron.com 2000-11-10
## 4738 mark.e.taylor@enron.com 2000-11-10
## 4739 mark.e.taylor@enron.com 2000-11-10
## 4740 mark.e.taylor@enron.com 2000-11-10
## 4741 mark.e.taylor@enron.com 2000-11-10
## 4742 mark.e.taylor@enron.com 2000-11-10
## 4743 mark.e.taylor@enron.com 2000-11-10
## 4744 mark.e.taylor@enron.com 2000-11-10
## 4745 mark.e.taylor@enron.com 2000-11-10
## 4746 mark.e.taylor@enron.com 2000-11-10
## 4747 mark.e.taylor@enron.com 2000-11-10
## 4748 mark.e.taylor@enron.com 2000-11-10
## 4749 mark.e.taylor@enron.com 2000-11-10
## 4750 mark.e.taylor@enron.com 2000-11-10
## 4751 mark.e.taylor@enron.com 2000-11-10
## 4752 mark.e.taylor@enron.com 2000-11-10
## 4753 mark.e.taylor@enron.com 2000-11-10
## 4754 mark.e.taylor@enron.com 2000-11-10
## 4755 mark.e.taylor@enron.com 2000-11-10
## 4756 mark.e.taylor@enron.com 2000-11-10
## 4757 mark.e.taylor@enron.com 2000-11-10
## 4758 mark.e.taylor@enron.com 2000-11-10
## 4759 mark.e.taylor@enron.com 2000-11-10
## 4760 mark.e.taylor@enron.com 2000-11-10
## 4761 mark.e.taylor@enron.com 2000-11-10
## 4762 mark.e.taylor@enron.com 2000-11-10
## 4763 mark.e.taylor@enron.com 2000-11-10
## 4764 mark.e.taylor@enron.com 2000-11-10
## 4765 mark.e.taylor@enron.com 2000-11-10
## 4766 mark.e.taylor@enron.com 2000-11-10
## 4767 mark.e.taylor@enron.com 2000-11-10
## 4768 mark.e.taylor@enron.com 2000-11-10
## 4769 mark.e.taylor@enron.com 2000-11-10
## 4770 mark.e.taylor@enron.com 2000-11-10
## 4771 mark.e.taylor@enron.com 2000-11-10
## 4772 mark.e.taylor@enron.com 2000-11-10
## 4773 mark.e.taylor@enron.com 2000-11-10
## 4774 mark.e.taylor@enron.com 2000-11-10
## 4775 mark.e.taylor@enron.com 2000-11-10
## 4776 mark.e.taylor@enron.com 2000-11-10
## 4777 mark.e.taylor@enron.com 2000-11-10
## 4778 mark.e.taylor@enron.com 2000-11-10
## 4779 mark.e.taylor@enron.com 2000-11-10
## 4780 mark.e.taylor@enron.com 2000-11-10
## 4781 mark.e.taylor@enron.com 2000-11-10
## 4782 mark.e.taylor@enron.com 2000-11-10
## 4783 mark.e.taylor@enron.com 2000-11-10
## 4784 mark.e.taylor@enron.com 2000-11-10
## 4785 mark.e.taylor@enron.com 2000-11-10
## 4786 mark.e.taylor@enron.com 2000-11-10
## 4787 mark.e.taylor@enron.com 2000-11-10
## 4788 mark.e.taylor@enron.com 2000-11-10
## 4789 mark.e.taylor@enron.com 2000-11-10
## 4790 mark.e.taylor@enron.com 2000-11-10
## 4791 mark.e.taylor@enron.com 2000-11-10
## 4792 mark.e.taylor@enron.com 2000-11-10
## 4793 mark.e.taylor@enron.com 2000-11-10
## 4794 mark.e.taylor@enron.com 2000-11-10
## 4795 mark.e.taylor@enron.com 2000-11-09
## 4796 mark.e.taylor@enron.com 2000-11-09
## 4797 mark.e.taylor@enron.com 2000-11-09
## 4798 mark.e.taylor@enron.com 2000-11-09
## 4799 mark.e.taylor@enron.com 2000-11-09
## 4800 mark.e.taylor@enron.com 2000-11-09
## 4801 mark.e.taylor@enron.com 2000-11-09
## 4802 mark.e.taylor@enron.com 2000-11-09
## 4803 mark.e.taylor@enron.com 2000-11-09
## 4804 mark.e.taylor@enron.com 2000-11-09
## 4805 mark.e.taylor@enron.com 2000-11-09
## 4806 mark.e.taylor@enron.com 2000-11-09
## 4807 mark.e.taylor@enron.com 2000-11-09
## 4808 mark.e.taylor@enron.com 2000-11-09
## 4809 mark.e.taylor@enron.com 2000-11-09
## 4810 mark.e.taylor@enron.com 2000-11-09
## 4811 mark.e.taylor@enron.com 2000-11-09
## 4812 mark.e.taylor@enron.com 2000-11-09
## 4813 mark.e.taylor@enron.com 2000-11-09
## 4814 mark.e.taylor@enron.com 2000-11-09
## 4815 mark.e.taylor@enron.com 2000-11-07
## 4816 mark.e.taylor@enron.com 2000-11-07
## 4817 mark.e.taylor@enron.com 2000-11-07
## 4818 mark.e.taylor@enron.com 2000-11-07
## 4819 mark.e.taylor@enron.com 2000-11-07
## 4820 mark.e.taylor@enron.com 2000-11-07
## 4821 mark.e.taylor@enron.com 2000-11-07
## 4822 mark.e.taylor@enron.com 2000-11-07
## 4823 mark.e.taylor@enron.com 2000-11-07
## 4824 mark.e.taylor@enron.com 2000-11-07
## 4825 mark.e.taylor@enron.com 2000-11-06
## 4826 mark.e.taylor@enron.com 2000-11-06
## 4827 mark.e.taylor@enron.com 2000-11-03
## 4828 mark.e.taylor@enron.com 2000-11-03
## 4829 mark.e.taylor@enron.com 2000-11-03
## 4830 mark.e.taylor@enron.com 2000-11-02
## 4831 mark.e.taylor@enron.com 2000-11-02
## 4832 mark.e.taylor@enron.com 2000-11-02
## 4833 mark.e.taylor@enron.com 2000-11-02
## 4834 mark.e.taylor@enron.com 2000-11-02
## 4835 mark.e.taylor@enron.com 2000-11-02
## 4836 mark.e.taylor@enron.com 2000-11-02
## 4837 mark.e.taylor@enron.com 2000-11-02
## 4838 mark.e.taylor@enron.com 2000-11-01
## 4839 mark.e.taylor@enron.com 2000-11-01
## 4840 mark.e.taylor@enron.com 2000-10-31
## 4841 mark.e.taylor@enron.com 2000-10-31
## 4842 mark.e.taylor@enron.com 2000-10-31
## 4843 mark.e.taylor@enron.com 2000-10-31
## 4844 mark.e.taylor@enron.com 2000-10-31
## 4845 mark.e.taylor@enron.com 2000-10-31
## 4846 mark.e.taylor@enron.com 2000-10-31
## 4847 mark.e.taylor@enron.com 2000-10-31
## 4848 mark.e.taylor@enron.com 2000-10-31
## 4849 mark.e.taylor@enron.com 2000-10-31
## 4850 mark.e.taylor@enron.com 2000-10-31
## 4851 mark.e.taylor@enron.com 2000-10-31
## 4852 mark.e.taylor@enron.com 2000-10-31
## 4853 mark.e.taylor@enron.com 2000-10-31
## 4854 mark.e.taylor@enron.com 2000-10-30
## 4855 mark.e.taylor@enron.com 2000-10-30
## 4856 mark.e.taylor@enron.com 2000-10-30
## 4857 mark.e.taylor@enron.com 2000-10-30
## 4858 mark.e.taylor@enron.com 2000-10-30
## 4859 mark.e.taylor@enron.com 2000-10-30
## 4860 mark.e.taylor@enron.com 2000-10-30
## 4861 mark.e.taylor@enron.com 2000-10-30
## 4862 mark.e.taylor@enron.com 2000-10-30
## 4863 mark.e.taylor@enron.com 2000-10-30
## 4864 mark.e.taylor@enron.com 2000-10-30
## 4865 mark.e.taylor@enron.com 2000-10-30
## 4866 mark.e.taylor@enron.com 2000-10-30
## 4867 mark.e.taylor@enron.com 2000-10-30
## 4868 mark.e.taylor@enron.com 2000-10-30
## 4869 mark.e.taylor@enron.com 2000-10-30
## 4870 mark.e.taylor@enron.com 2000-10-30
## 4871 mark.e.taylor@enron.com 2000-10-30
## 4872 mark.e.taylor@enron.com 2000-10-30
## 4873 mark.e.taylor@enron.com 2000-10-27
## 4874 mark.e.taylor@enron.com 2000-10-27
## 4875 mark.e.taylor@enron.com 2000-10-27
## 4876 mark.e.taylor@enron.com 2000-10-27
## 4877 mark.e.taylor@enron.com 2000-10-27
## 4878 mark.e.taylor@enron.com 2000-10-26
## 4879 mark.e.taylor@enron.com 2000-10-26
## 4880 mark.e.taylor@enron.com 2000-10-26
## 4881 mark.e.taylor@enron.com 2000-10-26
## 4882 mark.e.taylor@enron.com 2000-10-26
## 4883 mark.e.taylor@enron.com 2000-10-26
## 4884 mark.e.taylor@enron.com 2000-10-26
## 4885 mark.e.taylor@enron.com 2000-10-26
## 4886 mark.e.taylor@enron.com 2000-10-26
## 4887 mark.e.taylor@enron.com 2000-10-26
## 4888 mark.e.taylor@enron.com 2000-10-26
## 4889 mark.e.taylor@enron.com 2000-10-26
## 4890 mark.e.taylor@enron.com 2000-10-26
## 4891 mark.e.taylor@enron.com 2000-10-26
## 4892 mark.e.taylor@enron.com 2000-10-25
## 4893 mark.e.taylor@enron.com 2000-10-25
## 4894 mark.e.taylor@enron.com 2000-10-25
## 4895 mark.e.taylor@enron.com 2000-10-25
## 4896 mark.e.taylor@enron.com 2000-10-25
## 4897 mark.e.taylor@enron.com 2000-10-25
## 4898 mark.e.taylor@enron.com 2000-10-25
## 4899 mark.e.taylor@enron.com 2000-10-25
## 4900 mark.e.taylor@enron.com 2000-10-25
## 4901 mark.e.taylor@enron.com 2000-10-25
## 4902 mark.e.taylor@enron.com 2000-10-25
## 4903 mark.e.taylor@enron.com 2000-10-25
## 4904 mark.e.taylor@enron.com 2000-10-25
## 4905 mark.e.taylor@enron.com 2000-10-25
## 4906 mark.e.taylor@enron.com 2000-10-25
## 4907 mark.e.taylor@enron.com 2000-10-24
## 4908 mark.e.taylor@enron.com 2000-10-24
## 4909 mark.e.taylor@enron.com 2000-10-24
## 4910 mark.e.taylor@enron.com 2000-10-24
## 4911 mark.e.taylor@enron.com 2000-10-23
## 4912 mark.e.taylor@enron.com 2000-10-23
## 4913 mark.e.taylor@enron.com 2000-10-23
## 4914 mark.e.taylor@enron.com 2000-10-23
## 4915 mark.e.taylor@enron.com 2000-10-20
## 4916 mark.e.taylor@enron.com 2000-10-20
## 4917 mark.e.taylor@enron.com 2000-10-20
## 4918 mark.e.taylor@enron.com 2000-10-20
## 4919 mark.e.taylor@enron.com 2000-10-20
## 4920 mark.e.taylor@enron.com 2000-10-20
## 4921 mark.e.taylor@enron.com 2000-10-20
## 4922 mark.e.taylor@enron.com 2000-10-20
## 4923 mark.e.taylor@enron.com 2000-10-20
## 4924 mark.e.taylor@enron.com 2000-10-20
## 4925 mark.e.taylor@enron.com 2000-10-20
## 4926 mark.e.taylor@enron.com 2000-10-20
## 4927 mark.e.taylor@enron.com 2000-10-20
## 4928 mark.e.taylor@enron.com 2000-10-20
## 4929 mark.e.taylor@enron.com 2000-10-20
## 4930 mark.e.taylor@enron.com 2000-10-20
## 4931 mark.e.taylor@enron.com 2000-10-20
## 4932 mark.e.taylor@enron.com 2000-10-20
## 4933 mark.e.taylor@enron.com 2000-10-20
## 4934 mark.e.taylor@enron.com 2000-10-20
## 4935 mark.e.taylor@enron.com 2000-10-19
## 4936 mark.e.taylor@enron.com 2000-10-19
## 4937 mark.e.taylor@enron.com 2000-10-19
## 4938 mark.e.taylor@enron.com 2000-10-18
## 4939 mark.e.taylor@enron.com 2000-10-18
## 4940 mark.e.taylor@enron.com 2000-10-18
## 4941 mark.e.taylor@enron.com 2000-10-18
## 4942 mark.e.taylor@enron.com 2000-10-18
## 4943 mark.e.taylor@enron.com 2000-10-18
## 4944 mark.e.taylor@enron.com 2000-10-17
## 4945 mark.e.taylor@enron.com 2000-10-17
## 4946 mark.e.taylor@enron.com 2000-10-17
## 4947 mark.e.taylor@enron.com 2000-10-17
## 4948 mark.e.taylor@enron.com 2000-10-17
## 4949 mark.e.taylor@enron.com 2000-10-17
## 4950 mark.e.taylor@enron.com 2000-10-17
## 4951 mark.e.taylor@enron.com 2000-10-17
## 4952 mark.e.taylor@enron.com 2000-10-17
## 4953 mark.e.taylor@enron.com 2000-10-17
## 4954 mark.e.taylor@enron.com 2000-10-17
## 4955 mark.e.taylor@enron.com 2000-10-17
## 4956 mark.e.taylor@enron.com 2000-10-17
## 4957 mark.e.taylor@enron.com 2000-10-09
## 4958 mark.e.taylor@enron.com 2000-10-09
## 4959 mark.e.taylor@enron.com 2000-10-09
## 4960 mark.e.taylor@enron.com 2000-10-09
## 4961 mark.e.taylor@enron.com 2000-10-09
## 4962 mark.e.taylor@enron.com 2000-10-08
## 4963 mark.e.taylor@enron.com 2000-10-08
## 4964 mark.e.taylor@enron.com 2000-10-08
## 4965 mark.e.taylor@enron.com 2000-10-08
## 4966 mark.e.taylor@enron.com 2000-10-08
## 4967 mark.e.taylor@enron.com 2000-10-08
## 4968 mark.e.taylor@enron.com 2000-10-05
## 4969 mark.e.taylor@enron.com 2000-10-05
## 4970 mark.e.taylor@enron.com 2000-10-05
## 4971 mark.e.taylor@enron.com 2000-10-05
## 4972 mark.e.taylor@enron.com 2000-10-05
## 4973 mark.e.taylor@enron.com 2000-10-05
## 4974 mark.e.taylor@enron.com 2000-10-05
## 4975 mark.e.taylor@enron.com 2000-10-05
## 4976 mark.e.taylor@enron.com 2000-10-05
## 4977 mark.e.taylor@enron.com 2000-10-05
## 4978 mark.e.taylor@enron.com 2000-10-05
## 4979 mark.e.taylor@enron.com 2000-10-04
## 4980 mark.e.taylor@enron.com 2000-10-04
## 4981 mark.e.taylor@enron.com 2000-10-04
## 4982 mark.e.taylor@enron.com 2000-09-20
## 4983 mark.e.taylor@enron.com 2000-09-20
## 4984 mark.e.taylor@enron.com 2000-09-20
## 4985 mark.e.taylor@enron.com 2000-09-20
## 4986 mark.e.taylor@enron.com 2000-09-20
## 4987 mark.e.taylor@enron.com 2000-09-20
## 4988 mark.e.taylor@enron.com 2000-09-20
## 4989 mark.e.taylor@enron.com 2000-09-20
## 4990 mark.e.taylor@enron.com 2000-09-20
## 4991 mark.e.taylor@enron.com 2000-09-20
## 4992 mark.e.taylor@enron.com 2000-09-20
## 4993 mark.e.taylor@enron.com 2000-09-20
## 4994 mark.e.taylor@enron.com 2000-09-20
## 4995 mark.e.taylor@enron.com 2000-09-20
## 4996 mark.e.taylor@enron.com 2000-09-20
## 4997 mark.e.taylor@enron.com 2000-09-20
## 4998 mark.e.taylor@enron.com 2000-09-20
## 4999 mark.e.taylor@enron.com 2000-09-19
## 5000 mark.e.taylor@enron.com 2000-09-19
## 5001 mark.e.taylor@enron.com 2000-09-19
## 5002 mark.e.taylor@enron.com 2000-09-19
## 5003 mark.e.taylor@enron.com 2000-09-19
## 5004 mark.e.taylor@enron.com 2000-09-19
## 5005 mark.e.taylor@enron.com 2000-09-18
## 5006 mark.e.taylor@enron.com 2000-09-15
## 5007 mark.e.taylor@enron.com 2000-09-15
## 5008 mark.e.taylor@enron.com 2000-09-14
## 5009 mark.e.taylor@enron.com 2000-09-14
## 5010 mark.e.taylor@enron.com 2000-09-14
## 5011 mark.e.taylor@enron.com 2000-09-14
## 5012 mark.e.taylor@enron.com 2000-09-14
## 5013 mark.e.taylor@enron.com 2000-09-14
## 5014 mark.e.taylor@enron.com 2000-09-14
## 5015 mark.e.taylor@enron.com 2000-09-14
## 5016 mark.e.taylor@enron.com 2000-09-14
## 5017 mark.e.taylor@enron.com 2000-09-14
## 5018 mark.e.taylor@enron.com 2000-09-14
## 5019 mark.e.taylor@enron.com 2000-09-14
## 5020 mark.e.taylor@enron.com 2000-09-14
## 5021 mark.e.taylor@enron.com 2000-09-14
## 5022 mark.e.taylor@enron.com 2000-09-14
## 5023 mark.e.taylor@enron.com 2000-09-14
## 5024 mark.e.taylor@enron.com 2000-09-14
## 5025 mark.e.taylor@enron.com 2000-09-13
## 5026 mark.e.taylor@enron.com 2000-09-13
## 5027 mark.e.taylor@enron.com 2000-09-12
## 5028 mark.e.taylor@enron.com 2000-09-12
## 5029 mark.e.taylor@enron.com 2000-09-11
## 5030 mark.e.taylor@enron.com 2000-09-11
## 5031 mark.e.taylor@enron.com 2000-09-11
## 5032 mark.e.taylor@enron.com 2000-09-11
## 5033 mark.e.taylor@enron.com 2000-09-11
## 5034 mark.e.taylor@enron.com 2000-09-11
## 5035 mark.e.taylor@enron.com 2000-09-11
## 5036 mark.e.taylor@enron.com 2000-09-11
## 5037 mark.e.taylor@enron.com 2000-09-11
## 5038 mark.e.taylor@enron.com 2000-09-11
## 5039 mark.e.taylor@enron.com 2000-09-11
## 5040 mark.e.taylor@enron.com 2000-09-11
## 5041 mark.e.taylor@enron.com 2000-09-11
## 5042 mark.e.taylor@enron.com 2000-09-08
## 5043 mark.e.taylor@enron.com 2000-09-08
## 5044 mark.e.taylor@enron.com 2000-09-08
## 5045 mark.e.taylor@enron.com 2000-09-08
## 5046 mark.e.taylor@enron.com 2000-09-08
## 5047 mark.e.taylor@enron.com 2000-09-08
## 5048 mark.e.taylor@enron.com 2000-09-08
## 5049 mark.e.taylor@enron.com 2000-09-08
## 5050 mark.e.taylor@enron.com 2000-09-08
## 5051 mark.e.taylor@enron.com 2000-09-08
## 5052 mark.e.taylor@enron.com 2000-09-08
## 5053 mark.e.taylor@enron.com 2000-09-08
## 5054 mark.e.taylor@enron.com 2000-09-07
## 5055 mark.e.taylor@enron.com 2000-09-07
## 5056 mark.e.taylor@enron.com 2000-09-07
## 5057 mark.e.taylor@enron.com 2000-09-07
## 5058 mark.e.taylor@enron.com 2000-09-07
## 5059 mark.e.taylor@enron.com 2000-09-07
## 5060 mark.e.taylor@enron.com 2000-09-07
## 5061 mark.e.taylor@enron.com 2000-09-07
## 5062 mark.e.taylor@enron.com 2000-09-07
## 5063 mark.e.taylor@enron.com 2000-09-07
## 5064 mark.e.taylor@enron.com 2000-09-07
## 5065 mark.e.taylor@enron.com 2000-09-07
## 5066 mark.e.taylor@enron.com 2000-09-07
## 5067 mark.e.taylor@enron.com 2000-09-07
## 5068 mark.e.taylor@enron.com 2000-09-06
## 5069 mark.e.taylor@enron.com 2000-09-06
## 5070 mark.e.taylor@enron.com 2000-09-06
## 5071 mark.e.taylor@enron.com 2000-09-06
## 5072 mark.e.taylor@enron.com 2000-09-06
## 5073 mark.e.taylor@enron.com 2000-09-06
## 5074 mark.e.taylor@enron.com 2000-09-06
## 5075 mark.e.taylor@enron.com 2000-09-06
## 5076 mark.e.taylor@enron.com 2000-09-06
## 5077 mark.e.taylor@enron.com 2000-09-06
## 5078 mark.e.taylor@enron.com 2000-09-06
## 5079 mark.e.taylor@enron.com 2000-09-06
## 5080 mark.e.taylor@enron.com 2000-09-06
## 5081 mark.e.taylor@enron.com 2000-09-06
## 5082 mark.e.taylor@enron.com 2000-09-06
## 5083 mark.e.taylor@enron.com 2000-09-06
## 5084 mark.e.taylor@enron.com 2000-09-06
## 5085 mark.e.taylor@enron.com 2000-09-06
## 5086 mark.e.taylor@enron.com 2000-09-06
## 5087 mark.e.taylor@enron.com 2000-09-06
## 5088 mark.e.taylor@enron.com 2000-09-06
## 5089 mark.e.taylor@enron.com 2000-09-06
## 5090 mark.e.taylor@enron.com 2000-09-06
## 5091 mark.e.taylor@enron.com 2000-09-06
## 5092 mark.e.taylor@enron.com 2000-09-06
## 5093 mark.e.taylor@enron.com 2000-09-06
## 5094 mark.e.taylor@enron.com 2000-09-06
## 5095 mark.e.taylor@enron.com 2000-09-05
## 5096 mark.e.taylor@enron.com 2000-09-05
## 5097 mark.e.taylor@enron.com 2000-09-05
## 5098 mark.e.taylor@enron.com 2000-09-05
## 5099 mark.e.taylor@enron.com 2000-09-05
## 5100 mark.e.taylor@enron.com 2000-09-05
## 5101 mark.e.taylor@enron.com 2000-09-05
## 5102 mark.e.taylor@enron.com 2000-09-05
## 5103 mark.e.taylor@enron.com 2000-09-05
## 5104 mark.e.taylor@enron.com 2000-09-05
## 5105 mark.e.taylor@enron.com 2000-09-05
## 5106 mark.e.taylor@enron.com 2000-09-05
## 5107 mark.e.taylor@enron.com 2000-09-05
## 5108 mark.e.taylor@enron.com 2000-09-05
## 5109 mark.e.taylor@enron.com 2000-09-05
## 5110 mark.e.taylor@enron.com 2000-09-05
## 5111 mark.e.taylor@enron.com 2000-09-05
## 5112 mark.e.taylor@enron.com 2000-09-05
## 5113 mark.e.taylor@enron.com 2000-09-05
## 5114 mark.e.taylor@enron.com 2000-09-05
## 5115 mark.e.taylor@enron.com 2000-09-05
## 5116 mark.e.taylor@enron.com 2000-09-05
## 5117 mark.e.taylor@enron.com 2000-09-05
## 5118 mark.e.taylor@enron.com 2000-09-05
## 5119 mark.e.taylor@enron.com 2000-09-05
## 5120 mark.e.taylor@enron.com 2000-09-05
## 5121 mark.e.taylor@enron.com 2000-09-05
## 5122 mark.e.taylor@enron.com 2000-09-05
## 5123 mark.e.taylor@enron.com 2000-09-01
## 5124 mark.e.taylor@enron.com 2000-09-01
## 5125 mark.e.taylor@enron.com 2000-09-01
## 5126 mark.e.taylor@enron.com 2000-09-01
## 5127 mark.e.taylor@enron.com 2000-09-01
## 5128 mark.e.taylor@enron.com 2000-09-01
## 5129 mark.e.taylor@enron.com 2000-09-01
## 5130 mark.e.taylor@enron.com 2000-09-01
## 5131 mark.e.taylor@enron.com 2000-09-01
## 5132 mark.e.taylor@enron.com 2000-08-31
## 5133 mark.e.taylor@enron.com 2000-08-31
## 5134 mark.e.taylor@enron.com 2000-08-31
## 5135 mark.e.taylor@enron.com 2000-08-31
## 5136 mark.e.taylor@enron.com 2000-08-31
## 5137 mark.e.taylor@enron.com 2000-08-31
## 5138 mark.e.taylor@enron.com 2000-08-31
## 5139 mark.e.taylor@enron.com 2000-08-31
## 5140 mark.e.taylor@enron.com 2000-08-30
## 5141 mark.e.taylor@enron.com 2000-08-30
## 5142 mark.e.taylor@enron.com 2000-08-30
## 5143 mark.e.taylor@enron.com 2000-08-30
## 5144 mark.e.taylor@enron.com 2000-08-30
## 5145 mark.e.taylor@enron.com 2000-08-30
## 5146 mark.e.taylor@enron.com 2000-08-30
## 5147 mark.e.taylor@enron.com 2000-08-30
## 5148 mark.e.taylor@enron.com 2000-08-30
## 5149 mark.e.taylor@enron.com 2000-08-30
## 5150 mark.e.taylor@enron.com 2000-08-30
## 5151 mark.e.taylor@enron.com 2000-08-30
## 5152 mark.e.taylor@enron.com 2000-08-30
## 5153 mark.e.taylor@enron.com 2000-08-30
## 5154 mark.e.taylor@enron.com 2000-08-30
## 5155 mark.e.taylor@enron.com 2000-08-30
## 5156 mark.e.taylor@enron.com 2000-08-30
## 5157 mark.e.taylor@enron.com 2000-08-30
## 5158 mark.e.taylor@enron.com 2000-08-29
## 5159 mark.e.taylor@enron.com 2000-08-29
## 5160 mark.e.taylor@enron.com 2000-08-29
## 5161 mark.e.taylor@enron.com 2000-08-29
## 5162 mark.e.taylor@enron.com 2000-08-29
## 5163 mark.e.taylor@enron.com 2000-08-29
## 5164 mark.e.taylor@enron.com 2000-08-29
## 5165 mark.e.taylor@enron.com 2000-08-29
## 5166 mark.e.taylor@enron.com 2000-08-29
## 5167 mark.e.taylor@enron.com 2000-08-29
## 5168 mark.e.taylor@enron.com 2000-08-28
## 5169 mark.e.taylor@enron.com 2000-08-28
## 5170 mark.e.taylor@enron.com 2000-08-25
## 5171 mark.e.taylor@enron.com 2000-08-25
## 5172 mark.e.taylor@enron.com 2000-08-25
## 5173 mark.e.taylor@enron.com 2000-08-25
## 5174 mark.e.taylor@enron.com 2000-08-25
## 5175 mark.e.taylor@enron.com 2000-08-25
## 5176 mark.e.taylor@enron.com 2000-08-25
## 5177 mark.e.taylor@enron.com 2000-08-25
## 5178 mark.e.taylor@enron.com 2000-08-24
## 5179 mark.e.taylor@enron.com 2000-08-23
## 5180 mark.e.taylor@enron.com 2000-08-23
## 5181 mark.e.taylor@enron.com 2000-08-23
## 5182 mark.e.taylor@enron.com 2000-08-23
## 5183 mark.e.taylor@enron.com 2000-08-22
## 5184 mark.e.taylor@enron.com 2000-08-22
## 5185 mark.e.taylor@enron.com 2000-08-22
## 5186 mark.e.taylor@enron.com 2000-08-22
## 5187 mark.e.taylor@enron.com 2000-08-22
## 5188 mark.e.taylor@enron.com 2000-08-22
## 5189 mark.e.taylor@enron.com 2000-08-22
## 5190 mark.e.taylor@enron.com 2000-08-22
## 5191 mark.e.taylor@enron.com 2000-08-22
## 5192 mark.e.taylor@enron.com 2000-08-22
## 5193 mark.e.taylor@enron.com 2000-08-22
## 5194 mark.e.taylor@enron.com 2000-08-21
## 5195 mark.e.taylor@enron.com 2000-08-21
## 5196 mark.e.taylor@enron.com 2000-08-21
## 5197 mark.e.taylor@enron.com 2000-08-21
## 5198 mark.e.taylor@enron.com 2000-08-21
## 5199 mark.e.taylor@enron.com 2000-08-21
## 5200 mark.e.taylor@enron.com 2000-08-20
## 5201 mark.e.taylor@enron.com 2000-08-20
## 5202 mark.e.taylor@enron.com 2000-08-20
## 5203 mark.e.taylor@enron.com 2000-08-20
## 5204 mark.e.taylor@enron.com 2000-08-20
## 5205 mark.e.taylor@enron.com 2000-08-20
## 5206 mark.e.taylor@enron.com 2000-08-20
## 5207 mark.e.taylor@enron.com 2000-08-20
## 5208 mark.e.taylor@enron.com 2000-08-20
## 5209 mark.e.taylor@enron.com 2000-08-18
## 5210 mark.e.taylor@enron.com 2000-08-18
## 5211 mark.e.taylor@enron.com 2000-08-18
## 5212 mark.e.taylor@enron.com 2000-08-18
## 5213 mark.e.taylor@enron.com 2000-08-18
## 5214 mark.e.taylor@enron.com 2000-08-18
## 5215 mark.e.taylor@enron.com 2000-08-18
## 5216 mark.e.taylor@enron.com 2000-08-18
## 5217 mark.e.taylor@enron.com 2000-08-18
## 5218 mark.e.taylor@enron.com 2000-08-18
## 5219 mark.e.taylor@enron.com 2000-08-18
## 5220 mark.e.taylor@enron.com 2000-08-18
## 5221 mark.e.taylor@enron.com 2000-08-18
## 5222 mark.e.taylor@enron.com 2000-08-18
## 5223 mark.e.taylor@enron.com 2000-08-18
## 5224 mark.e.taylor@enron.com 2000-08-18
## 5225 mark.e.taylor@enron.com 2000-08-18
## 5226 mark.e.taylor@enron.com 2000-08-17
## 5227 mark.e.taylor@enron.com 2000-08-17
## 5228 mark.e.taylor@enron.com 2000-08-17
## 5229 mark.e.taylor@enron.com 2000-08-17
## 5230 mark.e.taylor@enron.com 2000-08-17
## 5231 mark.e.taylor@enron.com 2000-08-17
## 5232 mark.e.taylor@enron.com 2000-08-17
## 5233 mark.e.taylor@enron.com 2000-08-17
## 5234 mark.e.taylor@enron.com 2000-08-17
## 5235 mark.e.taylor@enron.com 2000-08-17
## 5236 mark.e.taylor@enron.com 2000-08-16
## 5237 mark.e.taylor@enron.com 2000-08-16
## 5238 mark.e.taylor@enron.com 2000-08-16
## 5239 mark.e.taylor@enron.com 2000-08-16
## 5240 mark.e.taylor@enron.com 2000-08-16
## 5241 mark.e.taylor@enron.com 2000-08-16
## 5242 mark.e.taylor@enron.com 2000-08-16
## 5243 mark.e.taylor@enron.com 2000-08-16
## 5244 mark.e.taylor@enron.com 2000-08-16
## 5245 mark.e.taylor@enron.com 2000-08-16
## 5246 mark.e.taylor@enron.com 2000-08-16
## 5247 mark.e.taylor@enron.com 2000-08-16
## 5248 mark.e.taylor@enron.com 2000-08-15
## 5249 mark.e.taylor@enron.com 2000-08-15
## 5250 mark.e.taylor@enron.com 2000-08-15
## 5251 mark.e.taylor@enron.com 2000-08-14
## 5252 mark.e.taylor@enron.com 2000-08-14
## 5253 mark.e.taylor@enron.com 2000-08-14
## 5254 mark.e.taylor@enron.com 2000-08-14
## 5255 mark.e.taylor@enron.com 2000-08-11
## 5256 mark.e.taylor@enron.com 2000-08-11
## 5257 mark.e.taylor@enron.com 2000-08-11
## 5258 mark.e.taylor@enron.com 2000-08-11
## 5259 mark.e.taylor@enron.com 2000-08-11
## 5260 mark.e.taylor@enron.com 2000-08-11
## 5261 mark.e.taylor@enron.com 2000-08-11
## 5262 mark.e.taylor@enron.com 2000-08-11
## 5263 mark.e.taylor@enron.com 2000-08-11
## 5264 mark.e.taylor@enron.com 2000-08-11
## 5265 mark.e.taylor@enron.com 2000-08-11
## 5266 mark.e.taylor@enron.com 2000-08-11
## 5267 mark.e.taylor@enron.com 2000-08-09
## 5268 mark.e.taylor@enron.com 2000-08-09
## 5269 mark.e.taylor@enron.com 2000-08-09
## 5270 mark.e.taylor@enron.com 2000-08-09
## 5271 mark.e.taylor@enron.com 2000-08-09
## 5272 mark.e.taylor@enron.com 2000-08-08
## 5273 mark.e.taylor@enron.com 2000-08-08
## 5274 mark.e.taylor@enron.com 2000-08-08
## 5275 mark.e.taylor@enron.com 2000-08-04
## 5276 mark.e.taylor@enron.com 2000-08-04
## 5277 mark.e.taylor@enron.com 2000-08-04
## 5278 mark.e.taylor@enron.com 2000-08-04
## 5279 mark.e.taylor@enron.com 2000-08-04
## 5280 mark.e.taylor@enron.com 2000-08-04
## 5281 mark.e.taylor@enron.com 2000-08-04
## 5282 mark.e.taylor@enron.com 2000-08-04
## 5283 mark.e.taylor@enron.com 2000-08-04
## 5284 mark.e.taylor@enron.com 2000-08-04
## 5285 mark.e.taylor@enron.com 2000-08-04
## 5286 mark.e.taylor@enron.com 2000-08-04
## 5287 mark.e.taylor@enron.com 2000-08-04
## 5288 mark.e.taylor@enron.com 2000-08-04
## 5289 mark.e.taylor@enron.com 2000-08-04
## 5290 mark.e.taylor@enron.com 2000-08-04
## 5291 mark.e.taylor@enron.com 2000-08-04
## 5292 mark.e.taylor@enron.com 2000-08-04
## 5293 mark.e.taylor@enron.com 2000-08-04
## 5294 mark.e.taylor@enron.com 2000-08-04
## 5295 mark.e.taylor@enron.com 2000-08-04
## 5296 mark.e.taylor@enron.com 2000-08-04
## 5297 mark.e.taylor@enron.com 2000-08-04
## 5298 mark.e.taylor@enron.com 2000-08-04
## 5299 mark.e.taylor@enron.com 2000-08-04
## 5300 mark.e.taylor@enron.com 2000-08-03
## 5301 mark.e.taylor@enron.com 2000-08-03
## 5302 mark.e.taylor@enron.com 2000-08-03
## 5303 mark.e.taylor@enron.com 2000-08-03
## 5304 mark.e.taylor@enron.com 2000-07-31
## 5305 mark.e.taylor@enron.com 2000-07-31
## 5306 mark.e.taylor@enron.com 2000-07-31
## 5307 mark.e.taylor@enron.com 2000-07-31
## 5308 mark.e.taylor@enron.com 2000-07-31
## 5309 mark.e.taylor@enron.com 2000-07-31
## 5310 mark.e.taylor@enron.com 2000-07-31
## 5311 mark.e.taylor@enron.com 2000-07-31
## 5312 mark.e.taylor@enron.com 2000-07-31
## 5313 mark.e.taylor@enron.com 2000-07-31
## 5314 mark.e.taylor@enron.com 2000-07-31
## 5315 mark.e.taylor@enron.com 2000-07-31
## 5316 mark.e.taylor@enron.com 2000-07-31
## 5317 mark.e.taylor@enron.com 2000-07-31
## 5318 mark.e.taylor@enron.com 2000-07-31
## 5319 mark.e.taylor@enron.com 2000-07-31
## 5320 mark.e.taylor@enron.com 2000-07-31
## 5321 mark.e.taylor@enron.com 2000-07-31
## 5322 mark.e.taylor@enron.com 2000-07-31
## 5323 mark.e.taylor@enron.com 2000-07-31
## 5324 mark.e.taylor@enron.com 2000-07-31
## 5325 mark.e.taylor@enron.com 2000-07-31
## 5326 mark.e.taylor@enron.com 2000-07-31
## 5327 mark.e.taylor@enron.com 2000-07-31
## 5328 mark.e.taylor@enron.com 2000-07-28
## 5329 mark.e.taylor@enron.com 2000-07-28
## 5330 mark.e.taylor@enron.com 2000-07-28
## 5331 mark.e.taylor@enron.com 2000-07-28
## 5332 mark.e.taylor@enron.com 2000-07-28
## 5333 mark.e.taylor@enron.com 2000-07-28
## 5334 mark.e.taylor@enron.com 2000-07-28
## 5335 mark.e.taylor@enron.com 2000-07-28
## 5336 mark.e.taylor@enron.com 2000-07-28
## 5337 mark.e.taylor@enron.com 2000-07-28
## 5338 mark.e.taylor@enron.com 2000-07-28
## 5339 mark.e.taylor@enron.com 2000-07-28
## 5340 mark.e.taylor@enron.com 2000-07-28
## 5341 mark.e.taylor@enron.com 2000-07-28
## 5342 mark.e.taylor@enron.com 2000-07-28
## 5343 mark.e.taylor@enron.com 2000-07-28
## 5344 mark.e.taylor@enron.com 2000-07-28
## 5345 mark.e.taylor@enron.com 2000-07-28
## 5346 mark.e.taylor@enron.com 2000-07-28
## 5347 mark.e.taylor@enron.com 2000-07-28
## 5348 mark.e.taylor@enron.com 2000-07-28
## 5349 mark.e.taylor@enron.com 2000-07-28
## 5350 mark.e.taylor@enron.com 2000-07-28
## 5351 mark.e.taylor@enron.com 2000-07-28
## 5352 mark.e.taylor@enron.com 2000-07-28
## 5353 mark.e.taylor@enron.com 2000-07-28
## 5354 mark.e.taylor@enron.com 2000-07-28
## 5355 mark.e.taylor@enron.com 2000-07-28
## 5356 mark.e.taylor@enron.com 2000-07-28
## 5357 mark.e.taylor@enron.com 2000-07-28
## 5358 mark.e.taylor@enron.com 2000-07-28
## 5359 mark.e.taylor@enron.com 2000-07-28
## 5360 mark.e.taylor@enron.com 2000-07-28
## 5361 mark.e.taylor@enron.com 2000-07-28
## 5362 mark.e.taylor@enron.com 2000-07-28
## 5363 mark.e.taylor@enron.com 2000-07-28
## 5364 mark.e.taylor@enron.com 2000-07-27
## 5365 mark.e.taylor@enron.com 2000-07-27
## 5366 mark.e.taylor@enron.com 2000-07-27
## 5367 mark.e.taylor@enron.com 2000-07-27
## 5368 mark.e.taylor@enron.com 2000-07-27
## 5369 mark.e.taylor@enron.com 2000-07-27
## 5370 mark.e.taylor@enron.com 2000-07-27
## 5371 mark.e.taylor@enron.com 2000-07-27
## 5372 mark.e.taylor@enron.com 2000-07-27
## 5373 mark.e.taylor@enron.com 2000-07-27
## 5374 mark.e.taylor@enron.com 2000-07-27
## 5375 mark.e.taylor@enron.com 2000-07-27
## 5376 mark.e.taylor@enron.com 2000-07-27
## 5377 mark.e.taylor@enron.com 2000-07-27
## 5378 mark.e.taylor@enron.com 2000-07-27
## 5379 mark.e.taylor@enron.com 2000-07-27
## 5380 mark.e.taylor@enron.com 2000-07-27
## 5381 mark.e.taylor@enron.com 2000-07-27
## 5382 mark.e.taylor@enron.com 2000-07-27
## 5383 mark.e.taylor@enron.com 2000-07-27
## 5384 mark.e.taylor@enron.com 2000-07-27
## 5385 mark.e.taylor@enron.com 2000-07-27
## 5386 mark.e.taylor@enron.com 2000-07-27
## 5387 mark.e.taylor@enron.com 2000-07-27
## 5388 mark.e.taylor@enron.com 2000-07-27
## 5389 mark.e.taylor@enron.com 2000-07-27
## 5390 mark.e.taylor@enron.com 2000-07-26
## 5391 mark.e.taylor@enron.com 2000-07-26
## 5392 mark.e.taylor@enron.com 2000-07-26
## 5393 mark.e.taylor@enron.com 2000-07-26
## 5394 mark.e.taylor@enron.com 2000-07-26
## 5395 mark.e.taylor@enron.com 2000-07-26
## 5396 mark.e.taylor@enron.com 2000-07-26
## 5397 mark.e.taylor@enron.com 2000-07-26
## 5398 mark.e.taylor@enron.com 2000-07-26
## 5399 mark.e.taylor@enron.com 2000-07-26
## 5400 mark.e.taylor@enron.com 2000-07-26
## 5401 mark.e.taylor@enron.com 2000-07-26
## 5402 mark.e.taylor@enron.com 2000-07-26
## 5403 mark.e.taylor@enron.com 2000-07-25
## 5404 mark.e.taylor@enron.com 2000-07-25
## 5405 mark.e.taylor@enron.com 2000-07-25
## 5406 mark.e.taylor@enron.com 2000-07-24
## 5407 mark.e.taylor@enron.com 2000-07-24
## 5408 mark.e.taylor@enron.com 2000-07-24
## 5409 mark.e.taylor@enron.com 2000-07-24
## 5410 mark.e.taylor@enron.com 2000-07-21
## 5411 mark.e.taylor@enron.com 2000-07-21
## 5412 mark.e.taylor@enron.com 2000-07-21
## 5413 mark.e.taylor@enron.com 2000-07-21
## 5414 mark.e.taylor@enron.com 2000-07-20
## 5415 mark.e.taylor@enron.com 2000-07-20
## 5416 mark.e.taylor@enron.com 2000-07-20
## 5417 mark.e.taylor@enron.com 2000-07-20
## 5418 mark.e.taylor@enron.com 2000-07-20
## 5419 mark.e.taylor@enron.com 2000-07-20
## 5420 mark.e.taylor@enron.com 2000-07-20
## 5421 mark.e.taylor@enron.com 2000-07-20
## 5422 mark.e.taylor@enron.com 2000-07-20
## 5423 mark.e.taylor@enron.com 2000-07-19
## 5424 mark.e.taylor@enron.com 2000-07-19
## 5425 mark.e.taylor@enron.com 2000-07-19
## 5426 mark.e.taylor@enron.com 2000-07-19
## 5427 mark.e.taylor@enron.com 2000-07-19
## 5428 mark.e.taylor@enron.com 2000-07-19
## 5429 mark.e.taylor@enron.com 2000-07-19
## 5430 mark.e.taylor@enron.com 2000-07-19
## 5431 mark.e.taylor@enron.com 2000-07-19
## 5432 mark.e.taylor@enron.com 2000-07-19
## 5433 mark.e.taylor@enron.com 2000-07-19
## 5434 mark.e.taylor@enron.com 2000-07-19
## 5435 mark.e.taylor@enron.com 2000-07-19
## 5436 mark.e.taylor@enron.com 2000-07-19
## 5437 mark.e.taylor@enron.com 2000-07-19
## 5438 mark.e.taylor@enron.com 2000-07-19
## 5439 mark.e.taylor@enron.com 2000-07-19
## 5440 mark.e.taylor@enron.com 2000-07-19
## 5441 mark.e.taylor@enron.com 2000-07-19
## 5442 mark.e.taylor@enron.com 2000-07-19
## 5443 mark.e.taylor@enron.com 2000-07-19
## 5444 mark.e.taylor@enron.com 2000-07-19
## 5445 mark.e.taylor@enron.com 2000-07-18
## 5446 mark.e.taylor@enron.com 2000-07-18
## 5447 mark.e.taylor@enron.com 2000-07-18
## 5448 mark.e.taylor@enron.com 2000-07-18
## 5449 mark.e.taylor@enron.com 2000-07-18
## 5450 mark.e.taylor@enron.com 2000-07-18
## 5451 mark.e.taylor@enron.com 2000-07-18
## 5452 mark.e.taylor@enron.com 2000-07-18
## 5453 mark.e.taylor@enron.com 2000-07-18
## 5454 mark.e.taylor@enron.com 2000-07-18
## 5455 mark.e.taylor@enron.com 2000-07-17
## 5456 mark.e.taylor@enron.com 2000-07-17
## 5457 mark.e.taylor@enron.com 2000-07-14
## 5458 mark.e.taylor@enron.com 2000-07-14
## 5459 mark.e.taylor@enron.com 2000-07-14
## 5460 mark.e.taylor@enron.com 2000-07-14
## 5461 mark.e.taylor@enron.com 2000-07-13
## 5462 mark.e.taylor@enron.com 2000-07-13
## 5463 mark.e.taylor@enron.com 2000-07-13
## 5464 mark.e.taylor@enron.com 2000-07-13
## 5465 mark.e.taylor@enron.com 2000-07-13
## 5466 mark.e.taylor@enron.com 2000-07-13
## 5467 mark.e.taylor@enron.com 2000-07-13
## 5468 mark.e.taylor@enron.com 2000-07-13
## 5469 mark.e.taylor@enron.com 2000-07-13
## 5470 mark.e.taylor@enron.com 2000-07-12
## 5471 mark.e.taylor@enron.com 2000-07-12
## 5472 mark.e.taylor@enron.com 2000-07-12
## 5473 mark.e.taylor@enron.com 2000-07-12
## 5474 mark.e.taylor@enron.com 2000-07-12
## 5475 mark.e.taylor@enron.com 2000-07-12
## 5476 mark.e.taylor@enron.com 2000-07-12
## 5477 mark.e.taylor@enron.com 2000-07-12
## 5478 mark.e.taylor@enron.com 2000-07-12
## 5479 mark.e.taylor@enron.com 2000-07-12
## 5480 mark.e.taylor@enron.com 2000-07-12
## 5481 mark.e.taylor@enron.com 2000-07-12
## 5482 mark.e.taylor@enron.com 2000-07-12
## 5483 mark.e.taylor@enron.com 2000-07-11
## 5484 mark.e.taylor@enron.com 2000-07-11
## 5485 mark.e.taylor@enron.com 2000-07-11
## 5486 mark.e.taylor@enron.com 2000-07-11
## 5487 mark.e.taylor@enron.com 2000-07-10
## 5488 mark.e.taylor@enron.com 2000-07-10
## 5489 mark.e.taylor@enron.com 2000-07-10
## 5490 mark.e.taylor@enron.com 2000-07-10
## 5491 mark.e.taylor@enron.com 2000-07-10
## 5492 mark.e.taylor@enron.com 2000-07-10
## 5493 mark.e.taylor@enron.com 2000-07-10
## 5494 mark.e.taylor@enron.com 2000-07-10
## 5495 mark.e.taylor@enron.com 2000-07-10
## 5496 mark.e.taylor@enron.com 2000-07-10
## 5497 mark.e.taylor@enron.com 2000-07-10
## 5498 mark.e.taylor@enron.com 2000-07-10
## 5499 mark.e.taylor@enron.com 2000-07-10
## 5500 mark.e.taylor@enron.com 2000-07-10
## 5501 mark.e.taylor@enron.com 2000-07-06
## 5502 mark.e.taylor@enron.com 2000-07-06
## 5503 mark.e.taylor@enron.com 2000-07-06
## 5504 mark.e.taylor@enron.com 2000-07-06
## 5505 mark.e.taylor@enron.com 2000-07-06
## 5506 mark.e.taylor@enron.com 2000-07-05
## 5507 mark.e.taylor@enron.com 2000-07-05
## 5508 mark.e.taylor@enron.com 2000-07-05
## 5509 mark.e.taylor@enron.com 2000-07-05
## 5510 mark.e.taylor@enron.com 2000-07-05
## 5511 mark.e.taylor@enron.com 2000-07-05
## 5512 mark.e.taylor@enron.com 2000-07-05
## 5513 mark.e.taylor@enron.com 2000-07-05
## 5514 mark.e.taylor@enron.com 2000-07-05
## 5515 mark.e.taylor@enron.com 2000-07-05
## 5516 mark.e.taylor@enron.com 2000-07-05
## 5517 mark.e.taylor@enron.com 2000-07-05
## 5518 mark.e.taylor@enron.com 2000-07-05
## 5519 mark.e.taylor@enron.com 2000-07-05
## 5520 mark.e.taylor@enron.com 2000-07-05
## 5521 mark.e.taylor@enron.com 2000-07-05
## 5522 mark.e.taylor@enron.com 2000-06-29
## 5523 mark.e.taylor@enron.com 2000-06-28
## 5524 mark.e.taylor@enron.com 2000-06-28
## 5525 mark.e.taylor@enron.com 2000-06-28
## 5526 mark.e.taylor@enron.com 2000-06-28
## 5527 mark.e.taylor@enron.com 2000-06-28
## 5528 mark.e.taylor@enron.com 2000-06-28
## 5529 mark.e.taylor@enron.com 2000-06-27
## 5530 mark.e.taylor@enron.com 2000-06-27
## 5531 mark.e.taylor@enron.com 2000-06-26
## 5532 mark.e.taylor@enron.com 2000-06-22
## 5533 mark.e.taylor@enron.com 2000-06-22
## 5534 mark.e.taylor@enron.com 2000-06-22
## 5535 mark.e.taylor@enron.com 2000-06-22
## 5536 mark.e.taylor@enron.com 2000-06-22
## 5537 mark.e.taylor@enron.com 2000-06-20
## 5538 mark.e.taylor@enron.com 2000-06-20
## 5539 mark.e.taylor@enron.com 2000-06-20
## 5540 mark.e.taylor@enron.com 2000-06-20
## 5541 mark.e.taylor@enron.com 2000-06-20
## 5542 mark.e.taylor@enron.com 2000-06-20
## 5543 mark.e.taylor@enron.com 2000-06-20
## 5544 mark.e.taylor@enron.com 2000-06-20
## 5545 mark.e.taylor@enron.com 2000-06-20
## 5546 mark.e.taylor@enron.com 2000-06-20
## 5547 mark.e.taylor@enron.com 2000-06-20
## 5548 mark.e.taylor@enron.com 2000-06-20
## 5549 mark.e.taylor@enron.com 2000-06-20
## 5550 mark.e.taylor@enron.com 2000-06-19
## 5551 mark.e.taylor@enron.com 2000-06-19
## 5552 mark.e.taylor@enron.com 2000-06-19
## 5553 mark.e.taylor@enron.com 2000-06-19
## 5554 mark.e.taylor@enron.com 2000-06-16
## 5555 mark.e.taylor@enron.com 2000-06-16
## 5556 mark.e.taylor@enron.com 2000-06-16
## 5557 mark.e.taylor@enron.com 2000-06-16
## 5558 mark.e.taylor@enron.com 2000-06-16
## 5559 mark.e.taylor@enron.com 2000-06-16
## 5560 mark.e.taylor@enron.com 2000-06-16
## 5561 mark.e.taylor@enron.com 2000-06-16
## 5562 mark.e.taylor@enron.com 2000-06-16
## 5563 mark.e.taylor@enron.com 2000-06-16
## 5564 mark.e.taylor@enron.com 2000-06-16
## 5565 mark.e.taylor@enron.com 2000-06-16
## 5566 mark.e.taylor@enron.com 2000-06-13
## 5567 mark.e.taylor@enron.com 2000-06-13
## 5568 mark.e.taylor@enron.com 2000-06-13
## 5569 mark.e.taylor@enron.com 2000-06-13
## 5570 mark.e.taylor@enron.com 2000-06-13
## 5571 mark.e.taylor@enron.com 2000-06-13
## 5572 mark.e.taylor@enron.com 2000-06-13
## 5573 mark.e.taylor@enron.com 2000-06-13
## 5574 mark.e.taylor@enron.com 2000-06-13
## 5575 mark.e.taylor@enron.com 2000-06-13
## 5576 mark.e.taylor@enron.com 2000-06-09
## 5577 mark.e.taylor@enron.com 2000-06-09
## 5578 mark.e.taylor@enron.com 2000-06-09
## 5579 mark.e.taylor@enron.com 2000-06-08
## 5580 mark.e.taylor@enron.com 2000-06-08
## 5581 mark.e.taylor@enron.com 2000-06-08
## 5582 mark.e.taylor@enron.com 2000-06-08
## 5583 mark.e.taylor@enron.com 2000-06-08
## 5584 mark.e.taylor@enron.com 2000-06-08
## 5585 mark.e.taylor@enron.com 2000-06-08
## 5586 mark.e.taylor@enron.com 2000-06-08
## 5587 mark.e.taylor@enron.com 2000-06-08
## 5588 mark.e.taylor@enron.com 2000-06-08
## 5589 mark.e.taylor@enron.com 2000-06-08
## 5590 mark.e.taylor@enron.com 2000-06-08
## 5591 mark.e.taylor@enron.com 2000-06-08
## 5592 mark.e.taylor@enron.com 2000-06-07
## 5593 mark.e.taylor@enron.com 2000-06-07
## 5594 mark.e.taylor@enron.com 2000-06-07
## 5595 mark.e.taylor@enron.com 2000-06-06
## 5596 mark.e.taylor@enron.com 2000-06-06
## 5597 mark.e.taylor@enron.com 2000-06-06
## 5598 mark.e.taylor@enron.com 2000-06-06
## 5599 mark.e.taylor@enron.com 2000-06-06
## 5600 mark.e.taylor@enron.com 2000-06-06
## 5601 mark.e.taylor@enron.com 2000-06-06
## 5602 mark.e.taylor@enron.com 2000-06-06
## 5603 mark.e.taylor@enron.com 2000-06-06
## 5604 mark.e.taylor@enron.com 2000-06-06
## 5605 mark.e.taylor@enron.com 2000-06-02
## 5606 mark.e.taylor@enron.com 2000-06-01
## 5607 mark.e.taylor@enron.com 2000-05-31
## 5608 mark.e.taylor@enron.com 2000-05-31
## 5609 mark.e.taylor@enron.com 2000-05-31
## 5610 mark.e.taylor@enron.com 2000-05-31
## 5611 mark.e.taylor@enron.com 2000-05-31
## 5612 mark.e.taylor@enron.com 2000-05-31
## 5613 mark.e.taylor@enron.com 2000-05-31
## 5614 mark.e.taylor@enron.com 2000-05-31
## 5615 mark.e.taylor@enron.com 2000-05-31
## 5616 mark.e.taylor@enron.com 2000-05-31
## 5617 mark.e.taylor@enron.com 2000-05-31
## 5618 mark.e.taylor@enron.com 2000-05-31
## 5619 mark.e.taylor@enron.com 2000-05-31
## 5620 mark.e.taylor@enron.com 2000-05-31
## 5621 mark.e.taylor@enron.com 2000-05-31
## 5622 mark.e.taylor@enron.com 2000-05-31
## 5623 mark.e.taylor@enron.com 2000-05-31
## 5624 mark.e.taylor@enron.com 2000-05-31
## 5625 mark.e.taylor@enron.com 2000-05-31
## 5626 mark.e.taylor@enron.com 2000-05-31
## 5627 mark.e.taylor@enron.com 2000-05-31
## 5628 mark.e.taylor@enron.com 2000-05-31
## 5629 mark.e.taylor@enron.com 2000-05-31
## 5630 mark.e.taylor@enron.com 2000-05-31
## 5631 mark.e.taylor@enron.com 2000-05-31
## 5632 mark.e.taylor@enron.com 2000-05-31
## 5633 mark.e.taylor@enron.com 2000-05-31
## 5634 mark.e.taylor@enron.com 2000-05-31
## 5635 mark.e.taylor@enron.com 2000-05-31
## 5636 mark.e.taylor@enron.com 2000-05-30
## 5637 mark.e.taylor@enron.com 2000-05-30
## 5638 mark.e.taylor@enron.com 2000-05-30
## 5639 mark.e.taylor@enron.com 2000-05-30
## 5640 mark.e.taylor@enron.com 2000-05-30
## 5641 mark.e.taylor@enron.com 2000-05-30
## 5642 mark.e.taylor@enron.com 2000-05-30
## 5643 mark.e.taylor@enron.com 2000-05-30
## 5644 mark.e.taylor@enron.com 2000-05-30
## 5645 mark.e.taylor@enron.com 2000-05-30
## 5646 mark.e.taylor@enron.com 2000-05-30
## 5647 mark.e.taylor@enron.com 2000-05-30
## 5648 mark.e.taylor@enron.com 2000-05-30
## 5649 mark.e.taylor@enron.com 2000-05-26
## 5650 mark.e.taylor@enron.com 2000-05-26
## 5651 mark.e.taylor@enron.com 2000-05-25
## 5652 mark.e.taylor@enron.com 2000-05-25
## 5653 mark.e.taylor@enron.com 2000-05-25
## 5654 mark.e.taylor@enron.com 2000-05-25
## 5655 mark.e.taylor@enron.com 2000-05-25
## 5656 mark.e.taylor@enron.com 2000-05-25
## 5657 mark.e.taylor@enron.com 2000-05-25
## 5658 mark.e.taylor@enron.com 2000-05-25
## 5659 mark.e.taylor@enron.com 2000-05-25
## 5660 mark.e.taylor@enron.com 2000-05-22
## 5661 mark.e.taylor@enron.com 2000-05-22
## 5662 mark.e.taylor@enron.com 2000-05-22
## 5663 mark.e.taylor@enron.com 2000-05-22
## 5664 mark.e.taylor@enron.com 2000-05-19
## 5665 mark.e.taylor@enron.com 2000-05-19
## 5666 mark.e.taylor@enron.com 2000-05-19
## 5667 mark.e.taylor@enron.com 2000-05-18
## 5668 mark.e.taylor@enron.com 2000-05-18
## 5669 mark.e.taylor@enron.com 2000-05-18
## 5670 mark.e.taylor@enron.com 2000-05-18
## 5671 mark.e.taylor@enron.com 2000-05-18
## 5672 mark.e.taylor@enron.com 2000-05-18
## 5673 mark.e.taylor@enron.com 2000-05-17
## 5674 mark.e.taylor@enron.com 2000-05-17
## 5675 mark.e.taylor@enron.com 2000-05-16
## 5676 mark.e.taylor@enron.com 2000-05-16
## 5677 mark.e.taylor@enron.com 2000-05-16
## 5678 mark.e.taylor@enron.com 2000-05-16
## 5679 mark.e.taylor@enron.com 2000-05-16
## 5680 mark.e.taylor@enron.com 2000-05-16
## 5681 mark.e.taylor@enron.com 2000-05-16
## 5682 mark.e.taylor@enron.com 2000-05-16
## 5683 mark.e.taylor@enron.com 2000-05-16
## 5684 mark.e.taylor@enron.com 2000-05-16
## 5685 mark.e.taylor@enron.com 2000-05-16
## 5686 mark.e.taylor@enron.com 2000-05-16
## 5687 mark.e.taylor@enron.com 2000-05-16
## 5688 mark.e.taylor@enron.com 2000-05-16
## 5689 mark.e.taylor@enron.com 2000-05-16
## 5690 mark.e.taylor@enron.com 2000-05-16
## 5691 mark.e.taylor@enron.com 2000-05-16
## 5692 mark.e.taylor@enron.com 2000-05-16
## 5693 mark.e.taylor@enron.com 2000-05-16
## 5694 mark.e.taylor@enron.com 2000-05-16
## 5695 mark.e.taylor@enron.com 2000-05-16
## 5696 mark.e.taylor@enron.com 2000-05-16
## 5697 mark.e.taylor@enron.com 2000-05-15
## 5698 mark.e.taylor@enron.com 2000-05-15
## 5699 mark.e.taylor@enron.com 2000-05-13
## 5700 mark.e.taylor@enron.com 2000-05-12
## 5701 mark.e.taylor@enron.com 2000-05-11
## 5702 mark.e.taylor@enron.com 2000-05-11
## 5703 mark.e.taylor@enron.com 2000-05-11
## 5704 mark.e.taylor@enron.com 2000-05-11
## 5705 mark.e.taylor@enron.com 2000-05-11
## 5706 mark.e.taylor@enron.com 2000-05-11
## 5707 mark.e.taylor@enron.com 2000-05-10
## 5708 mark.e.taylor@enron.com 2000-05-10
## 5709 mark.e.taylor@enron.com 2000-05-10
## 5710 mark.e.taylor@enron.com 2000-05-10
## 5711 mark.e.taylor@enron.com 2000-05-10
## 5712 mark.e.taylor@enron.com 2000-05-10
## 5713 mark.e.taylor@enron.com 2000-05-10
## 5714 mark.e.taylor@enron.com 2000-05-10
## 5715 mark.e.taylor@enron.com 2000-05-10
## 5716 mark.e.taylor@enron.com 2000-05-10
## 5717 mark.e.taylor@enron.com 2000-05-10
## 5718 mark.e.taylor@enron.com 2000-05-10
## 5719 mark.e.taylor@enron.com 2000-05-10
## 5720 mark.e.taylor@enron.com 2000-05-10
## 5721 mark.e.taylor@enron.com 2000-05-09
## 5722 mark.e.taylor@enron.com 2000-05-09
## 5723 mark.e.taylor@enron.com 2000-05-09
## 5724 mark.e.taylor@enron.com 2000-05-09
## 5725 mark.e.taylor@enron.com 2000-05-09
## 5726 mark.e.taylor@enron.com 2000-05-08
## 5727 mark.e.taylor@enron.com 2000-05-08
## 5728 mark.e.taylor@enron.com 2000-05-08
## 5729 mark.e.taylor@enron.com 2000-05-08
## 5730 mark.e.taylor@enron.com 2000-05-08
## 5731 mark.e.taylor@enron.com 2000-05-03
## 5732 mark.e.taylor@enron.com 2000-05-03
## 5733 mark.e.taylor@enron.com 2000-05-03
## 5734 mark.e.taylor@enron.com 2000-05-03
## 5735 mark.e.taylor@enron.com 2000-05-03
## 5736 mark.e.taylor@enron.com 2000-05-03
## 5737 mark.e.taylor@enron.com 2000-05-02
## 5738 mark.e.taylor@enron.com 2000-05-02
## 5739 mark.e.taylor@enron.com 2000-05-02
## 5740 mark.e.taylor@enron.com 2000-05-02
## 5741 mark.e.taylor@enron.com 2000-05-02
## 5742 mark.e.taylor@enron.com 2000-05-02
## 5743 mark.e.taylor@enron.com 2000-05-02
## 5744 mark.e.taylor@enron.com 2000-05-02
## 5745 mark.e.taylor@enron.com 2000-05-02
## 5746 mark.e.taylor@enron.com 2000-05-02
## 5747 mark.e.taylor@enron.com 2000-05-02
## 5748 mark.e.taylor@enron.com 2000-05-02
## 5749 mark.e.taylor@enron.com 2000-05-01
## 5750 mark.e.taylor@enron.com 2000-05-01
## 5751 mark.e.taylor@enron.com 2000-05-01
## 5752 mark.e.taylor@enron.com 2000-05-01
## 5753 mark.e.taylor@enron.com 2000-05-01
## 5754 mark.e.taylor@enron.com 2000-05-01
## 5755 mark.e.taylor@enron.com 2000-05-01
## 5756 mark.e.taylor@enron.com 2000-05-01
## 5757 mark.e.taylor@enron.com 2000-05-01
## 5758 mark.e.taylor@enron.com 2000-05-01
## 5759 mark.e.taylor@enron.com 2000-05-01
## 5760 mark.e.taylor@enron.com 2000-05-01
## 5761 mark.e.taylor@enron.com 2000-05-01
## 5762 mark.e.taylor@enron.com 2000-05-01
## 5763 mark.e.taylor@enron.com 2000-05-01
## 5764 mark.e.taylor@enron.com 2000-04-28
## 5765 mark.e.taylor@enron.com 2000-04-28
## 5766 mark.e.taylor@enron.com 2000-04-28
## 5767 mark.e.taylor@enron.com 2000-04-28
## 5768 mark.e.taylor@enron.com 2000-04-28
## 5769 mark.e.taylor@enron.com 2000-04-28
## 5770 mark.e.taylor@enron.com 2000-04-28
## 5771 mark.e.taylor@enron.com 2000-04-28
## 5772 mark.e.taylor@enron.com 2000-04-28
## 5773 mark.e.taylor@enron.com 2000-04-28
## 5774 mark.e.taylor@enron.com 2000-04-28
## 5775 mark.e.taylor@enron.com 2000-04-28
## 5776 mark.e.taylor@enron.com 2000-04-28
## 5777 mark.e.taylor@enron.com 2000-04-28
## 5778 mark.e.taylor@enron.com 2000-04-28
## 5779 mark.e.taylor@enron.com 2000-04-28
## 5780 mark.e.taylor@enron.com 2000-04-28
## 5781 mark.e.taylor@enron.com 2000-04-28
## 5782 mark.e.taylor@enron.com 2000-04-28
## 5783 mark.e.taylor@enron.com 2000-04-28
## 5784 mark.e.taylor@enron.com 2000-04-28
## 5785 mark.e.taylor@enron.com 2000-04-28
## 5786 mark.e.taylor@enron.com 2000-04-28
## 5787 mark.e.taylor@enron.com 2000-04-28
## 5788 mark.e.taylor@enron.com 2000-04-28
## 5789 mark.e.taylor@enron.com 2000-04-28
## 5790 mark.e.taylor@enron.com 2000-04-28
## 5791 mark.e.taylor@enron.com 2000-04-27
## 5792 mark.e.taylor@enron.com 2000-04-27
## 5793 mark.e.taylor@enron.com 2000-04-27
## 5794 mark.e.taylor@enron.com 2000-04-27
## 5795 mark.e.taylor@enron.com 2000-04-27
## 5796 mark.e.taylor@enron.com 2000-04-27
## 5797 mark.e.taylor@enron.com 2000-04-27
## 5798 mark.e.taylor@enron.com 2000-04-27
## 5799 mark.e.taylor@enron.com 2000-04-27
## 5800 mark.e.taylor@enron.com 2000-04-27
## 5801 mark.e.taylor@enron.com 2000-04-27
## 5802 mark.e.taylor@enron.com 2000-04-27
## 5803 mark.e.taylor@enron.com 2000-04-27
## 5804 mark.e.taylor@enron.com 2000-04-27
## 5805 mark.e.taylor@enron.com 2000-04-27
## 5806 mark.e.taylor@enron.com 2000-04-27
## 5807 mark.e.taylor@enron.com 2000-04-26
## 5808 mark.e.taylor@enron.com 2000-04-26
## 5809 mark.e.taylor@enron.com 2000-04-26
## 5810 mark.e.taylor@enron.com 2000-04-26
## 5811 mark.e.taylor@enron.com 2000-04-26
## 5812 mark.e.taylor@enron.com 2000-04-26
## 5813 mark.e.taylor@enron.com 2000-04-26
## 5814 mark.e.taylor@enron.com 2000-04-26
## 5815 mark.e.taylor@enron.com 2000-04-26
## 5816 mark.e.taylor@enron.com 2000-04-26
## 5817 mark.e.taylor@enron.com 2000-04-26
## 5818 mark.e.taylor@enron.com 2000-04-26
## 5819 mark.e.taylor@enron.com 2000-04-26
## 5820 mark.e.taylor@enron.com 2000-04-26
## 5821 mark.e.taylor@enron.com 2000-04-26
## 5822 mark.e.taylor@enron.com 2000-04-26
## 5823 mark.e.taylor@enron.com 2000-04-26
## 5824 mark.e.taylor@enron.com 2000-04-26
## 5825 mark.e.taylor@enron.com 2000-04-26
## 5826 mark.e.taylor@enron.com 2000-04-26
## 5827 mark.e.taylor@enron.com 2000-04-26
## 5828 mark.e.taylor@enron.com 2000-04-26
## 5829 mark.e.taylor@enron.com 2000-04-26
## 5830 mark.e.taylor@enron.com 2000-04-26
## 5831 mark.e.taylor@enron.com 2000-04-26
## 5832 mark.e.taylor@enron.com 2000-04-21
## 5833 mark.e.taylor@enron.com 2000-04-21
## 5834 mark.e.taylor@enron.com 2000-04-21
## 5835 mark.e.taylor@enron.com 2000-04-21
## 5836 mark.e.taylor@enron.com 2000-04-21
## 5837 mark.e.taylor@enron.com 2000-04-21
## 5838 mark.e.taylor@enron.com 2000-04-21
## 5839 mark.e.taylor@enron.com 2000-04-20
## 5840 mark.e.taylor@enron.com 2000-04-20
## 5841 mark.e.taylor@enron.com 2000-04-20
## 5842 mark.e.taylor@enron.com 2000-04-20
## 5843 mark.e.taylor@enron.com 2000-04-20
## 5844 mark.e.taylor@enron.com 2000-04-20
## 5845 mark.e.taylor@enron.com 2000-04-20
## 5846 mark.e.taylor@enron.com 2000-04-20
## 5847 mark.e.taylor@enron.com 2000-04-20
## 5848 mark.e.taylor@enron.com 2000-04-20
## 5849 mark.e.taylor@enron.com 2000-04-20
## 5850 mark.e.taylor@enron.com 2000-04-20
## 5851 mark.e.taylor@enron.com 2000-04-20
## 5852 mark.e.taylor@enron.com 2000-04-18
## 5853 mark.e.taylor@enron.com 2000-04-18
## 5854 mark.e.taylor@enron.com 2000-04-18
## 5855 mark.e.taylor@enron.com 2000-04-18
## 5856 mark.e.taylor@enron.com 2000-04-17
## 5857 mark.e.taylor@enron.com 2000-04-17
## 5858 mark.e.taylor@enron.com 2000-04-17
## 5859 mark.e.taylor@enron.com 2000-04-17
## 5860 mark.e.taylor@enron.com 2000-04-17
## 5861 mark.e.taylor@enron.com 2000-04-17
## 5862 mark.e.taylor@enron.com 2000-04-17
## 5863 mark.e.taylor@enron.com 2000-04-17
## 5864 mark.e.taylor@enron.com 2000-04-17
## 5865 mark.e.taylor@enron.com 2000-04-17
## 5866 mark.e.taylor@enron.com 2000-04-17
## 5867 mark.e.taylor@enron.com 2000-04-17
## 5868 mark.e.taylor@enron.com 2000-04-17
## 5869 mark.e.taylor@enron.com 2000-04-17
## 5870 mark.e.taylor@enron.com 2000-04-14
## 5871 mark.e.taylor@enron.com 2000-04-11
## 5872 mark.e.taylor@enron.com 2000-04-11
## 5873 mark.e.taylor@enron.com 2000-04-11
## 5874 mark.e.taylor@enron.com 2000-04-11
## 5875 mark.e.taylor@enron.com 2000-04-11
## 5876 mark.e.taylor@enron.com 2000-04-11
## 5877 mark.e.taylor@enron.com 2000-04-10
## 5878 mark.e.taylor@enron.com 2000-04-10
## 5879 mark.e.taylor@enron.com 2000-04-10
## 5880 mark.e.taylor@enron.com 2000-04-10
## 5881 mark.e.taylor@enron.com 2000-04-10
## 5882 mark.e.taylor@enron.com 2000-04-10
## 5883 mark.e.taylor@enron.com 2000-04-10
## 5884 mark.e.taylor@enron.com 2000-04-10
## 5885 mark.e.taylor@enron.com 2000-04-09
## 5886 mark.e.taylor@enron.com 2000-04-09
## 5887 mark.e.taylor@enron.com 2000-04-09
## 5888 mark.e.taylor@enron.com 2000-04-09
## 5889 mark.e.taylor@enron.com 2000-04-09
## 5890 mark.e.taylor@enron.com 2000-04-09
## 5891 mark.e.taylor@enron.com 2000-04-09
## 5892 mark.e.taylor@enron.com 2000-04-09
## 5893 mark.e.taylor@enron.com 2000-04-09
## 5894 mark.e.taylor@enron.com 2000-04-09
## 5895 mark.e.taylor@enron.com 2000-04-09
## 5896 mark.e.taylor@enron.com 2000-04-05
## 5897 mark.e.taylor@enron.com 2000-04-05
## 5898 mark.e.taylor@enron.com 2000-04-05
## 5899 mark.e.taylor@enron.com 2000-04-05
## 5900 mark.e.taylor@enron.com 2000-04-05
## 5901 mark.e.taylor@enron.com 2000-04-05
## 5902 mark.e.taylor@enron.com 2000-04-04
## 5903 mark.e.taylor@enron.com 2000-04-04
## 5904 mark.e.taylor@enron.com 2000-04-04
## 5905 mark.e.taylor@enron.com 2000-04-03
## 5906 mark.e.taylor@enron.com 2000-04-03
## 5907 mark.e.taylor@enron.com 2000-04-03
## 5908 mark.e.taylor@enron.com 2000-04-03
## 5909 mark.e.taylor@enron.com 2000-04-03
## 5910 mark.e.taylor@enron.com 2000-03-30
## 5911 mark.e.taylor@enron.com 2000-03-30
## 5912 mark.e.taylor@enron.com 2000-03-30
## 5913 mark.e.taylor@enron.com 2000-03-29
## 5914 mark.e.taylor@enron.com 2000-03-29
## 5915 mark.e.taylor@enron.com 2000-03-29
## 5916 mark.e.taylor@enron.com 2000-03-29
## 5917 mark.e.taylor@enron.com 2000-03-29
## 5918 mark.e.taylor@enron.com 2000-03-28
## 5919 mark.e.taylor@enron.com 2000-03-28
## 5920 mark.e.taylor@enron.com 2000-03-28
## 5921 mark.e.taylor@enron.com 2000-03-28
## 5922 mark.e.taylor@enron.com 2000-03-28
## 5923 mark.e.taylor@enron.com 2000-03-28
## 5924 mark.e.taylor@enron.com 2000-03-28
## 5925 mark.e.taylor@enron.com 2000-03-28
## 5926 mark.e.taylor@enron.com 2000-03-28
## 5927 mark.e.taylor@enron.com 2000-03-27
## 5928 mark.e.taylor@enron.com 2000-03-24
## 5929 mark.e.taylor@enron.com 2000-03-24
## 5930 mark.e.taylor@enron.com 2000-03-23
## 5931 mark.e.taylor@enron.com 2000-03-23
## 5932 mark.e.taylor@enron.com 2000-03-23
## 5933 mark.e.taylor@enron.com 2000-03-21
## 5934 mark.e.taylor@enron.com 2000-03-21
## 5935 mark.e.taylor@enron.com 2000-03-21
## 5936 mark.e.taylor@enron.com 2000-03-21
## 5937 mark.e.taylor@enron.com 2000-03-21
## 5938 mark.e.taylor@enron.com 2000-03-21
## 5939 mark.e.taylor@enron.com 2000-03-20
## 5940 mark.e.taylor@enron.com 2000-03-20
## 5941 mark.e.taylor@enron.com 2000-03-20
## 5942 mark.e.taylor@enron.com 2000-03-15
## 5943 mark.e.taylor@enron.com 2000-03-15
## 5944 mark.e.taylor@enron.com 2000-03-15
## 5945 mark.e.taylor@enron.com 2000-03-15
## 5946 mark.e.taylor@enron.com 2000-03-15
## 5947 mark.e.taylor@enron.com 2000-03-15
## 5948 mark.e.taylor@enron.com 2000-03-15
## 5949 mark.e.taylor@enron.com 2000-03-15
## 5950 mark.e.taylor@enron.com 2000-03-15
## 5951 mark.e.taylor@enron.com 2000-03-15
## 5952 mark.e.taylor@enron.com 2000-03-15
## 5953 mark.e.taylor@enron.com 2000-03-15
## 5954 mark.e.taylor@enron.com 2000-03-13
## 5955 mark.e.taylor@enron.com 2000-03-13
## 5956 mark.e.taylor@enron.com 2000-03-13
## 5957 mark.e.taylor@enron.com 2000-03-13
## 5958 mark.e.taylor@enron.com 2000-03-13
## 5959 mark.e.taylor@enron.com 2000-03-13
## 5960 mark.e.taylor@enron.com 2000-03-13
## 5961 mark.e.taylor@enron.com 2000-03-13
## 5962 mark.e.taylor@enron.com 2000-03-13
## 5963 mark.e.taylor@enron.com 2000-03-13
## 5964 mark.e.taylor@enron.com 2000-03-12
## 5965 mark.e.taylor@enron.com 2000-03-12
## 5966 mark.e.taylor@enron.com 2000-03-12
## 5967 mark.e.taylor@enron.com 2000-03-12
## 5968 mark.e.taylor@enron.com 2000-03-12
## 5969 mark.e.taylor@enron.com 2000-03-08
## 5970 mark.e.taylor@enron.com 2000-03-08
## 5971 mark.e.taylor@enron.com 2000-03-07
## 5972 mark.e.taylor@enron.com 2000-03-06
## 5973 mark.e.taylor@enron.com 2000-03-06
## 5974 mark.e.taylor@enron.com 2000-03-06
## 5975 mark.e.taylor@enron.com 2000-03-03
## 5976 mark.e.taylor@enron.com 2000-03-03
## 5977 mark.e.taylor@enron.com 2000-03-03
## 5978 mark.e.taylor@enron.com 2000-03-03
## 5979 mark.e.taylor@enron.com 2000-03-03
## 5980 mark.e.taylor@enron.com 2000-03-03
## 5981 mark.e.taylor@enron.com 2000-03-03
## 5982 mark.e.taylor@enron.com 2000-03-03
## 5983 mark.e.taylor@enron.com 2000-03-03
## 5984 mark.e.taylor@enron.com 2000-03-03
## 5985 mark.e.taylor@enron.com 2000-03-03
## 5986 mark.e.taylor@enron.com 2000-03-03
## 5987 mark.e.taylor@enron.com 2000-03-03
## 5988 mark.e.taylor@enron.com 2000-03-03
## 5989 mark.e.taylor@enron.com 2000-03-03
## 5990 mark.e.taylor@enron.com 2000-03-02
## 5991 mark.e.taylor@enron.com 2000-03-01
## 5992 mark.e.taylor@enron.com 2000-03-01
## 5993 mark.e.taylor@enron.com 2000-03-01
## 5994 mark.e.taylor@enron.com 2000-03-01
## 5995 mark.e.taylor@enron.com 2000-03-01
## 5996 mark.e.taylor@enron.com 2000-03-01
## 5997 mark.e.taylor@enron.com 2000-03-01
## 5998 mark.e.taylor@enron.com 2000-03-01
## 5999 mark.e.taylor@enron.com 2000-03-01
## 6000 mark.e.taylor@enron.com 2000-03-01
## 6001 mark.e.taylor@enron.com 2000-03-01
## 6002 mark.e.taylor@enron.com 2000-03-01
## 6003 mark.e.taylor@enron.com 2000-03-01
## 6004 mark.e.taylor@enron.com 2000-03-01
## 6005 mark.e.taylor@enron.com 2000-03-01
## 6006 mark.e.taylor@enron.com 2000-03-01
## 6007 mark.e.taylor@enron.com 2000-02-28
## 6008 mark.e.taylor@enron.com 2000-02-28
## 6009 mark.e.taylor@enron.com 2000-02-28
## 6010 mark.e.taylor@enron.com 2000-02-28
## 6011 mark.e.taylor@enron.com 2000-02-28
## 6012 mark.e.taylor@enron.com 2000-02-28
## 6013 mark.e.taylor@enron.com 2000-02-28
## 6014 mark.e.taylor@enron.com 2000-02-28
## 6015 mark.e.taylor@enron.com 2000-02-28
## 6016 mark.e.taylor@enron.com 2000-02-28
## 6017 mark.e.taylor@enron.com 2000-02-28
## 6018 mark.e.taylor@enron.com 2000-02-28
## 6019 mark.e.taylor@enron.com 2000-02-28
## 6020 mark.e.taylor@enron.com 2000-02-28
## 6021 mark.e.taylor@enron.com 2000-02-28
## 6022 mark.e.taylor@enron.com 2000-02-28
## 6023 mark.e.taylor@enron.com 2000-02-28
## 6024 mark.e.taylor@enron.com 2000-02-28
## 6025 mark.e.taylor@enron.com 2000-02-28
## 6026 mark.e.taylor@enron.com 2000-02-28
## 6027 mark.e.taylor@enron.com 2000-02-28
## 6028 mark.e.taylor@enron.com 2000-02-28
## 6029 mark.e.taylor@enron.com 2000-02-28
## 6030 mark.e.taylor@enron.com 2000-02-25
## 6031 mark.e.taylor@enron.com 2000-02-25
## 6032 mark.e.taylor@enron.com 2000-02-25
## 6033 mark.e.taylor@enron.com 2000-02-25
## 6034 mark.e.taylor@enron.com 2000-02-24
## 6035 mark.e.taylor@enron.com 2000-02-24
## 6036 mark.e.taylor@enron.com 2000-02-24
## 6037 mark.e.taylor@enron.com 2000-02-24
## 6038 mark.e.taylor@enron.com 2000-02-24
## 6039 mark.e.taylor@enron.com 2000-02-24
## 6040 mark.e.taylor@enron.com 2000-02-24
## 6041 mark.e.taylor@enron.com 2000-02-24
## 6042 mark.e.taylor@enron.com 2000-02-24
## 6043 mark.e.taylor@enron.com 2000-02-24
## 6044 mark.e.taylor@enron.com 2000-02-24
## 6045 mark.e.taylor@enron.com 2000-02-24
## 6046 mark.e.taylor@enron.com 2000-02-24
## 6047 mark.e.taylor@enron.com 2000-02-24
## 6048 mark.e.taylor@enron.com 2000-02-24
## 6049 mark.e.taylor@enron.com 2000-02-24
## 6050 mark.e.taylor@enron.com 2000-02-24
## 6051 mark.e.taylor@enron.com 2000-02-24
## 6052 mark.e.taylor@enron.com 2000-02-24
## 6053 mark.e.taylor@enron.com 2000-02-24
## 6054 mark.e.taylor@enron.com 2000-02-22
## 6055 mark.e.taylor@enron.com 2000-02-22
## 6056 mark.e.taylor@enron.com 2000-02-22
## 6057 mark.e.taylor@enron.com 2000-02-22
## 6058 mark.e.taylor@enron.com 2000-02-22
## 6059 mark.e.taylor@enron.com 2000-02-22
## 6060 mark.e.taylor@enron.com 2000-02-22
## 6061 mark.e.taylor@enron.com 2000-02-22
## 6062 mark.e.taylor@enron.com 2000-02-22
## 6063 mark.e.taylor@enron.com 2000-02-22
## 6064 mark.e.taylor@enron.com 2000-02-22
## 6065 mark.e.taylor@enron.com 2000-02-22
## 6066 mark.e.taylor@enron.com 2000-02-22
## 6067 mark.e.taylor@enron.com 2000-02-22
## 6068 mark.e.taylor@enron.com 2000-02-22
## 6069 mark.e.taylor@enron.com 2000-02-22
## 6070 mark.e.taylor@enron.com 2000-02-22
## 6071 mark.e.taylor@enron.com 2000-02-22
## 6072 mark.e.taylor@enron.com 2000-02-22
## 6073 mark.e.taylor@enron.com 2000-02-22
## 6074 mark.e.taylor@enron.com 2000-02-22
## 6075 mark.e.taylor@enron.com 2000-02-22
## 6076 mark.e.taylor@enron.com 2000-02-22
## 6077 mark.e.taylor@enron.com 2000-02-22
## 6078 mark.e.taylor@enron.com 2000-02-22
## 6079 mark.e.taylor@enron.com 2000-02-22
## 6080 mark.e.taylor@enron.com 2000-02-22
## 6081 mark.e.taylor@enron.com 2000-02-22
## 6082 mark.e.taylor@enron.com 2000-02-22
## 6083 mark.e.taylor@enron.com 2000-02-22
## 6084 mark.e.taylor@enron.com 2000-02-22
## 6085 mark.e.taylor@enron.com 2000-02-22
## 6086 mark.e.taylor@enron.com 2000-02-22
## 6087 mark.e.taylor@enron.com 2000-02-22
## 6088 mark.e.taylor@enron.com 2000-02-22
## 6089 mark.e.taylor@enron.com 2000-02-22
## 6090 mark.e.taylor@enron.com 2000-02-22
## 6091 mark.e.taylor@enron.com 2000-02-22
## 6092 mark.e.taylor@enron.com 2000-02-22
## 6093 mark.e.taylor@enron.com 2000-02-22
## 6094 mark.e.taylor@enron.com 2000-02-22
## 6095 mark.e.taylor@enron.com 2000-02-21
## 6096 mark.e.taylor@enron.com 2000-02-21
## 6097 mark.e.taylor@enron.com 2000-02-19
## 6098 mark.e.taylor@enron.com 2000-02-18
## 6099 mark.e.taylor@enron.com 2000-02-17
## 6100 mark.e.taylor@enron.com 2000-02-17
## 6101 mark.e.taylor@enron.com 2000-02-17
## 6102 mark.e.taylor@enron.com 2000-02-17
## 6103 mark.e.taylor@enron.com 2000-02-17
## 6104 mark.e.taylor@enron.com 2000-02-17
## 6105 mark.e.taylor@enron.com 2000-02-17
## 6106 mark.e.taylor@enron.com 2000-02-17
## 6107 mark.e.taylor@enron.com 2000-02-17
## 6108 mark.e.taylor@enron.com 2000-02-17
## 6109 mark.e.taylor@enron.com 2000-02-16
## 6110 mark.e.taylor@enron.com 2000-02-16
## 6111 mark.e.taylor@enron.com 2000-02-16
## 6112 mark.e.taylor@enron.com 2000-02-16
## 6113 mark.e.taylor@enron.com 2000-02-16
## 6114 mark.e.taylor@enron.com 2000-02-16
## 6115 mark.e.taylor@enron.com 2000-02-16
## 6116 mark.e.taylor@enron.com 2000-02-16
## 6117 mark.e.taylor@enron.com 2000-02-16
## 6118 mark.e.taylor@enron.com 2000-02-16
## 6119 mark.e.taylor@enron.com 2000-02-16
## 6120 mark.e.taylor@enron.com 2000-02-16
## 6121 mark.e.taylor@enron.com 2000-02-16
## 6122 mark.e.taylor@enron.com 2000-02-16
## 6123 mark.e.taylor@enron.com 2000-02-16
## 6124 mark.e.taylor@enron.com 2000-02-16
## 6125 mark.e.taylor@enron.com 2000-02-16
## 6126 mark.e.taylor@enron.com 2000-02-16
## 6127 mark.e.taylor@enron.com 2000-02-16
## 6128 mark.e.taylor@enron.com 2000-02-15
## 6129 mark.e.taylor@enron.com 2000-02-15
## 6130 mark.e.taylor@enron.com 2000-02-15
## 6131 mark.e.taylor@enron.com 2000-02-15
## 6132 mark.e.taylor@enron.com 2000-02-15
## 6133 mark.e.taylor@enron.com 2000-02-15
## 6134 mark.e.taylor@enron.com 2000-02-15
## 6135 mark.e.taylor@enron.com 2000-02-15
## 6136 mark.e.taylor@enron.com 2000-02-15
## 6137 mark.e.taylor@enron.com 2000-02-15
## 6138 mark.e.taylor@enron.com 2000-02-15
## 6139 mark.e.taylor@enron.com 2000-02-15
## 6140 mark.e.taylor@enron.com 2000-02-14
## 6141 mark.e.taylor@enron.com 2000-02-14
## 6142 mark.e.taylor@enron.com 2000-02-14
## 6143 mark.e.taylor@enron.com 2000-02-14
## 6144 mark.e.taylor@enron.com 2000-02-14
## 6145 mark.e.taylor@enron.com 2000-02-14
## 6146 mark.e.taylor@enron.com 2000-02-14
## 6147 mark.e.taylor@enron.com 2000-02-13
## 6148 mark.e.taylor@enron.com 2000-02-11
## 6149 mark.e.taylor@enron.com 2000-02-11
## 6150 mark.e.taylor@enron.com 2000-02-11
## 6151 mark.e.taylor@enron.com 2000-02-11
## 6152 mark.e.taylor@enron.com 2000-02-11
## 6153 mark.e.taylor@enron.com 2000-02-11
## 6154 mark.e.taylor@enron.com 2000-02-11
## 6155 mark.e.taylor@enron.com 2000-02-11
## 6156 mark.e.taylor@enron.com 2000-02-11
## 6157 mark.e.taylor@enron.com 2000-02-11
## 6158 mark.e.taylor@enron.com 2000-02-10
## 6159 mark.e.taylor@enron.com 2000-02-10
## 6160 mark.e.taylor@enron.com 2000-02-08
## 6161 mark.e.taylor@enron.com 2000-02-08
## 6162 mark.e.taylor@enron.com 2000-02-08
## 6163 mark.e.taylor@enron.com 2000-02-08
## 6164 mark.e.taylor@enron.com 2000-02-08
## 6165 mark.e.taylor@enron.com 2000-02-08
## 6166 mark.e.taylor@enron.com 2000-02-08
## 6167 mark.e.taylor@enron.com 2000-02-04
## 6168 mark.e.taylor@enron.com 2000-02-04
## 6169 mark.e.taylor@enron.com 2000-02-04
## 6170 mark.e.taylor@enron.com 2000-02-04
## 6171 mark.e.taylor@enron.com 2000-02-04
## 6172 mark.e.taylor@enron.com 2000-02-04
## 6173 mark.e.taylor@enron.com 2000-02-04
## 6174 mark.e.taylor@enron.com 2000-02-04
## 6175 mark.e.taylor@enron.com 2000-02-04
## 6176 mark.e.taylor@enron.com 2000-02-04
## 6177 mark.e.taylor@enron.com 2000-02-04
## 6178 mark.e.taylor@enron.com 2000-02-04
## 6179 mark.e.taylor@enron.com 2000-02-04
## 6180 mark.e.taylor@enron.com 2000-02-04
## 6181 mark.e.taylor@enron.com 2000-02-03
## 6182 mark.e.taylor@enron.com 2000-02-03
## 6183 mark.e.taylor@enron.com 2000-02-03
## 6184 mark.e.taylor@enron.com 2000-02-01
## 6185 mark.e.taylor@enron.com 2000-01-31
## 6186 mark.e.taylor@enron.com 2000-01-31
## 6187 mark.e.taylor@enron.com 2000-01-31
## 6188 mark.e.taylor@enron.com 2000-01-31
## 6189 mark.e.taylor@enron.com 2000-01-28
## 6190 mark.e.taylor@enron.com 2000-01-28
## 6191 mark.e.taylor@enron.com 2000-01-28
## 6192 mark.e.taylor@enron.com 2000-01-28
## 6193 mark.e.taylor@enron.com 2000-01-28
## 6194 mark.e.taylor@enron.com 2000-01-28
## 6195 mark.e.taylor@enron.com 2000-01-28
## 6196 mark.e.taylor@enron.com 2000-01-27
## 6197 mark.e.taylor@enron.com 2000-01-27
## 6198 mark.e.taylor@enron.com 2000-01-27
## 6199 mark.e.taylor@enron.com 2000-01-27
## 6200 mark.e.taylor@enron.com 2000-01-27
## 6201 mark.e.taylor@enron.com 2000-01-27
## 6202 mark.e.taylor@enron.com 2000-01-27
## 6203 mark.e.taylor@enron.com 2000-01-27
## 6204 mark.e.taylor@enron.com 2000-01-27
## 6205 mark.e.taylor@enron.com 2000-01-26
## 6206 mark.e.taylor@enron.com 2000-01-26
## 6207 mark.e.taylor@enron.com 2000-01-26
## 6208 mark.e.taylor@enron.com 2000-01-26
## 6209 mark.e.taylor@enron.com 2000-01-25
## 6210 mark.e.taylor@enron.com 2000-01-25
## 6211 mark.e.taylor@enron.com 2000-01-25
## 6212 mark.e.taylor@enron.com 2000-01-25
## 6213 mark.e.taylor@enron.com 2000-01-25
## 6214 mark.e.taylor@enron.com 2000-01-25
## 6215 mark.e.taylor@enron.com 2000-01-25
## 6216 mark.e.taylor@enron.com 2000-01-25
## 6217 mark.e.taylor@enron.com 2000-01-25
## 6218 mark.e.taylor@enron.com 2000-01-25
## 6219 mark.e.taylor@enron.com 2000-01-25
## 6220 mark.e.taylor@enron.com 2000-01-25
## 6221 mark.e.taylor@enron.com 2000-01-25
## 6222 mark.e.taylor@enron.com 2000-01-24
## 6223 mark.e.taylor@enron.com 2000-01-24
## 6224 mark.e.taylor@enron.com 2000-01-24
## 6225 mark.e.taylor@enron.com 2000-01-21
## 6226 mark.e.taylor@enron.com 2000-01-21
## 6227 mark.e.taylor@enron.com 2000-01-21
## 6228 mark.e.taylor@enron.com 2000-01-21
## 6229 mark.e.taylor@enron.com 2000-01-21
## 6230 mark.e.taylor@enron.com 2000-01-21
## 6231 mark.e.taylor@enron.com 2000-01-21
## 6232 mark.e.taylor@enron.com 2000-01-21
## 6233 mark.e.taylor@enron.com 2000-01-21
## 6234 mark.e.taylor@enron.com 2000-01-21
## 6235 mark.e.taylor@enron.com 2000-01-21
## 6236 mark.e.taylor@enron.com 2000-01-21
## 6237 mark.e.taylor@enron.com 2000-01-20
## 6238 mark.e.taylor@enron.com 2000-01-20
## 6239 mark.e.taylor@enron.com 2000-01-20
## 6240 mark.e.taylor@enron.com 2000-01-20
## 6241 mark.e.taylor@enron.com 2000-01-20
## 6242 mark.e.taylor@enron.com 2000-01-20
## 6243 mark.e.taylor@enron.com 2000-01-20
## 6244 mark.e.taylor@enron.com 2000-01-20
## 6245 mark.e.taylor@enron.com 2000-01-20
## 6246 mark.e.taylor@enron.com 2000-01-20
## 6247 mark.e.taylor@enron.com 2000-01-19
## 6248 mark.e.taylor@enron.com 2000-01-19
## 6249 mark.e.taylor@enron.com 2000-01-19
## 6250 mark.e.taylor@enron.com 2000-01-19
## 6251 mark.e.taylor@enron.com 2000-01-19
## 6252 mark.e.taylor@enron.com 2000-01-19
## 6253 mark.e.taylor@enron.com 2000-01-19
## 6254 mark.e.taylor@enron.com 2000-01-19
## 6255 mark.e.taylor@enron.com 2000-01-19
## 6256 mark.e.taylor@enron.com 2000-01-19
## 6257 mark.e.taylor@enron.com 2000-01-18
## 6258 mark.e.taylor@enron.com 2000-01-18
## 6259 mark.e.taylor@enron.com 2000-01-18
## 6260 mark.e.taylor@enron.com 2000-01-18
## 6261 mark.e.taylor@enron.com 2000-01-18
## 6262 mark.e.taylor@enron.com 2000-01-18
## 6263 mark.e.taylor@enron.com 2000-01-18
## 6264 mark.e.taylor@enron.com 2000-01-18
## 6265 mark.e.taylor@enron.com 2000-01-18
## 6266 mark.e.taylor@enron.com 2000-01-18
## 6267 mark.e.taylor@enron.com 2000-01-18
## 6268 mark.e.taylor@enron.com 2000-01-18
## 6269 mark.e.taylor@enron.com 2000-01-18
## 6270 mark.e.taylor@enron.com 2000-01-18
## 6271 mark.e.taylor@enron.com 2000-01-18
## 6272 mark.e.taylor@enron.com 2000-01-18
## 6273 mark.e.taylor@enron.com 2000-01-18
## 6274 mark.e.taylor@enron.com 2000-01-18
## 6275 mark.e.taylor@enron.com 2000-01-18
## 6276 mark.e.taylor@enron.com 2000-01-18
## 6277 mark.e.taylor@enron.com 2000-01-18
## 6278 mark.e.taylor@enron.com 2000-01-17
## 6279 mark.e.taylor@enron.com 2000-01-17
## 6280 mark.e.taylor@enron.com 2000-01-17
## 6281 mark.e.taylor@enron.com 2000-01-17
## 6282 mark.e.taylor@enron.com 2000-01-17
## 6283 mark.e.taylor@enron.com 2000-01-17
## 6284 mark.e.taylor@enron.com 2000-01-17
## 6285 mark.e.taylor@enron.com 2000-01-17
## 6286 mark.e.taylor@enron.com 2000-01-17
## 6287 mark.e.taylor@enron.com 2000-01-17
## 6288 mark.e.taylor@enron.com 2000-01-17
## 6289 mark.e.taylor@enron.com 2000-01-14
## 6290 mark.e.taylor@enron.com 2000-01-12
## 6291 mark.e.taylor@enron.com 2000-01-11
## 6292 mark.e.taylor@enron.com 2000-01-11
## 6293 mark.e.taylor@enron.com 2000-01-11
## 6294 mark.e.taylor@enron.com 2000-01-11
## 6295 mark.e.taylor@enron.com 2000-01-11
## 6296 mark.e.taylor@enron.com 2000-01-11
## 6297 mark.e.taylor@enron.com 2000-01-11
## 6298 mark.e.taylor@enron.com 2000-01-11
## 6299 mark.e.taylor@enron.com 2000-01-11
## 6300 mark.e.taylor@enron.com 2000-01-11
## 6301 mark.e.taylor@enron.com 2000-01-11
## 6302 mark.e.taylor@enron.com 2000-01-11
## 6303 mark.e.taylor@enron.com 2000-01-11
## 6304 mark.e.taylor@enron.com 2000-01-11
## 6305 mark.e.taylor@enron.com 2000-01-11
## 6306 mark.e.taylor@enron.com 2000-01-11
## 6307 mark.e.taylor@enron.com 2000-01-11
## 6308 mark.e.taylor@enron.com 2000-01-10
## 6309 mark.e.taylor@enron.com 2000-01-10
## 6310 mark.e.taylor@enron.com 2000-01-07
## 6311 mark.e.taylor@enron.com 2000-01-07
## 6312 mark.e.taylor@enron.com 2000-01-07
## 6313 mark.e.taylor@enron.com 2000-01-07
## 6314 mark.e.taylor@enron.com 2000-01-07
## 6315 mark.e.taylor@enron.com 2000-01-07
## 6316 mark.e.taylor@enron.com 2000-01-07
## 6317 mark.e.taylor@enron.com 2000-01-06
## 6318 mark.e.taylor@enron.com 2000-01-06
## 6319 mark.e.taylor@enron.com 2000-01-06
## 6320 mark.e.taylor@enron.com 2000-01-06
## 6321 mark.e.taylor@enron.com 2000-01-06
## 6322 mark.e.taylor@enron.com 2000-01-06
## 6323 mark.e.taylor@enron.com 2000-01-06
## 6324 mark.e.taylor@enron.com 2000-01-06
## 6325 mark.e.taylor@enron.com 2000-01-06
## 6326 mark.e.taylor@enron.com 2000-01-05
## 6327 mark.e.taylor@enron.com 2000-01-05
## 6328 mark.e.taylor@enron.com 2000-01-04
## 6329 mark.e.taylor@enron.com 2000-01-04
## 6330 mark.e.taylor@enron.com 2000-01-04
## 6331 mark.e.taylor@enron.com 1999-12-30
## 6332 mark.e.taylor@enron.com 1999-12-30
## 6333 mark.e.taylor@enron.com 1999-12-29
## 6334 mark.e.taylor@enron.com 1999-12-29
## 6335 mark.e.taylor@enron.com 1999-12-29
## 6336 mark.e.taylor@enron.com 1999-12-28
## 6337 mark.e.taylor@enron.com 1999-12-27
## 6338 mark.e.taylor@enron.com 1999-12-27
## 6339 mark.e.taylor@enron.com 1999-12-27
## 6340 mark.e.taylor@enron.com 1999-12-27
## 6341 mark.e.taylor@enron.com 1999-12-27
## 6342 mark.e.taylor@enron.com 1999-12-22
## 6343 mark.e.taylor@enron.com 1999-12-22
## 6344 mark.e.taylor@enron.com 1999-12-22
## 6345 mark.e.taylor@enron.com 1999-12-22
## 6346 mark.e.taylor@enron.com 1999-12-22
## 6347 mark.e.taylor@enron.com 1999-12-22
## 6348 mark.e.taylor@enron.com 1999-12-22
## 6349 mark.e.taylor@enron.com 1999-12-22
## 6350 mark.e.taylor@enron.com 1999-12-22
## 6351 mark.e.taylor@enron.com 1999-12-22
## 6352 mark.e.taylor@enron.com 1999-12-21
## 6353 mark.e.taylor@enron.com 1999-12-21
## 6354 mark.e.taylor@enron.com 1999-12-21
## 6355 mark.e.taylor@enron.com 1999-12-21
## 6356 mark.e.taylor@enron.com 1999-12-21
## 6357 mark.e.taylor@enron.com 1999-12-21
## 6358 mark.e.taylor@enron.com 1999-12-21
## 6359 mark.e.taylor@enron.com 1999-12-21
## 6360 mark.e.taylor@enron.com 1999-12-21
## 6361 mark.e.taylor@enron.com 1999-12-21
## 6362 mark.e.taylor@enron.com 1999-12-21
## 6363 mark.e.taylor@enron.com 1999-12-21
## 6364 mark.e.taylor@enron.com 1999-12-21
## 6365 mark.e.taylor@enron.com 1999-12-21
## 6366 mark.e.taylor@enron.com 1999-12-21
## 6367 mark.e.taylor@enron.com 1999-12-21
## 6368 mark.e.taylor@enron.com 1999-12-21
## 6369 mark.e.taylor@enron.com 1999-12-20
## 6370 mark.e.taylor@enron.com 1999-12-20
## 6371 mark.e.taylor@enron.com 1999-12-20
## 6372 mark.e.taylor@enron.com 1999-12-20
## 6373 mark.e.taylor@enron.com 1999-12-20
## 6374 mark.e.taylor@enron.com 1999-12-20
## 6375 mark.e.taylor@enron.com 1999-12-20
## 6376 mark.e.taylor@enron.com 1999-12-20
## 6377 mark.e.taylor@enron.com 1999-12-17
## 6378 mark.e.taylor@enron.com 1999-12-17
## 6379 mark.e.taylor@enron.com 1999-12-17
## 6380 mark.e.taylor@enron.com 1999-12-17
## 6381 mark.e.taylor@enron.com 1999-12-17
## 6382 mark.e.taylor@enron.com 1999-12-16
## 6383 mark.e.taylor@enron.com 1999-12-16
## 6384 mark.e.taylor@enron.com 1999-12-16
## 6385 mark.e.taylor@enron.com 1999-12-16
## 6386 mark.e.taylor@enron.com 1999-12-16
## 6387 mark.e.taylor@enron.com 1999-12-15
## 6388 mark.e.taylor@enron.com 1999-12-15
## 6389 mark.e.taylor@enron.com 1999-12-15
## 6390 mark.e.taylor@enron.com 1999-12-15
## 6391 mark.e.taylor@enron.com 1999-12-14
## 6392 mark.e.taylor@enron.com 1999-12-14
## 6393 mark.e.taylor@enron.com 1999-12-14
## 6394 mark.e.taylor@enron.com 1999-12-14
## 6395 mark.e.taylor@enron.com 1999-12-14
## 6396 mark.e.taylor@enron.com 1999-12-14
## 6397 mark.e.taylor@enron.com 1999-12-14
## 6398 mark.e.taylor@enron.com 1999-12-14
## 6399 mark.e.taylor@enron.com 1999-12-14
## 6400 mark.e.taylor@enron.com 1999-12-14
## 6401 mark.e.taylor@enron.com 1999-12-14
## 6402 mark.e.taylor@enron.com 1999-12-14
## 6403 mark.e.taylor@enron.com 1999-12-14
## 6404 mark.e.taylor@enron.com 1999-12-14
## 6405 mark.e.taylor@enron.com 1999-12-14
## 6406 mark.e.taylor@enron.com 1999-12-14
## 6407 mark.e.taylor@enron.com 1999-12-14
## 6408 mark.e.taylor@enron.com 1999-12-14
## 6409 mark.e.taylor@enron.com 1999-12-14
## 6410 mark.e.taylor@enron.com 1999-12-14
## 6411 mark.e.taylor@enron.com 1999-12-14
## 6412 mark.e.taylor@enron.com 1999-12-14
## 6413 mark.e.taylor@enron.com 1999-12-14
## 6414 mark.e.taylor@enron.com 1999-12-14
## 6415 mark.e.taylor@enron.com 1999-12-14
## 6416 mark.e.taylor@enron.com 1999-12-14
## 6417 mark.e.taylor@enron.com 1999-12-14
## 6418 mark.e.taylor@enron.com 1999-12-14
## 6419 mark.e.taylor@enron.com 1999-12-14
## 6420 mark.e.taylor@enron.com 1999-12-14
## 6421 mark.e.taylor@enron.com 1999-12-14
## 6422 mark.e.taylor@enron.com 1999-12-13
## 6423 mark.e.taylor@enron.com 1999-12-10
## 6424 mark.e.taylor@enron.com 1999-12-10
## 6425 mark.e.taylor@enron.com 1999-12-09
## 6426 mark.e.taylor@enron.com 1999-12-09
## 6427 mark.e.taylor@enron.com 1999-12-08
## 6428 mark.e.taylor@enron.com 1999-12-08
## 6429 mark.e.taylor@enron.com 1999-12-08
## 6430 mark.e.taylor@enron.com 1999-12-08
## 6431 mark.e.taylor@enron.com 1999-12-08
## 6432 mark.e.taylor@enron.com 1999-12-07
## 6433 mark.e.taylor@enron.com 1999-12-06
## 6434 mark.e.taylor@enron.com 1999-12-06
## 6435 mark.e.taylor@enron.com 1999-12-03
## 6436 mark.e.taylor@enron.com 1999-12-03
## 6437 mark.e.taylor@enron.com 1999-12-03
## 6438 mark.e.taylor@enron.com 1999-12-03
## 6439 mark.e.taylor@enron.com 1999-12-03
## 6440 mark.e.taylor@enron.com 1999-12-03
## 6441 mark.e.taylor@enron.com 1999-12-03
## 6442 mark.e.taylor@enron.com 1999-12-02
## 6443 mark.e.taylor@enron.com 1999-12-02
## 6444 mark.e.taylor@enron.com 1999-12-02
## 6445 mark.e.taylor@enron.com 1999-12-02
## 6446 mark.e.taylor@enron.com 1999-12-01
## 6447 mark.e.taylor@enron.com 1999-11-30
## 6448 mark.e.taylor@enron.com 1999-11-30
## 6449 mark.e.taylor@enron.com 1999-11-30
## 6450 mark.e.taylor@enron.com 1999-11-30
## 6451 mark.e.taylor@enron.com 1999-11-30
## 6452 mark.e.taylor@enron.com 1999-11-30
## 6453 mark.e.taylor@enron.com 1999-11-29
## 6454 mark.e.taylor@enron.com 1999-11-29
## 6455 mark.e.taylor@enron.com 1999-11-29
## 6456 mark.e.taylor@enron.com 1999-11-29
## 6457 mark.e.taylor@enron.com 1999-11-29
## 6458 mark.e.taylor@enron.com 1999-11-29
## 6459 mark.e.taylor@enron.com 1999-11-29
## 6460 mark.e.taylor@enron.com 1999-11-29
## 6461 mark.e.taylor@enron.com 1999-11-29
## 6462 mark.e.taylor@enron.com 1999-11-29
## 6463 mark.e.taylor@enron.com 1999-11-29
## 6464 mark.e.taylor@enron.com 1999-11-29
## 6465 mark.e.taylor@enron.com 1999-11-29
## 6466 mark.e.taylor@enron.com 1999-11-29
## 6467 mark.e.taylor@enron.com 1999-11-29
## 6468 mark.e.taylor@enron.com 1999-11-29
## 6469 mark.e.taylor@enron.com 1999-11-29
## 6470 mark.e.taylor@enron.com 1999-11-29
## 6471 mark.e.taylor@enron.com 1999-11-29
## 6472 mark.e.taylor@enron.com 1999-11-29
## 6473 mark.e.taylor@enron.com 1999-11-19
## 6474 mark.e.taylor@enron.com 1999-11-19
## 6475 mark.e.taylor@enron.com 1999-11-19
## 6476 mark.e.taylor@enron.com 1999-11-19
## 6477 mark.e.taylor@enron.com 1999-11-19
## 6478 mark.e.taylor@enron.com 1999-11-19
## 6479 mark.e.taylor@enron.com 1999-11-19
## 6480 mark.e.taylor@enron.com 1999-11-19
## 6481 mark.e.taylor@enron.com 1999-11-19
## 6482 mark.e.taylor@enron.com 1999-11-19
## 6483 mark.e.taylor@enron.com 1999-11-19
## 6484 mark.e.taylor@enron.com 1999-11-19
## 6485 mark.e.taylor@enron.com 1999-11-19
## 6486 mark.e.taylor@enron.com 1999-11-19
## 6487 mark.e.taylor@enron.com 1999-11-19
## 6488 mark.e.taylor@enron.com 1999-11-19
## 6489 mark.e.taylor@enron.com 1999-11-19
## 6490 mark.e.taylor@enron.com 1999-11-19
## 6491 mark.e.taylor@enron.com 1999-11-19
## 6492 mark.e.taylor@enron.com 1999-11-19
## 6493 mark.e.taylor@enron.com 1999-11-19
## 6494 mark.e.taylor@enron.com 1999-11-19
## 6495 mark.e.taylor@enron.com 1999-11-19
## 6496 mark.e.taylor@enron.com 1999-11-19
## 6497 mark.e.taylor@enron.com 1999-11-19
## 6498 mark.e.taylor@enron.com 1999-11-19
## 6499 mark.e.taylor@enron.com 1999-11-19
## 6500 mark.e.taylor@enron.com 1999-11-19
## 6501 mark.e.taylor@enron.com 1999-11-19
## 6502 mark.e.taylor@enron.com 1999-11-18
## 6503 mark.e.taylor@enron.com 1999-11-18
## 6504 mark.e.taylor@enron.com 1999-11-18
## 6505 mark.e.taylor@enron.com 1999-11-18
## 6506 mark.e.taylor@enron.com 1999-11-18
## 6507 mark.e.taylor@enron.com 1999-11-18
## 6508 mark.e.taylor@enron.com 1999-11-18
## 6509 mark.e.taylor@enron.com 1999-11-18
## 6510 mark.e.taylor@enron.com 1999-11-18
## 6511 mark.e.taylor@enron.com 1999-11-18
## 6512 mark.e.taylor@enron.com 1999-11-18
## 6513 mark.e.taylor@enron.com 1999-11-18
## 6514 mark.e.taylor@enron.com 1999-11-18
## 6515 mark.e.taylor@enron.com 1999-11-17
## 6516 mark.e.taylor@enron.com 1999-11-17
## 6517 mark.e.taylor@enron.com 1999-11-17
## 6518 mark.e.taylor@enron.com 1999-11-17
## 6519 mark.e.taylor@enron.com 1999-11-17
## 6520 mark.e.taylor@enron.com 1999-11-17
## 6521 mark.e.taylor@enron.com 1999-11-17
## 6522 mark.e.taylor@enron.com 1999-11-17
## 6523 mark.e.taylor@enron.com 1999-11-17
## 6524 mark.e.taylor@enron.com 1999-11-17
## 6525 mark.e.taylor@enron.com 1999-11-17
## 6526 mark.e.taylor@enron.com 1999-11-17
## 6527 mark.e.taylor@enron.com 1999-11-17
## 6528 mark.e.taylor@enron.com 1999-11-17
## 6529 mark.e.taylor@enron.com 1999-11-17
## 6530 mark.e.taylor@enron.com 1999-11-17
## 6531 mark.e.taylor@enron.com 1999-11-17
## 6532 mark.e.taylor@enron.com 1999-11-17
## 6533 mark.e.taylor@enron.com 1999-11-17
## 6534 mark.e.taylor@enron.com 1999-11-17
## 6535 mark.e.taylor@enron.com 1999-11-16
## 6536 mark.e.taylor@enron.com 1999-11-16
## 6537 mark.e.taylor@enron.com 1999-11-16
## 6538 mark.e.taylor@enron.com 1999-11-16
## 6539 mark.e.taylor@enron.com 1999-11-16
## 6540 mark.e.taylor@enron.com 1999-11-16
## 6541 mark.e.taylor@enron.com 1999-11-16
## 6542 mark.e.taylor@enron.com 1999-11-15
## 6543 mark.e.taylor@enron.com 1999-11-15
## 6544 mark.e.taylor@enron.com 1999-11-08
## 6545 mark.e.taylor@enron.com 1999-11-08
## 6546 mark.e.taylor@enron.com 1999-11-08
## 6547 mark.e.taylor@enron.com 1999-11-08
## 6548 mark.e.taylor@enron.com 1999-11-08
## 6549 mark.e.taylor@enron.com 1999-11-08
## 6550 mark.e.taylor@enron.com 1999-11-08
## 6551 mark.e.taylor@enron.com 1999-11-08
## 6552 mark.e.taylor@enron.com 1999-11-08
## 6553 mark.e.taylor@enron.com 1999-11-08
## 6554 mark.e.taylor@enron.com 1999-11-05
## 6555 mark.e.taylor@enron.com 1999-11-05
## 6556 mark.e.taylor@enron.com 1999-11-05
## 6557 mark.e.taylor@enron.com 1999-11-05
## 6558 mark.e.taylor@enron.com 1999-11-05
## 6559 mark.e.taylor@enron.com 1999-11-05
## 6560 mark.e.taylor@enron.com 1999-11-05
## 6561 mark.e.taylor@enron.com 1999-11-05
## 6562 mark.e.taylor@enron.com 1999-11-05
## 6563 mark.e.taylor@enron.com 1999-11-05
## 6564 mark.e.taylor@enron.com 1999-11-05
## 6565 mark.e.taylor@enron.com 1999-11-05
## 6566 mark.e.taylor@enron.com 1999-11-04
## 6567 mark.e.taylor@enron.com 1999-11-04
## 6568 mark.e.taylor@enron.com 1999-11-04
## 6569 mark.e.taylor@enron.com 1999-11-04
## 6570 mark.e.taylor@enron.com 1999-11-04
## 6571 mark.e.taylor@enron.com 1999-11-04
## 6572 mark.e.taylor@enron.com 1999-11-04
## 6573 mark.e.taylor@enron.com 1999-11-04
## 6574 mark.e.taylor@enron.com 1999-11-04
## 6575 mark.e.taylor@enron.com 1999-11-04
## 6576 mark.e.taylor@enron.com 1999-11-03
## 6577 mark.e.taylor@enron.com 1999-11-03
## 6578 mark.e.taylor@enron.com 1999-11-03
## 6579 mark.e.taylor@enron.com 1999-11-03
## 6580 mark.e.taylor@enron.com 1999-11-03
## 6581 mark.e.taylor@enron.com 1999-11-03
## 6582 mark.e.taylor@enron.com 1999-11-03
## 6583 mark.e.taylor@enron.com 1999-11-03
## 6584 mark.e.taylor@enron.com 1999-11-03
## 6585 mark.e.taylor@enron.com 1999-11-01
## 6586 mark.e.taylor@enron.com 1999-11-01
## 6587 mark.e.taylor@enron.com 1999-11-01
## 6588 mark.e.taylor@enron.com 1999-11-01
## 6589 mark.e.taylor@enron.com 1999-10-28
## 6590 mark.e.taylor@enron.com 1999-10-28
## 6591 mark.e.taylor@enron.com 1999-10-28
## 6592 mark.e.taylor@enron.com 1999-10-28
## 6593 mark.e.taylor@enron.com 1999-10-28
## 6594 mark.e.taylor@enron.com 1999-10-27
## 6595 mark.e.taylor@enron.com 1999-10-27
## 6596 mark.e.taylor@enron.com 1999-10-27
## 6597 mark.e.taylor@enron.com 1999-10-27
## 6598 mark.e.taylor@enron.com 1999-10-27
## 6599 mark.e.taylor@enron.com 1999-10-27
## 6600 mark.e.taylor@enron.com 1999-10-27
## 6601 mark.e.taylor@enron.com 1999-10-27
## 6602 mark.e.taylor@enron.com 1999-10-27
## 6603 mark.e.taylor@enron.com 1999-10-27
## 6604 mark.e.taylor@enron.com 1999-10-27
## 6605 mark.e.taylor@enron.com 1999-10-27
## 6606 mark.e.taylor@enron.com 1999-10-27
## 6607 mark.e.taylor@enron.com 1999-10-27
## 6608 mark.e.taylor@enron.com 1999-10-27
## 6609 mark.e.taylor@enron.com 1999-10-27
## 6610 mark.e.taylor@enron.com 1999-10-27
## 6611 mark.e.taylor@enron.com 1999-10-27
## 6612 mark.e.taylor@enron.com 1999-10-27
## 6613 mark.e.taylor@enron.com 1999-10-27
## 6614 mark.e.taylor@enron.com 1999-10-27
## 6615 mark.e.taylor@enron.com 1999-10-27
## 6616 mark.e.taylor@enron.com 1999-10-27
## 6617 mark.e.taylor@enron.com 1999-10-27
## 6618 mark.e.taylor@enron.com 1999-10-27
## 6619 mark.e.taylor@enron.com 1999-10-27
## 6620 mark.e.taylor@enron.com 1999-10-27
## 6621 mark.e.taylor@enron.com 1999-10-27
## 6622 mark.e.taylor@enron.com 1999-10-27
## 6623 mark.e.taylor@enron.com 1999-10-27
## 6624 mark.e.taylor@enron.com 1999-10-27
## 6625 mark.e.taylor@enron.com 1999-10-27
## 6626 mark.e.taylor@enron.com 1999-10-27
## 6627 mark.e.taylor@enron.com 1999-10-27
## 6628 mark.e.taylor@enron.com 1999-10-27
## 6629 mark.e.taylor@enron.com 1999-10-27
## 6630 mark.e.taylor@enron.com 1999-10-27
## 6631 mark.e.taylor@enron.com 1999-10-27
## 6632 mark.e.taylor@enron.com 1999-10-27
## 6633 mark.e.taylor@enron.com 1999-10-27
## 6634 mark.e.taylor@enron.com 1999-10-27
## 6635 mark.e.taylor@enron.com 1999-10-27
## 6636 mark.e.taylor@enron.com 1999-10-27
## 6637 mark.e.taylor@enron.com 1999-10-27
## 6638 mark.e.taylor@enron.com 1999-10-27
## 6639 mark.e.taylor@enron.com 1999-10-27
## 6640 mark.e.taylor@enron.com 1999-10-27
## 6641 mark.e.taylor@enron.com 1999-10-27
## 6642 mark.e.taylor@enron.com 1999-10-27
## 6643 mark.e.taylor@enron.com 1999-10-27
## 6644 mark.e.taylor@enron.com 1999-10-27
## 6645 mark.e.taylor@enron.com 1999-10-27
## 6646 mark.e.taylor@enron.com 1999-10-27
## 6647 mark.e.taylor@enron.com 1999-10-27
## 6648 mark.e.taylor@enron.com 1999-10-27
## 6649 mark.e.taylor@enron.com 1999-10-27
## 6650 mark.e.taylor@enron.com 1999-10-27
## 6651 mark.e.taylor@enron.com 1999-10-27
## 6652 mark.e.taylor@enron.com 1999-10-27
## 6653 mark.e.taylor@enron.com 1999-10-27
## 6654 mark.e.taylor@enron.com 1999-10-27
## 6655 mark.e.taylor@enron.com 1999-10-27
## 6656 mark.e.taylor@enron.com 1999-10-27
## 6657 mark.e.taylor@enron.com 1999-10-27
## 6658 mark.e.taylor@enron.com 1999-10-27
## 6659 mark.e.taylor@enron.com 1999-10-27
## 6660 mark.e.taylor@enron.com 1999-10-27
## 6661 mark.e.taylor@enron.com 1999-10-27
## 6662 mark.e.taylor@enron.com 1999-10-27
## 6663 mark.e.taylor@enron.com 1999-10-27
## 6664 mark.e.taylor@enron.com 1999-10-27
## 6665 mark.e.taylor@enron.com 1999-10-27
## 6666 mark.e.taylor@enron.com 1999-10-27
## 6667 mark.e.taylor@enron.com 1999-10-27
## 6668 mark.e.taylor@enron.com 1999-10-27
## 6669 mark.e.taylor@enron.com 1999-10-27
## 6670 mark.e.taylor@enron.com 1999-10-27
## 6671 mark.e.taylor@enron.com 1999-10-27
## 6672 mark.e.taylor@enron.com 1999-10-27
## 6673 mark.e.taylor@enron.com 1999-10-27
## 6674 mark.e.taylor@enron.com 1999-10-27
## 6675 mark.e.taylor@enron.com 1999-10-27
## 6676 mark.e.taylor@enron.com 1999-10-27
## 6677 mark.e.taylor@enron.com 1999-10-27
## 6678 mark.e.taylor@enron.com 1999-10-27
## 6679 mark.e.taylor@enron.com 1999-10-26
## 6680 mark.e.taylor@enron.com 1999-10-26
## 6681 mark.e.taylor@enron.com 1999-10-26
## 6682 mark.e.taylor@enron.com 1999-10-26
## 6683 mark.e.taylor@enron.com 1999-10-26
## 6684 mark.e.taylor@enron.com 1999-10-25
## 6685 mark.e.taylor@enron.com 1999-10-25
## 6686 mark.e.taylor@enron.com 1999-10-25
## 6687 mark.e.taylor@enron.com 1999-10-25
## 6688 mark.e.taylor@enron.com 1999-10-25
## 6689 mark.e.taylor@enron.com 1999-10-25
## 6690 mark.e.taylor@enron.com 1999-10-25
## 6691 mark.e.taylor@enron.com 1999-10-25
## 6692 mark.e.taylor@enron.com 1999-10-23
## 6693 mark.e.taylor@enron.com 1999-10-23
## 6694 mark.e.taylor@enron.com 1999-10-23
## 6695 mark.e.taylor@enron.com 1999-10-23
## 6696 mark.e.taylor@enron.com 1999-10-23
## 6697 mark.e.taylor@enron.com 1999-10-23
## 6698 mark.e.taylor@enron.com 1999-10-23
## 6699 mark.e.taylor@enron.com 1999-10-23
## 6700 mark.e.taylor@enron.com 1999-10-23
## 6701 mark.e.taylor@enron.com 1999-10-23
## 6702 mark.e.taylor@enron.com 1999-10-23
## 6703 mark.e.taylor@enron.com 1999-10-23
## 6704 mark.e.taylor@enron.com 1999-10-23
## 6705 mark.e.taylor@enron.com 1999-10-23
## 6706 mark.e.taylor@enron.com 1999-10-23
## 6707 mark.e.taylor@enron.com 1999-10-23
## 6708 mark.e.taylor@enron.com 1999-10-22
## 6709 mark.e.taylor@enron.com 1999-10-22
## 6710 mark.e.taylor@enron.com 1999-10-22
## 6711 mark.e.taylor@enron.com 1999-10-22
## 6712 mark.e.taylor@enron.com 1999-10-22
## 6713 mark.e.taylor@enron.com 1999-10-22
## 6714 mark.e.taylor@enron.com 1999-10-22
## 6715 mark.e.taylor@enron.com 1999-10-22
## 6716 mark.e.taylor@enron.com 1999-10-22
## 6717 mark.e.taylor@enron.com 1999-10-21
## 6718 mark.e.taylor@enron.com 1999-10-21
## 6719 mark.e.taylor@enron.com 1999-10-21
## 6720 mark.e.taylor@enron.com 1999-10-21
## 6721 mark.e.taylor@enron.com 1999-10-21
## 6722 mark.e.taylor@enron.com 1999-10-21
## 6723 mark.e.taylor@enron.com 1999-10-21
## 6724 mark.e.taylor@enron.com 1999-10-21
## 6725 mark.e.taylor@enron.com 1999-10-21
## 6726 mark.e.taylor@enron.com 1999-10-21
## 6727 mark.e.taylor@enron.com 1999-10-21
## 6728 mark.e.taylor@enron.com 1999-10-21
## 6729 mark.e.taylor@enron.com 1999-10-21
## 6730 mark.e.taylor@enron.com 1999-10-20
## 6731 mark.e.taylor@enron.com 1999-10-20
## 6732 mark.e.taylor@enron.com 1999-10-20
## 6733 mark.e.taylor@enron.com 1999-10-20
## 6734 mark.e.taylor@enron.com 1999-10-20
## 6735 mark.e.taylor@enron.com 1999-10-20
## 6736 mark.e.taylor@enron.com 1999-10-20
## 6737 mark.e.taylor@enron.com 1999-10-20
## 6738 mark.e.taylor@enron.com 1999-10-20
## 6739 mark.e.taylor@enron.com 1999-10-20
## 6740 mark.e.taylor@enron.com 1999-10-20
## 6741 mark.e.taylor@enron.com 1999-10-20
## 6742 mark.e.taylor@enron.com 1999-10-20
## 6743 mark.e.taylor@enron.com 1999-10-20
## 6744 mark.e.taylor@enron.com 1999-10-20
## 6745 mark.e.taylor@enron.com 1999-10-20
## 6746 mark.e.taylor@enron.com 1999-10-20
## 6747 mark.e.taylor@enron.com 1999-10-20
## 6748 mark.e.taylor@enron.com 1999-10-20
## 6749 mark.e.taylor@enron.com 1999-10-20
## 6750 mark.e.taylor@enron.com 1999-10-20
## 6751 mark.e.taylor@enron.com 1999-10-20
## 6752 mark.e.taylor@enron.com 1999-10-19
## 6753 mark.e.taylor@enron.com 1999-10-19
## 6754 mark.e.taylor@enron.com 1999-10-19
## 6755 mark.e.taylor@enron.com 1999-10-18
## 6756 mark.e.taylor@enron.com 1999-10-18
## 6757 mark.e.taylor@enron.com 1999-10-18
## 6758 mark.e.taylor@enron.com 1999-10-18
## 6759 mark.e.taylor@enron.com 1999-10-18
## 6760 mark.e.taylor@enron.com 1999-10-18
## 6761 mark.e.taylor@enron.com 1999-10-18
## 6762 mark.e.taylor@enron.com 1999-10-18
## 6763 mark.e.taylor@enron.com 1999-10-18
## 6764 mark.e.taylor@enron.com 1999-10-18
## 6765 mark.e.taylor@enron.com 1999-10-15
## 6766 mark.e.taylor@enron.com 1999-10-15
## 6767 mark.e.taylor@enron.com 1999-10-15
## 6768 mark.e.taylor@enron.com 1999-10-15
## 6769 mark.e.taylor@enron.com 1999-10-15
## 6770 mark.e.taylor@enron.com 1999-10-14
## 6771 mark.e.taylor@enron.com 1999-10-14
## 6772 mark.e.taylor@enron.com 1999-10-13
## 6773 mark.e.taylor@enron.com 1999-10-13
## 6774 mark.e.taylor@enron.com 1999-10-12
## 6775 mark.e.taylor@enron.com 1999-10-12
## 6776 mark.e.taylor@enron.com 1999-10-12
## 6777 mark.e.taylor@enron.com 1999-10-11
## 6778 mark.e.taylor@enron.com 1999-10-11
## 6779 mark.e.taylor@enron.com 1999-10-11
## 6780 mark.e.taylor@enron.com 1999-10-11
## 6781 mark.e.taylor@enron.com 1999-10-08
## 6782 mark.e.taylor@enron.com 1999-10-08
## 6783 mark.e.taylor@enron.com 1999-10-08
## 6784 mark.e.taylor@enron.com 1999-10-08
## 6785 mark.e.taylor@enron.com 1999-10-08
## 6786 mark.e.taylor@enron.com 1999-10-08
## 6787 mark.e.taylor@enron.com 1999-10-08
## 6788 mark.e.taylor@enron.com 1999-10-08
## 6789 mark.e.taylor@enron.com 1999-10-08
## 6790 mark.e.taylor@enron.com 1999-10-08
## 6791 mark.e.taylor@enron.com 1999-10-07
## 6792 mark.e.taylor@enron.com 1999-10-07
## 6793 mark.e.taylor@enron.com 1999-10-07
## 6794 mark.e.taylor@enron.com 1999-10-07
## 6795 mark.e.taylor@enron.com 1999-10-07
## 6796 mark.e.taylor@enron.com 1999-10-07
## 6797 mark.e.taylor@enron.com 1999-10-07
## 6798 mark.e.taylor@enron.com 1999-10-07
## 6799 mark.e.taylor@enron.com 1999-10-07
## 6800 mark.e.taylor@enron.com 1999-10-07
## 6801 mark.e.taylor@enron.com 1999-10-07
## 6802 mark.e.taylor@enron.com 1999-10-07
## 6803 mark.e.taylor@enron.com 1999-10-07
## 6804 mark.e.taylor@enron.com 1999-10-07
## 6805 mark.e.taylor@enron.com 1999-10-07
## 6806 mark.e.taylor@enron.com 1999-10-07
## 6807 mark.e.taylor@enron.com 1999-10-07
## 6808 mark.e.taylor@enron.com 1999-10-07
## 6809 mark.e.taylor@enron.com 1999-10-07
## 6810 mark.e.taylor@enron.com 1999-10-05
## 6811 mark.e.taylor@enron.com 1999-10-05
## 6812 mark.e.taylor@enron.com 1999-10-05
## 6813 mark.e.taylor@enron.com 1999-10-05
## 6814 mark.e.taylor@enron.com 1999-10-05
## 6815 mark.e.taylor@enron.com 1999-10-05
## 6816 mark.e.taylor@enron.com 1999-10-05
## 6817 mark.e.taylor@enron.com 1999-10-05
## 6818 mark.e.taylor@enron.com 1999-10-05
## 6819 mark.e.taylor@enron.com 1999-10-05
## 6820 mark.e.taylor@enron.com 1999-10-05
## 6821 mark.e.taylor@enron.com 1999-10-05
## 6822 mark.e.taylor@enron.com 1999-10-05
## 6823 mark.e.taylor@enron.com 1999-10-05
## 6824 mark.e.taylor@enron.com 1999-10-05
## 6825 mark.e.taylor@enron.com 1999-10-05
## 6826 mark.e.taylor@enron.com 1999-10-05
## 6827 mark.e.taylor@enron.com 1999-10-05
## 6828 mark.e.taylor@enron.com 1999-10-05
## 6829 mark.e.taylor@enron.com 1999-10-04
## 6830 mark.e.taylor@enron.com 1999-10-04
## 6831 mark.e.taylor@enron.com 1999-10-04
## 6832 mark.e.taylor@enron.com 1999-10-04
## 6833 mark.e.taylor@enron.com 1999-10-04
## 6834 mark.e.taylor@enron.com 1999-10-04
## 6835 mark.e.taylor@enron.com 1999-10-04
## 6836 mark.e.taylor@enron.com 1999-10-04
## 6837 mark.e.taylor@enron.com 1999-10-04
## 6838 mark.e.taylor@enron.com 1999-10-04
## 6839 mark.e.taylor@enron.com 1999-10-04
## 6840 mark.e.taylor@enron.com 1999-10-04
## 6841 mark.e.taylor@enron.com 1999-10-04
## 6842 mark.e.taylor@enron.com 1999-10-04
## 6843 mark.e.taylor@enron.com 1999-10-04
## 6844 mark.e.taylor@enron.com 1999-10-01
## 6845 mark.e.taylor@enron.com 1999-10-01
## 6846 mark.e.taylor@enron.com 1999-10-01
## 6847 mark.e.taylor@enron.com 1999-10-01
## 6848 mark.e.taylor@enron.com 1999-10-01
## 6849 mark.e.taylor@enron.com 1999-10-01
## 6850 mark.e.taylor@enron.com 1999-09-30
## 6851 mark.e.taylor@enron.com 1999-09-30
## 6852 mark.e.taylor@enron.com 1999-09-30
## 6853 mark.e.taylor@enron.com 1999-09-30
## 6854 mark.e.taylor@enron.com 1999-09-30
## 6855 mark.e.taylor@enron.com 1999-09-30
## 6856 mark.e.taylor@enron.com 1999-09-30
## 6857 mark.e.taylor@enron.com 1999-09-30
## 6858 mark.e.taylor@enron.com 1999-09-30
## 6859 mark.e.taylor@enron.com 1999-09-30
## 6860 mark.e.taylor@enron.com 1999-09-30
## 6861 mark.e.taylor@enron.com 1999-09-29
## 6862 mark.e.taylor@enron.com 1999-09-28
## 6863 mark.e.taylor@enron.com 1999-09-28
## 6864 mark.e.taylor@enron.com 1999-09-28
## 6865 mark.e.taylor@enron.com 1999-09-28
## 6866 mark.e.taylor@enron.com 1999-09-28
## 6867 mark.e.taylor@enron.com 1999-09-28
## 6868 mark.e.taylor@enron.com 1999-09-28
## 6869 mark.e.taylor@enron.com 1999-09-28
## 6870 mark.e.taylor@enron.com 1999-09-28
## 6871 mark.e.taylor@enron.com 1999-09-28
## 6872 mark.e.taylor@enron.com 1999-09-28
## 6873 mark.e.taylor@enron.com 1999-09-27
## 6874 mark.e.taylor@enron.com 1999-09-27
## 6875 mark.e.taylor@enron.com 1999-09-27
## 6876 mark.e.taylor@enron.com 1999-09-27
## 6877 mark.e.taylor@enron.com 1999-09-27
## 6878 mark.e.taylor@enron.com 1999-09-27
## 6879 mark.e.taylor@enron.com 1999-09-27
## 6880 mark.e.taylor@enron.com 1999-09-27
## 6881 mark.e.taylor@enron.com 1999-09-27
## 6882 mark.e.taylor@enron.com 1999-09-27
## 6883 mark.e.taylor@enron.com 1999-09-27
## 6884 mark.e.taylor@enron.com 1999-09-27
## 6885 mark.e.taylor@enron.com 1999-09-27
## 6886 mark.e.taylor@enron.com 1999-09-27
## 6887 mark.e.taylor@enron.com 1999-09-27
## 6888 mark.e.taylor@enron.com 1999-09-27
## 6889 mark.e.taylor@enron.com 1999-09-27
## 6890 mark.e.taylor@enron.com 1999-09-27
## 6891 mark.e.taylor@enron.com 1999-09-27
## 6892 mark.e.taylor@enron.com 1999-09-27
## 6893 mark.e.taylor@enron.com 1999-09-27
## 6894 mark.e.taylor@enron.com 1999-09-27
## 6895 mark.e.taylor@enron.com 1999-09-27
## 6896 mark.e.taylor@enron.com 1999-09-27
## 6897 mark.e.taylor@enron.com 1999-09-27
## 6898 mark.e.taylor@enron.com 1999-09-24
## 6899 mark.e.taylor@enron.com 1999-09-24
## 6900 mark.e.taylor@enron.com 1999-09-23
## 6901 mark.e.taylor@enron.com 1999-09-23
## 6902 mark.e.taylor@enron.com 1999-09-23
## 6903 mark.e.taylor@enron.com 1999-09-23
## 6904 mark.e.taylor@enron.com 1999-09-23
## 6905 mark.e.taylor@enron.com 1999-09-23
## 6906 mark.e.taylor@enron.com 1999-09-23
## 6907 mark.e.taylor@enron.com 1999-09-23
## 6908 mark.e.taylor@enron.com 1999-09-23
## 6909 mark.e.taylor@enron.com 1999-09-23
## 6910 mark.e.taylor@enron.com 1999-09-23
## 6911 mark.e.taylor@enron.com 1999-09-22
## 6912 mark.e.taylor@enron.com 1999-09-22
## 6913 mark.e.taylor@enron.com 1999-09-22
## 6914 mark.e.taylor@enron.com 1999-09-22
## 6915 mark.e.taylor@enron.com 1999-09-22
## 6916 mark.e.taylor@enron.com 1999-09-16
## 6917 mark.e.taylor@enron.com 1999-09-16
## 6918 mark.e.taylor@enron.com 1999-09-16
## 6919 mark.e.taylor@enron.com 1999-09-16
## 6920 mark.e.taylor@enron.com 1999-09-16
## 6921 mark.e.taylor@enron.com 1999-09-16
## 6922 mark.e.taylor@enron.com 1999-09-16
## 6923 mark.e.taylor@enron.com 1999-09-16
## 6924 mark.e.taylor@enron.com 1999-09-16
## 6925 mark.e.taylor@enron.com 1999-09-16
## 6926 mark.e.taylor@enron.com 1999-09-16
## 6927 mark.e.taylor@enron.com 1999-09-16
## 6928 mark.e.taylor@enron.com 1999-09-14
## 6929 mark.e.taylor@enron.com 1999-09-14
## 6930 mark.e.taylor@enron.com 1999-09-14
## 6931 mark.e.taylor@enron.com 1999-09-14
## 6932 mark.e.taylor@enron.com 1999-09-14
## 6933 mark.e.taylor@enron.com 1999-09-14
## 6934 mark.e.taylor@enron.com 1999-09-14
## 6935 mark.e.taylor@enron.com 1999-09-14
## 6936 mark.e.taylor@enron.com 1999-09-14
## 6937 mark.e.taylor@enron.com 1999-09-14
## 6938 mark.e.taylor@enron.com 1999-09-14
## 6939 mark.e.taylor@enron.com 1999-09-14
## 6940 mark.e.taylor@enron.com 1999-09-14
## 6941 mark.e.taylor@enron.com 1999-09-14
## 6942 mark.e.taylor@enron.com 1999-09-14
## 6943 mark.e.taylor@enron.com 1999-09-14
## 6944 mark.e.taylor@enron.com 1999-09-14
## 6945 mark.e.taylor@enron.com 1999-09-14
## 6946 mark.e.taylor@enron.com 1999-09-14
## 6947 mark.e.taylor@enron.com 1999-09-14
## 6948 mark.e.taylor@enron.com 1999-09-14
## 6949 mark.e.taylor@enron.com 1999-09-14
## 6950 mark.e.taylor@enron.com 1999-09-14
## 6951 mark.e.taylor@enron.com 1999-09-14
## 6952 mark.e.taylor@enron.com 1999-09-14
## 6953 mark.e.taylor@enron.com 1999-09-14
## 6954 mark.e.taylor@enron.com 1999-09-14
## 6955 mark.e.taylor@enron.com 1999-09-14
## 6956 mark.e.taylor@enron.com 1999-09-13
## 6957 mark.e.taylor@enron.com 1999-09-13
## 6958 mark.e.taylor@enron.com 1999-09-13
## 6959 mark.e.taylor@enron.com 1999-08-25
## 6960 mark.e.taylor@enron.com 1999-08-25
## 6961 mark.e.taylor@enron.com 1999-08-25
## 6962 mark.e.taylor@enron.com 1999-08-25
## 6963 mark.e.taylor@enron.com 1999-08-25
## 6964 mark.e.taylor@enron.com 1999-08-25
## 6965 mark.e.taylor@enron.com 1999-08-25
## 6966 mark.e.taylor@enron.com 1999-08-25
## 6967 mark.e.taylor@enron.com 1999-08-25
## 6968 mark.e.taylor@enron.com 1999-08-25
## 6969 mark.e.taylor@enron.com 1999-08-25
## 6970 mark.e.taylor@enron.com 1999-08-25
## 6971 mark.e.taylor@enron.com 1999-08-25
## 6972 mark.e.taylor@enron.com 1999-08-25
## 6973 mark.e.taylor@enron.com 1999-08-25
## 6974 mark.e.taylor@enron.com 1999-08-25
## 6975 mark.e.taylor@enron.com 1999-08-25
## 6976 mark.e.taylor@enron.com 1999-08-25
## 6977 mark.e.taylor@enron.com 1999-08-25
## 6978 mark.e.taylor@enron.com 1999-08-25
## 6979 mark.e.taylor@enron.com 1999-08-25
## 6980 mark.e.taylor@enron.com 1999-08-25
## 6981 mark.e.taylor@enron.com 1999-08-25
## 6982 mark.e.taylor@enron.com 1999-08-25
## 6983 mark.e.taylor@enron.com 1999-08-25
## 6984 mark.e.taylor@enron.com 1999-08-25
## 6985 mark.e.taylor@enron.com 1999-08-25
## 6986 mark.e.taylor@enron.com 1999-08-25
## 6987 mark.e.taylor@enron.com 1999-08-25
## 6988 mark.e.taylor@enron.com 1999-08-25
## 6989 mark.e.taylor@enron.com 1999-08-25
## 6990 mark.e.taylor@enron.com 1999-08-25
## 6991 mark.e.taylor@enron.com 1999-08-25
## 6992 mark.e.taylor@enron.com 1999-08-24
## 6993 mark.e.taylor@enron.com 1999-08-24
## 6994 mark.e.taylor@enron.com 1999-08-24
## 6995 mark.e.taylor@enron.com 1999-08-24
## 6996 mark.e.taylor@enron.com 1999-08-24
## 6997 mark.e.taylor@enron.com 1999-08-24
## 6998 mark.e.taylor@enron.com 1999-08-24
## 6999 mark.e.taylor@enron.com 1999-08-24
## 7000 mark.e.taylor@enron.com 1999-08-24
## 7001 mark.e.taylor@enron.com 1999-08-24
## 7002 mark.e.taylor@enron.com 1999-08-24
## 7003 mark.e.taylor@enron.com 1999-08-23
## 7004 mark.e.taylor@enron.com 1999-08-23
## 7005 mark.e.taylor@enron.com 1999-08-23
## 7006 mark.e.taylor@enron.com 1999-08-23
## 7007 mark.e.taylor@enron.com 1999-08-23
## 7008 mark.e.taylor@enron.com 1999-08-23
## 7009 mark.e.taylor@enron.com 1999-08-23
## 7010 mark.e.taylor@enron.com 1999-08-23
## 7011 mark.e.taylor@enron.com 1999-08-23
## 7012 mark.e.taylor@enron.com 1999-08-17
## 7013 mark.e.taylor@enron.com 1999-08-17
## 7014 mark.e.taylor@enron.com 1999-08-17
## 7015 mark.e.taylor@enron.com 1999-08-17
## 7016 mark.e.taylor@enron.com 1999-08-16
## 7017 mark.e.taylor@enron.com 1999-08-16
## 7018 mark.e.taylor@enron.com 1999-08-16
## 7019 mark.e.taylor@enron.com 1999-08-16
## 7020 mark.e.taylor@enron.com 1999-08-16
## 7021 mark.e.taylor@enron.com 1999-08-16
## 7022 mark.e.taylor@enron.com 1999-08-16
## 7023 mark.e.taylor@enron.com 1999-08-15
## 7024 mark.e.taylor@enron.com 1999-08-15
## 7025 mark.e.taylor@enron.com 1999-08-15
## 7026 mark.e.taylor@enron.com 1999-08-15
## 7027 mark.e.taylor@enron.com 1999-08-15
## 7028 mark.e.taylor@enron.com 1999-08-15
## 7029 mark.e.taylor@enron.com 1999-08-15
## 7030 mark.e.taylor@enron.com 1999-08-15
## 7031 mark.e.taylor@enron.com 1999-08-15
## 7032 mark.e.taylor@enron.com 1999-08-15
## 7033 mark.e.taylor@enron.com 1999-08-15
## 7034 mark.e.taylor@enron.com 1999-08-15
## 7035 mark.e.taylor@enron.com 1999-08-15
## 7036 mark.e.taylor@enron.com 1999-08-15
## 7037 mark.e.taylor@enron.com 1999-08-15
## 7038 mark.e.taylor@enron.com 1999-08-15
## 7039 mark.e.taylor@enron.com 1999-08-15
## 7040 mark.e.taylor@enron.com 1999-08-15
## 7041 mark.e.taylor@enron.com 1999-08-15
## 7042 mark.e.taylor@enron.com 1999-08-15
## 7043 mark.e.taylor@enron.com 1999-08-14
## 7044 mark.e.taylor@enron.com 1999-08-13
## 7045 mark.e.taylor@enron.com 1999-08-13
## 7046 mark.e.taylor@enron.com 1999-08-13
## 7047 mark.e.taylor@enron.com 1999-08-13
## 7048 mark.e.taylor@enron.com 1999-08-13
## 7049 mark.e.taylor@enron.com 1999-08-13
## 7050 mark.e.taylor@enron.com 1999-08-13
## 7051 mark.e.taylor@enron.com 1999-08-13
## 7052 mark.e.taylor@enron.com 1999-08-13
## 7053 mark.e.taylor@enron.com 1999-08-13
## 7054 mark.e.taylor@enron.com 1999-08-13
## 7055 mark.e.taylor@enron.com 1999-08-13
## 7056 mark.e.taylor@enron.com 1999-08-13
## 7057 mark.e.taylor@enron.com 1999-08-13
## 7058 mark.e.taylor@enron.com 1999-08-13
## 7059 mark.e.taylor@enron.com 1999-08-13
## 7060 mark.e.taylor@enron.com 1999-08-13
## 7061 mark.e.taylor@enron.com 1999-08-13
## 7062 mark.e.taylor@enron.com 1999-08-13
## 7063 mark.e.taylor@enron.com 1999-08-13
## 7064 mark.e.taylor@enron.com 1999-08-12
## 7065 mark.e.taylor@enron.com 1999-08-12
## 7066 mark.e.taylor@enron.com 1999-08-12
## 7067 mark.e.taylor@enron.com 1999-08-10
## 7068 mark.e.taylor@enron.com 1999-08-09
## 7069 mark.e.taylor@enron.com 1999-08-06
## 7070 mark.e.taylor@enron.com 1999-08-06
## 7071 mark.e.taylor@enron.com 1999-08-06
## 7072 mark.e.taylor@enron.com 1999-08-06
## 7073 mark.e.taylor@enron.com 1999-08-05
## 7074 mark.e.taylor@enron.com 1999-08-05
## 7075 mark.e.taylor@enron.com 1999-08-05
## 7076 mark.e.taylor@enron.com 1999-08-05
## 7077 mark.e.taylor@enron.com 1999-08-05
## 7078 mark.e.taylor@enron.com 1999-08-05
## 7079 mark.e.taylor@enron.com 1999-08-05
## 7080 mark.e.taylor@enron.com 1999-08-05
## 7081 mark.e.taylor@enron.com 1999-08-05
## 7082 mark.e.taylor@enron.com 1999-08-05
## 7083 mark.e.taylor@enron.com 1999-08-05
## 7084 mark.e.taylor@enron.com 1999-08-05
## 7085 mark.e.taylor@enron.com 1999-08-05
## 7086 mark.e.taylor@enron.com 1999-08-05
## 7087 mark.e.taylor@enron.com 1999-08-05
## 7088 mark.e.taylor@enron.com 1999-08-05
## 7089 mark.e.taylor@enron.com 1999-08-05
## 7090 mark.e.taylor@enron.com 1999-08-04
## 7091 mark.e.taylor@enron.com 1999-08-04
## 7092 mark.e.taylor@enron.com 1999-08-04
## 7093 mark.e.taylor@enron.com 1999-08-04
## 7094 mark.e.taylor@enron.com 1999-08-04
## 7095 mark.e.taylor@enron.com 1999-08-04
## 7096 mark.e.taylor@enron.com 1999-08-04
## 7097 mark.e.taylor@enron.com 1999-08-04
## 7098 mark.e.taylor@enron.com 1999-08-04
## 7099 mark.e.taylor@enron.com 1999-08-04
## 7100 mark.e.taylor@enron.com 1999-08-04
## 7101 mark.e.taylor@enron.com 1999-08-03
## 7102 mark.e.taylor@enron.com 1999-08-03
## 7103 mark.e.taylor@enron.com 1999-08-03
## 7104 mark.e.taylor@enron.com 1999-08-03
## 7105 mark.e.taylor@enron.com 1999-08-03
## 7106 mark.e.taylor@enron.com 1999-08-03
## 7107 mark.e.taylor@enron.com 1999-08-03
## 7108 mark.e.taylor@enron.com 1999-08-03
## 7109 mark.e.taylor@enron.com 1999-08-02
## 7110 mark.e.taylor@enron.com 1999-08-02
## 7111 mark.e.taylor@enron.com 1999-08-02
## 7112 mark.e.taylor@enron.com 1999-08-02
## 7113 mark.e.taylor@enron.com 1999-08-02
## 7114 mark.e.taylor@enron.com 1999-08-02
## 7115 mark.e.taylor@enron.com 1999-08-02
## 7116 mark.e.taylor@enron.com 1999-08-02
## 7117 mark.e.taylor@enron.com 1999-08-02
## 7118 mark.e.taylor@enron.com 1999-08-02
## 7119 mark.e.taylor@enron.com 1999-08-02
## 7120 mark.e.taylor@enron.com 1999-08-02
## 7121 mark.e.taylor@enron.com 1999-08-02
## 7122 mark.e.taylor@enron.com 1999-08-02
## 7123 mark.e.taylor@enron.com 1999-08-02
## 7124 mark.e.taylor@enron.com 1999-08-02
## 7125 mark.e.taylor@enron.com 1999-08-02
## 7126 mark.e.taylor@enron.com 1999-08-02
## 7127 mark.e.taylor@enron.com 1999-07-30
## 7128 mark.e.taylor@enron.com 1999-07-30
## 7129 mark.e.taylor@enron.com 1999-07-30
## 7130 mark.e.taylor@enron.com 1999-07-30
## 7131 mark.e.taylor@enron.com 1999-07-30
## 7132 mark.e.taylor@enron.com 1999-07-30
## 7133 mark.e.taylor@enron.com 1999-07-30
## 7134 mark.e.taylor@enron.com 1999-07-30
## 7135 mark.e.taylor@enron.com 1999-07-30
## 7136 mark.e.taylor@enron.com 1999-07-30
## 7137 mark.e.taylor@enron.com 1999-07-30
## 7138 mark.e.taylor@enron.com 1999-07-30
## 7139 mark.e.taylor@enron.com 1999-07-29
## 7140 mark.e.taylor@enron.com 1999-07-29
## 7141 mark.e.taylor@enron.com 1999-07-29
## 7142 mark.e.taylor@enron.com 1999-07-29
## 7143 mark.e.taylor@enron.com 1999-07-29
## 7144 mark.e.taylor@enron.com 1999-07-29
## 7145 mark.e.taylor@enron.com 1999-07-29
## 7146 mark.e.taylor@enron.com 1999-07-29
## 7147 mark.e.taylor@enron.com 1999-07-29
## 7148 mark.e.taylor@enron.com 1999-07-28
## 7149 mark.e.taylor@enron.com 1999-07-28
## 7150 mark.e.taylor@enron.com 1999-07-28
## 7151 mark.e.taylor@enron.com 1999-07-28
## 7152 mark.e.taylor@enron.com 1999-07-28
## 7153 mark.e.taylor@enron.com 1999-07-28
## 7154 mark.e.taylor@enron.com 1999-07-28
## 7155 mark.e.taylor@enron.com 1999-07-28
## 7156 mark.e.taylor@enron.com 1999-07-28
## 7157 mark.e.taylor@enron.com 1999-07-26
## 7158 mark.e.taylor@enron.com 1999-07-26
## 7159 mark.e.taylor@enron.com 1999-07-26
## 7160 mark.e.taylor@enron.com 1999-07-26
## 7161 mark.e.taylor@enron.com 1999-07-26
## 7162 mark.e.taylor@enron.com 1999-07-23
## 7163 mark.e.taylor@enron.com 1999-07-23
## 7164 mark.e.taylor@enron.com 1999-07-23
## 7165 mark.e.taylor@enron.com 1999-07-23
## 7166 mark.e.taylor@enron.com 1999-07-23
## 7167 mark.e.taylor@enron.com 1999-07-22
## 7168 mark.e.taylor@enron.com 1999-07-22
## 7169 mark.e.taylor@enron.com 1999-07-22
## 7170 mark.e.taylor@enron.com 1999-07-22
## 7171 mark.e.taylor@enron.com 1999-07-22
## 7172 mark.e.taylor@enron.com 1999-07-22
## 7173 mark.e.taylor@enron.com 1999-07-22
## 7174 mark.e.taylor@enron.com 1999-07-22
## 7175 mark.e.taylor@enron.com 1999-07-22
## 7176 mark.e.taylor@enron.com 1999-07-22
## 7177 mark.e.taylor@enron.com 1999-07-22
## 7178 mark.e.taylor@enron.com 1999-07-22
## 7179 mark.e.taylor@enron.com 1999-07-22
## 7180 mark.e.taylor@enron.com 1999-07-22
## 7181 mark.e.taylor@enron.com 1999-07-22
## 7182 mark.e.taylor@enron.com 1999-07-22
## 7183 mark.e.taylor@enron.com 1999-07-22
## 7184 mark.e.taylor@enron.com 1999-07-22
## 7185 mark.e.taylor@enron.com 1999-07-22
## 7186 mark.e.taylor@enron.com 1999-07-22
## 7187 mark.e.taylor@enron.com 1999-07-22
## 7188 mark.e.taylor@enron.com 1999-07-22
## 7189 mark.e.taylor@enron.com 1999-07-22
## 7190 mark.e.taylor@enron.com 1999-07-22
## 7191 mark.e.taylor@enron.com 1999-07-22
## 7192 mark.e.taylor@enron.com 1999-07-22
## 7193 mark.e.taylor@enron.com 1999-07-21
## 7194 mark.e.taylor@enron.com 1999-07-21
## 7195 mark.e.taylor@enron.com 1999-07-21
## 7196 mark.e.taylor@enron.com 1999-07-21
## 7197 mark.e.taylor@enron.com 1999-07-21
## 7198 mark.e.taylor@enron.com 1999-07-21
## 7199 mark.e.taylor@enron.com 1999-07-21
## 7200 mark.e.taylor@enron.com 1999-07-21
## 7201 mark.e.taylor@enron.com 1999-07-21
## 7202 mark.e.taylor@enron.com 1999-07-21
## 7203 mark.e.taylor@enron.com 1999-07-20
## 7204 mark.e.taylor@enron.com 1999-07-20
## 7205 mark.e.taylor@enron.com 1999-07-20
## 7206 mark.e.taylor@enron.com 1999-07-20
## 7207 mark.e.taylor@enron.com 1999-07-19
## 7208 mark.e.taylor@enron.com 1999-07-16
## 7209 mark.e.taylor@enron.com 1999-07-16
## 7210 mark.e.taylor@enron.com 1999-07-16
## 7211 mark.e.taylor@enron.com 1999-07-16
## 7212 mark.e.taylor@enron.com 1999-07-15
## 7213 mark.e.taylor@enron.com 1999-07-15
## 7214 mark.e.taylor@enron.com 1999-07-15
## 7215 mark.e.taylor@enron.com 1999-07-15
## 7216 mark.e.taylor@enron.com 1999-07-14
## 7217 mark.e.taylor@enron.com 1999-07-14
## 7218 mark.e.taylor@enron.com 1999-07-13
## 7219 mark.e.taylor@enron.com 1999-07-13
## 7220 mark.e.taylor@enron.com 1999-07-13
## 7221 mark.e.taylor@enron.com 1999-07-12
## 7222 mark.e.taylor@enron.com 1999-07-09
## 7223 mark.e.taylor@enron.com 1999-07-09
## 7224 mark.e.taylor@enron.com 1999-07-08
## 7225 mark.e.taylor@enron.com 1999-07-08
## 7226 mark.e.taylor@enron.com 1999-07-08
## 7227 mark.e.taylor@enron.com 1999-07-08
## 7228 mark.e.taylor@enron.com 1999-07-08
## 7229 mark.e.taylor@enron.com 1999-07-07
## 7230 mark.e.taylor@enron.com 1999-07-02
## 7231 mark.e.taylor@enron.com 1999-07-02
## 7232 mark.e.taylor@enron.com 1999-07-02
## 7233 mark.e.taylor@enron.com 1999-07-02
## 7234 mark.e.taylor@enron.com 1999-07-01
## 7235 mark.e.taylor@enron.com 1999-07-01
## 7236 mark.e.taylor@enron.com 1999-07-01
## 7237 mark.e.taylor@enron.com 1999-07-01
## 7238 mark.e.taylor@enron.com 1999-07-01
## 7239 mark.e.taylor@enron.com 1999-07-01
## 7240 mark.e.taylor@enron.com 1999-07-01
## 7241 mark.e.taylor@enron.com 1999-07-01
## 7242 mark.e.taylor@enron.com 1999-06-29
## 7243 mark.e.taylor@enron.com 1999-06-29
## 7244 mark.e.taylor@enron.com 1999-06-29
## 7245 mark.e.taylor@enron.com 1999-06-29
## 7246 mark.e.taylor@enron.com 1999-06-29
## 7247 mark.e.taylor@enron.com 1999-06-29
## 7248 mark.e.taylor@enron.com 1999-06-29
## 7249 mark.e.taylor@enron.com 1999-06-29
## 7250 mark.e.taylor@enron.com 1999-06-29
## 7251 mark.e.taylor@enron.com 1999-06-29
## 7252 mark.e.taylor@enron.com 1999-06-29
## 7253 mark.e.taylor@enron.com 1999-06-29
## 7254 mark.e.taylor@enron.com 1999-06-29
## 7255 mark.e.taylor@enron.com 1999-06-29
## 7256 mark.e.taylor@enron.com 1999-06-29
## 7257 mark.e.taylor@enron.com 1999-06-29
## 7258 mark.e.taylor@enron.com 1999-06-28
## 7259 mark.e.taylor@enron.com 1999-06-28
## 7260 mark.e.taylor@enron.com 1999-06-28
## 7261 mark.e.taylor@enron.com 1999-06-28
## 7262 mark.e.taylor@enron.com 1999-06-28
## 7263 mark.e.taylor@enron.com 1999-06-28
## 7264 mark.e.taylor@enron.com 1999-06-28
## 7265 mark.e.taylor@enron.com 1999-06-25
## 7266 mark.e.taylor@enron.com 1999-06-25
## 7267 mark.e.taylor@enron.com 1999-06-25
## 7268 mark.e.taylor@enron.com 1999-06-25
## 7269 mark.e.taylor@enron.com 1999-06-25
## 7270 mark.e.taylor@enron.com 1999-06-24
## 7271 mark.e.taylor@enron.com 1999-06-24
## 7272 mark.e.taylor@enron.com 1999-06-24
## 7273 mark.e.taylor@enron.com 1999-06-24
## 7274 mark.e.taylor@enron.com 1999-06-24
## 7275 mark.e.taylor@enron.com 1999-06-24
## 7276 mark.e.taylor@enron.com 1999-06-24
## 7277 mark.e.taylor@enron.com 1999-06-24
## 7278 mark.e.taylor@enron.com 1999-06-24
## 7279 mark.e.taylor@enron.com 1999-06-24
## 7280 mark.e.taylor@enron.com 1999-06-24
## 7281 mark.e.taylor@enron.com 1999-06-24
## 7282 mark.e.taylor@enron.com 1999-06-24
## 7283 mark.e.taylor@enron.com 1999-06-24
## 7284 mark.e.taylor@enron.com 1999-06-24
## 7285 mark.e.taylor@enron.com 1999-06-24
## 7286 mark.e.taylor@enron.com 1999-06-24
## 7287 mark.e.taylor@enron.com 1999-06-24
## 7288 mark.e.taylor@enron.com 1999-06-24
## 7289 mark.e.taylor@enron.com 1999-06-24
## 7290 mark.e.taylor@enron.com 1999-06-24
## 7291 mark.e.taylor@enron.com 1999-06-24
## 7292 mark.e.taylor@enron.com 1999-06-24
## 7293 mark.e.taylor@enron.com 1999-06-24
## 7294 mark.e.taylor@enron.com 1999-06-24
## 7295 mark.e.taylor@enron.com 1999-06-24
## 7296 mark.e.taylor@enron.com 1999-06-24
## 7297 mark.e.taylor@enron.com 1999-06-24
## 7298 mark.e.taylor@enron.com 1999-06-24
## 7299 mark.e.taylor@enron.com 1999-06-23
## 7300 mark.e.taylor@enron.com 1999-06-23
## 7301 mark.e.taylor@enron.com 1999-06-23
## 7302 mark.e.taylor@enron.com 1999-06-23
## 7303 mark.e.taylor@enron.com 1999-06-16
## 7304 mark.e.taylor@enron.com 1999-06-16
## 7305 mark.e.taylor@enron.com 1999-06-16
## 7306 mark.e.taylor@enron.com 1999-06-16
## 7307 mark.e.taylor@enron.com 1999-06-16
## 7308 mark.e.taylor@enron.com 1999-06-16
## 7309 mark.e.taylor@enron.com 1999-06-16
## 7310 mark.e.taylor@enron.com 1999-06-16
## 7311 mark.e.taylor@enron.com 1999-06-16
## 7312 mark.e.taylor@enron.com 1999-06-16
## 7313 mark.e.taylor@enron.com 1999-06-16
## 7314 mark.e.taylor@enron.com 1999-06-15
## 7315 mark.e.taylor@enron.com 1999-06-15
## 7316 mark.e.taylor@enron.com 1999-06-15
## 7317 mark.e.taylor@enron.com 1999-06-15
## 7318 mark.e.taylor@enron.com 1999-06-14
## 7319 mark.e.taylor@enron.com 1999-06-13
## 7320 mark.e.taylor@enron.com 1999-06-13
## 7321 mark.e.taylor@enron.com 1999-06-13
## 7322 mark.e.taylor@enron.com 1999-06-13
## 7323 mark.e.taylor@enron.com 1999-06-13
## 7324 mark.e.taylor@enron.com 1999-06-13
## 7325 mark.e.taylor@enron.com 1999-06-13
## 7326 mark.e.taylor@enron.com 1999-06-11
## 7327 mark.e.taylor@enron.com 1999-06-11
## 7328 mark.e.taylor@enron.com 1999-06-11
## 7329 mark.e.taylor@enron.com 1999-06-08
## 7330 mark.e.taylor@enron.com 1999-06-07
## 7331 mark.e.taylor@enron.com 1999-06-04
## 7332 mark.e.taylor@enron.com 1999-06-03
## 7333 mark.e.taylor@enron.com 1999-06-03
## 7334 mark.e.taylor@enron.com 1999-06-02
## 7335 mark.e.taylor@enron.com 1999-06-02
## 7336 mark.e.taylor@enron.com 1999-06-02
## 7337 mark.e.taylor@enron.com 1999-06-02
## 7338 mark.e.taylor@enron.com 1999-06-02
## 7339 mark.e.taylor@enron.com 1999-06-02
## 7340 mark.e.taylor@enron.com 1999-06-02
## 7341 mark.e.taylor@enron.com 1999-06-02
## 7342 mark.e.taylor@enron.com 1999-06-02
## 7343 mark.e.taylor@enron.com 1999-06-02
## 7344 mark.e.taylor@enron.com 1999-06-02
## 7345 mark.e.taylor@enron.com 1999-06-02
## 7346 mark.e.taylor@enron.com 1999-06-02
## 7347 mark.e.taylor@enron.com 1999-06-02
## 7348 mark.e.taylor@enron.com 1999-06-02
## 7349 mark.e.taylor@enron.com 1999-06-02
## 7350 mark.e.taylor@enron.com 1999-06-02
## 7351 mark.e.taylor@enron.com 1999-06-02
## 7352 mark.e.taylor@enron.com 1999-06-02
## 7353 mark.e.taylor@enron.com 1999-06-02
## 7354 mark.e.taylor@enron.com 1999-06-02
## 7355 mark.e.taylor@enron.com 1999-06-01
## 7356 mark.e.taylor@enron.com 1999-06-01
## 7357 mark.e.taylor@enron.com 1999-06-01
## 7358 mark.e.taylor@enron.com 1999-06-01
## 7359 mark.e.taylor@enron.com 1999-05-27
## 7360 mark.e.taylor@enron.com 1999-05-27
## 7361 mark.e.taylor@enron.com 1999-05-27
## 7362 mark.e.taylor@enron.com 1999-05-27
## 7363 mark.e.taylor@enron.com 1999-05-27
## 7364 mark.e.taylor@enron.com 1999-05-27
## 7365 mark.e.taylor@enron.com 1999-05-26
## 7366 mark.e.taylor@enron.com 1999-05-26
## 7367 mark.e.taylor@enron.com 1999-05-25
## 7368 mark.e.taylor@enron.com 1999-05-25
## 7369 mark.e.taylor@enron.com 1999-05-25
## 7370 mark.e.taylor@enron.com 1999-05-25
## 7371 mark.e.taylor@enron.com 1999-05-24
## 7372 mark.e.taylor@enron.com 1999-05-21
## 7373 mark.e.taylor@enron.com 1999-05-21
## 7374 mark.e.taylor@enron.com 1999-05-21
## 7375 mark.e.taylor@enron.com 1999-05-21
## 7376 mark.e.taylor@enron.com 1999-05-21
## 7377 mark.e.taylor@enron.com 1999-05-21
## 7378 mark.e.taylor@enron.com 1999-05-20
## 7379 mark.e.taylor@enron.com 1999-05-20
## 7380 mark.e.taylor@enron.com 1999-05-20
## 7381 mark.e.taylor@enron.com 1999-05-20
## 7382 mark.e.taylor@enron.com 1999-05-20
## 7383 mark.e.taylor@enron.com 1999-05-20
## 7384 mark.e.taylor@enron.com 1999-05-19
## 7385 mark.e.taylor@enron.com 1999-05-19
## 7386 mark.e.taylor@enron.com 1999-05-19
## 7387 mark.e.taylor@enron.com 1999-05-19
## 7388 mark.e.taylor@enron.com 1999-05-19
## 7389 mark.e.taylor@enron.com 1999-05-19
## 7390 mark.e.taylor@enron.com 1999-05-19
## 7391 mark.e.taylor@enron.com 1999-05-19
## 7392 mark.e.taylor@enron.com 1999-05-19
## 7393 mark.e.taylor@enron.com 1999-05-19
## 7394 mark.e.taylor@enron.com 1999-05-19
## 7395 mark.e.taylor@enron.com 1999-05-14
## 7396 mark.e.taylor@enron.com 1999-05-14
## 7397 mark.e.taylor@enron.com 1999-05-14
## 7398 mark.e.taylor@enron.com 1999-05-13
## 7399 mark.e.taylor@enron.com 1999-05-13
## 7400 mark.e.taylor@enron.com 1999-05-13
## 7401 mark.e.taylor@enron.com 1999-05-13
## 7402 mark.e.taylor@enron.com 1999-05-13
## 7403 mark.e.taylor@enron.com 1999-05-12
## 7404 mark.e.taylor@enron.com 1999-05-12
## 7405 mark.e.taylor@enron.com 1999-05-12
## 7406 mark.e.taylor@enron.com 1999-05-12
## 7407 mark.e.taylor@enron.com 1999-05-12
## 7408 mark.e.taylor@enron.com 1999-05-12
## 7409 mark.e.taylor@enron.com 1999-05-12
## 7410 mark.e.taylor@enron.com 1999-05-12
## 7411 mark.e.taylor@enron.com 1999-05-12
## 7412 mark.e.taylor@enron.com 1999-05-12
## 7413 mark.e.taylor@enron.com 1999-05-12
## 7414 mark.e.taylor@enron.com 1999-05-12
## 7415 mark.e.taylor@enron.com 1999-05-12
## 7416 mark.e.taylor@enron.com 1999-05-11
## 7417 mark.e.taylor@enron.com 1999-05-11
## 7418 mark.e.taylor@enron.com 1999-05-10
## 7419 mark.e.taylor@enron.com 1999-05-10
## 7420 mark.e.taylor@enron.com 1999-05-10
## 7421 mark.e.taylor@enron.com 1999-05-10
## 7422 mark.e.taylor@enron.com 1999-05-10
## 7423 mark.e.taylor@enron.com 1999-05-05
## 7424 mark.e.taylor@enron.com 1999-05-05
## 7425 mark.e.taylor@enron.com 1999-05-04
## 7426 mark.e.taylor@enron.com 1999-05-03
## 7427 mark.e.taylor@enron.com 1999-05-03
## 7428 mark.e.taylor@enron.com 1999-05-03
## 7429 mark.e.taylor@enron.com 1999-04-27
## 7430 mark.e.taylor@enron.com 1999-04-26
## 7431 mark.e.taylor@enron.com 1999-04-26
## 7432 mark.e.taylor@enron.com 1999-04-23
## 7433 mark.e.taylor@enron.com 1999-04-23
## 7434 mark.e.taylor@enron.com 1999-04-23
## 7435 mark.e.taylor@enron.com 1999-04-22
## 7436 mark.e.taylor@enron.com 1999-04-22
## 7437 mark.e.taylor@enron.com 1999-04-21
## 7438 mark.e.taylor@enron.com 1999-04-21
## 7439 mark.e.taylor@enron.com 1999-04-20
## 7440 mark.e.taylor@enron.com 1999-04-15
## 7441 mark.e.taylor@enron.com 1999-04-15
## 7442 mark.e.taylor@enron.com 1999-04-12
## 7443 mark.e.taylor@enron.com 1999-04-12
## 7444 mark.e.taylor@enron.com 1999-04-12
## 7445 mark.e.taylor@enron.com 1999-04-12
## 7446 mark.e.taylor@enron.com 1999-04-12
## 7447 mark.e.taylor@enron.com 1999-04-08
## 7448 mark.e.taylor@enron.com 1999-04-08
## 7449 mark.e.taylor@enron.com 1999-04-06
## 7450 mark.e.taylor@enron.com 1999-04-02
## 7451 mark.e.taylor@enron.com 1999-04-01
## 7452 mark.e.taylor@enron.com 1999-04-01
## 7453 mark.e.taylor@enron.com 1999-03-31
## 7454 mark.e.taylor@enron.com 1999-03-31
## 7455 mark.e.taylor@enron.com 1999-03-31
## 7456 mark.e.taylor@enron.com 1999-03-31
## 7457 mark.e.taylor@enron.com 1999-03-31
## 7458 mark.e.taylor@enron.com 1999-03-31
## 7459 mark.e.taylor@enron.com 1999-03-31
## 7460 mark.e.taylor@enron.com 1999-03-31
## 7461 mark.e.taylor@enron.com 1999-03-31
## 7462 mark.e.taylor@enron.com 1999-03-31
## 7463 mark.e.taylor@enron.com 1999-03-31
## 7464 mark.e.taylor@enron.com 1999-03-30
## 7465 mark.e.taylor@enron.com 1999-03-30
## 7466 mark.e.taylor@enron.com 1999-03-30
## 7467 mark.e.taylor@enron.com 1999-03-30
## 7468 mark.e.taylor@enron.com 1999-03-25
## 7469 mark.e.taylor@enron.com 1999-03-25
## 7470 mark.e.taylor@enron.com 1999-03-25
## 7471 mark.e.taylor@enron.com 1999-03-25
## 7472 mark.e.taylor@enron.com 1999-03-25
## 7473 mark.e.taylor@enron.com 1999-03-25
## 7474 mark.e.taylor@enron.com 1999-03-25
## 7475 mark.e.taylor@enron.com 1999-03-25
## 7476 mark.e.taylor@enron.com 1999-03-25
## 7477 mark.e.taylor@enron.com 1999-03-23
## 7478 mark.e.taylor@enron.com 1999-03-23
## 7479 mark.e.taylor@enron.com 1999-03-22
## 7480 mark.e.taylor@enron.com 1999-03-22
## 7481 mark.e.taylor@enron.com 1999-03-19
## 7482 mark.e.taylor@enron.com 1999-03-19
## 7483 mark.e.taylor@enron.com 1999-03-19
## 7484 mark.e.taylor@enron.com 1999-03-19
## 7485 mark.e.taylor@enron.com 1999-03-19
## 7486 mark.e.taylor@enron.com 1999-03-19
## 7487 mark.e.taylor@enron.com 1999-03-19
## 7488 mark.e.taylor@enron.com 1999-03-18
## 7489 mark.e.taylor@enron.com 1999-03-18
## 7490 mark.e.taylor@enron.com 1999-03-12
## 7491 mark.e.taylor@enron.com 1999-03-12
## 7492 mark.e.taylor@enron.com 1999-03-12
## 7493 mark.e.taylor@enron.com 1999-03-12
## 7494 mark.e.taylor@enron.com 1999-03-12
## 7495 mark.e.taylor@enron.com 1999-03-11
## 7496 mark.e.taylor@enron.com 1999-03-11
## 7497 mark.e.taylor@enron.com 1999-03-11
## 7498 mark.e.taylor@enron.com 1999-03-11
## 7499 mark.e.taylor@enron.com 1999-03-11
## 7500 mark.e.taylor@enron.com 1999-03-11
## 7501 mark.e.taylor@enron.com 1999-03-10
## 7502 mark.e.taylor@enron.com 1999-03-10
## 7503 mark.e.taylor@enron.com 1999-03-10
## 7504 mark.e.taylor@enron.com 1999-03-10
## 7505 mark.e.taylor@enron.com 1999-03-10
## 7506 mark.e.taylor@enron.com 1999-03-10
## 7507 mark.e.taylor@enron.com 1999-03-09
## 7508 mark.e.taylor@enron.com 1999-03-05
## 7509 mark.e.taylor@enron.com 1999-03-05
## 7510 mark.e.taylor@enron.com 1999-03-05
## 7511 mark.e.taylor@enron.com 1999-03-04
## 7512 mark.e.taylor@enron.com 1999-03-03
## 7513 mark.e.taylor@enron.com 1999-03-01
## 7514 mark.e.taylor@enron.com 1999-03-01
## 7515 mark.e.taylor@enron.com 1999-03-01
## 7516 mark.e.taylor@enron.com 1999-02-26
## 7517 mark.e.taylor@enron.com 1999-02-26
## 7518 mark.e.taylor@enron.com 1999-02-25
## 7519 mark.e.taylor@enron.com 1999-02-25
## 7520 mark.e.taylor@enron.com 1999-02-25
## 7521 mark.e.taylor@enron.com 1999-02-25
## 7522 mark.e.taylor@enron.com 1999-02-22
## 7523 mark.e.taylor@enron.com 1999-02-22
## 7524 mark.e.taylor@enron.com 1999-02-19
## 7525 mark.e.taylor@enron.com 1999-02-17
## 7526 mark.e.taylor@enron.com 1999-02-17
## 7527 mark.e.taylor@enron.com 1999-02-16
## 7528 mark.e.taylor@enron.com 1999-02-16
## 7529 mark.e.taylor@enron.com 1999-02-16
## 7530 mark.e.taylor@enron.com 1999-02-16
## 7531 mark.e.taylor@enron.com 1999-02-16
## 7532 mark.e.taylor@enron.com 1999-02-16
## 7533 mark.e.taylor@enron.com 1999-02-16
## 7534 mark.e.taylor@enron.com 1999-02-16
## 7535 mark.e.taylor@enron.com 1999-02-12
## 7536 mark.e.taylor@enron.com 1999-02-12
## 7537 mark.e.taylor@enron.com 1999-02-12
## 7538 mark.e.taylor@enron.com 1999-02-12
## 7539 mark.e.taylor@enron.com 1999-02-12
## 7540 mark.e.taylor@enron.com 1999-02-12
## 7541 mark.e.taylor@enron.com 1999-02-10
## 7542 mark.e.taylor@enron.com 1999-02-10
## 7543 mark.e.taylor@enron.com 1999-02-10
## 7544 mark.e.taylor@enron.com 1999-02-10
## 7545 mark.e.taylor@enron.com 1999-02-10
## 7546 mark.e.taylor@enron.com 1999-02-10
## 7547 mark.e.taylor@enron.com 1999-02-09
## 7548 mark.e.taylor@enron.com 1999-02-08
## 7549 mark.e.taylor@enron.com 1999-02-08
## 7550 mark.e.taylor@enron.com 1999-02-05
## 7551 mark.e.taylor@enron.com 1999-02-05
## 7552 mark.e.taylor@enron.com 1999-02-05
## 7553 mark.e.taylor@enron.com 1999-02-05
## 7554 mark.e.taylor@enron.com 1999-02-05
## 7555 mark.e.taylor@enron.com 1999-02-04
## 7556 mark.e.taylor@enron.com 1999-02-02
## 7557 mark.e.taylor@enron.com 1999-02-01
## 7558 mark.e.taylor@enron.com 1999-02-01
## 7559 mark.e.taylor@enron.com 1999-02-01
## 7560 mark.e.taylor@enron.com 1999-02-01
## 7561 mark.e.taylor@enron.com 1999-02-01
## 7562 mark.e.taylor@enron.com 1999-02-01
## 7563 mark.e.taylor@enron.com 1999-01-28
## 7564 mark.e.taylor@enron.com 1999-01-28
## 7565 mark.e.taylor@enron.com 1999-01-28
## 7566 mark.e.taylor@enron.com 1999-01-27
## 7567 mark.e.taylor@enron.com 1999-01-27
## 7568 mark.e.taylor@enron.com 1999-01-27
## 7569 mark.e.taylor@enron.com 1999-01-27
## 7570 mark.e.taylor@enron.com 1999-01-27
## 7571 mark.e.taylor@enron.com 1999-01-27
## 7572 mark.e.taylor@enron.com 1999-01-27
## 7573 mark.e.taylor@enron.com 1999-01-27
## 7574 mark.e.taylor@enron.com 1999-01-27
## 7575 mark.e.taylor@enron.com 1999-01-27
## 7576 mark.e.taylor@enron.com 1999-01-27
## 7577 mark.e.taylor@enron.com 1999-01-27
## 7578 mark.e.taylor@enron.com 1999-01-27
## 7579 mark.e.taylor@enron.com 1999-01-27
## 7580 mark.e.taylor@enron.com 1999-01-27
## 7581 mark.e.taylor@enron.com 1999-01-27
## 7582 mark.e.taylor@enron.com 1999-01-27
## 7583 mark.e.taylor@enron.com 1999-01-27
## 7584 mark.e.taylor@enron.com 1999-01-27
## 7585 mark.e.taylor@enron.com 1999-01-23
## 7586 mark.e.taylor@enron.com 1999-01-23
## 7587 mark.e.taylor@enron.com 1999-01-20
## 7588 mark.e.taylor@enron.com 1999-01-20
## 7589 mark.e.taylor@enron.com 1999-01-20
## 7590 mark.e.taylor@enron.com 1999-01-20
## 7591 mark.e.taylor@enron.com 1999-01-20
## 7592 mark.e.taylor@enron.com 1999-01-20
## 7593 mark.e.taylor@enron.com 1999-01-18
## 7594 mark.e.taylor@enron.com 1999-01-18
## 7595 mark.e.taylor@enron.com 1999-01-18
## 7596 mark.e.taylor@enron.com 1999-01-18
## 7597 mark.e.taylor@enron.com 1999-01-18
## 7598 mark.e.taylor@enron.com 1999-01-18
## 7599 mark.e.taylor@enron.com 1999-01-18
## 7600 mark.e.taylor@enron.com 1999-01-18
## 7601 mark.e.taylor@enron.com 1999-01-18
## 7602 mark.e.taylor@enron.com 1999-01-18
## 7603 mark.e.taylor@enron.com 1999-01-18
## 7604 mark.e.taylor@enron.com 1999-01-18
## 7605 mark.e.taylor@enron.com 1999-01-18
## 7606 mark.e.taylor@enron.com 1999-01-18
## 7607 mark.e.taylor@enron.com 1999-01-15
## 7608 mark.e.taylor@enron.com 1999-01-15
## 7609 mark.e.taylor@enron.com 1999-01-15
## 7610 mark.e.taylor@enron.com 1999-01-15
## 7611 mark.e.taylor@enron.com 1999-01-15
## 7612 mark.e.taylor@enron.com 1999-01-15
## 7613 mark.e.taylor@enron.com 1999-01-15
## 7614 mark.e.taylor@enron.com 1999-01-15
## 7615 mark.e.taylor@enron.com 1999-01-15
## 7616 mark.e.taylor@enron.com 1999-01-15
## 7617 mark.e.taylor@enron.com 1999-01-15
## 7618 mark.e.taylor@enron.com 1999-01-15
## 7619 mark.e.taylor@enron.com 1999-01-14
## 7620 mark.e.taylor@enron.com 1999-01-14
## 7621 mark.e.taylor@enron.com 1999-01-14
## 7622 mark.e.taylor@enron.com 1999-01-14
## 7623 mark.e.taylor@enron.com 1999-01-13
## 7624 mark.e.taylor@enron.com 1999-01-13
## 7625 mark.e.taylor@enron.com 1999-01-13
## 7626 mark.e.taylor@enron.com 1999-01-13
## 7627 mark.e.taylor@enron.com 1999-01-13
## 7628 mark.e.taylor@enron.com 1999-01-13
## 7629 mark.e.taylor@enron.com 1999-01-13
## 7630 mark.e.taylor@enron.com 1999-01-13
## 7631 mark.e.taylor@enron.com 1999-01-13
## 7632 mark.e.taylor@enron.com 1999-01-13
## 7633 mark.e.taylor@enron.com 1999-01-13
## 7634 mark.e.taylor@enron.com 1999-01-13
## 7635 mark.e.taylor@enron.com 1999-01-13
## 7636 mark.e.taylor@enron.com 1999-01-13
## 7637 mark.e.taylor@enron.com 1999-01-13
## 7638 mark.e.taylor@enron.com 1999-01-13
## 7639 mark.e.taylor@enron.com 1999-01-13
## 7640 mark.e.taylor@enron.com 1999-01-13
## 7641 mark.e.taylor@enron.com 1999-01-13
## 7642 mark.e.taylor@enron.com 1999-01-13
## 7643 mark.e.taylor@enron.com 1999-01-13
## 7644 mark.e.taylor@enron.com 1999-01-13
## 7645 mark.e.taylor@enron.com 1999-01-13
## 7646 mark.e.taylor@enron.com 1999-01-13
## 7647 mark.e.taylor@enron.com 1999-01-13
## 7648 mark.e.taylor@enron.com 1999-01-13
## 7649 mark.e.taylor@enron.com 1999-01-13
## 7650 mark.e.taylor@enron.com 1999-01-13
## 7651 mark.e.taylor@enron.com 1999-01-13
## 7652 mark.e.taylor@enron.com 1999-01-13
## 7653 mark.e.taylor@enron.com 1999-01-13
## 7654 mark.e.taylor@enron.com 1999-01-13
## 7655 mark.e.taylor@enron.com 1999-01-13
## 7656 mark.e.taylor@enron.com 1999-01-13
## 7657 mark.e.taylor@enron.com 1999-01-13
## 7658 mark.e.taylor@enron.com 1999-01-13
## 7659 mark.e.taylor@enron.com 1999-01-13
## 7660 mark.e.taylor@enron.com 1999-01-13
## 7661 mark.e.taylor@enron.com 1999-01-13
## 7662 mark.e.taylor@enron.com 1999-01-13
## 7663 mark.e.taylor@enron.com 1999-01-13
## 7664 mark.e.taylor@enron.com 1999-01-13
## 7665 mark.e.taylor@enron.com 1999-01-13
## 7666 mark.e.taylor@enron.com 1999-01-13
## 7667 mark.e.taylor@enron.com 1999-01-13
## 7668 mark.e.taylor@enron.com 1999-01-13
## 7669 mark.e.taylor@enron.com 1999-01-13
## 7670 mark.e.taylor@enron.com 1999-01-13
## 7671 mark.e.taylor@enron.com 1999-01-13
## 7672 mark.e.taylor@enron.com 1999-01-13
## 7673 mark.e.taylor@enron.com 1999-01-13
## 7674 mark.e.taylor@enron.com 1999-01-13
## 7675 mark.e.taylor@enron.com 1999-01-13
## 7676 mark.e.taylor@enron.com 1999-01-13
## 7677 mark.e.taylor@enron.com 1999-01-13
## 7678 mark.e.taylor@enron.com 1999-01-13
## 7679 mark.e.taylor@enron.com 1999-01-13
## 7680 mark.e.taylor@enron.com 1999-01-13
## 7681 mark.e.taylor@enron.com 1999-01-13
## 7682 mark.e.taylor@enron.com 1999-01-13
## 7683 mark.e.taylor@enron.com 1999-01-13
## 7684 mark.e.taylor@enron.com 1999-01-13
## 7685 mark.e.taylor@enron.com 1999-01-13
## 7686 mark.e.taylor@enron.com 1999-01-13
## 7687 mark.e.taylor@enron.com 1999-01-13
## 7688 mark.e.taylor@enron.com 1999-01-13
## 7689 mark.e.taylor@enron.com 1999-01-12
## 7690 mark.e.taylor@enron.com 1999-01-12
## 7691 mark.e.taylor@enron.com 1999-01-12
## 7692 mark.e.taylor@enron.com 1999-01-12
## 7693 mark.e.taylor@enron.com 1999-01-12
## 7694 mark.e.taylor@enron.com 1999-01-12
## 7695 mark.e.taylor@enron.com 1999-01-12
## 7696 mark.e.taylor@enron.com 1999-01-12
## 7697 mark.e.taylor@enron.com 1999-01-12
## 7698 mark.e.taylor@enron.com 1999-01-12
## 7699 mark.e.taylor@enron.com 1999-01-08
## 7700 mark.e.taylor@enron.com 1999-01-08
## 7701 mark.e.taylor@enron.com 1999-01-08
## 7702 mark.e.taylor@enron.com 1999-01-08
## 7703 mark.e.taylor@enron.com 1999-01-08
## 7704 mark.e.taylor@enron.com 1999-01-08
## 7705 mark.e.taylor@enron.com 1999-01-08
## 7706 mark.e.taylor@enron.com 1999-01-08
## 7707 mark.e.taylor@enron.com 1999-01-08
## 7708 mark.e.taylor@enron.com 1999-01-08
## 7709 mark.e.taylor@enron.com 1999-01-08
## 7710 mark.e.taylor@enron.com 1999-01-08
## 7711 mark.e.taylor@enron.com 1999-01-07
## 7712 mark.e.taylor@enron.com 1999-01-07
## 7713 mark.e.taylor@enron.com 1999-01-07
## 7714 mark.e.taylor@enron.com 1999-01-07
## 7715 mark.e.taylor@enron.com 1999-01-07
## 7716 mark.e.taylor@enron.com 1999-01-07
## 7717 mark.e.taylor@enron.com 1999-01-07
## 7718 mark.e.taylor@enron.com 1999-01-06
## 7719 mark.e.taylor@enron.com 1999-01-05
## 7720 mark.e.taylor@enron.com 1999-01-05
## 7721 mark.e.taylor@enron.com 1999-01-04
## 7722 mark.e.taylor@enron.com 1999-01-04
## 7723 mark.e.taylor@enron.com 1999-01-04
## 7724 louise.kitchen@enron.com 1999-07-23
## 7725 louise.kitchen@enron.com 1999-07-23
## 7726 louise.kitchen@enron.com 1999-07-23
## 7727 louise.kitchen@enron.com 1999-07-23
## 7728 louise.kitchen@enron.com 1999-07-23
## 7729 louise.kitchen@enron.com 1999-07-23
## 7730 louise.kitchen@enron.com 1999-07-23
## 7731 louise.kitchen@enron.com 1999-07-23
## 7732 louise.kitchen@enron.com 1999-07-23
## 7733 louise.kitchen@enron.com 1999-07-23
## 7734 louise.kitchen@enron.com 1999-07-23
## 7735 louise.kitchen@enron.com 1999-07-23
## 7736 louise.kitchen@enron.com 1999-07-23
## 7737 louise.kitchen@enron.com 1999-07-23
## 7738 louise.kitchen@enron.com 1999-07-23
## 7739 louise.kitchen@enron.com 1999-07-23
## 7740 louise.kitchen@enron.com 1999-07-23
## 7741 louise.kitchen@enron.com 1999-07-23
## 7742 louise.kitchen@enron.com 1999-07-23
## 7743 louise.kitchen@enron.com 1999-07-23
## 7744 louise.kitchen@enron.com 1999-07-23
## 7745 louise.kitchen@enron.com 1999-07-23
## 7746 louise.kitchen@enron.com 1999-07-23
## 7747 louise.kitchen@enron.com 1999-07-23
## 7748 louise.kitchen@enron.com 1999-07-23
## 7749 louise.kitchen@enron.com 1999-07-23
## 7750 louise.kitchen@enron.com 1999-07-23
## 7751 louise.kitchen@enron.com 1999-07-23
## 7752 louise.kitchen@enron.com 1999-07-23
## 7753 stephanie.panus@enron.com 2000-12-19
## 7754 stephanie.panus@enron.com 2000-12-19
## 7755 stephanie.panus@enron.com 2000-12-19
## 7756 stephanie.panus@enron.com 2000-12-19
## 7757 e..haedicke@enron.com 2000-12-20
## 7758 e..haedicke@enron.com 2000-12-20
## 7759 e..haedicke@enron.com 2000-12-20
## 7760 carol.clair@enron.com 2000-12-20
## 7761 louise.kitchen@enron.com 2001-01-07
## 7762 louise.kitchen@enron.com 2001-01-07
## 7763 louise.kitchen@enron.com 2001-01-07
## 7764 louise.kitchen@enron.com 2001-01-07
## 7765 louise.kitchen@enron.com 2001-01-07
## 7766 stephanie.panus@enron.com 2001-01-08
## 7767 e..haedicke@enron.com 2001-01-10
## 7768 carol.clair@enron.com 2001-01-11
## 7769 e..haedicke@enron.com 2001-01-16
## 7770 sally.beck@enron.com 2001-01-25
## 7771 sally.beck@enron.com 2001-01-25
## 7772 sally.beck@enron.com 2001-01-25
## 7773 sally.beck@enron.com 2001-01-25
## 7774 sally.beck@enron.com 2001-01-25
## 7775 sally.beck@enron.com 2001-01-25
## 7776 sally.beck@enron.com 2001-01-25
## 7777 sally.beck@enron.com 2001-01-25
## 7778 sally.beck@enron.com 2001-01-25
## 7779 sally.beck@enron.com 2001-01-25
## 7780 sally.beck@enron.com 2001-01-25
## 7781 sally.beck@enron.com 2001-01-25
## 7782 sally.beck@enron.com 2001-01-25
## 7783 sally.beck@enron.com 2001-01-25
## 7784 sally.beck@enron.com 2001-01-25
## 7785 sally.beck@enron.com 2001-01-25
## 7786 sally.beck@enron.com 2001-01-25
## 7787 sally.beck@enron.com 2001-01-25
## 7788 sally.beck@enron.com 2001-01-25
## 7789 sally.beck@enron.com 2001-01-25
## 7790 sally.beck@enron.com 2001-01-25
## 7791 sally.beck@enron.com 2001-01-25
## 7792 sally.beck@enron.com 2001-01-25
## 7793 sally.beck@enron.com 2001-01-25
## 7794 sally.beck@enron.com 2001-01-25
## 7795 sally.beck@enron.com 2001-01-25
## 7796 sally.beck@enron.com 2001-01-25
## 7797 sally.beck@enron.com 2001-01-25
## 7798 sally.beck@enron.com 2001-01-25
## 7799 sally.beck@enron.com 2001-01-25
## 7800 sally.beck@enron.com 2001-01-25
## 7801 sally.beck@enron.com 2001-01-25
## 7802 sally.beck@enron.com 2001-01-25
## 7803 sally.beck@enron.com 2001-01-25
## 7804 sally.beck@enron.com 2001-01-25
## 7805 sally.beck@enron.com 2001-01-25
## 7806 sally.beck@enron.com 2001-01-25
## 7807 sally.beck@enron.com 2001-01-25
## 7808 sally.beck@enron.com 2001-01-25
## 7809 sally.beck@enron.com 2001-01-25
## 7810 sally.beck@enron.com 2001-01-25
## 7811 sally.beck@enron.com 2001-01-25
## 7812 sally.beck@enron.com 2001-01-25
## 7813 sally.beck@enron.com 2001-01-25
## 7814 sally.beck@enron.com 2001-01-25
## 7815 sally.beck@enron.com 2001-01-25
## 7816 sally.beck@enron.com 2001-01-25
## 7817 sally.beck@enron.com 2001-01-25
## 7818 sally.beck@enron.com 2001-01-25
## 7819 sally.beck@enron.com 2001-01-25
## 7820 sally.beck@enron.com 2001-01-25
## 7821 sally.beck@enron.com 2001-01-25
## 7822 sally.beck@enron.com 2001-01-25
## 7823 sally.beck@enron.com 2001-01-25
## 7824 sally.beck@enron.com 2001-01-25
## 7825 sally.beck@enron.com 2001-01-25
## 7826 sally.beck@enron.com 2001-01-25
## 7827 carol.clair@enron.com 2001-01-26
## 7828 carol.clair@enron.com 2001-01-26
## 7829 carol.clair@enron.com 2001-01-26
## 7830 stephanie.panus@enron.com 2001-01-26
## 7831 stephanie.panus@enron.com 2001-01-26
## 7832 stephanie.panus@enron.com 2001-01-26
## 7833 stephanie.panus@enron.com 2001-01-26
## 7834 stephanie.panus@enron.com 2001-01-26
## 7835 stephanie.panus@enron.com 2001-01-26
## 7836 stephanie.panus@enron.com 2001-01-26
## 7837 stephanie.panus@enron.com 2001-01-26
## 7838 stephanie.panus@enron.com 2001-01-26
## 7839 stephanie.panus@enron.com 2001-01-26
## 7840 stephanie.panus@enron.com 2001-01-26
## 7841 stephanie.panus@enron.com 2001-01-26
## 7842 stephanie.panus@enron.com 2001-01-26
## 7843 stephanie.panus@enron.com 2001-01-26
## 7844 stephanie.panus@enron.com 2001-01-26
## 7845 carol.clair@enron.com 2001-01-29
## 7846 carol.clair@enron.com 2001-01-29
## 7847 carol.clair@enron.com 2001-01-29
## 7848 carol.clair@enron.com 2001-01-29
## 7849 carol.clair@enron.com 2001-01-29
## 7850 carol.clair@enron.com 2001-01-29
## 7851 carol.clair@enron.com 2001-01-29
## 7852 carol.clair@enron.com 2001-01-29
## 7853 carol.clair@enron.com 2001-01-29
## 7854 carol.clair@enron.com 2001-01-29
## 7855 carol.clair@enron.com 2001-01-29
## 7856 carol.clair@enron.com 2001-01-29
## 7857 carol.clair@enron.com 2001-01-29
## 7858 carol.clair@enron.com 2001-01-29
## 7859 carol.clair@enron.com 2001-01-29
## 7860 carol.clair@enron.com 2001-01-29
## 7861 carol.clair@enron.com 2001-01-29
## 7862 carol.clair@enron.com 2001-01-29
## 7863 carol.clair@enron.com 2001-01-29
## 7864 carol.clair@enron.com 2001-01-29
## 7865 carol.clair@enron.com 2001-01-29
## 7866 carol.clair@enron.com 2001-02-01
## 7867 carol.clair@enron.com 2001-02-01
## 7868 carol.clair@enron.com 2001-02-01
## 7869 carol.clair@enron.com 2001-02-07
## 7870 carol.clair@enron.com 2001-02-07
## 7871 carol.clair@enron.com 2001-02-07
## 7872 carol.clair@enron.com 2001-02-07
## 7873 carol.clair@enron.com 2001-02-07
## 7874 carol.clair@enron.com 2001-02-14
## 7875 stephanie.panus@enron.com 2001-02-23
## 7876 stephanie.panus@enron.com 2001-02-23
## 7877 stephanie.panus@enron.com 2001-02-23
## 7878 stephanie.panus@enron.com 2001-02-23
## 7879 stephanie.panus@enron.com 2001-02-23
## 7880 stephanie.panus@enron.com 2001-02-23
## 7881 stephanie.panus@enron.com 2001-02-23
## 7882 stephanie.panus@enron.com 2001-02-23
## 7883 stephanie.panus@enron.com 2001-02-23
## 7884 stephanie.panus@enron.com 2001-02-23
## 7885 stephanie.panus@enron.com 2001-02-23
## 7886 stephanie.panus@enron.com 2001-02-23
## 7887 stephanie.panus@enron.com 2001-02-23
## 7888 stephanie.panus@enron.com 2001-02-23
## 7889 stephanie.panus@enron.com 2001-02-23
## 7890 stephanie.panus@enron.com 2001-02-23
## 7891 stephanie.panus@enron.com 2001-02-23
## 7892 stephanie.panus@enron.com 2001-02-23
## 7893 stephanie.panus@enron.com 2001-02-23
## 7894 stephanie.panus@enron.com 2001-02-23
## 7895 stephanie.panus@enron.com 2001-02-23
## 7896 stephanie.panus@enron.com 2001-02-23
## 7897 stephanie.panus@enron.com 2001-02-23
## 7898 stephanie.panus@enron.com 2001-02-23
## 7899 stephanie.panus@enron.com 2001-02-23
## 7900 stephanie.panus@enron.com 2001-02-23
## 7901 stephanie.panus@enron.com 2001-02-23
## 7902 stephanie.panus@enron.com 2001-02-23
## 7903 stephanie.panus@enron.com 2001-02-23
## 7904 stephanie.panus@enron.com 2001-02-23
## 7905 stephanie.panus@enron.com 2001-02-23
## 7906 stephanie.panus@enron.com 2001-02-23
## 7907 stephanie.panus@enron.com 2001-02-23
## 7908 stephanie.panus@enron.com 2001-02-23
## 7909 stephanie.panus@enron.com 2001-02-23
## 7910 stephanie.panus@enron.com 2001-02-23
## 7911 stephanie.panus@enron.com 2001-02-23
## 7912 stephanie.panus@enron.com 2001-02-23
## 7913 stephanie.panus@enron.com 2001-02-23
## 7914 stephanie.panus@enron.com 2001-02-23
## 7915 stephanie.panus@enron.com 2001-02-23
## 7916 stephanie.panus@enron.com 2001-02-23
## 7917 stephanie.panus@enron.com 2001-02-23
## 7918 stephanie.panus@enron.com 2001-02-23
## 7919 stephanie.panus@enron.com 2001-02-23
## 7920 stephanie.panus@enron.com 2001-02-23
## 7921 stephanie.panus@enron.com 2001-02-23
## 7922 stephanie.panus@enron.com 2001-02-23
## 7923 stephanie.panus@enron.com 2001-02-23
## 7924 stephanie.panus@enron.com 2001-02-23
## 7925 stephanie.panus@enron.com 2001-02-23
## 7926 stephanie.panus@enron.com 2001-02-23
## 7927 stephanie.panus@enron.com 2001-02-23
## 7928 stephanie.panus@enron.com 2001-02-23
## 7929 stephanie.panus@enron.com 2001-02-23
## 7930 stephanie.panus@enron.com 2001-02-23
## 7931 stephanie.panus@enron.com 2001-02-23
## 7932 stephanie.panus@enron.com 2001-02-23
## 7933 stephanie.panus@enron.com 2001-02-23
## 7934 stephanie.panus@enron.com 2001-02-23
## 7935 stephanie.panus@enron.com 2001-02-23
## 7936 stephanie.panus@enron.com 2001-02-23
## 7937 stephanie.panus@enron.com 2001-02-23
## 7938 stephanie.panus@enron.com 2001-02-23
## 7939 stephanie.panus@enron.com 2001-02-23
## 7940 stephanie.panus@enron.com 2001-02-23
## 7941 stephanie.panus@enron.com 2001-02-23
## 7942 mark.e.taylor@enron.com 2001-03-02
## 7943 carol.clair@enron.com 2001-03-07
## 7944 carol.clair@enron.com 2001-03-07
## 7945 carol.clair@enron.com 2001-03-07
## 7946 carol.clair@enron.com 2001-03-07
## 7947 carol.clair@enron.com 2001-03-07
## 7948 carol.clair@enron.com 2001-03-07
## 7949 carol.clair@enron.com 2001-03-07
## 7950 carol.clair@enron.com 2001-03-07
## 7951 carol.clair@enron.com 2001-03-07
## 7952 carol.clair@enron.com 2001-03-07
## 7953 carol.clair@enron.com 2001-03-07
## 7954 carol.clair@enron.com 2001-03-07
## 7955 carol.clair@enron.com 2001-03-07
## 7956 carol.clair@enron.com 2001-03-07
## 7957 carol.clair@enron.com 2001-03-07
## 7958 e..haedicke@enron.com 2001-03-27
## 7959 e..haedicke@enron.com 2001-03-27
## 7960 e..haedicke@enron.com 2001-03-27
## 7961 e..haedicke@enron.com 2001-03-27
## 7962 e..haedicke@enron.com 2001-03-27
## 7963 e..haedicke@enron.com 2001-03-27
## 7964 e..haedicke@enron.com 2001-03-27
## 7965 e..haedicke@enron.com 2001-03-27
## 7966 e..haedicke@enron.com 2001-03-27
## 7967 e..haedicke@enron.com 2001-03-27
## 7968 e..haedicke@enron.com 2001-03-27
## 7969 e..haedicke@enron.com 2001-03-27
## 7970 e..haedicke@enron.com 2001-03-30
## 7971 e..haedicke@enron.com 2001-03-30
## 7972 michelle.cash@enron.com 2001-03-30
## 7973 michelle.cash@enron.com 2001-03-30
## 7974 michelle.cash@enron.com 2001-03-30
## 7975 michelle.cash@enron.com 2001-03-30
## 7976 michelle.cash@enron.com 2001-03-30
## 7977 michelle.cash@enron.com 2001-03-30
## 7978 michelle.cash@enron.com 2001-03-30
## 7979 michelle.cash@enron.com 2001-03-30
## 7980 michelle.cash@enron.com 2001-03-30
## 7981 michelle.cash@enron.com 2001-03-30
## 7982 michelle.cash@enron.com 2001-03-30
## 7983 michelle.cash@enron.com 2001-03-30
## 7984 michelle.cash@enron.com 2001-03-30
## 7985 michelle.cash@enron.com 2001-03-30
## 7986 michelle.cash@enron.com 2001-03-30
## 7987 carol.clair@enron.com 2001-04-03
## 7988 carol.clair@enron.com 2001-04-03
## 7989 carol.clair@enron.com 2001-04-03
## 7990 louise.kitchen@enron.com 2001-04-05
## 7991 carol.clair@enron.com 2001-04-05
## 7992 carol.clair@enron.com 2001-04-05
## 7993 carol.clair@enron.com 2001-04-05
## 7994 carol.clair@enron.com 2001-04-05
## 7995 carol.clair@enron.com 2001-04-05
## 7996 carol.clair@enron.com 2001-04-05
## 7997 carol.clair@enron.com 2001-04-08
## 7998 carol.clair@enron.com 2001-04-08
## 7999 carol.clair@enron.com 2001-04-08
## 8000 elizabeth.sager@enron.com 2001-04-09
## 8001 elizabeth.sager@enron.com 2001-04-09
## 8002 elizabeth.sager@enron.com 2001-04-09
## 8003 elizabeth.sager@enron.com 2001-04-09
## 8004 phillip.k.ellen@enron.com 2001-04-09
## 8005 michelle.cash@enron.com 2001-04-09
## 8006 michelle.cash@enron.com 2001-04-09
## 8007 michelle.cash@enron.com 2001-04-09
## 8008 michelle.cash@enron.com 2001-04-09
## 8009 michelle.cash@enron.com 2001-04-09
## 8010 mark.e.taylor@enron.com 2001-04-10
## 8011 e..haedicke@enron.com 2001-04-12
## 8012 e..haedicke@enron.com 2001-04-12
## 8013 e..haedicke@enron.com 2001-04-12
## 8014 e..haedicke@enron.com 2001-04-12
## 8015 e..haedicke@enron.com 2001-04-12
## 8016 e..haedicke@enron.com 2001-04-16
## 8017 e..haedicke@enron.com 2001-04-16
## 8018 e..haedicke@enron.com 2001-04-16
## 8019 e..haedicke@enron.com 2001-04-16
## 8020 elizabeth.sager@enron.com 2001-04-17
## 8021 elizabeth.sager@enron.com 2001-04-17
## 8022 elizabeth.sager@enron.com 2001-04-17
## 8023 elizabeth.sager@enron.com 2001-04-17
## 8024 elizabeth.sager@enron.com 2001-04-17
## 8025 elizabeth.sager@enron.com 2001-04-17
## 8026 elizabeth.sager@enron.com 2001-04-17
## 8027 elizabeth.sager@enron.com 2001-04-17
## 8028 elizabeth.sager@enron.com 2001-04-17
## 8029 elizabeth.sager@enron.com 2001-04-17
## 8030 elizabeth.sager@enron.com 2001-04-17
## 8031 elizabeth.sager@enron.com 2001-04-17
## 8032 elizabeth.sager@enron.com 2001-04-17
## 8033 elizabeth.sager@enron.com 2001-04-17
## 8034 elizabeth.sager@enron.com 2001-04-17
## 8035 carol.clair@enron.com 2001-04-18
## 8036 carol.clair@enron.com 2001-04-18
## 8037 carol.clair@enron.com 2001-04-18
## 8038 carol.clair@enron.com 2001-04-18
## 8039 carol.clair@enron.com 2001-04-18
## 8040 carol.clair@enron.com 2001-04-18
## 8041 carol.clair@enron.com 2001-04-18
## 8042 carol.clair@enron.com 2001-04-18
## 8043 carol.clair@enron.com 2001-04-18
## 8044 carol.clair@enron.com 2001-04-18
## 8045 carol.clair@enron.com 2001-04-18
## 8046 carol.clair@enron.com 2001-04-18
## 8047 carol.clair@enron.com 2001-04-18
## 8048 carol.clair@enron.com 2001-04-18
## 8049 michelle.cash@enron.com 2001-04-18
## 8050 michelle.cash@enron.com 2001-04-18
## 8051 carol.clair@enron.com 2001-04-19
## 8052 carol.clair@enron.com 2001-04-19
## 8053 carol.clair@enron.com 2001-04-19
## 8054 jeff.skilling@enron.com 2001-05-03
## 8055 jeff.skilling@enron.com 2001-05-03
## 8056 jeff.skilling@enron.com 2001-05-03
## 8057 jeff.skilling@enron.com 2001-05-03
## 8058 jeff.skilling@enron.com 2001-05-03
## 8059 jeff.skilling@enron.com 2001-05-03
## 8060 jeff.skilling@enron.com 2001-05-03
## 8061 jeff.skilling@enron.com 2001-05-03
## 8062 jeff.skilling@enron.com 2001-05-03
## 8063 jeff.skilling@enron.com 2001-05-03
## 8064 jeff.skilling@enron.com 2001-05-03
## 8065 jeff.skilling@enron.com 2001-05-03
## 8066 jeff.skilling@enron.com 2001-05-03
## 8067 jeff.skilling@enron.com 2001-05-03
## 8068 jeff.skilling@enron.com 2001-05-03
## 8069 jeff.skilling@enron.com 2001-05-03
## 8070 jeff.skilling@enron.com 2001-05-03
## 8071 jeff.skilling@enron.com 2001-05-03
## 8072 jeff.skilling@enron.com 2001-05-03
## 8073 jeff.skilling@enron.com 2001-05-03
## 8074 jeff.skilling@enron.com 2001-05-03
## 8075 jeff.skilling@enron.com 2001-05-03
## 8076 jeff.skilling@enron.com 2001-05-03
## 8077 jeff.skilling@enron.com 2001-05-03
## 8078 jeff.skilling@enron.com 2001-05-03
## 8079 jeff.skilling@enron.com 2001-05-03
## 8080 jeff.skilling@enron.com 2001-05-03
## 8081 jeff.skilling@enron.com 2001-05-03
## 8082 jeff.skilling@enron.com 2001-05-03
## 8083 jeff.skilling@enron.com 2001-05-03
## 8084 jeff.skilling@enron.com 2001-05-03
## 8085 jeff.skilling@enron.com 2001-05-03
## 8086 jeff.skilling@enron.com 2001-05-03
## 8087 jeff.skilling@enron.com 2001-05-03
## 8088 jeff.skilling@enron.com 2001-05-03
## 8089 jeff.skilling@enron.com 2001-05-03
## 8090 jeff.skilling@enron.com 2001-05-03
## 8091 jeff.skilling@enron.com 2001-05-03
## 8092 jeff.skilling@enron.com 2001-05-03
## 8093 jeff.skilling@enron.com 2001-05-03
## 8094 jeff.skilling@enron.com 2001-05-03
## 8095 jeff.skilling@enron.com 2001-05-03
## 8096 jeff.skilling@enron.com 2001-05-03
## 8097 jeff.skilling@enron.com 2001-05-03
## 8098 jeff.skilling@enron.com 2001-05-03
## 8099 jeff.skilling@enron.com 2001-05-03
## 8100 jeff.skilling@enron.com 2001-05-03
## 8101 jeff.skilling@enron.com 2001-05-03
## 8102 jeff.skilling@enron.com 2001-05-03
## 8103 jeff.skilling@enron.com 2001-05-03
## 8104 jeff.skilling@enron.com 2001-05-03
## 8105 jeff.skilling@enron.com 2001-05-03
## 8106 jeff.skilling@enron.com 2001-05-03
## 8107 jeff.skilling@enron.com 2001-05-03
## 8108 jeff.skilling@enron.com 2001-05-03
## 8109 jeff.skilling@enron.com 2001-05-03
## 8110 jeff.skilling@enron.com 2001-05-03
## 8111 jeff.skilling@enron.com 2001-05-03
## 8112 jeff.skilling@enron.com 2001-05-03
## 8113 jeff.skilling@enron.com 2001-05-03
## 8114 jeff.skilling@enron.com 2001-05-03
## 8115 jeff.skilling@enron.com 2001-05-03
## 8116 jeff.skilling@enron.com 2001-05-03
## 8117 jeff.skilling@enron.com 2001-05-03
## 8118 jeff.skilling@enron.com 2001-05-03
## 8119 jeff.skilling@enron.com 2001-05-03
## 8120 jeff.skilling@enron.com 2001-05-03
## 8121 jeff.skilling@enron.com 2001-05-03
## 8122 jeff.skilling@enron.com 2001-05-03
## 8123 jeff.skilling@enron.com 2001-05-03
## 8124 jeff.skilling@enron.com 2001-05-03
## 8125 jeff.skilling@enron.com 2001-05-03
## 8126 jeff.skilling@enron.com 2001-05-03
## 8127 jeff.skilling@enron.com 2001-05-03
## 8128 jeff.skilling@enron.com 2001-05-03
## 8129 jeff.skilling@enron.com 2001-05-03
## 8130 jeff.skilling@enron.com 2001-05-03
## 8131 jeff.skilling@enron.com 2001-05-03
## 8132 jeff.skilling@enron.com 2001-05-03
## 8133 jeff.skilling@enron.com 2001-05-03
## 8134 jeff.skilling@enron.com 2001-05-03
## 8135 jeff.skilling@enron.com 2001-05-03
## 8136 jeff.skilling@enron.com 2001-05-03
## 8137 jeff.skilling@enron.com 2001-05-03
## 8138 jeff.skilling@enron.com 2001-05-03
## 8139 jeff.skilling@enron.com 2001-05-03
## 8140 jeff.skilling@enron.com 2001-05-03
## 8141 jeff.skilling@enron.com 2001-05-03
## 8142 jeff.skilling@enron.com 2001-05-03
## 8143 jeff.skilling@enron.com 2001-05-03
## 8144 jeff.skilling@enron.com 2001-05-03
## 8145 jeff.skilling@enron.com 2001-05-03
## 8146 jeff.skilling@enron.com 2001-05-03
## 8147 jeff.skilling@enron.com 2001-05-03
## 8148 jeff.skilling@enron.com 2001-05-03
## 8149 jeff.skilling@enron.com 2001-05-03
## 8150 jeff.skilling@enron.com 2001-05-03
## 8151 jeff.skilling@enron.com 2001-05-03
## 8152 jeff.skilling@enron.com 2001-05-03
## 8153 jeff.skilling@enron.com 2001-05-03
## 8154 jeff.skilling@enron.com 2001-05-03
## 8155 jeff.skilling@enron.com 2001-05-03
## 8156 jeff.skilling@enron.com 2001-05-03
## 8157 jeff.skilling@enron.com 2001-05-03
## 8158 jeff.skilling@enron.com 2001-05-03
## 8159 jeff.skilling@enron.com 2001-05-03
## 8160 jeff.skilling@enron.com 2001-05-03
## 8161 jeff.skilling@enron.com 2001-05-03
## 8162 jeff.skilling@enron.com 2001-05-03
## 8163 jeff.skilling@enron.com 2001-05-03
## 8164 jeff.skilling@enron.com 2001-05-03
## 8165 jeff.skilling@enron.com 2001-05-03
## 8166 jeff.skilling@enron.com 2001-05-03
## 8167 jeff.skilling@enron.com 2001-05-03
## 8168 jeff.skilling@enron.com 2001-05-03
## 8169 jeff.skilling@enron.com 2001-05-03
## 8170 jeff.skilling@enron.com 2001-05-03
## 8171 jeff.skilling@enron.com 2001-05-03
## 8172 jeff.skilling@enron.com 2001-05-03
## 8173 jeff.skilling@enron.com 2001-05-03
## 8174 jeff.skilling@enron.com 2001-05-03
## 8175 jeff.skilling@enron.com 2001-05-03
## 8176 jeff.skilling@enron.com 2001-05-03
## 8177 carol.clair@enron.com 2001-05-07
## 8178 carol.clair@enron.com 2001-05-07
## 8179 carol.clair@enron.com 2001-05-07
## 8180 jason.williams@enron.com 2001-05-08
## 8181 jason.williams@enron.com 2001-05-08
## 8182 jason.williams@enron.com 2001-05-08
## 8183 e..haedicke@enron.com 2001-05-23
## 8184 e..haedicke@enron.com 2001-05-24
## 8185 e..haedicke@enron.com 2001-05-24
## 8186 e..haedicke@enron.com 2001-05-24
## 8187 e..haedicke@enron.com 2001-05-24
## 8188 mark.e.taylor@enron.com 2001-05-28
## 8189 mark.e.taylor@enron.com 2001-05-28
## 8190 mark.e.taylor@enron.com 2001-05-28
## 8191 carol.clair@enron.com 2001-05-31
## 8192 carol.clair@enron.com 2001-05-31
## 8193 carol.clair@enron.com 2001-05-31
## 8194 carol.clair@enron.com 2001-05-31
## 8195 carol.clair@enron.com 2001-05-31
## 8196 carol.clair@enron.com 2001-05-31
## 8197 carol.clair@enron.com 2001-05-31
## 8198 carol.clair@enron.com 2001-05-31
## 8199 stephanie.panus@enron.com 2001-06-04
## 8200 stephanie.panus@enron.com 2001-06-04
## 8201 stephanie.panus@enron.com 2001-06-04
## 8202 stephanie.panus@enron.com 2001-06-04
## 8203 stephanie.panus@enron.com 2001-06-04
## 8204 stephanie.panus@enron.com 2001-06-04
## 8205 stephanie.panus@enron.com 2001-06-04
## 8206 stephanie.panus@enron.com 2001-06-04
## 8207 stephanie.panus@enron.com 2001-06-04
## 8208 stephanie.panus@enron.com 2001-06-04
## 8209 stephanie.panus@enron.com 2001-06-04
## 8210 stephanie.panus@enron.com 2001-06-04
## 8211 stephanie.panus@enron.com 2001-06-04
## 8212 stephanie.panus@enron.com 2001-06-04
## 8213 stephanie.panus@enron.com 2001-06-04
## 8214 stephanie.panus@enron.com 2001-06-04
## 8215 stephanie.panus@enron.com 2001-06-04
## 8216 stephanie.panus@enron.com 2001-06-04
## 8217 stephanie.panus@enron.com 2001-06-04
## 8218 stephanie.panus@enron.com 2001-06-04
## 8219 stephanie.panus@enron.com 2001-06-04
## 8220 stephanie.panus@enron.com 2001-06-04
## 8221 stephanie.panus@enron.com 2001-06-04
## 8222 stephanie.panus@enron.com 2001-06-04
## 8223 stephanie.panus@enron.com 2001-06-04
## 8224 stephanie.panus@enron.com 2001-06-04
## 8225 stephanie.panus@enron.com 2001-06-04
## 8226 stephanie.panus@enron.com 2001-06-04
## 8227 stephanie.panus@enron.com 2001-06-04
## 8228 stephanie.panus@enron.com 2001-06-04
## 8229 stephanie.panus@enron.com 2001-06-04
## 8230 stephanie.panus@enron.com 2001-06-04
## 8231 stephanie.panus@enron.com 2001-06-04
## 8232 stephanie.panus@enron.com 2001-06-04
## 8233 stephanie.panus@enron.com 2001-06-04
## 8234 stephanie.panus@enron.com 2001-06-04
## 8235 stephanie.panus@enron.com 2001-06-04
## 8236 stephanie.panus@enron.com 2001-06-04
## 8237 stephanie.panus@enron.com 2001-06-04
## 8238 stephanie.panus@enron.com 2001-06-04
## 8239 stephanie.panus@enron.com 2001-06-04
## 8240 stephanie.panus@enron.com 2001-06-04
## 8241 stephanie.panus@enron.com 2001-06-04
## 8242 stephanie.panus@enron.com 2001-06-04
## 8243 stephanie.panus@enron.com 2001-06-04
## 8244 stephanie.panus@enron.com 2001-06-04
## 8245 stephanie.panus@enron.com 2001-06-04
## 8246 stephanie.panus@enron.com 2001-06-04
## 8247 stephanie.panus@enron.com 2001-06-04
## 8248 stephanie.panus@enron.com 2001-06-04
## 8249 stephanie.panus@enron.com 2001-06-04
## 8250 stephanie.panus@enron.com 2001-06-04
## 8251 stephanie.panus@enron.com 2001-06-04
## 8252 stephanie.panus@enron.com 2001-06-04
## 8253 stephanie.panus@enron.com 2001-06-04
## 8254 stephanie.panus@enron.com 2001-06-04
## 8255 stephanie.panus@enron.com 2001-06-04
## 8256 stephanie.panus@enron.com 2001-06-04
## 8257 stephanie.panus@enron.com 2001-06-04
## 8258 stephanie.panus@enron.com 2001-06-04
## 8259 stephanie.panus@enron.com 2001-06-04
## 8260 stephanie.panus@enron.com 2001-06-04
## 8261 stephanie.panus@enron.com 2001-06-04
## 8262 stephanie.panus@enron.com 2001-06-04
## 8263 stephanie.panus@enron.com 2001-06-04
## 8264 stephanie.panus@enron.com 2001-06-04
## 8265 stephanie.panus@enron.com 2001-06-04
## 8266 stephanie.panus@enron.com 2001-06-04
## 8267 stephanie.panus@enron.com 2001-06-04
## 8268 stephanie.panus@enron.com 2001-06-04
## 8269 stephanie.panus@enron.com 2001-06-04
## 8270 stephanie.panus@enron.com 2001-06-04
## 8271 stephanie.panus@enron.com 2001-06-04
## 8272 stephanie.panus@enron.com 2001-06-04
## 8273 stephanie.panus@enron.com 2001-06-04
## 8274 stephanie.panus@enron.com 2001-06-04
## 8275 stephanie.panus@enron.com 2001-06-04
## 8276 stephanie.panus@enron.com 2001-06-04
## 8277 stephanie.panus@enron.com 2001-06-04
## 8278 stephanie.panus@enron.com 2001-06-04
## 8279 stephanie.panus@enron.com 2001-06-04
## 8280 stephanie.panus@enron.com 2001-06-05
## 8281 stephanie.panus@enron.com 2001-06-05
## 8282 stephanie.panus@enron.com 2001-06-05
## 8283 stephanie.panus@enron.com 2001-06-05
## 8284 stephanie.panus@enron.com 2001-06-05
## 8285 stephanie.panus@enron.com 2001-06-05
## 8286 stephanie.panus@enron.com 2001-06-05
## 8287 stephanie.panus@enron.com 2001-06-05
## 8288 stephanie.panus@enron.com 2001-06-05
## 8289 stephanie.panus@enron.com 2001-06-05
## 8290 stephanie.panus@enron.com 2001-06-05
## 8291 stephanie.panus@enron.com 2001-06-05
## 8292 stephanie.panus@enron.com 2001-06-05
## 8293 stephanie.panus@enron.com 2001-06-05
## 8294 stephanie.panus@enron.com 2001-06-05
## 8295 stephanie.panus@enron.com 2001-06-05
## 8296 stephanie.panus@enron.com 2001-06-05
## 8297 stephanie.panus@enron.com 2001-06-05
## 8298 stephanie.panus@enron.com 2001-06-05
## 8299 stephanie.panus@enron.com 2001-06-05
## 8300 stephanie.panus@enron.com 2001-06-05
## 8301 stephanie.panus@enron.com 2001-06-05
## 8302 stephanie.panus@enron.com 2001-06-05
## 8303 stephanie.panus@enron.com 2001-06-05
## 8304 stephanie.panus@enron.com 2001-06-05
## 8305 stephanie.panus@enron.com 2001-06-05
## 8306 stephanie.panus@enron.com 2001-06-05
## 8307 stephanie.panus@enron.com 2001-06-05
## 8308 stephanie.panus@enron.com 2001-06-05
## 8309 stephanie.panus@enron.com 2001-06-05
## 8310 stephanie.panus@enron.com 2001-06-05
## 8311 stephanie.panus@enron.com 2001-06-05
## 8312 stephanie.panus@enron.com 2001-06-05
## 8313 stephanie.panus@enron.com 2001-06-05
## 8314 stephanie.panus@enron.com 2001-06-05
## 8315 stephanie.panus@enron.com 2001-06-05
## 8316 stephanie.panus@enron.com 2001-06-05
## 8317 stephanie.panus@enron.com 2001-06-05
## 8318 stephanie.panus@enron.com 2001-06-05
## 8319 stephanie.panus@enron.com 2001-06-05
## 8320 stephanie.panus@enron.com 2001-06-05
## 8321 stephanie.panus@enron.com 2001-06-05
## 8322 stephanie.panus@enron.com 2001-06-05
## 8323 stephanie.panus@enron.com 2001-06-05
## 8324 stephanie.panus@enron.com 2001-06-05
## 8325 stephanie.panus@enron.com 2001-06-05
## 8326 stephanie.panus@enron.com 2001-06-05
## 8327 stephanie.panus@enron.com 2001-06-05
## 8328 stephanie.panus@enron.com 2001-06-05
## 8329 stephanie.panus@enron.com 2001-06-05
## 8330 stephanie.panus@enron.com 2001-06-05
## 8331 stephanie.panus@enron.com 2001-06-05
## 8332 stephanie.panus@enron.com 2001-06-05
## 8333 stephanie.panus@enron.com 2001-06-05
## 8334 stephanie.panus@enron.com 2001-06-05
## 8335 stephanie.panus@enron.com 2001-06-05
## 8336 stephanie.panus@enron.com 2001-06-05
## 8337 stephanie.panus@enron.com 2001-06-05
## 8338 stephanie.panus@enron.com 2001-06-05
## 8339 stephanie.panus@enron.com 2001-06-05
## 8340 stephanie.panus@enron.com 2001-06-05
## 8341 stephanie.panus@enron.com 2001-06-05
## 8342 stephanie.panus@enron.com 2001-06-05
## 8343 stephanie.panus@enron.com 2001-06-05
## 8344 stephanie.panus@enron.com 2001-06-05
## 8345 stephanie.panus@enron.com 2001-06-05
## 8346 stephanie.panus@enron.com 2001-06-05
## 8347 stephanie.panus@enron.com 2001-06-05
## 8348 stephanie.panus@enron.com 2001-06-05
## 8349 stephanie.panus@enron.com 2001-06-05
## 8350 stephanie.panus@enron.com 2001-06-05
## 8351 stephanie.panus@enron.com 2001-06-05
## 8352 stephanie.panus@enron.com 2001-06-05
## 8353 stephanie.panus@enron.com 2001-06-05
## 8354 stephanie.panus@enron.com 2001-06-05
## 8355 stephanie.panus@enron.com 2001-06-05
## 8356 stephanie.panus@enron.com 2001-06-05
## 8357 stephanie.panus@enron.com 2001-06-05
## 8358 stephanie.panus@enron.com 2001-06-05
## 8359 stephanie.panus@enron.com 2001-06-05
## 8360 stephanie.panus@enron.com 2001-06-05
## 8361 stacy.dickson@enron.com 2001-06-05
## 8362 stacy.dickson@enron.com 2001-06-05
## 8363 stacy.dickson@enron.com 2001-06-05
## 8364 carol.clair@enron.com 2001-06-05
## 8365 carol.clair@enron.com 2001-06-05
## 8366 carol.clair@enron.com 2001-06-05
## 8367 carol.clair@enron.com 2001-06-05
## 8368 carol.clair@enron.com 2001-06-05
## 8369 james.d.steffes@enron.com 2001-06-06
## 8370 james.d.steffes@enron.com 2001-06-06
## 8371 james.d.steffes@enron.com 2001-06-06
## 8372 james.d.steffes@enron.com 2001-06-06
## 8373 james.d.steffes@enron.com 2001-06-06
## 8374 james.d.steffes@enron.com 2001-06-06
## 8375 james.d.steffes@enron.com 2001-06-06
## 8376 james.d.steffes@enron.com 2001-06-06
## 8377 shelley.corman@enron.com 2001-06-06
## 8378 james.d.steffes@enron.com 2001-06-07
## 8379 james.d.steffes@enron.com 2001-06-07
## 8380 james.d.steffes@enron.com 2001-06-07
## 8381 james.d.steffes@enron.com 2001-06-07
## 8382 stephanie.panus@enron.com 2001-06-07
## 8383 stephanie.panus@enron.com 2001-06-07
## 8384 stephanie.panus@enron.com 2001-06-07
## 8385 stephanie.panus@enron.com 2001-06-07
## 8386 stephanie.panus@enron.com 2001-06-07
## 8387 stephanie.panus@enron.com 2001-06-07
## 8388 stephanie.panus@enron.com 2001-06-07
## 8389 stephanie.panus@enron.com 2001-06-07
## 8390 stephanie.panus@enron.com 2001-06-07
## 8391 stephanie.panus@enron.com 2001-06-07
## 8392 stephanie.panus@enron.com 2001-06-07
## 8393 stephanie.panus@enron.com 2001-06-07
## 8394 stephanie.panus@enron.com 2001-06-07
## 8395 stephanie.panus@enron.com 2001-06-07
## 8396 stephanie.panus@enron.com 2001-06-07
## 8397 stephanie.panus@enron.com 2001-06-07
## 8398 stephanie.panus@enron.com 2001-06-07
## 8399 stephanie.panus@enron.com 2001-06-07
## 8400 stephanie.panus@enron.com 2001-06-07
## 8401 stephanie.panus@enron.com 2001-06-07
## 8402 stephanie.panus@enron.com 2001-06-07
## 8403 stephanie.panus@enron.com 2001-06-07
## 8404 stephanie.panus@enron.com 2001-06-07
## 8405 stephanie.panus@enron.com 2001-06-07
## 8406 stephanie.panus@enron.com 2001-06-07
## 8407 stephanie.panus@enron.com 2001-06-07
## 8408 stephanie.panus@enron.com 2001-06-07
## 8409 stephanie.panus@enron.com 2001-06-07
## 8410 stephanie.panus@enron.com 2001-06-07
## 8411 stephanie.panus@enron.com 2001-06-07
## 8412 stephanie.panus@enron.com 2001-06-07
## 8413 stephanie.panus@enron.com 2001-06-07
## 8414 stephanie.panus@enron.com 2001-06-07
## 8415 stephanie.panus@enron.com 2001-06-07
## 8416 stephanie.panus@enron.com 2001-06-07
## 8417 stephanie.panus@enron.com 2001-06-07
## 8418 stephanie.panus@enron.com 2001-06-07
## 8419 stephanie.panus@enron.com 2001-06-07
## 8420 stephanie.panus@enron.com 2001-06-07
## 8421 stephanie.panus@enron.com 2001-06-07
## 8422 stephanie.panus@enron.com 2001-06-07
## 8423 stephanie.panus@enron.com 2001-06-07
## 8424 stephanie.panus@enron.com 2001-06-07
## 8425 stephanie.panus@enron.com 2001-06-07
## 8426 stephanie.panus@enron.com 2001-06-07
## 8427 stephanie.panus@enron.com 2001-06-07
## 8428 stephanie.panus@enron.com 2001-06-07
## 8429 stephanie.panus@enron.com 2001-06-07
## 8430 stephanie.panus@enron.com 2001-06-07
## 8431 stephanie.panus@enron.com 2001-06-07
## 8432 stephanie.panus@enron.com 2001-06-07
## 8433 stephanie.panus@enron.com 2001-06-07
## 8434 stephanie.panus@enron.com 2001-06-07
## 8435 stephanie.panus@enron.com 2001-06-07
## 8436 stephanie.panus@enron.com 2001-06-07
## 8437 stephanie.panus@enron.com 2001-06-07
## 8438 stephanie.panus@enron.com 2001-06-07
## 8439 stephanie.panus@enron.com 2001-06-07
## 8440 stephanie.panus@enron.com 2001-06-07
## 8441 stephanie.panus@enron.com 2001-06-07
## 8442 stephanie.panus@enron.com 2001-06-07
## 8443 stephanie.panus@enron.com 2001-06-07
## 8444 stephanie.panus@enron.com 2001-06-07
## 8445 stephanie.panus@enron.com 2001-06-07
## 8446 stephanie.panus@enron.com 2001-06-07
## 8447 stephanie.panus@enron.com 2001-06-07
## 8448 stephanie.panus@enron.com 2001-06-07
## 8449 stephanie.panus@enron.com 2001-06-07
## 8450 stephanie.panus@enron.com 2001-06-07
## 8451 stephanie.panus@enron.com 2001-06-07
## 8452 stephanie.panus@enron.com 2001-06-07
## 8453 stephanie.panus@enron.com 2001-06-07
## 8454 stephanie.panus@enron.com 2001-06-07
## 8455 stephanie.panus@enron.com 2001-06-07
## 8456 stephanie.panus@enron.com 2001-06-07
## 8457 stephanie.panus@enron.com 2001-06-07
## 8458 stephanie.panus@enron.com 2001-06-07
## 8459 stephanie.panus@enron.com 2001-06-07
## 8460 stephanie.panus@enron.com 2001-06-07
## 8461 stephanie.panus@enron.com 2001-06-07
## 8462 mark.e.taylor@enron.com 2001-06-07
## 8463 e..haedicke@enron.com 2000-12-12
## 8464 e..haedicke@enron.com 2000-12-12
## 8465 e..haedicke@enron.com 2000-12-12
## 8466 peter.keavey@enron.com 2000-12-11
## 8467 stephanie.panus@enron.com 2000-12-11
## 8468 stephanie.panus@enron.com 2000-12-11
## 8469 stephanie.panus@enron.com 2000-12-11
## 8470 stephanie.panus@enron.com 2000-12-11
## 8471 stephanie.panus@enron.com 2000-12-11
## 8472 stephanie.panus@enron.com 2000-12-11
## 8473 stephanie.panus@enron.com 2000-12-11
## 8474 stephanie.panus@enron.com 2000-12-11
## 8475 stephanie.panus@enron.com 2000-12-11
## 8476 stephanie.panus@enron.com 2000-12-11
## 8477 stephanie.panus@enron.com 2000-12-11
## 8478 stephanie.panus@enron.com 2000-12-11
## 8479 stephanie.panus@enron.com 2000-12-11
## 8480 stephanie.panus@enron.com 2000-12-11
## 8481 stephanie.panus@enron.com 2000-12-11
## 8482 stephanie.panus@enron.com 2000-12-11
## 8483 stephanie.panus@enron.com 2000-12-11
## 8484 stephanie.panus@enron.com 2000-12-11
## 8485 stephanie.panus@enron.com 2000-12-11
## 8486 stephanie.panus@enron.com 2000-12-11
## 8487 stephanie.panus@enron.com 2000-12-11
## 8488 stephanie.panus@enron.com 2000-12-11
## 8489 stephanie.panus@enron.com 2000-12-11
## 8490 stephanie.panus@enron.com 2000-12-11
## 8491 stephanie.panus@enron.com 2000-12-11
## 8492 stephanie.panus@enron.com 2000-12-11
## 8493 stephanie.panus@enron.com 2000-12-11
## 8494 stephanie.panus@enron.com 2000-12-11
## 8495 stephanie.panus@enron.com 2000-12-11
## 8496 stephanie.panus@enron.com 2000-12-11
## 8497 stephanie.panus@enron.com 2000-12-11
## 8498 stephanie.panus@enron.com 2000-12-11
## 8499 stephanie.panus@enron.com 2000-12-11
## 8500 stephanie.panus@enron.com 2000-12-11
## 8501 stephanie.panus@enron.com 2000-12-11
## 8502 stephanie.panus@enron.com 2000-12-11
## 8503 stephanie.panus@enron.com 2000-12-11
## 8504 stephanie.panus@enron.com 2000-12-11
## 8505 stephanie.panus@enron.com 2000-12-11
## 8506 stephanie.panus@enron.com 2000-12-11
## 8507 stephanie.panus@enron.com 2000-12-11
## 8508 stephanie.panus@enron.com 2000-12-11
## 8509 stephanie.panus@enron.com 2000-12-11
## 8510 stephanie.panus@enron.com 2000-12-11
## 8511 stephanie.panus@enron.com 2000-12-11
## 8512 stephanie.panus@enron.com 2000-12-11
## 8513 stephanie.panus@enron.com 2000-12-11
## 8514 stephanie.panus@enron.com 2000-12-11
## 8515 stephanie.panus@enron.com 2000-12-11
## 8516 stephanie.panus@enron.com 2000-12-11
## 8517 stephanie.panus@enron.com 2000-12-11
## 8518 stephanie.panus@enron.com 2000-12-11
## 8519 stephanie.panus@enron.com 2000-12-11
## 8520 stephanie.panus@enron.com 2000-12-11
## 8521 stephanie.panus@enron.com 2000-12-11
## 8522 stephanie.panus@enron.com 2000-12-11
## 8523 stephanie.panus@enron.com 2000-12-11
## 8524 stephanie.panus@enron.com 2000-12-11
## 8525 stephanie.panus@enron.com 2000-12-11
## 8526 stephanie.panus@enron.com 2000-12-11
## 8527 stephanie.panus@enron.com 2000-12-11
## 8528 stephanie.panus@enron.com 2000-12-11
## 8529 stephanie.panus@enron.com 2000-12-11
## 8530 stephanie.panus@enron.com 2000-12-05
## 8531 stephanie.panus@enron.com 2000-12-05
## 8532 stephanie.panus@enron.com 2000-12-05
## 8533 stephanie.panus@enron.com 2000-12-05
## 8534 stephanie.panus@enron.com 2000-12-05
## 8535 stephanie.panus@enron.com 2000-12-05
## 8536 stephanie.panus@enron.com 2000-12-05
## 8537 stephanie.panus@enron.com 2000-12-05
## 8538 stephanie.panus@enron.com 2000-12-05
## 8539 stephanie.panus@enron.com 2000-12-05
## 8540 stephanie.panus@enron.com 2000-12-05
## 8541 stephanie.panus@enron.com 2000-12-05
## 8542 stephanie.panus@enron.com 2000-12-05
## 8543 stephanie.panus@enron.com 2000-12-05
## 8544 stephanie.panus@enron.com 2000-12-05
## 8545 stephanie.panus@enron.com 2000-12-05
## 8546 stephanie.panus@enron.com 2000-12-05
## 8547 stephanie.panus@enron.com 2000-12-05
## 8548 stephanie.panus@enron.com 2000-12-05
## 8549 stephanie.panus@enron.com 2000-12-05
## 8550 stephanie.panus@enron.com 2000-12-05
## 8551 stephanie.panus@enron.com 2000-12-05
## 8552 stephanie.panus@enron.com 2000-12-05
## 8553 stephanie.panus@enron.com 2000-12-05
## 8554 stephanie.panus@enron.com 2000-12-05
## 8555 stephanie.panus@enron.com 2000-12-05
## 8556 stephanie.panus@enron.com 2000-12-05
## 8557 stephanie.panus@enron.com 2000-12-05
## 8558 stephanie.panus@enron.com 2000-12-05
## 8559 stephanie.panus@enron.com 2000-12-05
## 8560 stephanie.panus@enron.com 2000-12-05
## 8561 stephanie.panus@enron.com 2000-12-05
## 8562 stephanie.panus@enron.com 2000-12-05
## 8563 stephanie.panus@enron.com 2000-12-05
## 8564 stephanie.panus@enron.com 2000-12-05
## 8565 stephanie.panus@enron.com 2000-12-05
## 8566 stephanie.panus@enron.com 2000-12-05
## 8567 stephanie.panus@enron.com 2000-12-05
## 8568 stephanie.panus@enron.com 2000-12-05
## 8569 stephanie.panus@enron.com 2000-12-05
## 8570 stephanie.panus@enron.com 2000-12-05
## 8571 stephanie.panus@enron.com 2000-12-05
## 8572 stephanie.panus@enron.com 2000-12-05
## 8573 stephanie.panus@enron.com 2000-12-05
## 8574 stephanie.panus@enron.com 2000-12-05
## 8575 stephanie.panus@enron.com 2000-12-05
## 8576 stephanie.panus@enron.com 2000-12-05
## 8577 stephanie.panus@enron.com 2000-12-05
## 8578 stephanie.panus@enron.com 2000-12-05
## 8579 stephanie.panus@enron.com 2000-12-05
## 8580 stephanie.panus@enron.com 2000-12-05
## 8581 stephanie.panus@enron.com 2000-12-05
## 8582 stephanie.panus@enron.com 2000-12-05
## 8583 stephanie.panus@enron.com 2000-12-05
## 8584 stephanie.panus@enron.com 2000-12-05
## 8585 stephanie.panus@enron.com 2000-12-05
## 8586 stephanie.panus@enron.com 2000-12-05
## 8587 stephanie.panus@enron.com 2000-12-05
## 8588 stephanie.panus@enron.com 2000-12-05
## 8589 stephanie.panus@enron.com 2000-12-05
## 8590 stephanie.panus@enron.com 2000-12-05
## 8591 stephanie.panus@enron.com 2000-12-05
## 8592 mark.e.taylor@enron.com 2000-12-05
## 8593 carol.clair@enron.com 2000-12-04
## 8594 mark.e.taylor@enron.com 2000-11-30
## 8595 richard.b.sanders@enron.com 2000-11-30
## 8596 richard.b.sanders@enron.com 2000-11-30
## 8597 richard.b.sanders@enron.com 2000-11-30
## 8598 michelle.cash@enron.com 2000-11-13
## 8599 michelle.cash@enron.com 2000-11-13
## 8600 michelle.cash@enron.com 2000-11-13
## 8601 michelle.cash@enron.com 2000-11-13
## 8602 michelle.cash@enron.com 2000-11-13
## 8603 michelle.cash@enron.com 2000-11-13
## 8604 michelle.cash@enron.com 2000-11-13
## 8605 michelle.cash@enron.com 2000-11-13
## 8606 andy.zipper@enron.com 2000-11-10
## 8607 andy.zipper@enron.com 2000-11-10
## 8608 andy.zipper@enron.com 2000-11-10
## 8609 andy.zipper@enron.com 2000-11-10
## 8610 andy.zipper@enron.com 2000-11-10
## 8611 andy.zipper@enron.com 2000-11-10
## 8612 andy.zipper@enron.com 2000-11-10
## 8613 andy.zipper@enron.com 2000-11-02
## 8614 andy.zipper@enron.com 2000-11-02
## 8615 andy.zipper@enron.com 2000-11-02
## 8616 andy.zipper@enron.com 2000-11-02
## 8617 andy.zipper@enron.com 2000-11-02
## 8618 andy.zipper@enron.com 2000-11-02
## 8619 andy.zipper@enron.com 2000-11-02
## 8620 mark.e.taylor@enron.com 2000-11-02
## 8621 andy.zipper@enron.com 2000-11-02
## 8622 e..haedicke@enron.com 2000-10-25
## 8623 e..haedicke@enron.com 2000-10-25
## 8624 e..haedicke@enron.com 2000-10-25
## 8625 e..haedicke@enron.com 2000-10-25
## 8626 e..haedicke@enron.com 2000-10-25
## 8627 e..haedicke@enron.com 2000-10-25
## 8628 e..haedicke@enron.com 2000-10-25
## 8629 e..haedicke@enron.com 2000-10-25
## 8630 e..haedicke@enron.com 2000-10-25
## 8631 e..haedicke@enron.com 2000-10-25
## 8632 e..haedicke@enron.com 2000-10-25
## 8633 e..haedicke@enron.com 2000-10-25
## 8634 e..haedicke@enron.com 2000-10-25
## 8635 e..haedicke@enron.com 2000-10-25
## 8636 e..haedicke@enron.com 2000-10-25
## 8637 e..haedicke@enron.com 2000-10-25
## 8638 e..haedicke@enron.com 2000-10-23
## 8639 e..haedicke@enron.com 2000-10-23
## 8640 e..haedicke@enron.com 2000-10-23
## 8641 e..haedicke@enron.com 2000-10-23
## 8642 e..haedicke@enron.com 2000-10-23
## 8643 e..haedicke@enron.com 2000-10-20
## 8644 e..haedicke@enron.com 2000-10-20
## 8645 e..haedicke@enron.com 2000-10-20
## 8646 e..haedicke@enron.com 2000-10-20
## 8647 e..haedicke@enron.com 2000-10-20
## 8648 e..haedicke@enron.com 2000-10-20
## 8649 e..haedicke@enron.com 2000-10-20
## 8650 e..haedicke@enron.com 2000-10-20
## 8651 andy.zipper@enron.com 2000-10-12
## 8652 dan.hyvl@enron.com 2000-10-11
## 8653 dan.hyvl@enron.com 2000-10-11
## 8654 dan.hyvl@enron.com 2000-10-11
## 8655 dan.hyvl@enron.com 2000-10-11
## 8656 dan.hyvl@enron.com 2000-10-11
## 8657 dan.hyvl@enron.com 2000-10-11
## 8658 dan.hyvl@enron.com 2000-10-11
## 8659 dan.hyvl@enron.com 2000-10-11
## 8660 dan.hyvl@enron.com 2000-10-11
## 8661 dan.hyvl@enron.com 2000-10-11
## 8662 dan.hyvl@enron.com 2000-10-11
## 8663 dan.hyvl@enron.com 2000-10-11
## 8664 louise.kitchen@enron.com 2000-10-09
## 8665 louise.kitchen@enron.com 2000-10-09
## 8666 louise.kitchen@enron.com 2000-10-09
## 8667 louise.kitchen@enron.com 2000-10-09
## 8668 louise.kitchen@enron.com 2000-10-09
## 8669 louise.kitchen@enron.com 2000-10-09
## 8670 louise.kitchen@enron.com 2000-10-09
## 8671 louise.kitchen@enron.com 2000-10-09
## 8672 louise.kitchen@enron.com 2000-10-09
## 8673 louise.kitchen@enron.com 2000-10-09
## 8674 louise.kitchen@enron.com 2000-10-09
## 8675 louise.kitchen@enron.com 2000-10-09
## 8676 louise.kitchen@enron.com 2000-10-09
## 8677 louise.kitchen@enron.com 2000-10-09
## 8678 louise.kitchen@enron.com 2000-10-09
## 8679 richard.b.sanders@enron.com 2000-10-06
## 8680 richard.b.sanders@enron.com 2000-10-06
## 8681 richard.b.sanders@enron.com 2000-10-06
## 8682 richard.b.sanders@enron.com 2000-10-06
## 8683 richard.b.sanders@enron.com 2000-10-06
## 8684 richard.b.sanders@enron.com 2000-10-06
## 8685 richard.b.sanders@enron.com 2000-10-06
## 8686 richard.b.sanders@enron.com 2000-10-06
## 8687 mark.e.taylor@enron.com 2000-10-04
## 8688 shelley.corman@enron.com 2000-10-02
## 8689 shelley.corman@enron.com 2000-10-02
## 8690 shelley.corman@enron.com 2000-10-02
## 8691 shelley.corman@enron.com 2000-10-02
## 8692 shelley.corman@enron.com 2000-10-02
## 8693 louise.kitchen@enron.com 2000-10-02
## 8694 mark.e.taylor@enron.com 2000-09-25
## 8695 e..haedicke@enron.com 2000-09-19
## 8696 e..haedicke@enron.com 2000-09-19
## 8697 e..haedicke@enron.com 2000-09-19
## 8698 e..haedicke@enron.com 2000-09-19
## 8699 e..haedicke@enron.com 2000-09-19
## 8700 e..haedicke@enron.com 2000-09-19
## 8701 louise.kitchen@enron.com 2000-09-15
## 8702 louise.kitchen@enron.com 2000-09-15
## 8703 louise.kitchen@enron.com 2000-09-15
## 8704 louise.kitchen@enron.com 2000-09-15
## 8705 louise.kitchen@enron.com 2000-09-15
## 8706 louise.kitchen@enron.com 2000-09-15
## 8707 andy.zipper@enron.com 2000-09-15
## 8708 carol.clair@enron.com 2000-09-14
## 8709 mark.e.taylor@enron.com 2000-09-05
## 8710 mark.e.taylor@enron.com 2000-09-05
## 8711 carol.clair@enron.com 2000-09-01
## 8712 carol.clair@enron.com 2000-09-01
## 8713 louise.kitchen@enron.com 2000-08-28
## 8714 louise.kitchen@enron.com 2000-08-28
## 8715 louise.kitchen@enron.com 2000-08-28
## 8716 louise.kitchen@enron.com 2000-08-22
## 8717 louise.kitchen@enron.com 2000-08-22
## 8718 louise.kitchen@enron.com 2000-08-22
## 8719 louise.kitchen@enron.com 2000-08-22
## 8720 louise.kitchen@enron.com 2000-08-22
## 8721 louise.kitchen@enron.com 2000-08-17
## 8722 louise.kitchen@enron.com 2000-08-17
## 8723 louise.kitchen@enron.com 2000-08-17
## 8724 louise.kitchen@enron.com 2000-08-17
## 8725 louise.kitchen@enron.com 2000-08-17
## 8726 louise.kitchen@enron.com 2000-08-17
## 8727 e..haedicke@enron.com 2000-08-14
## 8728 e..haedicke@enron.com 2000-08-14
## 8729 e..haedicke@enron.com 2000-08-14
## 8730 e..haedicke@enron.com 2000-08-14
## 8731 e..haedicke@enron.com 2000-08-14
## 8732 carol.clair@enron.com 2000-08-09
## 8733 carol.clair@enron.com 2000-08-09
## 8734 carol.clair@enron.com 2000-08-09
## 8735 carol.clair@enron.com 2000-08-04
## 8736 louise.kitchen@enron.com 2000-08-04
## 8737 louise.kitchen@enron.com 2000-08-04
## 8738 louise.kitchen@enron.com 2000-08-04
## 8739 louise.kitchen@enron.com 2000-08-04
## 8740 louise.kitchen@enron.com 2000-08-04
## 8741 louise.kitchen@enron.com 2000-08-04
## 8742 louise.kitchen@enron.com 2000-08-01
## 8743 louise.kitchen@enron.com 2000-08-01
## 8744 louise.kitchen@enron.com 2000-08-01
## 8745 louise.kitchen@enron.com 2000-08-01
## 8746 carol.clair@enron.com 2000-08-01
## 8747 carol.clair@enron.com 2000-08-01
## 8748 carol.clair@enron.com 2000-08-01
## 8749 carol.clair@enron.com 2000-08-01
## 8750 carol.clair@enron.com 2000-08-01
## 8751 carol.clair@enron.com 2000-07-30
## 8752 carol.clair@enron.com 2000-07-30
## 8753 carol.clair@enron.com 2000-07-30
## 8754 louise.kitchen@enron.com 2000-07-25
## 8755 louise.kitchen@enron.com 2000-07-25
## 8756 louise.kitchen@enron.com 2000-07-20
## 8757 carol.clair@enron.com 2000-07-19
## 8758 carol.clair@enron.com 2000-07-19
## 8759 carol.clair@enron.com 2000-07-18
## 8760 carol.clair@enron.com 2000-07-18
## 8761 carol.clair@enron.com 2000-07-18
## 8762 louise.kitchen@enron.com 2000-07-13
## 8763 louise.kitchen@enron.com 2000-07-13
## 8764 louise.kitchen@enron.com 2000-07-13
## 8765 carol.clair@enron.com 2000-07-11
## 8766 carol.clair@enron.com 2000-07-11
## 8767 carol.clair@enron.com 2000-07-11
## 8768 andy.zipper@enron.com 2000-07-11
## 8769 carol.clair@enron.com 2000-07-10
## 8770 carol.clair@enron.com 2000-07-10
## 8771 carol.clair@enron.com 2000-07-10
## 8772 carol.clair@enron.com 2000-07-10
## 8773 louise.kitchen@enron.com 2000-07-10
## 8774 carol.clair@enron.com 2000-07-07
## 8775 carol.clair@enron.com 2000-07-07
## 8776 carol.clair@enron.com 2000-07-07
## 8777 carol.clair@enron.com 2000-07-07
## 8778 carol.clair@enron.com 2000-07-07
## 8779 carol.clair@enron.com 2000-07-06
## 8780 carol.clair@enron.com 2000-07-06
## 8781 carol.clair@enron.com 2000-07-06
## 8782 carol.clair@enron.com 2000-07-06
## 8783 carol.clair@enron.com 2000-07-06
## 8784 carol.clair@enron.com 2000-07-06
## 8785 carol.clair@enron.com 2000-07-06
## 8786 carol.clair@enron.com 2000-07-05
## 8787 carol.clair@enron.com 2000-07-05
## 8788 carol.clair@enron.com 2000-07-05
## 8789 carol.clair@enron.com 2000-07-05
## 8790 carol.clair@enron.com 2000-07-05
## 8791 carol.clair@enron.com 2000-07-05
## 8792 carol.clair@enron.com 2000-07-05
## 8793 carol.clair@enron.com 2000-07-05
## 8794 carol.clair@enron.com 2000-07-05
## 8795 carol.clair@enron.com 2000-07-05
## 8796 andy.zipper@enron.com 2000-07-05
## 8797 andy.zipper@enron.com 2000-07-05
## 8798 andy.zipper@enron.com 2000-07-05
## 8799 andy.zipper@enron.com 2000-07-05
## 8800 louise.kitchen@enron.com 2000-07-05
## 8801 louise.kitchen@enron.com 2000-07-05
## 8802 louise.kitchen@enron.com 2000-07-05
## 8803 louise.kitchen@enron.com 2000-07-05
## 8804 louise.kitchen@enron.com 2000-07-05
## 8805 louise.kitchen@enron.com 2000-07-05
## 8806 louise.kitchen@enron.com 2000-07-05
## 8807 louise.kitchen@enron.com 2000-07-05
## 8808 louise.kitchen@enron.com 2000-07-05
## 8809 louise.kitchen@enron.com 2000-07-05
## 8810 louise.kitchen@enron.com 2000-07-05
## 8811 louise.kitchen@enron.com 2000-07-05
## 8812 louise.kitchen@enron.com 2000-07-05
## 8813 louise.kitchen@enron.com 2000-07-05
## 8814 louise.kitchen@enron.com 2000-07-05
## 8815 louise.kitchen@enron.com 2000-07-05
## 8816 louise.kitchen@enron.com 2000-07-05
## 8817 louise.kitchen@enron.com 2000-07-05
## 8818 carol.clair@enron.com 2000-07-05
## 8819 carol.clair@enron.com 2000-07-05
## 8820 carol.clair@enron.com 2000-07-05
## 8821 carol.clair@enron.com 2000-07-05
## 8822 carol.clair@enron.com 2000-07-05
## 8823 carol.clair@enron.com 2000-06-30
## 8824 carol.clair@enron.com 2000-06-30
## 8825 carol.clair@enron.com 2000-06-30
## 8826 carol.clair@enron.com 2000-06-30
## 8827 e..haedicke@enron.com 2000-06-30
## 8828 carol.clair@enron.com 2000-06-29
## 8829 carol.clair@enron.com 2000-06-29
## 8830 carol.clair@enron.com 2000-06-29
## 8831 carol.clair@enron.com 2000-06-29
## 8832 carol.clair@enron.com 2000-06-29
## 8833 carol.clair@enron.com 2000-06-29
## 8834 carol.clair@enron.com 2000-06-29
## 8835 carol.clair@enron.com 2000-06-29
## 8836 carol.clair@enron.com 2000-06-29
## 8837 carol.clair@enron.com 2000-06-29
## 8838 carol.clair@enron.com 2000-06-29
## 8839 carol.clair@enron.com 2000-06-29
## 8840 carol.clair@enron.com 2000-06-29
## 8841 carol.clair@enron.com 2000-06-29
## 8842 carol.clair@enron.com 2000-06-29
## 8843 carol.clair@enron.com 2000-06-29
## 8844 carol.clair@enron.com 2000-06-29
## 8845 carol.clair@enron.com 2000-06-29
## 8846 carol.clair@enron.com 2000-06-29
## 8847 carol.clair@enron.com 2000-06-29
## 8848 carol.clair@enron.com 2000-06-29
## 8849 carol.clair@enron.com 2000-06-29
## 8850 carol.clair@enron.com 2000-06-29
## 8851 carol.clair@enron.com 2000-06-29
## 8852 carol.clair@enron.com 2000-06-29
## 8853 carol.clair@enron.com 2000-06-29
## 8854 carol.clair@enron.com 2000-06-29
## 8855 carol.clair@enron.com 2000-06-29
## 8856 carol.clair@enron.com 2000-06-29
## 8857 carol.clair@enron.com 2000-06-29
## 8858 carol.clair@enron.com 2000-06-29
## 8859 carol.clair@enron.com 2000-06-29
## 8860 carol.clair@enron.com 2000-06-29
## 8861 carol.clair@enron.com 2000-06-29
## 8862 carol.clair@enron.com 2000-06-29
## 8863 carol.clair@enron.com 2000-06-29
## 8864 carol.clair@enron.com 2000-06-29
## 8865 carol.clair@enron.com 2000-06-29
## 8866 carol.clair@enron.com 2000-06-29
## 8867 carol.clair@enron.com 2000-06-29
## 8868 carol.clair@enron.com 2000-06-29
## 8869 carol.clair@enron.com 2000-06-29
## 8870 carol.clair@enron.com 2000-06-29
## 8871 carol.clair@enron.com 2000-06-29
## 8872 carol.clair@enron.com 2000-06-29
## 8873 carol.clair@enron.com 2000-06-29
## 8874 carol.clair@enron.com 2000-06-29
## 8875 carol.clair@enron.com 2000-06-29
## 8876 carol.clair@enron.com 2000-06-29
## 8877 carol.clair@enron.com 2000-06-29
## 8878 carol.clair@enron.com 2000-06-29
## 8879 carol.clair@enron.com 2000-06-29
## 8880 carol.clair@enron.com 2000-06-29
## 8881 carol.clair@enron.com 2000-06-29
## 8882 carol.clair@enron.com 2000-06-29
## 8883 carol.clair@enron.com 2000-06-29
## 8884 carol.clair@enron.com 2000-06-29
## 8885 carol.clair@enron.com 2000-06-29
## 8886 carol.clair@enron.com 2000-06-29
## 8887 carol.clair@enron.com 2000-06-29
## 8888 carol.clair@enron.com 2000-06-29
## 8889 carol.clair@enron.com 2000-06-29
## 8890 carol.clair@enron.com 2000-06-29
## 8891 carol.clair@enron.com 2000-06-29
## 8892 carol.clair@enron.com 2000-06-29
## 8893 carol.clair@enron.com 2000-06-29
## 8894 carol.clair@enron.com 2000-06-29
## 8895 carol.clair@enron.com 2000-06-29
## 8896 carol.clair@enron.com 2000-06-29
## 8897 carol.clair@enron.com 2000-06-29
## 8898 carol.clair@enron.com 2000-06-29
## 8899 carol.clair@enron.com 2000-06-29
## 8900 carol.clair@enron.com 2000-06-29
## 8901 carol.clair@enron.com 2000-06-29
## 8902 carol.clair@enron.com 2000-06-29
## 8903 carol.clair@enron.com 2000-06-29
## 8904 louise.kitchen@enron.com 2000-06-27
## 8905 louise.kitchen@enron.com 2000-06-27
## 8906 louise.kitchen@enron.com 2000-06-27
## 8907 louise.kitchen@enron.com 2000-06-27
## 8908 louise.kitchen@enron.com 2000-06-27
## 8909 louise.kitchen@enron.com 2000-06-27
## 8910 louise.kitchen@enron.com 2000-06-27
## 8911 louise.kitchen@enron.com 2000-06-27
## 8912 carol.clair@enron.com 2000-06-22
## 8913 carol.clair@enron.com 2000-06-22
## 8914 carol.clair@enron.com 2000-06-22
## 8915 carol.clair@enron.com 2000-06-22
## 8916 carol.clair@enron.com 2000-06-22
## 8917 andy.zipper@enron.com 2000-06-21
## 8918 andy.zipper@enron.com 2000-06-16
## 8919 carol.clair@enron.com 2000-06-16
## 8920 carol.clair@enron.com 2000-06-16
## 8921 carol.clair@enron.com 2000-06-16
## 8922 carol.clair@enron.com 2000-06-16
## 8923 carol.clair@enron.com 2000-06-16
## 8924 carol.clair@enron.com 2000-06-16
## 8925 carol.clair@enron.com 2000-06-16
## 8926 carol.clair@enron.com 2000-06-16
## 8927 e..haedicke@enron.com 2000-06-12
## 8928 andy.zipper@enron.com 2000-06-08
## 8929 andy.zipper@enron.com 2000-06-08
## 8930 andy.zipper@enron.com 2000-06-08
## 8931 andy.zipper@enron.com 2000-06-08
## 8932 andy.zipper@enron.com 2000-06-08
## 8933 andy.zipper@enron.com 2000-06-08
## 8934 andy.zipper@enron.com 2000-06-08
## 8935 andy.zipper@enron.com 2000-06-08
## 8936 andy.zipper@enron.com 2000-06-08
## 8937 carol.clair@enron.com 2000-06-07
## 8938 carol.clair@enron.com 2000-06-07
## 8939 carol.clair@enron.com 2000-06-07
## 8940 carol.clair@enron.com 2000-06-07
## 8941 carol.clair@enron.com 2000-06-07
## 8942 carol.clair@enron.com 2000-06-07
## 8943 carol.clair@enron.com 2000-06-07
## 8944 carol.clair@enron.com 2000-06-07
## 8945 carol.clair@enron.com 2000-06-07
## 8946 carol.clair@enron.com 2000-06-07
## 8947 carol.clair@enron.com 2000-06-07
## 8948 andy.zipper@enron.com 2000-06-06
## 8949 andy.zipper@enron.com 2000-06-06
## 8950 andy.zipper@enron.com 2000-06-06
## 8951 andy.zipper@enron.com 2000-06-06
## 8952 andy.zipper@enron.com 2000-06-06
## 8953 andy.zipper@enron.com 2000-06-06
## 8954 andy.zipper@enron.com 2000-06-06
## 8955 louise.kitchen@enron.com 2000-06-06
## 8956 louise.kitchen@enron.com 2000-06-06
## 8957 louise.kitchen@enron.com 2000-06-06
## 8958 louise.kitchen@enron.com 2000-06-06
## 8959 louise.kitchen@enron.com 2000-06-06
## 8960 louise.kitchen@enron.com 2000-06-06
## 8961 louise.kitchen@enron.com 2000-06-06
## 8962 carol.clair@enron.com 2000-06-05
## 8963 carol.clair@enron.com 2000-06-05
## 8964 carol.clair@enron.com 2000-06-05
## 8965 carol.clair@enron.com 2000-06-01
## 8966 carol.clair@enron.com 2000-06-01
## 8967 carol.clair@enron.com 2000-06-01
## 8968 carol.clair@enron.com 2000-06-01
## 8969 carol.clair@enron.com 2000-06-01
## 8970 carol.clair@enron.com 2000-05-31
## 8971 carol.clair@enron.com 2000-05-23
## 8972 carol.clair@enron.com 2000-05-23
## 8973 carol.clair@enron.com 2000-05-23
## 8974 andy.zipper@enron.com 2000-05-23
## 8975 andy.zipper@enron.com 2000-05-22
## 8976 carol.clair@enron.com 2000-05-22
## 8977 carol.clair@enron.com 2000-05-19
## 8978 carol.clair@enron.com 2000-05-19
## 8979 carol.clair@enron.com 2000-05-19
## 8980 carol.clair@enron.com 2000-05-19
## 8981 carol.clair@enron.com 2000-05-19
## 8982 carol.clair@enron.com 2000-05-19
## 8983 carol.clair@enron.com 2000-05-19
## 8984 carol.clair@enron.com 2000-05-19
## 8985 carol.clair@enron.com 2000-05-19
## 8986 carol.clair@enron.com 2000-05-19
## 8987 carol.clair@enron.com 2000-05-19
## 8988 carol.clair@enron.com 2000-05-19
## 8989 carol.clair@enron.com 2000-05-19
## 8990 carol.clair@enron.com 2000-05-19
## 8991 carol.clair@enron.com 2000-05-19
## 8992 carol.clair@enron.com 2000-05-19
## 8993 carol.clair@enron.com 2000-05-19
## 8994 carol.clair@enron.com 2000-05-19
## 8995 carol.clair@enron.com 2000-05-19
## 8996 carol.clair@enron.com 2000-05-19
## 8997 carol.clair@enron.com 2000-05-19
## 8998 carol.clair@enron.com 2000-05-19
## 8999 carol.clair@enron.com 2000-05-19
## 9000 carol.clair@enron.com 2000-05-18
## 9001 carol.clair@enron.com 2000-05-18
## 9002 carol.clair@enron.com 2000-05-18
## 9003 carol.clair@enron.com 2000-05-17
## 9004 carol.clair@enron.com 2000-05-17
## 9005 carol.clair@enron.com 2000-05-17
## 9006 louise.kitchen@enron.com 2000-05-16
## 9007 louise.kitchen@enron.com 2000-05-16
## 9008 louise.kitchen@enron.com 2000-05-16
## 9009 mark.e.taylor@enron.com 2000-05-16
## 9010 mark.e.taylor@enron.com 2000-05-16
## 9011 louise.kitchen@enron.com 2000-05-15
## 9012 louise.kitchen@enron.com 2000-05-15
## 9013 louise.kitchen@enron.com 2000-05-15
## 9014 louise.kitchen@enron.com 2000-05-15
## 9015 louise.kitchen@enron.com 2000-05-15
## 9016 louise.kitchen@enron.com 2000-05-15
## 9017 louise.kitchen@enron.com 2000-05-15
## 9018 carol.clair@enron.com 2000-05-12
## 9019 carol.clair@enron.com 2000-05-12
## 9020 carol.clair@enron.com 2000-05-12
## 9021 carol.clair@enron.com 2000-05-12
## 9022 carol.clair@enron.com 2000-05-12
## 9023 carol.clair@enron.com 2000-05-12
## 9024 carol.clair@enron.com 2000-05-12
## 9025 carol.clair@enron.com 2000-05-12
## 9026 carol.clair@enron.com 2000-05-12
## 9027 carol.clair@enron.com 2000-05-12
## 9028 carol.clair@enron.com 2000-05-12
## 9029 carol.clair@enron.com 2000-05-12
## 9030 carol.clair@enron.com 2000-05-11
## 9031 carol.clair@enron.com 2000-05-11
## 9032 carol.clair@enron.com 2000-05-11
## 9033 carol.clair@enron.com 2000-05-11
## 9034 carol.clair@enron.com 2000-05-11
## 9035 carol.clair@enron.com 2000-05-11
## 9036 carol.clair@enron.com 2000-05-11
## 9037 carol.clair@enron.com 2000-05-11
## 9038 carol.clair@enron.com 2000-05-11
## 9039 carol.clair@enron.com 2000-05-11
## 9040 carol.clair@enron.com 2000-05-11
## 9041 carol.clair@enron.com 2000-05-11
## 9042 carol.clair@enron.com 2000-05-11
## 9043 carol.clair@enron.com 2000-05-11
## 9044 carol.clair@enron.com 2000-05-11
## 9045 carol.clair@enron.com 2000-05-11
## 9046 carol.clair@enron.com 2000-05-11
## 9047 carol.clair@enron.com 2000-05-11
## 9048 carol.clair@enron.com 2000-05-11
## 9049 carol.clair@enron.com 2000-05-11
## 9050 carol.clair@enron.com 2000-05-11
## 9051 carol.clair@enron.com 2000-05-11
## 9052 carol.clair@enron.com 2000-05-11
## 9053 carol.clair@enron.com 2000-05-11
## 9054 carol.clair@enron.com 2000-05-11
## 9055 carol.clair@enron.com 2000-05-11
## 9056 carol.clair@enron.com 2000-05-11
## 9057 carol.clair@enron.com 2000-05-11
## 9058 carol.clair@enron.com 2000-05-11
## 9059 carol.clair@enron.com 2000-05-11
## 9060 carol.clair@enron.com 2000-05-11
## 9061 carol.clair@enron.com 2000-05-11
## 9062 carol.clair@enron.com 2000-05-11
## 9063 carol.clair@enron.com 2000-05-11
## 9064 carol.clair@enron.com 2000-05-11
## 9065 carol.clair@enron.com 2000-05-11
## 9066 carol.clair@enron.com 2000-05-10
## 9067 carol.clair@enron.com 2000-05-08
## 9068 carol.clair@enron.com 2000-05-08
## 9069 carol.clair@enron.com 2000-05-08
## 9070 carol.clair@enron.com 2000-05-05
## 9071 carol.clair@enron.com 2000-05-05
## 9072 carol.clair@enron.com 2000-05-05
## 9073 carol.clair@enron.com 2000-05-05
## 9074 carol.clair@enron.com 2000-05-05
## 9075 carol.clair@enron.com 2000-05-04
## 9076 carol.clair@enron.com 2000-05-04
## 9077 carol.clair@enron.com 2000-05-04
## 9078 carol.clair@enron.com 2000-05-04
## 9079 carol.clair@enron.com 2000-05-04
## 9080 carol.clair@enron.com 2000-05-04
## 9081 carol.clair@enron.com 2000-05-04
## 9082 carol.clair@enron.com 2000-05-04
## 9083 carol.clair@enron.com 2000-05-04
## 9084 carol.clair@enron.com 2000-05-01
## 9085 carol.clair@enron.com 2000-05-01
## 9086 carol.clair@enron.com 2000-05-01
## 9087 carol.clair@enron.com 2000-05-01
## 9088 carol.clair@enron.com 2000-05-01
## 9089 carol.clair@enron.com 2000-05-01
## 9090 carol.clair@enron.com 2000-05-01
## 9091 carol.clair@enron.com 2000-04-28
## 9092 carol.clair@enron.com 2000-04-28
## 9093 carol.clair@enron.com 2000-04-28
## 9094 carol.clair@enron.com 2000-04-28
## 9095 carol.clair@enron.com 2000-04-28
## 9096 louise.kitchen@enron.com 2000-04-28
## 9097 louise.kitchen@enron.com 2000-04-28
## 9098 louise.kitchen@enron.com 2000-04-28
## 9099 louise.kitchen@enron.com 2000-04-28
## 9100 louise.kitchen@enron.com 2000-04-28
## 9101 louise.kitchen@enron.com 2000-04-28
## 9102 louise.kitchen@enron.com 2000-04-28
## 9103 mark.e.taylor@enron.com 2000-04-24
## 9104 louise.kitchen@enron.com 2000-04-20
## 9105 louise.kitchen@enron.com 2000-04-20
## 9106 louise.kitchen@enron.com 2000-04-20
## 9107 louise.kitchen@enron.com 2000-04-20
## 9108 louise.kitchen@enron.com 2000-04-20
## 9109 louise.kitchen@enron.com 2000-04-20
## 9110 louise.kitchen@enron.com 2000-04-20
## 9111 louise.kitchen@enron.com 2000-04-20
## 9112 carol.clair@enron.com 2000-04-19
## 9113 carol.clair@enron.com 2000-04-17
## 9114 carol.clair@enron.com 2000-04-11
## 9115 carol.clair@enron.com 2000-04-11
## 9116 carol.clair@enron.com 2000-04-11
## 9117 carol.clair@enron.com 2000-04-11
## 9118 carol.clair@enron.com 2000-04-11
## 9119 carol.clair@enron.com 2000-04-05
## 9120 carol.clair@enron.com 2000-04-05
## 9121 carol.clair@enron.com 2000-04-05
## 9122 carol.clair@enron.com 2000-04-05
## 9123 carol.clair@enron.com 2000-04-05
## 9124 carol.clair@enron.com 2000-04-05
## 9125 carol.clair@enron.com 2000-04-05
## 9126 carol.clair@enron.com 2000-04-05
## 9127 carol.clair@enron.com 2000-04-05
## 9128 carol.clair@enron.com 2000-04-05
## 9129 carol.clair@enron.com 2000-04-05
## 9130 carol.clair@enron.com 2000-04-05
## 9131 carol.clair@enron.com 2000-04-05
## 9132 mark.e.taylor@enron.com 2000-04-05
## 9133 carol.clair@enron.com 2000-04-03
## 9134 carol.clair@enron.com 2000-04-03
## 9135 carol.clair@enron.com 2000-04-03
## 9136 carol.clair@enron.com 2000-04-03
## 9137 carol.clair@enron.com 2000-04-03
## 9138 carol.clair@enron.com 2000-04-03
## 9139 carol.clair@enron.com 2000-04-03
## 9140 carol.clair@enron.com 2000-04-03
## 9141 carol.clair@enron.com 2000-04-03
## 9142 carol.clair@enron.com 2000-04-03
## 9143 carol.clair@enron.com 2000-04-03
## 9144 carol.clair@enron.com 2000-04-03
## 9145 carol.clair@enron.com 2000-04-03
## 9146 carol.clair@enron.com 2000-03-30
## 9147 carol.clair@enron.com 2000-03-30
## 9148 carol.clair@enron.com 2000-03-30
## 9149 carol.clair@enron.com 2000-03-28
## 9150 carol.clair@enron.com 2000-03-28
## 9151 carol.clair@enron.com 2000-03-28
## 9152 carol.clair@enron.com 2000-03-28
## 9153 carol.clair@enron.com 2000-03-28
## 9154 carol.clair@enron.com 2000-03-28
## 9155 carol.clair@enron.com 2000-03-28
## 9156 louise.kitchen@enron.com 2000-03-27
## 9157 mark.e.taylor@enron.com 2000-03-23
## 9158 carol.clair@enron.com 2000-03-21
## 9159 carol.clair@enron.com 2000-03-21
## 9160 carol.clair@enron.com 2000-03-21
## 9161 carol.clair@enron.com 2000-03-21
## 9162 carol.clair@enron.com 2000-03-21
## 9163 carol.clair@enron.com 2000-03-21
## 9164 carol.clair@enron.com 2000-03-20
## 9165 carol.clair@enron.com 2000-03-20
## 9166 carol.clair@enron.com 2000-03-20
## 9167 carol.clair@enron.com 2000-03-17
## 9168 carol.clair@enron.com 2000-03-17
## 9169 carol.clair@enron.com 2000-03-17
## 9170 mark.e.taylor@enron.com 2000-03-17
## 9171 carol.clair@enron.com 2000-03-10
## 9172 carol.clair@enron.com 2000-03-10
## 9173 carol.clair@enron.com 2000-03-10
## 9174 carol.clair@enron.com 2000-03-10
## 9175 carol.clair@enron.com 2000-03-10
## 9176 carol.clair@enron.com 2000-03-10
## 9177 carol.clair@enron.com 2000-03-10
## 9178 carol.clair@enron.com 2000-03-10
## 9179 carol.clair@enron.com 2000-03-10
## 9180 tori.kuykendall@enron.com 2000-03-09
## 9181 tori.kuykendall@enron.com 2000-03-09
## 9182 tori.kuykendall@enron.com 2000-03-09
## 9183 louise.kitchen@enron.com 2000-03-08
## 9184 louise.kitchen@enron.com 2000-03-08
## 9185 carol.clair@enron.com 2000-03-06
## 9186 carol.clair@enron.com 2000-03-06
## 9187 carol.clair@enron.com 2000-03-06
## 9188 carol.clair@enron.com 2000-03-06
## 9189 carol.clair@enron.com 2000-03-06
## 9190 carol.clair@enron.com 2000-03-06
## 9191 carol.clair@enron.com 2000-03-06
## 9192 carol.clair@enron.com 2000-03-06
## 9193 carol.clair@enron.com 2000-03-06
## 9194 carol.clair@enron.com 2000-03-06
## 9195 carol.clair@enron.com 2000-03-06
## 9196 carol.clair@enron.com 2000-03-06
## 9197 carol.clair@enron.com 2000-03-06
## 9198 carol.clair@enron.com 2000-03-06
## 9199 carol.clair@enron.com 2000-03-06
## 9200 carol.clair@enron.com 2000-03-06
## 9201 carol.clair@enron.com 2000-03-06
## 9202 carol.clair@enron.com 2000-03-06
## 9203 carol.clair@enron.com 2000-03-03
## 9204 carol.clair@enron.com 2000-03-02
## 9205 carol.clair@enron.com 2000-03-02
## 9206 carol.clair@enron.com 2000-03-02
## 9207 carol.clair@enron.com 2000-03-02
## 9208 carol.clair@enron.com 2000-03-02
## 9209 carol.clair@enron.com 2000-03-02
## 9210 carol.clair@enron.com 2000-03-02
## 9211 carol.clair@enron.com 2000-03-02
## 9212 mark.e.taylor@enron.com 2000-02-29
## 9213 mark.e.taylor@enron.com 2000-02-28
## 9214 louise.kitchen@enron.com 2000-02-28
## 9215 louise.kitchen@enron.com 2000-02-28
## 9216 louise.kitchen@enron.com 2000-02-28
## 9217 louise.kitchen@enron.com 2000-02-28
## 9218 louise.kitchen@enron.com 2000-02-28
## 9219 louise.kitchen@enron.com 2000-02-28
## 9220 louise.kitchen@enron.com 2000-02-28
## 9221 louise.kitchen@enron.com 2000-02-28
## 9222 louise.kitchen@enron.com 2000-02-28
## 9223 louise.kitchen@enron.com 2000-02-28
## 9224 louise.kitchen@enron.com 2000-02-28
## 9225 louise.kitchen@enron.com 2000-02-28
## 9226 louise.kitchen@enron.com 2000-02-28
## 9227 louise.kitchen@enron.com 2000-02-28
## 9228 louise.kitchen@enron.com 2000-02-28
## 9229 louise.kitchen@enron.com 2000-02-28
## 9230 louise.kitchen@enron.com 2000-02-28
## 9231 louise.kitchen@enron.com 2000-02-28
## 9232 louise.kitchen@enron.com 2000-02-28
## 9233 louise.kitchen@enron.com 2000-02-28
## 9234 louise.kitchen@enron.com 2000-02-28
## 9235 louise.kitchen@enron.com 2000-02-28
## 9236 louise.kitchen@enron.com 2000-02-28
## 9237 louise.kitchen@enron.com 2000-02-28
## 9238 louise.kitchen@enron.com 2000-02-28
## 9239 louise.kitchen@enron.com 2000-02-28
## 9240 louise.kitchen@enron.com 2000-02-28
## 9241 louise.kitchen@enron.com 2000-02-28
## 9242 louise.kitchen@enron.com 2000-02-28
## 9243 louise.kitchen@enron.com 2000-02-28
## 9244 louise.kitchen@enron.com 2000-02-28
## 9245 louise.kitchen@enron.com 2000-02-28
## 9246 louise.kitchen@enron.com 2000-02-28
## 9247 louise.kitchen@enron.com 2000-02-28
## 9248 louise.kitchen@enron.com 2000-02-28
## 9249 louise.kitchen@enron.com 2000-02-28
## 9250 louise.kitchen@enron.com 2000-02-28
## 9251 louise.kitchen@enron.com 2000-02-28
## 9252 louise.kitchen@enron.com 2000-02-28
## 9253 louise.kitchen@enron.com 2000-02-28
## 9254 louise.kitchen@enron.com 2000-02-28
## 9255 louise.kitchen@enron.com 2000-02-28
## 9256 louise.kitchen@enron.com 2000-02-28
## 9257 louise.kitchen@enron.com 2000-02-28
## 9258 louise.kitchen@enron.com 2000-02-28
## 9259 louise.kitchen@enron.com 2000-02-28
## 9260 louise.kitchen@enron.com 2000-02-28
## 9261 louise.kitchen@enron.com 2000-02-28
## 9262 louise.kitchen@enron.com 2000-02-28
## 9263 louise.kitchen@enron.com 2000-02-28
## 9264 louise.kitchen@enron.com 2000-02-28
## 9265 louise.kitchen@enron.com 2000-02-28
## 9266 louise.kitchen@enron.com 2000-02-28
## 9267 louise.kitchen@enron.com 2000-02-28
## 9268 louise.kitchen@enron.com 2000-02-28
## 9269 louise.kitchen@enron.com 2000-02-28
## 9270 louise.kitchen@enron.com 2000-02-28
## 9271 louise.kitchen@enron.com 2000-02-28
## 9272 louise.kitchen@enron.com 2000-02-28
## 9273 louise.kitchen@enron.com 2000-02-28
## 9274 louise.kitchen@enron.com 2000-02-28
## 9275 louise.kitchen@enron.com 2000-02-28
## 9276 louise.kitchen@enron.com 2000-02-28
## 9277 louise.kitchen@enron.com 2000-02-28
## 9278 louise.kitchen@enron.com 2000-02-28
## 9279 louise.kitchen@enron.com 2000-02-28
## 9280 louise.kitchen@enron.com 2000-02-28
## 9281 louise.kitchen@enron.com 2000-02-28
## 9282 louise.kitchen@enron.com 2000-02-28
## 9283 louise.kitchen@enron.com 2000-02-28
## 9284 louise.kitchen@enron.com 2000-02-28
## 9285 louise.kitchen@enron.com 2000-02-28
## 9286 louise.kitchen@enron.com 2000-02-28
## 9287 louise.kitchen@enron.com 2000-02-28
## 9288 louise.kitchen@enron.com 2000-02-28
## 9289 louise.kitchen@enron.com 2000-02-28
## 9290 louise.kitchen@enron.com 2000-02-28
## 9291 louise.kitchen@enron.com 2000-02-28
## 9292 louise.kitchen@enron.com 2000-02-28
## 9293 louise.kitchen@enron.com 2000-02-28
## 9294 louise.kitchen@enron.com 2000-02-28
## 9295 louise.kitchen@enron.com 2000-02-28
## 9296 louise.kitchen@enron.com 2000-02-28
## 9297 louise.kitchen@enron.com 2000-02-28
## 9298 louise.kitchen@enron.com 2000-02-28
## 9299 louise.kitchen@enron.com 2000-02-28
## 9300 carol.clair@enron.com 2000-02-28
## 9301 carol.clair@enron.com 2000-02-28
## 9302 carol.clair@enron.com 2000-02-28
## 9303 carol.clair@enron.com 2000-02-28
## 9304 carol.clair@enron.com 2000-02-28
## 9305 carol.clair@enron.com 2000-02-28
## 9306 carol.clair@enron.com 2000-02-28
## 9307 carol.clair@enron.com 2000-02-28
## 9308 carol.clair@enron.com 2000-02-28
## 9309 carol.clair@enron.com 2000-02-28
## 9310 louise.kitchen@enron.com 2000-02-25
## 9311 louise.kitchen@enron.com 2000-02-25
## 9312 louise.kitchen@enron.com 2000-02-25
## 9313 louise.kitchen@enron.com 2000-02-25
## 9314 louise.kitchen@enron.com 2000-02-24
## 9315 louise.kitchen@enron.com 2000-02-24
## 9316 louise.kitchen@enron.com 2000-02-24
## 9317 carol.clair@enron.com 2000-02-16
## 9318 louise.kitchen@enron.com 2000-02-16
## 9319 louise.kitchen@enron.com 2000-02-16
## 9320 louise.kitchen@enron.com 2000-02-16
## 9321 louise.kitchen@enron.com 2000-02-16
## 9322 louise.kitchen@enron.com 2000-02-16
## 9323 louise.kitchen@enron.com 2000-02-16
## 9324 louise.kitchen@enron.com 2000-02-16
## 9325 louise.kitchen@enron.com 2000-02-16
## 9326 louise.kitchen@enron.com 2000-02-16
## 9327 louise.kitchen@enron.com 2000-02-11
## 9328 louise.kitchen@enron.com 2000-02-11
## 9329 louise.kitchen@enron.com 2000-02-11
## 9330 louise.kitchen@enron.com 2000-02-11
## 9331 louise.kitchen@enron.com 2000-02-11
## 9332 louise.kitchen@enron.com 2000-02-11
## 9333 louise.kitchen@enron.com 2000-02-11
## 9334 louise.kitchen@enron.com 2000-02-11
## 9335 louise.kitchen@enron.com 2000-02-11
## 9336 louise.kitchen@enron.com 2000-02-11
## 9337 louise.kitchen@enron.com 2000-02-11
## 9338 louise.kitchen@enron.com 2000-02-11
## 9339 louise.kitchen@enron.com 2000-02-11
## 9340 louise.kitchen@enron.com 2000-02-11
## 9341 louise.kitchen@enron.com 2000-02-11
## 9342 louise.kitchen@enron.com 2000-02-11
## 9343 louise.kitchen@enron.com 2000-02-11
## 9344 louise.kitchen@enron.com 2000-02-11
## 9345 louise.kitchen@enron.com 2000-02-11
## 9346 louise.kitchen@enron.com 2000-02-11
## 9347 louise.kitchen@enron.com 2000-02-11
## 9348 louise.kitchen@enron.com 2000-02-11
## 9349 louise.kitchen@enron.com 2000-02-11
## 9350 louise.kitchen@enron.com 2000-02-11
## 9351 louise.kitchen@enron.com 2000-02-11
## 9352 louise.kitchen@enron.com 2000-02-11
## 9353 louise.kitchen@enron.com 2000-02-11
## 9354 louise.kitchen@enron.com 2000-02-11
## 9355 louise.kitchen@enron.com 2000-02-11
## 9356 louise.kitchen@enron.com 2000-02-11
## 9357 louise.kitchen@enron.com 2000-02-11
## 9358 louise.kitchen@enron.com 2000-02-11
## 9359 louise.kitchen@enron.com 2000-02-11
## 9360 carol.clair@enron.com 2000-02-08
## 9361 carol.clair@enron.com 2000-02-08
## 9362 carol.clair@enron.com 2000-02-08
## 9363 carol.clair@enron.com 2000-02-08
## 9364 carol.clair@enron.com 2000-02-08
## 9365 carol.clair@enron.com 2000-02-08
## 9366 carol.clair@enron.com 2000-02-08
## 9367 carol.clair@enron.com 2000-02-07
## 9368 carol.clair@enron.com 2000-02-07
## 9369 carol.clair@enron.com 2000-02-07
## 9370 carol.clair@enron.com 2000-02-02
## 9371 carol.clair@enron.com 2000-02-02
## 9372 carol.clair@enron.com 2000-02-02
## 9373 carol.clair@enron.com 2000-02-01
## 9374 carol.clair@enron.com 2000-02-01
## 9375 carol.clair@enron.com 2000-02-01
## 9376 carol.clair@enron.com 2000-02-01
## 9377 carol.clair@enron.com 2000-02-01
## 9378 louise.kitchen@enron.com 2000-02-01
## 9379 louise.kitchen@enron.com 2000-02-01
## 9380 louise.kitchen@enron.com 2000-02-01
## 9381 mark.e.taylor@enron.com 2000-01-31
## 9382 louise.kitchen@enron.com 2000-01-23
## 9383 louise.kitchen@enron.com 2000-01-19
## 9384 louise.kitchen@enron.com 2000-01-19
## 9385 louise.kitchen@enron.com 2000-01-19
## 9386 louise.kitchen@enron.com 2000-01-19
## 9387 louise.kitchen@enron.com 2000-01-19
## 9388 louise.kitchen@enron.com 2000-01-19
## 9389 louise.kitchen@enron.com 2000-01-19
## 9390 louise.kitchen@enron.com 2000-01-17
## 9391 louise.kitchen@enron.com 2000-01-17
## 9392 louise.kitchen@enron.com 2000-01-17
## 9393 louise.kitchen@enron.com 2000-01-17
## 9394 louise.kitchen@enron.com 2000-01-17
## 9395 louise.kitchen@enron.com 2000-01-17
## 9396 louise.kitchen@enron.com 2000-01-17
## 9397 louise.kitchen@enron.com 2000-01-17
## 9398 louise.kitchen@enron.com 2000-01-17
## 9399 louise.kitchen@enron.com 2000-01-17
## 9400 louise.kitchen@enron.com 2000-01-17
## 9401 louise.kitchen@enron.com 2000-01-17
## 9402 louise.kitchen@enron.com 2000-01-17
## 9403 louise.kitchen@enron.com 2000-01-17
## 9404 louise.kitchen@enron.com 2000-01-17
## 9405 louise.kitchen@enron.com 2000-01-17
## 9406 louise.kitchen@enron.com 2000-01-17
## 9407 louise.kitchen@enron.com 2000-01-17
## 9408 louise.kitchen@enron.com 2000-01-17
## 9409 louise.kitchen@enron.com 2000-01-17
## 9410 louise.kitchen@enron.com 2000-01-17
## 9411 louise.kitchen@enron.com 2000-01-17
## 9412 louise.kitchen@enron.com 2000-01-17
## 9413 louise.kitchen@enron.com 2000-01-17
## 9414 louise.kitchen@enron.com 2000-01-17
## 9415 louise.kitchen@enron.com 2000-01-17
## 9416 louise.kitchen@enron.com 2000-01-17
## 9417 louise.kitchen@enron.com 2000-01-17
## 9418 louise.kitchen@enron.com 2000-01-17
## 9419 louise.kitchen@enron.com 2000-01-17
## 9420 louise.kitchen@enron.com 2000-01-17
## 9421 louise.kitchen@enron.com 2000-01-17
## 9422 carol.clair@enron.com 2000-03-20
## 9423 carol.clair@enron.com 2000-03-20
## 9424 carol.clair@enron.com 2000-03-20
## 9425 carol.clair@enron.com 2000-04-17
## 9426 louise.kitchen@enron.com 2000-01-17
## 9427 louise.kitchen@enron.com 2000-01-17
## 9428 louise.kitchen@enron.com 2000-01-17
## 9429 louise.kitchen@enron.com 2000-01-17
## 9430 louise.kitchen@enron.com 2000-01-17
## 9431 louise.kitchen@enron.com 2000-01-17
## 9432 louise.kitchen@enron.com 2000-01-17
## 9433 louise.kitchen@enron.com 2000-01-17
## 9434 louise.kitchen@enron.com 2000-01-17
## 9435 louise.kitchen@enron.com 2000-01-17
## 9436 louise.kitchen@enron.com 2000-01-17
## 9437 louise.kitchen@enron.com 2000-01-17
## 9438 louise.kitchen@enron.com 2000-01-17
## 9439 louise.kitchen@enron.com 2000-01-17
## 9440 louise.kitchen@enron.com 2000-01-17
## 9441 louise.kitchen@enron.com 2000-01-17
## 9442 louise.kitchen@enron.com 2000-01-17
## 9443 louise.kitchen@enron.com 2000-01-17
## 9444 louise.kitchen@enron.com 2000-01-17
## 9445 louise.kitchen@enron.com 2000-01-17
## 9446 louise.kitchen@enron.com 2000-01-17
## 9447 louise.kitchen@enron.com 2000-01-17
## 9448 louise.kitchen@enron.com 2000-01-17
## 9449 louise.kitchen@enron.com 2000-01-17
## 9450 louise.kitchen@enron.com 2000-01-17
## 9451 louise.kitchen@enron.com 2000-01-17
## 9452 louise.kitchen@enron.com 2000-01-17
## 9453 louise.kitchen@enron.com 2000-01-17
## 9454 louise.kitchen@enron.com 2000-01-17
## 9455 louise.kitchen@enron.com 2000-01-17
## 9456 louise.kitchen@enron.com 2000-01-17
## 9457 louise.kitchen@enron.com 2000-01-17
## 9458 louise.kitchen@enron.com 2000-01-19
## 9459 louise.kitchen@enron.com 2000-01-19
## 9460 louise.kitchen@enron.com 2000-01-19
## 9461 louise.kitchen@enron.com 2000-01-19
## 9462 louise.kitchen@enron.com 2000-01-19
## 9463 louise.kitchen@enron.com 2000-01-19
## 9464 louise.kitchen@enron.com 2000-01-19
## 9465 louise.kitchen@enron.com 2000-01-18
## 9466 louise.kitchen@enron.com 2000-01-18
## 9467 louise.kitchen@enron.com 2000-01-18
## 9468 louise.kitchen@enron.com 2000-01-18
## 9469 louise.kitchen@enron.com 2000-01-18
## 9470 louise.kitchen@enron.com 2000-01-18
## 9471 louise.kitchen@enron.com 2000-01-18
## 9472 louise.kitchen@enron.com 2000-01-18
## 9473 louise.kitchen@enron.com 2000-01-18
## 9474 louise.kitchen@enron.com 2000-01-18
## 9475 louise.kitchen@enron.com 2000-01-18
## 9476 louise.kitchen@enron.com 2000-01-18
## 9477 louise.kitchen@enron.com 2000-01-18
## 9478 louise.kitchen@enron.com 2000-01-18
## 9479 louise.kitchen@enron.com 2000-01-18
## 9480 louise.kitchen@enron.com 2000-01-18
## 9481 louise.kitchen@enron.com 2000-01-18
## 9482 louise.kitchen@enron.com 2000-01-18
## 9483 louise.kitchen@enron.com 2000-01-18
## 9484 louise.kitchen@enron.com 2000-01-18
## 9485 louise.kitchen@enron.com 2000-01-18
## 9486 louise.kitchen@enron.com 2000-01-18
## 9487 louise.kitchen@enron.com 2000-01-18
## 9488 louise.kitchen@enron.com 2000-01-18
## 9489 louise.kitchen@enron.com 2000-01-18
## 9490 louise.kitchen@enron.com 2000-01-18
## 9491 louise.kitchen@enron.com 2000-01-18
## 9492 louise.kitchen@enron.com 2000-01-18
## 9493 louise.kitchen@enron.com 2000-01-18
## 9494 louise.kitchen@enron.com 2000-01-18
## 9495 louise.kitchen@enron.com 2000-01-18
## 9496 louise.kitchen@enron.com 2000-01-18
## 9497 louise.kitchen@enron.com 2000-01-18
## 9498 louise.kitchen@enron.com 2000-02-18
## 9499 louise.kitchen@enron.com 2000-02-18
## 9500 louise.kitchen@enron.com 2000-02-18
## 9501 louise.kitchen@enron.com 2000-02-18
## 9502 louise.kitchen@enron.com 2000-02-18
## 9503 louise.kitchen@enron.com 2000-02-18
## 9504 louise.kitchen@enron.com 2000-02-18
## 9505 louise.kitchen@enron.com 2000-02-28
## 9506 louise.kitchen@enron.com 2000-03-23
## 9507 louise.kitchen@enron.com 2000-03-23
## 9508 louise.kitchen@enron.com 2000-03-23
## 9509 louise.kitchen@enron.com 2000-03-23
## 9510 louise.kitchen@enron.com 2000-03-23
## 9511 louise.kitchen@enron.com 2000-03-23
## 9512 louise.kitchen@enron.com 2000-03-23
## 9513 louise.kitchen@enron.com 2000-03-23
## 9514 louise.kitchen@enron.com 2000-03-23
## 9515 louise.kitchen@enron.com 2000-03-23
## 9516 louise.kitchen@enron.com 2000-03-23
## 9517 louise.kitchen@enron.com 2000-03-23
## 9518 louise.kitchen@enron.com 2000-03-23
## 9519 louise.kitchen@enron.com 2000-03-23
## 9520 louise.kitchen@enron.com 2000-03-23
## 9521 louise.kitchen@enron.com 2000-03-23
## 9522 louise.kitchen@enron.com 2000-03-23
## 9523 louise.kitchen@enron.com 2000-03-23
## 9524 louise.kitchen@enron.com 2000-03-23
## 9525 louise.kitchen@enron.com 2000-03-23
## 9526 louise.kitchen@enron.com 2000-03-23
## 9527 louise.kitchen@enron.com 2000-03-23
## 9528 louise.kitchen@enron.com 2000-03-23
## 9529 louise.kitchen@enron.com 2000-03-23
## 9530 louise.kitchen@enron.com 2000-03-23
## 9531 louise.kitchen@enron.com 2000-03-23
## 9532 louise.kitchen@enron.com 2000-03-23
## 9533 louise.kitchen@enron.com 2000-03-23
## 9534 louise.kitchen@enron.com 2000-03-23
## 9535 louise.kitchen@enron.com 2000-03-23
## 9536 louise.kitchen@enron.com 2000-03-23
## 9537 louise.kitchen@enron.com 2000-03-23
## 9538 louise.kitchen@enron.com 2000-02-22
## 9539 louise.kitchen@enron.com 2000-02-22
## 9540 louise.kitchen@enron.com 2000-02-22
## 9541 louise.kitchen@enron.com 2000-02-22
## 9542 louise.kitchen@enron.com 2000-02-22
## 9543 louise.kitchen@enron.com 2000-02-22
## 9544 louise.kitchen@enron.com 2000-02-22
## 9545 louise.kitchen@enron.com 2000-02-22
## 9546 louise.kitchen@enron.com 2000-02-22
## 9547 louise.kitchen@enron.com 2000-02-22
## 9548 louise.kitchen@enron.com 2000-02-22
## 9549 louise.kitchen@enron.com 2000-02-22
## 9550 louise.kitchen@enron.com 2000-02-22
## 9551 louise.kitchen@enron.com 2000-02-22
## 9552 louise.kitchen@enron.com 2000-02-22
## 9553 louise.kitchen@enron.com 2000-02-22
## 9554 louise.kitchen@enron.com 2000-02-22
## 9555 louise.kitchen@enron.com 2000-02-22
## 9556 louise.kitchen@enron.com 2000-02-22
## 9557 louise.kitchen@enron.com 2000-02-22
## 9558 louise.kitchen@enron.com 2000-02-22
## 9559 louise.kitchen@enron.com 2000-02-22
## 9560 louise.kitchen@enron.com 2000-02-22
## 9561 louise.kitchen@enron.com 2000-02-22
## 9562 louise.kitchen@enron.com 2000-02-22
## 9563 louise.kitchen@enron.com 2000-02-22
## 9564 louise.kitchen@enron.com 2000-02-22
## 9565 louise.kitchen@enron.com 2000-02-22
## 9566 louise.kitchen@enron.com 2000-02-22
## 9567 louise.kitchen@enron.com 2000-02-22
## 9568 louise.kitchen@enron.com 2000-02-22
## 9569 louise.kitchen@enron.com 2000-02-22
## 9570 louise.kitchen@enron.com 2000-02-22
## 9571 louise.kitchen@enron.com 2000-02-22
## 9572 louise.kitchen@enron.com 2000-02-22
## 9573 louise.kitchen@enron.com 2000-02-22
## 9574 louise.kitchen@enron.com 2000-02-22
## 9575 louise.kitchen@enron.com 2000-02-22
## 9576 louise.kitchen@enron.com 2000-02-22
## 9577 louise.kitchen@enron.com 2000-02-22
## 9578 louise.kitchen@enron.com 2000-02-22
## 9579 louise.kitchen@enron.com 2000-02-22
## 9580 louise.kitchen@enron.com 2000-02-22
## 9581 louise.kitchen@enron.com 2000-02-22
## 9582 louise.kitchen@enron.com 2000-02-22
## 9583 louise.kitchen@enron.com 2000-02-22
## 9584 louise.kitchen@enron.com 2000-02-22
## 9585 louise.kitchen@enron.com 2000-02-22
## 9586 louise.kitchen@enron.com 2000-02-22
## 9587 louise.kitchen@enron.com 2000-02-22
## 9588 louise.kitchen@enron.com 2000-02-22
## 9589 louise.kitchen@enron.com 2000-02-22
## 9590 louise.kitchen@enron.com 2000-02-22
## 9591 louise.kitchen@enron.com 2000-02-22
## 9592 louise.kitchen@enron.com 2000-02-22
## 9593 louise.kitchen@enron.com 2000-02-22
## 9594 louise.kitchen@enron.com 2000-02-22
## 9595 louise.kitchen@enron.com 2000-02-22
## 9596 louise.kitchen@enron.com 2000-02-22
## 9597 louise.kitchen@enron.com 2000-02-22
## 9598 louise.kitchen@enron.com 2000-02-22
## 9599 louise.kitchen@enron.com 2000-02-22
## 9600 louise.kitchen@enron.com 2000-02-22
## 9601 louise.kitchen@enron.com 2000-02-22
## 9602 louise.kitchen@enron.com 2000-02-22
## 9603 louise.kitchen@enron.com 2000-02-22
## 9604 louise.kitchen@enron.com 2000-02-22
## 9605 louise.kitchen@enron.com 2000-02-22
## 9606 louise.kitchen@enron.com 2000-02-22
## 9607 louise.kitchen@enron.com 2000-02-22
## 9608 louise.kitchen@enron.com 2000-02-22
## 9609 louise.kitchen@enron.com 2000-02-22
## 9610 louise.kitchen@enron.com 2000-02-22
## 9611 louise.kitchen@enron.com 2000-02-22
## 9612 louise.kitchen@enron.com 2000-02-22
## 9613 louise.kitchen@enron.com 2000-02-22
## 9614 louise.kitchen@enron.com 2000-02-22
## 9615 louise.kitchen@enron.com 2000-02-22
## 9616 louise.kitchen@enron.com 2000-02-22
## 9617 louise.kitchen@enron.com 2000-02-22
## 9618 louise.kitchen@enron.com 2000-02-22
## 9619 louise.kitchen@enron.com 2000-02-22
## 9620 louise.kitchen@enron.com 2000-02-22
## 9621 louise.kitchen@enron.com 2000-02-22
## 9622 louise.kitchen@enron.com 2000-02-22
## 9623 louise.kitchen@enron.com 2000-02-11
## 9624 louise.kitchen@enron.com 2000-02-11
## 9625 louise.kitchen@enron.com 2000-02-11
## 9626 louise.kitchen@enron.com 2000-02-11
## 9627 louise.kitchen@enron.com 2000-02-11
## 9628 louise.kitchen@enron.com 2000-02-11
## 9629 louise.kitchen@enron.com 2000-02-11
## 9630 louise.kitchen@enron.com 2000-02-11
## 9631 louise.kitchen@enron.com 2000-02-11
## 9632 louise.kitchen@enron.com 2000-02-11
## 9633 louise.kitchen@enron.com 2000-02-11
## 9634 louise.kitchen@enron.com 2000-02-11
## 9635 louise.kitchen@enron.com 2000-02-11
## 9636 louise.kitchen@enron.com 2000-02-11
## 9637 louise.kitchen@enron.com 2000-02-11
## 9638 louise.kitchen@enron.com 2000-02-11
## 9639 louise.kitchen@enron.com 2000-02-11
## 9640 louise.kitchen@enron.com 2000-02-11
## 9641 louise.kitchen@enron.com 2000-02-11
## 9642 louise.kitchen@enron.com 2000-02-11
## 9643 louise.kitchen@enron.com 2000-01-23
## 9644 louise.kitchen@enron.com 2000-01-23
## 9645 louise.kitchen@enron.com 2000-01-23
## 9646 louise.kitchen@enron.com 2000-01-23
## 9647 louise.kitchen@enron.com 2000-01-23
## 9648 louise.kitchen@enron.com 2000-01-23
## 9649 louise.kitchen@enron.com 2000-01-17
## 9650 louise.kitchen@enron.com 2000-01-17
## 9651 louise.kitchen@enron.com 2000-01-17
## 9652 louise.kitchen@enron.com 2000-01-17
## 9653 louise.kitchen@enron.com 2000-01-17
## 9654 louise.kitchen@enron.com 1999-11-15
## 9655 mark.e.taylor@enron.com 1999-11-08
## 9656 mark.e.taylor@enron.com 1999-11-08
## 9657 mark.e.taylor@enron.com 1999-11-08
## 9658 mark.e.taylor@enron.com 1999-11-08
## 9659 mark.e.taylor@enron.com 1999-11-08
## 9660 mark.e.taylor@enron.com 1999-11-08
## 9661 mark.e.taylor@enron.com 1999-11-08
## 9662 louise.kitchen@enron.com 1999-10-22
## 9663 louise.kitchen@enron.com 1999-10-22
## 9664 louise.kitchen@enron.com 1999-10-22
## 9665 stacy.dickson@enron.com 1999-10-18
## 9666 stacy.dickson@enron.com 1999-10-18
## 9667 stacy.dickson@enron.com 1999-10-18
## 9668 stacy.dickson@enron.com 1999-10-18
## 9669 stacy.dickson@enron.com 1999-10-18
## 9670 louise.kitchen@enron.com 1999-10-11
## 9671 louise.kitchen@enron.com 1999-10-11
## 9672 louise.kitchen@enron.com 1999-10-11
## 9673 louise.kitchen@enron.com 1999-10-06
## 9674 louise.kitchen@enron.com 1999-10-06
## 9675 louise.kitchen@enron.com 1999-10-06
## 9676 louise.kitchen@enron.com 1999-10-06
## 9677 louise.kitchen@enron.com 1999-10-06
## 9678 louise.kitchen@enron.com 1999-10-06
## 9679 louise.kitchen@enron.com 1999-10-06
## 9680 louise.kitchen@enron.com 1999-10-06
## 9681 louise.kitchen@enron.com 1999-10-06
## 9682 louise.kitchen@enron.com 1999-10-06
## 9683 louise.kitchen@enron.com 1999-10-06
## 9684 louise.kitchen@enron.com 1999-10-06
## 9685 louise.kitchen@enron.com 1999-09-09
## 9686 louise.kitchen@enron.com 1999-09-09
## 9687 louise.kitchen@enron.com 1999-09-09
## 9688 louise.kitchen@enron.com 1999-09-09
## 9689 louise.kitchen@enron.com 1999-09-09
## 9690 louise.kitchen@enron.com 1999-09-09
## 9691 louise.kitchen@enron.com 1999-09-09
## 9692 louise.kitchen@enron.com 1999-09-09
## 9693 louise.kitchen@enron.com 1999-09-09
## 9694 louise.kitchen@enron.com 1999-09-09
## 9695 louise.kitchen@enron.com 1999-08-24
## 9696 louise.kitchen@enron.com 1999-08-24
## 9697 louise.kitchen@enron.com 1999-08-13
## 9698 louise.kitchen@enron.com 1999-08-13
## 9699 louise.kitchen@enron.com 1999-08-13
## 9700 louise.kitchen@enron.com 1999-08-13
## 9701 louise.kitchen@enron.com 1999-08-13
## 9702 louise.kitchen@enron.com 1999-08-13
## 9703 louise.kitchen@enron.com 1999-08-13
## 9704 louise.kitchen@enron.com 1999-08-13
## 9705 louise.kitchen@enron.com 1999-08-13
## 9706 louise.kitchen@enron.com 1999-08-13
## 9707 louise.kitchen@enron.com 1999-08-13
## 9708 louise.kitchen@enron.com 1999-08-13
## 9709 louise.kitchen@enron.com 1999-08-13
## 9710 louise.kitchen@enron.com 1999-08-13
## 9711 louise.kitchen@enron.com 1999-08-13
## 9712 louise.kitchen@enron.com 1999-08-10
## 9713 louise.kitchen@enron.com 1999-08-10
## 9714 louise.kitchen@enron.com 1999-08-10
## 9715 louise.kitchen@enron.com 1999-08-10
## 9716 louise.kitchen@enron.com 1999-08-10
## 9717 louise.kitchen@enron.com 1999-08-10
## 9718 louise.kitchen@enron.com 1999-08-10
## 9719 louise.kitchen@enron.com 1999-08-10
## 9720 louise.kitchen@enron.com 1999-08-10
## 9721 louise.kitchen@enron.com 1999-08-10
## 9722 louise.kitchen@enron.com 1999-08-10
## 9723 stacy.dickson@enron.com 1999-07-29
## 9724 stacy.dickson@enron.com 1999-07-29
## 9725 stacy.dickson@enron.com 1999-07-29
## 9726 louise.kitchen@enron.com 1999-07-28
## 9727 louise.kitchen@enron.com 1999-07-28
## 9728 louise.kitchen@enron.com 1999-07-28
## 9729 louise.kitchen@enron.com 1999-07-28
## 9730 louise.kitchen@enron.com 1999-07-28
## 9731 louise.kitchen@enron.com 1999-07-28
## 9732 louise.kitchen@enron.com 1999-07-28
## 9733 louise.kitchen@enron.com 1999-07-27
## 9734 louise.kitchen@enron.com 1999-07-27
## 9735 louise.kitchen@enron.com 1999-07-27
## 9736 louise.kitchen@enron.com 1999-07-27
## 9737 louise.kitchen@enron.com 1999-07-27
## 9738 louise.kitchen@enron.com 1999-07-23
## 9739 louise.kitchen@enron.com 1999-07-22
## 9740 louise.kitchen@enron.com 1999-07-22
## 9741 louise.kitchen@enron.com 1999-07-22
## 9742 louise.kitchen@enron.com 1999-07-22
## 9743 louise.kitchen@enron.com 1999-07-22
## 9744 louise.kitchen@enron.com 1999-07-22
## 9745 louise.kitchen@enron.com 1999-07-22
## 9746 louise.kitchen@enron.com 1999-07-22
## 9747 louise.kitchen@enron.com 1999-07-22
## 9748 louise.kitchen@enron.com 1999-07-22
## 9749 louise.kitchen@enron.com 1999-07-22
## 9750 louise.kitchen@enron.com 1999-07-22
## 9751 louise.kitchen@enron.com 1999-07-22
## 9752 louise.kitchen@enron.com 1999-07-22
## 9753 louise.kitchen@enron.com 1999-07-22
## 9754 louise.kitchen@enron.com 1999-07-22
## 9755 louise.kitchen@enron.com 1999-07-22
## 9756 louise.kitchen@enron.com 1999-07-22
## 9757 louise.kitchen@enron.com 1999-07-22
## 9758 louise.kitchen@enron.com 1999-07-22
## 9759 louise.kitchen@enron.com 1999-07-22
## 9760 louise.kitchen@enron.com 1999-07-22
## 9761 louise.kitchen@enron.com 1999-07-22
## 9762 louise.kitchen@enron.com 1999-07-22
## 9763 louise.kitchen@enron.com 1999-07-22
## 9764 louise.kitchen@enron.com 1999-07-22
## 9765 louise.kitchen@enron.com 1999-07-22
## 9766 louise.kitchen@enron.com 1999-07-22
## 9767 louise.kitchen@enron.com 1999-07-20
## 9768 louise.kitchen@enron.com 1999-07-20
## 9769 louise.kitchen@enron.com 1999-07-20
## 9770 louise.kitchen@enron.com 1999-07-20
## 9771 louise.kitchen@enron.com 1999-07-20
## 9772 louise.kitchen@enron.com 1999-07-20
## 9773 louise.kitchen@enron.com 1999-07-20
## 9774 louise.kitchen@enron.com 1999-07-20
## 9775 louise.kitchen@enron.com 1999-07-20
## 9776 louise.kitchen@enron.com 1999-07-20
## 9777 louise.kitchen@enron.com 1999-07-20
## 9778 louise.kitchen@enron.com 1999-07-20
## 9779 louise.kitchen@enron.com 1999-07-20
## 9780 louise.kitchen@enron.com 1999-07-20
## 9781 louise.kitchen@enron.com 1999-07-20
## 9782 louise.kitchen@enron.com 1999-07-20
## 9783 louise.kitchen@enron.com 1999-07-20
## 9784 louise.kitchen@enron.com 1999-07-20
## 9785 louise.kitchen@enron.com 1999-07-20
## 9786 louise.kitchen@enron.com 1999-07-20
## 9787 louise.kitchen@enron.com 1999-07-19
## 9788 louise.kitchen@enron.com 1999-07-19
## 9789 louise.kitchen@enron.com 1999-07-19
## 9790 louise.kitchen@enron.com 1999-07-19
## 9791 louise.kitchen@enron.com 1999-07-19
## 9792 louise.kitchen@enron.com 1999-07-19
## 9793 louise.kitchen@enron.com 1999-07-19
## 9794 louise.kitchen@enron.com 1999-07-19
## 9795 louise.kitchen@enron.com 1999-07-19
## 9796 louise.kitchen@enron.com 1999-07-19
## 9797 louise.kitchen@enron.com 1999-07-19
## 9798 louise.kitchen@enron.com 1999-07-19
## 9799 louise.kitchen@enron.com 1999-07-19
## 9800 louise.kitchen@enron.com 1999-07-19
## 9801 louise.kitchen@enron.com 1999-07-19
## 9802 louise.kitchen@enron.com 1999-07-19
## 9803 louise.kitchen@enron.com 1999-07-19
## 9804 louise.kitchen@enron.com 1999-07-19
## 9805 louise.kitchen@enron.com 1999-07-19
## 9806 louise.kitchen@enron.com 1999-07-19
## 9807 louise.kitchen@enron.com 1999-07-19
## 9808 louise.kitchen@enron.com 1999-07-08
## 9809 louise.kitchen@enron.com 1999-07-08
## 9810 louise.kitchen@enron.com 1999-07-08
## 9811 louise.kitchen@enron.com 1999-07-08
## 9812 louise.kitchen@enron.com 1999-07-08
## 9813 louise.kitchen@enron.com 1999-07-08
## 9814 louise.kitchen@enron.com 1999-07-08
## 9815 louise.kitchen@enron.com 1999-07-08
## 9816 louise.kitchen@enron.com 1999-07-08
## 9817 louise.kitchen@enron.com 1999-07-08
## 9818 louise.kitchen@enron.com 1999-07-08
## 9819 louise.kitchen@enron.com 1999-07-08
## 9820 louise.kitchen@enron.com 1999-07-08
## 9821 louise.kitchen@enron.com 1999-07-08
## 9822 louise.kitchen@enron.com 1999-07-08
## 9823 louise.kitchen@enron.com 1999-07-08
## 9824 louise.kitchen@enron.com 1999-07-08
## 9825 louise.kitchen@enron.com 1999-07-08
## 9826 louise.kitchen@enron.com 1999-07-08
## 9827 louise.kitchen@enron.com 1999-07-08
## 9828 louise.kitchen@enron.com 1999-07-08
## 9829 louise.kitchen@enron.com 1999-07-07
## 9830 louise.kitchen@enron.com 1999-07-07
## 9831 louise.kitchen@enron.com 1999-07-05
## 9832 louise.kitchen@enron.com 1999-07-05
## 9833 louise.kitchen@enron.com 1999-07-05
## 9834 louise.kitchen@enron.com 1999-07-05
## 9835 louise.kitchen@enron.com 1999-07-05
## 9836 louise.kitchen@enron.com 1999-07-05
## 9837 louise.kitchen@enron.com 1999-07-05
## 9838 louise.kitchen@enron.com 1999-07-05
## 9839 louise.kitchen@enron.com 1999-07-05
## 9840 louise.kitchen@enron.com 1999-07-05
## 9841 louise.kitchen@enron.com 1999-07-05
## 9842 louise.kitchen@enron.com 1999-07-05
## 9843 louise.kitchen@enron.com 1999-07-05
## 9844 louise.kitchen@enron.com 1999-07-05
## 9845 louise.kitchen@enron.com 1999-07-05
## 9846 louise.kitchen@enron.com 1999-06-11
## 9847 louise.kitchen@enron.com 1999-06-09
## 9848 louise.kitchen@enron.com 1999-06-09
## 9849 louise.kitchen@enron.com 1999-06-09
## 9850 louise.kitchen@enron.com 1999-06-09
## 9851 louise.kitchen@enron.com 1999-06-09
## 9852 louise.kitchen@enron.com 1999-06-09
## 9853 louise.kitchen@enron.com 1999-06-09
## 9854 louise.kitchen@enron.com 1999-06-09
## 9855 louise.kitchen@enron.com 1999-06-09
## 9856 louise.kitchen@enron.com 1999-06-09
## 9857 louise.kitchen@enron.com 1999-06-09
## 9858 louise.kitchen@enron.com 1999-06-09
## 9859 louise.kitchen@enron.com 1999-06-09
## 9860 louise.kitchen@enron.com 1999-06-09
## 9861 louise.kitchen@enron.com 1999-06-09
## 9862 louise.kitchen@enron.com 1999-05-25
## 9863 louise.kitchen@enron.com 1999-05-25
## 9864 louise.kitchen@enron.com 1999-05-25
## 9865 louise.kitchen@enron.com 1999-05-25
## 9866 louise.kitchen@enron.com 1999-05-25
## 9867 louise.kitchen@enron.com 1999-05-25
## 9868 louise.kitchen@enron.com 1999-05-25
## 9869 louise.kitchen@enron.com 1999-05-25
## 9870 louise.kitchen@enron.com 1999-05-25
## 9871 louise.kitchen@enron.com 1999-05-25
## 9872 louise.kitchen@enron.com 1999-05-25
## 9873 mark.e.taylor@enron.com 2000-04-24
## 9874 stacy.dickson@enron.com 2001-11-15
## 9875 stacy.dickson@enron.com 2001-11-15
## 9876 stacy.dickson@enron.com 2001-11-06
## 9877 stacy.dickson@enron.com 2001-11-06
## 9878 stacy.dickson@enron.com 2001-11-06
## 9879 stacy.dickson@enron.com 2001-08-09
## 9880 stacy.dickson@enron.com 2001-08-09
## 9881 stacy.dickson@enron.com 2001-08-09
## 9882 stacy.dickson@enron.com 2001-08-07
## 9883 stacy.dickson@enron.com 2001-08-07
## 9884 stacy.dickson@enron.com 2001-08-07
## 9885 stacy.dickson@enron.com 2001-08-15
## 9886 stacy.dickson@enron.com 2001-08-15
## 9887 stacy.dickson@enron.com 2001-08-15
## 9888 stacy.dickson@enron.com 2001-08-15
## 9889 stacy.dickson@enron.com 2001-08-15
## 9890 stacy.dickson@enron.com 2001-07-31
## 9891 stacy.dickson@enron.com 2001-07-31
## 9892 stacy.dickson@enron.com 2001-07-31
## 9893 stacy.dickson@enron.com 2001-07-31
## 9894 stacy.dickson@enron.com 2001-07-31
## 9895 stacy.dickson@enron.com 2001-07-31
## 9896 stacy.dickson@enron.com 2001-07-31
## 9897 stacy.dickson@enron.com 2001-07-31
## 9898 stacy.dickson@enron.com 2001-07-31
## 9899 stacy.dickson@enron.com 2001-07-31
## 9900 stacy.dickson@enron.com 2001-07-31
## 9901 louise.kitchen@enron.com 1999-05-24
## 9902 stephanie.panus@enron.com 2001-04-25
## 9903 stephanie.panus@enron.com 2001-04-25
## 9904 stephanie.panus@enron.com 2001-04-25
## 9905 stephanie.panus@enron.com 2001-04-25
## 9906 stephanie.panus@enron.com 2001-04-25
## 9907 stephanie.panus@enron.com 2001-04-25
## 9908 stephanie.panus@enron.com 2001-04-25
## 9909 stephanie.panus@enron.com 2001-04-25
## 9910 stephanie.panus@enron.com 2001-04-25
## 9911 stephanie.panus@enron.com 2001-04-25
## 9912 stephanie.panus@enron.com 2001-04-25
## 9913 stephanie.panus@enron.com 2001-04-25
## 9914 stephanie.panus@enron.com 2001-04-25
## 9915 stephanie.panus@enron.com 2001-04-25
## 9916 stephanie.panus@enron.com 2001-02-01
## 9917 stephanie.panus@enron.com 2001-02-01
## 9918 stephanie.panus@enron.com 2001-02-01
## 9919 stephanie.panus@enron.com 2001-02-01
## 9920 stephanie.panus@enron.com 2001-02-01
## 9921 stephanie.panus@enron.com 2001-02-01
## 9922 stephanie.panus@enron.com 2001-02-01
## 9923 stephanie.panus@enron.com 2001-02-01
## 9924 stephanie.panus@enron.com 2001-02-01
## 9925 stephanie.panus@enron.com 2001-02-01
## 9926 stephanie.panus@enron.com 2001-02-01
## 9927 stephanie.panus@enron.com 2001-02-01
## 9928 stephanie.panus@enron.com 2001-02-01
## 9929 stephanie.panus@enron.com 2001-02-01
## 9930 stephanie.panus@enron.com 2001-02-01
## 9931 stephanie.panus@enron.com 2001-01-05
## 9932 stephanie.panus@enron.com 2001-01-05
## 9933 stephanie.panus@enron.com 2001-01-05
## 9934 stephanie.panus@enron.com 2001-01-05
## 9935 stephanie.panus@enron.com 2001-01-05
## 9936 stephanie.panus@enron.com 2001-01-05
## 9937 stephanie.panus@enron.com 2001-01-05
## 9938 stephanie.panus@enron.com 2001-01-05
## 9939 stephanie.panus@enron.com 2001-01-05
## 9940 stephanie.panus@enron.com 2001-01-05
## 9941 stephanie.panus@enron.com 2001-01-05
## 9942 stephanie.panus@enron.com 2001-01-05
## 9943 stephanie.panus@enron.com 2001-01-05
## 9944 stephanie.panus@enron.com 2001-01-05
## 9945 stephanie.panus@enron.com 2000-11-09
## 9946 stephanie.panus@enron.com 2000-11-09
## 9947 stephanie.panus@enron.com 2000-11-09
## 9948 stephanie.panus@enron.com 2000-11-09
## 9949 stephanie.panus@enron.com 2000-11-09
## 9950 stephanie.panus@enron.com 2000-11-09
## 9951 stephanie.panus@enron.com 2000-11-09
## 9952 stephanie.panus@enron.com 2000-11-09
## 9953 stephanie.panus@enron.com 2000-11-09
## 9954 stephanie.panus@enron.com 2000-11-03
## 9955 stephanie.panus@enron.com 2000-11-03
## 9956 stephanie.panus@enron.com 2000-11-03
## 9957 stephanie.panus@enron.com 2000-11-03
## 9958 stephanie.panus@enron.com 2000-11-03
## 9959 stephanie.panus@enron.com 2000-11-03
## 9960 stephanie.panus@enron.com 2000-11-03
## 9961 stephanie.panus@enron.com 2000-11-03
## 9962 stephanie.panus@enron.com 2000-11-03
## 9963 stephanie.panus@enron.com 2000-11-01
## 9964 stephanie.panus@enron.com 2000-11-01
## 9965 stephanie.panus@enron.com 2000-11-01
## 9966 stephanie.panus@enron.com 2000-11-01
## 9967 stephanie.panus@enron.com 2000-11-01
## 9968 stephanie.panus@enron.com 2000-11-01
## 9969 stephanie.panus@enron.com 2000-11-01
## 9970 stephanie.panus@enron.com 2000-11-01
## 9971 stephanie.panus@enron.com 2000-11-01
## 9972 mark.e.taylor@enron.com 2001-11-15
## 9973 mark.e.taylor@enron.com 2001-11-08
## 9974 mark.e.taylor@enron.com 2001-11-06
## 9975 mark.e.taylor@enron.com 2001-11-06
## 9976 mark.e.taylor@enron.com 2001-10-02
## 9977 mark.e.taylor@enron.com 2001-06-15
## 9978 mark.e.taylor@enron.com 2001-06-15
## 9979 mark.e.taylor@enron.com 2001-06-15
## 9980 mark.e.taylor@enron.com 2001-06-13
## 9981 mark.e.taylor@enron.com 2001-11-16
## 9982 mark.e.taylor@enron.com 2001-10-10
## 9983 mark.e.taylor@enron.com 2001-10-10
## 9984 mark.e.taylor@enron.com 2001-10-10
## 9985 mark.e.taylor@enron.com 2001-10-10
## 9986 mark.e.taylor@enron.com 2001-10-10
## 9987 dana.davis@enron.com 2001-10-30
## 9988 elizabeth.sager@enron.com 2001-11-07
## 9989 louise.kitchen@enron.com 2001-11-05
## 9990 louise.kitchen@enron.com 2001-10-29
## 9991 louise.kitchen@enron.com 2001-10-29
## 9992 louise.kitchen@enron.com 2001-10-29
## 9993 louise.kitchen@enron.com 2001-10-29
## 9994 louise.kitchen@enron.com 2001-10-29
## 9995 louise.kitchen@enron.com 2001-10-29
## 9996 andy.zipper@enron.com 2001-10-26
## 9997 elizabeth.sager@enron.com 2001-10-03
## 9998 elizabeth.sager@enron.com 2001-10-03
## 9999 elizabeth.sager@enron.com 2001-10-03
## 10000 elizabeth.sager@enron.com 2001-10-03
## 10001 stephanie.panus@enron.com 2001-10-03
## 10002 stephanie.panus@enron.com 2001-10-03
## 10003 stephanie.panus@enron.com 2001-10-03
## 10004 stephanie.panus@enron.com 2001-10-03
## 10005 stephanie.panus@enron.com 2001-10-03
## 10006 stephanie.panus@enron.com 2001-10-03
## 10007 stephanie.panus@enron.com 2001-10-03
## 10008 stephanie.panus@enron.com 2001-10-03
## 10009 stephanie.panus@enron.com 2001-10-03
## 10010 stephanie.panus@enron.com 2001-10-03
## 10011 stephanie.panus@enron.com 2001-10-03
## 10012 stephanie.panus@enron.com 2001-10-03
## 10013 stephanie.panus@enron.com 2001-10-03
## 10014 stephanie.panus@enron.com 2001-10-03
## 10015 elizabeth.sager@enron.com 2001-09-12
## 10016 elizabeth.sager@enron.com 2001-09-12
## 10017 elizabeth.sager@enron.com 2001-09-12
## 10018 elizabeth.sager@enron.com 2001-09-12
## 10019 elizabeth.sager@enron.com 2001-09-12
## 10020 mark.e.taylor@enron.com 2001-11-27
## 10021 mark.e.taylor@enron.com 2001-11-27
## 10022 mark.e.taylor@enron.com 2001-11-27
## 10023 mark.e.taylor@enron.com 2001-11-27
## 10024 mark.e.taylor@enron.com 2001-11-27
## 10025 mark.e.taylor@enron.com 2001-11-26
## 10026 mark.e.taylor@enron.com 2001-11-26
## 10027 mark.e.taylor@enron.com 2001-11-26
## 10028 mark.e.taylor@enron.com 2001-11-26
## 10029 mark.e.taylor@enron.com 2001-11-26
## 10030 mark.e.taylor@enron.com 2001-11-26
## 10031 mark.e.taylor@enron.com 2001-11-26
## 10032 mark.e.taylor@enron.com 2001-11-26
## 10033 mark.e.taylor@enron.com 2001-11-26
## 10034 mark.e.taylor@enron.com 2001-11-26
## 10035 mark.e.taylor@enron.com 2001-11-26
## 10036 mark.e.taylor@enron.com 2001-11-26
## 10037 mark.e.taylor@enron.com 2001-11-26
## 10038 mark.e.taylor@enron.com 2001-11-26
## 10039 mark.e.taylor@enron.com 2001-11-20
## 10040 mark.e.taylor@enron.com 2001-11-20
## 10041 mark.e.taylor@enron.com 2001-11-20
## 10042 mark.e.taylor@enron.com 2001-11-20
## 10043 mark.e.taylor@enron.com 2001-11-20
## 10044 mark.e.taylor@enron.com 2001-11-20
## 10045 mark.e.taylor@enron.com 2001-11-20
## 10046 mark.e.taylor@enron.com 2001-11-20
## 10047 mark.e.taylor@enron.com 2001-11-20
## 10048 mark.e.taylor@enron.com 2001-11-20
## 10049 mark.e.taylor@enron.com 2001-11-19
## 10050 mark.e.taylor@enron.com 2001-11-19
## 10051 mark.e.taylor@enron.com 2001-11-19
## 10052 mark.e.taylor@enron.com 2001-11-19
## 10053 mark.e.taylor@enron.com 2001-11-19
## 10054 mark.e.taylor@enron.com 2001-11-19
## 10055 mark.e.taylor@enron.com 2001-11-19
## 10056 mark.e.taylor@enron.com 2001-11-19
## 10057 mark.e.taylor@enron.com 2001-11-19
## 10058 mark.e.taylor@enron.com 2001-11-19
## 10059 mark.e.taylor@enron.com 2001-11-19
## 10060 mark.e.taylor@enron.com 2001-11-19
## 10061 mark.e.taylor@enron.com 2001-11-19
## 10062 mark.e.taylor@enron.com 2001-11-19
## 10063 mark.e.taylor@enron.com 2001-11-19
## 10064 mark.e.taylor@enron.com 2001-11-19
## 10065 mark.e.taylor@enron.com 2001-11-19
## 10066 mark.e.taylor@enron.com 2001-11-19
## 10067 mark.e.taylor@enron.com 2001-11-16
## 10068 mark.e.taylor@enron.com 2001-11-16
## 10069 mark.e.taylor@enron.com 2001-11-16
## 10070 mark.e.taylor@enron.com 2001-11-16
## 10071 mark.e.taylor@enron.com 2001-11-16
## 10072 mark.e.taylor@enron.com 2001-11-16
## 10073 mark.e.taylor@enron.com 2001-11-16
## 10074 mark.e.taylor@enron.com 2001-11-16
## 10075 mark.e.taylor@enron.com 2001-11-16
## 10076 mark.e.taylor@enron.com 2001-06-26
## 10077 mark.e.taylor@enron.com 2001-06-19
## 10078 mark.e.taylor@enron.com 2001-06-19
## 10079 mark.e.taylor@enron.com 2001-06-19
## 10080 mark.e.taylor@enron.com 2001-06-19
## 10081 mark.e.taylor@enron.com 2001-06-19
## 10082 mark.e.taylor@enron.com 2001-06-19
## 10083 mark.e.taylor@enron.com 2001-06-19
## 10084 mark.e.taylor@enron.com 2001-06-19
## 10085 mark.e.taylor@enron.com 2001-06-19
## 10086 mark.e.taylor@enron.com 2001-06-19
## 10087 mark.e.taylor@enron.com 2001-06-19
## 10088 mark.e.taylor@enron.com 2001-06-19
## 10089 mark.e.taylor@enron.com 2001-06-18
## 10090 mark.e.taylor@enron.com 2001-06-18
## 10091 mark.e.taylor@enron.com 2001-06-18
## 10092 mark.e.taylor@enron.com 2001-06-18
## 10093 mark.e.taylor@enron.com 2001-06-18
## 10094 mark.e.taylor@enron.com 2001-06-18
## 10095 mark.e.taylor@enron.com 2001-06-18
## 10096 mark.e.taylor@enron.com 2001-06-18
## 10097 mark.e.taylor@enron.com 2001-06-15
## 10098 mark.e.taylor@enron.com 2001-06-15
## 10099 mark.e.taylor@enron.com 2001-06-15
## 10100 mark.e.taylor@enron.com 2001-06-15
## 10101 mark.e.taylor@enron.com 2001-06-15
## 10102 mark.e.taylor@enron.com 2001-06-15
## 10103 mark.e.taylor@enron.com 2001-06-15
## 10104 mark.e.taylor@enron.com 2001-06-15
## 10105 mark.e.taylor@enron.com 2001-06-15
## 10106 mark.e.taylor@enron.com 2001-06-15
## 10107 mark.e.taylor@enron.com 2001-06-15
## 10108 mark.e.taylor@enron.com 2001-06-15
## 10109 mark.e.taylor@enron.com 2001-06-15
## 10110 mark.e.taylor@enron.com 2001-06-15
## 10111 mark.e.taylor@enron.com 2001-06-15
## 10112 mark.e.taylor@enron.com 2001-06-15
## 10113 mark.e.taylor@enron.com 2001-06-14
## 10114 mark.e.taylor@enron.com 2001-06-14
## 10115 mark.e.taylor@enron.com 2001-06-14
## 10116 mark.e.taylor@enron.com 2001-06-14
## 10117 mark.e.taylor@enron.com 2001-06-14
## 10118 mark.e.taylor@enron.com 2001-06-14
## 10119 mark.e.taylor@enron.com 2001-06-13
## 10120 mark.e.taylor@enron.com 2001-06-13
## 10121 mark.e.taylor@enron.com 2001-06-13
## 10122 mark.e.taylor@enron.com 2001-06-13
## 10123 mark.e.taylor@enron.com 2001-06-13
## 10124 mark.e.taylor@enron.com 2001-06-13
## 10125 mark.e.taylor@enron.com 2001-06-13
## 10126 mark.e.taylor@enron.com 2001-06-13
## 10127 mark.e.taylor@enron.com 2001-06-13
## 10128 mark.e.taylor@enron.com 2001-06-13
## 10129 mark.e.taylor@enron.com 2001-06-13
## 10130 mark.e.taylor@enron.com 2001-06-13
## 10131 mark.e.taylor@enron.com 2001-06-13
## 10132 mark.e.taylor@enron.com 2001-06-13
## 10133 mark.e.taylor@enron.com 2001-06-13
## 10134 mark.e.taylor@enron.com 2001-06-13
## 10135 mark.e.taylor@enron.com 2001-06-13
## 10136 mark.e.taylor@enron.com 2001-06-13
## 10137 mark.e.taylor@enron.com 2001-06-13
## 10138 mark.e.taylor@enron.com 2001-06-13
## 10139 mark.e.taylor@enron.com 2001-06-13
## 10140 mark.e.taylor@enron.com 2001-06-13
## 10141 mark.e.taylor@enron.com 2001-06-12
## 10142 mark.e.taylor@enron.com 2001-06-12
## 10143 mark.e.taylor@enron.com 2001-06-12
## 10144 mark.e.taylor@enron.com 2001-06-12
## 10145 mark.e.taylor@enron.com 2001-06-11
## 10146 mark.e.taylor@enron.com 2001-06-11
## 10147 mark.e.taylor@enron.com 2001-06-11
## 10148 mark.e.taylor@enron.com 2001-06-11
## 10149 mark.e.taylor@enron.com 2001-06-11
## 10150 mark.e.taylor@enron.com 2001-06-11
## 10151 mark.e.taylor@enron.com 2001-06-11
## 10152 mark.e.taylor@enron.com 2001-06-11
## 10153 mark.e.taylor@enron.com 2001-06-11
## 10154 mark.e.taylor@enron.com 2001-06-08
## 10155 mark.e.taylor@enron.com 2001-06-08
## 10156 mark.e.taylor@enron.com 2001-06-08
## 10157 mark.e.taylor@enron.com 2001-06-08
## 10158 mark.e.taylor@enron.com 2001-06-08
## 10159 mark.e.taylor@enron.com 2001-06-07
## 10160 mark.e.taylor@enron.com 2001-06-07
## 10161 mark.e.taylor@enron.com 2001-06-05
## 10162 mark.e.taylor@enron.com 2001-06-01
## 10163 mark.e.taylor@enron.com 2001-06-01
## 10164 mark.e.taylor@enron.com 2001-06-01
## 10165 mark.e.taylor@enron.com 2001-06-01
## 10166 mark.e.taylor@enron.com 2001-06-01
## 10167 mark.e.taylor@enron.com 2001-06-01
## 10168 mark.e.taylor@enron.com 2001-06-01
## 10169 mark.e.taylor@enron.com 2001-06-01
## 10170 mark.e.taylor@enron.com 2001-06-01
## 10171 mark.e.taylor@enron.com 2001-06-01
## 10172 mark.e.taylor@enron.com 2001-06-01
## 10173 mark.e.taylor@enron.com 2001-06-01
## 10174 mark.e.taylor@enron.com 2001-06-01
## 10175 mark.e.taylor@enron.com 2001-05-31
## 10176 mark.e.taylor@enron.com 2001-05-31
## 10177 mark.e.taylor@enron.com 2001-05-31
## 10178 mark.e.taylor@enron.com 2001-05-31
## 10179 mark.e.taylor@enron.com 2001-05-25
## 10180 mark.e.taylor@enron.com 2001-05-25
## 10181 mark.e.taylor@enron.com 2001-05-25
## 10182 mark.e.taylor@enron.com 2001-05-25
## 10183 mark.e.taylor@enron.com 2001-05-25
## 10184 mark.e.taylor@enron.com 2001-05-25
## 10185 mark.e.taylor@enron.com 2001-05-25
## 10186 mark.e.taylor@enron.com 2001-05-25
## 10187 mark.e.taylor@enron.com 2001-05-25
## 10188 mark.e.taylor@enron.com 2001-05-24
## 10189 mark.e.taylor@enron.com 2001-05-24
## 10190 mark.e.taylor@enron.com 2001-05-24
## 10191 mark.e.taylor@enron.com 2001-05-24
## 10192 mark.e.taylor@enron.com 2001-05-24
## 10193 mark.e.taylor@enron.com 2001-05-24
## 10194 mark.e.taylor@enron.com 2001-05-24
## 10195 mark.e.taylor@enron.com 2001-05-24
## 10196 mark.e.taylor@enron.com 2001-05-24
## 10197 mark.e.taylor@enron.com 2001-05-24
## 10198 mark.e.taylor@enron.com 2001-05-24
## 10199 mark.e.taylor@enron.com 2001-05-24
## 10200 mark.e.taylor@enron.com 2001-05-24
## 10201 mark.e.taylor@enron.com 2001-05-22
## 10202 mark.e.taylor@enron.com 2001-05-22
## 10203 mark.e.taylor@enron.com 2001-05-22
## 10204 mark.e.taylor@enron.com 2001-05-22
## 10205 mark.e.taylor@enron.com 2001-05-22
## 10206 mark.e.taylor@enron.com 2001-05-22
## 10207 mark.e.taylor@enron.com 2001-05-22
## 10208 mark.e.taylor@enron.com 2001-11-26
## 10209 mark.e.taylor@enron.com 2001-11-19
## 10210 stephanie.panus@enron.com 2001-11-27
## 10211 stephanie.panus@enron.com 2001-11-27
## 10212 stephanie.panus@enron.com 2001-11-27
## 10213 stephanie.panus@enron.com 2001-11-27
## 10214 stephanie.panus@enron.com 2001-11-27
## 10215 stephanie.panus@enron.com 2001-11-27
## 10216 stephanie.panus@enron.com 2001-11-27
## 10217 stephanie.panus@enron.com 2001-11-27
## 10218 stephanie.panus@enron.com 2001-11-27
## 10219 stephanie.panus@enron.com 2001-11-27
## 10220 stephanie.panus@enron.com 2001-11-27
## 10221 stephanie.panus@enron.com 2001-11-27
## 10222 stephanie.panus@enron.com 2001-11-27
## 10223 stephanie.panus@enron.com 2001-11-27
## 10224 stephanie.panus@enron.com 2001-11-27
## 10225 stephanie.panus@enron.com 2001-11-27
## 10226 stephanie.panus@enron.com 2001-11-27
## 10227 stephanie.panus@enron.com 2001-11-27
## 10228 stephanie.panus@enron.com 2001-11-27
## 10229 stephanie.panus@enron.com 2001-11-27
## 10230 stephanie.panus@enron.com 2001-11-27
## 10231 stephanie.panus@enron.com 2001-11-27
## 10232 stephanie.panus@enron.com 2001-11-27
## 10233 stephanie.panus@enron.com 2001-11-27
## 10234 stephanie.panus@enron.com 2001-11-27
## 10235 stephanie.panus@enron.com 2001-11-27
## 10236 stephanie.panus@enron.com 2001-11-27
## 10237 stephanie.panus@enron.com 2001-11-27
## 10238 stephanie.panus@enron.com 2001-11-27
## 10239 stephanie.panus@enron.com 2001-11-27
## 10240 stephanie.panus@enron.com 2001-11-27
## 10241 stephanie.panus@enron.com 2001-11-27
## 10242 stephanie.panus@enron.com 2001-11-27
## 10243 stephanie.panus@enron.com 2001-11-27
## 10244 stephanie.panus@enron.com 2001-11-27
## 10245 stephanie.panus@enron.com 2001-11-27
## 10246 stephanie.panus@enron.com 2001-11-27
## 10247 stephanie.panus@enron.com 2001-11-27
## 10248 stephanie.panus@enron.com 2001-11-27
## 10249 stephanie.panus@enron.com 2001-11-27
## 10250 stephanie.panus@enron.com 2001-11-27
## 10251 stephanie.panus@enron.com 2001-11-27
## 10252 stephanie.panus@enron.com 2001-11-27
## 10253 stephanie.panus@enron.com 2001-11-27
## 10254 stephanie.panus@enron.com 2001-11-27
## 10255 stephanie.panus@enron.com 2001-11-27
## 10256 stephanie.panus@enron.com 2001-11-27
## 10257 stephanie.panus@enron.com 2001-11-27
## 10258 stephanie.panus@enron.com 2001-11-27
## 10259 stephanie.panus@enron.com 2001-11-27
## 10260 stephanie.panus@enron.com 2001-11-27
## 10261 stephanie.panus@enron.com 2001-11-27
## 10262 stephanie.panus@enron.com 2001-11-27
## 10263 stephanie.panus@enron.com 2001-11-27
## 10264 stephanie.panus@enron.com 2001-11-27
## 10265 stephanie.panus@enron.com 2001-11-27
## 10266 stephanie.panus@enron.com 2001-11-27
## 10267 stephanie.panus@enron.com 2001-11-27
## 10268 stephanie.panus@enron.com 2001-11-27
## 10269 stephanie.panus@enron.com 2001-11-27
## 10270 stephanie.panus@enron.com 2001-11-27
## 10271 stephanie.panus@enron.com 2001-11-27
## 10272 stephanie.panus@enron.com 2001-11-27
## 10273 stephanie.panus@enron.com 2001-11-27
## 10274 stephanie.panus@enron.com 2001-11-27
## 10275 stephanie.panus@enron.com 2001-11-27
## 10276 stephanie.panus@enron.com 2001-11-27
## 10277 stephanie.panus@enron.com 2001-11-27
## 10278 stephanie.panus@enron.com 2001-11-27
## 10279 stephanie.panus@enron.com 2001-11-27
## 10280 stephanie.panus@enron.com 2001-11-27
## 10281 stephanie.panus@enron.com 2001-11-27
## 10282 stephanie.panus@enron.com 2001-11-27
## 10283 stephanie.panus@enron.com 2001-11-27
## 10284 stephanie.panus@enron.com 2001-11-27
## 10285 stephanie.panus@enron.com 2001-11-27
## 10286 stephanie.panus@enron.com 2001-11-27
## 10287 stephanie.panus@enron.com 2001-11-27
## 10288 stephanie.panus@enron.com 2001-11-27
## 10289 stephanie.panus@enron.com 2001-11-27
## 10290 stephanie.panus@enron.com 2001-11-27
## 10291 stephanie.panus@enron.com 2001-11-27
## 10292 stephanie.panus@enron.com 2001-11-27
## 10293 stephanie.panus@enron.com 2001-11-27
## 10294 stephanie.panus@enron.com 2001-11-27
## 10295 stephanie.panus@enron.com 2001-11-27
## 10296 stephanie.panus@enron.com 2001-11-27
## 10297 stephanie.panus@enron.com 2001-11-27
## 10298 stephanie.panus@enron.com 2001-11-27
## 10299 stephanie.panus@enron.com 2001-11-27
## 10300 stephanie.panus@enron.com 2001-11-27
## 10301 stephanie.panus@enron.com 2001-11-27
## 10302 stephanie.panus@enron.com 2001-11-27
## 10303 stephanie.panus@enron.com 2001-11-27
## 10304 stephanie.panus@enron.com 2001-11-27
## 10305 stephanie.panus@enron.com 2001-11-27
## 10306 stephanie.panus@enron.com 2001-11-27
## 10307 stephanie.panus@enron.com 2001-11-27
## 10308 stephanie.panus@enron.com 2001-11-27
## 10309 stephanie.panus@enron.com 2001-11-27
## 10310 stephanie.panus@enron.com 2001-11-27
## 10311 stephanie.panus@enron.com 2001-11-27
## 10312 stephanie.panus@enron.com 2001-11-27
## 10313 stephanie.panus@enron.com 2001-11-27
## 10314 stephanie.panus@enron.com 2001-11-27
## 10315 stephanie.panus@enron.com 2001-11-27
## 10316 stephanie.panus@enron.com 2001-11-27
## 10317 stephanie.panus@enron.com 2001-11-27
## 10318 stephanie.panus@enron.com 2001-11-27
## 10319 stephanie.panus@enron.com 2001-11-27
## 10320 stephanie.panus@enron.com 2001-11-27
## 10321 stephanie.panus@enron.com 2001-11-27
## 10322 stephanie.panus@enron.com 2001-11-27
## 10323 stephanie.panus@enron.com 2001-11-27
## 10324 stephanie.panus@enron.com 2001-11-27
## 10325 stephanie.panus@enron.com 2001-11-27
## 10326 stephanie.panus@enron.com 2001-11-27
## 10327 stephanie.panus@enron.com 2001-11-27
## 10328 stephanie.panus@enron.com 2001-11-27
## 10329 stephanie.panus@enron.com 2001-11-27
## 10330 stephanie.panus@enron.com 2001-11-27
## 10331 stephanie.panus@enron.com 2001-11-27
## 10332 stephanie.panus@enron.com 2001-11-27
## 10333 stephanie.panus@enron.com 2001-11-27
## 10334 stephanie.panus@enron.com 2001-11-27
## 10335 stephanie.panus@enron.com 2001-11-27
## 10336 stephanie.panus@enron.com 2001-11-27
## 10337 stephanie.panus@enron.com 2001-11-27
## 10338 stephanie.panus@enron.com 2001-11-27
## 10339 stephanie.panus@enron.com 2001-11-27
## 10340 stephanie.panus@enron.com 2001-11-27
## 10341 stephanie.panus@enron.com 2001-11-27
## 10342 stephanie.panus@enron.com 2001-11-27
## 10343 stephanie.panus@enron.com 2001-11-27
## 10344 stephanie.panus@enron.com 2001-11-27
## 10345 stephanie.panus@enron.com 2001-11-27
## 10346 stephanie.panus@enron.com 2001-11-27
## 10347 stephanie.panus@enron.com 2001-11-27
## 10348 stephanie.panus@enron.com 2001-11-27
## 10349 stephanie.panus@enron.com 2001-11-27
## 10350 stephanie.panus@enron.com 2001-11-27
## 10351 stephanie.panus@enron.com 2001-11-27
## 10352 stephanie.panus@enron.com 2001-11-27
## 10353 stephanie.panus@enron.com 2001-11-27
## 10354 stephanie.panus@enron.com 2001-11-27
## 10355 stephanie.panus@enron.com 2001-11-27
## 10356 louise.kitchen@enron.com 2001-11-27
## 10357 stephanie.panus@enron.com 2001-11-21
## 10358 stephanie.panus@enron.com 2001-11-21
## 10359 stephanie.panus@enron.com 2001-11-21
## 10360 stephanie.panus@enron.com 2001-11-21
## 10361 stephanie.panus@enron.com 2001-11-21
## 10362 stephanie.panus@enron.com 2001-11-21
## 10363 stephanie.panus@enron.com 2001-11-21
## 10364 stephanie.panus@enron.com 2001-11-21
## 10365 stephanie.panus@enron.com 2001-11-21
## 10366 stephanie.panus@enron.com 2001-11-21
## 10367 stephanie.panus@enron.com 2001-11-21
## 10368 stephanie.panus@enron.com 2001-11-21
## 10369 stephanie.panus@enron.com 2001-11-21
## 10370 stephanie.panus@enron.com 2001-11-21
## 10371 stephanie.panus@enron.com 2001-11-21
## 10372 stephanie.panus@enron.com 2001-11-21
## 10373 stephanie.panus@enron.com 2001-11-21
## 10374 stephanie.panus@enron.com 2001-11-21
## 10375 stephanie.panus@enron.com 2001-11-21
## 10376 stephanie.panus@enron.com 2001-11-21
## 10377 stephanie.panus@enron.com 2001-11-21
## 10378 stephanie.panus@enron.com 2001-11-21
## 10379 stephanie.panus@enron.com 2001-11-21
## 10380 stephanie.panus@enron.com 2001-11-21
## 10381 stephanie.panus@enron.com 2001-11-21
## 10382 stephanie.panus@enron.com 2001-11-21
## 10383 stephanie.panus@enron.com 2001-11-21
## 10384 stephanie.panus@enron.com 2001-11-21
## 10385 stephanie.panus@enron.com 2001-11-21
## 10386 stephanie.panus@enron.com 2001-11-21
## 10387 stephanie.panus@enron.com 2001-11-21
## 10388 stephanie.panus@enron.com 2001-11-21
## 10389 stephanie.panus@enron.com 2001-11-21
## 10390 stephanie.panus@enron.com 2001-11-21
## 10391 stephanie.panus@enron.com 2001-11-21
## 10392 stephanie.panus@enron.com 2001-11-21
## 10393 stephanie.panus@enron.com 2001-11-21
## 10394 stephanie.panus@enron.com 2001-11-21
## 10395 stephanie.panus@enron.com 2001-11-21
## 10396 stephanie.panus@enron.com 2001-11-21
## 10397 stephanie.panus@enron.com 2001-11-21
## 10398 stephanie.panus@enron.com 2001-11-21
## 10399 stephanie.panus@enron.com 2001-11-21
## 10400 stephanie.panus@enron.com 2001-11-21
## 10401 stephanie.panus@enron.com 2001-11-21
## 10402 stephanie.panus@enron.com 2001-11-21
## 10403 stephanie.panus@enron.com 2001-11-21
## 10404 stephanie.panus@enron.com 2001-11-21
## 10405 stephanie.panus@enron.com 2001-11-21
## 10406 stephanie.panus@enron.com 2001-11-21
## 10407 stephanie.panus@enron.com 2001-11-21
## 10408 stephanie.panus@enron.com 2001-11-21
## 10409 stephanie.panus@enron.com 2001-11-21
## 10410 stephanie.panus@enron.com 2001-11-21
## 10411 stephanie.panus@enron.com 2001-11-21
## 10412 stephanie.panus@enron.com 2001-11-21
## 10413 stephanie.panus@enron.com 2001-11-21
## 10414 stephanie.panus@enron.com 2001-11-21
## 10415 stephanie.panus@enron.com 2001-11-21
## 10416 stephanie.panus@enron.com 2001-11-21
## 10417 stephanie.panus@enron.com 2001-11-21
## 10418 stephanie.panus@enron.com 2001-11-21
## 10419 stephanie.panus@enron.com 2001-11-21
## 10420 stephanie.panus@enron.com 2001-11-21
## 10421 stephanie.panus@enron.com 2001-11-21
## 10422 stephanie.panus@enron.com 2001-11-21
## 10423 stephanie.panus@enron.com 2001-11-21
## 10424 stephanie.panus@enron.com 2001-11-21
## 10425 stephanie.panus@enron.com 2001-11-21
## 10426 stephanie.panus@enron.com 2001-11-21
## 10427 stephanie.panus@enron.com 2001-11-21
## 10428 stephanie.panus@enron.com 2001-11-21
## 10429 stephanie.panus@enron.com 2001-11-21
## 10430 stephanie.panus@enron.com 2001-11-21
## 10431 e..haedicke@enron.com 2001-11-13
## 10432 e..haedicke@enron.com 2001-11-13
## 10433 e..haedicke@enron.com 2001-11-13
## 10434 e..haedicke@enron.com 2001-11-13
## 10435 e..haedicke@enron.com 2001-11-13
## 10436 e..haedicke@enron.com 2001-11-13
## 10437 e..haedicke@enron.com 2001-11-13
## 10438 e..haedicke@enron.com 2001-11-13
## 10439 e..haedicke@enron.com 2001-11-13
## 10440 e..haedicke@enron.com 2001-11-13
## 10441 e..haedicke@enron.com 2001-11-13
## 10442 e..haedicke@enron.com 2001-11-13
## 10443 e..haedicke@enron.com 2001-11-13
## 10444 e..haedicke@enron.com 2001-11-13
## 10445 e..haedicke@enron.com 2001-11-13
## 10446 e..haedicke@enron.com 2001-11-13
## 10447 e..haedicke@enron.com 2001-11-13
## 10448 e..haedicke@enron.com 2001-11-13
## 10449 e..haedicke@enron.com 2001-11-13
## 10450 e..haedicke@enron.com 2001-11-13
## 10451 e..haedicke@enron.com 2001-11-13
## 10452 e..haedicke@enron.com 2001-11-13
## 10453 e..haedicke@enron.com 2001-11-13
## 10454 e..haedicke@enron.com 2001-11-13
## 10455 e..haedicke@enron.com 2001-11-13
## 10456 michelle.cash@enron.com 2001-10-29
## 10457 michelle.cash@enron.com 2001-10-29
## 10458 e..haedicke@enron.com 2001-10-29
## 10459 e..haedicke@enron.com 2001-10-29
## 10460 e..haedicke@enron.com 2001-10-29
## 10461 e..haedicke@enron.com 2001-10-29
## 10462 e..haedicke@enron.com 2001-10-29
## 10463 e..haedicke@enron.com 2001-10-29
## 10464 e..haedicke@enron.com 2001-10-29
## 10465 e..haedicke@enron.com 2001-10-29
## 10466 e..haedicke@enron.com 2001-10-29
## 10467 e..haedicke@enron.com 2001-10-29
## 10468 e..haedicke@enron.com 2001-10-29
## 10469 e..haedicke@enron.com 2001-10-29
## 10470 e..haedicke@enron.com 2001-10-29
## 10471 e..haedicke@enron.com 2001-10-29
## 10472 e..haedicke@enron.com 2001-10-29
## 10473 e..haedicke@enron.com 2001-10-29
## 10474 e..haedicke@enron.com 2001-10-29
## 10475 e..haedicke@enron.com 2001-10-29
## 10476 e..haedicke@enron.com 2001-10-29
## 10477 e..haedicke@enron.com 2001-10-29
## 10478 e..haedicke@enron.com 2001-10-29
## 10479 richard.b.sanders@enron.com 2001-10-26
## 10480 richard.b.sanders@enron.com 2001-10-26
## 10481 richard.b.sanders@enron.com 2001-10-26
## 10482 richard.b.sanders@enron.com 2001-10-26
## 10483 richard.b.sanders@enron.com 2001-10-26
## 10484 richard.b.sanders@enron.com 2001-10-26
## 10485 richard.b.sanders@enron.com 2001-10-26
## 10486 e..haedicke@enron.com 2001-10-01
## 10487 e..haedicke@enron.com 2001-10-01
## 10488 e..haedicke@enron.com 2001-10-01
## 10489 e..haedicke@enron.com 2001-10-02
## 10490 e..haedicke@enron.com 2001-10-02
## 10491 e..haedicke@enron.com 2001-10-02
## 10492 e..haedicke@enron.com 2001-10-02
## 10493 e..haedicke@enron.com 2001-10-02
## 10494 e..haedicke@enron.com 2001-10-02
## 10495 e..haedicke@enron.com 2001-10-02
## 10496 e..haedicke@enron.com 2001-10-02
## 10497 e..haedicke@enron.com 2001-10-02
## 10498 e..haedicke@enron.com 2001-10-02
## 10499 e..haedicke@enron.com 2001-10-02
## 10500 e..haedicke@enron.com 2001-10-02
## 10501 e..haedicke@enron.com 2001-10-02
## 10502 e..haedicke@enron.com 2001-10-02
## 10503 e..haedicke@enron.com 2001-10-02
## 10504 e..haedicke@enron.com 2001-10-02
## 10505 e..haedicke@enron.com 2001-10-02
## 10506 e..haedicke@enron.com 2001-10-02
## 10507 e..haedicke@enron.com 2001-10-26
## 10508 e..haedicke@enron.com 2001-10-26
## 10509 e..haedicke@enron.com 2001-10-26
## 10510 e..haedicke@enron.com 2001-10-26
## 10511 e..haedicke@enron.com 2001-10-26
## 10512 e..haedicke@enron.com 2001-10-26
## 10513 e..haedicke@enron.com 2001-10-26
## 10514 e..haedicke@enron.com 2001-10-26
## 10515 e..haedicke@enron.com 2001-10-26
## 10516 e..haedicke@enron.com 2001-10-26
## 10517 e..haedicke@enron.com 2001-10-26
## 10518 e..haedicke@enron.com 2001-10-26
## 10519 e..haedicke@enron.com 2001-10-26
## 10520 e..haedicke@enron.com 2001-10-26
## 10521 e..haedicke@enron.com 2001-10-26
## 10522 e..haedicke@enron.com 2001-10-26
## 10523 e..haedicke@enron.com 2001-10-26
## 10524 e..haedicke@enron.com 2001-10-26
## 10525 e..haedicke@enron.com 2001-10-26
## 10526 e..haedicke@enron.com 2001-10-26
## 10527 e..haedicke@enron.com 2001-10-26
## 10528 e..haedicke@enron.com 2001-10-26
## 10529 e..haedicke@enron.com 2001-10-26
## 10530 e..haedicke@enron.com 2001-10-26
## 10531 e..haedicke@enron.com 2001-10-26
## 10532 e..haedicke@enron.com 2001-10-26
## 10533 e..haedicke@enron.com 2001-10-26
## 10534 e..haedicke@enron.com 2001-10-26
## 10535 e..haedicke@enron.com 2001-10-26
## 10536 e..haedicke@enron.com 2001-10-26
## 10537 e..haedicke@enron.com 2001-10-26
## 10538 e..haedicke@enron.com 2001-10-26
## 10539 e..haedicke@enron.com 2001-10-26
## 10540 e..haedicke@enron.com 2001-10-26
## 10541 e..haedicke@enron.com 2001-10-26
## 10542 stephanie.panus@enron.com 2001-10-23
## 10543 stephanie.panus@enron.com 2001-10-23
## 10544 stephanie.panus@enron.com 2001-10-23
## 10545 stephanie.panus@enron.com 2001-10-23
## 10546 stephanie.panus@enron.com 2001-10-23
## 10547 stephanie.panus@enron.com 2001-10-23
## 10548 stephanie.panus@enron.com 2001-10-23
## 10549 stephanie.panus@enron.com 2001-10-23
## 10550 stephanie.panus@enron.com 2001-10-23
## 10551 stephanie.panus@enron.com 2001-10-23
## 10552 stephanie.panus@enron.com 2001-10-23
## 10553 stephanie.panus@enron.com 2001-10-23
## 10554 stephanie.panus@enron.com 2001-10-23
## 10555 stephanie.panus@enron.com 2001-10-23
## 10556 stephanie.panus@enron.com 2001-10-23
## 10557 stephanie.panus@enron.com 2001-10-23
## 10558 stephanie.panus@enron.com 2001-10-23
## 10559 stephanie.panus@enron.com 2001-10-23
## 10560 stephanie.panus@enron.com 2001-10-23
## 10561 stephanie.panus@enron.com 2001-10-23
## 10562 stephanie.panus@enron.com 2001-10-23
## 10563 stephanie.panus@enron.com 2001-10-23
## 10564 stephanie.panus@enron.com 2001-10-23
## 10565 stephanie.panus@enron.com 2001-10-23
## 10566 stephanie.panus@enron.com 2001-10-23
## 10567 stephanie.panus@enron.com 2001-10-23
## 10568 stephanie.panus@enron.com 2001-10-23
## 10569 stephanie.panus@enron.com 2001-10-23
## 10570 stephanie.panus@enron.com 2001-10-23
## 10571 stephanie.panus@enron.com 2001-10-23
## 10572 stephanie.panus@enron.com 2001-10-23
## 10573 stephanie.panus@enron.com 2001-10-23
## 10574 stephanie.panus@enron.com 2001-10-23
## 10575 stephanie.panus@enron.com 2001-10-23
## 10576 stephanie.panus@enron.com 2001-10-23
## 10577 stephanie.panus@enron.com 2001-10-23
## 10578 stephanie.panus@enron.com 2001-10-23
## 10579 stephanie.panus@enron.com 2001-10-23
## 10580 stephanie.panus@enron.com 2001-10-23
## 10581 stephanie.panus@enron.com 2001-10-23
## 10582 stephanie.panus@enron.com 2001-10-23
## 10583 stephanie.panus@enron.com 2001-10-23
## 10584 stephanie.panus@enron.com 2001-10-23
## 10585 stephanie.panus@enron.com 2001-10-23
## 10586 stephanie.panus@enron.com 2001-10-23
## 10587 stephanie.panus@enron.com 2001-10-23
## 10588 stephanie.panus@enron.com 2001-10-23
## 10589 stephanie.panus@enron.com 2001-10-23
## 10590 stephanie.panus@enron.com 2001-10-23
## 10591 stephanie.panus@enron.com 2001-10-23
## 10592 stephanie.panus@enron.com 2001-10-23
## 10593 stephanie.panus@enron.com 2001-10-23
## 10594 stephanie.panus@enron.com 2001-10-23
## 10595 stephanie.panus@enron.com 2001-10-23
## 10596 stephanie.panus@enron.com 2001-10-23
## 10597 stephanie.panus@enron.com 2001-10-23
## 10598 stephanie.panus@enron.com 2001-10-23
## 10599 stephanie.panus@enron.com 2001-10-23
## 10600 stephanie.panus@enron.com 2001-10-23
## 10601 stephanie.panus@enron.com 2001-10-23
## 10602 stephanie.panus@enron.com 2001-10-23
## 10603 stephanie.panus@enron.com 2001-10-23
## 10604 stephanie.panus@enron.com 2001-10-23
## 10605 stephanie.panus@enron.com 2001-10-23
## 10606 stephanie.panus@enron.com 2001-10-23
## 10607 stephanie.panus@enron.com 2001-10-23
## 10608 stephanie.panus@enron.com 2001-10-23
## 10609 stephanie.panus@enron.com 2001-10-23
## 10610 stephanie.panus@enron.com 2001-10-23
## 10611 stephanie.panus@enron.com 2001-10-23
## 10612 stephanie.panus@enron.com 2001-10-23
## 10613 stephanie.panus@enron.com 2001-10-23
## 10614 stephanie.panus@enron.com 2001-10-23
## 10615 stephanie.panus@enron.com 2001-10-23
## 10616 stephanie.panus@enron.com 2001-10-23
## 10617 stephanie.panus@enron.com 2001-10-23
## 10618 stephanie.panus@enron.com 2001-10-23
## 10619 stephanie.panus@enron.com 2001-10-23
## 10620 stephanie.panus@enron.com 2001-10-23
## 10621 stephanie.panus@enron.com 2001-10-23
## 10622 stephanie.panus@enron.com 2001-10-23
## 10623 stephanie.panus@enron.com 2001-10-23
## 10624 stephanie.panus@enron.com 2001-10-23
## 10625 stephanie.panus@enron.com 2001-10-23
## 10626 stephanie.panus@enron.com 2001-10-23
## 10627 stephanie.panus@enron.com 2001-10-23
## 10628 stephanie.panus@enron.com 2001-10-23
## 10629 stephanie.panus@enron.com 2001-10-23
## 10630 stephanie.panus@enron.com 2001-10-23
## 10631 stephanie.panus@enron.com 2001-10-23
## 10632 stephanie.panus@enron.com 2001-10-23
## 10633 stephanie.panus@enron.com 2001-10-23
## 10634 stephanie.panus@enron.com 2001-10-23
## 10635 stephanie.panus@enron.com 2001-10-23
## 10636 stephanie.panus@enron.com 2001-10-23
## 10637 stephanie.panus@enron.com 2001-10-23
## 10638 stephanie.panus@enron.com 2001-10-23
## 10639 stephanie.panus@enron.com 2001-10-23
## 10640 stephanie.panus@enron.com 2001-10-23
## 10641 stephanie.panus@enron.com 2001-10-23
## 10642 stephanie.panus@enron.com 2001-10-23
## 10643 stephanie.panus@enron.com 2001-10-23
## 10644 stephanie.panus@enron.com 2001-10-23
## 10645 stephanie.panus@enron.com 2001-10-23
## 10646 stephanie.panus@enron.com 2001-10-23
## 10647 stephanie.panus@enron.com 2001-10-23
## 10648 stephanie.panus@enron.com 2001-10-23
## 10649 stephanie.panus@enron.com 2001-10-23
## 10650 stephanie.panus@enron.com 2001-10-23
## 10651 stephanie.panus@enron.com 2001-10-23
## 10652 stephanie.panus@enron.com 2001-10-23
## 10653 stephanie.panus@enron.com 2001-10-23
## 10654 stephanie.panus@enron.com 2001-10-23
## 10655 stephanie.panus@enron.com 2001-10-23
## 10656 stephanie.panus@enron.com 2001-10-23
## 10657 stephanie.panus@enron.com 2001-10-23
## 10658 stephanie.panus@enron.com 2001-10-23
## 10659 stephanie.panus@enron.com 2001-10-23
## 10660 stephanie.panus@enron.com 2001-10-23
## 10661 stephanie.panus@enron.com 2001-10-23
## 10662 stephanie.panus@enron.com 2001-10-23
## 10663 stephanie.panus@enron.com 2001-10-23
## 10664 stephanie.panus@enron.com 2001-10-23
## 10665 stephanie.panus@enron.com 2001-10-23
## 10666 stephanie.panus@enron.com 2001-10-23
## 10667 stephanie.panus@enron.com 2001-10-23
## 10668 stephanie.panus@enron.com 2001-10-23
## 10669 stephanie.panus@enron.com 2001-10-23
## 10670 stephanie.panus@enron.com 2001-10-23
## 10671 stephanie.panus@enron.com 2001-10-23
## 10672 stephanie.panus@enron.com 2001-10-23
## 10673 stephanie.panus@enron.com 2001-10-23
## 10674 stephanie.panus@enron.com 2001-10-23
## 10675 stephanie.panus@enron.com 2001-10-23
## 10676 stephanie.panus@enron.com 2001-10-23
## 10677 stephanie.panus@enron.com 2001-10-23
## 10678 stephanie.panus@enron.com 2001-10-23
## 10679 stephanie.panus@enron.com 2001-10-23
## 10680 stephanie.panus@enron.com 2001-10-23
## 10681 stephanie.panus@enron.com 2001-10-23
## 10682 stephanie.panus@enron.com 2001-10-23
## 10683 stephanie.panus@enron.com 2001-10-23
## 10684 stephanie.panus@enron.com 2001-10-23
## 10685 stephanie.panus@enron.com 2001-10-23
## 10686 stephanie.panus@enron.com 2001-10-23
## 10687 stephanie.panus@enron.com 2001-10-23
## 10688 stephanie.panus@enron.com 2001-10-23
## 10689 stephanie.panus@enron.com 2001-10-23
## 10690 stephanie.panus@enron.com 2001-10-23
## 10691 stephanie.panus@enron.com 2001-10-23
## 10692 stephanie.panus@enron.com 2001-10-23
## 10693 stephanie.panus@enron.com 2001-10-23
## 10694 stacy.dickson@enron.com 2001-09-06
## 10695 stacy.dickson@enron.com 2001-09-06
## 10696 stacy.dickson@enron.com 2001-09-06
## 10697 e..haedicke@enron.com 2001-10-22
## 10698 e..haedicke@enron.com 2001-10-22
## 10699 e..haedicke@enron.com 2001-10-22
## 10700 e..haedicke@enron.com 2001-10-22
## 10701 e..haedicke@enron.com 2001-10-22
## 10702 e..haedicke@enron.com 2001-10-22
## 10703 e..haedicke@enron.com 2001-10-22
## 10704 e..haedicke@enron.com 2001-10-22
## 10705 e..haedicke@enron.com 2001-10-22
## 10706 e..haedicke@enron.com 2001-10-22
## 10707 e..haedicke@enron.com 2001-10-22
## 10708 e..haedicke@enron.com 2001-10-22
## 10709 e..haedicke@enron.com 2001-10-22
## 10710 e..haedicke@enron.com 2001-10-22
## 10711 e..haedicke@enron.com 2001-10-22
## 10712 e..haedicke@enron.com 2001-10-22
## 10713 e..haedicke@enron.com 2001-10-22
## 10714 e..haedicke@enron.com 2001-10-22
## 10715 e..haedicke@enron.com 2001-10-22
## 10716 e..haedicke@enron.com 2001-10-22
## 10717 e..haedicke@enron.com 2001-10-22
## 10718 e..haedicke@enron.com 2001-10-22
## 10719 e..haedicke@enron.com 2001-10-22
## 10720 e..haedicke@enron.com 2001-10-22
## 10721 e..haedicke@enron.com 2001-10-22
## 10722 e..haedicke@enron.com 2001-10-22
## 10723 e..haedicke@enron.com 2001-10-22
## 10724 e..haedicke@enron.com 2001-10-22
## 10725 e..haedicke@enron.com 2001-10-22
## 10726 e..haedicke@enron.com 2001-10-22
## 10727 e..haedicke@enron.com 2001-10-22
## 10728 stephanie.panus@enron.com 2001-10-22
## 10729 stephanie.panus@enron.com 2001-10-22
## 10730 stephanie.panus@enron.com 2001-10-22
## 10731 stephanie.panus@enron.com 2001-10-22
## 10732 stephanie.panus@enron.com 2001-10-22
## 10733 stephanie.panus@enron.com 2001-10-22
## 10734 stephanie.panus@enron.com 2001-10-22
## 10735 stephanie.panus@enron.com 2001-10-22
## 10736 stephanie.panus@enron.com 2001-10-22
## 10737 stephanie.panus@enron.com 2001-10-22
## 10738 stephanie.panus@enron.com 2001-10-22
## 10739 stephanie.panus@enron.com 2001-10-22
## 10740 stephanie.panus@enron.com 2001-10-22
## 10741 stephanie.panus@enron.com 2001-10-22
## 10742 stephanie.panus@enron.com 2001-10-22
## 10743 stephanie.panus@enron.com 2001-10-22
## 10744 stephanie.panus@enron.com 2001-10-22
## 10745 stephanie.panus@enron.com 2001-10-22
## 10746 stephanie.panus@enron.com 2001-10-22
## 10747 stephanie.panus@enron.com 2001-10-22
## 10748 stephanie.panus@enron.com 2001-10-22
## 10749 stephanie.panus@enron.com 2001-10-22
## 10750 stephanie.panus@enron.com 2001-10-22
## 10751 stephanie.panus@enron.com 2001-10-22
## 10752 stephanie.panus@enron.com 2001-10-22
## 10753 stephanie.panus@enron.com 2001-10-22
## 10754 stephanie.panus@enron.com 2001-10-22
## 10755 stephanie.panus@enron.com 2001-10-22
## 10756 stephanie.panus@enron.com 2001-10-22
## 10757 stephanie.panus@enron.com 2001-10-22
## 10758 stephanie.panus@enron.com 2001-10-22
## 10759 stephanie.panus@enron.com 2001-10-22
## 10760 stephanie.panus@enron.com 2001-10-22
## 10761 stephanie.panus@enron.com 2001-10-22
## 10762 stephanie.panus@enron.com 2001-10-22
## 10763 stephanie.panus@enron.com 2001-10-22
## 10764 stephanie.panus@enron.com 2001-10-22
## 10765 stephanie.panus@enron.com 2001-10-22
## 10766 stephanie.panus@enron.com 2001-10-22
## 10767 stephanie.panus@enron.com 2001-10-22
## 10768 stephanie.panus@enron.com 2001-10-22
## 10769 stephanie.panus@enron.com 2001-10-22
## 10770 stephanie.panus@enron.com 2001-10-22
## 10771 stephanie.panus@enron.com 2001-10-22
## 10772 stephanie.panus@enron.com 2001-10-22
## 10773 stephanie.panus@enron.com 2001-10-22
## 10774 stephanie.panus@enron.com 2001-10-22
## 10775 stephanie.panus@enron.com 2001-10-22
## 10776 stephanie.panus@enron.com 2001-10-22
## 10777 stephanie.panus@enron.com 2001-10-22
## 10778 stephanie.panus@enron.com 2001-10-22
## 10779 stephanie.panus@enron.com 2001-10-22
## 10780 stephanie.panus@enron.com 2001-10-22
## 10781 stephanie.panus@enron.com 2001-10-22
## 10782 stephanie.panus@enron.com 2001-10-22
## 10783 stephanie.panus@enron.com 2001-10-22
## 10784 stephanie.panus@enron.com 2001-10-22
## 10785 stephanie.panus@enron.com 2001-10-22
## 10786 stephanie.panus@enron.com 2001-10-22
## 10787 stephanie.panus@enron.com 2001-10-22
## 10788 stephanie.panus@enron.com 2001-10-22
## 10789 stephanie.panus@enron.com 2001-10-22
## 10790 stephanie.panus@enron.com 2001-10-22
## 10791 stephanie.panus@enron.com 2001-10-22
## 10792 stephanie.panus@enron.com 2001-10-22
## 10793 stephanie.panus@enron.com 2001-10-22
## 10794 stephanie.panus@enron.com 2001-10-22
## 10795 stephanie.panus@enron.com 2001-10-22
## 10796 stephanie.panus@enron.com 2001-10-22
## 10797 stephanie.panus@enron.com 2001-10-22
## 10798 stephanie.panus@enron.com 2001-10-22
## 10799 stephanie.panus@enron.com 2001-10-22
## 10800 stephanie.panus@enron.com 2001-10-22
## 10801 stephanie.panus@enron.com 2001-10-22
## 10802 stephanie.panus@enron.com 2001-10-22
## 10803 stephanie.panus@enron.com 2001-10-22
## 10804 stephanie.panus@enron.com 2001-10-22
## 10805 stephanie.panus@enron.com 2001-10-22
## 10806 stephanie.panus@enron.com 2001-10-22
## 10807 stephanie.panus@enron.com 2001-10-22
## 10808 stephanie.panus@enron.com 2001-10-22
## 10809 stephanie.panus@enron.com 2001-10-22
## 10810 stephanie.panus@enron.com 2001-10-22
## 10811 stephanie.panus@enron.com 2001-10-22
## 10812 stephanie.panus@enron.com 2001-10-22
## 10813 stephanie.panus@enron.com 2001-10-22
## 10814 stephanie.panus@enron.com 2001-10-22
## 10815 stephanie.panus@enron.com 2001-10-22
## 10816 stephanie.panus@enron.com 2001-10-22
## 10817 stephanie.panus@enron.com 2001-10-22
## 10818 stephanie.panus@enron.com 2001-10-22
## 10819 stephanie.panus@enron.com 2001-10-22
## 10820 stephanie.panus@enron.com 2001-10-22
## 10821 stephanie.panus@enron.com 2001-10-22
## 10822 stephanie.panus@enron.com 2001-10-22
## 10823 stephanie.panus@enron.com 2001-10-22
## 10824 stephanie.panus@enron.com 2001-10-22
## 10825 stephanie.panus@enron.com 2001-10-22
## 10826 stephanie.panus@enron.com 2001-10-22
## 10827 stephanie.panus@enron.com 2001-10-22
## 10828 stephanie.panus@enron.com 2001-10-22
## 10829 stephanie.panus@enron.com 2001-10-22
## 10830 stephanie.panus@enron.com 2001-10-22
## 10831 stephanie.panus@enron.com 2001-10-22
## 10832 stephanie.panus@enron.com 2001-10-22
## 10833 stephanie.panus@enron.com 2001-10-22
## 10834 stephanie.panus@enron.com 2001-10-22
## 10835 stephanie.panus@enron.com 2001-10-22
## 10836 stephanie.panus@enron.com 2001-10-22
## 10837 stephanie.panus@enron.com 2001-10-22
## 10838 stephanie.panus@enron.com 2001-10-22
## 10839 stephanie.panus@enron.com 2001-10-22
## 10840 stephanie.panus@enron.com 2001-10-22
## 10841 stephanie.panus@enron.com 2001-10-22
## 10842 stephanie.panus@enron.com 2001-10-22
## 10843 stephanie.panus@enron.com 2001-10-22
## 10844 stephanie.panus@enron.com 2001-10-22
## 10845 stephanie.panus@enron.com 2001-10-22
## 10846 stephanie.panus@enron.com 2001-10-22
## 10847 stephanie.panus@enron.com 2001-10-22
## 10848 stephanie.panus@enron.com 2001-10-22
## 10849 stephanie.panus@enron.com 2001-10-22
## 10850 stephanie.panus@enron.com 2001-10-22
## 10851 stephanie.panus@enron.com 2001-10-22
## 10852 stephanie.panus@enron.com 2001-10-22
## 10853 stephanie.panus@enron.com 2001-10-22
## 10854 stephanie.panus@enron.com 2001-10-22
## 10855 stephanie.panus@enron.com 2001-10-22
## 10856 stephanie.panus@enron.com 2001-10-22
## 10857 stephanie.panus@enron.com 2001-10-22
## 10858 stephanie.panus@enron.com 2001-10-22
## 10859 stephanie.panus@enron.com 2001-10-22
## 10860 stephanie.panus@enron.com 2001-10-22
## 10861 stephanie.panus@enron.com 2001-10-22
## 10862 stephanie.panus@enron.com 2001-10-22
## 10863 stephanie.panus@enron.com 2001-10-22
## 10864 stephanie.panus@enron.com 2001-10-22
## 10865 stephanie.panus@enron.com 2001-10-22
## 10866 stephanie.panus@enron.com 2001-10-22
## 10867 stephanie.panus@enron.com 2001-10-22
## 10868 stephanie.panus@enron.com 2001-10-22
## 10869 stephanie.panus@enron.com 2001-10-22
## 10870 stephanie.panus@enron.com 2001-10-22
## 10871 stephanie.panus@enron.com 2001-10-22
## 10872 stephanie.panus@enron.com 2001-10-22
## 10873 stephanie.panus@enron.com 2001-10-22
## 10874 stephanie.panus@enron.com 2001-10-22
## 10875 stephanie.panus@enron.com 2001-10-22
## 10876 stephanie.panus@enron.com 2001-10-22
## 10877 stephanie.panus@enron.com 2001-10-22
## 10878 stephanie.panus@enron.com 2001-10-22
## 10879 stephanie.panus@enron.com 2001-10-22
## 10880 stephanie.panus@enron.com 2001-10-22
## 10881 stephanie.panus@enron.com 2001-10-22
## 10882 stephanie.panus@enron.com 2001-10-22
## 10883 stephanie.panus@enron.com 2001-10-22
## 10884 stephanie.panus@enron.com 2001-10-22
## 10885 stephanie.panus@enron.com 2001-10-22
## 10886 stephanie.panus@enron.com 2001-10-22
## 10887 stephanie.panus@enron.com 2001-10-22
## 10888 stephanie.panus@enron.com 2001-10-22
## 10889 stephanie.panus@enron.com 2001-10-22
## 10890 stephanie.panus@enron.com 2001-10-22
## 10891 stephanie.panus@enron.com 2001-10-22
## 10892 stephanie.panus@enron.com 2001-10-22
## 10893 stephanie.panus@enron.com 2001-10-22
## 10894 stephanie.panus@enron.com 2001-10-22
## 10895 stephanie.panus@enron.com 2001-10-19
## 10896 stephanie.panus@enron.com 2001-10-19
## 10897 stephanie.panus@enron.com 2001-10-19
## 10898 stephanie.panus@enron.com 2001-10-19
## 10899 stephanie.panus@enron.com 2001-10-19
## 10900 stephanie.panus@enron.com 2001-10-19
## 10901 stephanie.panus@enron.com 2001-10-19
## 10902 stephanie.panus@enron.com 2001-10-19
## 10903 stephanie.panus@enron.com 2001-10-19
## 10904 stephanie.panus@enron.com 2001-10-19
## 10905 stephanie.panus@enron.com 2001-10-19
## 10906 stephanie.panus@enron.com 2001-10-19
## 10907 stephanie.panus@enron.com 2001-10-19
## 10908 stephanie.panus@enron.com 2001-10-19
## 10909 stephanie.panus@enron.com 2001-10-19
## 10910 stephanie.panus@enron.com 2001-10-19
## 10911 stephanie.panus@enron.com 2001-10-19
## 10912 stephanie.panus@enron.com 2001-10-19
## 10913 stephanie.panus@enron.com 2001-10-19
## 10914 stephanie.panus@enron.com 2001-10-19
## 10915 stephanie.panus@enron.com 2001-10-19
## 10916 stephanie.panus@enron.com 2001-10-19
## 10917 stephanie.panus@enron.com 2001-10-19
## 10918 stephanie.panus@enron.com 2001-10-19
## 10919 stephanie.panus@enron.com 2001-10-19
## 10920 stephanie.panus@enron.com 2001-10-19
## 10921 stephanie.panus@enron.com 2001-10-19
## 10922 stephanie.panus@enron.com 2001-10-19
## 10923 stephanie.panus@enron.com 2001-10-19
## 10924 stephanie.panus@enron.com 2001-10-19
## 10925 stephanie.panus@enron.com 2001-10-19
## 10926 stephanie.panus@enron.com 2001-10-19
## 10927 stephanie.panus@enron.com 2001-10-19
## 10928 stephanie.panus@enron.com 2001-10-19
## 10929 stephanie.panus@enron.com 2001-10-19
## 10930 stephanie.panus@enron.com 2001-10-19
## 10931 stephanie.panus@enron.com 2001-10-19
## 10932 stephanie.panus@enron.com 2001-10-19
## 10933 stephanie.panus@enron.com 2001-10-19
## 10934 stephanie.panus@enron.com 2001-10-19
## 10935 stephanie.panus@enron.com 2001-10-19
## 10936 stephanie.panus@enron.com 2001-10-19
## 10937 stephanie.panus@enron.com 2001-10-19
## 10938 stephanie.panus@enron.com 2001-10-19
## 10939 stephanie.panus@enron.com 2001-10-19
## 10940 stephanie.panus@enron.com 2001-10-19
## 10941 stephanie.panus@enron.com 2001-10-19
## 10942 stephanie.panus@enron.com 2001-10-19
## 10943 stephanie.panus@enron.com 2001-10-19
## 10944 stephanie.panus@enron.com 2001-10-19
## 10945 stephanie.panus@enron.com 2001-10-19
## 10946 stephanie.panus@enron.com 2001-10-19
## 10947 stephanie.panus@enron.com 2001-10-19
## 10948 stephanie.panus@enron.com 2001-10-19
## 10949 stephanie.panus@enron.com 2001-10-19
## 10950 stephanie.panus@enron.com 2001-10-19
## 10951 stephanie.panus@enron.com 2001-10-19
## 10952 stephanie.panus@enron.com 2001-10-19
## 10953 stephanie.panus@enron.com 2001-10-19
## 10954 stephanie.panus@enron.com 2001-10-19
## 10955 stephanie.panus@enron.com 2001-10-19
## 10956 stephanie.panus@enron.com 2001-10-19
## 10957 stephanie.panus@enron.com 2001-10-19
## 10958 stephanie.panus@enron.com 2001-10-19
## 10959 stephanie.panus@enron.com 2001-10-19
## 10960 stephanie.panus@enron.com 2001-10-19
## 10961 stephanie.panus@enron.com 2001-10-19
## 10962 stephanie.panus@enron.com 2001-10-19
## 10963 stephanie.panus@enron.com 2001-10-19
## 10964 stephanie.panus@enron.com 2001-10-19
## 10965 stephanie.panus@enron.com 2001-10-19
## 10966 stephanie.panus@enron.com 2001-10-19
## 10967 stephanie.panus@enron.com 2001-10-19
## 10968 stephanie.panus@enron.com 2001-10-19
## 10969 stephanie.panus@enron.com 2001-10-19
## 10970 stephanie.panus@enron.com 2001-10-19
## 10971 stephanie.panus@enron.com 2001-10-19
## 10972 stephanie.panus@enron.com 2001-10-19
## 10973 stephanie.panus@enron.com 2001-10-19
## 10974 stephanie.panus@enron.com 2001-10-19
## 10975 stephanie.panus@enron.com 2001-10-19
## 10976 stephanie.panus@enron.com 2001-10-19
## 10977 stephanie.panus@enron.com 2001-10-19
## 10978 stephanie.panus@enron.com 2001-10-19
## 10979 stephanie.panus@enron.com 2001-10-19
## 10980 stephanie.panus@enron.com 2001-10-19
## 10981 stephanie.panus@enron.com 2001-10-19
## 10982 stephanie.panus@enron.com 2001-10-19
## 10983 stephanie.panus@enron.com 2001-10-19
## 10984 stephanie.panus@enron.com 2001-10-19
## 10985 stephanie.panus@enron.com 2001-10-19
## 10986 stephanie.panus@enron.com 2001-10-19
## 10987 stephanie.panus@enron.com 2001-10-19
## 10988 stephanie.panus@enron.com 2001-10-19
## 10989 stephanie.panus@enron.com 2001-10-19
## 10990 stephanie.panus@enron.com 2001-10-19
## 10991 stephanie.panus@enron.com 2001-10-19
## 10992 stephanie.panus@enron.com 2001-10-19
## 10993 stephanie.panus@enron.com 2001-10-19
## 10994 stephanie.panus@enron.com 2001-10-19
## 10995 stephanie.panus@enron.com 2001-10-19
## 10996 stephanie.panus@enron.com 2001-10-19
## 10997 stephanie.panus@enron.com 2001-10-19
## 10998 stephanie.panus@enron.com 2001-10-19
## 10999 stephanie.panus@enron.com 2001-10-19
## 11000 stephanie.panus@enron.com 2001-10-19
## 11001 stephanie.panus@enron.com 2001-10-19
## 11002 stephanie.panus@enron.com 2001-10-19
## 11003 stephanie.panus@enron.com 2001-10-19
## 11004 stephanie.panus@enron.com 2001-10-19
## 11005 stephanie.panus@enron.com 2001-10-19
## 11006 stephanie.panus@enron.com 2001-10-19
## 11007 stephanie.panus@enron.com 2001-10-19
## 11008 stephanie.panus@enron.com 2001-10-19
## 11009 stephanie.panus@enron.com 2001-10-19
## 11010 stephanie.panus@enron.com 2001-10-19
## 11011 stephanie.panus@enron.com 2001-10-19
## 11012 stephanie.panus@enron.com 2001-10-19
## 11013 stephanie.panus@enron.com 2001-10-19
## 11014 stephanie.panus@enron.com 2001-10-19
## 11015 stephanie.panus@enron.com 2001-10-19
## 11016 stephanie.panus@enron.com 2001-10-19
## 11017 stephanie.panus@enron.com 2001-10-19
## 11018 stephanie.panus@enron.com 2001-10-19
## 11019 stephanie.panus@enron.com 2001-10-19
## 11020 stephanie.panus@enron.com 2001-10-19
## 11021 stephanie.panus@enron.com 2001-10-19
## 11022 stephanie.panus@enron.com 2001-10-19
## 11023 stephanie.panus@enron.com 2001-10-19
## 11024 stephanie.panus@enron.com 2001-10-19
## 11025 stephanie.panus@enron.com 2001-10-19
## 11026 stephanie.panus@enron.com 2001-10-19
## 11027 stephanie.panus@enron.com 2001-10-19
## 11028 stephanie.panus@enron.com 2001-10-19
## 11029 stephanie.panus@enron.com 2001-10-19
## 11030 stephanie.panus@enron.com 2001-10-19
## 11031 stephanie.panus@enron.com 2001-10-19
## 11032 stephanie.panus@enron.com 2001-10-19
## 11033 stephanie.panus@enron.com 2001-10-19
## 11034 stephanie.panus@enron.com 2001-10-19
## 11035 stephanie.panus@enron.com 2001-10-19
## 11036 stephanie.panus@enron.com 2001-10-19
## 11037 stephanie.panus@enron.com 2001-10-19
## 11038 stephanie.panus@enron.com 2001-10-19
## 11039 stephanie.panus@enron.com 2001-10-19
## 11040 stephanie.panus@enron.com 2001-10-19
## 11041 stephanie.panus@enron.com 2001-10-19
## 11042 stephanie.panus@enron.com 2001-10-19
## 11043 stephanie.panus@enron.com 2001-10-19
## 11044 stephanie.panus@enron.com 2001-10-19
## 11045 stephanie.panus@enron.com 2001-10-19
## 11046 stephanie.panus@enron.com 2001-10-19
## 11047 stephanie.panus@enron.com 2001-10-19
## 11048 stephanie.panus@enron.com 2001-10-19
## 11049 stephanie.panus@enron.com 2001-10-19
## 11050 e..haedicke@enron.com 2001-10-17
## 11051 e..haedicke@enron.com 2001-10-17
## 11052 e..haedicke@enron.com 2001-10-17
## 11053 e..haedicke@enron.com 2001-10-17
## 11054 e..haedicke@enron.com 2001-10-17
## 11055 e..haedicke@enron.com 2001-10-17
## 11056 e..haedicke@enron.com 2001-10-17
## 11057 e..haedicke@enron.com 2001-10-17
## 11058 e..haedicke@enron.com 2001-10-17
## 11059 e..haedicke@enron.com 2001-10-17
## 11060 e..haedicke@enron.com 2001-10-17
## 11061 e..haedicke@enron.com 2001-10-17
## 11062 e..haedicke@enron.com 2001-10-17
## 11063 e..haedicke@enron.com 2001-10-17
## 11064 e..haedicke@enron.com 2001-10-17
## 11065 e..haedicke@enron.com 2001-10-17
## 11066 e..haedicke@enron.com 2001-10-17
## 11067 e..haedicke@enron.com 2001-10-17
## 11068 e..haedicke@enron.com 2001-10-17
## 11069 e..haedicke@enron.com 2001-10-17
## 11070 e..haedicke@enron.com 2001-10-17
## 11071 e..haedicke@enron.com 2001-10-17
## 11072 e..haedicke@enron.com 2001-10-17
## 11073 e..haedicke@enron.com 2001-10-17
## 11074 e..haedicke@enron.com 2001-10-17
## 11075 e..haedicke@enron.com 2001-10-17
## 11076 e..haedicke@enron.com 2001-10-17
## 11077 e..haedicke@enron.com 2001-10-17
## 11078 e..haedicke@enron.com 2001-10-17
## 11079 e..haedicke@enron.com 2001-10-17
## 11080 e..haedicke@enron.com 2001-10-17
## 11081 e..haedicke@enron.com 2001-10-17
## 11082 e..haedicke@enron.com 2001-10-17
## 11083 e..haedicke@enron.com 2001-10-17
## 11084 e..haedicke@enron.com 2001-10-17
## 11085 e..haedicke@enron.com 2001-10-17
## 11086 e..haedicke@enron.com 2001-10-17
## 11087 louise.kitchen@enron.com 2001-10-29
## 11088 elizabeth.sager@enron.com 2001-09-12
## 11089 elizabeth.sager@enron.com 2001-09-12
## 11090 elizabeth.sager@enron.com 2001-09-12
## 11091 elizabeth.sager@enron.com 2001-09-12
## 11092 elizabeth.sager@enron.com 2001-09-12
## 11093 mark.e.taylor@enron.com 2000-09-25
## 11094 e..haedicke@enron.com 2000-09-19
## 11095 e..haedicke@enron.com 2000-09-19
## 11096 e..haedicke@enron.com 2000-09-19
## 11097 e..haedicke@enron.com 2000-09-19
## 11098 e..haedicke@enron.com 2000-09-19
## 11099 e..haedicke@enron.com 2000-09-19
## 11100 louise.kitchen@enron.com 2000-09-15
## 11101 louise.kitchen@enron.com 2000-09-15
## 11102 louise.kitchen@enron.com 2000-09-15
## 11103 louise.kitchen@enron.com 2000-09-15
## 11104 louise.kitchen@enron.com 2000-09-15
## 11105 louise.kitchen@enron.com 2000-09-15
## 11106 andy.zipper@enron.com 2000-09-15
## 11107 carol.clair@enron.com 2000-09-14
## 11108 mark.e.taylor@enron.com 2000-09-05
## 11109 mark.e.taylor@enron.com 2000-09-05
## 11110 carol.clair@enron.com 2000-09-01
## 11111 carol.clair@enron.com 2000-09-01
## 11112 louise.kitchen@enron.com 2000-08-28
## 11113 louise.kitchen@enron.com 2000-08-28
## 11114 louise.kitchen@enron.com 2000-08-28
## 11115 louise.kitchen@enron.com 2000-08-22
## 11116 louise.kitchen@enron.com 2000-08-22
## 11117 louise.kitchen@enron.com 2000-08-22
## 11118 louise.kitchen@enron.com 2000-08-22
## 11119 louise.kitchen@enron.com 2000-08-22
## 11120 louise.kitchen@enron.com 2000-08-17
## 11121 louise.kitchen@enron.com 2000-08-17
## 11122 louise.kitchen@enron.com 2000-08-17
## 11123 louise.kitchen@enron.com 2000-08-17
## 11124 louise.kitchen@enron.com 2000-08-17
## 11125 louise.kitchen@enron.com 2000-08-17
## 11126 e..haedicke@enron.com 2000-08-14
## 11127 e..haedicke@enron.com 2000-08-14
## 11128 e..haedicke@enron.com 2000-08-14
## 11129 e..haedicke@enron.com 2000-08-14
## 11130 e..haedicke@enron.com 2000-08-14
## 11131 carol.clair@enron.com 2000-08-09
## 11132 carol.clair@enron.com 2000-08-09
## 11133 carol.clair@enron.com 2000-08-09
## 11134 carol.clair@enron.com 2000-08-04
## 11135 louise.kitchen@enron.com 2000-08-04
## 11136 louise.kitchen@enron.com 2000-08-04
## 11137 louise.kitchen@enron.com 2000-08-04
## 11138 louise.kitchen@enron.com 2000-08-04
## 11139 louise.kitchen@enron.com 2000-08-04
## 11140 louise.kitchen@enron.com 2000-08-04
## 11141 louise.kitchen@enron.com 2000-08-01
## 11142 louise.kitchen@enron.com 2000-08-01
## 11143 louise.kitchen@enron.com 2000-08-01
## 11144 louise.kitchen@enron.com 2000-08-01
## 11145 carol.clair@enron.com 2000-08-01
## 11146 carol.clair@enron.com 2000-08-01
## 11147 carol.clair@enron.com 2000-08-01
## 11148 carol.clair@enron.com 2000-08-01
## 11149 carol.clair@enron.com 2000-08-01
## 11150 carol.clair@enron.com 2000-07-30
## 11151 carol.clair@enron.com 2000-07-30
## 11152 carol.clair@enron.com 2000-07-30
## 11153 louise.kitchen@enron.com 2000-07-25
## 11154 louise.kitchen@enron.com 2000-07-25
## 11155 louise.kitchen@enron.com 2000-07-20
## 11156 carol.clair@enron.com 2000-07-19
## 11157 carol.clair@enron.com 2000-07-19
## 11158 carol.clair@enron.com 2000-07-18
## 11159 carol.clair@enron.com 2000-07-18
## 11160 carol.clair@enron.com 2000-07-18
## 11161 louise.kitchen@enron.com 2000-07-13
## 11162 louise.kitchen@enron.com 2000-07-13
## 11163 louise.kitchen@enron.com 2000-07-13
## 11164 carol.clair@enron.com 2000-07-11
## 11165 carol.clair@enron.com 2000-07-11
## 11166 carol.clair@enron.com 2000-07-11
## 11167 andy.zipper@enron.com 2000-07-11
## 11168 carol.clair@enron.com 2000-07-10
## 11169 carol.clair@enron.com 2000-07-10
## 11170 carol.clair@enron.com 2000-07-10
## 11171 carol.clair@enron.com 2000-07-10
## 11172 louise.kitchen@enron.com 2000-07-10
## 11173 carol.clair@enron.com 2000-07-06
## 11174 carol.clair@enron.com 2000-07-06
## 11175 carol.clair@enron.com 2000-07-06
## 11176 carol.clair@enron.com 2000-07-06
## 11177 carol.clair@enron.com 2000-07-06
## 11178 carol.clair@enron.com 2000-07-06
## 11179 carol.clair@enron.com 2000-07-06
## 11180 carol.clair@enron.com 2000-07-05
## 11181 carol.clair@enron.com 2000-07-05
## 11182 carol.clair@enron.com 2000-07-05
## 11183 carol.clair@enron.com 2000-07-05
## 11184 carol.clair@enron.com 2000-07-05
## 11185 carol.clair@enron.com 2000-07-05
## 11186 carol.clair@enron.com 2000-07-05
## 11187 carol.clair@enron.com 2000-07-05
## 11188 carol.clair@enron.com 2000-07-05
## 11189 carol.clair@enron.com 2000-07-05
## 11190 e..haedicke@enron.com 2000-06-30
## 11191 carol.clair@enron.com 2000-06-29
## 11192 carol.clair@enron.com 2000-06-29
## 11193 carol.clair@enron.com 2000-06-29
## 11194 carol.clair@enron.com 2000-06-29
## 11195 carol.clair@enron.com 2000-06-29
## 11196 carol.clair@enron.com 2000-06-29
## 11197 carol.clair@enron.com 2000-06-29
## 11198 carol.clair@enron.com 2000-06-29
## 11199 carol.clair@enron.com 2000-06-29
## 11200 carol.clair@enron.com 2000-06-29
## 11201 carol.clair@enron.com 2000-06-29
## 11202 carol.clair@enron.com 2000-06-29
## 11203 carol.clair@enron.com 2000-06-29
## 11204 carol.clair@enron.com 2000-06-29
## 11205 carol.clair@enron.com 2000-06-29
## 11206 carol.clair@enron.com 2000-06-29
## 11207 carol.clair@enron.com 2000-06-29
## 11208 carol.clair@enron.com 2000-06-29
## 11209 carol.clair@enron.com 2000-06-29
## 11210 carol.clair@enron.com 2000-06-29
## 11211 carol.clair@enron.com 2000-06-29
## 11212 carol.clair@enron.com 2000-06-29
## 11213 carol.clair@enron.com 2000-06-29
## 11214 carol.clair@enron.com 2000-06-29
## 11215 carol.clair@enron.com 2000-06-29
## 11216 carol.clair@enron.com 2000-06-29
## 11217 carol.clair@enron.com 2000-06-29
## 11218 carol.clair@enron.com 2000-06-29
## 11219 carol.clair@enron.com 2000-06-29
## 11220 carol.clair@enron.com 2000-06-29
## 11221 carol.clair@enron.com 2000-06-29
## 11222 carol.clair@enron.com 2000-06-29
## 11223 carol.clair@enron.com 2000-06-29
## 11224 carol.clair@enron.com 2000-06-29
## 11225 carol.clair@enron.com 2000-06-29
## 11226 carol.clair@enron.com 2000-06-29
## 11227 carol.clair@enron.com 2000-06-29
## 11228 carol.clair@enron.com 2000-06-29
## 11229 carol.clair@enron.com 2000-06-29
## 11230 carol.clair@enron.com 2000-06-29
## 11231 carol.clair@enron.com 2000-06-29
## 11232 carol.clair@enron.com 2000-06-29
## 11233 carol.clair@enron.com 2000-06-29
## 11234 carol.clair@enron.com 2000-06-29
## 11235 carol.clair@enron.com 2000-06-29
## 11236 carol.clair@enron.com 2000-06-29
## 11237 carol.clair@enron.com 2000-06-29
## 11238 carol.clair@enron.com 2000-06-29
## 11239 carol.clair@enron.com 2000-06-29
## 11240 carol.clair@enron.com 2000-06-29
## 11241 carol.clair@enron.com 2000-06-29
## 11242 carol.clair@enron.com 2000-06-29
## 11243 carol.clair@enron.com 2000-06-29
## 11244 carol.clair@enron.com 2000-06-29
## 11245 carol.clair@enron.com 2000-06-29
## 11246 carol.clair@enron.com 2000-06-29
## 11247 carol.clair@enron.com 2000-06-29
## 11248 carol.clair@enron.com 2000-06-29
## 11249 carol.clair@enron.com 2000-06-29
## 11250 carol.clair@enron.com 2000-06-29
## 11251 carol.clair@enron.com 2000-06-29
## 11252 carol.clair@enron.com 2000-06-29
## 11253 carol.clair@enron.com 2000-06-29
## 11254 carol.clair@enron.com 2000-06-29
## 11255 carol.clair@enron.com 2000-06-29
## 11256 carol.clair@enron.com 2000-06-29
## 11257 carol.clair@enron.com 2000-06-29
## 11258 carol.clair@enron.com 2000-06-29
## 11259 carol.clair@enron.com 2000-06-29
## 11260 carol.clair@enron.com 2000-06-29
## 11261 carol.clair@enron.com 2000-06-29
## 11262 louise.kitchen@enron.com 2000-06-27
## 11263 louise.kitchen@enron.com 2000-06-27
## 11264 louise.kitchen@enron.com 2000-06-27
## 11265 louise.kitchen@enron.com 2000-06-27
## 11266 louise.kitchen@enron.com 2000-06-27
## 11267 louise.kitchen@enron.com 2000-06-27
## 11268 louise.kitchen@enron.com 2000-06-27
## 11269 louise.kitchen@enron.com 2000-06-27
## 11270 andy.zipper@enron.com 2000-06-21
## 11271 andy.zipper@enron.com 2000-06-16
## 11272 carol.clair@enron.com 2000-06-16
## 11273 carol.clair@enron.com 2000-06-16
## 11274 carol.clair@enron.com 2000-06-16
## 11275 carol.clair@enron.com 2000-06-16
## 11276 carol.clair@enron.com 2000-06-16
## 11277 carol.clair@enron.com 2000-06-16
## 11278 carol.clair@enron.com 2000-06-16
## 11279 carol.clair@enron.com 2000-06-16
## 11280 andy.zipper@enron.com 2000-06-08
## 11281 andy.zipper@enron.com 2000-06-08
## 11282 andy.zipper@enron.com 2000-06-08
## 11283 andy.zipper@enron.com 2000-06-08
## 11284 andy.zipper@enron.com 2000-06-08
## 11285 andy.zipper@enron.com 2000-06-08
## 11286 andy.zipper@enron.com 2000-06-08
## 11287 andy.zipper@enron.com 2000-06-08
## 11288 andy.zipper@enron.com 2000-06-08
## 11289 carol.clair@enron.com 2000-05-31
## 11290 carol.clair@enron.com 2000-05-23
## 11291 carol.clair@enron.com 2000-05-23
## 11292 carol.clair@enron.com 2000-05-23
## 11293 andy.zipper@enron.com 2000-05-23
## 11294 andy.zipper@enron.com 2000-05-22
## 11295 carol.clair@enron.com 2000-05-22
## 11296 carol.clair@enron.com 2000-05-19
## 11297 carol.clair@enron.com 2000-05-19
## 11298 carol.clair@enron.com 2000-05-19
## 11299 carol.clair@enron.com 2000-05-19
## 11300 carol.clair@enron.com 2000-05-19
## 11301 carol.clair@enron.com 2000-05-19
## 11302 carol.clair@enron.com 2000-05-19
## 11303 carol.clair@enron.com 2000-05-19
## 11304 carol.clair@enron.com 2000-05-19
## 11305 carol.clair@enron.com 2000-05-19
## 11306 carol.clair@enron.com 2000-05-19
## 11307 carol.clair@enron.com 2000-05-19
## 11308 carol.clair@enron.com 2000-05-19
## 11309 carol.clair@enron.com 2000-05-19
## 11310 carol.clair@enron.com 2000-05-19
## 11311 carol.clair@enron.com 2000-05-19
## 11312 carol.clair@enron.com 2000-05-19
## 11313 carol.clair@enron.com 2000-05-19
## 11314 carol.clair@enron.com 2000-05-19
## 11315 carol.clair@enron.com 2000-05-19
## 11316 carol.clair@enron.com 2000-05-19
## 11317 carol.clair@enron.com 2000-05-19
## 11318 carol.clair@enron.com 2000-05-19
## 11319 carol.clair@enron.com 2000-05-18
## 11320 carol.clair@enron.com 2000-05-18
## 11321 carol.clair@enron.com 2000-05-18
## 11322 carol.clair@enron.com 2000-05-17
## 11323 carol.clair@enron.com 2000-05-17
## 11324 carol.clair@enron.com 2000-05-17
## 11325 louise.kitchen@enron.com 2000-05-16
## 11326 louise.kitchen@enron.com 2000-05-16
## 11327 louise.kitchen@enron.com 2000-05-16
## 11328 mark.e.taylor@enron.com 2000-05-16
## 11329 mark.e.taylor@enron.com 2000-05-16
## 11330 louise.kitchen@enron.com 2000-05-15
## 11331 louise.kitchen@enron.com 2000-05-15
## 11332 louise.kitchen@enron.com 2000-05-15
## 11333 louise.kitchen@enron.com 2000-05-15
## 11334 louise.kitchen@enron.com 2000-05-15
## 11335 louise.kitchen@enron.com 2000-05-15
## 11336 louise.kitchen@enron.com 2000-05-15
## 11337 carol.clair@enron.com 2000-05-12
## 11338 carol.clair@enron.com 2000-05-12
## 11339 carol.clair@enron.com 2000-05-12
## 11340 carol.clair@enron.com 2000-05-12
## 11341 carol.clair@enron.com 2000-05-12
## 11342 carol.clair@enron.com 2000-05-12
## 11343 carol.clair@enron.com 2000-05-12
## 11344 carol.clair@enron.com 2000-05-12
## 11345 carol.clair@enron.com 2000-05-12
## 11346 carol.clair@enron.com 2000-05-12
## 11347 carol.clair@enron.com 2000-05-12
## 11348 carol.clair@enron.com 2000-05-12
## 11349 carol.clair@enron.com 2000-05-11
## 11350 carol.clair@enron.com 2000-05-11
## 11351 carol.clair@enron.com 2000-05-11
## 11352 carol.clair@enron.com 2000-05-11
## 11353 carol.clair@enron.com 2000-05-11
## 11354 carol.clair@enron.com 2000-05-11
## 11355 carol.clair@enron.com 2000-05-11
## 11356 carol.clair@enron.com 2000-05-11
## 11357 carol.clair@enron.com 2000-05-11
## 11358 carol.clair@enron.com 2000-05-11
## 11359 carol.clair@enron.com 2000-05-11
## 11360 carol.clair@enron.com 2000-05-11
## 11361 carol.clair@enron.com 2000-05-11
## 11362 carol.clair@enron.com 2000-05-11
## 11363 carol.clair@enron.com 2000-05-11
## 11364 carol.clair@enron.com 2000-05-11
## 11365 carol.clair@enron.com 2000-05-11
## 11366 carol.clair@enron.com 2000-05-11
## 11367 carol.clair@enron.com 2000-05-11
## 11368 carol.clair@enron.com 2000-05-11
## 11369 carol.clair@enron.com 2000-05-11
## 11370 carol.clair@enron.com 2000-05-11
## 11371 carol.clair@enron.com 2000-05-11
## 11372 carol.clair@enron.com 2000-05-11
## 11373 carol.clair@enron.com 2000-05-11
## 11374 carol.clair@enron.com 2000-05-11
## 11375 carol.clair@enron.com 2000-05-11
## 11376 carol.clair@enron.com 2000-05-11
## 11377 carol.clair@enron.com 2000-05-11
## 11378 carol.clair@enron.com 2000-05-11
## 11379 carol.clair@enron.com 2000-05-11
## 11380 carol.clair@enron.com 2000-05-11
## 11381 carol.clair@enron.com 2000-05-11
## 11382 carol.clair@enron.com 2000-05-11
## 11383 carol.clair@enron.com 2000-05-11
## 11384 carol.clair@enron.com 2000-05-11
## 11385 carol.clair@enron.com 2000-05-10
## 11386 carol.clair@enron.com 2000-05-08
## 11387 carol.clair@enron.com 2000-05-08
## 11388 carol.clair@enron.com 2000-05-08
## 11389 carol.clair@enron.com 2000-05-05
## 11390 carol.clair@enron.com 2000-05-05
## 11391 carol.clair@enron.com 2000-05-05
## 11392 carol.clair@enron.com 2000-05-05
## 11393 carol.clair@enron.com 2000-05-05
## 11394 carol.clair@enron.com 2000-05-04
## 11395 carol.clair@enron.com 2000-05-04
## 11396 carol.clair@enron.com 2000-05-04
## 11397 carol.clair@enron.com 2000-05-04
## 11398 carol.clair@enron.com 2000-05-04
## 11399 carol.clair@enron.com 2000-05-04
## 11400 carol.clair@enron.com 2000-05-04
## 11401 carol.clair@enron.com 2000-05-04
## 11402 carol.clair@enron.com 2000-05-04
## 11403 carol.clair@enron.com 2000-05-01
## 11404 carol.clair@enron.com 2000-05-01
## 11405 carol.clair@enron.com 2000-05-01
## 11406 carol.clair@enron.com 2000-05-01
## 11407 carol.clair@enron.com 2000-05-01
## 11408 carol.clair@enron.com 2000-05-01
## 11409 stacy.dickson@enron.com 1999-11-29
## 11410 louise.kitchen@enron.com 1999-11-29
## 11411 carol.clair@enron.com 1999-11-10
## 11412 carol.clair@enron.com 1999-11-09
## 11413 carol.clair@enron.com 1999-11-09
## 11414 carol.clair@enron.com 1999-11-09
## 11415 carol.clair@enron.com 1999-11-09
## 11416 carol.clair@enron.com 1999-11-09
## 11417 carol.clair@enron.com 1999-11-09
## 11418 stacy.dickson@enron.com 1999-11-08
## 11419 stacy.dickson@enron.com 1999-11-08
## 11420 stacy.dickson@enron.com 1999-11-08
## 11421 mark.e.taylor@enron.com 2000-01-31
## 11422 louise.kitchen@enron.com 2000-01-23
## 11423 stacy.dickson@enron.com 1999-11-29
## 11424 louise.kitchen@enron.com 1999-11-29
## 11425 carol.clair@enron.com 1999-11-10
## 11426 carol.clair@enron.com 1999-11-09
## 11427 carol.clair@enron.com 1999-11-09
## 11428 carol.clair@enron.com 1999-11-09
## 11429 carol.clair@enron.com 1999-11-09
## 11430 carol.clair@enron.com 1999-11-09
## 11431 carol.clair@enron.com 1999-11-09
## 11432 stacy.dickson@enron.com 1999-11-08
## 11433 stacy.dickson@enron.com 1999-11-08
## 11434 stacy.dickson@enron.com 1999-11-08
## 11435 andy.zipper@enron.com 2001-10-26
## 11436 louise.kitchen@enron.com 2001-06-25
## 11437 louise.kitchen@enron.com 2001-06-25
## 11438 louise.kitchen@enron.com 2001-06-25
## 11439 louise.kitchen@enron.com 2001-06-25
## 11440 louise.kitchen@enron.com 2001-06-25
## 11441 louise.kitchen@enron.com 2001-06-25
## 11442 louise.kitchen@enron.com 2001-06-25
## 11443 louise.kitchen@enron.com 2001-06-25
## 11444 louise.kitchen@enron.com 2001-06-25
## 11445 louise.kitchen@enron.com 2001-06-25
## 11446 louise.kitchen@enron.com 2001-06-25
## 11447 louise.kitchen@enron.com 2001-06-25
## 11448 louise.kitchen@enron.com 2001-06-25
## 11449 louise.kitchen@enron.com 2001-06-25
## 11450 louise.kitchen@enron.com 2001-06-25
## 11451 louise.kitchen@enron.com 2001-06-25
## 11452 louise.kitchen@enron.com 2001-06-25
## 11453 louise.kitchen@enron.com 2001-06-25
## 11454 louise.kitchen@enron.com 2001-06-25
## 11455 louise.kitchen@enron.com 2001-06-25
## 11456 louise.kitchen@enron.com 2001-06-25
## 11457 louise.kitchen@enron.com 2001-06-25
## 11458 louise.kitchen@enron.com 2001-06-25
## 11459 louise.kitchen@enron.com 2001-06-25
## 11460 louise.kitchen@enron.com 2001-06-25
## 11461 louise.kitchen@enron.com 2001-06-25
## 11462 louise.kitchen@enron.com 2001-06-25
## 11463 louise.kitchen@enron.com 2001-06-25
## 11464 louise.kitchen@enron.com 2001-06-25
## 11465 louise.kitchen@enron.com 2001-06-25
## 11466 louise.kitchen@enron.com 2001-06-25
## 11467 louise.kitchen@enron.com 2001-06-25
## 11468 louise.kitchen@enron.com 2001-06-25
## 11469 louise.kitchen@enron.com 2001-06-25
## 11470 louise.kitchen@enron.com 2001-06-25
## 11471 louise.kitchen@enron.com 2001-06-25
## 11472 mark.e.taylor@enron.com 2001-06-25
## 11473 stephanie.panus@enron.com 2001-11-07
## 11474 stephanie.panus@enron.com 2001-08-14
## 11475 stephanie.panus@enron.com 2001-10-16
## 11476 stephanie.panus@enron.com 2001-10-02
## 11477 stephanie.panus@enron.com 2001-09-18
## 11478 paul.lucci@enron.com 2001-11-19
## 11479 paul.lucci@enron.com 2001-11-19
## 11480 paul.lucci@enron.com 2001-11-09
## 11481 paul.lucci@enron.com 2001-11-06
## 11482 paul.lucci@enron.com 2001-10-30
## 11483 paul.lucci@enron.com 2001-10-30
## 11484 jason.williams@enron.com 2001-09-27
## 11485 theresa.staab@enron.com 2001-11-19
## 11486 theresa.staab@enron.com 2001-11-19
## 11487 theresa.staab@enron.com 2001-11-15
## 11488 theresa.staab@enron.com 2001-11-15
## 11489 theresa.staab@enron.com 2001-11-15
## 11490 theresa.staab@enron.com 2001-11-15
## 11491 theresa.staab@enron.com 2001-11-15
## 11492 theresa.staab@enron.com 2001-11-14
## 11493 theresa.staab@enron.com 2001-11-14
## 11494 theresa.staab@enron.com 2001-11-14
## 11495 theresa.staab@enron.com 2001-11-14
## 11496 theresa.staab@enron.com 2001-11-14
## 11497 theresa.staab@enron.com 2001-11-14
## 11498 theresa.staab@enron.com 2001-11-14
## 11499 theresa.staab@enron.com 2001-11-14
## 11500 theresa.staab@enron.com 2001-11-14
## 11501 theresa.staab@enron.com 2001-11-14
## 11502 theresa.staab@enron.com 2001-11-14
## 11503 theresa.staab@enron.com 2001-11-14
## 11504 theresa.staab@enron.com 2001-11-14
## 11505 theresa.staab@enron.com 2001-11-14
## 11506 theresa.staab@enron.com 2001-11-13
## 11507 theresa.staab@enron.com 2001-11-12
## 11508 theresa.staab@enron.com 2001-11-12
## 11509 theresa.staab@enron.com 2001-11-12
## 11510 theresa.staab@enron.com 2001-11-12
## 11511 theresa.staab@enron.com 2001-11-12
## 11512 theresa.staab@enron.com 2001-11-12
## 11513 theresa.staab@enron.com 2001-11-12
## 11514 theresa.staab@enron.com 2001-11-12
## 11515 theresa.staab@enron.com 2001-11-12
## 11516 theresa.staab@enron.com 2001-11-12
## 11517 theresa.staab@enron.com 2001-11-12
## 11518 theresa.staab@enron.com 2001-11-12
## 11519 theresa.staab@enron.com 2001-11-12
## 11520 theresa.staab@enron.com 2001-11-12
## 11521 theresa.staab@enron.com 2001-11-09
## 11522 theresa.staab@enron.com 2001-11-09
## 11523 theresa.staab@enron.com 2001-11-07
## 11524 theresa.staab@enron.com 2001-11-06
## 11525 theresa.staab@enron.com 2001-11-06
## 11526 theresa.staab@enron.com 2001-11-06
## 11527 theresa.staab@enron.com 2001-11-06
## 11528 theresa.staab@enron.com 2001-11-05
## 11529 theresa.staab@enron.com 2001-11-05
## 11530 theresa.staab@enron.com 2001-11-05
## 11531 theresa.staab@enron.com 2001-11-01
## 11532 theresa.staab@enron.com 2001-11-01
## 11533 theresa.staab@enron.com 2001-11-01
## 11534 theresa.staab@enron.com 2001-11-01
## 11535 theresa.staab@enron.com 2001-11-01
## 11536 theresa.staab@enron.com 2001-11-01
## 11537 theresa.staab@enron.com 2001-09-25
## 11538 theresa.staab@enron.com 2001-09-25
## 11539 theresa.staab@enron.com 2001-09-25
## 11540 theresa.staab@enron.com 2001-09-26
## 11541 theresa.staab@enron.com 2001-09-26
## 11542 theresa.staab@enron.com 2001-10-03
## 11543 theresa.staab@enron.com 2001-10-03
## 11544 theresa.staab@enron.com 2001-10-03
## 11545 theresa.staab@enron.com 2001-10-03
## 11546 theresa.staab@enron.com 2001-10-03
## 11547 theresa.staab@enron.com 2001-10-03
## 11548 theresa.staab@enron.com 2001-10-03
## 11549 theresa.staab@enron.com 2001-10-03
## 11550 theresa.staab@enron.com 2001-10-03
## 11551 theresa.staab@enron.com 2001-10-03
## 11552 theresa.staab@enron.com 2001-10-03
## 11553 theresa.staab@enron.com 2001-10-03
## 11554 theresa.staab@enron.com 2001-10-03
## 11555 theresa.staab@enron.com 2001-10-03
## 11556 theresa.staab@enron.com 2001-10-03
## 11557 theresa.staab@enron.com 2001-10-03
## 11558 theresa.staab@enron.com 2001-10-03
## 11559 theresa.staab@enron.com 2001-10-03
## 11560 theresa.staab@enron.com 2001-10-03
## 11561 theresa.staab@enron.com 2001-10-03
## 11562 theresa.staab@enron.com 2001-10-03
## 11563 theresa.staab@enron.com 2001-10-04
## 11564 theresa.staab@enron.com 2001-10-04
## 11565 theresa.staab@enron.com 2001-10-04
## 11566 theresa.staab@enron.com 2001-10-04
## 11567 theresa.staab@enron.com 2001-10-04
## 11568 theresa.staab@enron.com 2001-10-04
## 11569 theresa.staab@enron.com 2001-10-05
## 11570 theresa.staab@enron.com 2001-10-08
## 11571 theresa.staab@enron.com 2001-10-08
## 11572 theresa.staab@enron.com 2001-10-08
## 11573 theresa.staab@enron.com 2001-10-08
## 11574 theresa.staab@enron.com 2001-10-08
## 11575 theresa.staab@enron.com 2001-10-08
## 11576 theresa.staab@enron.com 2001-10-08
## 11577 theresa.staab@enron.com 2001-10-09
## 11578 theresa.staab@enron.com 2001-10-09
## 11579 theresa.staab@enron.com 2001-10-09
## 11580 theresa.staab@enron.com 2001-10-10
## 11581 theresa.staab@enron.com 2001-10-10
## 11582 theresa.staab@enron.com 2001-10-10
## 11583 theresa.staab@enron.com 2001-10-10
## 11584 theresa.staab@enron.com 2001-10-10
## 11585 theresa.staab@enron.com 2001-10-12
## 11586 theresa.staab@enron.com 2001-10-12
## 11587 theresa.staab@enron.com 2001-10-12
## 11588 theresa.staab@enron.com 2001-10-15
## 11589 theresa.staab@enron.com 2001-10-15
## 11590 theresa.staab@enron.com 2001-10-15
## 11591 theresa.staab@enron.com 2001-10-15
## 11592 theresa.staab@enron.com 2001-10-15
## 11593 theresa.staab@enron.com 2001-10-15
## 11594 theresa.staab@enron.com 2001-10-15
## 11595 theresa.staab@enron.com 2001-10-15
## 11596 theresa.staab@enron.com 2001-10-15
## 11597 theresa.staab@enron.com 2001-10-15
## 11598 theresa.staab@enron.com 2001-10-16
## 11599 theresa.staab@enron.com 2001-10-19
## 11600 theresa.staab@enron.com 2001-10-19
## 11601 theresa.staab@enron.com 2001-10-19
## 11602 theresa.staab@enron.com 2001-10-22
## 11603 theresa.staab@enron.com 2001-10-23
## 11604 theresa.staab@enron.com 2001-10-23
## 11605 theresa.staab@enron.com 2001-10-24
## 11606 theresa.staab@enron.com 2001-10-24
## 11607 theresa.staab@enron.com 2001-10-24
## 11608 theresa.staab@enron.com 2001-10-24
## 11609 theresa.staab@enron.com 2001-10-24
## 11610 theresa.staab@enron.com 2001-10-25
## 11611 theresa.staab@enron.com 2001-10-25
## 11612 theresa.staab@enron.com 2001-10-25
## 11613 theresa.staab@enron.com 2001-10-25
## 11614 theresa.staab@enron.com 2001-10-26
## 11615 theresa.staab@enron.com 2001-10-26
## 11616 theresa.staab@enron.com 2001-10-26
## 11617 theresa.staab@enron.com 2001-10-26
## 11618 theresa.staab@enron.com 2001-10-26
## 11619 theresa.staab@enron.com 2001-10-29
## 11620 theresa.staab@enron.com 2001-12-28
## 11621 theresa.staab@enron.com 2001-12-28
## 11622 theresa.staab@enron.com 2001-12-28
## 11623 theresa.staab@enron.com 2001-12-28
## 11624 theresa.staab@enron.com 2001-12-26
## 11625 theresa.staab@enron.com 2001-12-26
## 11626 theresa.staab@enron.com 2001-12-26
## 11627 theresa.staab@enron.com 2001-12-17
## 11628 theresa.staab@enron.com 2001-12-17
## 11629 theresa.staab@enron.com 2001-12-14
## 11630 theresa.staab@enron.com 2001-12-13
## 11631 theresa.staab@enron.com 2001-12-13
## 11632 theresa.staab@enron.com 2001-12-13
## 11633 theresa.staab@enron.com 2001-12-13
## 11634 theresa.staab@enron.com 2001-12-06
## 11635 theresa.staab@enron.com 2001-12-06
## 11636 theresa.staab@enron.com 2001-12-06
## 11637 theresa.staab@enron.com 2001-12-05
## 11638 theresa.staab@enron.com 2001-12-05
## 11639 theresa.staab@enron.com 2001-12-05
## 11640 theresa.staab@enron.com 2001-11-30
## 11641 theresa.staab@enron.com 2001-11-30
## 11642 theresa.staab@enron.com 2001-11-29
## 11643 paul.lucci@enron.com 2001-10-01
## 11644 paul.lucci@enron.com 2001-10-01
## 11645 paul.lucci@enron.com 2001-10-18
## 11646 paul.lucci@enron.com 2001-10-25
## 11647 paul.lucci@enron.com 2001-10-26
## 11648 paul.lucci@enron.com 2001-10-26
## 11649 theresa.staab@enron.com 2001-11-30
## 11650 theresa.staab@enron.com 2001-11-29
## 11651 theresa.staab@enron.com 2001-12-06
## 11652 theresa.staab@enron.com 2001-12-06
## 11653 theresa.staab@enron.com 2001-12-10
## 11654 theresa.staab@enron.com 2001-12-14
## 11655 theresa.staab@enron.com 2001-12-03
## 11656 theresa.staab@enron.com 2001-12-06
## 11657 theresa.staab@enron.com 2001-12-06
## 11658 theresa.staab@enron.com 2001-12-06
## 11659 theresa.staab@enron.com 2001-12-13
## 11660 theresa.staab@enron.com 2001-11-29
## 11661 theresa.staab@enron.com 2001-12-06
## 11662 theresa.staab@enron.com 2001-12-13
## 11663 theresa.staab@enron.com 2001-12-11
## 11664 theresa.staab@enron.com 2001-12-06
## 11665 theresa.staab@enron.com 2001-12-06
## 11666 theresa.staab@enron.com 2001-12-06
## 11667 theresa.staab@enron.com 2001-12-13
## 11668 paul.lucci@enron.com 2001-10-18
## 11669 paul.lucci@enron.com 2001-10-18
## 11670 paul.lucci@enron.com 2001-10-01
## 11671 paul.lucci@enron.com 2001-10-01
## 11672 paul.lucci@enron.com 2001-09-24
## 11673 paul.lucci@enron.com 2001-09-24
## 11674 debra.perlingiere@enron.com 2001-09-12
## 11675 debra.perlingiere@enron.com 2001-09-12
## 11676 debra.perlingiere@enron.com 2001-09-12
## 11677 debra.perlingiere@enron.com 2001-09-12
## 11678 debra.perlingiere@enron.com 2001-09-12
## 11679 debra.perlingiere@enron.com 2001-09-12
## 11680 debra.perlingiere@enron.com 2001-09-19
## 11681 theresa.staab@enron.com 2001-09-19
## 11682 paul.lucci@enron.com 2001-09-18
## 11683 paul.lucci@enron.com 2001-09-18
## 11684 paul.lucci@enron.com 2001-09-18
## 11685 debra.perlingiere@enron.com 2001-09-19
## 11686 paul.lucci@enron.com 2001-10-26
## 11687 paul.lucci@enron.com 2001-10-26
## 11688 paul.lucci@enron.com 2001-08-15
## 11689 paul.lucci@enron.com 2001-08-15
## 11690 paul.lucci@enron.com 2001-08-15
## 11691 paul.lucci@enron.com 2001-08-15
## 11692 paul.lucci@enron.com 2001-08-15
## 11693 paul.lucci@enron.com 2001-08-14
## 11694 paul.lucci@enron.com 2001-08-14
## 11695 debra.perlingiere@enron.com 2001-08-20
## 11696 debra.perlingiere@enron.com 2001-08-20
## 11697 debra.perlingiere@enron.com 2001-08-20
## 11698 paul.lucci@enron.com 2001-09-24
## 11699 paul.lucci@enron.com 2001-09-24
## 11700 susan.w.pereira@enron.com 2001-11-20
## 11701 susan.w.pereira@enron.com 2001-11-14
## 11702 susan.w.pereira@enron.com 2001-11-13
## 11703 susan.w.pereira@enron.com 2001-11-12
## 11704 susan.w.pereira@enron.com 2001-11-09
## 11705 susan.w.pereira@enron.com 2001-11-09
## 11706 susan.w.pereira@enron.com 2001-11-06
## 11707 susan.w.pereira@enron.com 2001-11-06
## 11708 susan.w.pereira@enron.com 2001-11-06
## 11709 susan.w.pereira@enron.com 2001-11-05
## 11710 susan.w.pereira@enron.com 2001-11-02
## 11711 susan.w.pereira@enron.com 2001-11-01
## 11712 susan.w.pereira@enron.com 2001-11-01
## 11713 susan.w.pereira@enron.com 2001-11-01
## 11714 susan.w.pereira@enron.com 2001-11-01
## 11715 susan.w.pereira@enron.com 2001-11-01
## 11716 susan.w.pereira@enron.com 2001-10-31
## 11717 susan.w.pereira@enron.com 2001-10-31
## 11718 susan.w.pereira@enron.com 2001-10-31
## 11719 susan.w.pereira@enron.com 2001-10-30
## 11720 susan.w.pereira@enron.com 2001-10-30
## 11721 susan.w.pereira@enron.com 2001-10-30
## 11722 susan.w.pereira@enron.com 2001-10-30
## 11723 susan.w.pereira@enron.com 2001-10-30
## 11724 susan.w.pereira@enron.com 2001-10-29
## 11725 susan.w.pereira@enron.com 2001-09-25
## 11726 susan.w.pereira@enron.com 2001-09-25
## 11727 susan.w.pereira@enron.com 2001-09-26
## 11728 susan.w.pereira@enron.com 2001-10-01
## 11729 susan.w.pereira@enron.com 2001-10-01
## 11730 susan.w.pereira@enron.com 2001-10-02
## 11731 susan.w.pereira@enron.com 2001-10-03
## 11732 susan.w.pereira@enron.com 2001-10-03
## 11733 susan.w.pereira@enron.com 2001-10-03
## 11734 susan.w.pereira@enron.com 2001-10-03
## 11735 susan.w.pereira@enron.com 2001-10-05
## 11736 susan.w.pereira@enron.com 2001-10-10
## 11737 susan.w.pereira@enron.com 2001-10-10
## 11738 susan.w.pereira@enron.com 2001-10-10
## 11739 susan.w.pereira@enron.com 2001-10-10
## 11740 susan.w.pereira@enron.com 2001-10-10
## 11741 susan.w.pereira@enron.com 2001-10-10
## 11742 susan.w.pereira@enron.com 2001-10-15
## 11743 susan.w.pereira@enron.com 2001-10-15
## 11744 susan.w.pereira@enron.com 2001-10-15
## 11745 susan.w.pereira@enron.com 2001-10-15
## 11746 susan.w.pereira@enron.com 2001-10-15
## 11747 susan.w.pereira@enron.com 2001-10-15
## 11748 susan.w.pereira@enron.com 2001-10-15
## 11749 susan.w.pereira@enron.com 2001-10-22
## 11750 susan.w.pereira@enron.com 2001-10-23
## 11751 susan.w.pereira@enron.com 2001-10-26
## 11752 susan.w.pereira@enron.com 2001-10-26
## 11753 susan.w.pereira@enron.com 2001-10-29
## 11754 susan.w.pereira@enron.com 2001-12-04
## 11755 susan.w.pereira@enron.com 2001-12-04
## 11756 susan.w.pereira@enron.com 2001-12-04
## 11757 susan.w.pereira@enron.com 2001-12-04
## 11758 susan.w.pereira@enron.com 2001-12-03
## 11759 susan.w.pereira@enron.com 2001-12-03
## 11760 susan.w.pereira@enron.com 2001-11-30
## 11761 susan.w.pereira@enron.com 2001-11-30
## 11762 susan.w.pereira@enron.com 2001-11-30
## 11763 susan.w.pereira@enron.com 2001-11-29
## 11764 susan.w.pereira@enron.com 2001-11-29
## 11765 susan.w.pereira@enron.com 2001-11-27
## 11766 susan.w.pereira@enron.com 2001-11-20
## 11767 susan.w.pereira@enron.com 2001-11-20
## 11768 susan.w.pereira@enron.com 2001-11-20
## 11769 susan.w.pereira@enron.com 2001-11-20
## 11770 susan.w.pereira@enron.com 2001-11-20
## 11771 susan.w.pereira@enron.com 2001-11-20
## 11772 susan.w.pereira@enron.com 2001-11-20
## 11773 susan.w.pereira@enron.com 2001-11-20
## 11774 susan.w.pereira@enron.com 2001-11-20
## 11775 susan.w.pereira@enron.com 2001-11-20
## 11776 susan.w.pereira@enron.com 2001-11-20
## 11777 susan.w.pereira@enron.com 2001-11-20
## 11778 susan.w.pereira@enron.com 2001-11-20
## 11779 susan.w.pereira@enron.com 2001-11-20
## 11780 susan.w.pereira@enron.com 2001-11-20
## 11781 susan.w.pereira@enron.com 2001-11-20
## 11782 susan.w.pereira@enron.com 2001-11-20
## 11783 susan.w.pereira@enron.com 2001-11-20
## 11784 susan.w.pereira@enron.com 2001-11-20
## 11785 susan.w.pereira@enron.com 2001-11-20
## 11786 susan.w.pereira@enron.com 2001-11-20
## 11787 susan.w.pereira@enron.com 2001-11-20
## 11788 susan.w.pereira@enron.com 2001-11-14
## 11789 susan.w.pereira@enron.com 2001-11-14
## 11790 susan.w.pereira@enron.com 2001-11-12
## 11791 shelley.corman@enron.com 2001-10-29
## 11792 shelley.corman@enron.com 2001-10-29
## 11793 shelley.corman@enron.com 2001-10-29
## 11794 danny.mccarty@enron.com 2001-12-31
## 11795 danny.mccarty@enron.com 2001-12-31
## 11796 danny.mccarty@enron.com 2001-12-31
## 11797 danny.mccarty@enron.com 2001-12-31
## 11798 danny.mccarty@enron.com 2001-12-31
## 11799 rod.hayslett@enron.com 2001-12-28
## 11800 rod.hayslett@enron.com 2001-12-28
## 11801 rod.hayslett@enron.com 2001-12-28
## 11802 rod.hayslett@enron.com 2001-12-28
## 11803 rod.hayslett@enron.com 2001-12-28
## 11804 rod.hayslett@enron.com 2001-12-28
## 11805 rod.hayslett@enron.com 2001-12-28
## 11806 rod.hayslett@enron.com 2001-12-28
## 11807 rod.hayslett@enron.com 2001-12-28
## 11808 rod.hayslett@enron.com 2001-12-28
## 11809 rod.hayslett@enron.com 2001-12-28
## 11810 rod.hayslett@enron.com 2001-12-28
## 11811 rod.hayslett@enron.com 2001-12-28
## 11812 rod.hayslett@enron.com 2001-12-28
## 11813 rod.hayslett@enron.com 2001-12-28
## 11814 rod.hayslett@enron.com 2001-12-28
## 11815 rod.hayslett@enron.com 2001-12-28
## 11816 rod.hayslett@enron.com 2001-12-28
## 11817 rod.hayslett@enron.com 2001-12-28
## 11818 rod.hayslett@enron.com 2001-12-28
## 11819 rod.hayslett@enron.com 2001-12-28
## 11820 rod.hayslett@enron.com 2001-12-28
## 11821 rod.hayslett@enron.com 2001-12-28
## 11822 rod.hayslett@enron.com 2001-12-28
## 11823 rod.hayslett@enron.com 2001-12-28
## 11824 rod.hayslett@enron.com 2001-12-28
## 11825 rod.hayslett@enron.com 2001-12-28
## 11826 rod.hayslett@enron.com 2001-12-28
## 11827 rod.hayslett@enron.com 2001-12-28
## 11828 rod.hayslett@enron.com 2001-12-28
## 11829 rod.hayslett@enron.com 2001-12-28
## 11830 rod.hayslett@enron.com 2001-12-28
## 11831 rod.hayslett@enron.com 2001-12-28
## 11832 rod.hayslett@enron.com 2001-12-28
## 11833 rod.hayslett@enron.com 2001-12-28
## 11834 rod.hayslett@enron.com 2001-12-28
## 11835 rod.hayslett@enron.com 2001-12-28
## 11836 rod.hayslett@enron.com 2001-12-28
## 11837 rod.hayslett@enron.com 2001-12-28
## 11838 rod.hayslett@enron.com 2001-12-28
## 11839 rod.hayslett@enron.com 2001-12-28
## 11840 rod.hayslett@enron.com 2001-12-28
## 11841 rod.hayslett@enron.com 2001-12-28
## 11842 rod.hayslett@enron.com 2001-12-28
## 11843 rod.hayslett@enron.com 2001-12-28
## 11844 rod.hayslett@enron.com 2001-12-28
## 11845 rod.hayslett@enron.com 2001-12-28
## 11846 rod.hayslett@enron.com 2001-12-28
## 11847 rod.hayslett@enron.com 2001-12-28
## 11848 rod.hayslett@enron.com 2001-12-28
## 11849 rod.hayslett@enron.com 2001-12-28
## 11850 rod.hayslett@enron.com 2001-12-28
## 11851 rod.hayslett@enron.com 2001-12-28
## 11852 rod.hayslett@enron.com 2001-12-28
## 11853 rod.hayslett@enron.com 2001-12-28
## 11854 rod.hayslett@enron.com 2001-12-28
## 11855 rod.hayslett@enron.com 2001-12-28
## 11856 rod.hayslett@enron.com 2001-12-28
## 11857 rod.hayslett@enron.com 2001-12-28
## 11858 rod.hayslett@enron.com 2001-12-28
## 11859 rod.hayslett@enron.com 2001-12-28
## 11860 rod.hayslett@enron.com 2001-12-28
## 11861 rod.hayslett@enron.com 2001-12-28
## 11862 rod.hayslett@enron.com 2001-12-28
## 11863 rod.hayslett@enron.com 2001-12-28
## 11864 rod.hayslett@enron.com 2001-12-28
## 11865 rod.hayslett@enron.com 2001-12-28
## 11866 rod.hayslett@enron.com 2001-12-28
## 11867 rod.hayslett@enron.com 2001-12-28
## 11868 rod.hayslett@enron.com 2001-12-28
## 11869 rod.hayslett@enron.com 2001-12-28
## 11870 rod.hayslett@enron.com 2001-12-28
## 11871 rod.hayslett@enron.com 2001-12-28
## 11872 rod.hayslett@enron.com 2001-12-28
## 11873 rod.hayslett@enron.com 2001-12-28
## 11874 rod.hayslett@enron.com 2001-12-28
## 11875 rod.hayslett@enron.com 2001-12-28
## 11876 michelle.lokay@enron.com 2001-12-28
## 11877 michelle.lokay@enron.com 2001-12-28
## 11878 michelle.lokay@enron.com 2001-12-28
## 11879 michelle.lokay@enron.com 2001-12-28
## 11880 michelle.lokay@enron.com 2001-12-28
## 11881 michelle.lokay@enron.com 2001-12-28
## 11882 michelle.lokay@enron.com 2001-12-28
## 11883 michelle.lokay@enron.com 2001-12-28
## 11884 michelle.lokay@enron.com 2001-12-28
## 11885 michelle.lokay@enron.com 2001-12-28
## 11886 michelle.lokay@enron.com 2001-12-28
## 11887 danny.mccarty@enron.com 2001-12-27
## 11888 danny.mccarty@enron.com 2001-12-27
## 11889 danny.mccarty@enron.com 2001-12-27
## 11890 danny.mccarty@enron.com 2001-12-27
## 11891 danny.mccarty@enron.com 2001-12-27
## 11892 danny.mccarty@enron.com 2001-12-27
## 11893 danny.mccarty@enron.com 2001-12-27
## 11894 danny.mccarty@enron.com 2001-12-27
## 11895 danny.mccarty@enron.com 2001-12-27
## 11896 danny.mccarty@enron.com 2001-12-27
## 11897 danny.mccarty@enron.com 2001-12-27
## 11898 danny.mccarty@enron.com 2001-12-27
## 11899 danny.mccarty@enron.com 2001-12-27
## 11900 danny.mccarty@enron.com 2001-12-27
## 11901 danny.mccarty@enron.com 2001-12-27
## 11902 danny.mccarty@enron.com 2001-12-27
## 11903 danny.mccarty@enron.com 2001-12-27
## 11904 danny.mccarty@enron.com 2001-12-27
## 11905 danny.mccarty@enron.com 2001-12-27
## 11906 danny.mccarty@enron.com 2001-12-27
## 11907 danny.mccarty@enron.com 2001-12-27
## 11908 danny.mccarty@enron.com 2001-12-27
## 11909 danny.mccarty@enron.com 2001-12-27
## 11910 danny.mccarty@enron.com 2001-12-27
## 11911 danny.mccarty@enron.com 2001-12-27
## 11912 danny.mccarty@enron.com 2001-12-27
## 11913 danny.mccarty@enron.com 2001-12-27
## 11914 danny.mccarty@enron.com 2001-12-27
## 11915 danny.mccarty@enron.com 2001-12-27
## 11916 danny.mccarty@enron.com 2001-12-27
## 11917 stephanie.panus@enron.com 2001-06-22
## 11918 kevin.m.presto@enron.com 2001-12-30
## 11919 kevin.m.presto@enron.com 2001-12-30
## 11920 kevin.m.presto@enron.com 2001-12-30
## 11921 kevin.m.presto@enron.com 2001-12-30
## 11922 kevin.m.presto@enron.com 2001-12-30
## 11923 kevin.m.presto@enron.com 2001-12-30
## 11924 kevin.m.presto@enron.com 2001-12-30
## 11925 kevin.m.presto@enron.com 2001-12-30
## 11926 kevin.m.presto@enron.com 2001-12-30
## 11927 kevin.m.presto@enron.com 2001-12-30
## 11928 kevin.m.presto@enron.com 2001-12-30
## 11929 kevin.m.presto@enron.com 2001-12-30
## 11930 kevin.m.presto@enron.com 2001-12-30
## 11931 kevin.m.presto@enron.com 2001-12-30
## 11932 kevin.m.presto@enron.com 2001-12-30
## 11933 kevin.m.presto@enron.com 2001-12-30
## 11934 kevin.m.presto@enron.com 2001-12-30
## 11935 kevin.m.presto@enron.com 2001-12-30
## 11936 kevin.m.presto@enron.com 2001-12-30
## 11937 kevin.m.presto@enron.com 2001-12-30
## 11938 stephanie.panus@enron.com 2001-12-27
## 11939 stephanie.panus@enron.com 2001-12-27
## 11940 stephanie.panus@enron.com 2001-12-20
## 11941 stephanie.panus@enron.com 2001-12-20
## 11942 stephanie.panus@enron.com 2001-12-20
## 11943 stephanie.panus@enron.com 2001-12-20
## 11944 stephanie.panus@enron.com 2001-12-20
## 11945 stephanie.panus@enron.com 2001-12-20
## 11946 stephanie.panus@enron.com 2001-11-28
## 11947 stephanie.panus@enron.com 2001-11-28
## 11948 phillip.k.ellen@enron.com 2000-07-14
## 11949 phillip.k.ellen@enron.com 2000-08-22
## 11950 phillip.k.ellen@enron.com 2000-08-22
## 11951 phillip.k.ellen@enron.com 2000-08-31
## 11952 phillip.k.ellen@enron.com 2000-08-31
## 11953 phillip.k.ellen@enron.com 2000-10-23
## 11954 phillip.k.ellen@enron.com 2000-08-09
## 11955 phillip.k.ellen@enron.com 2000-08-23
## 11956 phillip.k.ellen@enron.com 2000-12-14
## 11957 phillip.k.ellen@enron.com 2000-12-14
## 11958 phillip.k.ellen@enron.com 2000-12-14
## 11959 phillip.k.ellen@enron.com 2000-12-14
## 11960 phillip.k.ellen@enron.com 2000-12-14
## 11961 phillip.k.ellen@enron.com 2000-12-14
## 11962 phillip.k.ellen@enron.com 2000-12-15
## 11963 phillip.k.ellen@enron.com 2000-12-18
## 11964 phillip.k.ellen@enron.com 2000-12-18
## 11965 phillip.k.ellen@enron.com 2000-12-18
## 11966 phillip.k.ellen@enron.com 2000-12-18
## 11967 phillip.k.ellen@enron.com 2000-12-18
## 11968 phillip.k.ellen@enron.com 2000-12-19
## 11969 phillip.k.ellen@enron.com 2000-12-20
## 11970 phillip.k.ellen@enron.com 2000-12-20
## 11971 phillip.k.ellen@enron.com 2000-12-20
## 11972 phillip.k.ellen@enron.com 2000-12-20
## 11973 phillip.k.ellen@enron.com 2000-12-20
## 11974 phillip.k.ellen@enron.com 2000-12-20
## 11975 phillip.k.ellen@enron.com 2000-12-22
## 11976 phillip.k.ellen@enron.com 2000-12-22
## 11977 phillip.k.ellen@enron.com 2000-12-22
## 11978 phillip.k.ellen@enron.com 2000-12-27
## 11979 phillip.k.ellen@enron.com 2000-12-27
## 11980 phillip.k.ellen@enron.com 2000-12-27
## 11981 phillip.k.ellen@enron.com 2000-12-27
## 11982 phillip.k.ellen@enron.com 2000-12-28
## 11983 phillip.k.ellen@enron.com 2000-12-28
## 11984 phillip.k.ellen@enron.com 2000-12-29
## 11985 phillip.k.ellen@enron.com 2000-12-29
## 11986 phillip.k.ellen@enron.com 2000-12-29
## 11987 phillip.k.ellen@enron.com 2000-12-29
## 11988 phillip.k.ellen@enron.com 2001-01-02
## 11989 phillip.k.ellen@enron.com 2001-01-04
## 11990 phillip.k.ellen@enron.com 2001-01-04
## 11991 phillip.k.ellen@enron.com 2001-01-04
## 11992 phillip.k.ellen@enron.com 2001-01-04
## 11993 phillip.k.ellen@enron.com 2001-01-05
## 11994 phillip.k.ellen@enron.com 2001-01-08
## 11995 phillip.k.ellen@enron.com 2001-01-09
## 11996 phillip.k.ellen@enron.com 2001-01-09
## 11997 phillip.k.ellen@enron.com 2001-01-09
## 11998 phillip.k.ellen@enron.com 2001-01-09
## 11999 phillip.k.ellen@enron.com 2001-01-10
## 12000 phillip.k.ellen@enron.com 2001-01-11
## 12001 phillip.k.ellen@enron.com 2001-01-11
## 12002 phillip.k.ellen@enron.com 2001-01-12
## 12003 phillip.k.ellen@enron.com 2001-01-12
## 12004 phillip.k.ellen@enron.com 2001-01-12
## 12005 phillip.k.ellen@enron.com 2001-01-12
## 12006 phillip.k.ellen@enron.com 2001-01-13
## 12007 phillip.k.ellen@enron.com 2001-01-15
## 12008 phillip.k.ellen@enron.com 2001-01-15
## 12009 phillip.k.ellen@enron.com 2001-01-15
## 12010 phillip.k.ellen@enron.com 2001-01-17
## 12011 phillip.k.ellen@enron.com 2001-01-18
## 12012 phillip.k.ellen@enron.com 2001-01-18
## 12013 phillip.k.ellen@enron.com 2001-01-22
## 12014 phillip.k.ellen@enron.com 2001-01-22
## 12015 phillip.k.ellen@enron.com 2001-01-22
## 12016 phillip.k.ellen@enron.com 2001-01-22
## 12017 phillip.k.ellen@enron.com 2001-01-24
## 12018 phillip.k.ellen@enron.com 2001-01-24
## 12019 phillip.k.ellen@enron.com 2001-01-24
## 12020 phillip.k.ellen@enron.com 2001-01-24
## 12021 phillip.k.ellen@enron.com 2001-01-25
## 12022 phillip.k.ellen@enron.com 2001-01-25
## 12023 phillip.k.ellen@enron.com 2001-01-25
## 12024 phillip.k.ellen@enron.com 2001-01-25
## 12025 phillip.k.ellen@enron.com 2001-01-25
## 12026 phillip.k.ellen@enron.com 2001-01-26
## 12027 phillip.k.ellen@enron.com 2001-01-26
## 12028 phillip.k.ellen@enron.com 2001-01-26
## 12029 phillip.k.ellen@enron.com 2001-01-26
## 12030 phillip.k.ellen@enron.com 2001-01-26
## 12031 phillip.k.ellen@enron.com 2001-01-29
## 12032 phillip.k.ellen@enron.com 2001-01-29
## 12033 phillip.k.ellen@enron.com 2001-01-29
## 12034 phillip.k.ellen@enron.com 2001-01-29
## 12035 phillip.k.ellen@enron.com 2001-01-30
## 12036 phillip.k.ellen@enron.com 2001-01-30
## 12037 phillip.k.ellen@enron.com 2001-01-30
## 12038 phillip.k.ellen@enron.com 2001-01-30
## 12039 phillip.k.ellen@enron.com 2001-01-31
## 12040 phillip.k.ellen@enron.com 2001-01-31
## 12041 phillip.k.ellen@enron.com 2001-02-01
## 12042 phillip.k.ellen@enron.com 2001-02-01
## 12043 phillip.k.ellen@enron.com 2001-02-02
## 12044 phillip.k.ellen@enron.com 2001-02-02
## 12045 phillip.k.ellen@enron.com 2001-02-02
## 12046 phillip.k.ellen@enron.com 2001-02-02
## 12047 phillip.k.ellen@enron.com 2001-02-02
## 12048 phillip.k.ellen@enron.com 2001-02-02
## 12049 phillip.k.ellen@enron.com 2001-02-02
## 12050 phillip.k.ellen@enron.com 2001-02-02
## 12051 phillip.k.ellen@enron.com 2001-02-05
## 12052 phillip.k.ellen@enron.com 2001-02-05
## 12053 phillip.k.ellen@enron.com 2001-02-06
## 12054 phillip.k.ellen@enron.com 2001-02-06
## 12055 phillip.k.ellen@enron.com 2001-02-06
## 12056 phillip.k.ellen@enron.com 2001-02-06
## 12057 phillip.k.ellen@enron.com 2001-02-06
## 12058 phillip.k.ellen@enron.com 2001-02-06
## 12059 phillip.k.ellen@enron.com 2001-02-07
## 12060 phillip.k.ellen@enron.com 2001-02-07
## 12061 phillip.k.ellen@enron.com 2001-02-08
## 12062 phillip.k.ellen@enron.com 2001-02-09
## 12063 phillip.k.ellen@enron.com 2001-02-09
## 12064 phillip.k.ellen@enron.com 2001-02-12
## 12065 phillip.k.ellen@enron.com 2001-02-12
## 12066 phillip.k.ellen@enron.com 2001-02-12
## 12067 phillip.k.ellen@enron.com 2001-02-13
## 12068 phillip.k.ellen@enron.com 2001-02-13
## 12069 phillip.k.ellen@enron.com 2001-02-14
## 12070 phillip.k.ellen@enron.com 2001-02-14
## 12071 phillip.k.ellen@enron.com 2001-02-14
## 12072 phillip.k.ellen@enron.com 2001-02-15
## 12073 phillip.k.ellen@enron.com 2001-02-15
## 12074 phillip.k.ellen@enron.com 2001-02-15
## 12075 phillip.k.ellen@enron.com 2001-02-15
## 12076 phillip.k.ellen@enron.com 2001-02-16
## 12077 phillip.k.ellen@enron.com 2001-02-16
## 12078 phillip.k.ellen@enron.com 2001-02-16
## 12079 phillip.k.ellen@enron.com 2001-02-17
## 12080 phillip.k.ellen@enron.com 2001-02-18
## 12081 phillip.k.ellen@enron.com 2001-02-18
## 12082 phillip.k.ellen@enron.com 2001-02-20
## 12083 phillip.k.ellen@enron.com 2001-02-20
## 12084 phillip.k.ellen@enron.com 2001-02-20
## 12085 phillip.k.ellen@enron.com 2001-02-20
## 12086 phillip.k.ellen@enron.com 2001-02-20
## 12087 phillip.k.ellen@enron.com 2001-02-20
## 12088 phillip.k.ellen@enron.com 2001-02-20
## 12089 phillip.k.ellen@enron.com 2001-02-20
## 12090 phillip.k.ellen@enron.com 2001-02-20
## 12091 phillip.k.ellen@enron.com 2001-02-21
## 12092 phillip.k.ellen@enron.com 2001-02-21
## 12093 phillip.k.ellen@enron.com 2001-02-21
## 12094 phillip.k.ellen@enron.com 2001-02-21
## 12095 phillip.k.ellen@enron.com 2001-02-21
## 12096 phillip.k.ellen@enron.com 2001-02-21
## 12097 phillip.k.ellen@enron.com 2001-02-21
## 12098 phillip.k.ellen@enron.com 2001-02-22
## 12099 phillip.k.ellen@enron.com 2001-02-22
## 12100 phillip.k.ellen@enron.com 2001-02-22
## 12101 phillip.k.ellen@enron.com 2001-02-23
## 12102 phillip.k.ellen@enron.com 2001-02-23
## 12103 phillip.k.ellen@enron.com 2001-02-23
## 12104 phillip.k.ellen@enron.com 2001-02-23
## 12105 phillip.k.ellen@enron.com 2001-02-23
## 12106 phillip.k.ellen@enron.com 2001-02-24
## 12107 phillip.k.ellen@enron.com 2001-02-27
## 12108 phillip.k.ellen@enron.com 2001-03-04
## 12109 phillip.k.ellen@enron.com 2001-03-05
## 12110 phillip.k.ellen@enron.com 2001-03-05
## 12111 phillip.k.ellen@enron.com 2001-03-05
## 12112 phillip.k.ellen@enron.com 2001-03-05
## 12113 phillip.k.ellen@enron.com 2001-03-05
## 12114 phillip.k.ellen@enron.com 2001-03-05
## 12115 phillip.k.ellen@enron.com 2001-03-05
## 12116 phillip.k.ellen@enron.com 2001-03-05
## 12117 phillip.k.ellen@enron.com 2001-03-05
## 12118 phillip.k.ellen@enron.com 2001-03-05
## 12119 phillip.k.ellen@enron.com 2001-03-05
## 12120 phillip.k.ellen@enron.com 2001-03-06
## 12121 phillip.k.ellen@enron.com 2001-03-06
## 12122 phillip.k.ellen@enron.com 2001-03-06
## 12123 phillip.k.ellen@enron.com 2001-03-07
## 12124 phillip.k.ellen@enron.com 2001-03-07
## 12125 phillip.k.ellen@enron.com 2001-03-07
## 12126 phillip.k.ellen@enron.com 2001-03-07
## 12127 phillip.k.ellen@enron.com 2001-03-07
## 12128 phillip.k.ellen@enron.com 2001-03-08
## 12129 phillip.k.ellen@enron.com 2001-03-09
## 12130 phillip.k.ellen@enron.com 2001-03-12
## 12131 phillip.k.ellen@enron.com 2001-03-13
## 12132 phillip.k.ellen@enron.com 2001-03-13
## 12133 phillip.k.ellen@enron.com 2001-03-13
## 12134 phillip.k.ellen@enron.com 2001-03-13
## 12135 phillip.k.ellen@enron.com 2001-03-14
## 12136 phillip.k.ellen@enron.com 2001-03-14
## 12137 phillip.k.ellen@enron.com 2001-03-14
## 12138 phillip.k.ellen@enron.com 2001-03-14
## 12139 phillip.k.ellen@enron.com 2001-03-14
## 12140 phillip.k.ellen@enron.com 2001-03-14
## 12141 phillip.k.ellen@enron.com 2001-03-14
## 12142 phillip.k.ellen@enron.com 2001-03-14
## 12143 phillip.k.ellen@enron.com 2001-03-15
## 12144 phillip.k.ellen@enron.com 2001-03-15
## 12145 phillip.k.ellen@enron.com 2001-03-15
## 12146 phillip.k.ellen@enron.com 2001-03-15
## 12147 phillip.k.ellen@enron.com 2001-03-15
## 12148 phillip.k.ellen@enron.com 2001-03-15
## 12149 phillip.k.ellen@enron.com 2001-03-15
## 12150 phillip.k.ellen@enron.com 2001-03-15
## 12151 phillip.k.ellen@enron.com 2001-03-16
## 12152 phillip.k.ellen@enron.com 2001-03-19
## 12153 phillip.k.ellen@enron.com 2001-03-19
## 12154 phillip.k.ellen@enron.com 2001-03-19
## 12155 phillip.k.ellen@enron.com 2001-03-19
## 12156 phillip.k.ellen@enron.com 2001-03-20
## 12157 phillip.k.ellen@enron.com 2001-03-25
## 12158 phillip.k.ellen@enron.com 2001-03-25
## 12159 phillip.k.ellen@enron.com 2001-03-25
## 12160 phillip.k.ellen@enron.com 2001-03-26
## 12161 phillip.k.ellen@enron.com 2001-03-26
## 12162 phillip.k.ellen@enron.com 2001-03-26
## 12163 phillip.k.ellen@enron.com 2001-03-26
## 12164 phillip.k.ellen@enron.com 2001-03-26
## 12165 phillip.k.ellen@enron.com 2001-03-26
## 12166 phillip.k.ellen@enron.com 2001-03-26
## 12167 phillip.k.ellen@enron.com 2001-03-26
## 12168 phillip.k.ellen@enron.com 2001-03-26
## 12169 phillip.k.ellen@enron.com 2001-03-26
## 12170 phillip.k.ellen@enron.com 2001-03-27
## 12171 phillip.k.ellen@enron.com 2001-03-27
## 12172 phillip.k.ellen@enron.com 2001-03-27
## 12173 phillip.k.ellen@enron.com 2001-03-28
## 12174 phillip.k.ellen@enron.com 2001-03-28
## 12175 phillip.k.ellen@enron.com 2001-03-28
## 12176 phillip.k.ellen@enron.com 2001-03-28
## 12177 phillip.k.ellen@enron.com 2001-03-29
## 12178 phillip.k.ellen@enron.com 2001-03-29
## 12179 phillip.k.ellen@enron.com 2001-03-29
## 12180 phillip.k.ellen@enron.com 2001-03-29
## 12181 phillip.k.ellen@enron.com 2001-03-29
## 12182 phillip.k.ellen@enron.com 2001-03-29
## 12183 phillip.k.ellen@enron.com 2001-04-02
## 12184 phillip.k.ellen@enron.com 2001-04-02
## 12185 phillip.k.ellen@enron.com 2001-04-03
## 12186 phillip.k.ellen@enron.com 2001-04-03
## 12187 phillip.k.ellen@enron.com 2001-04-04
## 12188 phillip.k.ellen@enron.com 2001-04-04
## 12189 phillip.k.ellen@enron.com 2001-04-06
## 12190 phillip.k.ellen@enron.com 2001-04-09
## 12191 phillip.k.ellen@enron.com 2001-04-09
## 12192 phillip.k.ellen@enron.com 2001-04-09
## 12193 phillip.k.ellen@enron.com 2001-04-09
## 12194 phillip.k.ellen@enron.com 2001-04-10
## 12195 phillip.k.ellen@enron.com 2001-04-10
## 12196 phillip.k.ellen@enron.com 2001-04-10
## 12197 phillip.k.ellen@enron.com 2001-04-11
## 12198 phillip.k.ellen@enron.com 2001-04-11
## 12199 phillip.k.ellen@enron.com 2001-04-11
## 12200 phillip.k.ellen@enron.com 2001-04-12
## 12201 phillip.k.ellen@enron.com 2001-04-12
## 12202 phillip.k.ellen@enron.com 2001-04-12
## 12203 phillip.k.ellen@enron.com 2001-04-12
## 12204 phillip.k.ellen@enron.com 2001-04-12
## 12205 phillip.k.ellen@enron.com 2001-04-12
## 12206 phillip.k.ellen@enron.com 2001-04-16
## 12207 phillip.k.ellen@enron.com 2001-04-18
## 12208 phillip.k.ellen@enron.com 2001-04-18
## 12209 phillip.k.ellen@enron.com 2001-04-18
## 12210 phillip.k.ellen@enron.com 2001-04-18
## 12211 phillip.k.ellen@enron.com 2001-04-18
## 12212 phillip.k.ellen@enron.com 2001-04-18
## 12213 phillip.k.ellen@enron.com 2001-04-18
## 12214 phillip.k.ellen@enron.com 2001-04-18
## 12215 phillip.k.ellen@enron.com 2001-04-19
## 12216 phillip.k.ellen@enron.com 2001-04-23
## 12217 phillip.k.ellen@enron.com 2001-04-23
## 12218 phillip.k.ellen@enron.com 2001-04-23
## 12219 phillip.k.ellen@enron.com 2001-04-23
## 12220 phillip.k.ellen@enron.com 2001-04-23
## 12221 phillip.k.ellen@enron.com 2001-04-24
## 12222 phillip.k.ellen@enron.com 2001-04-24
## 12223 phillip.k.ellen@enron.com 2001-04-24
## 12224 phillip.k.ellen@enron.com 2001-04-24
## 12225 phillip.k.ellen@enron.com 2001-04-24
## 12226 phillip.k.ellen@enron.com 2001-04-24
## 12227 phillip.k.ellen@enron.com 2001-04-24
## 12228 phillip.k.ellen@enron.com 2001-04-24
## 12229 phillip.k.ellen@enron.com 2001-04-24
## 12230 phillip.k.ellen@enron.com 2001-04-24
## 12231 phillip.k.ellen@enron.com 2001-04-24
## 12232 phillip.k.ellen@enron.com 2001-04-24
## 12233 phillip.k.ellen@enron.com 2001-04-24
## 12234 phillip.k.ellen@enron.com 2001-04-24
## 12235 phillip.k.ellen@enron.com 2001-04-24
## 12236 phillip.k.ellen@enron.com 2001-04-24
## 12237 phillip.k.ellen@enron.com 2001-04-25
## 12238 phillip.k.ellen@enron.com 2001-04-25
## 12239 phillip.k.ellen@enron.com 2001-04-25
## 12240 phillip.k.ellen@enron.com 2001-04-25
## 12241 phillip.k.ellen@enron.com 2001-04-25
## 12242 phillip.k.ellen@enron.com 2001-04-25
## 12243 phillip.k.ellen@enron.com 2001-04-26
## 12244 phillip.k.ellen@enron.com 2001-04-26
## 12245 phillip.k.ellen@enron.com 2001-04-26
## 12246 phillip.k.ellen@enron.com 2001-04-27
## 12247 phillip.k.ellen@enron.com 2001-04-27
## 12248 phillip.k.ellen@enron.com 2001-04-27
## 12249 phillip.k.ellen@enron.com 2001-04-27
## 12250 phillip.k.ellen@enron.com 2001-04-30
## 12251 phillip.k.ellen@enron.com 2001-04-30
## 12252 phillip.k.ellen@enron.com 2001-04-30
## 12253 phillip.k.ellen@enron.com 2001-05-01
## 12254 phillip.k.ellen@enron.com 2001-05-01
## 12255 phillip.k.ellen@enron.com 2001-05-01
## 12256 phillip.k.ellen@enron.com 2001-05-02
## 12257 phillip.k.ellen@enron.com 2001-05-03
## 12258 phillip.k.ellen@enron.com 2001-05-03
## 12259 phillip.k.ellen@enron.com 2001-05-04
## 12260 phillip.k.ellen@enron.com 2001-05-04
## 12261 phillip.k.ellen@enron.com 2001-05-04
## 12262 phillip.k.ellen@enron.com 2001-05-04
## 12263 phillip.k.ellen@enron.com 2001-05-04
## 12264 phillip.k.ellen@enron.com 2001-05-04
## 12265 phillip.k.ellen@enron.com 2001-05-04
## 12266 phillip.k.ellen@enron.com 2001-05-04
## 12267 phillip.k.ellen@enron.com 2001-05-06
## 12268 phillip.k.ellen@enron.com 2001-05-07
## 12269 phillip.k.ellen@enron.com 2001-05-07
## 12270 phillip.k.ellen@enron.com 2001-05-07
## 12271 phillip.k.ellen@enron.com 2001-05-07
## 12272 phillip.k.ellen@enron.com 2001-05-07
## 12273 phillip.k.ellen@enron.com 2001-05-09
## 12274 phillip.k.ellen@enron.com 2001-05-10
## 12275 phillip.k.ellen@enron.com 2001-05-10
## 12276 phillip.k.ellen@enron.com 2001-05-14
## 12277 phillip.k.ellen@enron.com 2001-05-14
## 12278 phillip.k.ellen@enron.com 1999-12-10
## 12279 phillip.k.ellen@enron.com 1999-12-11
## 12280 phillip.k.ellen@enron.com 2000-01-05
## 12281 phillip.k.ellen@enron.com 2000-01-06
## 12282 phillip.k.ellen@enron.com 2000-01-07
## 12283 phillip.k.ellen@enron.com 2000-01-10
## 12284 phillip.k.ellen@enron.com 2000-01-10
## 12285 phillip.k.ellen@enron.com 2000-01-10
## 12286 phillip.k.ellen@enron.com 2000-01-10
## 12287 phillip.k.ellen@enron.com 2000-01-10
## 12288 phillip.k.ellen@enron.com 2000-01-10
## 12289 phillip.k.ellen@enron.com 2000-01-10
## 12290 phillip.k.ellen@enron.com 2000-01-12
## 12291 phillip.k.ellen@enron.com 2000-01-13
## 12292 phillip.k.ellen@enron.com 2000-01-13
## 12293 phillip.k.ellen@enron.com 2000-01-13
## 12294 phillip.k.ellen@enron.com 2000-01-13
## 12295 phillip.k.ellen@enron.com 2000-01-17
## 12296 phillip.k.ellen@enron.com 2000-01-17
## 12297 phillip.k.ellen@enron.com 2000-01-17
## 12298 phillip.k.ellen@enron.com 2000-01-18
## 12299 phillip.k.ellen@enron.com 2000-01-18
## 12300 phillip.k.ellen@enron.com 2000-01-27
## 12301 phillip.k.ellen@enron.com 2000-01-27
## 12302 phillip.k.ellen@enron.com 2000-01-31
## 12303 phillip.k.ellen@enron.com 2000-01-31
## 12304 phillip.k.ellen@enron.com 2000-02-01
## 12305 phillip.k.ellen@enron.com 2000-02-02
## 12306 phillip.k.ellen@enron.com 2000-02-04
## 12307 phillip.k.ellen@enron.com 2000-02-04
## 12308 phillip.k.ellen@enron.com 2000-02-07
## 12309 phillip.k.ellen@enron.com 2000-02-07
## 12310 phillip.k.ellen@enron.com 2000-02-07
## 12311 phillip.k.ellen@enron.com 2000-02-07
## 12312 phillip.k.ellen@enron.com 2000-02-09
## 12313 phillip.k.ellen@enron.com 2000-02-09
## 12314 phillip.k.ellen@enron.com 2000-02-11
## 12315 phillip.k.ellen@enron.com 2000-02-11
## 12316 phillip.k.ellen@enron.com 2000-02-15
## 12317 phillip.k.ellen@enron.com 2000-02-15
## 12318 phillip.k.ellen@enron.com 2000-02-17
## 12319 phillip.k.ellen@enron.com 2000-02-17
## 12320 phillip.k.ellen@enron.com 2000-02-21
## 12321 phillip.k.ellen@enron.com 2000-02-21
## 12322 phillip.k.ellen@enron.com 2000-02-28
## 12323 phillip.k.ellen@enron.com 2000-03-02
## 12324 phillip.k.ellen@enron.com 2000-03-02
## 12325 phillip.k.ellen@enron.com 2000-03-03
## 12326 phillip.k.ellen@enron.com 2000-03-03
## 12327 phillip.k.ellen@enron.com 2000-03-03
## 12328 phillip.k.ellen@enron.com 2000-03-03
## 12329 phillip.k.ellen@enron.com 2000-03-06
## 12330 phillip.k.ellen@enron.com 2000-03-07
## 12331 phillip.k.ellen@enron.com 2000-03-09
## 12332 phillip.k.ellen@enron.com 2000-03-09
## 12333 phillip.k.ellen@enron.com 2000-03-13
## 12334 phillip.k.ellen@enron.com 2000-03-13
## 12335 phillip.k.ellen@enron.com 2000-03-13
## 12336 phillip.k.ellen@enron.com 2000-03-13
## 12337 phillip.k.ellen@enron.com 2000-03-13
## 12338 phillip.k.ellen@enron.com 2000-03-13
## 12339 phillip.k.ellen@enron.com 2000-03-13
## 12340 phillip.k.ellen@enron.com 2000-03-14
## 12341 phillip.k.ellen@enron.com 2000-03-14
## 12342 phillip.k.ellen@enron.com 2000-03-15
## 12343 phillip.k.ellen@enron.com 2000-03-15
## 12344 phillip.k.ellen@enron.com 2000-03-16
## 12345 phillip.k.ellen@enron.com 2000-03-20
## 12346 phillip.k.ellen@enron.com 2000-03-21
## 12347 phillip.k.ellen@enron.com 2000-03-22
## 12348 phillip.k.ellen@enron.com 2000-03-22
## 12349 phillip.k.ellen@enron.com 2000-03-22
## 12350 phillip.k.ellen@enron.com 2000-03-23
## 12351 phillip.k.ellen@enron.com 2000-03-24
## 12352 phillip.k.ellen@enron.com 2000-03-27
## 12353 phillip.k.ellen@enron.com 2000-03-27
## 12354 phillip.k.ellen@enron.com 2000-03-28
## 12355 phillip.k.ellen@enron.com 2000-03-28
## 12356 phillip.k.ellen@enron.com 2000-03-28
## 12357 phillip.k.ellen@enron.com 2000-03-30
## 12358 phillip.k.ellen@enron.com 2000-04-05
## 12359 phillip.k.ellen@enron.com 2000-04-06
## 12360 phillip.k.ellen@enron.com 2000-04-10
## 12361 phillip.k.ellen@enron.com 2000-04-10
## 12362 phillip.k.ellen@enron.com 2000-04-13
## 12363 phillip.k.ellen@enron.com 2000-04-13
## 12364 phillip.k.ellen@enron.com 2000-04-24
## 12365 phillip.k.ellen@enron.com 2000-04-25
## 12366 phillip.k.ellen@enron.com 2000-04-26
## 12367 phillip.k.ellen@enron.com 2000-04-26
## 12368 phillip.k.ellen@enron.com 2000-04-27
## 12369 phillip.k.ellen@enron.com 2000-04-27
## 12370 phillip.k.ellen@enron.com 2000-04-28
## 12371 phillip.k.ellen@enron.com 2000-05-01
## 12372 phillip.k.ellen@enron.com 2000-05-11
## 12373 phillip.k.ellen@enron.com 2000-05-19
## 12374 phillip.k.ellen@enron.com 2000-05-19
## 12375 phillip.k.ellen@enron.com 2000-05-22
## 12376 phillip.k.ellen@enron.com 2000-05-22
## 12377 phillip.k.ellen@enron.com 2000-05-22
## 12378 phillip.k.ellen@enron.com 2000-05-22
## 12379 phillip.k.ellen@enron.com 2000-05-22
## 12380 phillip.k.ellen@enron.com 2000-05-23
## 12381 phillip.k.ellen@enron.com 2000-05-24
## 12382 phillip.k.ellen@enron.com 2000-05-26
## 12383 phillip.k.ellen@enron.com 2000-05-26
## 12384 phillip.k.ellen@enron.com 2000-05-26
## 12385 phillip.k.ellen@enron.com 2000-05-30
## 12386 phillip.k.ellen@enron.com 2000-05-31
## 12387 phillip.k.ellen@enron.com 2000-06-02
## 12388 phillip.k.ellen@enron.com 2000-06-02
## 12389 phillip.k.ellen@enron.com 2000-06-05
## 12390 phillip.k.ellen@enron.com 2000-06-06
## 12391 phillip.k.ellen@enron.com 2000-06-06
## 12392 phillip.k.ellen@enron.com 2000-06-06
## 12393 phillip.k.ellen@enron.com 2000-06-08
## 12394 phillip.k.ellen@enron.com 2000-06-08
## 12395 phillip.k.ellen@enron.com 2000-06-12
## 12396 phillip.k.ellen@enron.com 2000-06-13
## 12397 phillip.k.ellen@enron.com 2000-06-13
## 12398 phillip.k.ellen@enron.com 2000-06-22
## 12399 phillip.k.ellen@enron.com 2000-06-23
## 12400 phillip.k.ellen@enron.com 2000-06-26
## 12401 phillip.k.ellen@enron.com 2000-06-26
## 12402 phillip.k.ellen@enron.com 2000-06-26
## 12403 phillip.k.ellen@enron.com 2000-06-27
## 12404 phillip.k.ellen@enron.com 2000-06-27
## 12405 phillip.k.ellen@enron.com 2000-06-27
## 12406 phillip.k.ellen@enron.com 2000-06-30
## 12407 phillip.k.ellen@enron.com 2000-06-30
## 12408 phillip.k.ellen@enron.com 2000-07-06
## 12409 phillip.k.ellen@enron.com 2000-07-06
## 12410 phillip.k.ellen@enron.com 2000-07-07
## 12411 phillip.k.ellen@enron.com 2000-07-07
## 12412 phillip.k.ellen@enron.com 2000-07-07
## 12413 phillip.k.ellen@enron.com 2000-07-07
## 12414 phillip.k.ellen@enron.com 2000-07-10
## 12415 phillip.k.ellen@enron.com 2000-07-10
## 12416 phillip.k.ellen@enron.com 2000-07-10
## 12417 phillip.k.ellen@enron.com 2000-07-10
## 12418 phillip.k.ellen@enron.com 2000-07-10
## 12419 phillip.k.ellen@enron.com 2000-07-10
## 12420 phillip.k.ellen@enron.com 2000-07-11
## 12421 phillip.k.ellen@enron.com 2000-07-11
## 12422 phillip.k.ellen@enron.com 2000-07-11
## 12423 phillip.k.ellen@enron.com 2000-07-11
## 12424 phillip.k.ellen@enron.com 2000-07-11
## 12425 phillip.k.ellen@enron.com 2000-07-11
## 12426 phillip.k.ellen@enron.com 2000-07-12
## 12427 phillip.k.ellen@enron.com 2000-07-13
## 12428 phillip.k.ellen@enron.com 2000-07-14
## 12429 phillip.k.ellen@enron.com 2000-07-14
## 12430 phillip.k.ellen@enron.com 2000-07-14
## 12431 phillip.k.ellen@enron.com 2000-07-14
## 12432 phillip.k.ellen@enron.com 2000-07-17
## 12433 phillip.k.ellen@enron.com 2000-07-18
## 12434 phillip.k.ellen@enron.com 2000-07-19
## 12435 phillip.k.ellen@enron.com 2000-07-20
## 12436 phillip.k.ellen@enron.com 2000-07-20
## 12437 phillip.k.ellen@enron.com 2000-07-24
## 12438 phillip.k.ellen@enron.com 2000-07-25
## 12439 phillip.k.ellen@enron.com 2000-07-26
## 12440 phillip.k.ellen@enron.com 2000-07-26
## 12441 phillip.k.ellen@enron.com 2000-07-26
## 12442 phillip.k.ellen@enron.com 2000-07-26
## 12443 phillip.k.ellen@enron.com 2000-07-26
## 12444 phillip.k.ellen@enron.com 2000-07-26
## 12445 phillip.k.ellen@enron.com 2000-07-26
## 12446 phillip.k.ellen@enron.com 2000-08-03
## 12447 phillip.k.ellen@enron.com 2000-08-04
## 12448 phillip.k.ellen@enron.com 2000-08-04
## 12449 phillip.k.ellen@enron.com 2000-08-05
## 12450 phillip.k.ellen@enron.com 2000-08-07
## 12451 phillip.k.ellen@enron.com 2000-08-07
## 12452 phillip.k.ellen@enron.com 2000-08-07
## 12453 phillip.k.ellen@enron.com 2000-08-07
## 12454 phillip.k.ellen@enron.com 2000-08-07
## 12455 phillip.k.ellen@enron.com 2000-08-07
## 12456 phillip.k.ellen@enron.com 2000-08-07
## 12457 phillip.k.ellen@enron.com 2000-08-08
## 12458 phillip.k.ellen@enron.com 2000-08-08
## 12459 phillip.k.ellen@enron.com 2000-08-08
## 12460 phillip.k.ellen@enron.com 2000-08-09
## 12461 phillip.k.ellen@enron.com 2000-08-09
## 12462 phillip.k.ellen@enron.com 2000-08-09
## 12463 phillip.k.ellen@enron.com 2000-08-10
## 12464 phillip.k.ellen@enron.com 2000-08-10
## 12465 phillip.k.ellen@enron.com 2000-08-10
## 12466 phillip.k.ellen@enron.com 2000-08-15
## 12467 phillip.k.ellen@enron.com 2000-08-16
## 12468 phillip.k.ellen@enron.com 2000-08-16
## 12469 phillip.k.ellen@enron.com 2000-08-16
## 12470 phillip.k.ellen@enron.com 2000-08-17
## 12471 phillip.k.ellen@enron.com 2000-08-20
## 12472 phillip.k.ellen@enron.com 2000-08-20
## 12473 phillip.k.ellen@enron.com 2000-08-20
## 12474 phillip.k.ellen@enron.com 2000-08-21
## 12475 phillip.k.ellen@enron.com 2000-08-22
## 12476 phillip.k.ellen@enron.com 2000-08-23
## 12477 phillip.k.ellen@enron.com 2000-08-23
## 12478 phillip.k.ellen@enron.com 2000-08-23
## 12479 phillip.k.ellen@enron.com 2000-08-24
## 12480 phillip.k.ellen@enron.com 2000-08-25
## 12481 phillip.k.ellen@enron.com 2000-08-25
## 12482 phillip.k.ellen@enron.com 2000-08-25
## 12483 phillip.k.ellen@enron.com 2000-08-25
## 12484 phillip.k.ellen@enron.com 2000-08-25
## 12485 phillip.k.ellen@enron.com 2000-08-25
## 12486 phillip.k.ellen@enron.com 2000-08-25
## 12487 phillip.k.ellen@enron.com 2000-08-25
## 12488 phillip.k.ellen@enron.com 2000-08-25
## 12489 phillip.k.ellen@enron.com 2000-08-28
## 12490 phillip.k.ellen@enron.com 2000-08-28
## 12491 phillip.k.ellen@enron.com 2000-08-28
## 12492 phillip.k.ellen@enron.com 2000-08-28
## 12493 phillip.k.ellen@enron.com 2000-08-28
## 12494 phillip.k.ellen@enron.com 2000-08-28
## 12495 phillip.k.ellen@enron.com 2000-08-28
## 12496 phillip.k.ellen@enron.com 2000-08-28
## 12497 phillip.k.ellen@enron.com 2000-08-29
## 12498 phillip.k.ellen@enron.com 2000-08-29
## 12499 phillip.k.ellen@enron.com 2000-08-30
## subject
## 1 Change to EnData
## 2 Change to EnData
## 3 Change to EnData
## 4 Change to EnData
## 5 Change to EnData
## 6 CalPX Market Compliance Unit Submits its 2nd Annual Report to FERC
## 7 CalPX Market Compliance Unit Submits its 2nd Annual Report to FERC
## 8 CalPX Market Compliance Unit Submits its 2nd Annual Report to FERC
## 9 CalPX Market Compliance Unit Submits its 2nd Annual Report to FERC
## 10 CalPX Market Compliance Unit Submits its 2nd Annual Report to FERC
## 11 CalPX Market Compliance Unit Submits its 2nd Annual Report to FERC
## 12 CalPX Market Compliance Unit Submits its 2nd Annual Report to FERC
## 13 CalPX Market Compliance Unit Submits its 2nd Annual Report to FERC
## 14 CalPX Market Compliance Unit Submits its 2nd Annual Report to FERC
## 15 CalPX Market Compliance Unit Submits its 2nd Annual Report to FERC
## 16 CalPX Market Compliance Unit Submits its 2nd Annual Report to FERC
## 17 CalPX Market Compliance Unit Submits its 2nd Annual Report to FERC
## 18 Re: Governor s Press Conference -- Shot Across the Bow
## 19 Re: Governor s Press Conference -- Shot Across the Bow
## 20 Re: Governor s Press Conference -- Shot Across the Bow
## 21 Re: Governor s Press Conference -- Shot Across the Bow
## 22 Re: Governor s Press Conference -- Shot Across the Bow
## 23 Re: Governor s Press Conference -- Shot Across the Bow
## 24 Re: Governor s Press Conference -- Shot Across the Bow
## 25 Re: Governor s Press Conference -- Shot Across the Bow
## 26 Re: Governor s Press Conference -- Shot Across the Bow
## 27 Re: Governor s Press Conference -- Shot Across the Bow
## 28 Re: Governor s Press Conference -- Shot Across the Bow
## 29 Re: Governor s Press Conference -- Shot Across the Bow
## 30 CA ISO / CAL PX Information Related to 2000 Market Activity
## 31 CA ISO / CAL PX Information Related to 2000 Market Activity
## 32 Critics Seek More Control Over ISO
## 33 Critics Seek More Control Over ISO
## 34 Critics Seek More Control Over ISO
## 35 Critics Seek More Control Over ISO
## 36 Critics Seek More Control Over ISO
## 37 Critics Seek More Control Over ISO
## 38 Critics Seek More Control Over ISO
## 39 Critics Seek More Control Over ISO
## 40 Critics Seek More Control Over ISO
## 41 Critics Seek More Control Over ISO
## 42 Critics Seek More Control Over ISO
## 43 Deregulation: `Conspiracy of Incompetence Even if energy prices are being manipulated, it may not be illegal. AND Gov. Davis Calls for Cut in Electricity Bills:
## 44 Deregulation: `Conspiracy of Incompetence Even if energy prices are being manipulated, it may not be illegal. AND Gov. Davis Calls for Cut in Electricity Bills:
## 45 Deregulation: `Conspiracy of Incompetence Even if energy prices are being manipulated, it may not be illegal. AND Gov. Davis Calls for Cut in Electricity Bills:
## 46 Deregulation: `Conspiracy of Incompetence Even if energy prices are being manipulated, it may not be illegal. AND Gov. Davis Calls for Cut in Electricity Bills:
## 47 Deregulation: `Conspiracy of Incompetence Even if energy prices are being manipulated, it may not be illegal. AND Gov. Davis Calls for Cut in Electricity Bills:
## 48 Deregulation: `Conspiracy of Incompetence Even if energy prices are being manipulated, it may not be illegal. AND Gov. Davis Calls for Cut in Electricity Bills:
## 49 Deregulation: `Conspiracy of Incompetence Even if energy prices are being manipulated, it may not be illegal. AND Gov. Davis Calls for Cut in Electricity Bills:
## 50 Deregulation: `Conspiracy of Incompetence Even if energy prices are being manipulated, it may not be illegal. AND Gov. Davis Calls for Cut in Electricity Bills:
## 51 Deregulation: `Conspiracy of Incompetence Even if energy prices are being manipulated, it may not be illegal. AND Gov. Davis Calls for Cut in Electricity Bills:
## 52 Deregulation: `Conspiracy of Incompetence Even if energy prices are being manipulated, it may not be illegal. AND Gov. Davis Calls for Cut in Electricity Bills:
## 53 Deregulation: `Conspiracy of Incompetence Even if energy prices are being manipulated, it may not be illegal. AND Gov. Davis Calls for Cut in Electricity Bills:
## 54 Deregulation: `Conspiracy of Incompetence Even if energy prices are being manipulated, it may not be illegal. AND Gov. Davis Calls for Cut in Electricity Bills:
## 55 Deregulation: `Conspiracy of Incompetence Even if energy prices are being manipulated, it may not be illegal. AND Gov. Davis Calls for Cut in Electricity Bills:
## 56 Deregulation: `Conspiracy of Incompetence Even if energy prices are being manipulated, it may not be illegal. AND Gov. Davis Calls for Cut in Electricity Bills:
## 57 Deregulation: `Conspiracy of Incompetence Even if energy prices are being manipulated, it may not be illegal. AND Gov. Davis Calls for Cut in Electricity Bills:
## 58 ISO Special 8.10.00 Report on Energy Market Issues and Performance: May-June, 2000
## 59 ISO Special 8.10.00 Report on Energy Market Issues and Performance: May-June, 2000
## 60 ISO Special 8.10.00 Report on Energy Market Issues and Performance: May-June, 2000
## 61 USBS Painewebber
## 62 Hello from a long lost friend
## 63 RE: RE: Whats up!!!!!
## 64 RE: RE: Whats up!!!!!
## 65 RE: Expense Receipts
## 66 RE: BADGE
## 67 RE: BADGE
## 68 RE: Badge Access
## 69 Confidential - Calif Peaking Plant
## 70 TW Gomez lateral offer memo
## 71 TW Gomez lateral offer memo
## 72 TW Gomez lateral offer memo
## 73 TW Gomez lateral offer memo
## 74 TW Gomez lateral offer memo
## 75 TW Gomez lateral offer memo
## 76 Potential sale of Gomez lateral pipe
## 77 Potential sale of Gomez lateral pipe
## 78 Potential sale of Gomez lateral pipe
## 79 Potential sale of Gomez lateral pipe
## 80 Potential sale of Gomez lateral pipe
## 81 Potential sale of Gomez lateral pipe
## 82 Potential sale of Gomez lateral pipe
## 83 Revised- Confidential: Phoenix, AZ gas market research study
## 84 SouthWest Gas ROW
## 85 SouthWest Gas ROW
## 86 SouthWest Gas ROW
## 87 Weekly update 3/15
## 88 Weekly update 3/15
## 89 Weekly update 3/15
## 90 Weekly update 3/15
## 91 Weekly update 3/15
## 92 Weekly update 3/15
## 93 weekly update 3/8
## 94 weekly update 3/8
## 95 weekly update 3/8
## 96 weekly update 3/8
## 97 ETS Asset Development weekly update - 3/1/02
## 98 ETS Asset Development weekly update - 3/1/02
## 99 ETS Asset Development weekly update - 3/1/02
## 100 ETS Asset Development weekly update - 3/1/02
## 101 ETS Asset Development weekly update - 3/1/02
## 102 ETS Asset Development weekly update - 3/1/02
## 103 ETS Asset Development weekly update - 3/1/02
## 104 ETS Asset Development weekly update - 3/1/02
## 105 weekly update 2/15
## 106 weekly update 2/15
## 107 weekly update 2/15
## 108 weekly update 2/15
## 109 Sun Devil update 2/1
## 110 Sun Devil update 2/1
## 111 Weekly update 1/25
## 112 Weekly update 1/25
## 113 Sun Devil Pipeline storage service
## 114 Sun Devil Pipeline storage service
## 115 Sun Devil Pipeline storage service
## 116 Weekly Update 1/4
## 117 Weekly Update 1/4
## 118 weekly update 1/11
## 119 weekly update 1/11
## 120 Response to Proposal issues
## 121 Response to Proposal issues
## 122 Response to Proposal issues
## 123 Response to Proposal issues
## 124 Response to Proposal issues
## 125 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 126 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 127 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 128 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 129 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 130 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 131 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 132 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 133 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 134 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 135 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 136 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 137 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 138 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 139 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 140 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 141 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 142 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 143 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 144 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 145 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 146 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 147 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 148 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 149 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 150 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 151 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 152 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 153 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 154 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 155 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 156 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 157 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 158 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 159 RE: Additional Questions from Eric
## 160 RE: Navajo ROW - Sun Devil
## 161 Sun Devil Project Phoenix terminus
## 162 Sun Devil Project Phoenix terminus
## 163 AZ maps
## 164 Re: Project Sun Devil EIS
## 165 Re: Project Sun Devil EIS
## 166 Re: Project Sun Devil EIS
## 167
## 168 RE: Citizens Flagstaff Interconnect / EES generation
## 169 RE: Citizens Flagstaff Interconnect / EES generation
## 170 RE: Citizens Flagstaff Interconnect / EES generation
## 171 RE: Citizens Flagstaff Interconnect / EES generation
## 172 RE: Citizens Flagstaff Interconnect / EES generation
## 173 RE: Citizens Flagstaff Interconnect / EES generation
## 174 ST Confidentiality Agreement
## 175 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 176 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 177 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 178 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 179 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 180 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 181 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 182 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 183 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 184 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 185 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 186 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 187 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 188 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 189 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 190 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 191 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 192 Re: TW Expansion
## 193 Re: TW Expansion
## 194 Re: TW Expansion
## 195 Re: TW Expansion
## 196 Re: TW Expansion
## 197 Re: TW Expansion
## 198 Re: TW Expansion
## 199 Re: TW Expansion
## 200 Re: TW Expansion
## 201 Re: TW Expansion
## 202 Re: TW Expansion
## 203 Re: TW Expansion
## 204 Re: TW Expansion
## 205 Re: TW Expansion
## 206 Re: TW Expansion
## 207 Re: TW Expansion
## 208 Re: TW Expansion
## 209 Re: TW Expansion
## 210 Re: TW Expansion
## 211 Get Bulington info done
## 212 Get KeyEx list from LL
## 213 What did JF learn from Dave Fuller on Black Mesa / Mojave gen plant and AES?
## 214 follow up with Rick Dietz on Unbound Tech meeting and what Julie Gomez is trying to do with all the pipes
## 215 Did JH Cathey at LStar reschedule meeting
## 216 Follow up w/ Artesia Team on Isler interconnect for Agave
## 217 Did CS get customer list from Koch on potential TW shippers thru their plant?
## 218 Get w/ Lyn Blair on $500k owed us by Plains Farmers Coop - why didn t Credit catch this?
## 219 Check w/ Soldano on El Paso letter response with Stan
## 220 Call Hans at NGPL on other I/C opportunities
## 221 What did Terry G find out from Dave Foti on converting the deal profit program from Netscape to MSN IE?
## 222 TK and CS on Richardson contract ext. and new capacity
## 223 Get w/ Steve on Agave strategy - previous ideas we had worked on for connecting more supply and giving a CAIC
## 224 Review Unbound draft, meet w/ Rick and Terry Lehn
## 225 Caithness, what happened at meeting (JF)
## 226 what is paperwork that has to go out on EOL deal USGT did?
## 227 Did Jim Crump x31533 call?
## 228 Get objectives for M Lokay
## 229 get ep tariff for lou
## 230 Did R Sanders x35587 send FJ letter to Steve?
## 231 Quantify EP volume in $ based on index prices
## 232 Follow up w/ Susan Scott on filing liens on Oasis and let Ted Chavez know for collection of $20k
## 233 Get El Paso demand letter written
## 234 Get w/ Jean McFarland 87-7173 on RDI map set up
## 235 Call Tom Knox at Cobisa on Pueblo and Belen 713-932-8070
## 236 Did Wayne Mays get us an answer for Pueblo?
## 237 Call Jere Bates w/ Tri State
## 238 Check into getting laptop for group
## 239 TW Fuel swap info to Larry Pavlou
## 240 power contact names for JB Smith
## 241 Get w/ Jeff on PGE core visit
## 242 Call Holiday Inn Express on shirt
## 243 call Doug Pedigo 713-374-3945 VP and Assoc Gen l counsel in Intergen No. America
## 244 Call Agave and confirm appt for 3/30
## 245 Call Rex Bigler re: to see if they got exec approval for their storage project
## 246 Get map for TW / NNG project
## 247 Get Benelli catalogs back from Rick Krejci
## 248 Check job web for Bard & Stan
## 249 Deal structures for Pueblo
## 250 Get industrial data base for New Mex to Mark Baldwin
## 251 Call Kent on TK responsibilities
## 252 Call Brad Richter on gen projects in NM, AZ 503-464-3831
## 253 Get w/ Foti on variable costs for east end
## 254 KeyEx stuff w/ Team
## 255 Get w/ Steve re: filling new position and having TK on board
## 256 Talk w/ Christine re: team work
## 257 Call Larry Pavlou on Gallup hedge
## 258 Note to team on interconnect and well connect procedures
## 259 Call Jerry re: CUC selling LDC assets to Navajo
## 260 Call Greer Tidwell at BFS
## 261 Call JB re: incremental 20mm day he could connect to TW
## 262 Call John Allario on SJ storage project
## 263 Call Hawks for Benelli 28"
## 264 GET flow info done for ECS Gallup compressor
## 265 Follow on Agave meeting notes
## 266 Follow up w/ CS on getting CIG firm gas onto TW
## 267 Follow up w/ Lynn Blair on market services cheat sheet
## 268 Did CS get customer list for Koch plant in W TX for potential gas shippers
## 269 Follow up with Ron M on schematic for Koch products line to serve Cannon AFB
## 270 Weekly bullets before 10:00
## 271 Status of WT2 cooler - Ken Chow x36317
## 272 Call Lou Soldano on Oasis Demand letter
## 273 Update project list for Steve
## 274 Glenn Rector
## 275 John Millar
## 276 Technical Support
## 277 Palm III Accessories
## 278 Updated EP2002 NGI.xls
## 279 Updated EP2002 NGI.xls
## 280 Updated EP2002 NGI.xls
## 281 FW: Meeting with Shelley
## 282 FW: CONFIDENTIAL: Enron Sun Devil Term sheet
## 283 RE: Performance Reviews
## 284 Duke Energy update
## 285 CONFIDENTIAL: Enron Sun Devil Term sheet
## 286 CONFIDENTIAL: Enron Sun Devil Term sheet
## 287 CONFIDENTIAL: Enron Sun Devil Term sheet
## 288 RE: Benelli
## 289 RE: Benelli
## 290 RE: I am interested in seeing Global Energy Markets on Esource
## 291 RE: Stranger things have happened...
## 292 Panda Update
## 293 Panda Update
## 294 Panda Update
## 295 RE: Enron Kids Adopt A Child Program
## 296 WSCC Power AZNMNV.xls
## 297 WSCC Power AZNMNV.xls
## 298 WSCC Power AZNMNV.xls
## 299 WSCC Power AZNMNV.xls
## 300 FW: 2002 Opportunities
## 301 RE: Enron Kids Adopt A Child Program
## 302 RE: Enron Kids Adopt A Child Program
## 303 RE: Enron Kids
## 304 RE: Enron Kids Adopt A Child Program
## 305 RE: Re: Enron Kids
## 306 Sun Devil Update no meeting 11/19 or 11/26
## 307 Sun Devil Update no meeting 11/19 or 11/26
## 308 Sun Devil Update no meeting 11/19 or 11/26
## 309 Sun Devil Update no meeting 11/19 or 11/26
## 310 Sun Devil Update no meeting 11/19 or 11/26
## 311 Sun Devil Update no meeting 11/19 or 11/26
## 312 Sun Devil Update no meeting 11/19 or 11/26
## 313 Sun Devil Update no meeting 11/19 or 11/26
## 314 Sun Devil Update no meeting 11/19 or 11/26
## 315 Sun Devil Update no meeting 11/19 or 11/26
## 316 Sun Devil Update no meeting 11/19 or 11/26
## 317 Sun Devil Update no meeting 11/19 or 11/26
## 318 RE: sizes for adopted child
## 319 Benelli
## 320 RE: Vacation time
## 321 RE: Vacation time
## 322 RE: Vacation time
## 323 RE: AN12 PICS
## 324 Revised: FW: Western Capacity Meeting
## 325 Revised: FW: Western Capacity Meeting
## 326 Revised: FW: Western Capacity Meeting
## 327 Revised: FW: Western Capacity Meeting
## 328 Revised: FW: Western Capacity Meeting
## 329 Revised: FW: Western Capacity Meeting
## 330 Revised: FW: Western Capacity Meeting
## 331 Revised: FW: Western Capacity Meeting
## 332 Revised: FW: Western Capacity Meeting
## 333 Revised: FW: Western Capacity Meeting
## 334 FW: Western Capacity Meeting
## 335 FW: Western Capacity Meeting
## 336 Western Capacity Meeting
## 337 Western Capacity Meeting
## 338 Western Capacity Meeting
## 339 Western Capacity Meeting
## 340 Western Capacity Meeting
## 341 Western Capacity Meeting
## 342 Sun Devil to Panda line pressure
## 343 Sun Devil to Panda line pressure
## 344 Sun Devil to Panda line pressure
## 345 Measurement Stds
## 346 RE: Inside Ferc s Pipeline Project Tracker - 2nd request
## 347 Interconnect agrmt
## 348 RE: Contact info
## 349 RE: Contact info
## 350 RE: Confirmation letter for Mike Nelson
## 351 RE: Matching Gift Program
## 352 RE: Matching Gift Program
## 353 RE: Matching Gift Program
## 354 RE: Contact info
## 355 RE: Contact info
## 356 RE: Any luck?
## 357 LNG speaker for NGI
## 358 RE: Contact info
## 359 RE: Contact info
## 360 SFV Rate Design for Sun Devil
## 361 SFV Rate Design for Sun Devil
## 362 SFV Rate Design for Sun Devil
## 363 SFV Rate Design for Sun Devil
## 364 Sun Devil update meeting Monday 11/12 cancelled
## 365 Sun Devil update meeting Monday 11/12 cancelled
## 366 Sun Devil update meeting Monday 11/12 cancelled
## 367 Sun Devil update meeting Monday 11/12 cancelled
## 368 Sun Devil update meeting Monday 11/12 cancelled
## 369 Sun Devil update meeting Monday 11/12 cancelled
## 370 Sun Devil update meeting Monday 11/12 cancelled
## 371 Sun Devil update meeting Monday 11/12 cancelled
## 372 Sun Devil update meeting Monday 11/12 cancelled
## 373 Sun Devil update meeting Monday 11/12 cancelled
## 374 Sun Devil update meeting Monday 11/12 cancelled
## 375 Sun Devil update meeting Monday 11/12 cancelled
## 376 Sun Devil update meeting Monday 11/12 cancelled
## 377 Weekly update 11/9
## 378 Weekly update 11/9
## 379 Electric Power Conference 2002
## 380 FW: Electric Power Conf 2002
## 381 RE: Sun Devil delivery pressure
## 382 FW: Abstract for the Electric Power 2002 Conference
## 383 Sun Devil delivery pressure
## 384 Sun Devil delivery pressure
## 385 Sun Devil delivery pressure
## 386 Sun Devil delivery pressure
## 387 Sun Devil delivery pressure
## 388 Sun Devil delivery pressure
## 389 Monday sign ups for EK
## 390 Monday sign ups for EK
## 391 Sun Devil Fuel
## 392 Sun Devil Fuel
## 393 Sun Devil Fuel
## 394 Sun Devil Fuel
## 395 Sun Devil Fuel
## 396 Sun Devil Fuel
## 397 Sun Devil Fuel
## 398 Sun Devil Fuel
## 399 Sun Devil Fuel
## 400 Sun Devil Fuel
## 401 Sun Devil Fuel
## 402 Sun Devil Fuel
## 403 Sun Devil Fuel
## 404 Sun Devil Fuel
## 405 Sun Devil Fuel
## 406 Sun Devil Fuel
## 407 Sun Devil Fuel
## 408 Sun Devil Fuel
## 409 Sun Devil Fuel
## 410 Sun Devil Fuel
## 411 Sun Devil Fuel
## 412 Sun Devil Fuel
## 413 Sun Devil Fuel
## 414 Sun Devil Fuel
## 415 Sun Devil Fuel
## 416 Sun Devil Fuel
## 417 Sun Devil Fuel
## 418 Sun Devil Fuel
## 419 RE: Enron Kid s Poster
## 420 RE: Houston Visit
## 421 "No excuses for this Enron Board"
## 422 FW: Twas the night before x-mas
## 423 RE: Kern River New Delivery Point Filing
## 424 FW:
## 425 FW: Maximum Hourly Flow
## 426 weekly update 11/2
## 427 weekly update 11/2
## 428 weekly update 11/2
## 429 RE: Maximum Hourly Flow
## 430 RE: Maximum Hourly Flow
## 431 RE: Maximum Hourly Flow
## 432 Copper Eagle.xls
## 433 Copper Eagle.xls
## 434 Copper Eagle.xls
## 435 RE: Digital Model Trains Help Engineers
## 436 Panda Energy
## 437 Panda Energy
## 438 Panda Energy
## 439 RE: Digital Model Trains Help Engineers
## 440 RE: Meeting for 11/6
## 441 RE: Meeting for 11/6
## 442 Meeting for 11/6
## 443 Meeting for 11/6
## 444 Meeting for 11/6
## 445 RE: Electric Pwr Conf - Natural Gas Infrastructure Committee
## 446 RE: Electric Pwr Conf - Natural Gas Infrastructure Committee
## 447 RE: Electric Pwr Conf - Natural Gas Infrastructure Committee
## 448 remove kevin.hyatt@enron.com
## 449 remove kevin.hyatt@enron.com
## 450 RE: Kern River New Delivery Point Filing
## 451 Sun Devil Talking Points for Albuquerque
## 452 Sun Devil Talking Points for Albuquerque
## 453 weekly update 10/26
## 454 weekly update 10/26
## 455 NGI committee speaker
## 456 Canceled: Lunch w/ Jules
## 457 Canceled: Lunch w/ Jules
## 458 Canceled: Lunch w/ Jules
## 459 KPMG
## 460 Conference speaker confirmed
## 461 GE Presenter for NGI subcommittee
## 462 FW: Message from a Hawg Driver (A-10 Warthog)
## 463 FW: Message from a Hawg Driver (A-10 Warthog)
## 464 FW: Message from a Hawg Driver (A-10 Warthog)
## 465 FW: Message from a Hawg Driver (A-10 Warthog)
## 466 FW: Message from a Hawg Driver (A-10 Warthog)
## 467 FW: Message from a Hawg Driver (A-10 Warthog)
## 468 FW: Message from a Hawg Driver (A-10 Warthog)
## 469 FW: Message from a Hawg Driver (A-10 Warthog)
## 470 FW: Message from a Hawg Driver (A-10 Warthog)
## 471 RE: El Paso comments
## 472 spinal injuries
## 473 RE: UBS PAINEWEBBER - APPOINTMENT W/ MICHAEL GAPINKSI on 10/26 @ 8:00 a.m.
## 474 RE: UBS PAINEWEBBER - APPOINTMENT W/ MICHAEL GAPINKSI on 10/26 @ 8:00 a.m.
## 475 RE: Sun Devil Weekly Meeting
## 476 RE: wrong number
## 477 RE: wrong number
## 478 RE: wrong number
## 479 RE: EIA Announcement
## 480 FW: Gas Indices
## 481 FW: Gas Indices
## 482 RE: Foust Family News
## 483 thank you
## 484 RE: Oasis Dairy Farms Judgement - update
## 485 RE: Oasis Dairy Farms Judgement - update
## 486 RE: Oasis Dairy Farms Judgement - update
## 487 RE: Foust Family News
## 488 RE: Ireland vs Iran
## 489 Irish humor
## 490 REMOVE
## 491 Whistler 1560
## 492 FW: Hunting 10/27 - 28
## 493 Hunting 10/27 - 28
## 494 RE: Proposed EG Projects.xls
## 495 RE: CA Capacity Report
## 496 REMOVE kevin.hyatt@enron.com
## 497 Electric Pwr Conf - Natural Gas Infrastructure Committee
## 498 Electric Pwr Conf - Natural Gas Infrastructure Committee
## 499 Electric Pwr Conf - Natural Gas Infrastructure Committee
## 500 RE: Proposed EG Projects.xls
## 501 RE: Oasis Dairy Farms Judgement
## 502 RE: Oasis Dairy Farms Judgement
## 503 RE: Oasis Dairy Farms Judgement
## 504 RE: Fax Machine - REVISED
## 505 RE: Fax Machine - REVISED
## 506 RE: Fax Machine - REVISED
## 507 Directions to TW Monhahans ofc
## 508 FW: El Paso Capacity Allocation
## 509 RE: El Paso Capacity Allocation
## 510 TW resignations
## 511 RE: test message
## 512 RE: El Paso Full Requirements Customers
## 513 RE: El Paso Full Requirements Customers
## 514 RE: El Paso Full Requirements Customers
## 515 RE: El Paso Full Requirements Customers
## 516 RE: El Paso Full Requirements Customers
## 517 RE: Camping
## 518 RE: Camping
## 519 RE: Updating your information in the HR site
## 520 SD Volumes.xls
## 521 SD Volumes.xls
## 522 SD Volumes.xls
## 523 RE: Day of Vacation
## 524 Monahans meeting
## 525 Enron web sites
## 526 RE: Look at this and see if you think it might be worthwhile.
## 527 FW: Presentation, discussion on El Paso FR vs. CD
## 528 RE: Quote for Maud Gordon
## 529 Monahans / Gomez lateral field trip
## 530 Monahans / Gomez lateral field trip
## 531 Monahans / Gomez lateral field trip
## 532 RE: FW: Sad News About Beer
## 533 RE: FW: Sad News About Beer
## 534 FW: Sad News About Beer
## 535 FW: The Well Mannered Arkansan
## 536 RE: AGAVE ENERGY COMPANY
## 537 RE: AGAVE ENERGY COMPANY
## 538 St. Louis Itinerary
## 539 FW: AGAVE ENERGY COMPANY
## 540 RE: Sun Devil presentation
## 541 FW: An Inbound Message For You Has Been Quarantined
## 542 FW: Accounting Controls & Procedures Group
## 543 RE: Telephone Number
## 544 Firm Rec/Del questions from potential Aquila Red Lake shippers
## 545 Firm Rec/Del questions from potential Aquila Red Lake shippers
## 546 Firm Rec/Del questions from potential Aquila Red Lake shippers
## 547 Firm Rec/Del questions from potential Aquila Red Lake shippers
## 548 Firm Rec/Del questions from potential Aquila Red Lake shippers
## 549 Firm Rec/Del questions from potential Aquila Red Lake shippers
## 550 Firm Rec/Del questions from potential Aquila Red Lake shippers
## 551 Firm Rec/Del questions from potential Aquila Red Lake shippers
## 552 Sun Devil project costs
## 553 Sun Devil project costs
## 554 Sun Devil project costs
## 555 Sun Devil project costs
## 556 Sun Devil project costs
## 557 ORMAT
## 558 Hyatt bio
## 559 RE: Kern River deal
## 560 RE: Kern River deal
## 561 RE: New TW POI contact persons
## 562 RE: NMPRC Proposed Renewable Energy Rule
## 563 RE: NMPRC Proposed Renewable Energy Rule
## 564 RE: NMPRC Proposed Renewable Energy Rule
## 565 RE: NMPRC Proposed Renewable Energy Rule
## 566 RE: NMPRC Proposed Renewable Energy Rule
## 567 RE: NMPRC Proposed Renewable Energy Rule
## 568 RE: New TW POI contact persons
## 569 Follow up from Red Lake meeting
## 570 Follow up from Red Lake meeting
## 571 Follow up from Red Lake meeting
## 572 Follow up from Red Lake meeting
## 573 TW Field Meeting
## 574 FW: Info
## 575 RE: Panda CA
## 576 RE: Re: CA - TW
## 577 RE: Re: CA - TW
## 578 RE: Re: CA - TW
## 579 you can appreciate this
## 580 RE: REORIENTATION
## 581 FW: Sun Devil Cost Recovery Model
## 582 FW: Transwestern Sun Devil Project
## 583 FW: Red Lake Storage w/Kevin Hyatt
## 584 RE: Re: CA - TW
## 585 root canal
## 586 root canal
## 587 FW: New Uniforms for the other Big Red
## 588 FW: New Uniforms for the other Big Red
## 589 meet w/ David Rosenberg
## 590 meet w/ David Rosenberg
## 591 meet w/ David Rosenberg
## 592 Confidentiality Agrmt and SFV Rate design
## 593 TW Sun Devil Project
## 594 RE:
## 595 RE:
## 596 Red Lake Storage project
## 597 Red Lake Storage project
## 598 Red Lake Storage project
## 599 Red Lake Storage project
## 600 Red Lake Storage project
## 601 Red Lake Storage project
## 602 Red Lake Storage project
## 603 Red Lake Storage project
## 604 Red Lake Storage project
## 605 Red Lake Storage project
## 606 RE: Potential sale of Gomez lateral pipe
## 607 Aquila Red Lake storage project
## 608 Aquila Red Lake storage project
## 609 Aquila Red Lake storage project
## 610 Aquila Red Lake storage project
## 611 Aquila Red Lake storage project
## 612 Aquila Red Lake storage project
## 613 check this out
## 614 RE: ACC approval
## 615 RE: eTicket Receipt
## 616 FW: ETS Asset Development weekly update - 3/1/02
## 617 RE: Electric Power Conference 2002 - St. Louis
## 618 RE: Electric Power Conference 2002 - St. Louis
## 619 SD 750 case w/ Red Hawk lateral
## 620 RE: Sun Devil Expansion
## 621 RE: Sun Devil Expansion
## 622 FW: Sun Devil
## 623 RE: Please review
## 624 RE: RDI access
## 625 conf call w/ PWE to discuss latest proposal
## 626 FW: Electric Power Conference 2002
## 627 RSVP for EP dinner
## 628 Electric Power Conference 2002
## 629 Electric Power Conference 2002
## 630 Electric Power Conference 2002
## 631 RE: Potential sale of Gomez lateral pipe
## 632 FW: Potential sale of Gomez lateral pipe
## 633 RE: TW lateral pipe sale
## 634 RE: Sun Devil - Pinnacle West term sheet
## 635 RE: TW lateral pipe sale
## 636 RE: Lunch
## 637 RE: Lunch
## 638 RE: RDI Subscription
## 639 RE: RDI Subscription
## 640 RE: Lunch
## 641 Cong Agrmt
## 642 RE: Lunch
## 643 RE: reminder
## 644 RE: Nine months later
## 645 RE: windows help
## 646 El Paso Full requirements shippers
## 647 El Paso Full requirements shippers
## 648 RE: NYTimes.com Article: Enron Executive Said to Be Aiding in Federal Inquiry
## 649 RE: RDI Subscription
## 650 FW: RDI Subscription
## 651 West market contacts on TW
## 652 FW: Generic model.
## 653 windows help
## 654 RE: Fw: From EnronX.org: IMPORTANT MEETING
## 655 Pioneer Gas Pipeline
## 656 US Trustee
## 657 RE: Location Number
## 658 RE: Location Number
## 659 RE: Location Number
## 660 RE: Location Number
## 661 RE: Location Number
## 662 RE: Location Number
## 663 RE: Location Number
## 664 RE: NPR interview
## 665 RE: NPR interview
## 666 RE: NPR interview
## 667 RE: light speed
## 668 contract file
## 669 RE: Location Number
## 670 RE: Location Number
## 671 RE: Location Number
## 672 light speed
## 673 RE: FW: Media Coverage of Enron
## 674 RE: Sun Devil Btu Content
## 675 RE: Sun Devil backhaul rate to Phoenix
## 676 Sun Devil backhaul rate to Phoenix
## 677 Sun Devil backhaul rate to Phoenix
## 678 Sun Devil backhaul rate to Phoenix
## 679 Sun Devil meeting
## 680 Sun Devil meeting
## 681 Sun Devil meeting
## 682 Sun Devil meeting
## 683 Sun Devil meeting
## 684 Sun Devil meeting
## 685 Sun Devil meeting
## 686 Sun Devil meeting
## 687 Sun Devil meeting
## 688 Sun Devil meeting
## 689 Sun Devil meeting
## 690 Sun Devil meeting
## 691 Sun Devil meeting
## 692 Sun Devil meeting
## 693 Sun Devil meeting
## 694 RE: NBP Position
## 695 abc
## 696 MMBtu content
## 697 MMBtu content
## 698 RE: Location Number
## 699 RE: Location Number
## 700 FW: Article
## 701 FW: weekly update 2/15
## 702 FW: Article on Sonoran Project
## 703 Lunch w/ Phil Allard, Pioneer Gas Pipeline
## 704 RE: TW lateral pipe sale
## 705 Contract POI s
## 706 RE: Well I won t need a seeing eye dog
## 707 FW: Gomez lateral
## 708 FW: Gomez lateral
## 709 Gomez lateral
## 710 TW lateral pipe sale
## 711 RE: Pinnacle West
## 712 Hey
## 713 San Juan supply.xls
## 714 RE: Eric s tasks for San Juan
## 715 RE: Your vacation day
## 716 RE: How is life
## 717 FW: Maud Gordon Elementary Sound
## 718 SD 750 case.XLS
## 719 RE: Snowmobiles.
## 720 RE: FW: Viagra Contest
## 721 FW: Maud Gordon Elementary Sound
## 722 Transwestern Credit Issue
## 723 Transwestern Credit Issue
## 724 Transwestern Credit Issue
## 725 RE: TW Credit Rating
## 726 TW Credit Rating
## 727 RE: Color Printer
## 728 TW Sun Devil open season
## 729 Arizona Public Service & Sun Devil
## 730 Arizona Public Service & Sun Devil
## 731 Arizona Public Service & Sun Devil
## 732 RE: Hello
## 733 RE: Breakfast with Panda energy?
## 734 you doing OK?
## 735 RE: Hello
## 736 RE: Breakfast with Panda energy?
## 737 RE: Breakfast with Panda energy?
## 738 RE: Breakfast with Panda energy?
## 739 Breakfast with Panda energy?
## 740 Az Public Service update on Sun Devil
## 741 vacation day
## 742 vacation day
## 743 RE: FW: Bonus List
## 744 One good joke deserves another
## 745 RE: Updated: Meet w/ Jim Adams (Panda) & Bob Adrian (TECO)
## 746 FW: Viagra Contest
## 747 FW: Viagra Contest
## 748 FW: Viagra Contest
## 749 FW: Viagra Contest
## 750 FW: Viagra Contest
## 751 FW: Viagra Contest
## 752 FW: Viagra Contest
## 753 FW: Viagra Contest
## 754 FW: Viagra Contest
## 755 FW: Viagra Contest
## 756 FW: Viagra Contest
## 757 FW: Viagra Contest
## 758 FW: Viagra Contest
## 759 FW: Viagra Contest
## 760 FW: Viagra Contest
## 761 FW: Viagra Contest
## 762 Updated: Meet w/ Jim Adams (Panda) & Bob Adrian (TECO)
## 763 Updated: Meet w/ Jim Adams (Panda) & Bob Adrian (TECO)
## 764 Updated: Meet w/ Jim Adams (Panda) & Bob Adrian (TECO)
## 765 Updated: Meet w/ Jim Adams (Panda) & Bob Adrian (TECO)
## 766 Updated: Meet w/ Jim Adams (Panda) & Bob Adrian (TECO)
## 767 FW: ANNUAL NORTH AMERICAN SUPPLY MOVEMENT
## 768 FW: Sun Devil Pipeline - open season
## 769 FW: E-LOAN HAS APPROVED YOUR AUTO LOAN
## 770 accident attorneys
## 771 RE: SD model
## 772 SD model
## 773 lunch Friday
## 774 Sun Devil meeting today cancelled
## 775 Sun Devil meeting today cancelled
## 776 Sun Devil meeting today cancelled
## 777 Sun Devil meeting today cancelled
## 778 Sun Devil meeting today cancelled
## 779 Sun Devil meeting today cancelled
## 780 Sun Devil meeting today cancelled
## 781 Sun Devil meeting today cancelled
## 782 Sun Devil meeting today cancelled
## 783 Sun Devil meeting today cancelled
## 784 Sun Devil meeting today cancelled
## 785 Meet w/ Jim Adams (Panda) & Bob Adrian (TECO)
## 786 Revised Sun Devil term sheet
## 787 revised Panda term sheet
## 788 Kids
## 789 RE: FW: Enron Employees Leaving Houston...
## 790 RE: Sun Devil
## 791 Sun Devil Pipeline
## 792 meet w/ E Gadd on new Sun Devil case economics
## 793 meet w/ E Gadd on new Sun Devil case economics
## 794 meet w/ E Gadd on new Sun Devil case economics
## 795 Aquila Storage
## 796 Aquila Storage
## 797 Aquila Storage
## 798 Aquila Storage
## 799 Aquila Storage
## 800 Aquila Storage
## 801 Sun Devil
## 802 RE: TW project information
## 803 FW: A Women s Primer on Men
## 804 FW: General Announcement
## 805 FW: Sun Devil Weekly update 1/25
## 806 FASB
## 807 SD Mgmt update2 Dec-01.ppt
## 808 SD Mgmt update2 Dec-01.ppt
## 809 SD Mgmt update2 Dec-01.ppt
## 810 FW: Message from Ken Lay
## 811 RE: Request
## 812 Parking Reimbursement
## 813 another new western gas storage project
## 814 FERC application cost for Sun Devil
## 815 FERC application cost for Sun Devil
## 816 FERC application cost for Sun Devil
## 817 FW: Your help is greatly appreciated in getting the word out
## 818 storage for 2000 Ford Expedition
## 819 FW: thank you letter
## 820 Lunch TK / KH west end storage
## 821 FW: 2002 Dodge Ram 1500 Quad Cab SLT 4x2 Swb
## 822 RE: Houston Visit
## 823 weekly Sun Devil update meeting
## 824 weekly Sun Devil update meeting
## 825 weekly Sun Devil update meeting
## 826 weekly Sun Devil update meeting
## 827 weekly Sun Devil update meeting
## 828 weekly Sun Devil update meeting
## 829 weekly Sun Devil update meeting
## 830 weekly Sun Devil update meeting
## 831 weekly Sun Devil update meeting
## 832 weekly Sun Devil update meeting
## 833 weekly Sun Devil update meeting
## 834 weekly Sun Devil update meeting
## 835 weekly Sun Devil update meeting
## 836 weekly Sun Devil update meeting
## 837 weekly Sun Devil update meeting
## 838 weekly Sun Devil update meeting
## 839 FW: Good Trade
## 840 RE: thank you letter
## 841 thank you letter
## 842 thank you letter
## 843 RE: Michelle s poem....
## 844 FW: XTM Outlaw truck
## 845 XTM Outlaw truck
## 846 Firm Park N Ride service on TW
## 847 Firm Park N Ride service on TW
## 848 Firm Park N Ride service on TW
## 849 Firm Park N Ride service on TW
## 850 Firm Park N Ride service on TW
## 851 Firm Park N Ride service on TW
## 852 Firm Park N Ride service on TW
## 853 Firm Park N Ride service on TW
## 854 Sun Devil levelized accounting and FASB
## 855 Sun Devil levelized accounting and FASB
## 856 Sun Devil levelized accounting and FASB
## 857 Sun Devil levelized accounting and FASB
## 858 Sun Devil levelized accounting and FASB
## 859 Sun Devil levelized accounting and FASB
## 860 RE: 1/15 - 15C1 from 1 to 2 is reserved for you.
## 861 Sun Devil update moved to tues 1/15
## 862 Sun Devil update moved to tues 1/15
## 863 Sun Devil update moved to tues 1/15
## 864 Sun Devil update moved to tues 1/15
## 865 Sun Devil update moved to tues 1/15
## 866 Sun Devil update moved to tues 1/15
## 867 Sun Devil update moved to tues 1/15
## 868 Sun Devil update moved to tues 1/15
## 869 Sun Devil update moved to tues 1/15
## 870 Sun Devil update moved to tues 1/15
## 871 Sun Devil update moved to tues 1/15
## 872 Sun Devil update moved to tues 1/15
## 873 FW: Need your Help!
## 874 FW: Needles Golf Tournament
## 875 FW: How d you do hunting Sun.?
## 876 hunting Fri
## 877 How d you do hunting Sun.?
## 878 How d you do hunting Sun.?
## 879 How d you do hunting Sun.?
## 880 Enron On-Line Trading - new name
## 881 Gordon sound system
## 882 Pipeline 30 Years
## 883 Pipeline 20 Years
## 884 Mew Ranch
## 885 CPUC & SoCal fiber optics
## 886 SD Meet w/ Stan
## 887 RE: Resume
## 888 RE: Enron Kids
## 889 FW: News release - HISD
## 890 FW: Gordon Elementary School
## 891 FW: Jump Start Your Energy Career
## 892 Enron Kids
## 893 RE: NYTimes.com Article: B.C.S. Formula Works Just Fine
## 894 FW: Sun Devil Pipeline L.P.1.ppt
## 895 FW: Friends LOL
## 896 RE: Enron Kids
## 897 duck hunting
## 898 RE: Enron Kids
## 899 FW: Fw: pet peeves
## 900 RE: Sponsor Child
## 901 RE: Electric Pwr Conf - Natural Gas Infrastructure Committee
## 902 RE: Electric Pwr Conf - Natural Gas Infrastructure Committee
## 903 postponed Sun Devil update for Monday 10/29
## 904 postponed Sun Devil update for Monday 10/29
## 905 postponed Sun Devil update for Monday 10/29
## 906 postponed Sun Devil update for Monday 10/29
## 907 postponed Sun Devil update for Monday 10/29
## 908 postponed Sun Devil update for Monday 10/29
## 909 postponed Sun Devil update for Monday 10/29
## 910 postponed Sun Devil update for Monday 10/29
## 911 postponed Sun Devil update for Monday 10/29
## 912 postponed Sun Devil update for Monday 10/29
## 913 postponed Sun Devil update for Monday 10/29
## 914 postponed Sun Devil update for Monday 10/29
## 915 postponed Sun Devil update for Monday 10/29
## 916 postponed Sun Devil update for Monday 10/29
## 917 RE: NGI committee speaker
## 918 RE: NGI committee speaker
## 919 RE: LNG discussion
## 920 RE: LNG discussion
## 921 REMOVE
## 922 RE: Review and approve Kevin Hyatt travel for 6NOV01
## 923 FW: Sun Devil MOU Draft1
## 924 Denver trip
## 925 RE: Congrats on the win
## 926 RE: EK Poster Info
## 927 RE: Inside FERC s Pipeline Project Tracker
## 928 Re: Sun Devil - Helicopter Fly-Over of Routes
## 929 Re: Sun Devil - Helicopter Fly-Over of Routes
## 930 Re: Sun Devil - Helicopter Fly-Over of Routes
## 931 Re: Sun Devil - Helicopter Fly-Over of Routes
## 932 Re: Sun Devil - Helicopter Fly-Over of Routes
## 933 Re: Sun Devil - Helicopter Fly-Over of Routes
## 934 Re: Sun Devil - Helicopter Fly-Over of Routes
## 935 Re: Sun Devil - Helicopter Fly-Over of Routes
## 936 Re: Sun Devil - Helicopter Fly-Over of Routes
## 937 Re: Sun Devil - Helicopter Fly-Over of Routes
## 938 Re: Sun Devil - Helicopter Fly-Over of Routes
## 939 Re: Sun Devil - Helicopter Fly-Over of Routes
## 940 Re: Sun Devil - Helicopter Fly-Over of Routes
## 941 Re: Sun Devil - Helicopter Fly-Over of Routes
## 942 Re: Sun Devil - Helicopter Fly-Over of Routes
## 943 Re: Sun Devil - Helicopter Fly-Over of Routes
## 944 Re: Sun Devil - Helicopter Fly-Over of Routes
## 945 Re: Sun Devil - Helicopter Fly-Over of Routes
## 946 Re: Sun Devil - Helicopter Fly-Over of Routes
## 947 RE: Red Lake Storage project
## 948 RE: weekly update 2/15
## 949 RE: weekly update 2/15
## 950 RE: Article
## 951 RE: Article
## 952 no snow
## 953 Brasch phone number
## 954 FW: Link to Sherron Watkins letter
## 955 Hi Tom
## 956 Bonus present
## 957 RE: steve s contact #
## 958 RE: Lunch TK / KH west end storage
## 959 FW: thank you letter
## 960 FW: thank you letter
## 961 FW: thank you letter
## 962 FW: thank you letter
## 963 FW: thank you letter
## 964 FW: thank you letter
## 965 FW: thank you letter
## 966 FW: thank you letter
## 967 FW: thank you letter
## 968 FW: thank you letter
## 969 FW: thank you letter
## 970 FW: thank you letter
## 971 FW: thank you letter
## 972 FW: XTM Outlaw truck
## 973 RE: Needles Golf Tournament
## 974 RE: Needles Golf Tournament
## 975 RE: Needles Golf Tournament
## 976 RE: Needles Golf Tournament
## 977 RE: Needles Golf Tournament
## 978 TW fuel value at risk
## 979 Sun Devil Update moved to Tues 3:30 pm 15c1
## 980 Sun Devil Update moved to Tues 3:30 pm 15c1
## 981 Sun Devil Update moved to Tues 3:30 pm 15c1
## 982 Sun Devil Update moved to Tues 3:30 pm 15c1
## 983 Sun Devil Update moved to Tues 3:30 pm 15c1
## 984 Sun Devil Update moved to Tues 3:30 pm 15c1
## 985 Sun Devil Update moved to Tues 3:30 pm 15c1
## 986 Sun Devil Update moved to Tues 3:30 pm 15c1
## 987 Sun Devil Update moved to Tues 3:30 pm 15c1
## 988 Sun Devil Update moved to Tues 3:30 pm 15c1
## 989 Sun Devil Update moved to Tues 3:30 pm 15c1
## 990 Sun Devil Update moved to Tues 3:30 pm 15c1
## 991 Sun Devil Update moved to Tues 3:30 pm 15c1
## 992 Sun Devil Update moved to Tues 3:30 pm 15c1
## 993 FW: Fw: r-rated
## 994 FW: Excel Communications
## 995 meeting Wed pm
## 996 Agenda for meeting on Thursday with Tom Carlson
## 997 RE: Sun Devil conf call at 9:00 am Friday 01-11
## 998 RE: Resume for David Junus
## 999 FW: Fw: one liners
## 1000 FW: Fw: one liners
## 1001 FW: Fw: one liners
## 1002 FW: Fw: one liners
## 1003 FW: Fw: one liners
## 1004 FW: Fw: one liners
## 1005 FW: Fw: one liners
## 1006 FW: Money
## 1007 FW: Stock pick fo you
## 1008 RE: You are Invited to an Open Season Reception for Desert Crossing Gas Storage and Transportation System
## 1009 Revised: Map to Gordon Elementary
## 1010 Enron Kids Article
## 1011 Revised- Confidential: Phoenix, AZ gas market research study
## 1012 Automating Negotiated Rates for Invoice Purposes
## 1013 Automating Negotiated Rates for Invoice Purposes
## 1014 Automating Negotiated Rates for Invoice Purposes
## 1015 Automating Negotiated Rates for Invoice Purposes
## 1016 Automating Negotiated Rates for Invoice Purposes
## 1017 Automating Negotiated Rates for Invoice Purposes
## 1018 Automating Negotiated Rates for Invoice Purposes
## 1019 Automating Negotiated Rates for Invoice Purposes
## 1020 Automating Negotiated Rates for Invoice Purposes
## 1021 Automating Negotiated Rates for Invoice Purposes
## 1022 Automating Negotiated Rates for Invoice Purposes
## 1023 Automating Negotiated Rates for Invoice Purposes
## 1024 Automating Negotiated Rates for Invoice Purposes
## 1025 Automating Negotiated Rates for Invoice Purposes
## 1026 Automating Negotiated Rates for Invoice Purposes
## 1027 Automating Negotiated Rates for Invoice Purposes
## 1028 Automating Negotiated Rates for Invoice Purposes
## 1029 Automating Negotiated Rates for Invoice Purposes
## 1030 Automating Negotiated Rates for Invoice Purposes
## 1031 follow up w/ Donna Wiese @ Pearl Street on storage council
## 1032 Don t forget to register!
## 1033 Lonestar
## 1034 Call Don Mauldin @ Devon 405-228-4407
## 1035 CA Supply Realities
## 1036 CA Supply Realities
## 1037 CA Supply Realities
## 1038 CA Supply Realities
## 1039 RE: Franachi Order
## 1040 Nissan Maxima for sale
## 1041 NW Transmission
## 1042 NW Transmission
## 1043 NW Transmission
## 1044 NW Transmission
## 1045 NW Transmission
## 1046 Re: APPLICATION FOR MBR PURCHASES FROM Industrials
## 1047 Re: APPLICATION FOR MBR PURCHASES FROM Industrials
## 1048 Re: APPLICATION FOR MBR PURCHASES FROM Industrials
## 1049 Re: APPLICATION FOR MBR PURCHASES FROM Industrials
## 1050 Re: APPLICATION FOR MBR PURCHASES FROM Industrials
## 1051 Re: APPLICATION FOR MBR PURCHASES FROM Industrials
## 1052 Re: APPLICATION FOR MBR PURCHASES FROM Industrials
## 1053 Re: APPLICATION FOR MBR PURCHASES FROM Industrials
## 1054 Re: APPLICATION FOR MBR PURCHASES FROM Industrials
## 1055 Re: APPLICATION FOR MBR PURCHASES FROM Industrials
## 1056 Re: APPLICATION FOR MBR PURCHASES FROM Industrials
## 1057 RE: WSPP 4th Quarter 2000 Report
## 1058 RE: WSPP 4th Quarter 2000 Report
## 1059 RE: WSPP 4th Quarter 2000 Report
## 1060 RE: WSPP 4th Quarter 2000 Report
## 1061 RE: WSPP 4th Quarter 2000 Report
## 1062 Re: FERC and DOE 4th Quarter Reports
## 1063 Re: FERC and DOE 4th Quarter Reports
## 1064 Re: FERC and DOE 4th Quarter Reports
## 1065 Re: FERC and DOE 4th Quarter Reports
## 1066 Re: FERC and DOE 4th Quarter Reports
## 1067 Re: FERC and DOE 4th Quarter Reports
## 1068 Re: FERC and DOE 4th Quarter Reports
## 1069 Re: FERC and DOE 4th Quarter Reports
## 1070 Re: FERC and DOE 4th Quarter Reports
## 1071 Re: FERC and DOE 4th Quarter Reports
## 1072 Re: FERC and DOE 4th Quarter Reports
## 1073 Re: FERC and DOE 4th Quarter Reports
## 1074 Re: FERC and DOE 4th Quarter Reports
## 1075 Re: FERC and DOE 4th Quarter Reports
## 1076 Re: FERC and DOE 4th Quarter Reports
## 1077 Re: FERC and DOE 4th Quarter Reports
## 1078 Re: FERC and DOE 4th Quarter Reports
## 1079 Re: FERC and DOE 4th Quarter Reports
## 1080 Re: RTO Advocacy Positions
## 1081 Re: RTO Advocacy Positions
## 1082 Re: RTO Advocacy Positions
## 1083 Re: RTO Advocacy Positions
## 1084 Re: RTO Advocacy Positions
## 1085 Re: RTO Advocacy Positions
## 1086 Re: RTO Advocacy Positions
## 1087 Re: RTO Advocacy Positions
## 1088 Re: RTO Advocacy Positions
## 1089 Re: RTO Advocacy Positions
## 1090 Re: RTO Advocacy Positions
## 1091 Re: RTO Advocacy Positions
## 1092 Re: RTO Advocacy Positions
## 1093 Re: RTO Advocacy Positions
## 1094 Re: RTO Advocacy Positions
## 1095 OASIS Transmission Providers - West
## 1096 APS and Enron
## 1097 APS and Enron
## 1098 APS and Enron
## 1099 APS and Enron
## 1100 APS and Enron
## 1101 APS and Enron
## 1102 APS and Enron
## 1103 APS and Enron
## 1104 APS and Enron
## 1105 APS and Enron
## 1106 Foster OASIS - Provider list
## 1107 FYI_____ISO announces Market Stabilization Proposal
## 1108 FYI_____ISO announces Market Stabilization Proposal
## 1109 FYI_____ISO announces Market Stabilization Proposal
## 1110 FYI_____ISO announces Market Stabilization Proposal
## 1111 FYI_____ISO announces Market Stabilization Proposal
## 1112 FYI_____ISO announces Market Stabilization Proposal
## 1113 FYI_____ISO announces Market Stabilization Proposal
## 1114 FYI_____ISO announces Market Stabilization Proposal
## 1115 FYI_____ISO announces Market Stabilization Proposal
## 1116 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 1117 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 1118 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 1119 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 1120 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 1121 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 1122 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 1123 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 1124 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 1125 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 1126 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 1127 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 1128 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 1129 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 1130 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 1131 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 1132 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 1133 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 1134 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 1135 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 1136 Re: Fwd: California - March 9 Order Addressing Refunds for Jan.\t2001 Sales
## 1137
## 1138 Re: FERC Order and DWR
## 1139 Enron Activity At FERC RE California Issues
## 1140 Enron Activity At FERC RE California Issues
## 1141 Enron Activity At FERC RE California Issues
## 1142 Enron Activity At FERC RE California Issues
## 1143 Enron Activity At FERC RE California Issues
## 1144 Enron Activity At FERC RE California Issues
## 1145 Enron Activity At FERC RE California Issues
## 1146 Enron Activity At FERC RE California Issues
## 1147 Enron Activity At FERC RE California Issues
## 1148 Enron Activity At FERC RE California Issues
## 1149 Enron Activity At FERC RE California Issues
## 1150 Enron Activity At FERC RE California Issues
## 1151 WACM Transmission Losses
## 1152 Status of California Cases
## 1153 Status of California Cases
## 1154 Status of California Cases
## 1155 Status of California Cases
## 1156 Status of California Cases
## 1157 Re: PGE RFP
## 1158 Weekly Electric FERC Report
## 1159 Weekly Electric FERC Report
## 1160 Weekly Electric FERC Report
## 1161 Weekly Electric FERC Report
## 1162 Weekly Electric FERC Report
## 1163 Re: FERC Jurisdiction Over California Investigations
## 1164 Senators Dianne Feinstein and Gordon Smith Announce Partnership in Response to the Western Energy Crisis
## 1165 Senators Dianne Feinstein and Gordon Smith Announce Partnership in Response to the Western Energy Crisis
## 1166 Senators Dianne Feinstein and Gordon Smith Announce Partnership in Response to the Western Energy Crisis
## 1167 Senators Dianne Feinstein and Gordon Smith Announce Partnership in Response to the Western Energy Crisis
## 1168 Senators Dianne Feinstein and Gordon Smith Announce Partnership in Response to the Western Energy Crisis
## 1169 Senators Dianne Feinstein and Gordon Smith Announce Partnership in Response to the Western Energy Crisis
## 1170 Project Requires RCR
## 1171 Project Requires RCR
## 1172 Project Requires RCR
## 1173 Confirming What We Already Knew
## 1174 Confirming What We Already Knew
## 1175 Confirming What We Already Knew
## 1176 Confirming What We Already Knew
## 1177 Confirming What We Already Knew
## 1178 Confirming What We Already Knew
## 1179 Confirming What We Already Knew
## 1180 Confirming What We Already Knew
## 1181 Confirming What We Already Knew
## 1182 Confirming What We Already Knew
## 1183 Confirming What We Already Knew
## 1184 Confirming What We Already Knew
## 1185 Confirming What We Already Knew
## 1186 Confirming What We Already Knew
## 1187 Confirming What We Already Knew
## 1188 Confirming What We Already Knew
## 1189 IEP FERC/ISO: Draft IEP FERC Cmts on Staff Report
## 1190 IEP FERC/ISO: Draft IEP FERC Cmts on Staff Report
## 1191 IEP FERC/ISO: Draft IEP FERC Cmts on Staff Report
## 1192 IEP FERC/ISO: Draft IEP FERC Cmts on Staff Report
## 1193 IEP FERC/ISO: Draft IEP FERC Cmts on Staff Report
## 1194 IEP FERC/ISO: Draft IEP FERC Cmts on Staff Report
## 1195 IEP FERC/ISO: Draft IEP FERC Cmts on Staff Report
## 1196 IEP FERC/ISO: Draft IEP FERC Cmts on Staff Report
## 1197 IEP FERC/ISO: Draft IEP FERC Cmts on Staff Report
## 1198 IEP FERC/ISO: Draft IEP FERC Cmts on Staff Report
## 1199 Ridgewood s Petition To Be Released From QF Contracts
## 1200 Ridgewood s Petition To Be Released From QF Contracts
## 1201 Ridgewood s Petition To Be Released From QF Contracts
## 1202 Ridgewood s Petition To Be Released From QF Contracts
## 1203 Ridgewood s Petition To Be Released From QF Contracts
## 1204 Ridgewood s Petition To Be Released From QF Contracts
## 1205 Ridgewood s Petition To Be Released From QF Contracts
## 1206 Ridgewood s Petition To Be Released From QF Contracts
## 1207 Ridgewood s Petition To Be Released From QF Contracts
## 1208 Re: Emergency Motion of City of San Diego
## 1209 Re: Emergency Motion of City of San Diego
## 1210 Re: Emergency Motion of City of San Diego
## 1211 Re: Emergency Motion of City of San Diego
## 1212 Re: Emergency Motion of City of San Diego
## 1213 Re: Emergency Motion of City of San Diego
## 1214 Re: Emergency Motion of City of San Diego
## 1215 Re: Emergency Motion of City of San Diego
## 1216 Re: Emergency Motion of City of San Diego
## 1217 Re: Emergency Motion of City of San Diego
## 1218 Re: Emergency Motion of City of San Diego
## 1219 Re: Emergency Motion of City of San Diego
## 1220 Re: Emergency Motion of City of San Diego
## 1221 Re: Emergency Motion of City of San Diego
## 1222 Re: Emergency Motion of City of San Diego
## 1223 Re: Emergency Motion of City of San Diego
## 1224 Re: Emergency Motion of City of San Diego
## 1225 Re: Emergency Motion of City of San Diego
## 1226 Re: Emergency Motion of City of San Diego
## 1227 Re: Emergency Motion of City of San Diego
## 1228 Re: Emergency Motion of City of San Diego
## 1229 Re: Emergency Motion of City of San Diego
## 1230 Re: Emergency Motion of City of San Diego
## 1231 Re: Emergency Motion of City of San Diego
## 1232 Re: Emergency Motion of City of San Diego
## 1233 FYI - PX sues ISO
## 1234 FYI - PX sues ISO
## 1235 FYI - PX sues ISO
## 1236 FYI - PX sues ISO
## 1237 FYI - PX sues ISO
## 1238 FYI - PX sues ISO
## 1239 FYI - PX sues ISO
## 1240 FYI - PX sues ISO
## 1241 FYI - PX sues ISO
## 1242 FYI - PX sues ISO
## 1243 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 1244 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 1245 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 1246 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 1247 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 1248 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 1249 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 1250 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 1251 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 1252 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 1253 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 1254 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 1255 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 1256 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 1257 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 1258 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 1259 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 1260 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 1261 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 1262 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 1263 Re: FYI - PX sues ISO
## 1264 Re: FYI - PX sues ISO
## 1265 Re: FYI - PX sues ISO
## 1266 Re: FYI - PX sues ISO
## 1267 Re: FYI - PX sues ISO
## 1268 Re: FYI - PX sues ISO
## 1269 Re: FYI - PX sues ISO
## 1270 Re: FYI - PX sues ISO
## 1271 Re: FYI - PX sues ISO
## 1272 Re: FYI - PX sues ISO
## 1273 Re: FYI - PX sues ISO
## 1274 Re: FYI - PX sues ISO
## 1275 Re: FYI - PX sues ISO
## 1276 Re: FYI - PX sues ISO
## 1277 Re: FYI - PX sues ISO
## 1278 Re: FYI - PX sues ISO
## 1279 Re: FYI - PX sues ISO
## 1280 Re: FYI - PX sues ISO
## 1281 Re: FYI - PX sues ISO
## 1282 Re: FYI - PX sues ISO
## 1283 Re: FYI - PX sues ISO
## 1284 Re: FYI - PX sues ISO
## 1285 Re: FYI - PX sues ISO
## 1286 Re: FYI - PX sues ISO
## 1287 Re: FYI - PX sues ISO
## 1288 Re: FYI - PX sues ISO
## 1289 Re: FYI - PX sues ISO
## 1290 Re: Ridgewood s Petition To Be Released From QF Contracts
## 1291 Re: Ridgewood s Petition To Be Released From QF Contracts
## 1292 Re: Ridgewood s Petition To Be Released From QF Contracts
## 1293 Re: Ridgewood s Petition To Be Released From QF Contracts
## 1294 Re: Ridgewood s Petition To Be Released From QF Contracts
## 1295 Re: Ridgewood s Petition To Be Released From QF Contracts
## 1296 Re: Ridgewood s Petition To Be Released From QF Contracts
## 1297 Re: Ridgewood s Petition To Be Released From QF Contracts
## 1298 Re: Ridgewood s Petition To Be Released From QF Contracts
## 1299 Re: Ridgewood s Petition To Be Released From QF Contracts
## 1300 Re: Ridgewood s Petition To Be Released From QF Contracts
## 1301 Re: Ridgewood s Petition To Be Released From QF Contracts
## 1302 Re: Ridgewood s Petition To Be Released From QF Contracts
## 1303 Re: Ridgewood s Petition To Be Released From QF Contracts
## 1304 Re: Ridgewood s Petition To Be Released From QF Contracts
## 1305 Re: Ridgewood s Petition To Be Released From QF Contracts
## 1306 Re: Ridgewood s Petition To Be Released From QF Contracts
## 1307 Re: Ridgewood s Petition To Be Released From QF Contracts
## 1308 Re: Ridgewood s Petition To Be Released From QF Contracts
## 1309 ESC and RTO
## 1310 ESC and RTO
## 1311 ESC and RTO
## 1312 ESC and RTO
## 1313 ESC and RTO
## 1314 ESC and RTO
## 1315 ESC and RTO
## 1316 ESC and RTO
## 1317 ESC and RTO
## 1318 ESC and RTO
## 1319 ESC and RTO
## 1320 ESC and RTO
## 1321 ESC and RTO
## 1322 ESC and RTO
## 1323 ESC and RTO
## 1324 ESC and RTO
## 1325 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1326 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1327 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1328 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1329 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1330 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1331 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1332 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1333 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1334 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1335 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1336 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1337 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1338 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1339 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1340 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1341 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1342 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1343 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1344 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1345 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1346 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1347 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1348 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1349 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1350 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1351 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1352 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1353 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1354 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1355 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1356 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1357 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1358 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1359 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1360 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1361 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1362 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1363 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1364 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1365 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1366 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1367 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1368 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1369 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1370 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1371 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1372 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1373 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1374 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1375 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1376 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1377 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1378 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1379 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1380 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1381 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 1382 Enron Pipeline Comments in EL01-47
## 1383 Enron Pipeline Comments in EL01-47
## 1384 Enron Pipeline Comments in EL01-47
## 1385 Enron Pipeline Comments in EL01-47
## 1386 Enron Pipeline Comments in EL01-47
## 1387 Enron Pipeline Comments in EL01-47
## 1388 Enron Pipeline Comments in EL01-47
## 1389 Enron Pipeline Comments in EL01-47
## 1390 Enron Pipeline Comments in EL01-47
## 1391 Enron Pipeline Comments in EL01-47
## 1392 Enron Pipeline Comments in EL01-47
## 1393 Enron Pipeline Comments in EL01-47
## 1394 Enron Pipeline Comments in EL01-47
## 1395 Enron Pipeline Comments in EL01-47
## 1396 Enron Pipeline Comments in EL01-47
## 1397 Enron Pipeline Comments in EL01-47
## 1398 Enron Pipeline Comments in EL01-47
## 1399 Enron Pipeline Comments in EL01-47
## 1400 Enron Pipeline Comments in EL01-47
## 1401 Enron Pipeline Comments in EL01-47
## 1402 Enron Pipeline Comments in EL01-47
## 1403 Enron Pipeline Comments in EL01-47
## 1404 Enron Pipeline Comments in EL01-47
## 1405 Enron Pipeline Comments in EL01-47
## 1406 Enron Pipeline Comments in EL01-47
## 1407 Enron Pipeline Comments in EL01-47
## 1408 Enron Pipeline Comments in EL01-47
## 1409 Enron Pipeline Comments in EL01-47
## 1410 Enron Pipeline Comments in EL01-47
## 1411 Enron Pipeline Comments in EL01-47
## 1412 Enron Pipeline Comments in EL01-47
## 1413 Enron Pipeline Comments in EL01-47
## 1414 Enron Pipeline Comments in EL01-47
## 1415 Enron Pipeline Comments in EL01-47
## 1416 Enron Pipeline Comments in EL01-47
## 1417 Enron Pipeline Comments in EL01-47
## 1418 Enron Pipeline Comments in EL01-47
## 1419 Enron Pipeline Comments in EL01-47
## 1420 Enron Pipeline Comments in EL01-47
## 1421 Enron Pipeline Comments in EL01-47
## 1422 Enron Pipeline Comments in EL01-47
## 1423 Enron Pipeline Comments in EL01-47
## 1424 Enron Pipeline Comments in EL01-47
## 1425 Enron Pipeline Comments in EL01-47
## 1426 Enron Pipeline Comments in EL01-47
## 1427 Enron Pipeline Comments in EL01-47
## 1428 Enron Pipeline Comments in EL01-47
## 1429 Enron Pipeline Comments in EL01-47
## 1430 Enron Pipeline Comments in EL01-47
## 1431 Enron Pipeline Comments in EL01-47
## 1432 Enron Pipeline Comments in EL01-47
## 1433 Enron Pipeline Comments in EL01-47
## 1434 Enron Pipeline Comments in EL01-47
## 1435 Enron Pipeline Comments in EL01-47
## 1436 Enron Pipeline Comments in EL01-47
## 1437 Enron Pipeline Comments in EL01-47
## 1438 Enron Pipeline Comments in EL01-47
## 1439 Enron Pipeline Comments in EL01-47
## 1440 Enron Pipeline Comments in EL01-47
## 1441 Enron Pipeline Comments in EL01-47
## 1442 Enron Pipeline Comments in EL01-47
## 1443 Enron Pipeline Comments in EL01-47
## 1444 Enron Pipeline Comments in EL01-47
## 1445 Enron Pipeline Comments in EL01-47
## 1446 Enron Pipeline Comments in EL01-47
## 1447 Enron Pipeline Comments in EL01-47
## 1448 Enron Pipeline Comments in EL01-47
## 1449 Enron Pipeline Comments in EL01-47
## 1450 Enron Pipeline Comments in EL01-47
## 1451 Enron Pipeline Comments in EL01-47
## 1452 Enron Pipeline Comments in EL01-47
## 1453 Enron Pipeline Comments in EL01-47
## 1454 Enron Pipeline Comments in EL01-47
## 1455 Enron Pipeline Comments in EL01-47
## 1456 Enron Pipeline Comments in EL01-47
## 1457 Enron Pipeline Comments in EL01-47
## 1458 Enron Pipeline Comments in EL01-47
## 1459 Enron Pipeline Comments in EL01-47
## 1460 Enron Pipeline Comments in EL01-47
## 1461 Enron Pipeline Comments in EL01-47
## 1462 Enron Pipeline Comments in EL01-47
## 1463 Enron Pipeline Comments in EL01-47
## 1464 Enron Pipeline Comments in EL01-47
## 1465 Enron Pipeline Comments in EL01-47
## 1466 Enron Pipeline Comments in EL01-47
## 1467 Enron Pipeline Comments in EL01-47
## 1468 Enron Pipeline Comments in EL01-47
## 1469 Enron Pipeline Comments in EL01-47
## 1470 Enron Pipeline Comments in EL01-47
## 1471 Enron Pipeline Comments in EL01-47
## 1472 Enron Pipeline Comments in EL01-47
## 1473 Enron Pipeline Comments in EL01-47
## 1474 Enron Pipeline Comments in EL01-47
## 1475 Enron Pipeline Comments in EL01-47
## 1476 Enron Pipeline Comments in EL01-47
## 1477 Enron Pipeline Comments in EL01-47
## 1478 Enron Pipeline Comments in EL01-47
## 1479 Enron Pipeline Comments in EL01-47
## 1480 Enron Pipeline Comments in EL01-47
## 1481 Enron Pipeline Comments in EL01-47
## 1482 Enron Pipeline Comments in EL01-47
## 1483 Enron Pipeline Comments in EL01-47
## 1484 Enron Pipeline Comments in EL01-47
## 1485 Enron Pipeline Comments in EL01-47
## 1486 Enron Pipeline Comments in EL01-47
## 1487 Enron Pipeline Comments in EL01-47
## 1488 Enron Pipeline Comments in EL01-47
## 1489 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1490 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1491 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1492 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1493 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1494 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1495 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1496 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1497 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1498 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1499 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1500 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1501 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1502 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1503 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1504 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1505 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1506 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1507 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1508 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1509 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1510 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1511 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1512 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1513 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1514 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1515 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1516 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1517 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1518 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1519 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1520 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1521 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1522 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1523 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1524 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1525 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1526 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1527 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1528 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1529 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1530 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1531 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1532 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1533 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1534 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1535 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1536 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1537 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1538 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1539 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1540 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1541 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1542 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1543 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1544 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1545 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1546 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1547 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1548 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1549 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1550 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1551 Agenda for 4.9.01 Call at 10:30 Houston Time
## 1552 Final script for EOTT Conference Call
## 1553 Final script for EOTT Conference Call
## 1554 Final script for EOTT Conference Call
## 1555 Goodwill Presentation and Exposure Draft - FYI
## 1556 Goodwill Presentation and Exposure Draft - FYI
## 1557 Goodwill Presentation and Exposure Draft - FYI
## 1558 Goodwill Presentation and Exposure Draft - FYI
## 1559 Goodwill Presentation and Exposure Draft - FYI
## 1560 Goodwill Presentation and Exposure Draft - FYI
## 1561 Goodwill Presentation and Exposure Draft - FYI
## 1562 Goodwill Presentation and Exposure Draft - FYI
## 1563 Goodwill Presentation and Exposure Draft - FYI
## 1564 Goodwill Presentation and Exposure Draft - FYI
## 1565 Goodwill Presentation and Exposure Draft - FYI
## 1566 Goodwill Presentation and Exposure Draft - FYI
## 1567 RE: JOB FUNCTION LIST
## 1568 RE: JOB FUNCTION LIST
## 1569 RE: JOB FUNCTION LIST
## 1570 RE: JOB FUNCTION LIST
## 1571 RE: JOB FUNCTION LIST
## 1572 RE: JOB FUNCTION LIST
## 1573 RE: Pre-Tax Return
## 1574 RE: Pre-Tax Return
## 1575 RE: Pre-Tax Return
## 1576 RE: Pre-Tax Return
## 1577 RE: Pre-Tax Return
## 1578 RE: Pre-Tax Return
## 1579 RE: Pre-Tax Return
## 1580 RE: Pre-Tax Return
## 1581 RE: Pre-Tax Return
## 1582 RE: Pre-Tax Return
## 1583 RE: Pre-Tax Return
## 1584 RE: Pre-Tax Return
## 1585 RE: Pre-Tax Return
## 1586 RE: Pre-Tax Return
## 1587 RE: Pre-Tax Return
## 1588 FW: Deal Summary with ECOutlook
## 1589
## 1590 RE:
## 1591 RE: Lunch
## 1592 FW: O&M Analysis - Years 1996, 1997, 1998, 1999 and 2000
## 1593 FW: Trans Pecos
## 1594 FW: Trans Pecos
## 1595 FW: Trans Pecos
## 1596 Presentation
## 1597 Presentation
## 1598 Presentation
## 1599 FW: Board Presentation
## 1600 FW: TW presentation
## 1601 FW: TW presentation
## 1602 FW: TW presentation
## 1603 FW: TW presentation
## 1604 FW: TW presentation
## 1605 FW: TW Capacity--drag reducer
## 1606 FYI: TW Expansion Overhead Rate
## 1607 FYI: TW Expansion Overhead Rate
## 1608 FYI: TW Expansion Overhead Rate
## 1609 RE: EAMR Interconnect and Measurement Services
## 1610 RE: EAMR Interconnect and Measurement Services
## 1611 RE: EAMR Interconnect and Measurement Services
## 1612 RE: EAMR Interconnect and Measurement Services
## 1613 RE: EAMR Interconnect and Measurement Services
## 1614 RE: EAMR Interconnect and Measurement Services
## 1615 RE: EAMR Interconnect and Measurement Services
## 1616 RE: EAMR Interconnect and Measurement Services
## 1617 RE: EAMR Interconnect and Measurement Services
## 1618 RE: EAMR Interconnect and Measurement Services
## 1619 ETS Group - New Formation
## 1620 ETS Group - New Formation
## 1621 RE: Five Day Rolling Forecast
## 1622 RE: Five Day Rolling Forecast
## 1623 RE: NNG/Dynegy Due Diligence
## 1624 RE: NNG/Dynegy Due Diligence
## 1625 RE: NNG/Dynegy Due Diligence
## 1626 RE: NNG/Dynegy Due Diligence
## 1627 RE: NNG/Dynegy Due Diligence
## 1628 RE: NNG/Dynegy Due Diligence
## 1629 RE: NNG/Dynegy Due Diligence
## 1630 RE: NNG/Dynegy Due Diligence
## 1631 RE: NNG/Dynegy Due Diligence
## 1632 RE: Data Room
## 1633 RE: Data Room
## 1634 RE: Data Room
## 1635 RE: Data Room
## 1636 RE: Data Room
## 1637 RE: Data Room
## 1638 Fw: Data Room
## 1639 Fw: Data Room
## 1640 Fw: Data Room
## 1641 Fw: Data Room
## 1642 Fw: Data Room
## 1643 Fw: Data Room
## 1644 Fw: Data Room
## 1645 Fw: Data Room
## 1646 Fw: CAPEX
## 1647
## 1648 RE: NNG revenue backup
## 1649 RE: NNG revenue backup
## 1650 RE: NNG revenue backup
## 1651 RE: NNG & TW Direct Cash Flow Estimate (11/27 -11/30)
## 1652 FW: Cash Forecasting
## 1653 FW: Cash Forecasting
## 1654 FW: Cash Forecasting
## 1655 FW: NNG DUE DILLIGENCE REQUEST MEETING
## 1656 FW: NNG DUE DILLIGENCE REQUEST MEETING
## 1657 Capacity Subscription Strategy
## 1658 Capacity Subscription Strategy
## 1659 Capacity Subscription Strategy
## 1660 RE:
## 1661 FW: Cost Center
## 1662 FW: TW Plan and Forecast revenue backup
## 1663 FW: TW Plan and Forecast revenue backup
## 1664 FW: TW Plan and Forecast revenue backup
## 1665 RE:
## 1666 FW: Slides for Stan
## 1667 Cal Throughput.xls
## 1668 Cal Throughput.xls
## 1669 Cal Throughput.xls
## 1670 Cal Throughput.xls
## 1671 Cal Throughput.xls
## 1672 WSCC Power AZNMNV.xls
## 1673 WSCC Power AZNMNV.xls
## 1674 WSCC Power AZNMNV.xls
## 1675 WSCC Power AZNMNV.xls
## 1676 RE: Expansion Fuel Analysis
## 1677 RE: Expansion Fuel Analysis
## 1678 RE: Expansion Fuel Analysis
## 1679 FW: Red Rock additions
## 1680 California Proposed Projects
## 1681 California Proposed Projects
## 1682 California Proposed Projects
## 1683 California Proposed Projects
## 1684 FW: Consultant s view on gas transmission into California
## 1685 FW: Consultant s view on gas transmission into California
## 1686 FW: Consultant s view on gas transmission into California
## 1687 FW: Consultant s view on gas transmission into California
## 1688 FW: Consultant s view on gas transmission into California
## 1689 FW: Consultant s view on gas transmission into California
## 1690 FW: Consultant s view on gas transmission into California
## 1691 FW: Consultant s view on gas transmission into California
## 1692 FW: Consultant s view on gas transmission into California
## 1693 FW: Consultant s view on gas transmission into California
## 1694 FW: Consultant s view on gas transmission into California
## 1695 FW: Consultant s view on gas transmission into California
## 1696 FW: Consultant s view on gas transmission into California
## 1697 FW: Consultant s view on gas transmission into California
## 1698 FW: Consultant s view on gas transmission into California
## 1699 FW: Personal Achievement Awards
## 1700 FW: Personal Achievement Awards
## 1701 FW: Personal Achievement Awards
## 1702 FW: Personal Achievement Awards
## 1703 FW: Personal Achievement Awards
## 1704 FW: Personal Achievement Awards
## 1705 FW: Personal Achievement Awards
## 1706 FW: Personal Achievement Awards
## 1707 FW: Personal Achievement Awards
## 1708 FW: Personal Achievement Awards
## 1709 FW: Personal Achievement Awards
## 1710 FW: Personal Achievement Awards
## 1711 FW: Summary of Covenants under Merger and Loan Documents
## 1712 FW: Summary of Covenants under Merger and Loan Documents
## 1713 FW: Summary of Covenants under Merger and Loan Documents
## 1714 FW: Summary of Covenants under Merger and Loan Documents
## 1715 FW: Summary of Covenants under Merger and Loan Documents
## 1716 FW: Summary of Covenants under Merger and Loan Documents
## 1717 FW: Summary of Covenants under Merger and Loan Documents
## 1718 FW: Summary of Covenants under Merger and Loan Documents
## 1719 FW: Summary of Covenants under Merger and Loan Documents
## 1720 FW: Summary of Covenants under Merger and Loan Documents
## 1721 FW: Summary of Covenants under Merger and Loan Documents
## 1722 FW: Summary of Covenants under Merger and Loan Documents
## 1723 RE:
## 1724 FW: Weekly Report
## 1725
## 1726
## 1727
## 1728 FW: Daily Summary of Risk Data
## 1729 FW: Memo regarding Enron/Dynegy Agreement and Plan of Merger - Compliance with the Conduct of Business Covenants
## 1730 FW: Memo regarding Enron/Dynegy Agreement and Plan of Merger - Compliance with the Conduct of Business Covenants
## 1731 FW: Memo regarding Enron/Dynegy Agreement and Plan of Merger - Compliance with the Conduct of Business Covenants
## 1732 FW: Memo regarding Enron/Dynegy Agreement and Plan of Merger - Compliance with the Conduct of Business Covenants
## 1733 FW: Memo regarding Enron/Dynegy Agreement and Plan of Merger - Compliance with the Conduct of Business Covenants
## 1734 FW: Memo regarding Enron/Dynegy Agreement and Plan of Merger - Compliance with the Conduct of Business Covenants
## 1735 FW: Memo regarding Enron/Dynegy Agreement and Plan of Merger - Compliance with the Conduct of Business Covenants
## 1736 FW: Memo regarding Enron/Dynegy Agreement and Plan of Merger - Compliance with the Conduct of Business Covenants
## 1737 FW: Memo regarding Enron/Dynegy Agreement and Plan of Merger - Compliance with the Conduct of Business Covenants
## 1738 FW: Memo regarding Enron/Dynegy Agreement and Plan of Merger - Compliance with the Conduct of Business Covenants
## 1739 FW: Memo regarding Enron/Dynegy Agreement and Plan of Merger - Compliance with the Conduct of Business Covenants
## 1740 FW: Memo regarding Enron/Dynegy Agreement and Plan of Merger - Compliance with the Conduct of Business Covenants
## 1741 RE: Free Shipping & $1,300 in Savings
## 1742 RE: Fw: Undeliverable: Fw: Last schedule
## 1743 RE: Fw: Undeliverable: Fw: Last schedule
## 1744 RE: Fw: Undeliverable: Fw: Last schedule
## 1745 RE: Fw: Undeliverable: Fw: Last schedule
## 1746 RE: Fw: Undeliverable: Fw: Last schedule
## 1747 RE: Fw: Undeliverable: Fw: Last schedule
## 1748 RE: Fw: Undeliverable: Fw: Last schedule
## 1749 FW: pipelines 97- 00
## 1750 FW: pipelines 97- 00
## 1751 FW: pipelines 97- 00
## 1752 FW: pipelines 97- 00
## 1753 FW: pipelines 97- 00
## 1754 RE:
## 1755 RE:
## 1756 Fw: Gentle Reminder
## 1757 FW: Transwestern v. SoCal Gas
## 1758 FW: Transwestern v. SoCal Gas
## 1759 EGS Presentation
## 1760 RE: Are we to stop IT spending on equipment upgrades????
## 1761 RE: Are we to stop IT spending on equipment upgrades????
## 1762 RE: Are we to stop IT spending on equipment upgrades????
## 1763 RE: Are we to stop IT spending on equipment upgrades????
## 1764 RE: Are we to stop IT spending on equipment upgrades????
## 1765 RE: Are we to stop IT spending on equipment upgrades????
## 1766 RE: Are we to stop IT spending on equipment upgrades????
## 1767 RE: Are we to stop IT spending on equipment upgrades????
## 1768 RE: Are we to stop IT spending on equipment upgrades????
## 1769 RE: Are we to stop IT spending on equipment upgrades????
## 1770 RE: Are we to stop IT spending on equipment upgrades????
## 1771 RE: Are we to stop IT spending on equipment upgrades????
## 1772 RE: Are we to stop IT spending on equipment upgrades????
## 1773 RE: Are we to stop IT spending on equipment upgrades????
## 1774 RE: Are we to stop IT spending on equipment upgrades????
## 1775 RE: Are we to stop IT spending on equipment upgrades????
## 1776 RE: Are we to stop IT spending on equipment upgrades????
## 1777 RE: Are we to stop IT spending on equipment upgrades????
## 1778 RE: Are we to stop IT spending on equipment upgrades????
## 1779 RE: Are we to stop IT spending on equipment upgrades????
## 1780 RE: Are we to stop IT spending on equipment upgrades????
## 1781 RE: Are we to stop IT spending on equipment upgrades????
## 1782 RE: Are we to stop IT spending on equipment upgrades????
## 1783 RE: Are we to stop IT spending on equipment upgrades????
## 1784 RE: Are we to stop IT spending on equipment upgrades????
## 1785 RE: Are we to stop IT spending on equipment upgrades????
## 1786 RE: Are we to stop IT spending on equipment upgrades????
## 1787 RE: Are we to stop IT spending on equipment upgrades????
## 1788 RE: Are we to stop IT spending on equipment upgrades????
## 1789 RE: Are we to stop IT spending on equipment upgrades????
## 1790 RE: Are we to stop IT spending on equipment upgrades????
## 1791 Spreadsheet for Mtg this morning
## 1792 Spreadsheet for Mtg this morning
## 1793 Spreadsheet for Mtg this morning
## 1794 RE: 2002 Presentation
## 1795 RE: Transwestern Fair Value
## 1796 RE: Transwestern Fair Value
## 1797 RE: Transwestern Fair Value
## 1798 RE: Transwestern Fair Value
## 1799 RE:
## 1800 Fw: Enron Wind Aviation
## 1801 RE: Numbers
## 1802
## 1803 FW: Q3 Earnings - PGG
## 1804 FW: California Receivables and FERC Proceedings
## 1805 FW: Azurix 3Q charge analysis
## 1806 RE:
## 1807 FW: ETS - Investor Questions
## 1808 FW: ETS - Investor Questions
## 1809 FW: ETS - Investor Questions
## 1810 FW: ETS - Investor Questions
## 1811 FW: ETS - Investor Questions
## 1812 FW: ETS - Investor Questions
## 1813 RE:
## 1814 RE:
## 1815
## 1816 FW: November Operational Storage Purchases
## 1817 FW: November Operational Storage Purchases
## 1818 FW: November Operational Storage Purchases
## 1819 FW: SoCalGas Complaint (Message from Greg Porter)
## 1820 FW: EGAS 4th Qtr
## 1821 FW: EGAS 4th Qtr
## 1822 EOTT Issue
## 1823 EOTT Issue
## 1824 EOTT Issue
## 1825 EOTT Issue
## 1826 EOTT Issue
## 1827 EOTT Issue
## 1828 EOTT Issue
## 1829 How are we doing and what are my issues meeting?
## 1830 How are we doing and what are my issues meeting?
## 1831 How are we doing and what are my issues meeting?
## 1832 How are we doing and what are my issues meeting?
## 1833 How are we doing and what are my issues meeting?
## 1834 How are we doing and what are my issues meeting?
## 1835 How are we doing and what are my issues meeting?
## 1836 How are we doing and what are my issues meeting?
## 1837 How are we doing and what are my issues meeting?
## 1838 How are we doing and what are my issues meeting?
## 1839 How are we doing and what are my issues meeting?
## 1840 How are we doing and what are my issues meeting?
## 1841 How are we doing and what are my issues meeting?
## 1842 How are we doing and what are my issues meeting?
## 1843 How are we doing and what are my issues meeting?
## 1844 Insurance Issues
## 1845 Insurance Issues
## 1846 Insurance Issues
## 1847 Insurance Issues
## 1848 Insurance Issues
## 1849 Insurance Issues
## 1850 Insurance Issues
## 1851 Insurance Issues
## 1852 Insurance Issues
## 1853 RE: Utilicorp $1.2 million
## 1854 RE: Utilicorp $1.2 million
## 1855 RE: Utilicorp $1.2 million
## 1856 RE: Utilicorp $1.2 million
## 1857 RE: Utilicorp $1.2 million
## 1858 RE: Utilicorp $1.2 million
## 1859 RE: Utilicorp $1.2 million
## 1860 RE: Utilicorp $1.2 million
## 1861 RE: Utilicorp $1.2 million
## 1862 RE: Utilicorp $1.2 million
## 1863 RE: Utilicorp $1.2 million
## 1864 RE: Utilicorp $1.2 million
## 1865 2nd revised pres
## 1866 Revised Pres
## 1867 2002 Plan Pres
## 1868 2002 Plan Pres
## 1869 2002 Plan Pres
## 1870 FW: ETS SLIDES
## 1871 FW: Enron Net Works 2002 Budget Process
## 1872 FW: Enron Net Works 2002 Budget Process
## 1873 FW: Enron Net Works 2002 Budget Process
## 1874 FW: Enron Net Works 2002 Budget Process
## 1875 FW: Enron Net Works 2002 Budget Process
## 1876 FW: Enron Net Works 2002 Budget Process
## 1877 FW: Enron Net Works 2002 Budget Process
## 1878 FW: Enron Net Works 2002 Budget Process
## 1879 FW: Enron Net Works 2002 Budget Process
## 1880 FW: Enron Net Works 2002 Budget Process
## 1881 2002 Issues
## 1882 2002 Issues
## 1883 2002 Issues
## 1884 2002 Issues
## 1885 2002 Issues
## 1886 2002 Issues
## 1887 2002 Issues
## 1888 2002 Issues
## 1889 2002 Issues
## 1890 2002 Issues
## 1891 2002 Issues
## 1892 2002 Issues
## 1893 2002 Issues
## 1894 FW: NNG & TW Ad Valorem Tax Accrual - 2002 Plan vs. 2001 Forecast
## 1895 FW: NNG & TW Ad Valorem Tax Accrual - 2002 Plan vs. 2001 Forecast
## 1896 FW: NNG & TW Ad Valorem Tax Accrual - 2002 Plan vs. 2001 Forecast
## 1897 FW: Correct Reg. Roundtable Agenda
## 1898 FW: Correct Reg. Roundtable Agenda
## 1899 FW: Correct Reg. Roundtable Agenda
## 1900 FW: PGG Q3 Forecast - Confidential
## 1901 FW: Project Nikita Memo
## 1902 FW: Project Nikita Memo
## 1903 FW: Project Nikita Memo
## 1904 FW: Energy Affiliate Notice of Proposed Rulemaking
## 1905 FW: Energy Affiliate Notice of Proposed Rulemaking
## 1906 FW: Energy Affiliate Notice of Proposed Rulemaking
## 1907 FW: Energy Affiliate Notice of Proposed Rulemaking
## 1908 FW: Energy Affiliate Notice of Proposed Rulemaking
## 1909 FW: Energy Affiliate Notice of Proposed Rulemaking
## 1910 FW: Energy Affiliate Notice of Proposed Rulemaking
## 1911 FW: Energy Affiliate Notice of Proposed Rulemaking
## 1912 FW: Energy Affiliate Notice of Proposed Rulemaking
## 1913 FW: Energy Affiliate Notice of Proposed Rulemaking
## 1914 FW: Energy Affiliate Notice of Proposed Rulemaking
## 1915 FW: Energy Affiliate Notice of Proposed Rulemaking
## 1916 FW: Energy Affiliate Notice of Proposed Rulemaking
## 1917 FW: Summary of Commission Meeting
## 1918 FW: Summary of Commission Meeting
## 1919 FW: Summary of Commission Meeting
## 1920 FW: Summary of Commission Meeting
## 1921 FW: Summary of Commission Meeting
## 1922 FW: Summary of Commission Meeting
## 1923 FW: Summary of Commission Meeting
## 1924 FW: Summary of Commission Meeting
## 1925 FW: Summary of Commission Meeting
## 1926 FW: Summary of Commission Meeting
## 1927 FW: Summary of Commission Meeting
## 1928 FW: Summary of Commission Meeting
## 1929 FW: Summary of Commission Meeting
## 1930 FW: Project Timber Final Memo
## 1931 FW: Project Timber Final Memo
## 1932 FW: Project Timber Final Memo
## 1933 FW: Project Timber Final Memo
## 1934 FW: Project Timber Final Memo
## 1935 FW: Project Timber Final Memo
## 1936 FW: Commission Meeting
## 1937 FW: Commission Meeting
## 1938 FW: Commission Meeting
## 1939 FW: Commission Meeting
## 1940 FW: Commission Meeting
## 1941 FW: Commission Meeting
## 1942 FW: Commission Meeting
## 1943 FW: Commission Meeting
## 1944 FW: Commission Meeting
## 1945 FW: Commission Meeting
## 1946 FW: Commission Meeting
## 1947 FW: Commission Meeting
## 1948 FW: Commission Meeting
## 1949 FW: Next Scheduled Budget Meeting - 10/16 @ 11:00 a.m. EB32C2
## 1950 FW: EOTT Gain Calculation
## 1951 FW: EOTT Gain Calculation
## 1952 FW: Revised Gain
## 1953 FW: Revised Gain
## 1954 FW: Goodwill Allocation Memorandum
## 1955 FW: Project Timber EOTT Accounting Memo
## 1956 FW: Project Timber EOTT Accounting Memo
## 1957 FW: Project Timber EOTT Accounting Memo
## 1958 FW: Sun Devil project
## 1959 FW: Sun Devil project
## 1960 FW: Transwestern
## 1961 FW: Transwestern
## 1962 FW: Transwestern
## 1963 FW: Transwestern
## 1964 FW: Agenda for TW Meeting: PRIVILEGED AND CONFIDENTIAL, ATTORNEY CLIENT PRIVILEGE
## 1965 FW: PGE Power Costs
## 1966 FW: MESSAGE FROM MARK LINDSEY - 4TH Q 2001 - REMINDER
## 1967 FW: Q3 Adjustments - AA&Co. Review
## 1968 FW: Sunrise update; Steering Committee meeting postponed
## 1969 FW: Sunrise update; Steering Committee meeting postponed
## 1970 FW: Sunrise update; Steering Committee meeting postponed
## 1971 FW: Sunrise update; Steering Committee meeting postponed
## 1972 FW: Sunrise update; Steering Committee meeting postponed
## 1973 FW: Sunrise update; Steering Committee meeting postponed
## 1974 FW: Sunrise update; Steering Committee meeting postponed
## 1975 FW: Sunrise update; Steering Committee meeting postponed
## 1976 FW: Sunrise update; Steering Committee meeting postponed
## 1977 FW: Sunrise update; Steering Committee meeting postponed
## 1978 FW: Sunrise update; Steering Committee meeting postponed
## 1979 FW: Sunrise update; Steering Committee meeting postponed
## 1980 FW: Sunrise update; Steering Committee meeting postponed
## 1981 FW: FW: MESSAGE FROM MARK LINDSEY - 4TH Q 2001
## 1982 FW: EOL Annual Maintenance.
## 1983 RE: 2002 PLAN TEMPLATE
## 1984 FW: Segments
## 1985 FW: Segments
## 1986 FW: Segments
## 1987 FW: 2002 plan meeting with Jim Hughes
## 1988 FW: 2002 plan meeting with Jim Hughes
## 1989 FW: 2002 plan meeting with Jim Hughes
## 1990 FW: Revised EGAS 2002 plan overall agenda
## 1991 FW: MESSAGE FROM MARK LINDSEY - 4TH Q 2001
## 1992 FW: MESSAGE FROM MARK LINDSEY - 4TH Q 2001
## 1993 FW: MESSAGE FROM MARK LINDSEY - 4TH Q 2001
## 1994 FW: MESSAGE FROM MARK LINDSEY - 4TH Q 2001
## 1995 FW: MESSAGE FROM MARK LINDSEY - 4TH Q 2001
## 1996 FW: MESSAGE FROM MARK LINDSEY - 4TH Q 2001
## 1997 FW:
## 1998 FW:
## 1999 FW:
## 2000 FW:
## 2001 FW:
## 2002 FW:
## 2003 FW:
## 2004 FW:
## 2005 FW: Jim s meeting - version #6
## 2006 FW: 2002 plan - meeting with Jim Hughes
## 2007 FW: Sun Devil Open Season Results --CONFIDENTIAL--
## 2008 FW: Sun Devil Open Season Results --CONFIDENTIAL--
## 2009 FW: Sun Devil Open Season Results --CONFIDENTIAL--
## 2010 FW: Sun Devil Open Season Results --CONFIDENTIAL--
## 2011 FW: Sun Devil Open Season Results --CONFIDENTIAL--
## 2012 FW: Sun Devil Open Season Results --CONFIDENTIAL--
## 2013 FW: Sun Devil Open Season Results --CONFIDENTIAL--
## 2014 FW: Sun Devil Open Season Results --CONFIDENTIAL--
## 2015 FW: 2002 plan - meeting with Jim Hughes
## 2016 RE: Ken Lay Reviews for 2002 Plan
## 2017 RE: Ken Lay Reviews for 2002 Plan
## 2018 RE: Ken Lay Reviews for 2002 Plan
## 2019 RE: Ken Lay Reviews for 2002 Plan
## 2020 RE: Ken Lay Reviews for 2002 Plan
## 2021 RE: Ken Lay Reviews for 2002 Plan
## 2022 RE: Ken Lay Reviews for 2002 Plan
## 2023 RE: Ken Lay Reviews for 2002 Plan
## 2024 RE: Ken Lay Reviews for 2002 Plan
## 2025 RE: Ken Lay Reviews for 2002 Plan
## 2026 RE: Ken Lay Reviews for 2002 Plan
## 2027 RE: Ken Lay Reviews for 2002 Plan
## 2028 RE: Ken Lay Reviews for 2002 Plan
## 2029 RE: Ken Lay Reviews for 2002 Plan
## 2030 RE: Ken Lay Reviews for 2002 Plan
## 2031 RE: Ken Lay Reviews for 2002 Plan
## 2032 RE: Ken Lay Reviews for 2002 Plan
## 2033 RE: Ken Lay Reviews for 2002 Plan
## 2034 RE: Ken Lay Reviews for 2002 Plan
## 2035 RE: Ken Lay Reviews for 2002 Plan
## 2036 RE: Ken Lay Reviews for 2002 Plan
## 2037 RE: Ken Lay Reviews for 2002 Plan
## 2038 RE: Ken Lay Reviews for 2002 Plan
## 2039 RE: Ken Lay Reviews for 2002 Plan
## 2040 RE: Ken Lay Reviews for 2002 Plan
## 2041 RE: Ken Lay Reviews for 2002 Plan
## 2042 RE: Ken Lay Reviews for 2002 Plan
## 2043 RE: Ken Lay Reviews for 2002 Plan
## 2044 RE: Ken Lay Reviews for 2002 Plan
## 2045 RE: Ken Lay Reviews for 2002 Plan
## 2046 RE: Ken Lay Reviews for 2002 Plan
## 2047 RE: Ken Lay Reviews for 2002 Plan
## 2048 FW: STAN HORTON S CURRENT TOP TWENTY-ONE LIST
## 2049 FW: STAN HORTON S CURRENT TOP TWENTY-ONE LIST
## 2050 FW: STAN HORTON S CURRENT TOP TWENTY-ONE LIST
## 2051 FW: STAN HORTON S CURRENT TOP TWENTY-ONE LIST
## 2052 FW: STAN HORTON S CURRENT TOP TWENTY-ONE LIST
## 2053 FW: STAN HORTON S CURRENT TOP TWENTY-ONE LIST
## 2054 FW: STAN HORTON S CURRENT TOP TWENTY-ONE LIST
## 2055 FW: STAN HORTON S CURRENT TOP TWENTY-ONE LIST
## 2056 FW: STAN HORTON S CURRENT TOP TWENTY-ONE LIST
## 2057 FW: STAN HORTON S CURRENT TOP TWENTY-ONE LIST
## 2058 FW: STAN HORTON S CURRENT TOP TWENTY-ONE LIST
## 2059 FW: STAN HORTON S CURRENT TOP TWENTY-ONE LIST
## 2060 FW: STAN HORTON S CURRENT TOP TWENTY-ONE LIST
## 2061 RE: Request: Current Headcount
## 2062 RE: Request: Current Headcount
## 2063 RE: Request: Current Headcount
## 2064 Personnel Requirement
## 2065 Personnel Requirement
## 2066 Personnel Requirement
## 2067 Personnel Requirement
## 2068 Personnel Requirement
## 2069 Personnel Requirement
## 2070 Personnel Requirement
## 2071 Personnel Requirement
## 2072 Personnel Requirement
## 2073 Personnel Requirement
## 2074 Personnel Requirement
## 2075 Personnel Requirement
## 2076 Personnel Requirement
## 2077 Personnel Requirement
## 2078 Personnel Requirement
## 2079 Personnel Requirement
## 2080 Personnel Requirement
## 2081 Personnel Requirement
## 2082 Personnel Requirement
## 2083 Personnel Requirement
## 2084 FW: AEL 2001 forecast
## 2085 FW: CASH FLOW - MESSAGE FROM MARK LINDSEY
## 2086 FW: 2002 Budget Timeline
## 2087 FW: 2002 Budget Timeline
## 2088 FW: 2002 Budget Timeline
## 2089 RE: ISC 2002 Allocation Methodology
## 2090 RE: ISC 2002 Allocation Methodology
## 2091 RE: ISC 2002 Allocation Methodology
## 2092 RE: ISC 2002 Allocation Methodology
## 2093 RE: ISC 2002 Allocation Methodology
## 2094 RE: ISC 2002 Allocation Methodology
## 2095 RE: ISC 2002 Allocation Methodology
## 2096 RE: ISC 2002 Allocation Methodology
## 2097 RE: ISC 2002 Allocation Methodology
## 2098 RE: ISC 2002 Allocation Methodology
## 2099 FW: DRAFT STATUS REPORT ON ETS 2001 GOALS & OBJECTIVES
## 2100 FW: DRAFT STATUS REPORT ON ETS 2001 GOALS & OBJECTIVES
## 2101 FW: DRAFT STATUS REPORT ON ETS 2001 GOALS & OBJECTIVES
## 2102 FW: DRAFT STATUS REPORT ON ETS 2001 GOALS & OBJECTIVES
## 2103 FW: DRAFT STATUS REPORT ON ETS 2001 GOALS & OBJECTIVES
## 2104 FW: DRAFT STATUS REPORT ON ETS 2001 GOALS & OBJECTIVES
## 2105 FW: DRAFT STATUS REPORT ON ETS 2001 GOALS & OBJECTIVES
## 2106 FW: DRAFT STATUS REPORT ON ETS 2001 GOALS & OBJECTIVES
## 2107 FW: DRAFT STATUS REPORT ON ETS 2001 GOALS & OBJECTIVES
## 2108 FW: DRAFT STATUS REPORT ON ETS 2001 GOALS & OBJECTIVES
## 2109 FW: DRAFT STATUS REPORT ON ETS 2001 GOALS & OBJECTIVES
## 2110 FW: DRAFT STATUS REPORT ON ETS 2001 GOALS & OBJECTIVES
## 2111 FW: DRAFT STATUS REPORT ON ETS 2001 GOALS & OBJECTIVES
## 2112 FW: Sun Devil D R A F T and meeting notice
## 2113 RE: Gray County Interconnect
## 2114 RE: Gray County Interconnect
## 2115 RE: Gray County Interconnect
## 2116 RE: Gray County Interconnect
## 2117 RE: Gray County Interconnect
## 2118 RE: Gray County Interconnect
## 2119 RE: Gray County Interconnect
## 2120 RE: Gray County Interconnect
## 2121 RE: Gray County Interconnect
## 2122 RE: Gray County Interconnect
## 2123 RE: Gray County Interconnect
## 2124 RE: Gray County Interconnect
## 2125 RE: Gray County Interconnect
## 2126 RE: Gray County Interconnect
## 2127 RE: Gray County Interconnect
## 2128 RE: Gray County Interconnect
## 2129 RE: Gray County Interconnect
## 2130 RE: Gray County Interconnect
## 2131 FW: United Way 2001 - Team ETS
## 2132 FW: United Way 2001 - Team ETS
## 2133 FW: United Way 2001 - Team ETS
## 2134 FW: United Way 2001 - Team ETS
## 2135 FW: United Way 2001 - Team ETS
## 2136 FW: United Way 2001 - Team ETS
## 2137 FW: United Way 2001 - Team ETS
## 2138 FW: United Way 2001 - Team ETS
## 2139 FW: United Way 2001 - Team ETS
## 2140 FW: United Way 2001 - Team ETS
## 2141 FW: United Way 2001 - Team ETS
## 2142 FW: United Way 2001 - Team ETS
## 2143 FW: United Way 2001 - Team ETS
## 2144 FW: Project Sun Devil Description
## 2145 RE: Trans Pecos
## 2146 FW: Current Estimate Review for ETS Companies
## 2147 FW: Cash needs
## 2148 FW:
## 2149 FW:
## 2150 FW:
## 2151 FW:
## 2152 FW:
## 2153 FW:
## 2154 FW:
## 2155 FW:
## 2156 FW:
## 2157 FW:
## 2158 FW:
## 2159 FW:
## 2160 RE: Five Day Rolling Forecast
## 2161 RE: P00577146 697834 C Rideau (mar)
## 2162 RE: Five Day Rolling Forecast
## 2163 RE: Five Day Rolling Forecast
## 2164 RE: Cash forecast
## 2165 RE: Cash forecast
## 2166 RE: Cash forecast
## 2167 Re: TW financials
## 2168 Re: TW financials
## 2169 Re: TW information
## 2170 RE: Agave Letter
## 2171 Re: FW: Agave Letter
## 2172 Re: TW imbal revaluation
## 2173 FW: Cap file for TW
## 2174 FW: Cap file for TW
## 2175 FW: Cap file for TW
## 2176 FW: Cap file for TW
## 2177 RE: CAPEX
## 2178 RE: CAPEX
## 2179 RE: CAPEX
## 2180 RE:
## 2181 RE: 4th current estimate
## 2182 FW: Capacity Subscription Strategy
## 2183 Fw: Transpecos
## 2184 Transpecos
## 2185 RE: NNG revenue backup
## 2186 Fw: RE: Capital for TW
## 2187 Re: NNG revenue backup
## 2188 Re: NNG revenue backup
## 2189 Re: FW: IM Meeting Agenda
## 2190
## 2191 Fw: RE: NNG & TW Direct Cash Flow Estimate (11/27 -11/30)
## 2192 Re: FW: Cash Forecasting
## 2193 FW: NNG & TW Direct Cash Flow Estimate (11/27 -11/30)
## 2194 RE: PEP SYSTEM Reviewers?
## 2195 FW: Cost Center
## 2196 FW: HSR info needed
## 2197 FW: HSR info needed
## 2198 RE:
## 2199
## 2200 RE:
## 2201 RE:
## 2202 RE:
## 2203 FW: Slides for Stan
## 2204 RE:
## 2205
## 2206
## 2207 RE: NNG/TW Actual meeting
## 2208 FW: Red Rock additions
## 2209 RE: Updated: Update on financings
## 2210 RE: NNG/TW Actual meeting
## 2211 RE:
## 2212 RE:
## 2213 FW: TW Available Capacity for 2002
## 2214 FW: Red Rock (Transwestern) Cashflow
## 2215 FW: Red Rock (Transwestern) Cashflow
## 2216 RE: C.014107 - Agave WT I/C
## 2217 RE: C.014107 - Agave WT I/C
## 2218 RE: C.014107 - Agave WT I/C
## 2219 FW:
## 2220 FW:
## 2221 Re: FW: Additional TW information request
## 2222 RE: FW:
## 2223
## 2224 RE: FW:
## 2225 RE: FW:
## 2226 RE: FW:
## 2227 RE: FW:
## 2228 FW: Memo regarding Enron/Dynegy Agreement and Plan of Merger - Compliance with the Conduct of Business Covenants
## 2229 FW:
## 2230
## 2231
## 2232 RE:
## 2233 FW:
## 2234 Aviation
## 2235
## 2236 Corp Request
## 2237 Corp Request
## 2238 Corp Request
## 2239 RE: corp information requests
## 2240 RE: corp information requests
## 2241 FW: FW: Information Request
## 2242 FW: Information Request
## 2243 FW: Information Request
## 2244 RE:
## 2245 FW: Information Request
## 2246 FW: Information Request
## 2247 FW: Information Request
## 2248 FW: Information Request
## 2249 FW: Information Request
## 2250 FW: Information Request
## 2251 FW: Information Request
## 2252 FW: Information Request
## 2253 FW: Information Request
## 2254 FW: Information Request
## 2255 FW: Information Request
## 2256 FW: Information Request
## 2257 FW: Information Request
## 2258 FW: Information Request
## 2259 FW: Information Request
## 2260 FW: Information Request
## 2261 RE:
## 2262 FW: Continental Airlines Vacations Special Deals
## 2263 RE: Free Shipping & $1,300 in Savings
## 2264 FW: FREE Personalization for Your Holiday Gifts!
## 2265 FW: Free Shipping & $1,300 in Savings
## 2266 FW: pipelines 97- 00
## 2267 List of key employees
## 2268 FW: G&A Function definitions
## 2269 RE:
## 2270
## 2271 4th Q EGAS
## 2272 4th Q EGAS
## 2273 4th Q EGAS
## 2274 bio
## 2275 RE: map
## 2276 RE: map
## 2277
## 2278 map
## 2279 RE: P00504745 682504 J Moore
## 2280 RE: P00504745 682504 J Moore
## 2281 RE:
## 2282 RE:
## 2283 RE: Set up FAR orders for EPSC billing
## 2284 RE: Set up FAR orders for EPSC billing
## 2285 RE: Set up FAR orders for EPSC billing
## 2286 FW: EAP
## 2287 FW: EAP
## 2288 FW: EAP
## 2289 FW: EAP
## 2290 FW: 4th Quarter Forecast Meetings Canceled
## 2291 FW: 4th Quarter Forecast Meetings Canceled
## 2292 FW: 4th Quarter Forecast Meetings Canceled
## 2293 FW: 4th Quarter Forecast Meetings Canceled
## 2294 FW: Gentle Reminder
## 2295 RE: Azurix CE
## 2296
## 2297
## 2298 Re: EGS Presentation
## 2299 Re: Need 6 more tpc form2
## 2300 Re: Tpc form 2
## 2301 RE: Adaytum Consultant Services
## 2302 RE: Adaytum Consultant Services
## 2303 RE: Adaytum Consultant Services
## 2304 RE: Adaytum Consultant Services
## 2305 RE: Adaytum Consultant Services
## 2306 FW: GRI Msg: Time Sheet Submitted for JEANETTE Y . DOLL.
## 2307 RE: EPPI GPM Oneok agreement
## 2308 RE: EPPI GPM Oneok agreement
## 2309 RE: EPPI GPM Oneok agreement
## 2310 RE: EPPI GPM Oneok agreement
## 2311 RE: EPPI GPM Oneok agreement
## 2312 RE: EPPI GPM Oneok agreement
## 2313 RE: EPPI GPM Oneok agreement
## 2314 RE: EPPI GPM Oneok agreement
## 2315 4th Quarter Forecast Meetings Canceled
## 2316 4th Quarter Forecast Meetings Canceled
## 2317 4th Quarter Forecast Meetings Canceled
## 2318 4th Quarter Forecast Meetings Canceled
## 2319 4th Quarter Forecast Meetings Canceled
## 2320 4th Quarter Forecast Meetings Canceled
## 2321 4th Quarter Forecast Meetings Canceled
## 2322 4th Quarter Forecast Meetings Canceled
## 2323 4th Quarter Forecast Meetings Canceled
## 2324 4th Quarter Forecast Meetings Canceled
## 2325 4th Quarter Forecast Meetings Canceled
## 2326 4th Quarter Forecast Meetings Canceled
## 2327 4th Quarter Forecast Meetings Canceled
## 2328 4th Quarter Forecast Meetings Canceled
## 2329 4th Quarter Forecast Meetings Canceled
## 2330 4th Quarter Forecast Meetings Canceled
## 2331 4th Quarter Forecast Meetings Canceled
## 2332 4th Quarter Forecast Meetings Canceled
## 2333 4th Quarter Forecast Meetings Canceled
## 2334 4th Quarter Forecast Meetings Canceled
## 2335 4th Quarter Forecast Meetings Canceled
## 2336 4th Quarter Forecast Meetings Canceled
## 2337 4th Quarter Forecast Meetings Canceled
## 2338 4th Quarter Forecast Meetings Canceled
## 2339 4th Quarter Forecast Meetings Canceled
## 2340 4th Quarter Forecast Meetings Canceled
## 2341 4th Quarter Forecast Meetings Canceled
## 2342 4th Quarter Forecast Meetings Canceled
## 2343 4th Quarter Forecast Meetings Canceled
## 2344 4th Quarter Forecast Meetings Canceled
## 2345 4th Quarter Forecast Meetings Canceled
## 2346 4th Quarter Forecast Meetings Canceled
## 2347 4th Quarter Forecast Meetings Canceled
## 2348 4th Quarter Forecast Meetings Canceled
## 2349 4th Quarter Forecast Meetings Canceled
## 2350 4th Quarter Forecast Meetings Canceled
## 2351 4th Quarter Forecast Meetings Canceled
## 2352 4th Quarter Forecast Meetings Canceled
## 2353 4th Quarter Forecast Meetings Canceled
## 2354 4th Quarter Forecast Meetings Canceled
## 2355 4th Quarter Forecast Meetings Canceled
## 2356 4th Quarter Forecast Meetings Canceled
## 2357 4th Quarter Forecast Meetings Canceled
## 2358 4th Quarter Forecast Meetings Canceled
## 2359 4th Quarter Forecast Meetings Canceled
## 2360 4th Quarter Forecast Meetings Canceled
## 2361 4th Quarter Forecast Meetings Canceled
## 2362 4th Quarter Forecast Meetings Canceled
## 2363 4th Quarter Forecast Meetings Canceled
## 2364 4th Quarter Forecast Meetings Canceled
## 2365 RE:
## 2366 RE: How are we doing & my issues mtg.
## 2367
## 2368 RE: More base gas questions
## 2369 RE: update
## 2370 Fw: More base gas questions
## 2371 FW: PGE Incentive
## 2372 FW: Adaytum Update
## 2373 FW: Adaytum Update
## 2374 FW: GRI Msg: Time Sheet Submitted for JEANETTE Y . DOLL.
## 2375 FW: 4 Quarter for Stan
## 2376 4 Quarter EEOS
## 2377 4 Quarter EEOS
## 2378 4 Quarter EEOS
## 2379 4 Quarter EEOS
## 2380 FW: Transwestern Fair Value
## 2381 RE: Transwestern Fair Value
## 2382 RE: Transwestern Fair Value
## 2383
## 2384
## 2385
## 2386
## 2387
## 2388
## 2389
## 2390
## 2391
## 2392
## 2393
## 2394
## 2395
## 2396 RE: EPSC charges to cost centers
## 2397 RE: EPSC charges to cost centers
## 2398 RE: EPSC charges to cost centers
## 2399 RE: Bank question
## 2400 RE: Bank question
## 2401 RE: Bank question
## 2402 RE: Bank question
## 2403 RE: Bank question
## 2404 RE: EPSC charges to cost centers
## 2405 RE: EPSC charges to cost centers
## 2406 RE: EPSC charges to cost centers
## 2407 RE: EPSC charges to cost centers
## 2408 RE: EPSC charges to cost centers
## 2409 FW: Bank question
## 2410 FW: 2001 3CE and 2002 Plan
## 2411 FW: 2001 3CE and 2002 Plan
## 2412 Re: FW: Rockne questions
## 2413 Re:
## 2414 Re:
## 2415 Re:
## 2416 Fw: Re: Additional bank requests
## 2417 RE: Additional bank requests
## 2418 RE:
## 2419 Re: Additional bank requests
## 2420
## 2421 RE: Budget Meetings
## 2422 RE: Project Update
## 2423 RE: Project Update
## 2424 FW: TW Fuel Useage by compressor
## 2425 RE: Weekly Forecast
## 2426 RE: Weekly Forecast
## 2427 RE: Weekly Forecast
## 2428 RE: Weekly Forecast
## 2429 RE: revised timeline
## 2430 RE: revised timeline
## 2431 RE: revised timeline
## 2432 RE: revised timeline
## 2433 RE: revised timeline
## 2434 RE: revised timeline
## 2435 RE: revised timeline
## 2436 RE: 2002 Plan - Business Development Slides
## 2437 RE: 2002 Plan - Business Development Slides
## 2438 RE: 2002 Plan - Business Development Slides
## 2439 RE: 2002 Plan - Business Development Slides
## 2440 FW: FW: 2002 Plan Assessments as of 10/19/01 for EREC
## 2441 Accepted: Updated: Plan, Actuals, Data Warehouse, Adaytum
## 2442 RE: RE:
## 2443 RE: Suggested Template for Lay Reviews
## 2444 FW: Suggested Template for Lay Reviews
## 2445 FW: Suggested Template for Lay Reviews
## 2446 FW: Suggested Template for Lay Reviews
## 2447 FW: Suggested Template for Lay Reviews
## 2448 FW: Suggested Template for Lay Reviews
## 2449 FW: Suggested Template for Lay Reviews
## 2450 FW: Suggested Template for Lay Reviews
## 2451 Nov. 1 Meeting with Stan
## 2452 Nov. 1 Meeting with Stan
## 2453 Nov. 1 Meeting with Stan
## 2454 Nov. 1 Meeting with Stan
## 2455 Nov. 1 Meeting with Stan
## 2456 RE: Adaytum Project Update
## 2457 RE: Adaytum Project Update
## 2458 RE: Adaytum Project Update
## 2459 RE: Adaytum Project Update
## 2460 RE: Adaytum Project Update
## 2461 RE: Adaytum Project Update
## 2462 FW: Adaytum Project Update
## 2463 RE: Adaytum Project Update
## 2464 RE: Adaytum Project Update
## 2465 RE: Adaytum Project Update
## 2466 RE: Adaytum Project Update
## 2467 RE: Adaytum Project Update
## 2468 RE: Adaytum Project Update
## 2469 RE: Adaytum Project Update
## 2470 RE:
## 2471 RE:
## 2472 RE:
## 2473 RE: 2002 Plan - Lay Presentation w/Stan
## 2474 RE: November 13th Quarter Forecast meeting
## 2475 RE: November 13th Quarter Forecast meeting
## 2476 RE: November 13th Quarter Forecast meeting
## 2477 RE: 2002 Plan Lay Presentation Run Through
## 2478 data requested
## 2479 data requested
## 2480 data requested
## 2481 FW: 2002 Plan Lay Presentation Run Through
## 2482 FW: 2002 Plan Lay Presentation Run Through
## 2483 FW: 2002 Plan Lay Presentation Run Through
## 2484 FW: 2002 Plan Lay Presentation Run Through
## 2485 RE:
## 2486
## 2487 RE: October 26th "Weekly Commercial Net Contribution Summary"
## 2488 RE: ETS - Investor Questions
## 2489 RE: ETS - Investor Questions
## 2490 RE: ETS - Investor Questions
## 2491 FW: Cost Center
## 2492 FW: Cost Center
## 2493 FW: Cost Center
## 2494 RE: FW: BUSINESS REVIEWS IN EUROPE END OF 1ST QUARTER, 2002
## 2495 4th Q Revised
## 2496 4th Q Revised
## 2497 4th Q Revised
## 2498 FW: weekly forecast to Corp
## 2499 Suggested Template for Lay Reviews
## 2500 Suggested Template for Lay Reviews
## 2501 Suggested Template for Lay Reviews
## 2502 Suggested Template for Lay Reviews
## 2503 Suggested Template for Lay Reviews
## 2504 Suggested Template for Lay Reviews
## 2505 Suggested Template for Lay Reviews
## 2506 FW: FW: BUSINESS REVIEWS IN EUROPE END OF 1ST QUARTER, 2002
## 2507 FW: ETS - Investor Questions
## 2508 FW: ETS - Investor Questions
## 2509 FW: ETS - Investor Questions
## 2510 FW: 2002 IM Structure
## 2511 FW: 2002 IM Structure
## 2512 FW: 2002 IM Structure
## 2513 FW: 2002 IM Structure
## 2514 FW: 2002 IM Structure
## 2515 FW: 2002 IM Structure
## 2516 FW: 2002 IM Structure
## 2517 FW: 2002 IM Structure
## 2518 FW: 2002 IM Structure
## 2519 FW: 2002 IM Structure
## 2520 FW: 2002 IM Structure
## 2521 RE: wine
## 2522 FW: template for Lay Reviews
## 2523 RE:
## 2524 RE: TW Weekly
## 2525 FW: 2002 Corporate Assessments - Revision #4
## 2526 FW: 2002 Corporate Assessments - Revision #4
## 2527 Accepted: Kevin Hyatt, J.Centilli re Rates Struc for Sun Devil
## 2528 FW: template for Lay Reviews
## 2529 FW: template for Lay Reviews
## 2530 RE: Mary Cate Love 14 months
## 2531 RE: Mary Cate Love 14 months
## 2532 FW: Enron Article in Oct. 23 WSJ
## 2533 FW: Enron Article in Oct. 23 WSJ
## 2534 RE: Mary Cate Love 14 months
## 2535 RE: Mary Cate Love 14 months
## 2536 RE: 2002 Plan Lay Presentation Run Through
## 2537 FW: 2002 Plan Lay Presentation Run Through
## 2538 RE: Mary Cate Love 14 months
## 2539 RE: Mary Cate Love 14 months
## 2540 RE: FW: 2002 Plan Assessments as of 10/19/01 for EREC
## 2541 RE: Jan Moore 20 Years with Enron
## 2542 Jan Moore 20 Years with Enron
## 2543 Jan Moore 20 Years with Enron
## 2544 Jan Moore 20 Years with Enron
## 2545 Jan Moore 20 Years with Enron
## 2546 Jan Moore 20 Years with Enron
## 2547 Jan Moore 20 Years with Enron
## 2548 Jan Moore 20 Years with Enron
## 2549
## 2550 FW: FW: 2002 Plan Assessments as of 10/19/01 for EREC
## 2551 RE: FW: 2002 Plan Assessments as of 10/19/01 for EREC
## 2552 FW: Baby Copeland
## 2553 RE: 2002 Plan Allocations from ENA to Other Business Units
## 2554 FW: 2002 Plan Allocations from ENA to Other Business Units
## 2555 FW: 2002 Plan Lay Presentation Run Through
## 2556 FW: 2002 Plan Lay Presentation Run Through
## 2557 FW: 2002 Plan Lay Review Run Through
## 2558 FW: 2002 Plan Lay Review Run Through
## 2559 FW: 2002 Plan Lay Review Run Through
## 2560 FW: 2002 Plan Lay Review Run Through
## 2561 FW: 2002 Plan Lay Review Run Through
## 2562 FW: 2002 Plan Lay Review Run Through
## 2563 FW: 2002 Plan Lay Review Run Through
## 2564 FW: 2002 Plan Lay Review Run Through
## 2565 FW: 2002 Plan Lay Review Run Through
## 2566 FW: 2002 Plan Lay Review Run Through
## 2567 FW: 2002 Plan Lay Review Run Through
## 2568 FW: 2002 Plan Lay Review Run Through
## 2569 FW: 2002 Plan Lay Review Run Through
## 2570 FW: 2002 Plan Lay Review Run Through
## 2571 FW: 2002 Plan Lay Review Run Through
## 2572 FW: 2002 Plan Lay Review Run Through
## 2573 FW: 2002 Plan Lay Review Run Through
## 2574 FW: 2002 Plan Lay Review Run Through
## 2575 FW: 2002 Plan Lay Review Run Through
## 2576 FW: 2002 Plan Lay Review Run Through
## 2577 FW: 2002 Plan Lay Review Run Through
## 2578 FW: 2002 Plan Lay Review Run Through
## 2579 FW: 2002 Plan Lay Presentation Run Through
## 2580 FW: 2002 Plan Lay Presentation Run Through
## 2581 FW: 2002 Plan Lay Presentation Run Through
## 2582 FW: 2002 Plan Lay Presentation Run Through
## 2583 FW: 2002 Plan Lay Presentation Run Through
## 2584 FW: 2002 Plan Lay Presentation Run Through
## 2585 FW: 2002 Plan Lay Presentation Run Through
## 2586 FW: 2002 Plan Lay Presentation Run Through
## 2587 FW: 2002 Plan Lay Presentation Run Through
## 2588 FW: 2002 Plan Lay Presentation Run Through
## 2589 FW: 2002 Plan Lay Presentation Run Through
## 2590 FW: 2002 Plan Lay Presentation Run Through
## 2591 FW: 2002 Plan Lay Presentation Run Through
## 2592 FW: 2002 Plan Lay Presentation Run Through
## 2593 FW: 2002 Plan Lay Presentation Run Through
## 2594 FW: 2002 Plan Lay Presentation Run Through
## 2595 FW: 2002 Plan Lay Review Run Through
## 2596 FW: 2002 Plan Lay Review Run Through
## 2597 FW: 2002 Plan Lay Review Run Through
## 2598 FW: 2002 Plan Lay Review Run Through
## 2599 FW: 2002 Plan Lay Review Run Through
## 2600 FW: 2002 Plan Lay Review Run Through
## 2601 FW: 2002 Plan Lay Review Run Through
## 2602 FW: 2002 Plan Lay Review Run Through
## 2603 FW: 2002 Plan Lay Review Run Through
## 2604 FW: 2002 Plan Lay Review Run Through
## 2605 FW: 2002 Plan Lay Review Run Through
## 2606 FW: 2002 Plan Lay Review Run Through
## 2607 FW: 2002 Plan Lay Review Run Through
## 2608 FW: 2002 Plan Lay Review Run Through
## 2609 FW: 2002 Plan Lay Review Run Through
## 2610 FW: 2002 Plan Lay Review Run Through
## 2611 FW: 2002 Plan Lay Review Run Through
## 2612 FW: 2002 Plan Lay Review Run Through
## 2613 FW: 2002 Plan Lay Review Run Through
## 2614 FW: 2002 Plan Lay Review Run Through
## 2615 FW: 2002 Plan Lay Review Run Through
## 2616 FW: 2002 Plan Lay Review Run Through
## 2617 RE: Acquisition Projects
## 2618 RE: Acquisition Projects
## 2619 RE: Acquisition Projects
## 2620 RE: Acquisition Projects
## 2621 RE: Acquisition Projects
## 2622 2002 Plan Lay Review Run Through
## 2623 2002 Plan Lay Review Run Through
## 2624 2002 Plan Lay Review Run Through
## 2625 2002 Plan Lay Review Run Through
## 2626 2002 Plan Lay Review Run Through
## 2627 2002 Plan Lay Review Run Through
## 2628 2002 Plan Lay Review Run Through
## 2629 2002 Plan Lay Review Run Through
## 2630 2002 Plan Lay Review Run Through
## 2631 2002 Plan Lay Review Run Through
## 2632 2002 Plan Lay Review Run Through
## 2633 2002 Plan Lay Review Run Through
## 2634 2002 Plan Lay Review Run Through
## 2635 2002 Plan Lay Review Run Through
## 2636 2002 Plan Lay Review Run Through
## 2637 2002 Plan Lay Review Run Through
## 2638 2002 Plan Lay Review Run Through
## 2639 2002 Plan Lay Review Run Through
## 2640 2002 Plan Lay Review Run Through
## 2641 2002 Plan Lay Review Run Through
## 2642 RE: Oasis Dairy Farms Judgement
## 2643 RE:
## 2644 FW: 2002 Plan Lay Presentation Run Through
## 2645 FW: 2002 Plan Lay Presentation Run Through
## 2646 FW: 2002 Plan Lay Presentation Run Through
## 2647 FW: 2002 Plan Lay Presentation Run Through
## 2648 FW: 4 Quarter Update
## 2649 FW: 2002 Plan Assessments as of 10/19/01 for EREC
## 2650 FW: 2002 Plan Assessments as of 10/19/01 for EREC
## 2651 FW: 2002 Plan Assessments as of 10/19/01 for EREC
## 2652 FW: 2002 Plan Assessments as of 10/19/01 for EREC
## 2653 FW: 2002 Plan Assessments as of 10/19/01 for EREC
## 2654 FW: 2002 Plan Assessments as of 10/19/01 for EREC
## 2655 FW: 2002 Plan Assessments as of 10/19/01 for EREC
## 2656 FW: 2002 Plan Assessments as of 10/19/01 for EREC
## 2657 FW: 2002 Plan Assessments as of 10/19/01 for ETS
## 2658 RE: Southern Trails Project
## 2659 RE: Southern Trails Project
## 2660 RE: 2002 Plan Lay Presentation Run Through
## 2661 RE: 2002 Plan Lay Presentation Run Through
## 2662 RE: 2002 Plan Lay Presentation Run Through
## 2663 RE: Oneok Claim on EPPI
## 2664 RE: Oneok Claim on EPPI
## 2665 RE: Oneok Claim on EPPI
## 2666 RE: Oneok Claim on EPPI
## 2667 RE: Oneok Claim on EPPI
## 2668 RE: Oneok Claim on EPPI
## 2669 RE: Oneok Claim on EPPI
## 2670 RE: Oneok Claim on EPPI
## 2671 RE: Oneok Claim on EPPI
## 2672 RE: Oneok Claim on EPPI
## 2673 RE: 3CE
## 2674 RE: 3CE
## 2675 RE: 3CE
## 2676 RE: 3CE
## 2677 RE: 3CE
## 2678 RE: 3CE
## 2679 RE: 3CE
## 2680 FW: Allocations
## 2681 FW: 2002 Plan Lay Presentation Run Through
## 2682 FW: Bullets for Week of October 15
## 2683 FW: Bullets for Week of October 15
## 2684 FW: Bullets for Week of October 15
## 2685 FW: Bullets for Week of October 15
## 2686 FW: Bullets for Week of October 15
## 2687 FW: Bullets for Week of October 15
## 2688 FW: Bullets for Week of October 15
## 2689 FW: October 18 4th Quarter Forecast Review with Stan Canceled
## 2690 FW: October 18 4th Quarter Forecast Review with Stan Canceled
## 2691 RE: 4 Quarter Update
## 2692 RE: 4 Quarter Update
## 2693 RE: 4 Quarter Update
## 2694 RE:
## 2695 RE: GRI Msg: Time Sheet Submitted for JEANETTE Y . DOLL.
## 2696 RE: 4 Quarter Update
## 2697 RE: 4 Quarter Update
## 2698 RE: 4 Quarter Update
## 2699 RE: 4 Quarter Update
## 2700 FW: 2002 Plan Lay Presentation Run Through
## 2701 FW: 2002 Plan Lay Presentation Run Through
## 2702 RE: Louise Kitchen meeting rescheduled again
## 2703 4 Quarter Update
## 2704 4 Quarter Update
## 2705 4 Quarter Update
## 2706 4 Quarter Update
## 2707 4 Quarter Update
## 2708 4 Quarter Update
## 2709 4 Quarter Update
## 2710 4 Quarter Update
## 2711 4 Quarter Update
## 2712 4 Quarter Update
## 2713 FW: 2002 Plan Lay Presentation Run Through
## 2714 FW: 2002 Plan Lay Presentation Run Through
## 2715 FW: 2002 Plan Lay Presentation Run Through
## 2716 FW: 2002 Plan Lay Presentation Run Through
## 2717 FW: 2002 Plan Lay Presentation Run Through
## 2718 FW: 2002 Plan Lay Presentation Run Through
## 2719 2002 Plan Lay Presentation Run Through
## 2720 2002 Plan Lay Presentation Run Through
## 2721 2002 Plan Lay Presentation Run Through
## 2722 2002 Plan Lay Presentation Run Through
## 2723 2002 Plan Lay Presentation Run Through
## 2724 2002 Plan Lay Presentation Run Through
## 2725 2002 Plan Lay Presentation Run Through
## 2726 2002 Plan Lay Presentation Run Through
## 2727 2002 Plan Lay Presentation Run Through
## 2728 2002 Plan Lay Presentation Run Through
## 2729 2002 Plan Lay Presentation Run Through
## 2730 2002 Plan Lay Presentation Run Through
## 2731 2002 Plan Lay Presentation Run Through
## 2732 2002 Plan Lay Presentation Run Through
## 2733 2002 Plan Lay Presentation Run Through
## 2734 2002 Plan Lay Presentation Run Through
## 2735 2002 Plan Lay Presentation Run Through
## 2736 2002 Plan Lay Presentation Run Through
## 2737 2002 Plan Lay Presentation Run Through
## 2738 2002 Plan Lay Presentation Run Through
## 2739 2002 Plan Lay Presentation Run Through
## 2740 2002 Plan Lay Presentation Run Through
## 2741 2002 Plan Lay Presentation Run Through
## 2742 2002 Plan Lay Presentation Run Through
## 2743 2002 Plan Lay Presentation Run Through
## 2744 2002 Plan Lay Presentation Run Through
## 2745 2002 Plan Lay Presentation Run Through
## 2746 2002 Plan Lay Presentation Run Through
## 2747 2002 Plan Lay Presentation Run Through
## 2748 RE: Status of Trading Activities
## 2749 RE: 3rd curr est
## 2750 RE: EGAS 4th Qtr
## 2751 RE: EGAS 4th Qtr
## 2752 RE: Questar Southern Trails Due Diligence
## 2753 RE: Questar Southern Trails Due Diligence
## 2754 RE: Questar Southern Trails Due Diligence
## 2755 RE: Questar Southern Trails Due Diligence
## 2756 RE: Questar Southern Trails Due Diligence
## 2757 RE: 3rd curr est
## 2758 RE: LaPlata DRA Application Cost Estimate
## 2759 RE: Status of Trading Activities
## 2760 RE: 2002 Plan - Presentation Pages for Executive Review
## 2761 FW: BUSINESS REVIEWS IN EUROPE END OF 1ST QUARTER, 2002
## 2762 FW: BUSINESS REVIEWS IN EUROPE END OF 1ST QUARTER, 2002
## 2763
## 2764 FW: October 22 Meeting Canceled
## 2765 RE: Are you up for a make up game?
## 2766 RE: Are you up for a make up game?
## 2767 RE: 2002 Capital Budget
## 2768 October 22 Meeting Canceled
## 2769 October 22 Meeting Canceled
## 2770 October 22 Meeting Canceled
## 2771 October 22 Meeting Canceled
## 2772 October 22 Meeting Canceled
## 2773 October 22 Meeting Canceled
## 2774 October 22 Meeting Canceled
## 2775 October 22 Meeting Canceled
## 2776 October 22 Meeting Canceled
## 2777 October 22 Meeting Canceled
## 2778 October 22 Meeting Canceled
## 2779 October 22 Meeting Canceled
## 2780 October 22 Meeting Canceled
## 2781 October 22 Meeting Canceled
## 2782 October 22 Meeting Canceled
## 2783 October 22 Meeting Canceled
## 2784 October 22 Meeting Canceled
## 2785 October 22 Meeting Canceled
## 2786 October 22 Meeting Canceled
## 2787 October 22 Meeting Canceled
## 2788 October 22 Meeting Canceled
## 2789 October 22 Meeting Canceled
## 2790 October 22 Meeting Canceled
## 2791 October 22 Meeting Canceled
## 2792 October 22 Meeting Canceled
## 2793 October 22 Meeting Canceled
## 2794 October 22 Meeting Canceled
## 2795 October 22 Meeting Canceled
## 2796 October 22 Meeting Canceled
## 2797 October 22 Meeting Canceled
## 2798 October 22 Meeting Canceled
## 2799 October 22 Meeting Canceled
## 2800 October 22 Meeting Canceled
## 2801 October 22 Meeting Canceled
## 2802 October 22 Meeting Canceled
## 2803 October 22 Meeting Canceled
## 2804 October 22 Meeting Canceled
## 2805 October 22 Meeting Canceled
## 2806 October 22 Meeting Canceled
## 2807 October 22 Meeting Canceled
## 2808 October 22 Meeting Canceled
## 2809 October 22 Meeting Canceled
## 2810 October 22 Meeting Canceled
## 2811 FW: Organizational Announcement
## 2812 FW: Updated 2002 Corporate Assessments - Revision #3
## 2813 RE: P00406292 - 643012 Kim Phan (Eva)
## 2814 RE: P00406292 - 643012 Kim Phan (Eva)
## 2815 RE: P00406292 - 643012 Kim Phan (Eva)
## 2816 RE: P00406292 - 643012 Kim Phan (Eva)
## 2817 RE: P00406292 - 643012 Kim Phan (Eva)
## 2818 RE: P00406292 - 643012 Kim Phan (Eva)
## 2819 RE: P00406292 - 643012 Kim Phan (Eva)
## 2820 RE: P00406292 - 643012 Kim Phan (Eva)
## 2821 FW: Updated 2002 Corporate Assessments - Revision #3
## 2822 FW: Updated 2002 Corporate Assessments - Revision #3
## 2823 FW: Updated 2002 Corporate Assessments - Revision #3
## 2824 FW: Updated 2002 Corporate Assessments - Revision #3
## 2825 FW: Updated 2002 Corporate Assessments - Revision #3
## 2826 RE: Lay Presentation
## 2827 RE: Lay Presentation
## 2828 RE: Lay Presentation
## 2829 RE: Lay Presentation
## 2830 RE: Nutcracker Market
## 2831 RE: Nutcracker Market
## 2832 RE: EGAS 4th Qtr
## 2833 RE: EGAS 4th Qtr
## 2834 RE: EGAS 4th Qtr
## 2835 RE: EGAS 4th Qtr
## 2836 RE: EGAS 4th Qtr
## 2837 RE: EGAS 4th Qtr
## 2838 RE: EGAS 4th Qtr
## 2839 RE: EGAS 4th Qtr
## 2840 RE: EGAS 4th Qtr
## 2841 RE: Lay Presentation
## 2842 RE: Lay Presentation
## 2843 RE: Lay Presentation
## 2844 RE: Lay Presentation
## 2845 RE: How are we doing and what are my issues meeting?
## 2846 RE: How are we doing and what are my issues meeting?
## 2847 RE: How are we doing and what are my issues meeting?
## 2848 RE: Additional followup earnings release questions from Tony Jackson
## 2849 RE: ETS resource requirements
## 2850 Accepted: Updated: Location updated....Data Warehouse Efforts Re: Adaytum, Plan and Cost Reporting for 2002
## 2851 RE: Coyonosa
## 2852 RE: Coyonosa
## 2853 FW: 2 nd version of Plan...
## 2854 FW: TW-COGS
## 2855 RE: 2 nd version of Plan...
## 2856 RE: 2 nd version of Plan...
## 2857 RE: 2 nd version of Plan...
## 2858 RE: 2 nd version of Plan...
## 2859 RE: 2 nd version of Plan...
## 2860 RE: 2 nd version of Plan...
## 2861 RE: 2 nd version of Plan...
## 2862 FW: 2002 Plan Allocations from ENA
## 2863 FW: Adaytum Invoices Issues
## 2864 RE: Exceptions
## 2865 RE: UH 2000 Recruiting Team.xls
## 2866 ETS Commercial Summary Page
## 2867 FW: 2002 Plan Pres
## 2868 October 18 4th Quarter Forecast Review with Stan Canceled
## 2869 October 18 4th Quarter Forecast Review with Stan Canceled
## 2870 October 18 4th Quarter Forecast Review with Stan Canceled
## 2871 October 18 4th Quarter Forecast Review with Stan Canceled
## 2872 October 18 4th Quarter Forecast Review with Stan Canceled
## 2873 October 18 4th Quarter Forecast Review with Stan Canceled
## 2874 October 18 4th Quarter Forecast Review with Stan Canceled
## 2875 October 18 4th Quarter Forecast Review with Stan Canceled
## 2876 October 18 4th Quarter Forecast Review with Stan Canceled
## 2877 October 18 4th Quarter Forecast Review with Stan Canceled
## 2878 October 18 4th Quarter Forecast Review with Stan Canceled
## 2879 October 18 4th Quarter Forecast Review with Stan Canceled
## 2880 October 18 4th Quarter Forecast Review with Stan Canceled
## 2881 October 18 4th Quarter Forecast Review with Stan Canceled
## 2882 October 18 4th Quarter Forecast Review with Stan Canceled
## 2883 October 18 4th Quarter Forecast Review with Stan Canceled
## 2884 October 18 4th Quarter Forecast Review with Stan Canceled
## 2885 October 18 4th Quarter Forecast Review with Stan Canceled
## 2886 October 18 4th Quarter Forecast Review with Stan Canceled
## 2887 October 18 4th Quarter Forecast Review with Stan Canceled
## 2888 October 18 4th Quarter Forecast Review with Stan Canceled
## 2889 October 18 4th Quarter Forecast Review with Stan Canceled
## 2890 October 18 4th Quarter Forecast Review with Stan Canceled
## 2891 October 18 4th Quarter Forecast Review with Stan Canceled
## 2892 October 18 4th Quarter Forecast Review with Stan Canceled
## 2893 October 18 4th Quarter Forecast Review with Stan Canceled
## 2894 October 18 4th Quarter Forecast Review with Stan Canceled
## 2895 October 18 4th Quarter Forecast Review with Stan Canceled
## 2896 October 18 4th Quarter Forecast Review with Stan Canceled
## 2897 October 18 4th Quarter Forecast Review with Stan Canceled
## 2898 October 18 4th Quarter Forecast Review with Stan Canceled
## 2899 October 18 4th Quarter Forecast Review with Stan Canceled
## 2900 October 18 4th Quarter Forecast Review with Stan Canceled
## 2901 October 18 4th Quarter Forecast Review with Stan Canceled
## 2902 October 18 4th Quarter Forecast Review with Stan Canceled
## 2903 FW: Outage Commericial Review Meeting
## 2904 FW: Outage Commericial Review Meeting
## 2905 FW: Cal s resume
## 2906 FW: Cal s resume
## 2907 RE: September Capital Charge
## 2908 FW: 2002 Plan Review Agenda
## 2909 FW: September Capital Charge
## 2910 FW:
## 2911 RE: 620382: Greg McIlwain: DB
## 2912 RE:
## 2913 RE:
## 2914 RE:
## 2915 FW: ETS SLIDES
## 2916 FW: ETS SLIDES
## 2917 FW: ETS SLIDES
## 2918 RE: SAP COSTS 2002
## 2919 SAP COSTS 2002
## 2920 SAP COSTS 2002
## 2921 SAP COSTS 2002
## 2922 SAP COSTS 2002
## 2923 RE: Allocations in the 2002 Plan
## 2924 RE: ETS SLIDES
## 2925 FW: 2002 Plan
## 2926 RE: NNG Commercial "Worry List for 2002"
## 2927 RE: NNG Commercial "Worry List for 2002"
## 2928
## 2929
## 2930 RE:
## 2931 RE: Lay Agenda
## 2932 RE: Password needed FW: ETS Statistics
## 2933 RE: Password needed FW: ETS Statistics
## 2934 RE: Password needed FW: ETS Statistics
## 2935 RE: Password needed FW: ETS Statistics
## 2936 RE: Password needed FW: ETS Statistics
## 2937 RE: Password needed FW: ETS Statistics
## 2938 RE: Password needed FW: ETS Statistics
## 2939 RE: Proposed Meeting next Thursday
## 2940 Lay Agenda
## 2941 Lay Review Agenda
## 2942 EGAS 2002 Capital Budget Review
## 2943 EGAS 2002 Capital Budget Review
## 2944 EGAS 2002 Capital Budget Review
## 2945 NEPCO Meeting Oct. 9
## 2946 NEPCO Meeting Oct. 9
## 2947 NEPCO Meeting Oct. 9
## 2948 NEPCO Meeting Oct. 9
## 2949 NEPCO Meeting Oct. 9
## 2950 NEPCO Meeting Oct. 9
## 2951 NEPCO Meeting Oct. 9
## 2952 RE: Proposed Meeting next Thursday
## 2953 RE: Proposed Meeting next Thursday
## 2954 FW: 2002 Plan
## 2955 RE: Proposed Meeting next Thursday
## 2956 RE: Proposed Meeting next Thursday
## 2957 RE: Proposed Meeting next Thursday
## 2958 RE: Proposed Meeting next Thursday
## 2959 RE: Proposed Meeting next Thursday
## 2960 RE: 3rd Quarter Reporting Package for 2001 (E-Schedules)
## 2961 FW: Standby / Cooper Pre-Buy
## 2962 FW: Standby / Cooper Pre-Buy
## 2963 RE: Proposed Meeting next Thursday
## 2964 RE: Proposed Meeting next Thursday
## 2965 RE: Proposed Meeting next Thursday
## 2966 RE: Proposed Meeting next Thursday
## 2967 FW: Functional Roll Forward
## 2968 RE: October Weekly
## 2969 FW: NNG & TW Ad Valorem Tax Accrual - 2002 Plan vs. 2001 Forecast
## 2970 RE: corp charges review
## 2971 RE: O & M in categories by legal entity.
## 2972 FW:
## 2973 RE: 2002 O&M by Legal Entity
## 2974 RE: 2002 O&M by Legal Entity
## 2975 RE: 2002 O&M by Legal Entity
## 2976 RE: 2002 O&M by Legal Entity
## 2977 RE: 2002 O&M by Legal Entity
## 2978 RE: 2002 O&M by Legal Entity
## 2979 RE: 2002 O&M by Legal Entity
## 2980 RE: corp charges review
## 2981 RE: corp charges review
## 2982 RE: corp charges review
## 2983 RE: 2002 Budget Review - EEOS
## 2984 RE: 2002 Budget Review - EEOS
## 2985 FW: 2002 Budget Review - EEOS
## 2986 RE: United Way Young Leaders
## 2987 FW: Days Off
## 2988 RE: Days Off
## 2989 FW: REQUEST - 2001 Operating Expenses - High Priority
## 2990 FW: EGF 2002 Allocations - ETS/Others
## 2991 FW: EGF 2002 Allocations - ETS/Others
## 2992 RE: c.c.#111703
## 2993 RE: Weekly Commercial Net Contribution Summary
## 2994 O & M in categories by legal entity.
## 2995 O & M in categories by legal entity.
## 2996 O & M in categories by legal entity.
## 2997 FW: 2002 Plan Template - REVISION
## 2998 FW: 2002 Plan Template - REVISION
## 2999 FW: 2002 Plan Template - REVISION
## 3000 FW: 2002 Plan Template - REVISION
## 3001 FW: 2002 Plan Template - REVISION
## 3002 RE: 2002 Budget Review - EEOS
## 3003 RE: 2002 Budget Review - EEOS
## 3004 RE: 2002 Budget Review - EEOS
## 3005 RE: 2002 Budget Review - EEOS
## 3006 RE: 2002 Budget Review - EEOS
## 3007 RE: 2002 Budget Review - EEOS
## 3008 RE: 2002 Budget Review - EEOS
## 3009 RE: Help
## 3010 RE: TW 2002 Plan Summary
## 3011 FW: Azurix 2002 Plan Review
## 3012 FW: Azurix 2002 Plan Review
## 3013 FW: Azurix 2002 Plan Review
## 3014 FW: Azurix 2002 Plan Review
## 3015 FW: Azurix 2002 Plan Review
## 3016 FW: Azurix 2002 Plan Review
## 3017 FW: Azurix 2002 Plan Review
## 3018 FW:
## 3019 FW: Azurix 2002 Plan Review
## 3020 RE: Weekly Commercial Net Contribution Summary
## 3021 RE: Weekly Commercial Net Contribution Summary
## 3022 RE: Weekly Commercial Net Contribution Summary
## 3023 RE: Weekly Commercial Net Contribution Summary
## 3024 RE: Weekly Commercial Net Contribution Summary
## 3025 RE: Weekly Commercial Net Contribution Summary
## 3026 RE:
## 3027 RE: REQUEST - 2001 Operating Expenses - High Priority
## 3028 FW: Azurix 2002 Plan Review
## 3029 FW: Azurix 2002 Plan Review
## 3030 FW:
## 3031 RE: Honeymoon in Vegas
## 3032 FW: REQUEST - 2001 Operating Expenses - High Priority
## 3033 RE: Azurix 2002 Plan Review
## 3034 Mother s Night Out
## 3035 FW: REQUEST - 2001 Operating Expenses - High Priority
## 3036 FW: REQUEST - 2001 Operating Expenses - High Priority
## 3037 FW: REQUEST - 2001 Operating Expenses - High Priority
## 3038 FW: REQUEST - 2001 Operating Expenses - High Priority
## 3039 Azurix 2002 Plan Review
## 3040 Azurix 2002 Plan Review
## 3041 Azurix 2002 Plan Review
## 3042 FW: REQUEST - 2001 Operating Expenses - High Priority
## 3043 FW: 2002 Plan
## 3044 Targets
## 3045
## 3046 FW: 2002 Plan Headcount for ENW
## 3047 RE: FW:
## 3048 RE: FW:
## 3049 RE: Azurix 2002 Plan Review
## 3050 FW: Project Sunrise September 30 Go-Live Status
## 3051 FW: Azurix 2002 Plan Review
## 3052 RE:
## 3053 Azurix 2002 Plan Review
## 3054 Wessex 2002 Plan Review with Stan
## 3055 Wessex 2002 Plan Review with Stan
## 3056 Wessex 2002 Plan Review with Stan
## 3057 Wessex 2002 Plan Review with Stan
## 3058 Wessex 2002 Plan Review with Stan
## 3059 Wessex 2002 Plan Review with Stan
## 3060 Wessex 2002 Plan Review with Stan
## 3061 FW: New Employee Expense accounts
## 3062 FW: Hoang s Availability - Week of 10/29
## 3063 RE: TW Daily Balance 09/27/01
## 3064 RE: TW Daily Balance 09/27/01
## 3065 RE: TW Daily Balance 09/27/01
## 3066 RE: TW Daily Balance 09/27/01
## 3067 RE: TW Daily Balance 09/27/01
## 3068 RE: TW Daily Balance 09/27/01
## 3069 RE: TW Daily Balance 09/27/01
## 3070 4th Q IBIT
## 3071 4th Q IBIT
## 3072 4th Q IBIT
## 3073 4th Q IBIT
## 3074 4th Q IBIT
## 3075 RE:
## 3076 insurance
## 3077 RE:
## 3078
## 3079 RE:
## 3080 RE:
## 3081 RE: TW Order 637 Filing
## 3082 RE: Doctor s Appointment
## 3083 TW Order 637 Filing
## 3084 TW Order 637 Filing
## 3085 TW Order 637 Filing
## 3086 TW Order 637 Filing
## 3087 TW Order 637 Filing
## 3088 TW Order 637 Filing
## 3089 TW Order 637 Filing
## 3090 TW Order 637 Filing
## 3091 TW Order 637 Filing
## 3092 RE:
## 3093 RE: Doctor s Appointment
## 3094 Doctor s Appointment
## 3095 RE: REORIENTATION
## 3096 RE: PPA Processing
## 3097 FW: PPA Processing
## 3098 FW: PPA Processing
## 3099 FW: PPA Processing
## 3100 RE: Accumulated Deferred inc taxes
## 3101 FW: Please plan to attend
## 3102 FW: TW Tariff
## 3103 FW: TW Tariff
## 3104 FW: Quote for the day, #1,246.
## 3105 RE: TW rate sheets
## 3106 RE: TW rate sheets
## 3107 RE: TW rate sheets
## 3108 RE: TW rate sheets
## 3109 RE: TW rate sheets
## 3110 FW: Quote for the day, #1,246.
## 3111 RE: TW Year End Audit
## 3112 RE: TW Year End Audit
## 3113 RE: West Florida Electric Co-op for Sta. 13
## 3114 FW: West Florida Electric Co-op for Sta. 13
## 3115 RE: March Vacation Plan
## 3116 FW: i luv this one
## 3117 RE: Phase V Pack, Purge and Blowdown Strategy Meeting 2/27/02 9AM in 46C2
## 3118 Invoice from Platt s
## 3119 Invoice from Platt s
## 3120 Invoice from Platt s
## 3121 Invoice from Platt s
## 3122 Invoice from Platt s
## 3123 Invoice from Platt s
## 3124 Invoice from Platt s
## 3125 Invoice from Platt s
## 3126 Invoice from Platt s
## 3127 RE: TW rate base at 12/31/01
## 3128 FW: Current Regulatory Regime
## 3129 FW: Current Regulatory Regime
## 3130 RE: PAL Postings
## 3131 RE: PAL Postings
## 3132 RE: PAL Postings
## 3133 RE: PAL Postings
## 3134 RE: PAL Postings
## 3135 RE: PAL Postings
## 3136 FW: Interest Rate in Tariff
## 3137 RE: Today
## 3138 RE: Today
## 3139 RE: Fuel Meeting Rescheduled
## 3140 RE: Fuel Meeting Rescheduled
## 3141 RE: Fuel Meeting Rescheduled
## 3142 RE: Fuel Meeting Rescheduled
## 3143 RE: Fuel Meeting Rescheduled
## 3144 RE: Fuel Meeting Rescheduled
## 3145 RE: Fuel Meeting Rescheduled
## 3146 RE: Fuel Meeting Rescheduled
## 3147 RE: Fuel Meeting Rescheduled
## 3148 FERC Reporting Requirements for California Gas Deliveries
## 3149 FERC Reporting Requirements for California Gas Deliveries
## 3150 FERC Reporting Requirements for California Gas Deliveries
## 3151 FERC Reporting Requirements for California Gas Deliveries
## 3152 FERC Reporting Requirements for California Gas Deliveries
## 3153 FERC Reporting Requirements for California Gas Deliveries
## 3154 FERC Reporting Requirements for California Gas Deliveries
## 3155 RE: Fuel Meeting Rescheduled
## 3156 RE: Fuel Meeting Rescheduled
## 3157 RE: Fuel Meeting Rescheduled
## 3158 RE: Fuel Meeting Rescheduled
## 3159 RE: Fuel Meeting Rescheduled
## 3160 RE: Fuel Meeting Rescheduled
## 3161 RE: Fuel Meeting Rescheduled
## 3162 RE: Fuel Meeting Rescheduled
## 3163 RE: Meeting
## 3164 RE: Plan Assumptions with Stan, 2/6/02, 8:00 am
## 3165 RE: Plan Assumptions with Stan, 2/6/02, 8:00 am
## 3166 RE: Plan Assumptions with Stan, 2/6/02, 8:00 am
## 3167 RE: Plan Assumptions with Stan, 2/6/02, 8:00 am
## 3168 RE: Plan Assumptions with Stan, 2/6/02, 8:00 am
## 3169 RE: Plan Assumptions with Stan, 2/6/02, 8:00 am
## 3170 RE: Plan Assumptions with Stan, 2/6/02, 8:00 am
## 3171 RE: Plan Assumptions with Stan, 2/6/02, 8:00 am
## 3172 RE: INGAA Conference Call
## 3173 RE: INGAA Conference Call
## 3174 RE: TW Overhead WO
## 3175 RE: TW Overhead WO
## 3176 RE: TW Overhead WO
## 3177 RE: TW Overhead WO
## 3178 RE: TW Overhead WO
## 3179 RE: TW Overhead WO
## 3180 RE: TW Overhead WO
## 3181 RE: TW Overhead WO
## 3182 RE: TW Overhead WO
## 3183 RE: TW Overhead WO
## 3184 RE: Appointments
## 3185 RE: SoCalGas Counter Offer
## 3186 RE: DVC Letter
## 3187 RE: DVC Letter
## 3188 RE: DVC Letter
## 3189 RE: DVC Letter
## 3190 FW: Sending a smile
## 3191 RE: AVAILABLE FIRM CAPACITY ON TRANSWESTERN
## 3192 RE: AVAILABLE FIRM CAPACITY ON TRANSWESTERN
## 3193 RE: AVAILABLE FIRM CAPACITY ON TRANSWESTERN
## 3194 RE: TW Tariff changes to allow for Electronic Contracting
## 3195 RE: TW Tariff changes to allow for Electronic Contracting
## 3196 RE: TW Tariff changes to allow for Electronic Contracting
## 3197 RE: TW Tariff changes to allow for Electronic Contracting
## 3198 RE: TW Tariff changes to allow for Electronic Contracting
## 3199 RE: TW Tariff changes to allow for Electronic Contracting
## 3200 RE: TW Tariff changes to allow for Electronic Contracting
## 3201 RE: TW Tariff changes to allow for Electronic Contracting
## 3202 RE: TW Tariff changes to allow for Electronic Contracting
## 3203 RE: Motion to Intervene in PG&E FERC Proceeding
## 3204 RE: Motion to Intervene in PG&E FERC Proceeding
## 3205 RE: Motion to Intervene in PG&E FERC Proceeding
## 3206 RE: Motion to Intervene in PG&E FERC Proceeding
## 3207 RE: Motion to Intervene in PG&E FERC Proceeding
## 3208 RE: Motion to Intervene in PG&E FERC Proceeding
## 3209 RE: Motion to Intervene in PG&E FERC Proceeding
## 3210 RE: Motion to Intervene in PG&E FERC Proceeding
## 3211 RE: Motion to Intervene in PG&E FERC Proceeding
## 3212 RE: Interconnect Agreement - Questar Southern Trails
## 3213 RE: PGS Segmenting Alternate Pt. Priorities
## 3214 RE: Why markers don t make good Christmas gifts...
## 3215 RE: PGS Segmenting Alternate Pt. Priorities
## 3216 RE: TW Tariff Sheet 73
## 3217 RE: TW Tariff Sheet 73
## 3218 RE: TW Tariff Sheet 73
## 3219 RE: TW Tariff Sheet 73
## 3220 RE: TW Tariff Sheet 73
## 3221 RE: TW Tariff Sheet 73
## 3222 RE: TW Tariff Sheet 73
## 3223 RE: TW Tariff Sheet 73
## 3224 RE: TW Tariff Sheet 73
## 3225 FW: Fw: A cat s tale
## 3226 FW: Fw: A cat s tale
## 3227 FW: Web Site Posting for New Cash Out Pricing Provisions
## 3228 FW: RED ROCK WEEKLY REPORT W/E 01/10/02
## 3229 RE: SFTS conversions
## 3230 RE: SFTS conversions
## 3231 RE: SFTS conversions
## 3232 RE: SFTS conversions
## 3233 RE: SFTS conversions
## 3234 RE: SFTS conversions
## 3235 RE: SFTS conversions
## 3236 RE: SFTS conversions
## 3237 FW: Web Site Posting for New Cash Out Pricing Provisions
## 3238 RE: How To Tell Which Cat Ate Your Drugs
## 3239 RE: Index Posting
## 3240 RE: Index Posting
## 3241 RE: Index Posting
## 3242 RE: Index Posting
## 3243 FW: 2nd Revised Ratings Outline - TW
## 3244 RE: Attachment A - Payment Schedule
## 3245 RE: Attachment A - Payment Schedule
## 3246 RE: Attachment A - Payment Schedule
## 3247 RE: Attachment A - Payment Schedule
## 3248 RE: Attachment A - Payment Schedule
## 3249 RE: Attachment A - Payment Schedule
## 3250 RE: Attachment A - Payment Schedule
## 3251 Newsletter
## 3252 Newsletter
## 3253 RE: Can t Please Everyone
## 3254 RE: Paper Situation
## 3255 RE: Paper Situation
## 3256 RE: Paper Situation
## 3257 RE: Paper Situation
## 3258 RE: Paper Situation
## 3259 RE: Paper Situation
## 3260 RE: Paper Situation
## 3261 RE: Paper Situation
## 3262 RE: Paper Situation
## 3263 RE: Paper Situation
## 3264 RE: Paper Situation
## 3265 RE: Paper Situation
## 3266 RE: Paper Situation
## 3267 RE: Paper Situation
## 3268 RE: Paper Situation
## 3269 RE: Paper Situation
## 3270 RE: Paper Situation
## 3271 RE: Paper Situation
## 3272 RE: Paper Situation
## 3273 RE: Paper Situation
## 3274 RE: Paper Situation
## 3275 RE: Paper Situation
## 3276 RE: Paper Situation
## 3277 RE: Paper Situation
## 3278 RE: Paper Situation
## 3279 RE: Paper Situation
## 3280 RE: Paper Situation
## 3281 RE: Paper Situation
## 3282 RE: Paper Situation
## 3283 RE: Paper Situation
## 3284 RE: Paper Situation
## 3285 RE: Paper Situation
## 3286 RE: Paper Situation
## 3287 RE: Paper Situation
## 3288 RE: Paper Situation
## 3289 RE: Paper Situation
## 3290 RE: Paper Situation
## 3291 RE: Paper Situation
## 3292 RE: Paper Situation
## 3293 RE: Paper Situation
## 3294 RE: Paper Situation
## 3295 RE: Paper Situation
## 3296 RE: Paper Situation
## 3297 RE: Paper Situation
## 3298 RE: Paper Situation
## 3299 RE: Paper Situation
## 3300 RE: Paper Situation
## 3301 RE: Paper Situation
## 3302 RE: Paper Situation
## 3303 RE: Paper Situation
## 3304 RE: Paper Situation
## 3305 RE: Paper Situation
## 3306 RE: Paper Situation
## 3307 RE: Paper Situation
## 3308 RE: Paper Situation
## 3309 RE: Paper Situation
## 3310 RE: Paper Situation
## 3311 RE: Paper Situation
## 3312 RE: Paper Situation
## 3313 RE: Paper Situation
## 3314 RE: Paper Situation
## 3315 RE: Paper Situation
## 3316 RE: Paper Situation
## 3317 RE: Paper Situation
## 3318 RE: Paper Situation
## 3319 RE: Paper Situation
## 3320 RE: Paper Situation
## 3321 RE: Paper Situation
## 3322 RE: Paper Situation
## 3323 RE: Paper Situation
## 3324 RE: Paper Situation
## 3325 RE: Paper Situation
## 3326 RE: Jeanette Doll
## 3327 RE: Jeanette Doll
## 3328 RE: Jeanette Doll
## 3329 RE: Jeanette Doll
## 3330 RE: Jeanette Doll
## 3331 RE: Jeanette Doll
## 3332 RE: Jeanette Doll
## 3333 RE: Jeanette Doll
## 3334 RE: Jeanette Doll
## 3335 RE: Jeanette Doll
## 3336 RE: Jeanette Doll
## 3337 RE: Jeanette Doll
## 3338 RE: Jeanette Doll
## 3339 RE: Jeanette Doll
## 3340 RE: Jeanette Doll
## 3341 RE: Jeanette Doll
## 3342 FW: Jeanette Doll
## 3343 FW: Jeanette Doll
## 3344 Toaster
## 3345 Toaster
## 3346 Toaster
## 3347 Toaster
## 3348 Toaster
## 3349 Toaster
## 3350 Toaster
## 3351 Toaster
## 3352 Toaster
## 3353 Toaster
## 3354 Toaster
## 3355 Toaster
## 3356 Toaster
## 3357 Toaster
## 3358 Toaster
## 3359 Toaster
## 3360 Toaster
## 3361 Toaster
## 3362 Toaster
## 3363 Toaster
## 3364 Toaster
## 3365 Toaster
## 3366 Toaster
## 3367 Toaster
## 3368 Toaster
## 3369 Toaster
## 3370 Toaster
## 3371 FW: Paper Situation
## 3372 FW: Paper Situation
## 3373 FW: Paper Situation
## 3374 FW: Paper Situation
## 3375 FW: Paper Situation
## 3376 FW: Paper Situation
## 3377 FW: Paper Situation
## 3378 FW: Paper Situation
## 3379 Time sheet approval
## 3380 RE: Capacity Lease (Backhaul) - Gulfstream
## 3381 RE: Capacity Lease (Backhaul) - Gulfstream
## 3382 RE: Capacity Lease (Backhaul) - Gulfstream
## 3383 RE: Capacity Lease (Backhaul) - Gulfstream
## 3384 RE: Capacity Lease (Backhaul) - Gulfstream
## 3385 RE: Capacity Lease (Backhaul) - Gulfstream
## 3386 FW: Transwestern Pipeline Company
## 3387 FW: Transwestern Pipeline Company
## 3388 FW: Transwestern Pipeline Company
## 3389 RE: F.P.U. NEW SMYRNA DELIVERY POINT QUESTION
## 3390 RE: F.P.U. NEW SMYRNA DELIVERY POINT QUESTION
## 3391 RE: F.P.U. NEW SMYRNA DELIVERY POINT QUESTION
## 3392 RE: F.P.U. NEW SMYRNA DELIVERY POINT QUESTION
## 3393 RE: F.P.U. NEW SMYRNA DELIVERY POINT QUESTION
## 3394 RE: F.P.U. NEW SMYRNA DELIVERY POINT QUESTION
## 3395 RE: F.P.U. NEW SMYRNA DELIVERY POINT QUESTION
## 3396 RE: F.P.U. NEW SMYRNA DELIVERY POINT QUESTION
## 3397 RE: F.P.U. NEW SMYRNA DELIVERY POINT QUESTION
## 3398 RE: F.P.U. NEW SMYRNA DELIVERY POINT QUESTION
## 3399 RE: FPU
## 3400 RE: FPU
## 3401 RE: Test E-Mail
## 3402 Positive Thoughts
## 3403 RE: Angels are ....
## 3404 FW: Angels are ....
## 3405 FW: Angels are ....
## 3406 FW: Angels are ....
## 3407 FW: Angels are ....
## 3408 FW: Angels are ....
## 3409 FW: Angels are ....
## 3410 FW: Angels are ....
## 3411 FW: Angels are ....
## 3412 FW: Angels are ....
## 3413 FW: Angels are ....
## 3414 FW: Angels are ....
## 3415 Hi!
## 3416 RE: Gas Daily Table
## 3417 RE: Gas Daily Table
## 3418 RE: Electric Compression
## 3419 RE: Test
## 3420 RE: Test
## 3421 RE: ETS TW Teams Appreciation Luncheon - Last Round
## 3422 RE: T-shirt
## 3423 RE: LFT Language
## 3424 FW: P.A. Agave I/c
## 3425 FW: P.A. Agave I/c
## 3426 FW: P.A. Agave I/c
## 3427 FW: P.A. Agave I/c
## 3428 FW: P.A. Agave I/c
## 3429 FW: P.A. Agave I/c
## 3430 FW: P.A. Agave I/c
## 3431 FW: P.A. Agave I/c
## 3432 FW: P.A. Agave I/c
## 3433 Loaned Gas Audit
## 3434 FW: Electronic Contracting Compliance Filing
## 3435 RE: Pemex (MGI) Proposal
## 3436 RE: Pemex (MGI) Proposal
## 3437 RE: Pemex (MGI) Proposal
## 3438 RE: Pemex (MGI) Proposal
## 3439 RE: Pemex (MGI) Proposal
## 3440 RE: Pemex (MGI) Proposal
## 3441 RE: Pemex (MGI) Proposal
## 3442 RE: Pemex (MGI) Proposal
## 3443 RE: Pemex (MGI) Proposal
## 3444 RE: Question
## 3445 RE: Question
## 3446 RE: Chairman s Award Nomination for Alice Johnson
## 3447 RE: Compressor Station # 6
## 3448 RE: Compressor Station # 6
## 3449 RE: Compressor Station # 6
## 3450 RE: Compressor Station # 6
## 3451 RE: Compressor Station # 6
## 3452 RE: Compressor Station # 6
## 3453 RE: Compressor Station # 6
## 3454 FW: Amending Red Rock Contracts
## 3455 FW: Amending Red Rock Contracts
## 3456 FW: Amending Red Rock Contracts
## 3457 FW: Settlement Offer
## 3458 FW: Settlement Offer
## 3459 FW: Transwestern Proposed Tariff Sheets for Settlement
## 3460 RE: Amending Red Rock Contracts
## 3461 RE: Amending Red Rock Contracts
## 3462 RE: Amending Red Rock Contracts
## 3463 RE: Amending Red Rock Contracts
## 3464 RE: Amending Red Rock Contracts
## 3465 RE: Amending Red Rock Contracts
## 3466 RE: Amending Red Rock Contracts
## 3467 RE: Amending Red Rock Contracts
## 3468 RE: Amending Red Rock Contracts
## 3469 FW: First military move
## 3470 FW: Updated chart
## 3471 FW: Settlement Offer of Transwestern Pipeline Company
## 3472 FW: Settlement Offer of Transwestern Pipeline Company
## 3473 FW: Gas Daily Zone 2 gas prices
## 3474 FW: Increased Take-away at SoCal Needles
## 3475 FW: Nonviolent Solutions
## 3476 FW: Nonviolent Solutions
## 3477 FW: Nonviolent Solutions
## 3478 FW: Nonviolent Solutions
## 3479 FW: Nonviolent Solutions
## 3480 FW: Nonviolent Solutions
## 3481 FW: Nonviolent Solutions
## 3482 FW: Nonviolent Solutions
## 3483 FW: Nonviolent Solutions
## 3484 FW: Location change - Sun Devil weekly meeting
## 3485 FW: Revised meeting location for Sun Devil update (again)
## 3486 RE: Invitation to Jennifer Lev s Baby Shower
## 3487 FW: Questar Southern Trail West Leg due diligence meeting
## 3488 RE: EB15C1 for Monday s Sun Devil Meeting from 3-4
## 3489 RE: EB15C1 for Monday s Sun Devil Meeting from 3-4
## 3490 RE: EB15C1 for Monday s Sun Devil Meeting from 3-4
## 3491 RE: EB15C1 for Monday s Sun Devil Meeting from 3-4
## 3492 RE: EB15C1 for Monday s Sun Devil Meeting from 3-4
## 3493 RE: EB15C1 for Monday s Sun Devil Meeting from 3-4
## 3494 RE: EB15C1 for Monday s Sun Devil Meeting from 3-4
## 3495 RE: EB15C1 for Monday s Sun Devil Meeting from 3-4
## 3496 RE: EB15C1 for Monday s Sun Devil Meeting from 3-4
## 3497 RE: EB15C1 for Monday s Sun Devil Meeting from 3-4
## 3498 FW: EB15C1 for Monday s Sun Devil Meeting from 3-4
## 3499 FW: Southern Trails Data Request List
## 3500 RE: Trying to set up conf call re: TW Weather Drivative (involves potential affiliate issue)
## 3501 FW: Article on Enron
## 3502 FW: Article on Enron
## 3503 FW: Article on Enron
## 3504 FW: Article on Enron
## 3505 FW: Article on Enron
## 3506 FW: Article on Enron
## 3507 RE: Article on Enron
## 3508 RE: Order 637--Imbalance Provisions
## 3509 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3510 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3511 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3512 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3513 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3514 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3515 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3516 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3517 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3518 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3519 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3520 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3521 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3522 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3523 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3524 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3525 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3526 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3527 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3528 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3529 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3530 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3531 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3532 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3533 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3534 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3535 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3536 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3537 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3538 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3539 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3540 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3541 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 3542 Sun Devil meeting today cancelled
## 3543 Sun Devil meeting today cancelled
## 3544 Sun Devil meeting today cancelled
## 3545 Sun Devil meeting today cancelled
## 3546 Sun Devil meeting today cancelled
## 3547 Sun Devil meeting today cancelled
## 3548 Sun Devil meeting today cancelled
## 3549 Sun Devil meeting today cancelled
## 3550 Sun Devil meeting today cancelled
## 3551 Sun Devil meeting today cancelled
## 3552 Sun Devil meeting today cancelled
## 3553 Planning Sessions
## 3554 Planning Sessions
## 3555 Planning Sessions
## 3556 Planning Sessions
## 3557 Planning Sessions
## 3558 Planning Sessions
## 3559 Planning Sessions
## 3560 Planning Sessions
## 3561 Planning Sessions
## 3562 Planning Sessions
## 3563 Planning Sessions
## 3564 RE: TW 637 Filing
## 3565 Out of Office AutoReply: TW 637 Filing
## 3566 FW: TW Overhead WO
## 3567 FW: TW Overhead WO
## 3568 FW: TW Overhead WO
## 3569 FW: TW Overhead WO
## 3570 AVAILABLE FIRM CAPACITY ON TRANSWESTERN
## 3571 AVAILABLE FIRM CAPACITY ON TRANSWESTERN
## 3572 AVAILABLE FIRM CAPACITY ON TRANSWESTERN
## 3573 RE: morn meet 1/17/02
## 3574 RE: morn meet 1/17/02
## 3575 RE: morn meet 1/17/02
## 3576 RE: morn meet 1/17/02
## 3577 RE: morn meet 1/17/02
## 3578 RE: morn meet 1/17/02
## 3579 RE: morn meet 1/17/02
## 3580 RE: morn meet 1/17/02
## 3581 RE: morn meet 1/17/02
## 3582 weekly Sun Devil update meeting
## 3583 weekly Sun Devil update meeting
## 3584 weekly Sun Devil update meeting
## 3585 weekly Sun Devil update meeting
## 3586 weekly Sun Devil update meeting
## 3587 weekly Sun Devil update meeting
## 3588 weekly Sun Devil update meeting
## 3589 weekly Sun Devil update meeting
## 3590 weekly Sun Devil update meeting
## 3591 weekly Sun Devil update meeting
## 3592 weekly Sun Devil update meeting
## 3593 weekly Sun Devil update meeting
## 3594 weekly Sun Devil update meeting
## 3595 weekly Sun Devil update meeting
## 3596 weekly Sun Devil update meeting
## 3597 weekly Sun Devil update meeting
## 3598 RE: PGS Segmenting Alternate Pt. Priorities
## 3599 Declined: PGS Segmenting Alternate Pt. Priorities
## 3600 Sun Devil levelized accounting and FASB
## 3601 Sun Devil levelized accounting and FASB
## 3602 Sun Devil levelized accounting and FASB
## 3603 Sun Devil levelized accounting and FASB
## 3604 Sun Devil levelized accounting and FASB
## 3605 Sun Devil levelized accounting and FASB
## 3606 Sun Devil update moved to tues 1/15
## 3607 Sun Devil update moved to tues 1/15
## 3608 Sun Devil update moved to tues 1/15
## 3609 Sun Devil update moved to tues 1/15
## 3610 Sun Devil update moved to tues 1/15
## 3611 Sun Devil update moved to tues 1/15
## 3612 Sun Devil update moved to tues 1/15
## 3613 Sun Devil update moved to tues 1/15
## 3614 Sun Devil update moved to tues 1/15
## 3615 Sun Devil update moved to tues 1/15
## 3616 Sun Devil update moved to tues 1/15
## 3617 Sun Devil update moved to tues 1/15
## 3618 RE: Web Site Posting for New Cash Out Pricing Provisions
## 3619 RE: Web Site Posting for New Cash Out Pricing Provisions
## 3620 RE: Web Site Posting for New Cash Out Pricing Provisions
## 3621 RE: Web Site Posting for New Cash Out Pricing Provisions
## 3622 RE: Web Site Posting for New Cash Out Pricing Provisions
## 3623 RE: Web Site Posting for New Cash Out Pricing Provisions
## 3624 RE: Web Site Posting for New Cash Out Pricing Provisions
## 3625 RE: Web Site Posting for New Cash Out Pricing Provisions
## 3626 Web Site Posting for New Cash Out Pricing Provisions
## 3627 Web Site Posting for New Cash Out Pricing Provisions
## 3628 Web Site Posting for New Cash Out Pricing Provisions
## 3629 Web Site Posting for New Cash Out Pricing Provisions
## 3630 Web Site Posting for New Cash Out Pricing Provisions
## 3631 Web Site Posting for New Cash Out Pricing Provisions
## 3632 Web Site Posting for New Cash Out Pricing Provisions
## 3633 Web Site Posting for New Cash Out Pricing Provisions
## 3634 RE: Attachment A - Payment Schedule
## 3635 RE: Attachment A - Payment Schedule
## 3636 RE: Attachment A - Payment Schedule
## 3637 RE: Attachment A - Payment Schedule
## 3638 RE: Attachment A - Payment Schedule
## 3639 RE: Attachment A - Payment Schedule
## 3640 RE: Attachment A - Payment Schedule
## 3641 Sun Devil Update moved to Tues 3:30 pm 15c1
## 3642 Sun Devil Update moved to Tues 3:30 pm 15c1
## 3643 Sun Devil Update moved to Tues 3:30 pm 15c1
## 3644 Sun Devil Update moved to Tues 3:30 pm 15c1
## 3645 Sun Devil Update moved to Tues 3:30 pm 15c1
## 3646 Sun Devil Update moved to Tues 3:30 pm 15c1
## 3647 Sun Devil Update moved to Tues 3:30 pm 15c1
## 3648 Sun Devil Update moved to Tues 3:30 pm 15c1
## 3649 Sun Devil Update moved to Tues 3:30 pm 15c1
## 3650 Sun Devil Update moved to Tues 3:30 pm 15c1
## 3651 Sun Devil Update moved to Tues 3:30 pm 15c1
## 3652 Sun Devil Update moved to Tues 3:30 pm 15c1
## 3653 Sun Devil Update moved to Tues 3:30 pm 15c1
## 3654 Sun Devil Update moved to Tues 3:30 pm 15c1
## 3655 Scheduling Alt FT by Price
## 3656 Scheduling Alt FT by Price
## 3657 Scheduling Alt FT by Price
## 3658 Scheduling Alt FT by Price
## 3659 Scheduling Alt FT by Price
## 3660 Scheduling Alt FT by Price
## 3661 Scheduling Alt FT by Price
## 3662 Scheduling Alt FT by Price
## 3663 Scheduling Alt FT by Price
## 3664 Scheduling Alt FT by Price
## 3665 Scheduling Alt FT by Price
## 3666 Scheduling Alt FT by Price
## 3667 Scheduling Alt FT by Price
## 3668 Scheduling Alt FT by Price
## 3669 Scheduling Alt FT by Price
## 3670 sun devil weekly meeting update
## 3671 sun devil weekly meeting update
## 3672 sun devil weekly meeting update
## 3673 sun devil weekly meeting update
## 3674 sun devil weekly meeting update
## 3675 sun devil weekly meeting update
## 3676 sun devil weekly meeting update
## 3677 sun devil weekly meeting update
## 3678 sun devil weekly meeting update
## 3679 sun devil weekly meeting update
## 3680 sun devil weekly meeting update
## 3681 sun devil weekly meeting update
## 3682 sun devil weekly meeting update
## 3683 sun devil weekly meeting update
## 3684 OBA & Scheduling Alt FT by Price Tariff Filings
## 3685 OBA & Scheduling Alt FT by Price Tariff Filings
## 3686 OBA & Scheduling Alt FT by Price Tariff Filings
## 3687 OBA & Scheduling Alt FT by Price Tariff Filings
## 3688 OBA & Scheduling Alt FT by Price Tariff Filings
## 3689 OBA & Scheduling Alt FT by Price Tariff Filings
## 3690 OBA & Scheduling Alt FT by Price Tariff Filings
## 3691 OBA & Scheduling Alt FT by Price Tariff Filings
## 3692 OBA & Scheduling Alt FT by Price Tariff Filings
## 3693 OBA & Scheduling Alt FT by Price Tariff Filings
## 3694 OBA & Scheduling Alt FT by Price Tariff Filings
## 3695 OBA & Scheduling Alt FT by Price Tariff Filings
## 3696 OBA & Scheduling Alt FT by Price Tariff Filings
## 3697 OBA & Scheduling Alt FT by Price Tariff Filings
## 3698 OBA & Scheduling Alt FT by Price Tariff Filings
## 3699 OBA & Scheduling Alt FT by Price Tariff Filings
## 3700 RE: SoCal Unbundling
## 3701 RE: SoCal Unbundling
## 3702 RE: SoCal Unbundling
## 3703 RE: SoCal Unbundling
## 3704 RE: SoCal Unbundling
## 3705 RE: SoCal Unbundling
## 3706 RE: SoCal Unbundling
## 3707 RE: SoCal Unbundling
## 3708 RE: SoCal Unbundling
## 3709 RE: SoCal Unbundling
## 3710 RE: SoCal Unbundling
## 3711 RE: SoCal Unbundling
## 3712 RE: SoCal Unbundling
## 3713 RE: Gas Daily Table
## 3714 RE: Gas Daily Table
## 3715 RE: Gas Daily Table
## 3716 RE: Gas Daily Table
## 3717 RE: Gas Daily Table
## 3718 RE: Gas Daily Table
## 3719 FERC Discussion on OFOs
## 3720 FERC Discussion on OFOs
## 3721 FERC Discussion on OFOs
## 3722 FERC Discussion on OFOs
## 3723 FERC Discussion on OFOs
## 3724 FERC Discussion on OFOs
## 3725 FERC Discussion on OFOs
## 3726 FERC Discussion on OFOs
## 3727 FERC Discussion on OFOs
## 3728 FERC Discussion on OFOs
## 3729 FERC Discussion on OFOs
## 3730 FERC Discussion on OFOs
## 3731 RE: Pemex (MGI) Proposal
## 3732 RE: Pemex (MGI) Proposal
## 3733 RE: Pemex (MGI) Proposal
## 3734 RE: Pemex (MGI) Proposal
## 3735 RE: Pemex (MGI) Proposal
## 3736 RE: Pemex (MGI) Proposal
## 3737 RE: Pemex (MGI) Proposal
## 3738 RE: Pemex (MGI) Proposal
## 3739 RE: Pemex (MGI) Proposal
## 3740 FW: Kern County power plants
## 3741 No Sun Devil update meeting Monday 10/1
## 3742 No Sun Devil update meeting Monday 10/1
## 3743 No Sun Devil update meeting Monday 10/1
## 3744 No Sun Devil update meeting Monday 10/1
## 3745 No Sun Devil update meeting Monday 10/1
## 3746 No Sun Devil update meeting Monday 10/1
## 3747 No Sun Devil update meeting Monday 10/1
## 3748 No Sun Devil update meeting Monday 10/1
## 3749 No Sun Devil update meeting Monday 10/1
## 3750 No Sun Devil update meeting Monday 10/1
## 3751 No Sun Devil update meeting Monday 10/1
## 3752 No Sun Devil update meeting Monday 10/1
## 3753 RE: SoCalGas Developments
## 3754 RE: SoCalGas Developments
## 3755 RE: SoCalGas Developments
## 3756 RE: SoCalGas Developments
## 3757 RE: SoCalGas Developments
## 3758 RE: SoCalGas Developments
## 3759 RE: SoCalGas Developments
## 3760 RE: SoCalGas Developments
## 3761 RE: SoCalGas Developments
## 3762 RE: SoCalGas Developments
## 3763 RE: SoCalGas Developments
## 3764 RE: SoCalGas Developments
## 3765 Response to FERC on Electronic Contracting
## 3766 Response to FERC on Electronic Contracting
## 3767 Response to FERC on Electronic Contracting
## 3768 Response to FERC on Electronic Contracting
## 3769 Response to FERC on Electronic Contracting
## 3770 Response to FERC on Electronic Contracting
## 3771 Response to FERC on Electronic Contracting
## 3772 RE: Response to FERC on Electronic Contracting
## 3773 RE: Response to FERC on Electronic Contracting
## 3774 Sun Devil meeting
## 3775 Sun Devil meeting
## 3776 Sun Devil meeting
## 3777 Sun Devil meeting
## 3778 Sun Devil meeting
## 3779 Sun Devil meeting
## 3780 Sun Devil meeting
## 3781 Sun Devil meeting
## 3782 Sun Devil meeting
## 3783 Sun Devil meeting
## 3784 RE: GIR Conf. Call
## 3785 RE: GIR Conf. Call
## 3786 RE: GIR Conf. Call
## 3787 RE: GIR Conf. Call
## 3788 RE: GIR Conf. Call
## 3789 RE: GIR Conf. Call
## 3790 RE: GIR Conf. Call
## 3791 RE: GIR Conf. Call
## 3792 RE: GIR Conf. Call
## 3793 RE: GIR Conf. Call
## 3794 RE: GIR Conf. Call
## 3795 RE: GIR Conf. Call
## 3796 RE: GIR Conf. Call
## 3797 RE: GIR Conf. Call
## 3798 RE: GIR Conf. Call
## 3799 FW: texas gas tries one more time -- modified cash pool filing
## 3800 USGT Neg Rate Filing
## 3801 USGT Neg Rate Filing
## 3802 USGT Neg Rate Filing
## 3803 USGT Neg Rate Filing
## 3804 USGT Neg Rate Filing
## 3805 USGT Neg Rate Filing
## 3806 postponed Sun Devil update for Monday 10/29
## 3807 postponed Sun Devil update for Monday 10/29
## 3808 postponed Sun Devil update for Monday 10/29
## 3809 postponed Sun Devil update for Monday 10/29
## 3810 postponed Sun Devil update for Monday 10/29
## 3811 postponed Sun Devil update for Monday 10/29
## 3812 postponed Sun Devil update for Monday 10/29
## 3813 postponed Sun Devil update for Monday 10/29
## 3814 postponed Sun Devil update for Monday 10/29
## 3815 postponed Sun Devil update for Monday 10/29
## 3816 postponed Sun Devil update for Monday 10/29
## 3817 postponed Sun Devil update for Monday 10/29
## 3818 postponed Sun Devil update for Monday 10/29
## 3819 postponed Sun Devil update for Monday 10/29
## 3820 FW: Cost of Svc meeting for Sun Devil Project
## 3821 FW: Transwestern Meeting
## 3822 FW: Transwestern Meeting
## 3823 FW: Transwestern Meeting
## 3824 Unwinding Index Deals
## 3825 Unwinding Index Deals
## 3826 Unwinding Index Deals
## 3827 Unwinding Index Deals
## 3828 Unwinding Index Deals
## 3829 Unwinding Index Deals
## 3830 Canceled: Unwinding 1 to 1 deals
## 3831 Canceled: Unwinding 1 to 1 deals
## 3832 Canceled: Unwinding 1 to 1 deals
## 3833 Canceled: Unwinding 1 to 1 deals
## 3834 Canceled: Unwinding 1 to 1 deals
## 3835 Canceled: Unwinding 1 to 1 deals
## 3836 Canceled: Unwinding 1 to 1 deals
## 3837 Canceled: Unwinding 1 to 1 deals
## 3838 RE:
## 3839 FW: Move Location to 6 in Old Enron Building (ECN)
## 3840 RE: Riverside County Waste Mgt
## 3841 RE: Riverside County Waste Mgt
## 3842 RE: Riverside County Waste Mgt
## 3843 RE: Riverside County Waste Mgt
## 3844
## 3845 RE: Superbowl Party and Fish Fry
## 3846 RE: Superbowl Party and Fish Fry
## 3847
## 3848 RE:
## 3849
## 3850 RE: Green Power Partners
## 3851 RE: thanks!
## 3852 Saturday Golf
## 3853
## 3854 FW: Superbowl Party and Fish Fry
## 3855 RE: Superbowl Party
## 3856 RE: Superbowl Party
## 3857 NYISO Invoice (December 2001) Detail
## 3858 NYISO Invoice (December 2001) Detail
## 3859 NYISO Invoice (December 2001) Detail
## 3860
## 3861 FW: Green Power Partners
## 3862 FW: Green Power Partners
## 3863 FW: Green Power Partners
## 3864 FW: Green Power Partners
## 3865 FW: Green Power Partners
## 3866 FW: Green Power Partners
## 3867 FW: Green Power Partners
## 3868 RE: Green Power Partners
## 3869 RE: Green Power Partners
## 3870 RE: Green Power Partners
## 3871 RE: Green Power Partners
## 3872 RE: Green Power Partners
## 3873 RE: Green Power Partners
## 3874 RE: Green Power Partners
## 3875 RE: Green Power Partners
## 3876 RE: Green Power Partners
## 3877 RE: Green Power Partners
## 3878 FW: 2002 Holiday Schedule
## 3879 FW: 2002 Holiday Schedule
## 3880 RE: Maxie Pics 03
## 3881 RE: Garnet changing to APX
## 3882
## 3883 RE: Oct Green Power
## 3884
## 3885 FW: GreenPowerSept01.xls
## 3886
## 3887
## 3888 FW: NYSRC Reliability Rules Subcommittee Meeting No. 32-January 3, 20\t02
## 3889 FW: Invoices
## 3890 RE: Labels
## 3891 Renewable Positions
## 3892
## 3893 RE: ma rps
## 3894 RE: ma rps
## 3895 RE: ma rps
## 3896 FW: Termination Proceedings
## 3897 FW: Termination Proceedings
## 3898 FW: Termination Proceedings
## 3899 FW: Boston Globe Article
## 3900 RE: Riverside Contract Draft
## 3901 FW: EPA Houston TX Renewable Request for Information
## 3902 FW: EPA Houston TX Renewable Request for Information
## 3903 FW: EPA Houston TX Renewable Request for Information
## 3904 RE: Wind Farm
## 3905 FW:
## 3906 RE: 2nd attempt - Halloween invitation
## 3907 MA Standard Offer Prices
## 3908 FW: October 31, 2001 BAWG Agenda
## 3909 FW: NYS Reliability Council - Reliability Compliance Monitoring Subcommittee Meeting No. 23 - November 1, 2001 - LOCATION CHANGE
## 3910
## 3911 RE: Refresh pricing
## 3912 RE: Refresh pricing
## 3913 RE: Refresh pricing
## 3914 Riverside Waste County Management Department
## 3915 FW: Sun Micro information
## 3916 RE: CA RPS proposal & potential impact
## 3917 RE: CA RPS proposal & potential impact
## 3918 RE: CA RPS proposal & potential impact
## 3919 RE: CA RPS proposal & potential impact
## 3920 RE: CA RPS proposal & potential impact
## 3921 RE: CA RPS proposal & potential impact
## 3922 RE: CA RPS proposal & potential impact
## 3923 RE: CA RPS proposal & potential impact
## 3924 RE: CA RPS proposal & potential impact
## 3925 RE: CA RPS proposal & potential impact
## 3926 RE: CA RPS proposal & potential impact
## 3927 RE: CA RPS proposal & potential impact
## 3928 RE: CA RPS proposal & potential impact
## 3929 RE: CA RPS proposal & potential impact
## 3930 RE: CA RPS proposal & potential impact
## 3931 NEPOOL Discussions
## 3932 NEPOOL Discussions
## 3933 NEPOOL Discussions
## 3934 NEPOOL Discussions
## 3935 NEPOOL Discussions
## 3936 NEPOOL Discussions
## 3937 NEPOOL Discussions
## 3938 NEPOOL Discussions
## 3939 RE: Edison Electric Institute/Master Power Purchase & Sale Agreement
## 3940 RE: Edison Electric Institute/Master Power Purchase & Sale Agreement
## 3941 RE: Edison Electric Institute/Master Power Purchase & Sale Agreement
## 3942 RE: GSA Region 1 Projects Transition
## 3943 west power
## 3944 Re: ACalo
## 3945 E-Ticket Travel Itinerary and Receipt
## 3946 Re: Performance Feedback
## 3947 Re: 2- SURVEY/INFORMATION EMAIL
## 3948 PR Candidate Resume
## 3949 (01-191) EXCHANGE TO SUBSTITUTE POSITION ACCOUNTABILITY REQUIREMENTS FOR POSITION LIMIT RULES
## 3950 Re: Tanker Freight Long Description
## 3951 FW: ISDA
## 3952 Re: Tanker Freight Long Description
## 3953 BVI Photos
## 3954 Graduation Photos
## 3955 Graduation Photos
## 3956 BVI Photos
## 3957 Re: Margin Calls - Financial
## 3958 Re: Margin Calls - Financial
## 3959 Re: Margin Calls - Financial
## 3960 Re: Margin Calls - Financial
## 3961 Re: Margin Calls - Financial
## 3962 Re: Margin Calls - Financial
## 3963 Re: Margin Calls - Financial
## 3964 Re: Tanker Freight Long Description
## 3965 Re: Tanker Freight Long Description
## 3966 Re: Tanker Freight Long Description
## 3967 Re: Tanker Freight Long Description
## 3968 Re: Tanker Freight Long Description
## 3969 Re: Tanker Freight Long Description
## 3970 Re: Tanker Freight Long Description
## 3971 Re: Tanker Freight Long Description
## 3972 Re: Tanker Freight Long Description
## 3973 Tanker Freight Long Description
## 3974 Tanker Freight Long Description
## 3975 Tanker Freight Long Description
## 3976 Tanker Freight Long Description
## 3977 Tanker Freight Long Description
## 3978 Tanker Freight Long Description
## 3979 Tanker Freight Long Description
## 3980 The Bitter End
## 3981 Limit Order Brochure & Help Text for Review
## 3982 FW: ENRON ON LINE - PETROLEUM TANKER FREIGHT
## 3983 FW: ENRON ON LINE - PETROLEUM TANKER FREIGHT
## 3984 Marketing Manager candidate
## 3985
## 3986 Letters of Credit; Preference; Swap Transactions
## 3987 Letters of Credit; Preference; Swap Transactions
## 3988 Letters of Credit; Preference; Swap Transactions
## 3989 Letters of Credit; Preference; Swap Transactions
## 3990 Letters of Credit; Preference; Swap Transactions
## 3991 Test
## 3992 Product Type approval needed (CAN Newsprint Phy)
## 3993 New Computer Screen
## 3994 Re: Letters of Credit; Preference; Swap Transactions
## 3995 Re: Letters of Credit; Preference; Swap Transactions
## 3996 Re: Letters of Credit; Preference; Swap Transactions
## 3997 eService Online improvements
## 3998 Re: iBuyit eProcurement Request
## 3999 Re: Tanker Freight Swap
## 4000 ISDA European Energy Conference Agenda
## 4001 ISDA European Energy Conference Agenda
## 4002 ISDA European Energy Conference Agenda
## 4003 ISDA European Energy Conference Agenda
## 4004 ISDA European Energy Conference Agenda
## 4005 ISDA European Energy Conference Agenda
## 4006 ISDA European Energy Conference Agenda
## 4007 ISDA European Energy Conference Agenda
## 4008 ISDA European Energy Conference Agenda
## 4009 ISDA European Energy Conference Agenda
## 4010 ISDA European Energy Conference Agenda
## 4011 ISDA European Energy Conference Agenda
## 4012 ISDA European Energy Conference Agenda
## 4013 Limit Order Brochure & Help Text for Review
## 4014 Re: iBuyit eProcurement Request
## 4015 e-mail address
## 4016 e-mail address
## 4017 CONFIDENTIAL BUSINESS PROPOSAL
## 4018 CONFIDENTIAL BUSINESS PROPOSAL
## 4019 Graham s leaving date
## 4020
## 4021
## 4022 Seminar on Letters of Credit
## 4023 Re: Follow Up
## 4024 FW: National Poetry Month
## 4025 Trader Training Sessions
## 4026 Trader Training Sessions
## 4027 Trader Training Sessions
## 4028 Trader Training Sessions
## 4029 Trader Training Sessions
## 4030 Trader Training Sessions
## 4031 Trader Training Sessions
## 4032 Trader Training Sessions
## 4033 Trader Training Sessions
## 4034 Trader Training Sessions
## 4035 Trader Training Sessions
## 4036 Trader Training Sessions
## 4037 Trader Training Sessions
## 4038 Re: Ontario Standard Contract
## 4039 Re: Ontario Standard Contract
## 4040 Re: Ontario Standard Contract
## 4041 Re: Ontario Standard Contract
## 4042 Re: Ontario Standard Contract
## 4043 RE: Blue Sox
## 4044 Blue Sox
## 4045 BankLogic Deal Team Mtg. - "Project Bluesox"
## 4046 Project bluesox contract / legal rep for deal team
## 4047 Re: Financial Transactions - Enron Direct Canada
## 4048 Re: Financial Transactions - Enron Direct Canada
## 4049 Re: Financial Transactions - Enron Direct Canada
## 4050 Re: Financial Transactions - Enron Direct Canada
## 4051 Re: Financial Transactions - Enron Direct Canada
## 4052 Re: Financial Transactions - Enron Direct Canada
## 4053 Re: Financial Transactions - Enron Direct Canada
## 4054 Re: Financial Transactions - Enron Direct Canada
## 4055 Re: Financial Transactions - Enron Direct Canada
## 4056 Re: Financial Transactions - Enron Direct Canada
## 4057 Re: Financial Transactions - Enron Direct Canada
## 4058 No More Confirms Agreement
## 4059 No More Confirms Agreement
## 4060 Re: Sailing
## 4061 RE: Sailing
## 4062 Re: FW: Please Approve New Product Type: US Steel Hot Rolled Plate Financial Swap (2069)
## 4063 Re: Sailing
## 4064 Re: Sailing
## 4065 Revised - Title Correction - Final Schedule - Brad Eastman
## 4066 Performance Review Process
## 4067 Performance Review Process
## 4068 Performance Review Process
## 4069 Performance Review Process
## 4070 Performance Review Process
## 4071 Performance Review Process
## 4072 Performance Review Process
## 4073 Performance Review Process
## 4074 Performance Review Process
## 4075 Performance Review Process
## 4076 Performance Review Process
## 4077 Performance Review Process
## 4078 Performance Review Process
## 4079 Performance Review Process
## 4080 ad
## 4081 Interesting web site
## 4082 Interesting web site
## 4083 (01-154) Implementation of New NYMEX Rule 9.11A (Give-Up Trades)
## 4084 Legal Staffing Question
## 4085 Visiting Attorneys
## 4086 Re: Reorg - Capitalisation of LLC
## 4087 Re: Reorg - Capitalisation of LLC
## 4088 Re: Reorg - Capitalisation of LLC
## 4089 Re: Reorg - Capitalisation of LLC
## 4090 Re: Reorg - Capitalisation of LLC
## 4091 Re: Reorg - Capitalisation of LLC
## 4092 Re: Reorg - Capitalisation of LLC
## 4093 Re: Reorg - Capitalisation of LLC
## 4094 Re: Reorg - Capitalisation of LLC
## 4095 spoiled? did I say spoiled?
## 4096 Re: Fwd: St. Regis cost
## 4097 Cliff - "if I have to call Mark Haedicke" - Baxter
## 4098 Re: Dinner Tomorrow in San Antonio
## 4099 Group Meeting
## 4100 Group Meeting
## 4101 Group Meeting
## 4102 Group Meeting
## 4103 Group Meeting
## 4104 Group Meeting
## 4105 Group Meeting
## 4106 Group Meeting
## 4107 Group Meeting
## 4108 Group Meeting
## 4109 Group Meeting
## 4110 Group Meeting
## 4111 Re: dinner Weds. night in San Antonio
## 4112 Additional Folks
## 4113 Sailing
## 4114 Sailing
## 4115 Sailing
## 4116 (No Subject)
## 4117 Re: Keswick
## 4118 Re: Keswick
## 4119 Re: Computer
## 4120 Re: Keswick
## 4121 Re: FW: something to laugh about!!!
## 4122 RE: Electronic Trading Facilities for Transaction in Exempt Commodities
## 4123 RE: Electronic Trading Facilities for Transaction in Exempt Commodities
## 4124 RE: Electronic Trading Facilities for Transaction in Exempt Commodities
## 4125 Re: Keswick
## 4126 Reservations
## 4127 Re: Dinner on Wednesday, May 2, 2001, San Antonio Legal Conference
## 4128 Electronic Trading Facilities for Transaction in Exempt Commodities
## 4129 Electronic Trading Facilities for Transaction in Exempt Commodities
## 4130 Electronic Trading Facilities for Transaction in Exempt Commodities
## 4131 Electronic Trading Facilities for Transaction in Exempt Commodities
## 4132 Finals
## 4133 Legal & Privacy Statement
## 4134 Birthday
## 4135 Re: credit card
## 4136 The McKinsey Quarterly Newsletter---April 2001
## 4137 Re: EnronOnline GTC s
## 4138 Re: Our Travel Itinerary
## 4139 Re: Our Travel Itinerary
## 4140 Re: Our Travel Itinerary
## 4141 Re: Our Travel Itinerary
## 4142 Re: Our Travel Itinerary
## 4143 Re: Our Travel Itinerary
## 4144 Re: FW: Elimination of Confirmations for EOL Transactions
## 4145 Our Travel Itinerary
## 4146 Meeting with David Minns
## 4147 Re: FW: Sailing
## 4148 Re: FW: Sailing
## 4149 Re: FW: Sailing
## 4150 Re: FW: Sailing
## 4151 Re: FW: Sailing
## 4152 Re: Quick Question RE: COMEX bid/offers for Reuters
## 4153 Re: Quick Question RE: COMEX bid/offers for Reuters
## 4154 Re: Quick Question RE: COMEX bid/offers for Reuters
## 4155 Re: Quick Question RE: COMEX bid/offers for Reuters
## 4156 Re: Quick Question RE: COMEX bid/offers for Reuters
## 4157 Re: Quick Question RE: COMEX bid/offers for Reuters
## 4158 Re: Quick Question RE: COMEX bid/offers for Reuters
## 4159 Re: Quick Question RE: COMEX bid/offers for Reuters
## 4160 Re: Quick Question RE: COMEX bid/offers for Reuters
## 4161 Board of Trustees Meeting, April 20-21,2001
## 4162 Re: Quick Question RE: COMEX bid/offers for Reuters
## 4163 Re: Quick Question RE: COMEX bid/offers for Reuters
## 4164 Re: Quick Question RE: COMEX bid/offers for Reuters
## 4165 Re: Quick Question RE: COMEX bid/offers for Reuters
## 4166 Re: Quick Question RE: COMEX bid/offers for Reuters
## 4167 Re: Quick Question RE: COMEX bid/offers for Reuters
## 4168 Re: Quick Question RE: COMEX bid/offers for Reuters
## 4169 Re: Quick Question RE: COMEX bid/offers for Reuters
## 4170 Re: Quick Question RE: COMEX bid/offers for Reuters
## 4171 RE: Trustees meeting
## 4172 Trustees meeting
## 4173 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 4174 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 4175 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 4176 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 4177 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 4178 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 4179 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 4180 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 4181 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 4182 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 4183 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 4184 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 4185 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 4186 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 4187 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 4188 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 4189 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 4190 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 4191 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 4192 Product type approval (US Steel Hot Rolled Plate Phy)
## 4193 Urgent - Counterparty Divisions: Cargill Ferrous International
## 4194 Urgent - Counterparty Divisions: Cargill Ferrous International
## 4195 Urgent - Counterparty Divisions: Cargill Ferrous International
## 4196 Urgent - Counterparty Divisions: Cargill Ferrous International
## 4197 Urgent - Counterparty Divisions: Cargill Ferrous International
## 4198 Urgent - Counterparty Divisions: Cargill Ferrous International
## 4199 Urgent - Counterparty Divisions: Cargill Ferrous International
## 4200 O Brian article
## 4201 Credit Lawyer responsibilities
## 4202 EnronOnline Presentation
## 4203 RE: InternetWeek
## 4204 Re: New internal product type (US Gas Fin Swap ENA (INTERNAL ONLY))
## 4205 Hawaii Presentation
## 4206 Hawaii Presentation
## 4207 Hawaii Presentation
## 4208 Hawaii Presentation
## 4209 Hawaii Presentation
## 4210 Hawaii Presentation
## 4211 Hawaii Presentation
## 4212 Hawaii Presentation
## 4213 Re: Paralegals
## 4214 Re: Paralegals
## 4215 Re: Paralegals
## 4216 RMT Master Swap Agreement
## 4217 Thanks!
## 4218 RE: Are the following OK w/ Credit?
## 4219 Re: Cash Collateral
## 4220 Re: Cash Collateral
## 4221 Re: Cash Collateral
## 4222 Re: Cash Collateral
## 4223 Re: Cash Collateral
## 4224 Re: Cash Collateral
## 4225 Re: Cash Collateral
## 4226 Re: Cash Collateral
## 4227 Re: Cash Collateral
## 4228 Re: Cash Collateral
## 4229 Re: Cash Collateral
## 4230 Re: Cash Collateral
## 4231 Re: Cash Collateral
## 4232 Re: Cash Collateral
## 4233 Re: Cash Collateral
## 4234 Re: Cash Collateral
## 4235 Re: Cash Collateral
## 4236 Re: Cash Collateral
## 4237 Re: Cash Collateral
## 4238 Re: Cash Collateral
## 4239 Re: Cash Collateral
## 4240 Re: Cash Collateral
## 4241 Re: Cash Collateral
## 4242 Re: March expenses - deadline 04-04-01 2:00pm
## 4243 Re: Long descriptions
## 4244 ISDA AGM
## 4245 Hi John
## 4246 ISDA Annual Meeting-Jones Day Cocktail Party
## 4247 ISDA Annual Meeting -- Jones Day Cocktail Party
## 4248 Re: Rockets Vs. Phoenix Suns - Thursday, March 29, 2001
## 4249 Performance Reviews
## 4250 ETA Amendment
## 4251 Re: EnronOnline
## 4252 Re: EnronOnline
## 4253 Re: EnronOnline
## 4254 Vacation Memo
## 4255 Vacation Memo
## 4256 Vacation Memo
## 4257 Vacation Memo
## 4258 Vacation Memo
## 4259 Re: Singapore ISDA MASTER AGREEMENT
## 4260 Re: Singapore ISDA MASTER AGREEMENT
## 4261 Re: Singapore ISDA MASTER AGREEMENT
## 4262 Re: Singapore ISDA MASTER AGREEMENT
## 4263 Re: Singapore ISDA MASTER AGREEMENT
## 4264 Re: Singapore ISDA MASTER AGREEMENT
## 4265 Re: Singapore ISDA MASTER AGREEMENT
## 4266 (01-91) Exchange Selects GlobalView Software Inc. c for enymex Customer Interface Infrastructure
## 4267 Re: DealBench
## 4268 Re: DealBench
## 4269 Re: DealBench
## 4270 Re: DealBench
## 4271 Re: DealBench
## 4272 Re: ISDA for Irving Oil
## 4273 Re: ISDA for Irving Oil
## 4274 Re: ISDA for Irving Oil
## 4275 Jim Avant
## 4276 RE: (01-91) Exchange Selects GlobalView Software Inc. c for enymex Customer Interface Infrastructure
## 4277 Re: FW: Spreads for West power
## 4278 Re: FW: Spreads for West power
## 4279 Re: FW: Spreads for West power
## 4280 EnronOnline - Power Spread Long Description
## 4281 EnronOnline - Power Spread Long Description
## 4282 EnronOnline - Power Spread Long Description
## 4283 EnronOnline - Power Spread Long Description
## 4284 EnronOnline - Power Spread Long Description
## 4285 (01-91) Exchange Selects GlobalView Software Inc. c for enymex Customer Interface Infrastructure
## 4286 Re: New Message
## 4287 RE: Merrill Lynch assignment to Allegheny
## 4288 Re: Merrill Lynch assignment to Allegheny
## 4289 Merrill Lynch assignment to Allegheny
## 4290 Re: Cheryl Nelson s Cel Phone
## 4291 Re: Staffing Requisition
## 4292 Re: trip to Houston
## 4293 Enron s position on the California Energy Crisis
## 4294 Enron s position on the California Energy Crisis
## 4295 Re: PLEASE RESPOND: US Residual Fuel Oil 1% Fin Spd / US Residual Fuel Oil 3% Fin Spd
## 4296 Re: trip to Houston
## 4297 Re: trip to Houston
## 4298 Re: trip to Houston
## 4299 AIG
## 4300 AIG
## 4301 AIG
## 4302 RE: Staffing Requisition
## 4303 Slightly Revised Swap Agreements
## 4304 Slightly Revised Swap Agreements
## 4305 Re: Staffing Requisition
## 4306 computer
## 4307 Re: Meeting/Dinner
## 4308 Enron Risk Consulting - Next Steps
## 4309 Re: Option Language
## 4310 Re: Option Language
## 4311 Re: Option Language
## 4312 Re: Option Language
## 4313 Re: Option Language
## 4314 Re: Option Language
## 4315 Re: Option Language
## 4316 napster
## 4317 Re: Option Language
## 4318 Re: Option Language
## 4319 Re: Option Language
## 4320 Re: Option Language
## 4321 Re: Option Language
## 4322 Re: Option Language
## 4323 Re: Option Language
## 4324 Re: Vacation
## 4325 Re: Vacation
## 4326 Re: Vacation
## 4327 Re: Vacation
## 4328 Re: Entity for softs trading- signoff
## 4329 Re: Entity for softs trading- signoff
## 4330 Re: Entity for softs trading- signoff
## 4331 Term Sheet
## 4332 term sheet
## 4333 Re: FW: Enron On-Line
## 4334 Re: Enron Wholesale Services 2001 Legal Conference
## 4335 Re: Paralegals
## 4336 Re: Suggested Messages
## 4337 Re: XMS
## 4338 ONEPASS MEMBER CO.O.L. TRAVEL SPECIALS FOR MARK TAYLOR
## 4339 Group Meeting
## 4340 Group Meeting
## 4341 Group Meeting
## 4342 Group Meeting
## 4343 Group Meeting
## 4344 Group Meeting
## 4345 Group Meeting
## 4346 Group Meeting
## 4347 Group Meeting
## 4348 Group Meeting
## 4349 Group Meeting
## 4350 Group Meeting
## 4351 Group Meeting
## 4352 Site Problem
## 4353 Mark Taylor - Pager Number
## 4354 CANCELED - Offline Update Meeting
## 4355 RE: Hi Jim!
## 4356 H.R. 333 Passes U.S. House Of Representatives
## 4357 Hi Jim!
## 4358 Oxley Amendment - Call to House Judiciary Committee Democrats
## 4359 Remote Access Request
## 4360 New Equipment
## 4361 Bankruptcy Update
## 4362 Letter to House Rules Committee Supporting Netting Amendment
## 4363 Re: Newsome
## 4364 REquest
## 4365 Bankruptcy Reform Amendments
## 4366 Re: Moving Date to 38
## 4367 Re: Meeting Reminder
## 4368 HPL/AEP Credit Issues Meeting
## 4369 Mark Greenberg - flat screen monitor
## 4370 Spread Long Description
## 4371 Spread
## 4372 US Gas Spread
## 4373 Test
## 4374 RE: ISDA TDCC(Dow)/Enron
## 4375 Broker Legal & Privacy Statement
## 4376 Broker Legal & Privacy Statement
## 4377 Moorings quote
## 4378 Re:
## 4379 Re: Vacation
## 4380 Re: Francisco Pinto Leite
## 4381 Bankruptcy Update
## 4382 Global Accounting Promotions
## 4383 Bankruptcy Update
## 4384
## 4385 Re: "Chinese Wall" Classroom Training
## 4386 Re: "Chinese Wall" Classroom Training
## 4387 Re: "Chinese Wall" Classroom Training
## 4388 football shaped and puntable
## 4389 RE: ISDA TDCC(Dow)/Enron
## 4390 RE: ISDA TDCC(Dow)/Enron
## 4391 RE: ISDA TDCC(Dow)/Enron
## 4392 RE: ISDA TDCC(Dow)/Enron
## 4393 RE: ISDA TDCC(Dow)/Enron
## 4394 RE: ISDA TDCC(Dow)/Enron
## 4395 RE: ISDA TDCC(Dow)/Enron
## 4396 Re: Commodity Trading Account
## 4397 Re: Commodity Trading Account
## 4398 Re: Commodity Trading Account
## 4399 Policy re On-Line Trading Platforms
## 4400 Enron - Services Agreement.
## 4401 Promotion
## 4402 Promotion
## 4403 Mexico City Conference - FEBRUARY 16, 2001
## 4404 FW: Revised S.220 markup and summary
## 4405 For our conference call this morning
## 4406 For our conference call this morning
## 4407 Re: Legal Task Force
## 4408 Re: Legal Task Force
## 4409 Re: Legal Task Force
## 4410 Re: US REGULATORY CALL
## 4411 Enron - License and Services Agreement.
## 4412 Enron - License and Services Agreement.
## 4413 Agenda Item for this afternoon
## 4414 S&C Memo Re:Proposed Regulations Providing for Ordinary Character Treatment for Hedging Transactions
## 4415 Bankruptcy Reform
## 4416 FW: DRAFT SUMMARY OF S. 220 POINTS
## 4417 Fwd: Enron Monterrey Project - Draft ISDA Master Agreement\tSchedule
## 4418 Fwd: Enron Monterrey Project - Draft ISDA Master Agreement\tSchedule
## 4419 Fwd: Enron Monterrey Project - Draft ISDA Master Agreement\tSchedule
## 4420 Final Information for ASE in Dallas Feb 12 & 13
## 4421 Re: 1/2 day vacation
## 4422 Re: 1/2 day vacation
## 4423 Re: 1/2 day vacation
## 4424 ISDAs
## 4425 Re: Say it isn t so!
## 4426 Re: Bankruptcy Legislation/Bond Market Association
## 4427 NDAs
## 4428 NDAs
## 4429 NDAs
## 4430 USA: INTERVIEW-Online exchange TradeSpark says building critical mass.
## 4431 Space Planning for the new building
## 4432 More Dallas ASE Information
## 4433 Conectiv/Delmarva
## 4434 Re: Hardware Request
## 4435 Re: Hardware Request
## 4436 Re: Hardware Request
## 4437 Hess-Enron ISDA Agreement(s)
## 4438 Pipeline Service Agreement
## 4439 Pipeline Service Agreement
## 4440 Re: Hardware Request
## 4441
## 4442
## 4443
## 4444
## 4445 Whitewing Presentation--Thursday February 8th from 11am to 1pm
## 4446 Hardware Request
## 4447 File Space
## 4448 File Space
## 4449 File Space
## 4450 File Space
## 4451 File Space
## 4452 File Space
## 4453 File Space
## 4454 Additional Information - Dallas ASE February 12-13th
## 4455 EnronOnline Transaction Confirmations
## 4456 EnronOnline Transaction Confirmations
## 4457 EnronOnline Transaction Confirmations
## 4458 Composition of the ABA Board prior to last year s elections (haven t heard back from Richard yet)
## 4459 Last year s American Arbitration Association Board elections - press release
## 4460 Re: FW: Nuther NDA Request
## 4461 FW: HoustonChronicle.com
## 4462 Re: FW: HoustonChronicle.com
## 4463 ASE on February 12-13, 2001 in Dallas, TX
## 4464 Re: Moorings estimate
## 4465 Grassley Bankruptcy Legislation Press Release
## 4466 ISDA Schedule
## 4467 ISDA Schedule
## 4468 Dow Jones Bandwidth Intelligence Alert
## 4469 Dow Jones Bandwidth Intelligence Alert
## 4470 Re: Rockets v. Miami Heat Tickets
## 4471 Re:
## 4472 Re:
## 4473 Re:
## 4474 Austin Hotels
## 4475 Re: Conference Call re: CFTC RM
## 4476 Pipelines
## 4477 Re: TIMESHEETS - January 16-31, 2001
## 4478 Re: NDA
## 4479 ECOutlook
## 4480 RE: No cure for this Virus..
## 4481 Alan Sommer, Michael Patrick and Bruce Garner
## 4482 Re: Office
## 4483 Re: 5- dr. f/c
## 4484 Re: key west
## 4485 Re: Guest Password
## 4486 ASAP-Preliminary List of Online Contracts
## 4487 Re: Just wanted to say hello
## 4488 Re: Late Delivery
## 4489 Re: Amanda Hayman s Graduation
## 4490 Offline
## 4491 Net Works Documentation
## 4492 Net Works Documentation
## 4493 Net Works Documentation
## 4494 Re: key west
## 4495 January gardening newsletter
## 4496 Re: key west
## 4497 Rainer
## 4498 ISDA Legal Opinions
## 4499 ISDA Legal Opinions
## 4500 ISDA Legal Opinions
## 4501 ISDA Legal Opinions
## 4502 ISDA Legal Opinions
## 4503 ISDA Legal Opinions
## 4504 ISDA Legal Opinions
## 4505 ISDA Legal Opinions
## 4506 ISDA Legal Opinions
## 4507 ISDA Legal Opinions
## 4508 ISDA Legal Opinions
## 4509 ISDA Legal Opinions
## 4510 ISDA Legal Opinions
## 4511 Friday ISDA call
## 4512 Re: Work Report Form
## 4513 Re: Steel Financial Swap Term Sheets
## 4514 Re: CLE Credits
## 4515 Re: Arcor Indemnity Agreement
## 4516 Re: FW: Linking Agreements - Indemnity Issue
## 4517 Final Envera Documents
## 4518 Section 8.2
## 4519 Section 8.2
## 4520
## 4521 Re: Key West Dinner: Friday Night
## 4522 Re: ISDA Collateral Question
## 4523 Re: ISDA Collateral Question
## 4524 ECOutlook Term Sheet
## 4525 Flat Screen Monitor
## 4526
## 4527 Re: Dina s new location
## 4528 Re: Dina s new location
## 4529 Re: Dina s new location
## 4530 Flat Computer Screen
## 4531 Re: wouldn t you like to see us
## 4532 Re: wouldn t you like to see us
## 4533 Re: wouldn t you like to see us
## 4534 Re: wouldn t you like to see us
## 4535 Construction Schedule - Office Moves
## 4536 Construction Schedule - Office Moves
## 4537 Construction Schedule - Office Moves
## 4538 Construction Schedule - Office Moves
## 4539 Construction Schedule - Office Moves
## 4540 Construction Schedule - Office Moves
## 4541 Construction Schedule - Office Moves
## 4542 Construction Schedule - Office Moves
## 4543 Construction Schedule - Office Moves
## 4544 Construction Schedule - Office Moves
## 4545 Construction Schedule - Office Moves
## 4546 Construction Schedule - Office Moves
## 4547 Construction Schedule - Office Moves
## 4548 Construction Schedule - Office Moves
## 4549 Construction Schedule - Office Moves
## 4550 Construction Schedule - Office Moves
## 4551 Construction Schedule - Office Moves
## 4552
## 4553
## 4554
## 4555
## 4556
## 4557
## 4558
## 4559
## 4560
## 4561
## 4562
## 4563
## 4564
## 4565
## 4566
## 4567 Re: wouldn t you like to see us
## 4568 Re: wouldn t you like to see us
## 4569 Re: wouldn t you like to see us
## 4570 Re: Merger - El Paso Merchant Energy, L.P.
## 4571 Re: Merger - El Paso Merchant Energy, L.P.
## 4572 Re: Merger - El Paso Merchant Energy, L.P.
## 4573 Re: SA Legal Team Mtg.
## 4574 Re: CFTC Interim-Chair
## 4575 Re: Vacation
## 4576 Re: Vacation
## 4577 Re: Vacation
## 4578 38th floor issues
## 4579 38th floor issues
## 4580 Oracle NDA
## 4581 Oracle NDA
## 4582 Oracle NDA
## 4583 Re: My time - Suggestion
## 4584 Cost Center Number
## 4585 Network NDAs
## 4586 Network NDAs
## 4587 Network NDAs
## 4588 Re: Gift for Janet
## 4589 Re: wouldn t you like to see us
## 4590 Re: wouldn t you like to see us
## 4591 Re: wouldn t you like to see us
## 4592 Re: wouldn t you like to see us
## 4593 Re: wouldn t you like to see us
## 4594 Re: Enron Canada EOL Financial Power Product
## 4595 Re: Enron Canada EOL Financial Power Product
## 4596 Re: Enron Canada EOL Financial Power Product
## 4597 Re: Enron Canada EOL Financial Power Product
## 4598 Re: Enron Canada EOL Financial Power Product
## 4599 Re: Enron Canada EOL Financial Power Product
## 4600 Re: Enron Canada EOL Financial Power Product
## 4601 Houston Retail Location
## 4602 Re: PRC
## 4603 Re: ENA Legal Opinion
## 4604 Re: Organizational Announcement
## 4605 Phone Numbers for 12/26
## 4606 Phone Numbers for 12/26
## 4607 Re: Flight plans
## 4608 Re: J. Aron/Statoil assignment
## 4609 Statoil assignment to J. Aron
## 4610 Re: Nominated Master User
## 4611 Power Merchants LOI
## 4612 Re: Phone number
## 4613 Update of responsibilities info
## 4614 Re: PA Review Bank of Nova Scotia
## 4615 Re: PA Review Bank of Nova Scotia
## 4616 Re: PA Review Bank of Nova Scotia
## 4617 Re: PA Review Bank of Nova Scotia
## 4618 Re: VPP Vehicle
## 4619 Re: Risk Management & Trading Corp. ("RMT") Guidelines
## 4620 Re: Hi there
## 4621 Re: Hedge Fund and CTA list
## 4622 Re: Hedge Fund and CTA list
## 4623 Re: Hedge Fund and CTA list
## 4624 Re: Hedge Fund and CTA list
## 4625 Re: Hedge Fund and CTA list
## 4626 Re: Hedge Fund and CTA list
## 4627 Broker Connect Agreements
## 4628 Re: 12 December Trade
## 4629 Re: 12 December Trade
## 4630 Re: 12 December Trade
## 4631 Re: 12 December Trade
## 4632 Re: 12 December Trade
## 4633 Re: Amerex Letter of Intent
## 4634 Broker Fee Agreement
## 4635 Conectiv / Delmarva
## 4636 Christmas Lists
## 4637 Flat Panel Monitor for Bob Bruce
## 4638 Flat Panel Monitor for Bob Bruce
## 4639 Flat Panel Monitor for Bob Bruce
## 4640 Risk Management & Trading Corp. ("RMT") Guidelines
## 4641 Risk Management & Trading Corp. ("RMT") Guidelines
## 4642 Risk Management & Trading Corp. ("RMT") Guidelines
## 4643 Risk Management & Trading Corp. ("RMT") Guidelines
## 4644 Risk Management & Trading Corp. ("RMT") Guidelines
## 4645 Risk Management & Trading Corp. ("RMT") Guidelines
## 4646 Risk Management & Trading Corp. ("RMT") Guidelines
## 4647 Risk Management & Trading Corp. ("RMT") Guidelines
## 4648 Risk Management & Trading Corp. ("RMT") Guidelines
## 4649 Risk Management & Trading Corp. ("RMT") Guidelines
## 4650 Risk Management & Trading Corp. ("RMT") Guidelines
## 4651 Risk Management & Trading Corp. ("RMT") Guidelines
## 4652 Risk Management & Trading Corp. ("RMT") Guidelines
## 4653 Risk Management & Trading Corp. ("RMT") Guidelines
## 4654 Re: Double Transaction Calendar Spread Swap
## 4655 Re: Double Transaction Calendar Spread Swap
## 4656 Merry Christmas!
## 4657 Double Transaction Calendar Spread Swap
## 4658 Double Transaction Calendar Spread Swap
## 4659 Double Transaction Calendar Spread Swap
## 4660 (00-417) Exchange Board Approves Initial Product Slate for enymex
## 4661 Re: Steel Financial Swap Term Sheets
## 4662 Canadian Financial Power Products on EOL
## 4663 Re: REVISED - EOL description change
## 4664 Re: REVISED - EOL description change
## 4665 Re: REVISED - EOL description change
## 4666 Gramm Legal Certainty Language
## 4667 EnronOnline question
## 4668 EnronOnline question
## 4669 S&C Memo Re: Commodity Futures Trading Commission: Final Rulemaking for a New Regulatory
## 4670 Pipeline Capacity Trading Website
## 4671 Broker Electronic Transaction Agrmt.
## 4672 Broker ETA
## 4673 Speaking opportunity
## 4674 Re: New Office Assignments for EGM Group
## 4675 Clickpaper Guest ID
## 4676 Clickpaper Guest ID
## 4677 S&C Memo Re: Commodity Futures Trading Commission: Final Rulemaking for a New Regulatory
## 4678 An interesting take on the situation.....
## 4679 Re: Lunch Meeting on Structured Finance Transactions
## 4680 RE: Monaco
## 4681 Swap Term Sheet Draft
## 4682 Re: Card
## 4683 Re: NEW ENRONONLINE PRODUCT - PLEASE APPROVE
## 4684 Dealflow - 11/22/00
## 4685 Dealflow - 11/22/00
## 4686 Dealflow - 11/22/00
## 4687 rockets
## 4688 Broker Transaction Agreement
## 4689 Broker Transaction Agreement
## 4690 Re: EOL Hedge funds - any issues
## 4691 Re: EOL Hedge funds - any issues
## 4692 Re: EOL Hedge funds - any issues
## 4693 Re: EOL Hedge funds - any issues
## 4694 Re: EOL Hedge funds - any issues
## 4695 Re: EOL Hedge funds - any issues
## 4696 Re: EOL Hedge funds - any issues
## 4697 Flu vaccine
## 4698 Re: a question
## 4699 Re: a question
## 4700 Re: a question
## 4701 Re: a question
## 4702 Re: a question
## 4703 11-21-00 EPG/ECP Transaction Update
## 4704 Re: EOL Linking
## 4705 Energy Gateway
## 4706 Re: Thanksgiving visit
## 4707 ETA & PA
## 4708 DynegyDirect PR segment on CNBC ".com"
## 4709 Poetry
## 4710 Enron OnLine
## 4711 Re: Argentina
## 4712 reviews
## 4713 Re: Free for dinner or a drink on Monday?
## 4714 Re: Wednesday Morning Meetings
## 4715 Re: Hong Kong Weather Products
## 4716 Re: Hong Kong Weather Products
## 4717 Re: Hong Kong Weather Products
## 4718 Re: Hong Kong Weather Products
## 4719 Re: Hong Kong Weather Products
## 4720 Re: Hong Kong Weather Products
## 4721 Re: Hong Kong Weather Products
## 4722 Re: Hong Kong Weather Products
## 4723 Re: Hong Kong Weather Products
## 4724 Re: Hong Kong Weather Products
## 4725 Re: Hong Kong Weather Products
## 4726 Re: Hong Kong Weather Products
## 4727 Re: Hong Kong Weather Products
## 4728 RE:
## 4729 Voice from the past.....
## 4730 Free for dinner or a drink on Monday?
## 4731 RE:
## 4732 Re: DealBench LLC
## 4733 Re: EOL Power Products
## 4734 Re:
## 4735 FW: Official Florida Ballot
## 4736 Re: Construction Schedule - Office Moves
## 4737 Acceptance
## 4738 Re: issue w/compliance ertificate
## 4739 Re: issue w/compliance ertificate
## 4740 Re: issue w/compliance ertificate
## 4741 Re: issue w/compliance ertificate
## 4742 Re: issue w/compliance ertificate
## 4743 Re: issue w/compliance ertificate
## 4744 Re: issue w/compliance ertificate
## 4745 Re: issue w/compliance ertificate
## 4746 Re: issue w/compliance ertificate
## 4747
## 4748
## 4749
## 4750
## 4751
## 4752
## 4753
## 4754
## 4755
## 4756
## 4757
## 4758
## 4759
## 4760
## 4761
## 4762
## 4763 Construction Schedule - Office Moves
## 4764 Construction Schedule - Office Moves
## 4765 Construction Schedule - Office Moves
## 4766 Construction Schedule - Office Moves
## 4767 Construction Schedule - Office Moves
## 4768 Construction Schedule - Office Moves
## 4769 Construction Schedule - Office Moves
## 4770 Construction Schedule - Office Moves
## 4771 Construction Schedule - Office Moves
## 4772 Construction Schedule - Office Moves
## 4773 Construction Schedule - Office Moves
## 4774 Construction Schedule - Office Moves
## 4775 Construction Schedule - Office Moves
## 4776 Construction Schedule - Office Moves
## 4777 Construction Schedule - Office Moves
## 4778 Construction Schedule - Office Moves
## 4779 Construction Schedule - Office Moves
## 4780 Construction Schedule - Office Moves
## 4781 Construction Schedule - Office Moves
## 4782 Construction Schedule - Office Moves
## 4783 Construction Schedule - Office Moves
## 4784 Construction Schedule - Office Moves
## 4785 Construction Schedule - Office Moves
## 4786 Construction Schedule - Office Moves
## 4787 Construction Schedule - Office Moves
## 4788 Construction Schedule - Office Moves
## 4789 Construction Schedule - Office Moves
## 4790 Construction Schedule - Office Moves
## 4791 Construction Schedule - Office Moves
## 4792 Construction Schedule - Office Moves
## 4793 Re: Latest News
## 4794 Re: US REGULATORY CALL - FRIDAY NOVEMBER 10
## 4795 Re: Canadian Financial Trading Confirmation Process
## 4796 Re: Super Saturday Interviews
## 4797 Re: Hong Kong Weather Online
## 4798 Re: Hong Kong Weather Online
## 4799 Re: Hong Kong Weather Online
## 4800 Re: Hong Kong Weather Online
## 4801 Re: Hong Kong Weather Online
## 4802 Re: Hong Kong Weather Online
## 4803 Re: Hong Kong Weather Online
## 4804 Re: Hong Kong Weather Online
## 4805 Re: Hong Kong Weather Online
## 4806 Re: Hong Kong Weather Online
## 4807 Re: Hong Kong Weather Online
## 4808 Re: Hong Kong Weather Online
## 4809 Re: Hong Kong Weather Online
## 4810 Re: Hong Kong Weather Online
## 4811 Re: Hong Kong Weather Online
## 4812 Re: Hong Kong Weather Online
## 4813 Re: Hong Kong Weather Online
## 4814 RE: EnronOnline
## 4815 Re: Steel Financial Swap Term Sheet Question
## 4816 Appointments of Agents and Attorneys in Fact
## 4817 Year End Performance Reviews
## 4818 Year End Performance Reviews
## 4819 Year End Performance Reviews
## 4820 Year End Performance Reviews
## 4821 Year End Performance Reviews
## 4822 Year End Performance Reviews
## 4823 Re: Fas 133
## 4824 Bowling Pictures
## 4825 Correction to PG&E Spread Trade
## 4826 Re: morning
## 4827 Re: How Are You?
## 4828 RE: Agreements
## 4829 RE: Clean copy
## 4830 Re: vacation day
## 4831 Re: vacation day
## 4832 Re: vacation day
## 4833 Chinese Wall Issue
## 4834 ADA Findings
## 4835 EOL
## 4836 Re: EnronOnline
## 4837 EOL Brazil
## 4838 Re: Colombian deals
## 4839 Re: Broker connect
## 4840 Re: ISDA
## 4841 Re: CFTC Legislation
## 4842 Re: CFTC Legislation
## 4843 Re: CFTC Legislation
## 4844 Re: New Ideas
## 4845 Cats
## 4846 Performance Review Process
## 4847 Performance Review Process
## 4848 Performance Review Process
## 4849 Performance Review Process
## 4850 Performance Review Process
## 4851 Performance Review Process
## 4852 Performance Review Process
## 4853 Agenda for the JAD session
## 4854 Re: Steel Financial Swap Term Sheet Question
## 4855 Re: Description for your Group
## 4856 Re: Capacity Trading Policy
## 4857 Re: Puget Sound requests NW price caps
## 4858 Re: Puget Sound requests NW price caps
## 4859 Re: Puget Sound requests NW price caps
## 4860 Re: Puget Sound requests NW price caps
## 4861 Re: Puget Sound requests NW price caps
## 4862 Re: Puget Sound requests NW price caps
## 4863 Re: Puget Sound requests NW price caps
## 4864 Re: Global Trading Meeting
## 4865 Re: Global Trading Meeting
## 4866 Re: Global Trading Meeting
## 4867 Re: Global Trading Meeting
## 4868 Re: Global Trading Meeting
## 4869 Re: Global Trading Meeting
## 4870 Re: Global Trading Meeting
## 4871 Re: Global Trading Meeting
## 4872 Re: Global Trading Meeting
## 4873 Re: Colombian deals
## 4874 Re: FAS 133 Summary
## 4875 Returned mail: User unknown
## 4876 guest id
## 4877 EnronOnline
## 4878 Re: Hawaii II 125-0 Facility
## 4879 US Power Phy Index APPROVAL REQUEST!
## 4880 US Power Phy Index APPROVAL REQUEST!
## 4881 US Power Phy Index APPROVAL REQUEST!
## 4882 US Power Phy Index APPROVAL REQUEST!
## 4883 Re: Energy News Live Site
## 4884 Re: Financial Confirmations Issues
## 4885 EnronOnline - pipeline capacity - CFTC issues
## 4886 Legal Survey update
## 4887 Re: Tax Re: i2 Technologies
## 4888 CEA Update
## 4889 CEA Update
## 4890 address
## 4891 Re: New Product Type - Approval Requested
## 4892 Re: ISDA Master Documentation Workshop
## 4893 Re: ISDA Master Documentation Workshop
## 4894 Re: ISDA Master Documentation Workshop
## 4895 Re: sample confirm and index language
## 4896 Re: City Streets
## 4897 Clearing User Meetings
## 4898 Re: Associate/Analyst Super Saturday Participation - ADDITIONAL REQUEST
## 4899 Re: REVISED-YEAR END CALENDAR
## 4900 Re: (00-362) Revised Crude Oil Options Expiration Date
## 4901 Steel Trading - General Contacts
## 4902
## 4903
## 4904
## 4905
## 4906 (00-362) Revised Crude Oil Options Expiration Date
## 4907 Re: Friday s Conference Call
## 4908 Re: Steel - final version
## 4909 talking points
## 4910 monthly report
## 4911 Re: JEDI II
## 4912 Re: Update!
## 4913 Re: Resume
## 4914 Re: Do you wish to continue receiving the weekly update on Polish activities of Enron?
## 4915 Re: Draft Term Sheets--Steel Financial Swap
## 4916 Re: Final draft of Ken Lay letter
## 4917 sample confirm and index language
## 4918 Appointments of Agents and Attorneys in Fact
## 4919 Appointments of Agents and Attorneys in Fact
## 4920 Appointments of Agents and Attorneys in Fact
## 4921 Appointments of Agents and Attorneys in Fact
## 4922 Re: EOL Products - Argentina
## 4923 Re: EOL Products - Argentina
## 4924 Re: EOL Products - Argentina
## 4925 RE: ... Urgent Weather Derivative Advice ...
## 4926 RE: ... Urgent Weather Derivative Advice ...
## 4927 RE: ... Urgent Weather Derivative Advice ...
## 4928 RE: ... Urgent Weather Derivative Advice ...
## 4929 RE: ... Urgent Weather Derivative Advice ...
## 4930 RE: ... Urgent Weather Derivative Advice ...
## 4931 RE: ... Urgent Weather Derivative Advice ...
## 4932 RE: ... Urgent Weather Derivative Advice ...
## 4933 RE: ... Urgent Weather Derivative Advice ...
## 4934 New Markets for EnronOnline
## 4935 Re: EOL Power Products
## 4936 Re: EOL Power Products
## 4937 Meeting Time Change
## 4938 Re: Colombian deals
## 4939 Re: Enron/FPL ISDA
## 4940 Re: Notification to NYMEX/CFTC
## 4941 Re: Notification to NYMEX/CFTC
## 4942 Re: Notification to NYMEX/CFTC
## 4943 Re: EOL Electronic Trading Agreement
## 4944 Re:
## 4945 Re: ROCKETS TICKETS
## 4946 Legal Meeting last week
## 4947 ENW Legal Report
## 4948 Re: A Reminder
## 4949 Re: Online Legal Contacts
## 4950 Re: Enron Metals
## 4951 Re: Enron Metals
## 4952 Re: Enron Metals
## 4953 Re: Enron Metals
## 4954 Re: Enron Metals
## 4955 Re: Enron Metals
## 4956 Re: Enron Metals
## 4957 PA s & ETA s
## 4958 Re: FW: Deutsche Bank ISDA Master Agreements
## 4959 Re: FW: Deutsche Bank ISDA Master Agreements
## 4960 Re: FW: Deutsche Bank ISDA Master Agreements
## 4961 monitor
## 4962 Kindly respond
## 4963 Fw: funny one!
## 4964 Re: Thanksgiving Vacation Plans
## 4965 Re: Thanksgiving Vacation Plans
## 4966 Re: Thanksgiving Vacation Plans
## 4967 FW: CEA Modernization draft
## 4968 (00-337) Kiodex as enymex System Provider
## 4969 (00-337) Kiodex as enymex System Provider
## 4970 (00-337) Kiodex as enymex System Provider
## 4971 (00-337) Kiodex as enymex System Provider
## 4972 (00-337) Kiodex as enymex System Provider
## 4973 (00-337) Kiodex as enymex System Provider
## 4974 Re: EnronOnline PAs
## 4975 CFTC Coordination
## 4976 Argentine Customers List
## 4977 Re: ISDA North American Energy and Developing Products Committee
## 4978 Re: US Heating Oil and Unleaded Gas Fin Spreads - Approval
## 4979 meeting re: CFTC Issues
## 4980 Re: CFTC
## 4981 Re: Palladium Insurance Letter of Credit
## 4982 rsvp
## 4983 itinerary
## 4984 Re: EnronOnline New Markets/Products Weekly Update 9/8/00
## 4985 Office Moves
## 4986 Office Moves
## 4987 Office Moves
## 4988 Office Moves
## 4989 Office Construction/Moves
## 4990 Office Construction/Moves
## 4991 Office Construction/Moves
## 4992 Office Construction/Moves
## 4993 Office Construction/Moves
## 4994 Office Construction/Moves
## 4995 Office Construction/Moves
## 4996 Office Construction/Moves
## 4997 Re: FW: Energy Bar Program
## 4998 NYMEX Employee
## 4999 Re: Visit in Hyeres
## 5000 Re: Pride Day Rate 250IC Confirm
## 5001 Re: Pride Day Rate 250IC Confirm
## 5002 Re: Pride Day Rate 250IC Confirm
## 5003 Re: Pride Day Rate 250IC Confirm
## 5004 Product Type Approval - Argentina Phy Gas
## 5005 Visit in Hyeres
## 5006 Alberta PPA Financing
## 5007 Please print
## 5008 Tonight
## 5009 Re: Reminder!
## 5010 Re: Reminder!
## 5011 Re: Reminder!
## 5012 Re: Reminder!
## 5013 Re: Reminder!
## 5014 Re: Reminder!
## 5015 Re: Reminder!
## 5016 Re: Reminder!
## 5017 Re: Reminder!
## 5018 Re: Reminder!
## 5019 Re: Reminder!
## 5020 Re: Reminder!
## 5021 Re: Reminder!
## 5022 Re: Reminder!
## 5023 Re: Reminder!
## 5024 Apples/Oranges
## 5025 Hey Greg
## 5026 Bond & Equity Trading
## 5027 Re: Sailing
## 5028 Re: Class Request: PPTADV97-743 PowerPoint 97, Intermediate, Taffy Milligan
## 5029 Re: CommodityLogic Legal Docs
## 5030 Re: CommodityLogic Legal Docs
## 5031 Re: CommodityLogic Legal Docs
## 5032 Re: CommodityLogic Legal Docs
## 5033 Re: CommodityLogic Legal Docs
## 5034 Re: CommodityLogic Legal Docs
## 5035 Re: CommodityLogic Legal Docs
## 5036 Re: BP letter
## 5037 (00-316) Initial Margins for the Mid-Columbia River Futures Contract
## 5038 Re: Sales Practices/Anti-Manipulation Training
## 5039 Re:
## 5040 Osprey II - Enron Agreement
## 5041 Monitor
## 5042 Re: Message Text
## 5043 Re: CommodityLogic Legal Docs
## 5044 Re: CommodityLogic Legal Docs
## 5045 Re: CommodityLogic Legal Docs
## 5046 Re: Quick Update
## 5047 Re: Houston Visit
## 5048 Training
## 5049 Re: Houston Visit
## 5050 Re: Houston Visit
## 5051 Re: Houston Visit
## 5052 Re: Houston Visit
## 5053 Re: CEA Update
## 5054 Re: EnronOnline s Legal & Privacy Statement
## 5055 Re: EnronOnline s Legal & Privacy Statement
## 5056 Re: EnronOnline s Legal & Privacy Statement
## 5057 Re: EnronOnline s Legal & Privacy Statement
## 5058 Re: EnronOnline s Legal & Privacy Statement
## 5059 Re: EnronOnline s Legal & Privacy Statement
## 5060 Re: EnronOnline s Legal & Privacy Statement
## 5061 Re: Enron Online Game
## 5062 Re: Enron Online Game
## 5063 Re: Enron Online Game
## 5064 Re: Enron Online Game
## 5065 Re: Enron Online Game
## 5066 Re: Enron Online Game
## 5067 Re: Enron Online Game
## 5068 Re: Fw: IBJ ISDA MASTER AGREEMENT
## 5069 Re: Fw: IBJ ISDA MASTER AGREEMENT
## 5070 Re: Fw: IBJ ISDA MASTER AGREEMENT
## 5071 Re: Fw: IBJ ISDA MASTER AGREEMENT
## 5072 Re: Fw: IBJ ISDA MASTER AGREEMENT
## 5073 Re: Fw: IBJ ISDA MASTER AGREEMENT
## 5074 Re: Fw: IBJ ISDA MASTER AGREEMENT
## 5075 Re: Fw: IBJ ISDA MASTER AGREEMENT
## 5076 Re: Fw: IBJ ISDA MASTER AGREEMENT
## 5077 Re: Sailing
## 5078 Re: (00-315) Arts Club Invitation
## 5079 Re: BP Amoco
## 5080 Re: Consolidated Edison, Inc. Confirmation Letter
## 5081 Re: Consolidated Edison, Inc. Confirmation Letter
## 5082 Re: Consolidated Edison, Inc. Confirmation Letter
## 5083 Re: Consolidated Edison, Inc. Confirmation Letter
## 5084 Re: Consolidated Edison, Inc. Confirmation Letter
## 5085 Re: Consolidated Edison, Inc. Confirmation Letter
## 5086 Re: Consolidated Edison, Inc. Confirmation Letter
## 5087 Re: Consolidated Edison, Inc. Confirmation Letter
## 5088 Re: Consolidated Edison, Inc. Confirmation Letter
## 5089 Re: Consolidated Edison, Inc. Confirmation Letter
## 5090 EOL Brazil
## 5091 Re: EnronOnline
## 5092 Re: EnronOnline jurisdictions
## 5093 Re: EnronOnline jurisdictions
## 5094 Re: EnronOnline jurisdictions
## 5095 Re: Sailing
## 5096 Re: Audio review for EnronOnline - Mike McConnell
## 5097 Re: Audio review for EnronOnline - Mike McConnell
## 5098 Re: Audio review for EnronOnline - Mike McConnell
## 5099 Re: FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 5100 Re: FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 5101 Re: FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 5102 Re: FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 5103 Re: FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 5104 Re: FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 5105 Re: FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 5106 Re: FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 5107 Re: FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 5108 Re: FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 5109 Re: FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 5110 Re: FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 5111 Re: FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 5112 Sailing
## 5113 OPEN A/C LIST
## 5114 BP Amoco
## 5115 Re: CNV-Precedents
## 5116 FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 5117 FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 5118 FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 5119 FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 5120 FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 5121 FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 5122 FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 5123 BVI
## 5124 Confirmation of your order
## 5125 IBJ
## 5126 IBJ
## 5127 IBJ
## 5128 Equipment for Mary
## 5129 Approved Countries
## 5130 Approved Countries
## 5131 Re: Fw: IBJ ISDA MASTER AGREEMENT
## 5132 Re: IBJ ISDA MASTER AGREEMENT
## 5133 Re: IBJ ISDA MASTER AGREEMENT
## 5134 Re: IBJ ISDA MASTER AGREEMENT
## 5135 "Thin" Computer Flat Screen
## 5136 Re: iVita is on the front page of Today s Wall Street Journal
## 5137 EnergyGateway.com Agreements
## 5138 Re: Charles Christening
## 5139 Re: EnronOnline New markets Status!!!
## 5140 Re: Online Extras Is Now Part Of The Offer Zone
## 5141 Re: Warrant Based Swaps
## 5142 Re: Warrant Based Swaps
## 5143 Re: Warrant Based Swaps
## 5144 Re: Conference in Washington, D.C.
## 5145 Re: Conference in Washington, D.C.
## 5146 Re: Conference in Washington, D.C.
## 5147 Re: Conference in Washington, D.C.
## 5148 Re: Conference in Washington, D.C.
## 5149 Re: Dayrate Cap Indicative Proposal to Noble Drilling
## 5150 Re: Dayrate Cap Indicative Proposal to Noble Drilling
## 5151 Re: Dayrate Cap Indicative Proposal to Noble Drilling
## 5152 Confirmation of your order
## 5153 Mexico
## 5154 Mexico
## 5155 Mexico
## 5156 Mexico
## 5157 Mexico
## 5158 Mexico
## 5159 Re: TULA Conference Papers
## 5160 Re: Files
## 5161 Re: Files
## 5162 Re: Files
## 5163 Re: Files
## 5164 Re: Files
## 5165 re: Bid Solicitation
## 5166 request for monitor
## 5167 Message from Ray Richards re: Delta
## 5168 Re: Aspect Resources
## 5169 Probably too late for this but....
## 5170
## 5171
## 5172
## 5173
## 5174
## 5175 FW: Paragraph 13 of the CSAs
## 5176 FW: Delta
## 5177 Guest access Chile
## 5178 Delta III
## 5179 Re: Price Limit Order Language
## 5180 FW: Delta III - Enron-Citi FAA
## 5181 Re: Price Limit Order Language
## 5182 Delta III
## 5183 Japanese ISDA Documents
## 5184 Re: Swap deal with EPMI Long Term Hedge
## 5185 Re: Swap deal with EPMI Long Term Hedge
## 5186 Re: Swap deal with EPMI Long Term Hedge
## 5187 Re: EnronOnline, Online Help Guide
## 5188 ISDA Documents
## 5189 Re: Guest Users
## 5190 Re: Guest Users
## 5191 Re: Guest Users
## 5192 RSVP
## 5193 Sailing
## 5194 DealBench competition
## 5195 Welcome home!
## 5196 Welcome home!
## 5197 Re: Gross Error language
## 5198 Delta III
## 5199 Guest Users
## 5200 October 2nd London Meeting
## 5201 Re: New baby Diana Maguire Keeler
## 5202 Re: Revised Schedule to ISDA Master
## 5203 Re: Revised Schedule to ISDA Master
## 5204 Re: Revised Schedule to ISDA Master
## 5205 Re: Revised Schedule to ISDA Master
## 5206 Re: Revised Schedule to ISDA Master
## 5207 Re: Revised Schedule to ISDA Master
## 5208 Re: Revised Schedule to ISDA Master
## 5209 Re: Authorized trader list/electronic notices
## 5210 DealBench
## 5211 Deal Invite
## 5212 jurisdiction
## 5213 Congrats!
## 5214 EnronOnline access to Australian Power products
## 5215 EnronOnline access to Australian Power products
## 5216 EnronOnline access to Australian Power products
## 5217 EnronCredit.com - parent guaranty issue
## 5218 EnronCredit.com - parent guaranty issue
## 5219 EnronCredit.com - parent guaranty issue
## 5220 EnronCredit.com - parent guaranty issue
## 5221 EnronCredit.com - parent guaranty issue
## 5222 Confidentiality Agreement
## 5223 Confidentiality Agreement
## 5224 Confidentiality Agreement
## 5225 Confidentiality Agreement
## 5226 Re: Infomercial script
## 5227 Re: Schedule to ISDA Master: Enron Corp. and Holding I - Put Option. DOC
## 5228 Yosemite/Delta III
## 5229 Yosemite/Delta III
## 5230 New Office Space
## 5231 New Office Space
## 5232 New Office Space
## 5233 New Office Space
## 5234 New Office Space
## 5235 New Office Space
## 5236 Brazil
## 5237 Delta III Documents - Amendments to Delta Notes and Forms of Cons ent Thereto
## 5238 Re: Weather Derivative GTC s with Enron Japan Corp. as Counterparty
## 5239 Re: Weather Derivative GTC s with Enron Japan Corp. as Counterparty
## 5240 Re: Weather Derivative GTC s with Enron Japan Corp. as Counterparty
## 5241 Re: Weather Derivative GTC s with Enron Japan Corp. as Counterparty
## 5242 Re: Weather Derivative GTC s with Enron Japan Corp. as Counterparty
## 5243 Re: Weather Derivative GTC s with Enron Japan Corp. as Counterparty
## 5244 Milbank
## 5245 Re: Timesheets for 8/1-15/2000 - Short Fuse
## 5246 Yosemite/Delta III
## 5247 Alcoa, Inc.
## 5248 Re: SWAP Group - Calendar
## 5249 ENW Report
## 5250 Order nonprescription products at merckmedco.com!
## 5251 Re: Please review attached language and return asap
## 5252 EnronOnline
## 5253 Gross Error language
## 5254 Re: update
## 5255 Product Description
## 5256 Re: CFTC Reauthorization
## 5257 Re: ads approval
## 5258 Re: ads approval
## 5259 Re: ads approval
## 5260 Re: ads approval
## 5261 Re: ads approval
## 5262 Re: ads approval
## 5263 Re: ads approval
## 5264 Re: ads approval
## 5265 Re: ads approval
## 5266 Re: ads approval
## 5267 Re: Office Build-out
## 5268 FX Transactions
## 5269 Re: FX Transactions
## 5270 Screenshot
## 5271 FOUR NEW PRODUCTS REQUIRING YOUR APPROVAL
## 5272
## 5273 Re: Enron/isn contract
## 5274 Office Build-out
## 5275 Comment Letter
## 5276 Re: MG - US Regulatory Status...
## 5277 Re: MG - US Regulatory Status...
## 5278 Enron moves make waves in electronic trading industry.(Brief ...
## 5279 Pride Transaction Confirm
## 5280 Re: Copyright notice language
## 5281 Re: Copyright notice language
## 5282 Re: Copyright notice language
## 5283 Potential Meeting Next Week
## 5284 Kahuna (Yosemite III); Draft Swap Confirmations
## 5285 Re: ISDA with Citibank Subsidiary
## 5286 Re: ISDA with Citibank Subsidiary
## 5287 Re: ISDA with Citibank Subsidiary
## 5288 Re: ISDA with Citibank Subsidiary
## 5289 Re: ISDA with Citibank Subsidiary
## 5290 Re: ISDA with Citibank Subsidiary
## 5291 Re: ISDA with Citibank Subsidiary
## 5292 Re: ISDA with Citibank Subsidiary
## 5293 Re: ISDA with Citibank Subsidiary
## 5294 Re: ISDA with Citibank Subsidiary
## 5295 Re: ISDA with Citibank Subsidiary
## 5296 Re: ISDA with Citibank Subsidiary
## 5297 Re: ISDA with Citibank Subsidiary
## 5298 Re: ISDA with Citibank Subsidiary
## 5299 Re: ISDA with Citibank Subsidiary
## 5300 Fish
## 5301 Confidentiality Agreement
## 5302
## 5303
## 5304 Re: EOL Passwords
## 5305 Re: EOL Passwords
## 5306 Re: EOL Passwords
## 5307 Re: EOL Passwords
## 5308 Re: EOL Passwords
## 5309 Re: EOL Passwords
## 5310 Re: EOL Passwords
## 5311 Re: EOL Passwords
## 5312 Re: EOL Passwords
## 5313 Re: EOL Passwords
## 5314 Re: EOL Passwords
## 5315 Re: EOL Passwords
## 5316 Re: EOL Passwords
## 5317 Re: EOL Passwords
## 5318 Re: EOL Passwords
## 5319 Re: EOL Passwords
## 5320 Re: EOL Passwords
## 5321 Re: EOL Passwords
## 5322 Re: EOL Passwords
## 5323 Re: EOL Passwords
## 5324 Re: EOL Passwords
## 5325 Re: vacation
## 5326 Re: vacation
## 5327 Re: vacation
## 5328 Re: Sea Freight Launch Flyer
## 5329 MG
## 5330 I don t have your telephone number
## 5331 Re: Enron Online
## 5332 Re: Vacation Request -
## 5333 Re: Vacation Request -
## 5334 Re: Vacation Request -
## 5335 Re: Vacation Request -
## 5336 Re: Vacation Request -
## 5337 Re: Vacation Request -
## 5338 Re: Vacation Request -
## 5339 Re: Kahuna (Yosemite 3) Prepay Working ist
## 5340 Re: Kahuna (Yosemite 3) Prepay Working ist
## 5341 Re: Kahuna (Yosemite 3) Prepay Working ist
## 5342 Re: Kahuna (Yosemite 3) Prepay Working ist
## 5343 Re: Kahuna (Yosemite 3) Prepay Working ist
## 5344 Re: Kahuna (Yosemite 3) Prepay Working ist
## 5345 Re: Kahuna (Yosemite 3) Prepay Working ist
## 5346 Re: Kahuna (Yosemite 3) Prepay Working ist
## 5347 Re: Kahuna (Yosemite 3) Prepay Working ist
## 5348 Re: Kahuna (Yosemite 3) Prepay Working ist
## 5349 Re: Kahuna (Yosemite 3) Prepay Working ist
## 5350 Re: Kahuna (Yosemite 3) Prepay Working ist
## 5351 Re: Kahuna (Yosemite 3) Prepay Working ist
## 5352 Re: Kahuna (Yosemite 3) Prepay Working ist
## 5353 Re: Kahuna (Yosemite 3) Prepay Working ist
## 5354 Re: Kahuna (Yosemite 3) Prepay Working ist
## 5355 Re: Kahuna (Yosemite 3) Prepay Working ist
## 5356 Re: Kahuna (Yosemite 3) Prepay Working ist
## 5357 Re: Kahuna (Yosemite 3) Prepay Working ist
## 5358 Re: Kahuna (Yosemite 3) Prepay Working ist
## 5359 Re: Kahuna (Yosemite 3) Prepay Working ist
## 5360 Re: Kahuna (Yosemite 3) Prepay Working ist
## 5361 Re: Kahuna (Yosemite 3) Prepay Working ist
## 5362 Re: Kahuna (Yosemite 3) Prepay Working ist
## 5363 Re: Kahuna (Yosemite 3) Prepay Working ist
## 5364 LeBoeuf bill
## 5365 Re: Stopped anti-energy amendment!!!
## 5366 Re: Stopped anti-energy amendment!!!
## 5367 Re: Stopped anti-energy amendment!!!
## 5368 Re: Stopped anti-energy amendment!!!
## 5369 Re: Stopped anti-energy amendment!!!
## 5370 Re: Stopped anti-energy amendment!!!
## 5371 Re: Stopped anti-energy amendment!!!
## 5372 Re: Stopped anti-energy amendment!!!
## 5373 Re: Stopped anti-energy amendment!!!
## 5374 Re: Stopped anti-energy amendment!!!
## 5375 Re: Stopped anti-energy amendment!!!
## 5376 Re: Stopped anti-energy amendment!!!
## 5377 Re: Stopped anti-energy amendment!!!
## 5378 Re: International Sea Freight Product Launch
## 5379 Re: International Sea Freight Product Launch
## 5380 Re: International Sea Freight Product Launch
## 5381 Re: International Sea Freight Product Launch
## 5382 Re: International Sea Freight Product Launch
## 5383 Re: International Sea Freight Product Launch
## 5384 Re: International Sea Freight Product Launch
## 5385 Re: International Sea Freight Product Launch
## 5386 Re: International Sea Freight Product Launch
## 5387 Net Works PPM Issues
## 5388 Net Works PPM Issues
## 5389 Net Works PPM Issues
## 5390 Networks PPM
## 5391 FSA Letter
## 5392 FSA Letter
## 5393 FSA Letter
## 5394 FSA Letter
## 5395 Re: FirstCall Information Service
## 5396 Re: FirstCall Information Service
## 5397 Re: FirstCall Information Service
## 5398 Re: FirstCall Information Service
## 5399 Re: FirstCall Information Service
## 5400 Re: FirstCall Information Service
## 5401 Re: FirstCall Information Service
## 5402 Re: For Mark Taylor s approval
## 5403 Re: Workload Responsibiities in Argentina
## 5404 Term Sheet
## 5405 Re: CA Template
## 5406 Garden State
## 5407 Re: Mahonia Prepay Restructuring
## 5408 ECT Legal Conference
## 5409 Re: SWAP Group Revised JUL-AUG Calendar
## 5410 Project Doorstep
## 5411 Project Doorstep
## 5412 Revised rig day rate confirm
## 5413 Re: Fin. metals launch newsticker
## 5414 Re: Kennecott ETA
## 5415 Direct Access Disclaimer Language
## 5416 Re: Kennecott ETA
## 5417 Re: Revised Legal and Privacy Statement
## 5418 Direct Access Disclaimer Language
## 5419 Re: Arbritation clause-ISDA
## 5420 Revised Legal and Privacy Statement
## 5421 Revised Legal and Privacy Statement
## 5422 Revised Legal and Privacy Statement
## 5423 Re: Online docs
## 5424 Re: FW: Enron North America (KMM13785C0KM)
## 5425 Re: FW: Enron North America (KMM13785C0KM)
## 5426 Re: FW: Enron North America (KMM13785C0KM)
## 5427 Re: FW: Enron North America (KMM13785C0KM)
## 5428 Re: FW: Enron North America (KMM13785C0KM)
## 5429 Re: FW: Enron North America (KMM13785C0KM)
## 5430 Re: FW: Enron North America (KMM13785C0KM)
## 5431 Re: Project Doorstep - Financial Trading Documentation
## 5432 Re: Project Doorstep - Financial Trading Documentation
## 5433 Re: Project Doorstep - Financial Trading Documentation
## 5434 Re: Project Doorstep - Financial Trading Documentation
## 5435 Re: Project Doorstep - Financial Trading Documentation
## 5436 Re: Project Doorstep - Financial Trading Documentation
## 5437 Re: Project Doorstep - Financial Trading Documentation
## 5438 Re: Project Doorstep - Financial Trading Documentation
## 5439 Re: Project Doorstep - Financial Trading Documentation
## 5440 Re: Reliable Power Products (Nuclear Outage Call Options) on EnronOnline
## 5441 Electronic signatures/No More Confirms issues
## 5442 Electronic signatures/No More Confirms issues
## 5443 Electronic signatures/No More Confirms issues
## 5444 Re: ISDA US Regulatory Weekly Conference Call
## 5445 Vacation Dates
## 5446 Re: Agenda for Members Update
## 5447 Argentina PA and ETA
## 5448 Argentina PA and ETA
## 5449 EOL visit to Houston
## 5450 EOL visit to Houston
## 5451 EOL visit to Houston
## 5452 Re: Patent Pending
## 5453 Re: Patent Pending
## 5454 Re: Patent Pending
## 5455 Re: FW: Bobby Riggins
## 5456 Direct Access
## 5457 Pride
## 5458 Pride - No "Out"
## 5459 Pride
## 5460 Pride
## 5461 Re: Dayrate confirmation
## 5462 Re:
## 5463 New Addition to St. Clair Household
## 5464 New Addition to St. Clair Household
## 5465 New Addition to St. Clair Household
## 5466 New Addition to St. Clair Household
## 5467 New Addition to St. Clair Household
## 5468 New Addition to St. Clair Household
## 5469 Re: Language verification- NN0294.1
## 5470 Re: EnronOnline Chat
## 5471 Tel. conf.
## 5472 Carol
## 5473 Carol
## 5474 Carol
## 5475 Carol
## 5476 Carol
## 5477 Carol
## 5478 Media General Confirm
## 5479 Media General Confirm
## 5480 Media General Confirm
## 5481 Continental_Intl
## 5482 EnronOnline Chat
## 5483 Re: Asian Weather Derivatives on EOL
## 5484 CWT memo re: CTA
## 5485 Re:
## 5486 Chat on EnronOnline
## 5487 Re: Private Office Pricing
## 5488 AlphaTrust: Providing a Legal Framework for Electronic Signatures
## 5489 Re: International Coal Ticker Story
## 5490 Re: International Coal Ticker Story
## 5491 Re: International Coal Ticker Story
## 5492 Re: International Coal Ticker Story
## 5493 Re: International Coal Ticker Story
## 5494 Re: International Coal Ticker Story
## 5495 Re: International Coal Ticker Story
## 5496 Re: International Coal Ticker Story
## 5497 Re: International Coal Ticker Story
## 5498 Re: International Coal Ticker Story
## 5499 Re: International Coal Ticker Story
## 5500 Re: Private Office Pricing
## 5501 Carol St. Clair
## 5502 Carol St. Clair
## 5503 Carol St. Clair
## 5504 Re: Meeting Reschedule
## 5505 Re: Time Stamp on Stock Quotes
## 5506 DRAFT PRESS RELEASE: Metals Trading on EOL
## 5507 Re: URGENT REQUEST
## 5508 Re: URGENT REQUEST
## 5509 Re: URGENT REQUEST
## 5510 Re: Macromedia site of the day-reference to EnronOnline
## 5511 Re: EnronOnline and SFA requirements
## 5512 Re: EnronOnline and SFA requirements
## 5513 Re: EnronOnline and SFA requirements
## 5514 Re: EnronOnline and SFA requirements
## 5515 Re: EnronOnline and SFA requirements
## 5516 Re: EnronOnline and SFA requirements
## 5517 Re: EnronOnline and SFA requirements
## 5518 Re: EnronOnline and SFA requirements
## 5519 Re: EnronOnline and SFA requirements
## 5520 Re: EnronOnline and SFA requirements
## 5521 Re: EnronOnline and SFA requirements
## 5522 EnronOnline Comments for the Federal Trade Commission
## 5523 Re: Time Stamp on Stock Quotes
## 5524 Re: Time Stamp on Stock Quotes
## 5525 Re: Time Stamp on Stock Quotes
## 5526 Re: Time Stamp on Stock Quotes
## 5527 Re: Cancellation of Monthly State of California Government Affairs Conference Call
## 5528 Re: Clickpaper legal review
## 5529 Re: UK Mobile Phone
## 5530 Re
## 5531 Re: Enron North America Corp. NYMEX Hedge Exemption Applications
## 5532 Re: Timekeeping
## 5533 Re: Orlando Utilities Commission
## 5534 Enron North America Corp. NYMEX Hedge Exemption Applications
## 5535 Re: Enron North America Corp. NYMEX Hedge Exemption Applications
## 5536 Re: Enron North America Corp. NYMEX Hedge Exemption Applications
## 5537 Back to Back Agreement
## 5538 Enron-MG Transaction
## 5539 Re: Online Issues - Mexico
## 5540 Re: Online Issues - Mexico
## 5541 Re: Online Issues - Mexico
## 5542 Re: Online Issues - Mexico
## 5543 Re: Online Issues - Mexico
## 5544 Re: Online Issues - Mexico
## 5545 Re: Online Issues - Mexico
## 5546 Re: Online Issues - Mexico
## 5547 Re: Online Issues - Mexico
## 5548 Re: Online Issues - Mexico
## 5549 Re: Online Issues - Mexico
## 5550 Price Posting Agreement
## 5551 Re: paralegal "thanks"
## 5552 Re: paralegal "thanks"
## 5553 Re: paralegal "thanks"
## 5554 Re: REVISION to Ticker item for Oneok
## 5555 ISDA
## 5556 ISDA
## 5557 Re: Continental Meeting
## 5558 Continental Confidentiality Agreement
## 5559 Continental Confidentiality Agreement
## 5560 Continental Confidentiality Agreement
## 5561 Letter to Chairman Ewing
## 5562 Letter to Chairman Ewing
## 5563 Letter to Chairman Ewing
## 5564 Ewing letter
## 5565 Re: Forum on Electronic Trading
## 5566 Re: EOL Survey
## 5567 Re: EFMD application
## 5568 Posting Agreement Draft
## 5569 Posting Agreement Draft
## 5570 Posting Agreement Draft
## 5571 Posting Agreement Draft
## 5572 Posting Agreement Draft
## 5573 Posting Agreement Draft
## 5574 Posting Agreement Draft
## 5575 Posting Agreement Draft
## 5576 Re: Confidentiality Agreement - - EOL
## 5577 Re: US Styrene FOB
## 5578 Web Alumni Directory Correction
## 5579 Monday a.m. call
## 5580 EnronOnline Questions for Local Counsel
## 5581 Confidentiality Agreement - - EOL
## 5582 EOL Presentation revised to match audio
## 5583 Coal EOL Presentation
## 5584 Mike McConnell Presentation
## 5585 More Existing Website Content
## 5586 Market Commentary
## 5587 Remaining Web Content
## 5588 Sample Pulp and Paper Newsletter
## 5589 Plastics Article
## 5590 failure to pay contract
## 5591 Series 7
## 5592 Laptop Order
## 5593 Laptop Order
## 5594 Laptop Order
## 5595 Re: Agreements
## 5596 Re: Agreements
## 5597 Re: Agreements
## 5598 Re: Agreements
## 5599 Re: Agreements
## 5600 Re: Agreements
## 5601 Re: Agreements
## 5602 Re: Orlando Utilities Commission
## 5603 Re: Can You Still Remember Your DREAMS?
## 5604 Re: Sicamar
## 5605 Euro 2000 Agreement
## 5606 Sample forms
## 5607 Re: EnronOnline Content Approval
## 5608 Re: Ticker Item Approval for US Gas MONTHLY Products
## 5609 Re: US Styrene FOB Phy Fwrd.
## 5610 Re: BWT Transaction
## 5611 Re: additional names
## 5612 Re: additional names
## 5613 Re: additional names
## 5614 Re: additional names
## 5615 Re: BWT Transaction
## 5616 Re: BWT Transaction
## 5617 Re: BWT Transaction
## 5618 Re: additional names
## 5619 Re: additional names
## 5620 Re: additional names
## 5621 Re: additional names
## 5622 Re: additional names
## 5623 Re: additional names
## 5624 Re: additional names
## 5625 Re: additional names
## 5626 Re: additional names
## 5627 Re: additional names
## 5628 Re: additional names
## 5629 Re: additional names
## 5630 Re: additional names
## 5631 Re: additional names
## 5632 Re: additional names
## 5633 Reviewer Selection
## 5634 Reviewer Selection
## 5635 Language for the Confirmation
## 5636 Enron Re/European Finance Re Swap
## 5637 Enron Re/European Finance Re Swap
## 5638 Enron Re/European Finance Re Swap
## 5639 Pulp Physical Fwd
## 5640 Pulp Physical Fwd
## 5641 Pulp Physical Fwd
## 5642 Re: Survey
## 5643 Re: Survey
## 5644 Re: Survey
## 5645 Re: Survey
## 5646 Re: Survey
## 5647 Re: vacation
## 5648 PA and ETA
## 5649 Re: ISDA - Cross Default
## 5650 Re: brokerage accounts
## 5651 Re: Choice of Law for Master Firm Gas Purchase/Sale Agreement with BC Gas Utility Ltd.
## 5652 Re: Choice of Law for Master Firm Gas Purchase/Sale Agreement with BC Gas Utility Ltd.
## 5653 Re: Choice of Law for Master Firm Gas Purchase/Sale Agreement with BC Gas Utility Ltd.
## 5654 Re: Choice of Law for Master Firm Gas Purchase/Sale Agreement with BC Gas Utility Ltd.
## 5655 Re: Choice of Law for Master Firm Gas Purchase/Sale Agreement with BC Gas Utility Ltd.
## 5656 Re: Choice of Law for Master Firm Gas Purchase/Sale Agreement with BC Gas Utility Ltd.
## 5657 Re: Choice of Law for Master Firm Gas Purchase/Sale Agreement with BC Gas Utility Ltd.
## 5658 Re: Choice of Law for Master Firm Gas Purchase/Sale Agreement with BC Gas Utility Ltd.
## 5659 Re: Choice of Law for Master Firm Gas Purchase/Sale Agreement with BC Gas Utility Ltd.
## 5660 Re: Big Six C.A.
## 5661 EnronOnline
## 5662 PA and ETA
## 5663 PA and ETA
## 5664 Enron PATS 2000-1
## 5665 Confidentiality Agreement
## 5666 Re: Schedule
## 5667 Enron Working Group List
## 5668 On line contracts
## 5669 RE: EnronOnline in Japan
## 5670 Re: Enron NetWorks LLC
## 5671 Re: Beer
## 5672 RE: Enron On-Line
## 5673 PA and ETA
## 5674 Enron PATS Meeting Confirmations
## 5675 RE: Follow-up on Friday s meeting
## 5676 RE: Follow-up on Friday s meeting
## 5677 RE: Follow-up on Friday s meeting
## 5678 RE: Follow-up on Friday s meeting
## 5679 RE: Follow-up on Friday s meeting
## 5680 RE: Follow-up on Friday s meeting
## 5681 Re: PeopleFinder change confirmation #958525991.701
## 5682 e-mail address
## 5683 Re: Follow-up on Friday s meeting
## 5684 Re: Vacation
## 5685 Re: Vacation
## 5686 Secure Messaging Non-Delivery Report: EnronOnline Posting Agreement
## 5687 Re: Bankruptcy Swaps with Canadian Reference Entities
## 5688 Re: What happened with the NDA?
## 5689 EnronOnline Questions for Local Counsel
## 5690 EnronOnline Questions for Local Counsel
## 5691 EnronOnline Questions for Local Counsel
## 5692 EnronOnline Posting Agreement
## 5693 Secure Messaging Non-Delivery Report: EnronOnline Posting Agreement
## 5694 EnronOnline Posting Agreement
## 5695 EnronOnline Posting Agreement
## 5696 EnronOnline Posting Agreement
## 5697 Bankruptcy Swaps with Canadian Reference Entities
## 5698 Bankruptcy Swaps with Canadian Reference Entities
## 5699 True Quote Term Sheet - registration rights language
## 5700 Conference call
## 5701 NYMEX e-commerce venture
## 5702 Re: Enron Corp Swap
## 5703 Re: Enron Corp Swap
## 5704 Re: Enron Corp Swap
## 5705 Calendar Access
## 5706 Relevant for EnBW
## 5707 No More Terminations!
## 5708 Re: Friday s Conference Call
## 5709 Re: Tracking Legal Text Changes
## 5710 Re: Tracking Legal Text Changes
## 5711 Re: Tracking Legal Text Changes
## 5712 Re: Tracking Legal Text Changes
## 5713 Re: Tracking Legal Text Changes
## 5714 Re: Tracking Legal Text Changes
## 5715 Re: Tracking Legal Text Changes
## 5716 Re: Tracking Legal Text Changes
## 5717 Re: Tracking Legal Text Changes
## 5718 Re: Tracking Legal Text Changes
## 5719 Re: Tracking Legal Text Changes
## 5720 Re: SWAP Group - April & May Calendars
## 5721 FW: 1999 Darwin Awards
## 5722 Re: For Mark Taylor s approval
## 5723 Re: For Mark Taylor s approval
## 5724 Re: For Mark Taylor s approval
## 5725 Re: For Mark Taylor s approval
## 5726 Re: Sr Legal Specialist
## 5727 Re: Sr Legal Specialist
## 5728 Re: Sr Legal Specialist
## 5729 Re: Sr. Legal Specialist Job 0000103079/Resume
## 5730 RE: EnronOnline in Japan
## 5731 New or Modified Mail in EOL Terminations
## 5732 New or Modified Mail in EOL Terminations
## 5733 New or Modified Mail in EOL Terminations
## 5734 Revised AccuNet Agreement
## 5735 Revised AccuNet Agreement
## 5736 Re: Special Regulatory Call Details
## 5737 Out of the office
## 5738 Out of the office
## 5739 Out of the office
## 5740 Out of the office
## 5741 Out of the office
## 5742 Out of the office
## 5743 Out of the office
## 5744 Out of the office
## 5745 Out of the office
## 5746 Out of the office
## 5747 Out of the office
## 5748 Re: Job 103079
## 5749 Job # 103079
## 5750 Senior Legal Spec. - Posting No. 103079
## 5751 Re: Bandwidth Launch on EOL Website Ticker Text
## 5752 Re: Bandwidth Launch on EOL Website Ticker Text
## 5753 Re: Bandwidth Launch on EOL Website Ticker Text
## 5754 Re: Bandwidth Launch on EOL Website Ticker Text
## 5755 Re: Bandwidth Launch on EOL Website Ticker Text
## 5756 Re: Bandwidth Launch on EOL Website Ticker Text
## 5757 Re: Bandwidth Launch on EOL Website Ticker Text
## 5758 Re: Bandwidth Launch on EOL Website Ticker Text
## 5759 Re: Bandwidth Launch on EOL Website Ticker Text
## 5760 Re: Bandwidth Launch on EOL Website Ticker Text
## 5761 Re: Bandwidth Launch on EOL Website Ticker Text
## 5762 Re: Bandwidth Launch on EOL Website Ticker Text
## 5763 Re: Bandwidth Launch on EOL Website Ticker Text
## 5764 New or Modified Mail in EOL Terminations
## 5765 Re: Andrea Calo - Visitation
## 5766 Re: Andrea Calo - Visitation
## 5767 Re: Andrea Calo - Visitation
## 5768 Re: Andrea Calo - Visitation
## 5769 Re: Andrea Calo - Visitation
## 5770 Re: Andrea Calo - Visitation
## 5771 Re: Andrea Calo - Visitation
## 5772 Re: Bandwidth Products On EnronOnline. (Revised)
## 5773 Re: Bandwidth Products On EnronOnline. (Revised)
## 5774 Re: Bandwidth Products On EnronOnline. (Revised)
## 5775 Re: Bandwidth Products On EnronOnline. (Revised)
## 5776 Re: Bandwidth Products On EnronOnline. (Revised)
## 5777 Re: Bandwidth Products On EnronOnline. (Revised)
## 5778 Re: Bandwidth Products On EnronOnline. (Revised)
## 5779 Re: Bandwidth Products On EnronOnline. (Revised)
## 5780 Re: Bandwidth Products On EnronOnline. (Revised)
## 5781 Re: Bandwidth Products On EnronOnline. (Revised)
## 5782 Re: Bandwidth Products On EnronOnline. (Revised)
## 5783 Re: Bandwidth Products On EnronOnline. (Revised)
## 5784 Re: Bandwidth Products On EnronOnline. (Revised)
## 5785 Re: Bandwidth Products On EnronOnline. (Revised)
## 5786 Re: Bandwidth Products On EnronOnline. (Revised)
## 5787 Re: Bandwidth Products On EnronOnline. (Revised)
## 5788 Re: Bandwidth Products On EnronOnline. (Revised)
## 5789 Re: Bandwidth Products On EnronOnline. (Revised)
## 5790 Re: Bandwidth Products On EnronOnline. (Revised)
## 5791 Re: Bandwidth Products On EnronOnline. (Revised)
## 5792 Re: Bandwidth Products On EnronOnline. (Revised)
## 5793 Re: Bandwidth Products On EnronOnline. (Revised)
## 5794 Re: Bandwidth Products On EnronOnline. (Revised)
## 5795 Re: Bandwidth Products On EnronOnline. (Revised)
## 5796 Re: Bandwidth Products On EnronOnline. (Revised)
## 5797 Re: Bandwidth Products On EnronOnline. (Revised)
## 5798 Re: Bandwidth Products On EnronOnline. (Revised)
## 5799 Re: Bandwidth Products On EnronOnline. (Revised)
## 5800 Re: Bandwidth Products On EnronOnline. (Revised)
## 5801 Re: Bandwidth Products On EnronOnline. (Revised)
## 5802 Re: Bandwidth Products On EnronOnline. (Revised)
## 5803 Re: Bandwidth Products On EnronOnline. (Revised)
## 5804 Re: Bandwidth Products On EnronOnline. (Revised)
## 5805 Re: Bandwidth Products On EnronOnline. (Revised)
## 5806 Re: Bandwidth Products On EnronOnline. (Revised)
## 5807 Re: EnronOnline Guest ID and Password
## 5808 Job No. 78728
## 5809 SR Legal Specialist - Job #103079
## 5810 Re: Business Methods on EnronOnline
## 5811 Re: Business Methods on EnronOnline
## 5812 Re: Business Methods on EnronOnline
## 5813 Re: Business Methods on EnronOnline
## 5814 Re: Business Methods on EnronOnline
## 5815 Re: Use of "exchange" in corporate name
## 5816 Re: EnronOnline ETA
## 5817 Message to Robin Tompkins
## 5818 Applicant from CareerPath.com :(0000103079)
## 5819 Resume from Kathy Bauer for Job ID 0000103079
## 5820 Derivatives Counsel
## 5821 Re: Recommendation of outside counsel
## 5822 Re: Change of pulp description
## 5823 Re: Change of pulp description
## 5824 Re: Change of pulp description
## 5825 Re: Change of pulp description
## 5826 Re: Change of pulp description
## 5827 Re: Change of pulp description
## 5828 Re: Change of pulp description
## 5829 Re: ezmlm warning
## 5830 Singapore domain name
## 5831 Hi!
## 5832 Re: EnronOnline.com-REVISED DOCUMENTS
## 5833 Re: EnronOnline.com-REVISED DOCUMENTS
## 5834 Re: EnronOnline.com-REVISED DOCUMENTS
## 5835 Re: EnronOnline.com-REVISED DOCUMENTS
## 5836 Re: EnronOnline.com-REVISED DOCUMENTS
## 5837 Re: EnronOnline.com-REVISED DOCUMENTS
## 5838 Re: candidates
## 5839 Re: FAQ - legal
## 5840 Re: FAQ - legal
## 5841 Re: FAQ - legal
## 5842 Password Application
## 5843 Re: FAQ - EOL Japan
## 5844 Re: Mobile Phone Bill
## 5845 Texas Utilities Lawyers meeting
## 5846 Re: Mobile Phone Bill
## 5847 Re: Mobile Phone Bill
## 5848 Re: Mobile Phone Bill
## 5849 Re: Mobile Phone Bill
## 5850 Re: Mobile Phone Bill
## 5851 Re: Windows 2000 Roll Out
## 5852 Site Structure Diagram
## 5853 Re: Feedback--Legal Checklist
## 5854 Re: Upcoming Seminars
## 5855 Re: Credit Group Lunch
## 5856 Tel. Call
## 5857 Re: Legal
## 5858 Re: Legal
## 5859 Re: Legal
## 5860 Re: Legal
## 5861 Re: Legal
## 5862 Re: Legal
## 5863 Re: FW: Job #78728
## 5864 Re: Job No. 0000103028
## 5865 CFTC
## 5866 CFTC
## 5867 CFTC
## 5868 Re: Vacation Days
## 5869 Re: New York Bar Numbers
## 5870 Re: Cookies
## 5871 Job No. 0000103079
## 5872 Job No. 0000103079
## 5873 Re: EnronOnline Japan
## 5874 Re: EnronOnline Japan
## 5875 Re: EnronOnline Japan
## 5876 Re: ? Question
## 5877 Electronic Confirmations
## 5878 TAYLOR - 11APR00
## 5879 Re: Washington
## 5880 Re: Washington
## 5881 ? Question
## 5882 Washington
## 5883 Tim & Sharon
## 5884 RE: Campaign Planning Committee
## 5885 EnronOnline
## 5886 Re: EnronOnline - Japan
## 5887 Re: EnronOnline - Japan
## 5888 Re: EnronOnline - Japan
## 5889 Re: EnronOnline - Japan
## 5890 Re: EnronOnline - Japan
## 5891 Re: EnronOnline - Japan
## 5892 Re: EnronOnline - Japan
## 5893 New 1999 Annual Reports Have Arrived
## 5894 RE: Campaign Planning Committee
## 5895 Re: Monmouth Meeting
## 5896 Re: For Mark Taylor s approval
## 5897 Sample Confirmation
## 5898 Sample Confirmation
## 5899 Sample Confirmation
## 5900 Re: Monmouth Meeting
## 5901 Re: Management Services Agreement
## 5902 Campaign Planning Committee
## 5903 Re: Your approval is requested
## 5904 Monmouth Meeting
## 5905 Web Sites
## 5906 Mary s number
## 5907 I couldn t have said it better myself....
## 5908 Re: EOL
## 5909 Re: Messages from Russia
## 5910 Re: Your approval is requested
## 5911 Re: Legal Issues with EnronOnline Newsticker
## 5912 Reuters Confidentiality Agreement Comments
## 5913 Revised Confirmation
## 5914 Revised Confirmation
## 5915 Revised Confirmation
## 5916 Revised Confirmation
## 5917 Revised Confirmation
## 5918 Re: New Product Startup: Bandwidth
## 5919 Further Koch change
## 5920 Further Koch change
## 5921 Further Koch change
## 5922 Further Koch change
## 5923 Koch Confirmation
## 5924 Koch Confirmation
## 5925 Koch Confirmation
## 5926 Koch Confirmation
## 5927 Meeting Agenda
## 5928 Lugar Lunch
## 5929 Lugar Fundraiser
## 5930 Your Itinerary
## 5931 Paul Radous
## 5932 New Product Type - Approval Request
## 5933 Pets in the Office
## 5934 Re: SRRS Request
## 5935 EnronOnline Counterparty Approval Process
## 5936 EnronOnline Counterparty Approval Process
## 5937 EnronOnline Counterparty Approval Process
## 5938 Re: Meeting with Mark Taylor
## 5939 Netherlands ETA
## 5940 Netherlands ETA
## 5941 Re: Cite for NYMEX Futures
## 5942 Re: Timing of EOL Introduction
## 5943 Re: Please could you inform me of all the discussions we are having with companies on the ETA / PA changes
## 5944 Reference to US in Pulp Financial transactions
## 5945 Re: Reminder!
## 5946 Re: Reminder!
## 5947 Re: Reminder!
## 5948 Re: Reminder!
## 5949 Re: Reminder!
## 5950 Re: Reminder!
## 5951 Re: Reminder!
## 5952 Re: Reminder!
## 5953 Re: Reminder!
## 5954 Hi!
## 5955 Hi!
## 5956 Dinner on Thursday
## 5957 Hi!
## 5958 Re: Japan ETA
## 5959 Re: Japan ETA
## 5960 Re: Japan ETA
## 5961 Re: Credit Derivatives Reference Entities
## 5962 Re: Credit Derivatives Reference Entities
## 5963 Re: Credit Derivatives Reference Entities
## 5964 Credit Derivatives Reference Entities
## 5965 Credit Derivatives Reference Entities
## 5966 Credit Derivatives Reference Entities
## 5967 Credit Derivatives Reference Entities
## 5968 Credit Derivatives Reference Entities
## 5969 Saturday
## 5970 Re: Saturday s plans
## 5971 Re: Credit
## 5972 Re: Reference credits
## 5973 Re: EnronCredit/Deutsche Bank
## 5974 Approval Procedure
## 5975 Re: TXU/Eastern - ETA comfort letter
## 5976 Re: Indicative request to buy
## 5977 Re: Indicative request to buy
## 5978 Re: Indicative request to buy
## 5979 Re: Indicative request to buy
## 5980 Re: Indicative request to buy
## 5981 Re: Computer Upgrade
## 5982 EnronOnline Contracts
## 5983 EnronOnline Contracts
## 5984 EnronOnline Contracts
## 5985 EnronOnline Contracts
## 5986 EnronOnline Contracts
## 5987 Duke confidentiality query
## 5988 Re: confidentiality query
## 5989 Re: EOL Credit Derivatives - Long Descriptions
## 5990 Proposed Meeting of Major Energy Trading Houses
## 5991 EOL Credit Derivatives - Long Descriptions
## 5992 Re: Cutoff Time for EOL Gas Transactions
## 5993 Re: New PA form
## 5994 Re: New PA form
## 5995 Re: New PA form
## 5996 Re: New PA form
## 5997 Re: Australian ETA
## 5998 Project Bigtoe
## 5999 Re: Mark Taylor/ACCF Dinner
## 6000 EnronOnline Legal Due Diligence
## 6001 Re: Mark Taylor/ACCF Dinner
## 6002 EnergyLink disclaimers
## 6003 Re: Meeting Change
## 6004 Re: Trip to Brazil
## 6005 Re: Contact Enron
## 6006 Meeting times confusion
## 6007 Re: Names on EnronCredit.com
## 6008 Ken Lay on Enron s stock price volatility
## 6009 Re: EnronOnline Phase 2 Meeting
## 6010 Re: Telephone conference
## 6011 EnronOnline Credit Derivatives Propsoed Reference Entities
## 6012 EnronOnline Credit Derivatives Propsoed Reference Entities
## 6013 EnronOnline Credit Derivatives Propsoed Reference Entities
## 6014 EnronOnline Credit Derivatives Propsoed Reference Entities
## 6015 EnronOnline Credit Derivatives Propsoed Reference Entities
## 6016 Happy New Year
## 6017 Legal Fees re: EnronOnline Credit Derivatives
## 6018 John Sherriff has asked if we can build autoconfirms into EOL
## 6019 Re: Credit Derivatives
## 6020 Re: EnronOnline
## 6021 Re: EnronOnline
## 6022 Re: EnronOnline
## 6023 Re: EnronOnline
## 6024 Re: EnronOnline
## 6025 Re: EnronOnline
## 6026 Re: EnronOnline
## 6027 Re: Hard Facts Needed
## 6028 Re: Hard Facts Needed
## 6029 Re: Hard Facts Needed
## 6030 Re: Credit Derivatives
## 6031 Re: Cutoff Time for EOL Gas Transactions
## 6032 Re: EnronOnline - Credit Product Documentation
## 6033 Re: Court Humor
## 6034 Re: Disclaimer for Internet Site
## 6035 Re: Margaux/Whitewing
## 6036 Re: Margaux/Whitewing
## 6037 Re: Margaux/Whitewing
## 6038 Re: Margaux/Whitewing
## 6039 Re: Margaux/Whitewing
## 6040 Re: Margaux/Whitewing
## 6041 Re: Margaux/Whitewing
## 6042 Re: Margaux/Whitewing
## 6043 Re: Margaux/Whitewing
## 6044 EOL Credit Product - ENA confirmation
## 6045 Disclaimer for Internet Site
## 6046 Disclaimer for Internet Site
## 6047 Reference Entities
## 6048 Reference Entities
## 6049 Reference Entities
## 6050 Re: Margaux/Whitewing
## 6051 Re: Margaux/Whitewing
## 6052 Re: Margaux/Whitewing
## 6053 FAQ s regarding Agency.
## 6054 EnronOnline Reference Entities
## 6055 EnronOnline Reference Entities
## 6056 More Ref Credits
## 6057 Re: Credit Derivatives Reference Entities
## 6058 Re: More Ref Credits
## 6059 Re: More Ref Credits
## 6060 Re: More Ref Credits
## 6061 Re: More Ref Credits
## 6062 Re: More Ref Credits
## 6063 Re: More Ref Credits
## 6064 Re: More Ref Credits
## 6065 Re: More Ref Credits
## 6066 Re: More Ref Credits
## 6067 Re: More Ref Credits
## 6068 Re: More Ref Credits
## 6069 Re: More Ref Credits
## 6070 Re: More Ref Credits
## 6071 RE:
## 6072 Re:
## 6073 Re: Credit Derivatives Reference Entities
## 6074 One-liners
## 6075 Re: Credit Derivatives Reference Entities
## 6076 Credit Derivatives Reference Entities
## 6077 Credit Derivatives Reference Entities
## 6078 packages
## 6079 Re: Last day Nymex trading
## 6080 Re: Last day Nymex trading
## 6081 Re: Last day Nymex trading
## 6082 Re: Last day Nymex trading
## 6083 Re: Last day Nymex trading
## 6084 Credit Derivatives Reference Entities
## 6085 Credit Derivatives Reference Entities
## 6086 Re: New Product Type Approval
## 6087 Re: New Product Approval Request
## 6088 Re: New Basis Swap Products
## 6089 Re: New Pulp Product - BKP PIX
## 6090 Re: Equity and Debt Trading - exploratory discussion
## 6091 Re: More Reference Credits - Please Approve
## 6092 Australiann Power Product Long Form Decsriptions
## 6093 Australiann Power Product Long Form Decsriptions
## 6094 Australiann Power Product Long Form Decsriptions
## 6095 Credit Derivatives Reference Entities
## 6096 Re: EnronOnline Credit Derivatives - Reference Entities
## 6097 Credit Derivatives Reference Entities
## 6098 Re: Trading Attorney in Brazil
## 6099 Collateral GTC s
## 6100 Collateral GTC s
## 6101 Collateral GTC s
## 6102 Collateral GTC s
## 6103 EnronOnline Credit Derivatives - Reference Entities
## 6104 EnronOnline Credit Derivatives - Reference Entities
## 6105 EnronOnline Credit Derivatives - Reference Entities
## 6106 EnronOnline Credit Derivatives - Reference Entities
## 6107 EnronOnline Credit Derivatives - Reference Entities
## 6108 Organizational Changes
## 6109 Reference Entity review
## 6110 Re: EnronOnline - Credit Product Documentation
## 6111 Re: EnronOnline - Credit Product Documentation
## 6112 Re: EnronOnline - Credit Product Documentation
## 6113 Re: EnronOnline - Credit Product Documentation
## 6114 Photos
## 6115 Re: letter to reference credits
## 6116 Re: Weather-risk.com
## 6117 Re: Sample GTC s
## 6118 Sound Practices fro Hedge Fund Managers
## 6119 EnBank Auction Procedures
## 6120 EnBank Auction Procedures
## 6121 EnBank Auction Procedures
## 6122 EnBank Auction Procedures
## 6123 EnBank Auction Procedures
## 6124 Re: Credit Launch
## 6125 Re: Credit Launch
## 6126 Re: Credit Launch
## 6127 Re: Counterparty access to EnBank
## 6128 Revised Auction Procedures
## 6129 Revised Auction Procedures
## 6130 Revised Auction Procedures
## 6131 Just when we thought it was safe....
## 6132 Counterparty access to EnBank
## 6133 Re: Auction Procedures
## 6134 Auction Procedures
## 6135 Re: Auction Procedures
## 6136 Re: Auction Procedures
## 6137 Re: Auction Procedures
## 6138 Credit Language
## 6139 Re: Weather-risk.com
## 6140 Weather-risk.com
## 6141 Weather-risk.com
## 6142 Trading Attorney in Brazil
## 6143 Auction Procedures
## 6144 Auction Procedures
## 6145 Auction Procedures
## 6146 Auction Procedures
## 6147 Re: Draft EOL Termination Letter
## 6148 Gas Daily Henry Hub
## 6149 Gas Daily Henry Hub
## 6150 Gas Daily Henry Hub
## 6151 Gas Daily Henry Hub
## 6152 Gas Daily Henry Hub
## 6153 New Products - Approval Requested
## 6154 New Products - Approval Requested
## 6155 New Products - Approval Requested
## 6156 New Products - Approval Requested
## 6157 New Products - Approval Requested
## 6158 Re: Visit to Portland - March 6
## 6159 Re: Enron Law Conference
## 6160 EnronOnline - Credit Derivatives Documentation
## 6161 new photo
## 6162 EOL
## 6163 EOL
## 6164 Photos
## 6165 Photos
## 6166 Legal Survey update
## 6167 Emissions Credits Auction Site
## 6168 Emissions Credits Auction Site
## 6169 Emissions Credits Auction Site
## 6170 Emissions Credits Auction Site
## 6171 Emissions Credits Auction Site
## 6172 Emissions Credits Auction Site
## 6173 One Password - multiple legal entities
## 6174 One Password - multiple legal entities
## 6175 One Password - multiple legal entities
## 6176 One Password - multiple legal entities
## 6177 One Password - multiple legal entities
## 6178 Swap Documentation Seminar
## 6179 Web Site
## 6180 Web Site
## 6181 West power web site
## 6182 West power web site
## 6183 Re: Question
## 6184 Union Oil and ETA for Enron Online
## 6185 Re: US Jet Kero Swap -
## 6186 Re: US Jet Kero Swap -
## 6187 Oops
## 6188 Approval
## 6189 Re: Series 7
## 6190 Tokemised Periods - US Nat Gas
## 6191 Tokemised Periods - US Nat Gas
## 6192 Your package
## 6193 Recipient of Master User ID
## 6194 Re: J Aron & Co - Master User in New York , Sub User in London
## 6195 Re: J Aron & Co - Master User in New York , Sub User in London
## 6196 Web Site
## 6197 Web Site
## 6198 Re: Useful?
## 6199 J Aron & Co - Master User in New York , Sub User in London
## 6200 J Aron & Co - Master User in New York , Sub User in London
## 6201 Re: ETA
## 6202 Re: ETA
## 6203 Re: ETA
## 6204 MetLife info.
## 6205 Re: EnronOnline PAs
## 6206 Talisman ETA - Draft
## 6207 Re: Please approve two new Product Types
## 6208 Re: New Pulp Products
## 6209 Draft EOL Termination Letter
## 6210 Draft EOL Termination Letter
## 6211 Draft EOL Termination Letter
## 6212 Draft EOL Termination Letter
## 6213 Draft EOL Termination Letter
## 6214 Draft EOL Termination Letter
## 6215 Draft EOL Termination Letter
## 6216 Draft EOL Termination Letter
## 6217 Draft EOL Termination Letter
## 6218 Re: OTC market size
## 6219 Re: New Index - Please review
## 6220 Re: Product Type Approval - Jet Kero Financial Swap
## 6221 Employee Referral Program
## 6222 Re: Pictures & report
## 6223 Aquilia
## 6224 Re: check out the contract violation at ...
## 6225 Re: 5 each
## 6226 Re: EnronOnline Australian Legal Advice
## 6227 Re: Web side for Colombia
## 6228 Re: Houston Trip
## 6229 Re: Houston Trip
## 6230 Re: Houston Trip
## 6231 Re: Attorneys Meeting
## 6232 Re: EnronOnline
## 6233 Re: EnronOnline
## 6234 MSN E-mail
## 6235 Analyst s report
## 6236 Value stocks
## 6237 Photos
## 6238 Enron Press Release
## 6239 Re: Vacation Days
## 6240 Re: Vacation Days
## 6241 Re: Vacation Days
## 6242 Re: Vacation Days
## 6243 Re: Vacation Days
## 6244 Re: Vacation Days
## 6245 Re: Vacation Days
## 6246 Re: Vacation Days
## 6247 "Rumors"
## 6248 Re: West Power Customer Web SIte
## 6249 REVISED Re: On-line GTC s for EPC and ECFC
## 6250 Re: Consent
## 6251 Re: Consent
## 6252 Re: Consent
## 6253 Re: Consent
## 6254 Re: Consent
## 6255 Re: Consent
## 6256 Re: Consent
## 6257 String Trio of New York
## 6258 Photos
## 6259 Credit Derivative Procedures
## 6260 Photos
## 6261 S&C memo re: EOL Credit Derivatives Procedures (sent to Paul & me today)
## 6262 Photos
## 6263 Re: West Power Customer Web SIte
## 6264 Re: On-line GTC s for Enron Petrochemicals Company (EPC)
## 6265 Re: On-line GTC s for Enron Petrochemicals Company (EPC)
## 6266 Re: On-line GTC s for Enron Petrochemicals Company (EPC)
## 6267 Re: On-line GTC s for Enron Petrochemicals Company (EPC)
## 6268 Re: On-line GTC s for Enron Petrochemicals Company (EPC)
## 6269 Re: On-line GTC s for Enron Petrochemicals Company (EPC)
## 6270 Re: On-line GTC s for Enron Petrochemicals Company (EPC)
## 6271 Re: On-line GTC s for Enron Petrochemicals Company (EPC)
## 6272 Re: On-line GTC s for Enron Petrochemicals Company (EPC)
## 6273 On-line GTC s for Enron Petrochemicals Company (EPC)
## 6274 On-line GTC s for Enron Petrochemicals Company (EPC)
## 6275 On-line GTC s for Enron Petrochemicals Company (EPC)
## 6276 On-line GTC s for Enron Petrochemicals Company (EPC)
## 6277 Re: On-line GTC s for Enron Clean Fuels Company (ECFC)
## 6278 Re: Eastern - Summary of their Response to PA/ETA
## 6279 Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 6280 Re: Eastern - Summary of their Response to PA/ETA
## 6281 Re: E-Commerce Boot Camp
## 6282 Re: On-line GTC s for Enron Clean Fuels Company (ECFC)
## 6283 Re: On-line GTC s for Enron Clean Fuels Company (ECFC)
## 6284 Re: On-line GTC s for Enron Clean Fuels Company (ECFC)
## 6285 Re: Your approval is requested
## 6286 West Power Customer Web SIte
## 6287 West Power Customer Web SIte
## 6288 West Power Customer Web SIte
## 6289 website
## 6290 Enron Upgrade
## 6291 Counterparty Matrix - Mapping Financial Master Agreements
## 6292 Counterparty Matrix - Mapping Financial Master Agreements
## 6293 Counterparty Matrix - Mapping Financial Master Agreements
## 6294 Counterparty Matrix - Mapping Financial Master Agreements
## 6295 Counterparty Matrix - Mapping Financial Master Agreements
## 6296 Counterparty Matrix - Mapping Financial Master Agreements
## 6297 Counterparty Matrix - Mapping Financial Master Agreements
## 6298 Counterparty Matrix - Mapping Financial Master Agreements
## 6299 Counterparty Matrix - Mapping Financial Master Agreements
## 6300 Counterparty Matrix - Mapping Financial Master Agreements
## 6301 Re: PowerGen - Urgent
## 6302 Re: Lunch For Bill Bradford
## 6303 RE: electronic trading agmt.
## 6304 Re: electronic trading agmt.
## 6305 Equity investment by ENA employee
## 6306 Equity investment by ENA employee
## 6307 Equity investment by ENA employee
## 6308 Re: electronic trading agmt.
## 6309 Re: electronic trading agmt.
## 6310 Grief
## 6311 Re: Insurance
## 6312 1999 Supplement to the 1993 Commodity Derivatives Definitions
## 6313 Re: Trip to S&C
## 6314 Re: Trip to S&C
## 6315 Re: Energy Supplement
## 6316 Draft Regulatory Framework
## 6317 Re: Trip to S&C
## 6318 Re: Trip to S&C
## 6319 Re: Trip to S&C
## 6320 Pls Complain
## 6321 Re: Pls Complain
## 6322 Re: Pls Complain
## 6323 Re: Discretionary Day
## 6324 Re: Discretionary Day
## 6325 Re: Discretionary Day
## 6326 Re: CLE Program
## 6327 Re: EOL Confirmations
## 6328 Re: new PULPEX document needed for trading in London
## 6329 EnronOnline Credit Derivatives
## 6330 Re: new PULPEX document needed for trading in London
## 6331 Happy New Year
## 6332 Re: EnronCredit.com
## 6333 Fallback Regulatory Position
## 6334 Online Transaction assignment
## 6335 Re: Aquila Risk/Energy Marketing Profile Changes
## 6336 Re: Vacation Request
## 6337 Re: Weather Review
## 6338 Re: Change to Index language for Financial Liquids
## 6339 Re: EnronCredit.com
## 6340 Re: EnronCredit.com
## 6341 Re: EnronCredit.com
## 6342 Killed Deals
## 6343 Killed Deals
## 6344 EOL Credit Responses 12/22
## 6345 EOL Credit Responses 12/22
## 6346 EOL Credit Responses 12/22
## 6347 EOL Credit Responses 12/22
## 6348 EOL Credit Responses 12/22
## 6349 EOL Credit Responses 12/22
## 6350 EOL Credit Responses 12/22
## 6351 EOL Credit Responses 12/22
## 6352 Re: Final Validation of Online Products Descriptions
## 6353 Re: Final Validation of Online Products Descriptions
## 6354 Re: Final Validation of Online Products Descriptions
## 6355 EOL Credit Responses 12/21
## 6356 EOL Credit Responses 12/21
## 6357 EOL Credit Responses 12/21
## 6358 EOL Credit Responses 12/21
## 6359 EOL Credit Responses 12/21
## 6360 EOL Credit Responses 12/21
## 6361 EOL Credit Responses 12/21
## 6362 EOL Credit Responses 12/21
## 6363 EnronOnline Electronic Trading Agreement amendment letter
## 6364 EnronOnline Electronic Trading Agreement amendment letter
## 6365 Re: Confidentiality Agreement
## 6366 Re: Confidentiality Agreement
## 6367 Re: Christmas Trees and cats
## 6368 Re: Weather Products
## 6369 EnronOnline Electronic Trading Agreement Amendment
## 6370 Re: Confidentiality Agreement
## 6371 Re: Proposed new Index
## 6372 Re: Confidentiality Agreement
## 6373 Re: Confidentiality Agreement
## 6374 Re: Confidentiality Agreement
## 6375 Re: Confidentiality Agreement
## 6376 Re: Confidentiality Agreement
## 6377 Re: Proposed new Index
## 6378 Re: Nat Gas Indexes proposed
## 6379 Invoice
## 6380 Re: Nat Gas Indexes proposed
## 6381 Re: Proposed new Index
## 6382 Assignment Issue
## 6383 Assignment Issue
## 6384 ETA Amendments
## 6385 Project Blackbird Total Return Swap
## 6386 Project Raven -- lastest diagram and draft Amendment docs
## 6387 Confidentiality Agreement
## 6388 Aquila Assignment
## 6389 Re: Ashland Speciality Chemicals Company, a division of Ashland Inc.
## 6390 Re: PLEASE LOOK: Financial Trading Agreements Jurisdictional Database
## 6391 Saturday
## 6392 Re: CEMEX USA-Weather Confidentiality Agreement
## 6393 Re: CEMEX USA-Weather Confidentiality Agreement
## 6394 Re: CEMEX USA-Weather Confidentiality Agreement
## 6395 North Peak Resort Weather Deal: Another Heads Up!~!
## 6396 North Peak Resort Weather Deal: Another Heads Up!~!
## 6397 North Peak Resort Weather Deal: Another Heads Up!~!
## 6398 Re: Aquila
## 6399 Re: Aquila
## 6400 Re: Aquila
## 6401 Re: Aquila
## 6402 Re: Aquila
## 6403 Re: Aquila
## 6404 Re: Aquila
## 6405 Re: Aquila
## 6406 Re: Aquila
## 6407 Re: Aquila
## 6408 Re: Aquila
## 6409 Re: Aquila
## 6410 Re: Aquila
## 6411 Re: Aquila
## 6412 Re: Aquila
## 6413 Re: Aquila
## 6414 Re: Aquila
## 6415 Re: Aquila
## 6416 Re: Aquila
## 6417 Re: Aquila
## 6418 Re: Aquila
## 6419 Re: Aquila
## 6420 Re: Aquila
## 6421 Re: Aquila
## 6422 Re: Legal and Privacy
## 6423 Re: EnronOnline ETA
## 6424 Re: EnronOnline Password Application
## 6425 Re: Bryan Seyfried
## 6426 Re: New Time for Conference Call
## 6427
## 6428 Re: Vacation
## 6429 Re: Vacation
## 6430 Re: Vacation
## 6431 Hi!
## 6432 Draft of the Supplement to the 1993 Commodity Derivatives Definitions
## 6433 Re: Guest User Id Email Responses
## 6434 Project Ghost Structure
## 6435 RE: EnronOnline Electronic Trading Agreement Amendment
## 6436 RE: EnronOnline Electronic Trading Agreement Amendment
## 6437 Aquilla
## 6438 Bandwidth Exchange article
## 6439 EnronOnline Electronic Trading Agreement Amendment
## 6440 Christmas flights
## 6441 Christmas flights
## 6442 Re: Boating
## 6443 Re: Regularly Scheduled Conference Call for US Regulatory Committee
## 6444 Re: Regularly Scheduled Conference Call for US Regulatory Committee
## 6445 Re: Agency.com Identification
## 6446 Aquilla wants to revise ETA asap. Pls call today.
## 6447 Re: Letter for Utilities in Texas
## 6448 Re: Override letter
## 6449 Re: Letter for Utilities in Texas
## 6450 Engage
## 6451 Engage
## 6452 Engage
## 6453 New cook inlet
## 6454 Re: New cook inlet
## 6455 Re: New Product Type Approval Request
## 6456 Re: New Short Descriptions
## 6457 Re: New Short Descriptions
## 6458 Re: New Short Descriptions
## 6459 Re: New Short Descriptions
## 6460 Re: New Short Descriptions
## 6461 Re: EES and Online trades
## 6462 Re: EES and Online trades
## 6463 Re: EES and Online trades
## 6464 Re: EES and Online trades
## 6465 Re: EES and Online trades
## 6466 Re: EES and Online trades
## 6467 Re: EES and Online trades
## 6468 Re: Project Maple Leaf
## 6469 Re: Project Maple Leaf
## 6470 Re: Project Maple Leaf
## 6471 Re: Michael Guerriero - Houston Meeting
## 6472 EOL Customer Review
## 6473 Vacation Contact Info.
## 6474 Vacation Contact Info.
## 6475 Vacation Contact Info.
## 6476 Vacation Contact Info.
## 6477 Vacation Contact Info.
## 6478 Vacation Contact Info.
## 6479 Vacation Contact Info.
## 6480 Vacation Contact Info.
## 6481 series 3,7 whatever
## 6482 Re: Final EOL GTCs
## 6483 Re: Final EOL GTCs
## 6484 Re: Final EOL GTCs
## 6485 Re: Final EOL GTCs
## 6486 Re: Final EOL GTCs
## 6487 Re: Final EOL GTCs
## 6488 Re: Final EOL GTCs
## 6489 Re: Final EOL GTCs
## 6490 Re: Final EOL GTCs
## 6491 Re: EOL Contractual Relationships
## 6492 Re: EOL Contractual Relationships
## 6493 Re: EOL Contractual Relationships
## 6494 Re: EOL Contractual Relationships
## 6495 Re: EOL Contractual Relationships
## 6496 Re: EOL Contractual Relationships
## 6497 Re: EOL Contractual Relationships
## 6498 Re: EOL Contractual Relationships
## 6499 Re: EOL Contractual Relationships
## 6500 Re: EOL Contractual Relationships
## 6501 Re: EOL Contractual Relationships
## 6502 test
## 6503 EnronOnline - Short Term Canadian Physical Deals
## 6504 Re: Bank of Montreal Termination
## 6505 Re: Bank of Montreal Termination
## 6506 Re: Bank of Montreal Termination
## 6507 Re: Bank of Montreal Termination
## 6508 Re: Bank of Montreal Termination
## 6509 Packing suggestions
## 6510 Storm99 News Flash
## 6511 Lenny
## 6512 Re: Viva VI or are they?
## 6513 Re: Viva VI or are they?
## 6514 David Portz
## 6515 RE: Viva VI!
## 6516 Bomba s Full Moon Party
## 6517 Viva VI!
## 6518 Viva VI!
## 6519 Viva VI!
## 6520 Vice President Feedback Measurement Report
## 6521 Vice President Feedback Measurement Report
## 6522 Vice President Feedback Measurement Report
## 6523 Vice President Feedback Measurement Report
## 6524 Vice President Feedback Measurement Report
## 6525 Vice President Feedback Measurement Report
## 6526 Vice President Feedback Measurement Report
## 6527 Vice President Feedback Measurement Report
## 6528 Re: performance review
## 6529 Re: Enron Online
## 6530 Re: Enron Online
## 6531 Re: Enron Online
## 6532 Re: Enron Online
## 6533 Re: Enron Online
## 6534 Conference Call
## 6535 BVI Hotel Rooms
## 6536 Lenny
## 6537 Lenny
## 6538 Re: JAPRO Gruppen Aktiebolag
## 6539 Re: New Product Type Approval Request
## 6540 Legal Survey update
## 6541 Legal Survey update
## 6542 E Credit Trading
## 6543 E Credit Trading
## 6544 Form of ECT Legal Opinion
## 6545 Re: EOL Access Denied - Form Letter
## 6546 Re: EOL Access Denied - Form Letter
## 6547 Re: EOL Access Denied - Form Letter
## 6548 Re: EOL Access Denied - Form Letter
## 6549 Re: EOL Access Denied - Form Letter
## 6550 Re: EOL Access Denied - Form Letter
## 6551 Re: EOL Access Denied - Form Letter
## 6552 Update of Legal Survey
## 6553 Rockets
## 6554 Re: Cruisin
## 6555 Re: Cruisin
## 6556 Re: Cruisin
## 6557 Re: New Product Request
## 6558 Re: New Product Request
## 6559 Re: New Product Request
## 6560 Re: Cruisin
## 6561 Re: Cruisin
## 6562 Re: Cruisin
## 6563 Re: First Registration Form
## 6564 Re: First Registration Form
## 6565 Re: First Registration Form
## 6566 Re: Bankruptcy bill
## 6567 Re: FAQs
## 6568 Re: FAQs
## 6569 Re: FAQs
## 6570 Re: FAS 133
## 6571 Re: FAQs
## 6572 Re: December 10, 1999
## 6573 Enron Entity for Financial Trading
## 6574 Enron Entity for Financial Trading
## 6575 Enron Entity for Financial Trading
## 6576 Re: More FAQ s
## 6577 Re: November & December Calendar - SWAP Group
## 6578 Re: Faxed PA s
## 6579 Re: Faxed PA s
## 6580 Re: Faxed PA s
## 6581 Re: Faxed PA s
## 6582 Re: Faxed PA s
## 6583 Re: Faxed PA s
## 6584 Re: Faxed PA s
## 6585 Australia and EnronOnline
## 6586 Policy draft for confirmations
## 6587 Confirm Template
## 6588 Re: Dinner
## 6589 Re: Sunday, October 31, 1999
## 6590 Re: Sunday, October 31, 1999
## 6591 Re: Sunday, October 31, 1999
## 6592 Re: Sunday, October 31, 1999
## 6593
## 6594 Sunday, October 31, 1999
## 6595 Sunday, October 31, 1999
## 6596 Sunday, October 31, 1999
## 6597 Re: Canadian-Only Financial Masters
## 6598 Re: Canadian-Only Financial Masters
## 6599 Re: Canadian-Only Financial Masters
## 6600 Re: Canadian-Only Financial Masters
## 6601 Re: Canadian-Only Financial Masters
## 6602 1999 ENA/EGRM Legal Conference
## 6603 1999 ENA/EGRM Legal Conference
## 6604 1999 ENA/EGRM Legal Conference
## 6605 1999 ENA/EGRM Legal Conference
## 6606 1999 ENA/EGRM Legal Conference
## 6607 1999 ENA/EGRM Legal Conference
## 6608 1999 ENA/EGRM Legal Conference
## 6609 1999 ENA/EGRM Legal Conference
## 6610 1999 ENA/EGRM Legal Conference
## 6611 1999 ENA/EGRM Legal Conference
## 6612 1999 ENA/EGRM Legal Conference
## 6613 1999 ENA/EGRM Legal Conference
## 6614 1999 ENA/EGRM Legal Conference
## 6615 1999 ENA/EGRM Legal Conference
## 6616 1999 ENA/EGRM Legal Conference
## 6617 1999 ENA/EGRM Legal Conference
## 6618 1999 ENA/EGRM Legal Conference
## 6619 1999 ENA/EGRM Legal Conference
## 6620 1999 ENA/EGRM Legal Conference
## 6621 1999 ENA/EGRM Legal Conference
## 6622 1999 ENA/EGRM Legal Conference
## 6623 1999 ENA/EGRM Legal Conference
## 6624 1999 ENA/EGRM Legal Conference
## 6625 1999 ENA/EGRM Legal Conference
## 6626 1999 ENA/EGRM Legal Conference
## 6627 1999 ENA/EGRM Legal Conference
## 6628 1999 ENA/EGRM Legal Conference
## 6629 1999 ENA/EGRM Legal Conference
## 6630 1999 ENA/EGRM Legal Conference
## 6631 1999 ENA/EGRM Legal Conference
## 6632 1999 ENA/EGRM Legal Conference
## 6633 1999 ENA/EGRM Legal Conference
## 6634 1999 ENA/EGRM Legal Conference
## 6635 1999 ENA/EGRM Legal Conference
## 6636 1999 ENA/EGRM Legal Conference
## 6637 1999 ENA/EGRM Legal Conference
## 6638 1999 ENA/EGRM Legal Conference
## 6639 1999 ENA/EGRM Legal Conference
## 6640 1999 ENA/EGRM Legal Conference
## 6641 1999 ENA/EGRM Legal Conference
## 6642 1999 ENA/EGRM Legal Conference
## 6643 1999 ENA/EGRM Legal Conference
## 6644 1999 ENA/EGRM Legal Conference
## 6645 1999 ENA/EGRM Legal Conference
## 6646 1999 ENA/EGRM Legal Conference
## 6647 1999 ENA/EGRM Legal Conference
## 6648 1999 ENA/EGRM Legal Conference
## 6649 1999 ENA/EGRM Legal Conference
## 6650 1999 ENA/EGRM Legal Conference
## 6651 1999 ENA/EGRM Legal Conference
## 6652 1999 ENA/EGRM Legal Conference
## 6653 1999 ENA/EGRM Legal Conference
## 6654 1999 ENA/EGRM Legal Conference
## 6655 1999 ENA/EGRM Legal Conference
## 6656 1999 ENA/EGRM Legal Conference
## 6657 1999 ENA/EGRM Legal Conference
## 6658 1999 ENA/EGRM Legal Conference
## 6659 1999 ENA/EGRM Legal Conference
## 6660 1999 ENA/EGRM Legal Conference
## 6661 1999 ENA/EGRM Legal Conference
## 6662 1999 ENA/EGRM Legal Conference
## 6663 1999 ENA/EGRM Legal Conference
## 6664 1999 ENA/EGRM Legal Conference
## 6665 1999 ENA/EGRM Legal Conference
## 6666 1999 ENA/EGRM Legal Conference
## 6667 1999 ENA/EGRM Legal Conference
## 6668 1999 ENA/EGRM Legal Conference
## 6669 1999 ENA/EGRM Legal Conference
## 6670 1999 ENA/EGRM Legal Conference
## 6671 1999 ENA/EGRM Legal Conference
## 6672 1999 ENA/EGRM Legal Conference
## 6673 1999 ENA/EGRM Legal Conference
## 6674 Re: Online Trading
## 6675 Re: Dinner
## 6676 RE: $
## 6677 RE: $
## 6678 RE: $
## 6679 E-Clearinghouse - RE-SENDING
## 6680 $
## 6681 $
## 6682 $
## 6683 Re: Mexico advice
## 6684 Treasury, CFTC thank you letters
## 6685 U.S. Gas
## 6686 Re: Update to the FAQ s
## 6687 Re: Update to the FAQ s
## 6688 Re: Update to the FAQ s
## 6689 Re: "Ernie" seminars
## 6690 Re: "Ernie" seminars
## 6691 Re: "Ernie" seminars
## 6692 European Investment Bank Report, 25 Main Players in a
## 6693 European Investment Bank Report, 25 Main Players in a
## 6694 European Investment Bank Report, 25 Main Players in a
## 6695 Re: Online Trading - GTC/Master variation
## 6696 Re: Online Trading - GTC/Master variation
## 6697 Re: Online Trading - GTC/Master variation
## 6698 Re: Delivery of Yosemite Documents
## 6699 Re: Affiliate Setoff Language
## 6700 Re: Legal issue - Customer Registration
## 6701 Re: Legal issue - Customer Registration
## 6702 Re: Legal issue - Customer Registration
## 6703 Re: Legal issue - Customer Registration
## 6704 Re: Legal issue - Customer Registration
## 6705 Re: Legal issue - Customer Registration
## 6706 Re: Legal issue - Customer Registration
## 6707 Re: Update
## 6708 Revision to Long Descriptions and ETA re: master agreements
## 6709 Revision to Long Descriptions and ETA re: master agreements
## 6710 Revision to Long Descriptions and ETA re: master agreements
## 6711 Revision to Long Descriptions and ETA re: master agreements
## 6712 Revision to Long Descriptions and ETA re: master agreements
## 6713 Revision to Long Descriptions and ETA re: master agreements
## 6714 Revision to Long Descriptions and ETA re: master agreements
## 6715 Revision to Long Descriptions and ETA re: master agreements
## 6716 Revision to Long Descriptions and ETA re: master agreements
## 6717 Re: Andrea Calo
## 6718 Andrea Calo s Houston Trip
## 6719 Andrea Calo s Houston Trip
## 6720 Andrea Calo s Houston Trip
## 6721 Re: Local Counsel Questions
## 6722 Re: Confirmations format in regards to EOL
## 6723 Re: Houston Trip
## 6724 Dinner
## 6725 Re: Brent Hendry
## 6726 Houston Trip
## 6727 Andrea Calo
## 6728 Online Trading - GTC/Master variation
## 6729 Online Trading - GTC/Master variation
## 6730 Dead Horses
## 6731 Re: FW: Joke
## 6732 Re: FW: Joke
## 6733 Re: FW: Joke
## 6734 Dead Horses
## 6735 Re: Cash Collateral in Canada
## 6736 Re: Cash Collateral in Canada
## 6737 Re: Cash Collateral in Canada
## 6738 Re: Cash Collateral in Canada
## 6739 Re: Cash Collateral in Canada
## 6740 Re: Cash Collateral in Canada
## 6741 Re: Cash Collateral in Canada
## 6742 Re: Cash Collateral in Canada
## 6743 Re: Cash Collateral in Canada
## 6744 Re: Cash Collateral in Canada
## 6745 Re: Cash Collateral in Canada
## 6746 Re: Cash Collateral in Canada
## 6747 Re: Cash Collateral in Canada
## 6748 Re: Cash Collateral in Canada
## 6749 Re: Cash Collateral in Canada
## 6750 Re: Apartment rental
## 6751 Re: mtaylo1@ect.enron.com/Oct30-3nts
## 6752 Re: Paper Products
## 6753
## 6754 Re: EOL - Master versus Online GTCs
## 6755 Re: Lyco Letter
## 6756 Re: Lyco Letter
## 6757 Derivatives Week on the Web
## 6758 Derivatives Week on the Web
## 6759 Derivatives Week on the Web
## 6760 Derivatives Week on the Web
## 6761 Derivatives Week on the Web
## 6762 Derivatives Week on the Web
## 6763 Derivatives Week on the Web
## 6764 Derivatives Week on the Web
## 6765 Dinner 11/1/99
## 6766 Hi Greg!
## 6767 Re: EOL - Master versus Online GTCs
## 6768 EOL Simulation
## 6769 Hi Greg!
## 6770 Re: Online Derivatives Trading with Regulated Utilities
## 6771 Good Morning!
## 6772 Re: Arriva!
## 6773 eClearinghouse - confidentiality and exclusivity agreement letter
## 6774 Credit Derivatives Documentation Seminar
## 6775 Procedures for New Product Type Approval
## 6776 Re: New Product Type Approval Request
## 6777 Revised GTCs
## 6778 Thanks!
## 6779 Re: Online Canadian GTC s
## 6780 Re: Vacation day
## 6781 website
## 6782 Re: Paper Volumes
## 6783 Re: Paper Volumes
## 6784 Re: Paper Volumes
## 6785 Re: Paper Volumes
## 6786 Re: Paper Volumes
## 6787 Re: Paper Volumes
## 6788 Re: Paper Volumes
## 6789 Re: Paper Volumes
## 6790 Re: Paper Volumes
## 6791 Online Derivatives Trading with Regulated Utilities
## 6792 Online Derivatives Trading with Regulated Utilities
## 6793 Online Derivatives Trading with Regulated Utilities
## 6794 Online Derivatives Trading with Regulated Utilities
## 6795 Online Derivatives Trading with Regulated Utilities
## 6796 Online Derivatives Trading with Regulated Utilities
## 6797 Online Derivatives Trading with Regulated Utilities
## 6798 Online Derivatives Trading with Regulated Utilities
## 6799 Online Derivatives Trading with Regulated Utilities
## 6800 Online Derivatives Trading with Regulated Utilities
## 6801 Online Derivatives Trading with Regulated Utilities
## 6802 Online Derivatives Trading with Regulated Utilities
## 6803 Online Derivatives Trading with Regulated Utilities
## 6804 Online Derivatives Trading with Regulated Utilities
## 6805 Online Derivatives Trading with Regulated Utilities
## 6806 Re: Returned mail: Host unknown (Name server: etc.enron.com: no data\t known)
## 6807 Oops
## 6808 Re: Returned mail: Host unknown (Name server: etc.enron.com: no data\t known)
## 6809 Re: Returned mail: Host unknown (Name server: etc.enron.com: no data\t known)
## 6810 Re: Returned mail: Host unknown (Name server: etc.enron.com: no data\t known)
## 6811 Re: Returned mail: Host unknown (Name server: etc.enron.com: no data\t known)
## 6812 Re: Returned mail: Host unknown (Name server: etc.enron.com: no data\t known)
## 6813 House for Rent
## 6814 Lunch with Fred
## 6815 Re: Aussie Swap Confirm
## 6816 Re: Aussie Swap Confirm
## 6817 Re: Aussie Swap Confirm
## 6818 Re: Aussie Swap Confirm
## 6819 Re: Aussie Swap Confirm
## 6820 Re: Aussie Swap Confirm
## 6821 Re: Aussie Swap Confirm
## 6822 Re: Aussie Swap Confirm
## 6823 Re: Aussie Swap Confirm
## 6824 Re: Aussie Swap Confirm
## 6825 Re: Aussie Swap Confirm
## 6826 Re: Aussie Swap Confirm
## 6827 Re: Aussie Swap Confirm
## 6828 Re: Aussie Swap Confirm
## 6829 Re: Approval needed for letters going out....
## 6830 Re: Approval needed for letters going out....
## 6831 Re: Approval needed for letters going out....
## 6832 Re: Approval needed for letters going out....
## 6833 Re: Approval needed for letters going out....
## 6834 Re: Approval needed for letters going out....
## 6835 Re: Approval needed for letters going out....
## 6836 Re: EOL ETA s & Electronic Trading Partner Agreements
## 6837 Re: Index Wording on SWAPs
## 6838 Re: Index Wording on SWAPs
## 6839 Re: Index Wording on SWAPs
## 6840 Forcenergy Asset Sale
## 6841 Oct. 6 Issues
## 6842 Important. New Internet Mail Address
## 6843 e-mail
## 6844 Online Trading contracts
## 6845 Online Trading contracts
## 6846 Re: Paper Index Wording
## 6847 Re: Paper Index Wording
## 6848 Re: Paper Index Wording
## 6849 October 29 Meeting
## 6850 Local Counsel Questions
## 6851 Local Counsel Questions
## 6852 AIG Intl Worksheet
## 6853 Re:
## 6854 Re: RMT vs ECC - Canadian Swap disclosure language
## 6855 Re: RMT vs ECC - Canadian Swap disclosure language
## 6856 Re: RMT vs ECC - Canadian Swap disclosure language
## 6857 Re: RMT vs ECC - Canadian Swap disclosure language
## 6858 Re: Vacation
## 6859 Re: Vacation
## 6860 Re: Vacation
## 6861 Re: Online Trading-Bad certificates
## 6862 Re: Legal Agreement
## 6863 Re: Legal Agreement
## 6864 Re: Legal Agreement
## 6865 Re: Legal Agreement
## 6866 Re: Legal Agreement
## 6867 Mexico transaction
## 6868 Re: EOL GTC s
## 6869 Re: EOL GTC s
## 6870 Re: EOL GTC s
## 6871 Re: EOL GTC s
## 6872 Re: EOL GTC s
## 6873 Re: Request for Editing
## 6874 Re: Request for Editing
## 6875 Re: Request for Editing
## 6876 Re: Request for Editing
## 6877 Re: Request for Editing
## 6878 Re: Legal Conference
## 6879 Index Wording
## 6880 [Fwd: [Fwd:Phoenix AZ//Rhine Re(Bermuda)confirm 00003.01.01]
## 6881 Re: Smoking/Non-Smoking Rooms
## 6882 [Fwd: [Fwd:Phoenix AZ//Rhine Re(Bermuda)confirm 00003.01.01]
## 6883 [Fwd: [Fwd:Phoenix AZ//Rhine Re(Bermuda)confirm 00003.01.01]
## 6884 Re: Home Page Text: Rephrased First Paragraph
## 6885 Re: Home Page Text: Rephrased First Paragraph
## 6886 Re: Home Page Text: Rephrased First Paragraph
## 6887 Re: Home Page Text: Rephrased First Paragraph
## 6888 Re: Home Page Text: Rephrased First Paragraph
## 6889 Re: Home Page Text: Rephrased First Paragraph
## 6890 Re: Home Page Text: Rephrased First Paragraph
## 6891 Re: Home Page Text: Rephrased First Paragraph
## 6892 Re: Home Page Text: Rephrased First Paragraph
## 6893 Re: Home Page Text: Rephrased First Paragraph
## 6894 Re: Home Page Text: Rephrased First Paragraph
## 6895 Re: Home Page Text: Rephrased First Paragraph
## 6896 Re: Home Page Text: Rephrased First Paragraph
## 6897 New Deals
## 6898 Test Message
## 6899 GTC s
## 6900 Re: Gas Option language
## 6901 Re: Cruise itinerary
## 6902 New Singapore-based Attorney
## 6903 New Singapore-based Attorney
## 6904 New Singapore-based Attorney
## 6905 New Singapore-based Attorney
## 6906 New Singapore-based Attorney
## 6907 New Singapore-based Attorney
## 6908 New Singapore-based Attorney
## 6909 New Singapore-based Attorney
## 6910 Re: PULP & PAPER LUNCHEON MEETING
## 6911 Anita on leave
## 6912 Re: Missing GTC s
## 6913 Re: Gas Option language
## 6914 re Westland Energie BV - capacity deals for 2000
## 6915 Gas Option language
## 6916 Online Indexes
## 6917 Online Indexes
## 6918 Online Indexes
## 6919 Online Indexes
## 6920 Online Indexes
## 6921 Online Indexes
## 6922 Online Indexes
## 6923 Online Indexes
## 6924 Online Indexes
## 6925 Online Indexes
## 6926 Online Indexes
## 6927 Re: State of Incorporation
## 6928 Re: Wednesday Online Trading Meeting
## 6929 Long Descriptions - Indexes
## 6930 Wednesday Online Trading Meeting
## 6931 Wednesday Online Trading Meeting
## 6932 Wednesday Online Trading Meeting
## 6933 Wednesday Online Trading Meeting
## 6934 Wednesday Online Trading Meeting
## 6935 Wednesday Online Trading Meeting
## 6936 Wednesday Online Trading Meeting
## 6937 Wednesday Online Trading Meeting
## 6938 Wednesday Online Trading Meeting
## 6939 Wednesday Online Trading Meeting
## 6940 Wednesday Online Trading Meeting
## 6941 Wednesday Online Trading Meeting
## 6942 Wednesday Online Trading Meeting
## 6943 Wednesday Online Trading Meeting
## 6944 Wednesday Online Trading Meeting
## 6945 Wednesday Online Trading Meeting
## 6946 Wednesday Online Trading Meeting
## 6947 Wednesday Online Trading Meeting
## 6948 Wednesday Online Trading Meeting
## 6949 Wednesday Online Trading Meeting
## 6950 Wednesday Online Trading Meeting
## 6951 Wednesday Online Trading Meeting
## 6952 Wednesday Online Trading Meeting
## 6953 Wednesday Online Trading Meeting
## 6954 Re: MARK TAYLOR Itinerary
## 6955 Re: Legal Stuff
## 6956 Re: Tuesday Meeting
## 6957 Re: Mark Haedicke s visit to London
## 6958 Tuesday Meeting
## 6959 Weather GTC s
## 6960 Weather GTC s
## 6961 Re: Reference to telephone conversations on confirmations
## 6962 Re: Reference to telephone conversations on confirmations
## 6963 Re: Reference to telephone conversations on confirmations
## 6964 Re: Reference to telephone conversations on confirmations
## 6965 Re: Reference to telephone conversations on confirmations
## 6966 Re: Reference to telephone conversations on confirmations
## 6967 Re: Reference to telephone conversations on confirmations
## 6968 Re: Reference to telephone conversations on confirmations
## 6969 Re: Reference to telephone conversations on confirmations
## 6970 Re: Reference to telephone conversations on confirmations
## 6971 Re: Reference to telephone conversations on confirmations
## 6972 Re: Reference to telephone conversations on confirmations
## 6973 Re: Reference to telephone conversations on confirmations
## 6974 Re: Reference to telephone conversations on confirmations
## 6975 Re: Reference to telephone conversations on confirmations
## 6976 Re: Reference to telephone conversations on confirmations
## 6977 Re: Reference to telephone conversations on confirmations
## 6978 Re: Reference to telephone conversations on confirmations
## 6979 Re: Reference to telephone conversations on confirmations
## 6980 Re: Reference to telephone conversations on confirmations
## 6981 Re: Reference to telephone conversations on confirmations
## 6982 Approved Countries for Online Trading
## 6983 Approved Countries for Online Trading
## 6984 Approved Countries for Online Trading
## 6985 Approved Countries for Online Trading
## 6986 Re: Revised GTCs
## 6987 Re: Signoffs
## 6988 Re: Revised GTCs
## 6989 RE: Project Tornado
## 6990 RE: Project Tornado
## 6991 RE: Project Tornado
## 6992 Spreadsheet
## 6993 Critical Tornedo Meetings on Wednesday/Thursday
## 6994 Critical Tornedo Meetings on Wednesday/Thursday
## 6995 Critical Tornedo Meetings on Wednesday/Thursday
## 6996 Re: Vacation Days
## 6997 Owens-Corning
## 6998 Owens-Corning
## 6999 Owens-Corning
## 7000 Re: EnronOnline Long Descriptions
## 7001 re: Project Tornado
## 7002 re: Project Tornado
## 7003 FAS 133 response
## 7004 e-mail
## 7005 re: Project Tornado
## 7006 Re: CHANGE - NEW DATE FOR 8/25 MEETING
## 7007 Commercial and help guide testing schedule
## 7008 Re: Enron Online / Legal
## 7009 Re: FASB 133
## 7010 Re: FASB 133
## 7011 Re: FASB 133
## 7012 Sullivan & Cromwell fax
## 7013 Re: Travel Service Forum - Question
## 7014 Greetings from Sao Paulo
## 7015 Re: Online Weather GTC s
## 7016 EnronOnline Long Descriptions
## 7017 EnronOnline Long Descriptions
## 7018 EnronOnline Long Descriptions
## 7019 EnronOnline Long Descriptions
## 7020 EnronOnline Long Descriptions
## 7021 Re: EnronOnline Text
## 7022 Spreadsheet
## 7023 Long Descriptions Spreadsheet
## 7024 Long Descriptions Spreadsheet
## 7025 Long Descriptions Spreadsheet
## 7026 Long Descriptions Spreadsheet
## 7027 Long Descriptions Spreadsheet
## 7028 Online Weather GTC s
## 7029 Online Weather GTC s
## 7030 Online Weather GTC s
## 7031 Online Weather GTC s
## 7032 Online Weather GTC s
## 7033 Online Weather GTC s
## 7034 Online Weather GTC s
## 7035 Online Weather GTC s
## 7036 Online Weather GTC s
## 7037 Online Weather GTC s
## 7038 Online Weather GTC s
## 7039 Online Weather GTC s
## 7040 Online Weather GTC s
## 7041 Online Weather GTC s
## 7042 RE: Password Change
## 7043 Trip to Brazil
## 7044 Launch materials
## 7045 Document Revisions
## 7046 Document Revisions
## 7047 e-mail address
## 7048 Product type long definitions - legal review
## 7049 Product type long definitions - legal review
## 7050 Product type long definitions - legal review
## 7051 Product type long definitions - legal review
## 7052 Product type long definitions - legal review
## 7053 Product type long definitions - legal review
## 7054 Product type long definitions - legal review
## 7055 Product type long definitions - legal review
## 7056 Product type long definitions - legal review
## 7057 Product type long definitions - legal review
## 7058 Product type long definitions - legal review
## 7059 Product type long definitions - legal review
## 7060 Product type long definitions - legal review
## 7061 Product type long definitions - legal review
## 7062 Product type long definitions - legal review
## 7063 Legal Issues List for MEH
## 7064 Re: Monthly Audit Meeting for August
## 7065 Re: Policy Changes
## 7066 e-mail address
## 7067 Re: Online North America Expense Work Order
## 7068 Re: Restricted Master Agreements
## 7069 CP s with Master Agreement Restrictions
## 7070 Re: Restriced Master Agreements
## 7071 Re: Restricted Master Agreements
## 7072 Re: Holiday in Germany
## 7073 Restricted Master Agreements
## 7074 Restriced Master Agreements
## 7075 Restriced Master Agreements
## 7076 Restricted Master Agreements
## 7077 Re: Long Sentences
## 7078 Re: Reserved Parking at Houston s Bush Intercontinental Airport
## 7079 Re: Weekend
## 7080 North American GTC s, PA & ETA
## 7081 Project Tornado Conference Call
## 7082 Project Tornado Conference Call
## 7083 Project Tornado Conference Call
## 7084 Project Tornado Conference Call
## 7085 Project Tornado Conference Call
## 7086 Weekend
## 7087 Thought for the day
## 7088 Re: WIlton Trust confirms.
## 7089 =?ANSI_X3.4-1968?Q?S=3Fo_Paulo_-_Updated_PHONE_LIST?=
## 7090 Watershed - executive summary and chart
## 7091 Re: ECT EUROPE INC: ETOL PUT COUNTERPARTY
## 7092 WIlton Trust confirms.
## 7093 Travel Service Forum
## 7094 Restricted Mater Agreements
## 7095 Re: ECT North America Executed Master Agreements
## 7096 Re: ECT North America Executed Master Agreements
## 7097 Re: ECT North America Executed Master Agreements
## 7098 Diary of a Cat
## 7099 Holiday in Germany
## 7100 Re: Taffy Milligan - Home Numbers
## 7101 Pending Issues
## 7102 Re: Argentina Pulp & Paper
## 7103 Re: Master Agreement Structural Issues Working Group - Minutes
## 7104 Friday/Sailing
## 7105 Re: Global Band Width
## 7106 Online Contracting
## 7107 Online Contracting
## 7108 Online Trading Documents
## 7109 Brazilian Trading
## 7110 Counterparties versus Product Type Matrix
## 7111 Counterparties versus Product Type Matrix
## 7112 Counterparties versus Product Type Matrix
## 7113 Counterparties versus Product Type Matrix
## 7114 Counterparties versus Product Type Matrix
## 7115 Counterparties versus Product Type Matrix
## 7116 Counterparties versus Product Type Matrix
## 7117 Counterparties versus Product Type Matrix
## 7118 Counterparties versus Product Type Matrix
## 7119 Online Trading Documents
## 7120 LEGAL SIGN OFF MEETING - MONDAY, 9TH AUGUST
## 7121 OEM software
## 7122 Counterparties versus Product Type Matrix
## 7123 LEGAL SIGN OFF MEETING - MONDAY, 9TH AUGUST
## 7124 LEGAL SIGN OFF MEETING - MONDAY, 9TH AUGUST
## 7125 Re: LEGAL SIGN OFF MEETING - MONDAY, 9TH AUGUST
## 7126 Online Weather Transactions
## 7127 Online Trading Documents
## 7128 Counterparties versus Product Type Matrix
## 7129 Revised North American PA & ETA
## 7130 Revised North American PA & ETA
## 7131 Online Trading Product Descriptions
## 7132 Online Trading Product Descriptions
## 7133 Online Trading Product Descriptions
## 7134 Online Trading Product Descriptions
## 7135 Online Trading Product Descriptions
## 7136 Online Trading Product Descriptions
## 7137 Online Trading Product Descriptions
## 7138 Online Trading Product Descriptions
## 7139 Trading Lawyer Meeting
## 7140 Online Trading
## 7141 Online Trading
## 7142 Online Trading
## 7143 Online Trading
## 7144 Online Trading
## 7145 Online Trading
## 7146 Online Trading
## 7147 Online Trading
## 7148 Re: GTC s for NOx and SO2
## 7149 Re: GTC s for NOx and SO2
## 7150 Re: GTC s for NOx and SO2
## 7151 Derivatives GTC s
## 7152 Derivatives GTC s
## 7153 PA/ETA
## 7154 PA/ETA
## 7155 8/4 meeting
## 7156 Derivatives: Nord Pool ASA-Nordic Power Futures - Week
## 7157 Re: FW: Wonderful Theories
## 7158 Derivatives: Ruling Against Texas Hospital Swap May Put Similar Deals in Jeopardy
## 7159 Diary of a Cat
## 7160 Re: SWAP GROUP CALENDAR - JULY/AUGUST REVISED
## 7161 Revised documentation
## 7162 US Financial GTC
## 7163 US Financial GTC
## 7164 Diary of a Cat
## 7165 You can see it coming.....
## 7166 Re: Deal execution
## 7167 Re: Amended trade confirmations
## 7168 Re: Amended trade confirmations
## 7169 Re: Amended trade confirmations
## 7170 ETOL SWAP
## 7171 Re: Performance review for David Portz
## 7172 Independent Amounts
## 7173 Independent Amounts
## 7174 Independent Amounts
## 7175 Independent Amounts
## 7176 Independent Amounts
## 7177 Independent Amounts
## 7178 Independent Amounts
## 7179 Independent Amounts
## 7180 Independent Amounts
## 7181 Independent Amounts
## 7182 Independent Amounts
## 7183 Independent Amounts
## 7184 Independent Amounts
## 7185 Independent Amounts
## 7186 Independent Amounts
## 7187 Independent Amounts
## 7188 Independent Amounts
## 7189 Independent Amounts
## 7190 Independent Amounts
## 7191 Independent Amounts
## 7192 Independent Amounts
## 7193 Online North America Expense Work Order
## 7194 Copyright Notice for EnronOnline
## 7195 Proposed revised collateral clause for Online GTCs
## 7196 Proposed revised collateral clause for Online GTCs
## 7197 Proposed revised collateral clause for Online GTCs
## 7198 Proposed revised collateral clause for Online GTCs
## 7199 Proposed revised collateral clause for Online GTCs
## 7200 Proposed revised collateral clause for Online GTCs
## 7201 Proposed revised collateral clause for Online GTCs
## 7202 Proposed revised collateral clause for Online GTCs
## 7203 Copyright Notice for EnronOnline
## 7204 Copyright Notice for EnronOnline
## 7205 Re: Friday
## 7206 Re: Friday
## 7207 Re: Online Trading conference call today.
## 7208 Re: Meeting on Tuesday - Online Trading
## 7209 ETOL
## 7210 ETOL
## 7211 ETOL
## 7212 Credit Clause - online trading GTC s
## 7213 Credit Clause - online trading GTC s
## 7214 Credit Clause - online trading GTC s
## 7215 Credit Clause - online trading GTC s
## 7216 Online Trading Agreements
## 7217 Issue raised by London
## 7218 Tom Gros
## 7219 Registration Process Questions
## 7220 Registration Process Questions
## 7221 Re: Vacation Request
## 7222 Performance review for David Portz
## 7223 Re: ECTRIC
## 7224 Proposed FX and Interest Rate Desk in India
## 7225 Swiss Atel Starts Electricity Derivative Trading Co
## 7226 Swiss Atel Starts Electricity Derivative Trading Co
## 7227 Swiss Atel Starts Electricity Derivative Trading Co
## 7228 Swiss Atel Starts Electricity Derivative Trading Co
## 7229 Re: Final - Legal Business Unit Review
## 7230 Re: Password Access Agreement aka Read Only ETA
## 7231 Re: Password Access Agreement aka Read Only ETA
## 7232 Services Agreement
## 7233 Services Agreement
## 7234 cherry
## 7235 Re: Vacation
## 7236 Re: Vacation
## 7237 Re: Vacation
## 7238 Sunoco Master Swap and Master Physical
## 7239 Re: Online meeting.
## 7240 Re: Online meeting.
## 7241 Re: Online meeting.
## 7242 Re: Disclaimer in HoustonStreet Press Release
## 7243 Re: Disclaimer in HoustonStreet Press Release
## 7244 Re: Disclaimer in HoustonStreet Press Release
## 7245 Re: Disclaimer in HoustonStreet Press Release
## 7246 Re: Disclaimer in HoustonStreet Press Release
## 7247 Re: Disclaimer in HoustonStreet Press Release
## 7248 Re: Disclaimer in HoustonStreet Press Release
## 7249 Re: Disclaimer in HoustonStreet Press Release
## 7250 Re: Disclaimer in HoustonStreet Press Release
## 7251 Re: Disclaimer in HoustonStreet Press Release
## 7252 Re: Disclaimer in HoustonStreet Press Release
## 7253 Re: Disclaimer in HoustonStreet Press Release
## 7254 Re: Disclaimer in HoustonStreet Press Release
## 7255 Disclaimer in HoustonStreet Press Release
## 7256 Disclaimer in HoustonStreet Press Release
## 7257 Long Weeked...
## 7258 Performance review time...
## 7259 Performance review time...
## 7260 Performance review time...
## 7261 Performance review time...
## 7262 Performance review time...
## 7263 Performance review time...
## 7264 Credit Derivatives (CDs) in Sweden
## 7265 Re: J3025 - Benin
## 7266 Re: Vacation
## 7267 Re: Vacation
## 7268 Re: Vacation
## 7269 Re: J3025 - Benin
## 7270 Re: J3025 - Benin
## 7271 Re: OnLine Trading
## 7272 Re: Commodity Trading Advisor
## 7273 Re: Confirms
## 7274 Re: Confirms
## 7275 Re: Confirms
## 7276 Re: Confirms
## 7277 Re: Confirms
## 7278 Re: Confirms
## 7279 Re: Confirms
## 7280 Re: Confirms
## 7281 Re: Confirms
## 7282 Re: Confirms
## 7283 OnLine
## 7284 OnLine
## 7285 Re: Draft Nordic Power Master Agreement
## 7286 Re: Draft Nordic Power Master Agreement
## 7287 Re: Draft Nordic Power Master Agreement
## 7288 Re: Draft Nordic Power Master Agreement
## 7289 Re: Draft Nordic Power Master Agreement
## 7290 Re: Draft Nordic Power Master Agreement
## 7291 Re: Draft Nordic Power Master Agreement
## 7292 Re: Draft Nordic Power Master Agreement
## 7293 Re: Draft Nordic Power Master Agreement
## 7294 Re: Draft Nordic Power Master Agreement
## 7295 Re: Draft Nordic Power Master Agreement
## 7296 Re: Commodity Trading Advisor
## 7297 E-Commerce
## 7298 Re: URGENT - Conference Call Online Trading
## 7299 meeting
## 7300 Trading Web Site
## 7301 Trading Web Site
## 7302 Documents attached
## 7303 MEH Meetings with Newsome & Stenholm
## 7304 MEH Meetings with Newsome & Stenholm
## 7305 MEH Meetings with Newsome & Stenholm
## 7306 Commissioner Newsome Tour
## 7307 Re: Invitation - Meeting to discuss CC s Foreign Jurisdiction Report - London 2:30 / New York 9:30 (18 June 02:30 PM GDT)
## 7308 Re: Invitation - Meeting to discuss CC s Foreign Jurisdiction Report - London 2:30 / New York 9:30 (18 June 02:30 PM GDT)
## 7309 Re: Invitation - Meeting to discuss CC s Foreign Jurisdiction Report - London 2:30 / New York 9:30 (18 June 02:30 PM GDT)
## 7310 Re: Invitation - Meeting to discuss CC s Foreign Jurisdiction Report - London 2:30 / New York 9:30 (18 June 02:30 PM GDT)
## 7311 Re: Invitation - Meeting to discuss CC s Foreign Jurisdiction Report - London 2:30 / New York 9:30 (18 June 02:30 PM GDT)
## 7312 RE: Understanding the 1992 ISDA Master Agreements Conference-June\t 17-Energy and Weather Derivatives Workshop
## 7313 Wine Country
## 7314 RE: Understanding the 1992 ISDA Master Agreements Conference- -Ju\tne 17\t--Energy and Weather Derivatives Workshop
## 7315 Re: Understanding the 1992 ISDA Master Agreements Conference--June 17\t--Energy and Weather Derivatives Workshop
## 7316 Revised ISDA Presentation
## 7317 Re: TIME heals all .....
## 7318 Napa Web Sites
## 7319 Broker Agreement
## 7320 Re: ECT Forms
## 7321 Re: ECT Forms
## 7322 Re: ECT Forms
## 7323 Re: ECT Forms
## 7324 Re: ECT Forms
## 7325 ISDA workshop
## 7326 Plans...
## 7327 FYI
## 7328 Re: WARNING - Virus Discovered in Bank - Worm.ExploreZip
## 7329 Weather Confirm
## 7330 Weather Confirm
## 7331 Re: FW: Signs You ve Had Too Much of the 90 s:
## 7332 Risk Management Policy
## 7333 Internet Trading - Internet Trading Access and Electronic Trading\t Agreements
## 7334 Modem Order
## 7335 Modem Order
## 7336 Modem Order
## 7337 Modem Order
## 7338 Modem Order
## 7339 Omnibus Revisions?
## 7340 Omnibus Revisions?
## 7341 Omnibus Revisions?
## 7342 Omnibus Revisions?
## 7343 Omnibus Revisions?
## 7344 Omnibus Revisions?
## 7345 Omnibus Revisions?
## 7346 Omnibus Revisions?
## 7347 Group Meetings
## 7348 Group Meetings
## 7349 Group Meetings
## 7350 Group Meetings
## 7351 Group Meetings
## 7352 Group Meetings
## 7353 Group Meetings
## 7354 Group Meetings
## 7355 Re: Weekend
## 7356 Re: Cher
## 7357 Re: Internet Trading - Internet Trading Access and Electronic Trading\t Agreements
## 7358 FYI
## 7359 Internet Trading - Internet Trading Access and Electronic Trading\t Agreements
## 7360 Services Agreement
## 7361 Services Agreement
## 7362 Internet Trading - Internet Trading Access and Electronic Trading\t Agreements
## 7363 Internet Trading - Internet Trading Access and Electronic Trading\t Agreements
## 7364 On-line Trading
## 7365 Re: Access and Trading Agreements
## 7366 Re: SWAP Group - June Calendar
## 7367 FYI
## 7368 Re: Trading Limits
## 7369 Re: UK Financial Services Regulation
## 7370 CFTC Article
## 7371 Internet Trading Consultants
## 7372 Re: Master Swap Agreement Database
## 7373 Re: Master Swap Agreement Database
## 7374 Re: Master Swap Agreement Database
## 7375 Re: Brent Hendry
## 7376 Re: June 25 - Bring Kid to Work Day
## 7377 Re: Brent Hendry
## 7378 Energy Exemption
## 7379 Re: Oberon Maintenance List
## 7380 Re: vacation days
## 7381 Re: vacation days
## 7382 Re: vacation days
## 7383 Sushi Demo
## 7384 Re: Resuming Financial Risk Management Opportunity in Guam
## 7385 Re: Resuming Financial Risk Management Opportunity in Guam
## 7386 Re: Resuming Financial Risk Management Opportunity in Guam
## 7387 Re: Resuming Financial Risk Management Opportunity in Guam
## 7388 Re: Resuming Financial Risk Management Opportunity in Guam
## 7389 Re: Resuming Financial Risk Management Opportunity in Guam
## 7390 Re: Resuming Financial Risk Management Opportunity in Guam
## 7391 NEW LAW CLERK...
## 7392 NEW LAW CLERK...
## 7393 NEW LAW CLERK...
## 7394 NEW LAW CLERK...
## 7395 Legal Issus with Hypertext Links
## 7396 Legal Issus with Hypertext Links
## 7397 Re: International Trading Committee Meeting
## 7398 URGENT - OMLX IT Agreements
## 7399 Project Double Eagle
## 7400 Re: European Energy Derivatives - Presentation tomorrow at 12:30 in the Boardroom
## 7401 WATERSHED FINANCING AMENDMENTS AND SYNDICATION - CLOSING
## 7402 Re: OMLX - Re: Revised ENRON CLICK Licence
## 7403 Re: e-mail to conference attendees
## 7404 e-mail to conference attendees
## 7405 e-mail to conference attendees
## 7406 e-mail to conference attendees
## 7407 Re: Compliance Certificate
## 7408 On-line Bandwidth Derivatives
## 7409 Re: Vacation
## 7410 Re: Vacation
## 7411 Re: Vacation
## 7412 Re: Morning!
## 7413 Re: Morning!
## 7414 Re: ECT Legal Risk Presentation
## 7415 Morning!
## 7416 NYMEX Positions
## 7417 Conflicts Clearance fir ECT/Procter & Gamble Swaption
## 7418 Conflicts Clearance fir ECT/Procter & Gamble Swaption
## 7419 Conflicts Clearance fir ECT/Procter & Gamble Swaption
## 7420 Re:
## 7421
## 7422 Re: Registered mail
## 7423 Re: Registered mail
## 7424 Futures Contracts currently traded:
## 7425 Hello!
## 7426 Monthly Audit Meeting Schedule through Year-end
## 7427 Re: Vacation Request
## 7428 Re: Project Tornado Contact List
## 7429 Re: O&M Reports
## 7430 Re: Meeting Reminder!
## 7431 Confirmation
## 7432 Re: OMnet, etc.
## 7433 Re: OMnet, etc.
## 7434 Re: OMnet, etc.
## 7435 Proposed Bankruptcy Amendments
## 7436 Friday Conference call
## 7437 Re: Derivatives provisions in Bankruptcy Reform legislation
## 7438 Message sent in error
## 7439 CFTC issues in Norway
## 7440 Re: request for primer
## 7441 Oberon Maintenance List
## 7442 Bankruptcy/Termination Policy
## 7443 Bankruptcy/Termination Policy
## 7444 Bankruptcy/Termination Policy
## 7445 Credit Watch List
## 7446 Credit Watch List
## 7447 Re: Electronic Trading Systems
## 7448 Re: Potential Long Term Gas Swaption
## 7449 Re: APX - Membership Application
## 7450 weekly update
## 7451 Re: Calendars
## 7452 Re: Burbank Agenda
## 7453 Undeliverable message
## 7454 Re: Undeliverable message -Forwarded
## 7455 Easter
## 7456 Re: Electronic Trading Systems
## 7457 Re: Electronic Trading Systems
## 7458 Re: Electronic Trading Systems
## 7459 Re: Easter
## 7460 Re: Easter
## 7461 Re: Easter
## 7462 Re: Easter
## 7463 Re: Easter
## 7464 Re: Vacation
## 7465 Re: Vacation
## 7466 Re: Vacation
## 7467 If airlines sold paint
## 7468 Re: Proposed two-month secondment to Houston
## 7469 Re: Proposed two-month secondment to Houston
## 7470 Re: Proposed two-month secondment to Houston
## 7471 Re: Proposed two-month secondment to Houston
## 7472 Re: Proposed two-month secondment to Houston
## 7473 Re: Proposed two-month secondment to Houston
## 7474 Re: Proposed two-month secondment to Houston
## 7475 Brazilian Power Trading Contratcts
## 7476 Brazilian Power Trading Contratcts
## 7477 Canadian Credit Watch
## 7478 Re: Tana s trip to London
## 7479 Tana s trip to London
## 7480 Re: Job Posting
## 7481 Draft Template
## 7482 Kartini
## 7483 Re: Jakarta lawyer
## 7484
## 7485 Re: Legal Pictorial
## 7486 German Power Derivatives article
## 7487 Re: New European Power Index - CEPI
## 7488 Re: WMI Agreement
## 7489 Re: International Trading Committee Meeting
## 7490 Re: law clerk interviews
## 7491 Re: Arrival in Buenos Aires
## 7492 Tie Line
## 7493 Arrival in Buenos Aires
## 7494 Weather Derivatives: European Legal Due Diligence
## 7495 Rockets
## 7496 Rockets
## 7497 Re: International Trading Committee Meeting
## 7498 Re: International Trading Committee Meeting
## 7499 Re: International Trading Committee Meeting
## 7500 United Airlines International E-Fares
## 7501 Re: Re secondment
## 7502 Re: Re secondment
## 7503 Re: Re secondment
## 7504 Re: Re secondment
## 7505 Re: Re secondment
## 7506 Follow up: C. Fishkin s Proposal and my Comments of 2/19/99
## 7507 Re: Weather
## 7508 translation
## 7509 translation
## 7510 translation
## 7511 Omnibus Agreement
## 7512 Re: Personal-
## 7513
## 7514 Re: Question
## 7515 Re: Naphtha Hedge
## 7516 Bear Alert
## 7517 Re: Naphtha Hedge
## 7518 Reply to e-mail
## 7519 Re: DPC Naphtha Hedge
## 7520 Re: DPC Naphtha Hedge
## 7521 Re: DPC Naphtha Hedge
## 7522 Robert Quick
## 7523 Robert Quick
## 7524 Re: CLE Certification for Enron Law Conference
## 7525 Forwards vs. Futures
## 7526 Re: RE secondment
## 7527 Re: BA Project Report
## 7528 Bio
## 7529 Re: Naphtha Hedge
## 7530 Party
## 7531 Weather Derivatives
## 7532 Weather Derivatives
## 7533 Weather Derivatives
## 7534 Re: Naphtha Hedge
## 7535 Re: Brent Hendry
## 7536 Re: Brent Hendry
## 7537 Re: Brent Hendry
## 7538 Maritime Novels
## 7539 Vancouver Guides
## 7540 Re: Brent Hendry
## 7541 Re: Vacation
## 7542 Re: Vacation
## 7543 Re: Vacation
## 7544 Re: Vacation
## 7545 Re: Vacation
## 7546 Re: Meeting
## 7547 Revised Authorization Memo
## 7548 Proposed London Equity Trading Desk
## 7549 Trading German and Spanish listed equities from Houston - second e-mail
## 7550 Re: Weekend
## 7551 Re: DATABASE ICON FOR MARK TAYLOR
## 7552 Re: Weekend
## 7553 Weekend
## 7554 Re: Andrea s Trip
## 7555 Re: Canadian ISDA Matters - Cash Collateralization
## 7556 Re: Bonus
## 7557 Option Investor Newsletter - IMPORTANT WARNING !!
## 7558 Option Investor Newsletter - IMPORTANT WARNING !!
## 7559 Thursday Option Investor Newsletter 2 of 2
## 7560 Thursday Option Investor Newsletter 2 of 2
## 7561 Thursday Option Investor Newsletter 1 of 2
## 7562 Thursday Option Investor Newsletter 1 of 2
## 7563 Re: DAPSA
## 7564 Congrats!
## 7565 Re: Umbrella agreements between EI and ECT
## 7566 Re: CFTC Chair -- possible nominee
## 7567 Tuesday Option Investor Newsletter 2 of 2
## 7568 Tuesday Option Investor Newsletter 2 of 2
## 7569 Tuesday Option Investor Newsletter 1 of 2
## 7570 Tuesday Option Investor Newsletter 1 of 2
## 7571 Re: Umbrella agreements between EI and ECT
## 7572 Human Rights Watch
## 7573 Sunday - Option Investor Newsletter 6 of 6 (C.Calls/NkdPuts)
## 7574 Sunday - Option Investor Newsletter 6 of 6 (C.Calls/NkdPuts)
## 7575 Sunday - Option Investor Newsletter 5 of 6 (Puts/Combos)
## 7576 Sunday - Option Investor Newsletter 5 of 6 (Puts/Combos)
## 7577 Sunday - Option Investor Newsletter 4 of 6 (calls/puts)
## 7578 Sunday - Option Investor Newsletter 4 of 6 (calls/puts)
## 7579 Sunday - Option Investor Newsletter 3 of 6 (calls)
## 7580 Sunday - Option Investor Newsletter 3 of 6 (calls)
## 7581 Sunday - Option Investor Newsletter 2 of 6 (calls)
## 7582 Sunday - Option Investor Newsletter 2 of 6 (calls)
## 7583 Sunday - Option Investor Newsletter 1 of 6
## 7584 Sunday - Option Investor Newsletter 1 of 6
## 7585 Thursday - Option Investor Newsletter 2 of 2
## 7586 Thursday - Option Investor Newsletter 2 of 2
## 7587 Re: Position Description
## 7588 Re: West Africa Project
## 7589 Tuesday - Option Investor Newsletter 3 of 3
## 7590 Tuesday - Option Investor Newsletter 3 of 3
## 7591 Tuesday - Option Investor Newsletter 1 of 3
## 7592 Tuesday - Option Investor Newsletter 1 of 3
## 7593 London on the web
## 7594 1999 Goals
## 7595 1999 Goals
## 7596 1999 Goals
## 7597 1999 Goals
## 7598 1999 Goals
## 7599 1999 Goals
## 7600 1999 Goals
## 7601 1999 Goals
## 7602 1999 Goals
## 7603 Re: UK Courts vs. Arbitration for UK Swap Agreements
## 7604 Treaty
## 7605 Sunday - Option Investor Newsletter 3 of 7 (calls)
## 7606 Sunday - Option Investor Newsletter 3 of 7 (calls)
## 7607 Financial Trading Documentation
## 7608 Financial Trading Documentation
## 7609 Financial Trading Documentation
## 7610 Life in the Law Firm
## 7611 Sailing
## 7612 Re: MEH Itinerary
## 7613 Re: MEH Itinerary
## 7614 Re: MEH Itinerary
## 7615 Welcome to The Option Investor Newsletter - Password Instructions
## 7616 Thursday - Option Investor Newsletter 2 of 2
## 7617 Thursday - Option Investor Newsletter 2 of 2
## 7618 Re: Friday & Drinks
## 7619 Boat
## 7620 Hi!
## 7621 Boat
## 7622 Paul Waine s Visit 20 & 21 January
## 7623 Wednesday - Option Investor Newsletter - Update
## 7624 Optiion Investor Newsletter - Trading Alert
## 7625 Re: Paralegal Position
## 7626 Paralegal Position
## 7627 Paralegal Position
## 7628 Paralegal Position
## 7629 Paralegal Position
## 7630 Paralegal Position
## 7631 Paralegal Position
## 7632 Paralegal Position
## 7633 Paralegal Position
## 7634 Paralegal Position
## 7635 Paralegal Position
## 7636 Paralegal Position
## 7637 Paralegal Position
## 7638 Paralegal Position
## 7639 Paralegal Position
## 7640 Paralegal Position
## 7641 Paralegal Position
## 7642 Paralegal Position
## 7643 Paralegal Position
## 7644 Paralegal Position
## 7645 Paralegal Position
## 7646 Paralegal Position
## 7647 Paralegal Position
## 7648 Paralegal Position
## 7649 Paralegal Position
## 7650 Paralegal Position
## 7651 Paralegal Position
## 7652 Paralegal Position
## 7653 Paralegal Position
## 7654 Paralegal Position
## 7655 Paralegal Position
## 7656 Paralegal Position
## 7657 Paralegal Position
## 7658 Paralegal Position
## 7659 Paralegal Position
## 7660 Paralegal Position
## 7661 Paralegal Position
## 7662 Paralegal Position
## 7663 Paralegal Position
## 7664 Paralegal Position
## 7665 Paralegal Position
## 7666 Paralegal Position
## 7667 Paralegal Position
## 7668 Paralegal Position
## 7669 Paralegal Position
## 7670 Paralegal Position
## 7671 Paralegal Position
## 7672 Paralegal Position
## 7673 Paralegal Position
## 7674 Paralegal Position
## 7675 Paralegal Position
## 7676 Paralegal Position
## 7677 Paralegal Position
## 7678 Re: UK Courts vs. Arbitration for UK Swap Agreements
## 7679 Re: UK Courts vs. Arbitration for UK Swap Agreements
## 7680 Re: UK Courts vs. Arbitration for UK Swap Agreements
## 7681 Re: UK Courts vs. Arbitration for UK Swap Agreements
## 7682 Re: UK Courts vs. Arbitration for UK Swap Agreements
## 7683 Re: UK Courts vs. Arbitration for UK Swap Agreements
## 7684 Re: UK Courts vs. Arbitration for UK Swap Agreements
## 7685 Re: UK Courts vs. Arbitration for UK Swap Agreements
## 7686 Re: UK Courts vs. Arbitration for UK Swap Agreements
## 7687 Re: Hi
## 7688 Re: QD Legal
## 7689 Project Review Meeting - 18 January, 1999
## 7690 Re: Houston
## 7691 Re: Houston
## 7692 Re: Houston
## 7693 Re: Houston
## 7694 Re: Houston
## 7695 Houston
## 7696 Houston
## 7697 Houston
## 7698 FW: Humour
## 7699 UK Courts vs. Arbitration for UK Swap Agreements
## 7700 UK Courts vs. Arbitration for UK Swap Agreements
## 7701 UK Courts vs. Arbitration for UK Swap Agreements
## 7702 UK Courts vs. Arbitration for UK Swap Agreements
## 7703 UK Courts vs. Arbitration for UK Swap Agreements
## 7704 UK Courts vs. Arbitration for UK Swap Agreements
## 7705 UK Courts vs. Arbitration for UK Swap Agreements
## 7706 Taking cash collateral in Canada
## 7707 Taking cash collateral in Canada
## 7708 Taking cash collateral in Canada
## 7709 Re: JEDI II
## 7710 Good morning!
## 7711 Re: Master Swap Agreement for HL&P
## 7712 Re: Master Swap Agreement for HL&P
## 7713 Re: Master Swap Agreement for HL&P
## 7714 JEDI II
## 7715 Friday telephone call
## 7716 Friday telephone call
## 7717 Friday telephone call
## 7718 Re: energy exchange in Germany
## 7719 Re: 1998 ISDA Commodity Derivatives Definitions
## 7720 Re: London Trading Meetings
## 7721 Ormet
## 7722 Ormet
## 7723 Ormet
## 7724 INPORTANT DOCUMENT
## 7725 INPORTANT DOCUMENT
## 7726 INPORTANT DOCUMENT
## 7727 INPORTANT DOCUMENT
## 7728 INPORTANT DOCUMENT
## 7729 INPORTANT DOCUMENT
## 7730 INPORTANT DOCUMENT
## 7731 INPORTANT DOCUMENT
## 7732 INPORTANT DOCUMENT
## 7733 INPORTANT DOCUMENT
## 7734 INPORTANT DOCUMENT
## 7735 INPORTANT DOCUMENT
## 7736 INPORTANT DOCUMENT
## 7737 INPORTANT DOCUMENT
## 7738 INPORTANT DOCUMENT
## 7739 INPORTANT DOCUMENT
## 7740 INPORTANT DOCUMENT
## 7741 INPORTANT DOCUMENT
## 7742 INPORTANT DOCUMENT
## 7743 INPORTANT DOCUMENT
## 7744 INPORTANT DOCUMENT
## 7745 INPORTANT DOCUMENT
## 7746 INPORTANT DOCUMENT
## 7747 INPORTANT DOCUMENT
## 7748 INPORTANT DOCUMENT
## 7749 INPORTANT DOCUMENT
## 7750 INPORTANT DOCUMENT
## 7751 INPORTANT DOCUMENT
## 7752 INPORTANT DOCUMENT
## 7753 Statoil assignment to J. Aron
## 7754 Statoil assignment to J. Aron
## 7755 Statoil assignment to J. Aron
## 7756 Statoil assignment to J. Aron
## 7757 Part Time Benefits
## 7758 Part Time Benefits
## 7759 Organizational Announcement
## 7760 Part Time Benefits
## 7761 Re: Mieco Inc. Dispute
## 7762 Re: Mieco Inc. Dispute
## 7763 Re: Mieco Inc. Dispute
## 7764 Re: Mieco Inc. Dispute
## 7765 Re: Mieco Inc. Dispute
## 7766 Annexes
## 7767 DealBench/Freshfields Proposal
## 7768 2001 Goals
## 7769 ISDA Electronic Document Available
## 7770 ASE on February 12-13, 2001 in Dallas, TX
## 7771 ASE on February 12-13, 2001 in Dallas, TX
## 7772 ASE on February 12-13, 2001 in Dallas, TX
## 7773 ASE on February 12-13, 2001 in Dallas, TX
## 7774 ASE on February 12-13, 2001 in Dallas, TX
## 7775 ASE on February 12-13, 2001 in Dallas, TX
## 7776 ASE on February 12-13, 2001 in Dallas, TX
## 7777 ASE on February 12-13, 2001 in Dallas, TX
## 7778 ASE on February 12-13, 2001 in Dallas, TX
## 7779 ASE on February 12-13, 2001 in Dallas, TX
## 7780 ASE on February 12-13, 2001 in Dallas, TX
## 7781 ASE on February 12-13, 2001 in Dallas, TX
## 7782 ASE on February 12-13, 2001 in Dallas, TX
## 7783 ASE on February 12-13, 2001 in Dallas, TX
## 7784 ASE on February 12-13, 2001 in Dallas, TX
## 7785 ASE on February 12-13, 2001 in Dallas, TX
## 7786 ASE on February 12-13, 2001 in Dallas, TX
## 7787 ASE on February 12-13, 2001 in Dallas, TX
## 7788 ASE on February 12-13, 2001 in Dallas, TX
## 7789 ASE on February 12-13, 2001 in Dallas, TX
## 7790 ASE on February 12-13, 2001 in Dallas, TX
## 7791 ASE on February 12-13, 2001 in Dallas, TX
## 7792 ASE on February 12-13, 2001 in Dallas, TX
## 7793 ASE on February 12-13, 2001 in Dallas, TX
## 7794 ASE on February 12-13, 2001 in Dallas, TX
## 7795 ASE on February 12-13, 2001 in Dallas, TX
## 7796 ASE on February 12-13, 2001 in Dallas, TX
## 7797 ASE on February 12-13, 2001 in Dallas, TX
## 7798 ASE on February 12-13, 2001 in Dallas, TX
## 7799 ASE on February 12-13, 2001 in Dallas, TX
## 7800 ASE on February 12-13, 2001 in Dallas, TX
## 7801 ASE on February 12-13, 2001 in Dallas, TX
## 7802 ASE on February 12-13, 2001 in Dallas, TX
## 7803 ASE on February 12-13, 2001 in Dallas, TX
## 7804 ASE on February 12-13, 2001 in Dallas, TX
## 7805 ASE on February 12-13, 2001 in Dallas, TX
## 7806 ASE on February 12-13, 2001 in Dallas, TX
## 7807 ASE on February 12-13, 2001 in Dallas, TX
## 7808 ASE on February 12-13, 2001 in Dallas, TX
## 7809 ASE on February 12-13, 2001 in Dallas, TX
## 7810 ASE on February 12-13, 2001 in Dallas, TX
## 7811 ASE on February 12-13, 2001 in Dallas, TX
## 7812 ASE on February 12-13, 2001 in Dallas, TX
## 7813 ASE on February 12-13, 2001 in Dallas, TX
## 7814 ASE on February 12-13, 2001 in Dallas, TX
## 7815 ASE on February 12-13, 2001 in Dallas, TX
## 7816 ASE on February 12-13, 2001 in Dallas, TX
## 7817 ASE on February 12-13, 2001 in Dallas, TX
## 7818 ASE on February 12-13, 2001 in Dallas, TX
## 7819 ASE on February 12-13, 2001 in Dallas, TX
## 7820 ASE on February 12-13, 2001 in Dallas, TX
## 7821 ASE on February 12-13, 2001 in Dallas, TX
## 7822 ASE on February 12-13, 2001 in Dallas, TX
## 7823 ASE on February 12-13, 2001 in Dallas, TX
## 7824 ASE on February 12-13, 2001 in Dallas, TX
## 7825 ASE on February 12-13, 2001 in Dallas, TX
## 7826 ASE on February 12-13, 2001 in Dallas, TX
## 7827 Re: Bankruptcy Meeting - February 8th - 2:00 p.m. NY
## 7828 Re: Bankruptcy Meeting - February 8th - 2:00 p.m. NY
## 7829 Re: Bankruptcy Meeting - February 8th - 2:00 p.m. NY
## 7830 Glossary
## 7831 Glossary
## 7832 Glossary
## 7833 Glossary
## 7834 Glossary
## 7835 Glossary
## 7836 Glossary
## 7837 Glossary
## 7838 Glossary
## 7839 Glossary
## 7840 Glossary
## 7841 Glossary
## 7842 Glossary
## 7843 Glossary
## 7844 Glossary
## 7845 ISDA Schedule
## 7846 ISDA Schedule
## 7847 ISDA Schedule
## 7848 ISDA Schedule
## 7849 ISDA schedule
## 7850 ISDA schedule
## 7851 ISDA schedule
## 7852 ISDA schedule
## 7853 ISDA schedule
## 7854 ISDA schedule
## 7855 ISDA schedule
## 7856 ISDA schedule
## 7857 ISDA schedule
## 7858 Payroll questions
## 7859 Payroll questions
## 7860 Payroll questions
## 7861 Payroll questions
## 7862 Payroll questions
## 7863 Metals/Enron Documents
## 7864 Metals/Enron Documents
## 7865 Metals/Enron Documents
## 7866 Re: Panama Legal Inquiry
## 7867 Re: Panama Legal Inquiry
## 7868 Re: Panama Legal Inquiry
## 7869 Re: Worksheets
## 7870 Re: Worksheets
## 7871 Re: Worksheets
## 7872 Re: Worksheets
## 7873 Re: Worksheets
## 7874 Group Goals
## 7875 Assignment Agreement
## 7876 Assignment Agreement
## 7877 Assignment Agreement
## 7878 Assignment Agreement
## 7879 Assignment Agreement
## 7880 Assignment Agreement
## 7881 Assignment Agreement
## 7882 Assignment Agreement
## 7883 Assignment Agreement
## 7884 Assignment Agreement
## 7885 Assignment Agreement
## 7886 Assignment Agreement
## 7887 Assignment Agreement
## 7888 Assignment Agreement
## 7889 Assignment Agreement
## 7890 Assignment Agreement
## 7891 Assignment Agreement
## 7892 Assignment Agreement
## 7893 Assignment Agreement
## 7894 Assignment Agreement
## 7895 Assignment Agreement
## 7896 Assignment Agreement
## 7897 Assignment Agreement
## 7898 Assignment Agreement
## 7899 Assignment Agreement
## 7900 Assignment Agreement
## 7901 Assignment Agreement
## 7902 Assignment Agreement
## 7903 Assignment Agreement
## 7904 Assignment Agreement
## 7905 Assignment Agreement
## 7906 Assignment Agreement
## 7907 Assignment Agreement
## 7908 Assignment Agreement
## 7909 Assignment Agreement
## 7910 Assignment Agreement
## 7911 Assignment Agreement
## 7912 Assignment Agreement
## 7913 Assignment Agreement
## 7914 Assignment Agreement
## 7915 Assignment Agreement
## 7916 Assignment Agreement
## 7917 Assignment Agreement
## 7918 Assignment Agreement
## 7919 Assignment Agreement
## 7920 Assignment Agreement
## 7921 Assignment Agreement
## 7922 Assignment Agreement
## 7923 Assignment Agreement
## 7924 Assignment Agreement
## 7925 Assignment Agreement
## 7926 Assignment Agreement
## 7927 Assignment Agreement
## 7928 Assignment Agreement
## 7929 Assignment Agreement
## 7930 Assignment Agreement
## 7931 Assignment Agreement
## 7932 Assignment Agreement
## 7933 Assignment Agreement
## 7934 Assignment Agreement
## 7935 Assignment Agreement
## 7936 Assignment Agreement
## 7937 Assignment Agreement
## 7938 Assignment Agreement
## 7939 Assignment Agreement
## 7940 Assignment Agreement
## 7941 Assignment Agreement
## 7942 Dominic Carolan - Interview Schedule
## 7943 Brazil
## 7944 Brazil
## 7945 Brazil
## 7946 Brazil
## 7947 Brazil
## 7948 Brazil
## 7949 Brazil
## 7950 Brazil
## 7951 Brazil
## 7952 Brazil
## 7953 Brazil
## 7954 Brazil
## 7955 Brazil
## 7956 Brazil
## 7957 Brazil
## 7958 Junior Achievement
## 7959 Junior Achievement
## 7960 Junior Achievement
## 7961 Junior Achievement
## 7962 Junior Achievement
## 7963 Junior Achievement
## 7964 Junior Achievement
## 7965 Junior Achievement
## 7966 Junior Achievement
## 7967 Junior Achievement
## 7968 Junior Achievement
## 7969 Junior Achievement
## 7970 Net Works
## 7971 Net Works
## 7972 FW: Senior Counsel Ad
## 7973 FW: Senior Counsel Ad
## 7974 FW: Senior Counsel Ad
## 7975 FW: Senior Counsel Ad
## 7976 FW: Senior Counsel Ad
## 7977 FW: Senior Counsel Ad
## 7978 FW: Senior Counsel Ad
## 7979 FW: Senior Counsel Ad
## 7980 FW: Senior Counsel Ad
## 7981 FW: Senior Counsel Ad
## 7982 FW: Senior Counsel Ad
## 7983 FW: Senior Counsel Ad
## 7984 FW: Senior Counsel Ad
## 7985 FW: Senior Counsel Ad
## 7986 FW: Senior Counsel Ad
## 7987 Marketing affiliate Issues
## 7988 Marketing affiliate Issues
## 7989 Marketing affiliate Issues
## 7990 NYPSC Adopts Enron Online as Index
## 7991 Omnibus Confirms
## 7992 Omnibus Confirms
## 7993 Omnibus Confirms
## 7994 Omnibus Confirms
## 7995 Omnibus Confirms
## 7996 Omnibus Confirms
## 7997 Re: Swap Calendars as of 4/6/01
## 7998 Re: Swap Calendars as of 4/6/01
## 7999 Re: Swap Calendars as of 4/6/01
## 8000 ISDA Script
## 8001 ISDA Script
## 8002 Charts
## 8003 Charts
## 8004 SanJuan/SoCal spread prices
## 8005 Microsoft MOU
## 8006 Microsoft MOU
## 8007 Microsoft MOU
## 8008 Microsoft MOU
## 8009 Microsoft MOU
## 8010 RE: Are the following OK w/ Credit?
## 8011 Memorandum for ISDA U.S.Netting Legislation.DOC
## 8012 Memorandum for ISDA U.S.Netting Legislation.DOC
## 8013 Memorandum for ISDA U.S.Netting Legislation.DOC
## 8014 Memorandum for ISDA U.S.Netting Legislation.DOC
## 8015 Memorandum for ISDA U.S.Netting Legislation.DOC
## 8016 Re: Financial Trading in Brazil
## 8017 Re: Financial Trading in Brazil
## 8018 Re: Financial Trading in Brazil
## 8019 Re: Credit Lawyer responsibilities
## 8020 PG&E letter setting forth calculation of damages
## 8021 PG&E letter setting forth calculation of damages
## 8022 PG&E letter setting forth calculation of damages
## 8023 PG&E letter setting forth calculation of damages
## 8024 PG&E letter setting forth calculation of damages
## 8025 PG&E letter setting forth calculation of damages
## 8026 PG&E letter setting forth calculation of damages
## 8027 PG&E letter setting forth calculation of damages
## 8028 PG&E letter setting forth calculation of damages
## 8029 PG&E letter setting forth calculation of damages
## 8030 PG&E letter setting forth calculation of damages
## 8031 PG&E letter setting forth calculation of damages
## 8032 PG&E letter setting forth calculation of damages
## 8033 PG&E letter setting forth calculation of damages
## 8034 PG&E letter setting forth calculation of damages
## 8035 Re: Cash Collateral
## 8036 Re: Cash Collateral
## 8037 Re: Cash Collateral
## 8038 Re: Cash Collateral
## 8039 Re: Cash Collateral
## 8040 Re: Cash Collateral
## 8041 Re: Cash Collateral
## 8042 Re: Cash Collateral
## 8043 Re: Cash Collateral
## 8044 Re: Cash Collateral
## 8045 Re: Cash Collateral
## 8046 Re: Cash Collateral
## 8047 Re: Cash Collateral
## 8048 Re: Cash Collateral
## 8049 FW: Microsoft MOU
## 8050 FW: Microsoft MOU
## 8051 Re: Outside Legal Bills
## 8052 Re: Outside Legal Bills
## 8053 Re: Outside Legal Bills
## 8054 Stanford/McKinsey GLOBE Initiative
## 8055 Stanford/McKinsey GLOBE Initiative
## 8056 Stanford/McKinsey GLOBE Initiative
## 8057 Stanford/McKinsey GLOBE Initiative
## 8058 Stanford/McKinsey GLOBE Initiative
## 8059 Stanford/McKinsey GLOBE Initiative
## 8060 Stanford/McKinsey GLOBE Initiative
## 8061 Stanford/McKinsey GLOBE Initiative
## 8062 Stanford/McKinsey GLOBE Initiative
## 8063 Stanford/McKinsey GLOBE Initiative
## 8064 Stanford/McKinsey GLOBE Initiative
## 8065 Stanford/McKinsey GLOBE Initiative
## 8066 Stanford/McKinsey GLOBE Initiative
## 8067 Stanford/McKinsey GLOBE Initiative
## 8068 Stanford/McKinsey GLOBE Initiative
## 8069 Stanford/McKinsey GLOBE Initiative
## 8070 Stanford/McKinsey GLOBE Initiative
## 8071 Stanford/McKinsey GLOBE Initiative
## 8072 Stanford/McKinsey GLOBE Initiative
## 8073 Stanford/McKinsey GLOBE Initiative
## 8074 Stanford/McKinsey GLOBE Initiative
## 8075 Stanford/McKinsey GLOBE Initiative
## 8076 Stanford/McKinsey GLOBE Initiative
## 8077 Stanford/McKinsey GLOBE Initiative
## 8078 Stanford/McKinsey GLOBE Initiative
## 8079 Stanford/McKinsey GLOBE Initiative
## 8080 Stanford/McKinsey GLOBE Initiative
## 8081 Stanford/McKinsey GLOBE Initiative
## 8082 Stanford/McKinsey GLOBE Initiative
## 8083 Stanford/McKinsey GLOBE Initiative
## 8084 Stanford/McKinsey GLOBE Initiative
## 8085 Stanford/McKinsey GLOBE Initiative
## 8086 Stanford/McKinsey GLOBE Initiative
## 8087 Stanford/McKinsey GLOBE Initiative
## 8088 Stanford/McKinsey GLOBE Initiative
## 8089 Stanford/McKinsey GLOBE Initiative
## 8090 Stanford/McKinsey GLOBE Initiative
## 8091 Stanford/McKinsey GLOBE Initiative
## 8092 Stanford/McKinsey GLOBE Initiative
## 8093 Stanford/McKinsey GLOBE Initiative
## 8094 Stanford/McKinsey GLOBE Initiative
## 8095 Stanford/McKinsey GLOBE Initiative
## 8096 Stanford/McKinsey GLOBE Initiative
## 8097 Stanford/McKinsey GLOBE Initiative
## 8098 Stanford/McKinsey GLOBE Initiative
## 8099 Stanford/McKinsey GLOBE Initiative
## 8100 Stanford/McKinsey GLOBE Initiative
## 8101 Stanford/McKinsey GLOBE Initiative
## 8102 Stanford/McKinsey GLOBE Initiative
## 8103 Stanford/McKinsey GLOBE Initiative
## 8104 Stanford/McKinsey GLOBE Initiative
## 8105 Stanford/McKinsey GLOBE Initiative
## 8106 Stanford/McKinsey GLOBE Initiative
## 8107 Stanford/McKinsey GLOBE Initiative
## 8108 Stanford/McKinsey GLOBE Initiative
## 8109 Stanford/McKinsey GLOBE Initiative
## 8110 Stanford/McKinsey GLOBE Initiative
## 8111 Stanford/McKinsey GLOBE Initiative
## 8112 Stanford/McKinsey GLOBE Initiative
## 8113 Stanford/McKinsey GLOBE Initiative
## 8114 Stanford/McKinsey GLOBE Initiative
## 8115 Stanford/McKinsey GLOBE Initiative
## 8116 Stanford/McKinsey GLOBE Initiative
## 8117 Stanford/McKinsey GLOBE Initiative
## 8118 Stanford/McKinsey GLOBE Initiative
## 8119 Stanford/McKinsey GLOBE Initiative
## 8120 Stanford/McKinsey GLOBE Initiative
## 8121 Stanford/McKinsey GLOBE Initiative
## 8122 Stanford/McKinsey GLOBE Initiative
## 8123 Stanford/McKinsey GLOBE Initiative
## 8124 Stanford/McKinsey GLOBE Initiative
## 8125 Stanford/McKinsey GLOBE Initiative
## 8126 Stanford/McKinsey GLOBE Initiative
## 8127 Stanford/McKinsey GLOBE Initiative
## 8128 Stanford/McKinsey GLOBE Initiative
## 8129 Stanford/McKinsey GLOBE Initiative
## 8130 Stanford/McKinsey GLOBE Initiative
## 8131 Stanford/McKinsey GLOBE Initiative
## 8132 Stanford/McKinsey GLOBE Initiative
## 8133 Stanford/McKinsey GLOBE Initiative
## 8134 Stanford/McKinsey GLOBE Initiative
## 8135 Stanford/McKinsey GLOBE Initiative
## 8136 Stanford/McKinsey GLOBE Initiative
## 8137 Stanford/McKinsey GLOBE Initiative
## 8138 Stanford/McKinsey GLOBE Initiative
## 8139 Stanford/McKinsey GLOBE Initiative
## 8140 Stanford/McKinsey GLOBE Initiative
## 8141 Stanford/McKinsey GLOBE Initiative
## 8142 Stanford/McKinsey GLOBE Initiative
## 8143 Stanford/McKinsey GLOBE Initiative
## 8144 Stanford/McKinsey GLOBE Initiative
## 8145 Stanford/McKinsey GLOBE Initiative
## 8146 Stanford/McKinsey GLOBE Initiative
## 8147 Stanford/McKinsey GLOBE Initiative
## 8148 Stanford/McKinsey GLOBE Initiative
## 8149 Stanford/McKinsey GLOBE Initiative
## 8150 Stanford/McKinsey GLOBE Initiative
## 8151 Stanford/McKinsey GLOBE Initiative
## 8152 Stanford/McKinsey GLOBE Initiative
## 8153 Stanford/McKinsey GLOBE Initiative
## 8154 Stanford/McKinsey GLOBE Initiative
## 8155 Stanford/McKinsey GLOBE Initiative
## 8156 Stanford/McKinsey GLOBE Initiative
## 8157 Stanford/McKinsey GLOBE Initiative
## 8158 Stanford/McKinsey GLOBE Initiative
## 8159 Stanford/McKinsey GLOBE Initiative
## 8160 Stanford/McKinsey GLOBE Initiative
## 8161 Stanford/McKinsey GLOBE Initiative
## 8162 Stanford/McKinsey GLOBE Initiative
## 8163 Stanford/McKinsey GLOBE Initiative
## 8164 Stanford/McKinsey GLOBE Initiative
## 8165 Stanford/McKinsey GLOBE Initiative
## 8166 Stanford/McKinsey GLOBE Initiative
## 8167 Stanford/McKinsey GLOBE Initiative
## 8168 Stanford/McKinsey GLOBE Initiative
## 8169 Stanford/McKinsey GLOBE Initiative
## 8170 Stanford/McKinsey GLOBE Initiative
## 8171 Stanford/McKinsey GLOBE Initiative
## 8172 Stanford/McKinsey GLOBE Initiative
## 8173 Stanford/McKinsey GLOBE Initiative
## 8174 Stanford/McKinsey GLOBE Initiative
## 8175 Stanford/McKinsey GLOBE Initiative
## 8176 Stanford/McKinsey GLOBE Initiative
## 8177 Re: Transition
## 8178 Re: Transition
## 8179 Re: Transition
## 8180 Tri-Union
## 8181 Tri-Union
## 8182 Tri-Union
## 8183 Conference Calls
## 8184 ISDA Energy Conference
## 8185 Re: Conference Calls
## 8186 Re: Conference Calls
## 8187 Re: Conference Calls
## 8188 US Power Phy Options - Approval Needed
## 8189 Meeting re: Samantha Boyd
## 8190 FW:
## 8191 Revised UCC
## 8192 Revised UCC
## 8193 Revised UCC
## 8194 Revised UCC
## 8195 Revised UCC
## 8196 Revised UCC
## 8197 Revised UCC
## 8198 Revised UCC
## 8199 Allied Waste North America, Inc.
## 8200 Allied Waste North America, Inc.
## 8201 Allied Waste North America, Inc.
## 8202 Allied Waste North America, Inc.
## 8203 Allied Waste North America, Inc.
## 8204 Allied Waste North America, Inc.
## 8205 Allied Waste North America, Inc.
## 8206 Allied Waste North America, Inc.
## 8207 Allied Waste North America, Inc.
## 8208 Allied Waste North America, Inc.
## 8209 Allied Waste North America, Inc.
## 8210 Allied Waste North America, Inc.
## 8211 Allied Waste North America, Inc.
## 8212 Allied Waste North America, Inc.
## 8213 Allied Waste North America, Inc.
## 8214 Allied Waste North America, Inc.
## 8215 Allied Waste North America, Inc.
## 8216 Allied Waste North America, Inc.
## 8217 Allied Waste North America, Inc.
## 8218 Allied Waste North America, Inc.
## 8219 Allied Waste North America, Inc.
## 8220 Allied Waste North America, Inc.
## 8221 Allied Waste North America, Inc.
## 8222 Allied Waste North America, Inc.
## 8223 Allied Waste North America, Inc.
## 8224 Allied Waste North America, Inc.
## 8225 Allied Waste North America, Inc.
## 8226 Allied Waste North America, Inc.
## 8227 Allied Waste North America, Inc.
## 8228 Allied Waste North America, Inc.
## 8229 Allied Waste North America, Inc.
## 8230 Allied Waste North America, Inc.
## 8231 Allied Waste North America, Inc.
## 8232 Allied Waste North America, Inc.
## 8233 Allied Waste North America, Inc.
## 8234 Allied Waste North America, Inc.
## 8235 Allied Waste North America, Inc.
## 8236 Allied Waste North America, Inc.
## 8237 Allied Waste North America, Inc.
## 8238 Allied Waste North America, Inc.
## 8239 Allied Waste North America, Inc.
## 8240 Allied Waste North America, Inc.
## 8241 Allied Waste North America, Inc.
## 8242 Allied Waste North America, Inc.
## 8243 Allied Waste North America, Inc.
## 8244 Allied Waste North America, Inc.
## 8245 Allied Waste North America, Inc.
## 8246 Allied Waste North America, Inc.
## 8247 Allied Waste North America, Inc.
## 8248 Allied Waste North America, Inc.
## 8249 Allied Waste North America, Inc.
## 8250 Allied Waste North America, Inc.
## 8251 Allied Waste North America, Inc.
## 8252 Allied Waste North America, Inc.
## 8253 Allied Waste North America, Inc.
## 8254 Allied Waste North America, Inc.
## 8255 Allied Waste North America, Inc.
## 8256 Allied Waste North America, Inc.
## 8257 Allied Waste North America, Inc.
## 8258 Allied Waste North America, Inc.
## 8259 Allied Waste North America, Inc.
## 8260 Allied Waste North America, Inc.
## 8261 Allied Waste North America, Inc.
## 8262 Allied Waste North America, Inc.
## 8263 Allied Waste North America, Inc.
## 8264 Allied Waste North America, Inc.
## 8265 Allied Waste North America, Inc.
## 8266 Allied Waste North America, Inc.
## 8267 Allied Waste North America, Inc.
## 8268 Allied Waste North America, Inc.
## 8269 Allied Waste North America, Inc.
## 8270 Allied Waste North America, Inc.
## 8271 Allied Waste North America, Inc.
## 8272 Allied Waste North America, Inc.
## 8273 Allied Waste North America, Inc.
## 8274 Allied Waste North America, Inc.
## 8275 Allied Waste North America, Inc.
## 8276 Allied Waste North America, Inc.
## 8277 Allied Waste North America, Inc.
## 8278 Allied Waste North America, Inc.
## 8279 Allied Waste North America, Inc.
## 8280 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8281 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8282 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8283 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8284 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8285 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8286 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8287 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8288 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8289 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8290 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8291 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8292 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8293 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8294 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8295 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8296 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8297 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8298 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8299 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8300 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8301 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8302 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8303 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8304 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8305 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8306 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8307 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8308 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8309 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8310 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8311 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8312 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8313 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8314 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8315 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8316 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8317 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8318 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8319 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8320 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8321 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8322 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8323 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8324 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8325 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8326 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8327 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8328 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8329 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8330 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8331 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8332 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8333 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8334 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8335 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8336 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8337 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8338 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8339 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8340 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8341 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8342 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8343 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8344 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8345 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8346 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8347 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8348 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8349 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8350 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8351 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8352 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8353 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8354 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8355 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8356 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8357 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8358 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8359 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8360 Lakeside Feeders Ltd., by and through its division, Lakeside Packers
## 8361 Re: FW: Product type approval needed (US Gas Phy Fwd Secondary Firm)
## 8362 Re: FW: Product type approval needed (US Gas Phy Fwd Secondary Firm)
## 8363 Re: FW: Product type approval needed (US Gas Phy Fwd Secondary Firm)
## 8364 Pulp/Paper
## 8365 Pulp/Paper
## 8366 Pulp/Paper
## 8367 Pulp/Paper
## 8368 Pulp/Paper
## 8369 EOL Regulation - CFTC or FERC?
## 8370 EOL Regulation - CFTC or FERC?
## 8371 EOL Regulation - CFTC or FERC?
## 8372 EOL Regulation - CFTC or FERC?
## 8373 EOL Regulation - CFTC or FERC?
## 8374 EOL Regulation - CFTC or FERC?
## 8375 EOL Regulation - CFTC or FERC?
## 8376 EOL Regulation - CFTC or FERC?
## 8377 Clarification Regarding Hedge Exemption List Memo
## 8378 FERC Staff Concerns on the Gas Side
## 8379 FERC Staff Concerns on the Gas Side
## 8380 FERC Staff Concerns on the Gas Side
## 8381 FERC Staff Concerns on the Gas Side
## 8382 FirstEnergy Services Corp.
## 8383 FirstEnergy Services Corp.
## 8384 FirstEnergy Services Corp.
## 8385 FirstEnergy Services Corp.
## 8386 FirstEnergy Services Corp.
## 8387 FirstEnergy Services Corp.
## 8388 FirstEnergy Services Corp.
## 8389 FirstEnergy Services Corp.
## 8390 FirstEnergy Services Corp.
## 8391 FirstEnergy Services Corp.
## 8392 FirstEnergy Services Corp.
## 8393 FirstEnergy Services Corp.
## 8394 FirstEnergy Services Corp.
## 8395 FirstEnergy Services Corp.
## 8396 FirstEnergy Services Corp.
## 8397 FirstEnergy Services Corp.
## 8398 FirstEnergy Services Corp.
## 8399 FirstEnergy Services Corp.
## 8400 FirstEnergy Services Corp.
## 8401 FirstEnergy Services Corp.
## 8402 FirstEnergy Services Corp.
## 8403 FirstEnergy Services Corp.
## 8404 FirstEnergy Services Corp.
## 8405 FirstEnergy Services Corp.
## 8406 FirstEnergy Services Corp.
## 8407 FirstEnergy Services Corp.
## 8408 FirstEnergy Services Corp.
## 8409 FirstEnergy Services Corp.
## 8410 FirstEnergy Services Corp.
## 8411 FirstEnergy Services Corp.
## 8412 FirstEnergy Services Corp.
## 8413 FirstEnergy Services Corp.
## 8414 FirstEnergy Services Corp.
## 8415 FirstEnergy Services Corp.
## 8416 FirstEnergy Services Corp.
## 8417 FirstEnergy Services Corp.
## 8418 FirstEnergy Services Corp.
## 8419 FirstEnergy Services Corp.
## 8420 FirstEnergy Services Corp.
## 8421 FirstEnergy Services Corp.
## 8422 FirstEnergy Services Corp.
## 8423 FirstEnergy Services Corp.
## 8424 FirstEnergy Services Corp.
## 8425 FirstEnergy Services Corp.
## 8426 FirstEnergy Services Corp.
## 8427 FirstEnergy Services Corp.
## 8428 FirstEnergy Services Corp.
## 8429 FirstEnergy Services Corp.
## 8430 FirstEnergy Services Corp.
## 8431 FirstEnergy Services Corp.
## 8432 FirstEnergy Services Corp.
## 8433 FirstEnergy Services Corp.
## 8434 FirstEnergy Services Corp.
## 8435 FirstEnergy Services Corp.
## 8436 FirstEnergy Services Corp.
## 8437 FirstEnergy Services Corp.
## 8438 FirstEnergy Services Corp.
## 8439 FirstEnergy Services Corp.
## 8440 FirstEnergy Services Corp.
## 8441 FirstEnergy Services Corp.
## 8442 FirstEnergy Services Corp.
## 8443 FirstEnergy Services Corp.
## 8444 FirstEnergy Services Corp.
## 8445 FirstEnergy Services Corp.
## 8446 FirstEnergy Services Corp.
## 8447 FirstEnergy Services Corp.
## 8448 FirstEnergy Services Corp.
## 8449 FirstEnergy Services Corp.
## 8450 FirstEnergy Services Corp.
## 8451 FirstEnergy Services Corp.
## 8452 FirstEnergy Services Corp.
## 8453 FirstEnergy Services Corp.
## 8454 FirstEnergy Services Corp.
## 8455 FirstEnergy Services Corp.
## 8456 FirstEnergy Services Corp.
## 8457 FirstEnergy Services Corp.
## 8458 FirstEnergy Services Corp.
## 8459 FirstEnergy Services Corp.
## 8460 FirstEnergy Services Corp.
## 8461 FirstEnergy Services Corp.
## 8462 ISDA List
## 8463 Re: Enron Policy re Use of Third Party Trading Platforms
## 8464 Re: Enron Policy re Use of Third Party Trading Platforms
## 8465 Re: Enron Policy re Use of Third Party Trading Platforms
## 8466 Re: Double Transaction Calendar Spread Swap
## 8467 Tembec Inc.
## 8468 Tembec Inc.
## 8469 Tembec Inc.
## 8470 Tembec Inc.
## 8471 Tembec Inc.
## 8472 Tembec Inc.
## 8473 Tembec Inc.
## 8474 Tembec Inc.
## 8475 Tembec Inc.
## 8476 Tembec Inc.
## 8477 Tembec Inc.
## 8478 Tembec Inc.
## 8479 Tembec Inc.
## 8480 Tembec Inc.
## 8481 Tembec Inc.
## 8482 Tembec Inc.
## 8483 Tembec Inc.
## 8484 Tembec Inc.
## 8485 Tembec Inc.
## 8486 Tembec Inc.
## 8487 Tembec Inc.
## 8488 Tembec Inc.
## 8489 Tembec Inc.
## 8490 Tembec Inc.
## 8491 Tembec Inc.
## 8492 Tembec Inc.
## 8493 Tembec Inc.
## 8494 Tembec Inc.
## 8495 Tembec Inc.
## 8496 Tembec Inc.
## 8497 Tembec Inc.
## 8498 Tembec Inc.
## 8499 Tembec Inc.
## 8500 Tembec Inc.
## 8501 Tembec Inc.
## 8502 Tembec Inc.
## 8503 Tembec Inc.
## 8504 Tembec Inc.
## 8505 Tembec Inc.
## 8506 Tembec Inc.
## 8507 Tembec Inc.
## 8508 Tembec Inc.
## 8509 Tembec Inc.
## 8510 Tembec Inc.
## 8511 Tembec Inc.
## 8512 Tembec Inc.
## 8513 Tembec Inc.
## 8514 Tembec Inc.
## 8515 Tembec Inc.
## 8516 Tembec Inc.
## 8517 Tembec Inc.
## 8518 Tembec Inc.
## 8519 Tembec Inc.
## 8520 Tembec Inc.
## 8521 Tembec Inc.
## 8522 Tembec Inc.
## 8523 Tembec Inc.
## 8524 Tembec Inc.
## 8525 Tembec Inc.
## 8526 Tembec Inc.
## 8527 Tembec Inc.
## 8528 Tembec Inc.
## 8529 Tembec Inc.
## 8530 Carrizo Oil & Gas, Inc.
## 8531 Carrizo Oil & Gas, Inc.
## 8532 Carrizo Oil & Gas, Inc.
## 8533 Carrizo Oil & Gas, Inc.
## 8534 Carrizo Oil & Gas, Inc.
## 8535 Carrizo Oil & Gas, Inc.
## 8536 Carrizo Oil & Gas, Inc.
## 8537 Carrizo Oil & Gas, Inc.
## 8538 Carrizo Oil & Gas, Inc.
## 8539 Carrizo Oil & Gas, Inc.
## 8540 Carrizo Oil & Gas, Inc.
## 8541 Carrizo Oil & Gas, Inc.
## 8542 Carrizo Oil & Gas, Inc.
## 8543 Carrizo Oil & Gas, Inc.
## 8544 Carrizo Oil & Gas, Inc.
## 8545 Carrizo Oil & Gas, Inc.
## 8546 Carrizo Oil & Gas, Inc.
## 8547 Carrizo Oil & Gas, Inc.
## 8548 Carrizo Oil & Gas, Inc.
## 8549 Carrizo Oil & Gas, Inc.
## 8550 Carrizo Oil & Gas, Inc.
## 8551 Carrizo Oil & Gas, Inc.
## 8552 Carrizo Oil & Gas, Inc.
## 8553 Carrizo Oil & Gas, Inc.
## 8554 Carrizo Oil & Gas, Inc.
## 8555 Carrizo Oil & Gas, Inc.
## 8556 Carrizo Oil & Gas, Inc.
## 8557 Carrizo Oil & Gas, Inc.
## 8558 Carrizo Oil & Gas, Inc.
## 8559 Carrizo Oil & Gas, Inc.
## 8560 Carrizo Oil & Gas, Inc.
## 8561 Carrizo Oil & Gas, Inc.
## 8562 Carrizo Oil & Gas, Inc.
## 8563 Carrizo Oil & Gas, Inc.
## 8564 Carrizo Oil & Gas, Inc.
## 8565 Carrizo Oil & Gas, Inc.
## 8566 Carrizo Oil & Gas, Inc.
## 8567 Carrizo Oil & Gas, Inc.
## 8568 Carrizo Oil & Gas, Inc.
## 8569 Carrizo Oil & Gas, Inc.
## 8570 Carrizo Oil & Gas, Inc.
## 8571 Carrizo Oil & Gas, Inc.
## 8572 Carrizo Oil & Gas, Inc.
## 8573 Carrizo Oil & Gas, Inc.
## 8574 Carrizo Oil & Gas, Inc.
## 8575 Carrizo Oil & Gas, Inc.
## 8576 Carrizo Oil & Gas, Inc.
## 8577 Carrizo Oil & Gas, Inc.
## 8578 Carrizo Oil & Gas, Inc.
## 8579 Carrizo Oil & Gas, Inc.
## 8580 Carrizo Oil & Gas, Inc.
## 8581 Carrizo Oil & Gas, Inc.
## 8582 Carrizo Oil & Gas, Inc.
## 8583 Carrizo Oil & Gas, Inc.
## 8584 Carrizo Oil & Gas, Inc.
## 8585 Carrizo Oil & Gas, Inc.
## 8586 Carrizo Oil & Gas, Inc.
## 8587 Carrizo Oil & Gas, Inc.
## 8588 Carrizo Oil & Gas, Inc.
## 8589 Carrizo Oil & Gas, Inc.
## 8590 Carrizo Oil & Gas, Inc.
## 8591 Carrizo Oil & Gas, Inc.
## 8592 Weather Products
## 8593 Meeting with Mark Haedicke
## 8594 Clickpaper Guest ID
## 8595 Re: AAA eCommerce Working Group
## 8596 Re: AAA eCommerce Working Group
## 8597 Re: AAA eCommerce Working Group
## 8598 Andy Becnel and Bruce Reemsnyder
## 8599 Andy Becnel and Bruce Reemsnyder
## 8600 Andy Becnel and Bruce Reemsnyder
## 8601 Andy Becnel and Bruce Reemsnyder
## 8602 Andy Becnel and Bruce Reemsnyder
## 8603 Andy Becnel and Bruce Reemsnyder
## 8604 Andy Becnel and Bruce Reemsnyder
## 8605 Andy Becnel and Bruce Reemsnyder
## 8606 Re: Third Party Trading Platform Policy
## 8607 Re: Third Party Trading Platform Policy
## 8608 Re: Third Party Trading Platform Policy
## 8609 Re: Third Party Trading Platform Policy
## 8610 Re: Third Party Trading Platform Policy
## 8611 Re: Third Party Trading Platform Policy
## 8612 Re: Third Party Trading Platform Policy
## 8613 Re: Broker Client Process flow
## 8614 Re: Broker Client Process flow
## 8615 Re: Broker Client Process flow
## 8616 Re: Broker Client Process flow
## 8617 Re: Broker Client Process flow
## 8618 Re: Broker Client Process flow
## 8619 Re: Broker Client Process flow
## 8620 ADA Findings
## 8621 Broker access to EnronOnline
## 8622 Enron Wholesale Markets Quarterly Legal Review
## 8623 Enron Wholesale Markets Quarterly Legal Review
## 8624 Enron Wholesale Markets Quarterly Legal Review
## 8625 Enron Wholesale Markets Quarterly Legal Review
## 8626 Enron Wholesale Markets Quarterly Legal Review
## 8627 Enron Wholesale Markets Quarterly Legal Review
## 8628 Enron Wholesale Markets Quarterly Legal Review
## 8629 Enron Wholesale Markets Quarterly Legal Review
## 8630 Enron Wholesale Markets Quarterly Legal Review
## 8631 Enron Wholesale Markets Quarterly Legal Review
## 8632 Enron Wholesale Markets Quarterly Legal Review
## 8633 Enron Wholesale Markets Quarterly Legal Review
## 8634 Enron Wholesale Markets Quarterly Legal Review
## 8635 Enron Wholesale Markets Quarterly Legal Review
## 8636 Enron Wholesale Markets Quarterly Legal Review
## 8637 Enron Wholesale Markets Quarterly Legal Review
## 8638 TOP TEN Risks
## 8639 TOP TEN Risks
## 8640 TOP TEN Risks
## 8641 TOP TEN Risks
## 8642 TOP TEN Risks
## 8643 Appointments of Agents and Attorneys in Fact
## 8644 Appointments of Agents and Attorneys in Fact
## 8645 Appointments of Agents and Attorneys in Fact
## 8646 Appointments of Agents and Attorneys in Fact
## 8647 Appointments of Agents and Attorneys in Fact
## 8648 Appointments of Agents and Attorneys in Fact
## 8649 Appointments of Agents and Attorneys in Fact
## 8650 Appointments of Agents and Attorneys in Fact
## 8651 IntercontinentalExchange, LLC
## 8652 Draft Letter to TJ Sattler
## 8653 Draft Letter to TJ Sattler
## 8654 Draft Letter to TJ Sattler
## 8655 Mieco Inc. letter
## 8656 Mieco Inc. letter
## 8657 Mieco Inc. letter
## 8658 Mieco Inc. letter
## 8659 Mieco Inc. letter
## 8660 Mieco Inc. letter
## 8661 Mieco Inc. letter
## 8662 Mieco Inc. letter
## 8663 Mieco Inc. letter
## 8664 Legal Meeting last week
## 8665 Legal Meeting last week
## 8666 Legal Meeting last week
## 8667 Legal Meeting last week
## 8668 Legal Meeting last week
## 8669 Legal Meeting last week
## 8670 Legal Meeting last week
## 8671 Legal Meeting last week
## 8672 Legal Meeting last week
## 8673 Legal Meeting last week
## 8674 Legal Meeting last week
## 8675 Legal Meeting last week
## 8676 Legal Meeting last week
## 8677 Legal Meeting last week
## 8678 Legal Meeting last week
## 8679 Position
## 8680 Position
## 8681 Position
## 8682 Position
## 8683 Position
## 8684 Position
## 8685 Position
## 8686 Position
## 8687 CFTC
## 8688 Re: Northern EOL
## 8689 Re: Northern EOL
## 8690 Re: Northern EOL
## 8691 Re: Northern EOL
## 8692 Re: Northern EOL
## 8693 The EnronOnline Games Results
## 8694 CFTC Issues
## 8695 Single Master Agreement
## 8696 Single Master Agreement
## 8697 Single Master Agreement
## 8698 Single Master Agreement
## 8699 Single Master Agreement
## 8700 Single Master Agreement
## 8701 Re: EnronOnline New Markets/Products Weekly Update 9/8/00
## 8702 Re: EnronOnline New Markets/Products Weekly Update 9/8/00
## 8703 Re: EnronOnline New Markets/Products Weekly Update 9/8/00
## 8704 Re: EnronOnline New Markets/Products Weekly Update 9/8/00
## 8705 Re: EnronOnline New Markets/Products Weekly Update 9/8/00
## 8706 Re: EnronOnline New Markets/Products Weekly Update 9/8/00
## 8707 RE:
## 8708
## 8709 Re: CNV-Precedents
## 8710 CNV-Precedents
## 8711 Re: Charles Christening
## 8712 Enron/McGarret C
## 8713 MG Metals
## 8714 MG Metals
## 8715 MG Metals
## 8716 Re: Gross Error language
## 8717 Re: Gross Error language
## 8718 Re: Gross Error language
## 8719 Re: Gross Error language
## 8720 Re: Gross Error language
## 8721 No Action Letter
## 8722 No Action Letter
## 8723 No Action Letter
## 8724 No Action Letter
## 8725 No Action Letter
## 8726 No Action Letter
## 8727 ENW Monthly Report
## 8728 ENW Monthly Report
## 8729 ENW Monthly Report
## 8730 ENW Monthly Report
## 8731 ENW Monthly Report
## 8732 Talisman ETA
## 8733 Talisman ETA
## 8734 Talisman ETA
## 8735 Re: ISDA with Citibank Subsidiary
## 8736 Enron moves make waves in electronic trading industry.(Brief ...
## 8737 Enron moves make waves in electronic trading industry.(Brief ...
## 8738 Enron moves make waves in electronic trading industry.(Brief ...
## 8739 Enron moves make waves in electronic trading industry.(Brief ...
## 8740 Enron moves make waves in electronic trading industry.(Brief ...
## 8741 Enron moves make waves in electronic trading industry.(Brief ...
## 8742 EnronOnline and Putting the Energy into Ecommerce
## 8743 EnronOnline and Putting the Energy into Ecommerce
## 8744 EnronOnline and Putting the Energy into Ecommerce
## 8745 EnronOnline and Putting the Energy into Ecommerce
## 8746 Re: assignment of deals from Merchant Energy Group of the Americas to Morgan Stanley
## 8747 Re: assignment of deals from Merchant Energy Group of the Americas to Morgan Stanley
## 8748 Re: assignment of deals from Merchant Energy Group of the Americas to Morgan Stanley
## 8749 Re: assignment of deals from Merchant Energy Group of the Americas to Morgan Stanley
## 8750 Re: assignment of deals from Merchant Energy Group of the Americas to Morgan Stanley
## 8751 Re: LeBoeuf bill
## 8752 Re: LeBoeuf bill
## 8753 Re: LeBoeuf bill
## 8754 FW: P.Thompson memorial
## 8755 FW: P.Thompson memorial
## 8756 IPE Query
## 8757 Status Memo
## 8758 Status Memo
## 8759 Re: buying a web site
## 8760 Re: buying a web site
## 8761 Re: buying a web site
## 8762 TrueQuote.com
## 8763 TrueQuote.com
## 8764 TrueQuote.com
## 8765 Susan Flynn Active Files
## 8766 Susan Flynn Active Files
## 8767 Re: questionnaire on Internet trading on commodities.DOC
## 8768 The Plan!
## 8769 Re: Deutsche Bank
## 8770 sorema structure
## 8771 sorema structure
## 8772 sorema structure
## 8773 ClickPaper Process Flow diagrams
## 8774 Re: new format
## 8775 Re: new format
## 8776 Re: new format
## 8777 Re: new format
## 8778 Re: new format
## 8779 Cover letter to be sent with the brochures.
## 8780 Re: Mexico
## 8781 Re: Mexico
## 8782 Re: Mexico
## 8783 Re: Forms to be Signed
## 8784 Re: Forms to be Signed
## 8785 Re: Forms to be Signed
## 8786 Status of Online Amendments
## 8787 Status of Online Amendments
## 8788 Status of Online Amendments
## 8789 Status of Online Amendments
## 8790 Status of Online Amendments
## 8791 Status of Online Amendments
## 8792 Status of Online Amendments
## 8793 RE: revised Enron Online
## 8794 RE: revised Enron Online
## 8795 RE: revised Enron Online
## 8796 eSpeed Posting Agreement
## 8797 eSpeed Posting Agreement
## 8798 proposed Posting Agreement
## 8799 proposed Posting Agreement
## 8800 Re: Macromedia site of the day-reference to EnronOnline
## 8801 Re: Macromedia site of the day-reference to EnronOnline
## 8802 Re: Macromedia site of the day-reference to EnronOnline
## 8803 Re: Macromedia site of the day-reference to EnronOnline
## 8804 Re: Macromedia site of the day-reference to EnronOnline
## 8805 Re: Macromedia site of the day-reference to EnronOnline
## 8806 Re: Macromedia site of the day-reference to EnronOnline
## 8807 Re: Macromedia site of the day-reference to EnronOnline
## 8808 Re: Macromedia site of the day-reference to EnronOnline
## 8809 Re: Macromedia site of the day-reference to EnronOnline
## 8810 Re: Macromedia site of the day-reference to EnronOnline
## 8811 Re: Macromedia site of the day-reference to EnronOnline
## 8812 Re: Macromedia site of the day-reference to EnronOnline
## 8813 Re: Macromedia site of the day-reference to EnronOnline
## 8814 Re: Macromedia site of the day-reference to EnronOnline
## 8815 Macromedia site of the day-reference to EnronOnline
## 8816 Macromedia site of the day-reference to EnronOnline
## 8817 Macromedia site of the day-reference to EnronOnline
## 8818 Re: Update
## 8819 Re: Update
## 8820 Re: Update
## 8821 Re: Update
## 8822 Re: Update
## 8823 Re: Update
## 8824 Columbia
## 8825 Columbia
## 8826 Columbia
## 8827 Bond and Equity Trading in Europe
## 8828 Enron Multi-Product Guaranty
## 8829 Enron Multi-Product Guaranty
## 8830 Enron Multi-Product Guaranty
## 8831 Enron Multi-Product Guaranty
## 8832 Enron Multi-Product Guaranty
## 8833 Enron Multi-Product Guaranty
## 8834 Enron Multi-Product Guaranty
## 8835 Enron Multi-Product Guaranty
## 8836 Enron Multi-Product Guaranty
## 8837 Enron Multi-Product Guaranty
## 8838 Enron Multi-Product Guaranty
## 8839 Enron Multi-Product Guaranty
## 8840 Enron Multi-Product Guaranty
## 8841 Enron Multi-Product Guaranty
## 8842 Enron Multi-Product Guaranty
## 8843 Enron Multi-Product Guaranty
## 8844 Enron Multi-Product Guaranty
## 8845 Enron Multi-Product Guaranty
## 8846 Enron Multi-Product Guaranty
## 8847 Enron Multi-Product Guaranty
## 8848 Enron Multi-Product Guaranty
## 8849 Enron Multi-Product Guaranty
## 8850 Enron Multi-Product Guaranty
## 8851 PJM Power Demand
## 8852 PJM Power Demand
## 8853 Stephanie Panus
## 8854 Stephanie Panus
## 8855 Stephanie Panus
## 8856 Stephanie Panus
## 8857 Stephanie Panus
## 8858 Multi-Product Counterparty Guaranty
## 8859 Multi-Product Counterparty Guaranty
## 8860 Multi-Product Counterparty Guaranty
## 8861 Multi-Product Counterparty Guaranty
## 8862 Multi-Product Counterparty Guaranty
## 8863 Multi-Product Counterparty Guaranty
## 8864 Multi-Product Counterparty Guaranty
## 8865 Multi-Product Counterparty Guaranty
## 8866 Multi-Product Counterparty Guaranty
## 8867 Multi-Product Counterparty Guaranty
## 8868 Multi-Product Counterparty Guaranty
## 8869 Multi-Product Counterparty Guaranty
## 8870 Multi-Product Counterparty Guaranty
## 8871 Multi-Product Counterparty Guaranty
## 8872 Multi-Product Counterparty Guaranty
## 8873 Multi-Product Counterparty Guaranty
## 8874 Multi-Product Counterparty Guaranty
## 8875 Multi-Product Counterparty Guaranty
## 8876 Multi-Product Counterparty Guaranty
## 8877 Multi-Product Counterparty Guaranty
## 8878 Multi-Product Counterparty Guaranty
## 8879 Multi-Product Counterparty Guaranty
## 8880 Multi-Product Counterparty Guaranty
## 8881 Multi-Product Counterparty Guaranty
## 8882 Multi-Product Counterparty Guaranty
## 8883 Multi-Product Counterparty Guaranty
## 8884 Multi-Product Counterparty Guaranty
## 8885 Multi-Product Counterparty Guaranty
## 8886 Multi-Product Counterparty Guaranty
## 8887 Multi-Product Counterparty Guaranty
## 8888 Multi-Product Counterparty Guaranty
## 8889 Multi-Product Counterparty Guaranty
## 8890 Multi-Product Counterparty Guaranty
## 8891 Multi-Product Counterparty Guaranty
## 8892 Multi-Product Counterparty Guaranty
## 8893 Multi-Product Counterparty Guaranty
## 8894 Multi-Product Counterparty Guaranty
## 8895 Multi-Product Counterparty Guaranty
## 8896 Multi-Product Counterparty Guaranty
## 8897 Multi-Product Counterparty Guaranty
## 8898 Multi-Product Counterparty Guaranty
## 8899 Multi-Product Counterparty Guaranty
## 8900 Multi-Product Counterparty Guaranty
## 8901 Multi-Product Counterparty Guaranty
## 8902 Multi-Product Counterparty Guaranty
## 8903 Multi-Product Counterparty Guaranty
## 8904 Re: spectrononline.com domain name redirecting to enrononline
## 8905 Re: spectrononline.com domain name redirecting to enrononline
## 8906 Re: spectrononline.com domain name redirecting to enrononline
## 8907 Re: spectrononline.com domain name redirecting to enrononline
## 8908 Re: spectrononline.com domain name redirecting to enrononline
## 8909 Re: spectrononline.com domain name redirecting to enrononline
## 8910 spectrononline.com domain name redirecting to enrononline
## 8911 spectrononline.com domain name redirecting to enrononline
## 8912 Monday Meeting
## 8913 Monday Meeting
## 8914 Monday Meeting
## 8915 Monday Meeting
## 8916 Monday Meeting
## 8917 ICEX
## 8918 Posting agreement
## 8919 Confirmation Letter
## 8920 Confirmation Letter
## 8921 Confirmation Letter
## 8922 Confirmation Letter
## 8923 Confirmation Letter
## 8924 Confirmation Letter
## 8925 Confirmation Letter
## 8926 Confirmation Letter
## 8927 PROJECT DOORSTEP
## 8928 Re: Platts Offensive?
## 8929 Re: Platts Offensive?
## 8930 Re: Platts Offensive?
## 8931 Re: Platts Offensive?
## 8932 Re: Platts Offensive?
## 8933 Re: Platts Offensive?
## 8934 Re: Platts Offensive?
## 8935 Re: Platts Offensive?
## 8936 Re: Platts Offensive?
## 8937 Arbitration/Process Agent Language in Form
## 8938 Arbitration/Process Agent Language in Form
## 8939 Arbitration/Process Agent Language in Form
## 8940 Arbitration/Process Agent Language in Form
## 8941 Arbitration/Process Agent Language in Form
## 8942 Arbitration/Process Agent Language in Form
## 8943 Arbitration/Process Agent Language in Form
## 8944 Arbitration/Process Agent Language in Form
## 8945 Summary of projects
## 8946 Summary of projects
## 8947 Summary of projects
## 8948 Re: Agreements
## 8949 Re: Agreements
## 8950 Re: Agreements
## 8951 Re: Agreements
## 8952 Re: Agreements
## 8953 Re: Agreements
## 8954 Re: Agreements
## 8955 Re: Agreements
## 8956 Re: Agreements
## 8957 Re: Agreements
## 8958 Re: Agreements
## 8959 Re: Agreements
## 8960 Re: Agreements
## 8961 Re: Agreements
## 8962 Re: Prepaid Termsheets
## 8963 Re: Prepaid Termsheets
## 8964 Re: Prepaid Termsheets
## 8965 Seminar and Doctor s Appt.
## 8966 Seminar and Doctor s Appt.
## 8967 Seminar and Doctor s Appt.
## 8968 Seminar and Doctor s Appt.
## 8969 Seminar and Doctor s Appt.
## 8970 Notice of Intent not to Waive Rights
## 8971 Securities Act Reps
## 8972 Securities Act Reps
## 8973 Securities Act Reps
## 8974 Re: Big Six C.A.
## 8975 Big Six C.A.
## 8976 documentation
## 8977 ISDA Securities Rep
## 8978 ISDA Securities Rep
## 8979 ISDA Securities Rep
## 8980 ISDA Securities Rep
## 8981 ISDA Securities Rep
## 8982 ISDA Forms
## 8983 ISDA Forms
## 8984 ISDA Forms
## 8985 ISDA Forms
## 8986 ISDA Forms
## 8987 ISDA Forms
## 8988 ISDA Forms
## 8989 ISDA Forms
## 8990 ISDA Forms
## 8991 ISDA Forms
## 8992 ISDA Forms
## 8993 New Form of LC
## 8994 New Form of LC
## 8995 New Form of LC
## 8996 New Form of LC
## 8997 New Form of LC
## 8998 New Form of LC
## 8999 New Form of LC
## 9000 Re: Enron Online
## 9001 Re: Enron Online
## 9002 Re: Enron Online
## 9003 Midland Cogeneration Venture LP
## 9004 Midland Cogeneration Venture LP
## 9005 Midland Cogeneration Venture LP
## 9006 Re: What happened with the NDA?
## 9007 Re: What happened with the NDA?
## 9008 Re: What happened with the NDA?
## 9009 Re: Follow-up on Friday s meeting
## 9010 Re: Follow-up on Friday s meeting
## 9011 True Quote LOU and Term Sheet
## 9012 True Quote LOU and Term Sheet
## 9013 True Quote LOU and Term Sheet
## 9014 True Quote LOU and Term Sheet
## 9015 True Quote LOU and Term Sheet
## 9016 True Quote LOU and Term Sheet
## 9017 True Quote LOU and Term Sheet
## 9018 Re: Bonneville Power Administration
## 9019 Re: Bonneville Power Administration
## 9020 Re: Bonneville Power Administration
## 9021 Re: Bonneville Power Administration
## 9022 Re: Bonneville Power Administration
## 9023 Re: Bonneville Power Administration
## 9024 Re: GPU Energy Amendment Letter
## 9025 Re: GPU Energy Amendment Letter
## 9026 Re: GPU Energy Amendment Letter
## 9027 New Legal Assistant Training
## 9028 New Legal Assistant Training
## 9029 New Legal Assistant Training
## 9030 Kennecott ETA Amendment Letter
## 9031 Kennecott ETA Amendment Letter
## 9032 Kennecott ETA Amendment Letter
## 9033 Kennecott ETA Amendment Letter
## 9034 Kennecott ETA Amendment Letter
## 9035 GPU Energy Amendment Letter
## 9036 GPU Energy Amendment Letter
## 9037 GPU Energy Amendment Letter
## 9038 GPU Energy Amendment Letter
## 9039 GPU Energy Amendment Letter
## 9040 GPU Energy Amendment Letter
## 9041 GPU Energy Amendment Letter
## 9042 List of Work Items
## 9043 Credit Seminar Issues
## 9044 Credit Seminar Issues
## 9045 Credit Seminar Issues
## 9046 Credit Seminar Issues
## 9047 Credit Seminar Issues
## 9048 Credit Seminar Issues
## 9049 Credit Seminar Issues
## 9050 Credit Seminar Issues
## 9051 Credit Seminar Issues
## 9052 Credit Seminar Issues
## 9053 Credit Seminar Issues
## 9054 Credit Seminar Issues
## 9055 Forms Meeting
## 9056 Forms Meeting
## 9057 Forms Meeting
## 9058 Forms Meeting
## 9059 Forms Meeting
## 9060 Re: kennecott
## 9061 Bonneville Power Administration
## 9062 Bonneville Power Administration
## 9063 Bonneville Power Administration
## 9064 Bonneville Power Administration
## 9065 Bonneville Power Administration
## 9066 Credit Semonar Issues
## 9067 Confirms Issues
## 9068 Confirms Issues
## 9069 Confirms Issues
## 9070 ETA Comments from GPU Energy
## 9071 ETA Comments from GPU Energy
## 9072 ETA Comments from GPU Energy
## 9073 ETA Comments from GPU Energy
## 9074 ETA Comments from GPU Energy
## 9075 Samantha Boyd
## 9076 Samantha Boyd
## 9077 Samantha Boyd
## 9078 Samantha Boyd
## 9079 Samantha Boyd
## 9080 Samantha Boyd
## 9081 Samantha Boyd
## 9082 Samantha Boyd
## 9083 Samantha Boyd
## 9084 Organic Confidentiality Agreement
## 9085 Organic Confidentiality Agreement
## 9086 Organic Confidentiality Agreement
## 9087 Organic Confidentiality Agreement
## 9088 Organic Confidentiality Agreement
## 9089 Organic Confidentiality Agreement
## 9090 Re: kennecott
## 9091 Nonsolicitation provision
## 9092 Nonsolicitation provision
## 9093 kennecott
## 9094 kennecott
## 9095 kennecott
## 9096 Re: Organic Inc. CA Issue
## 9097 Re: Organic Inc. CA Issue
## 9098 Re: Organic Inc. CA Issue
## 9099 Re: Organic Inc. CA Issue
## 9100 Re: Organic Inc. CA Issue
## 9101 Re: Organic Inc. CA Issue
## 9102 Re: Organic Inc. CA Issue
## 9103 Re: EnronOnline.com-REVISED DOCUMENTS
## 9104 Re: Mobile Phone Bill
## 9105 Re: Mobile Phone Bill
## 9106 Re: Mobile Phone Bill
## 9107 Re: Mobile Phone Bill
## 9108 Re: Mobile Phone Bill
## 9109 Re: Mobile Phone Bill
## 9110 Re: Mobile Phone Bill
## 9111 Re: Mobile Phone Bill
## 9112 Enron Field party
## 9113 Re: EnronOnline
## 9114 Upcoming Seminars
## 9115 Upcoming Seminars
## 9116 Upcoming Seminars
## 9117 Upcoming Seminars
## 9118 Upcoming Seminars
## 9119 Annex A Mailout
## 9120 Annex A Mailout
## 9121 Annex A Mailout
## 9122 Annex A Mailout
## 9123 Annex A Mailout
## 9124 Annex A Mailout
## 9125 Annex A Mailout
## 9126 Annex A Mailout
## 9127 Annex A Mailout
## 9128 Annex A Mailout
## 9129 Annex A Mailout
## 9130 Annex A Mailout
## 9131 Annex A Mailout
## 9132 Re: Management Services Agreement
## 9133 Amendment Form
## 9134 Amendment Form
## 9135 Amendment Form
## 9136 Amendment Form
## 9137 Amendment Form
## 9138 Shari s Lunch
## 9139 Shari s Lunch
## 9140 Shari s Lunch
## 9141 Shari s Lunch
## 9142 Shari s Lunch
## 9143 Shari s Lunch
## 9144 Shari s Lunch
## 9145 Shari s Lunch
## 9146 Custody Agreements with BoNY and Chase
## 9147 Custody Agreements with BoNY and Chase
## 9148 Custody Agreements with BoNY and Chase
## 9149 KCS and other Bankrupt Counterparties
## 9150 KCS and other Bankrupt Counterparties
## 9151 KCS and other Bankrupt Counterparties
## 9152 KCS and other Bankrupt Counterparties
## 9153 KCS and other Bankrupt Counterparties
## 9154 KCS and other Bankrupt Counterparties
## 9155 KCS and other Bankrupt Counterparties
## 9156 Request to FERC to Review eCommerce Effects
## 9157 Class Confirmation - Motivating For Results
## 9158 Vacation Info
## 9159 Vacation Info
## 9160 Vacation Info
## 9161 Kaiser Docs
## 9162 Kaiser Docs
## 9163 Kaiser Docs
## 9164 Re: Fortum - ETA
## 9165 Re: Fortum - ETA
## 9166 Re: Fortum - ETA
## 9167 Re: One Password - multiple legal entities for Hedge Funds
## 9168 Re: One Password - multiple legal entities for Hedge Funds
## 9169 Re: One Password - multiple legal entities for Hedge Funds
## 9170 Re: On line contracts
## 9171 March 21st Meeting
## 9172 March 21st Meeting
## 9173 March 21st Meeting
## 9174 March 21st Meeting
## 9175 March 21st Meeting
## 9176 Master Netting Agreement
## 9177 Master Netting Agreement
## 9178 Master Netting Agreement
## 9179 Master Netting Agreement
## 9180 ETA requested Revisions
## 9181 ETA requested Revisions
## 9182 ETA requested Revisions
## 9183 Followup
## 9184 Followup
## 9185 Revised Annex A
## 9186 Revised Annex A
## 9187 Revised Annex A
## 9188 Revised Annex A
## 9189 Revised Annex A
## 9190 Revised Annex A
## 9191 Revised Annex A
## 9192 Revised Annex A
## 9193 Revised Annex A
## 9194 Revised Annex A
## 9195 Revised Annex A
## 9196 Revised Annex A
## 9197 Annex A Letters
## 9198 Annex A Letters
## 9199 Annex A Letters
## 9200 My Schedule
## 9201 My Schedule
## 9202 My Schedule
## 9203 TXU/Eastern - ETA comfort letter
## 9204 Documents
## 9205 Documents
## 9206 Documents
## 9207 Documents
## 9208 Documents
## 9209 Re: TXU/Eastern - ETA comfort letter
## 9210 Re: TXU/Eastern - ETA comfort letter
## 9211 Re: TXU/Eastern - ETA comfort letter
## 9212 Resending Enrollment Form - Executive Impact and Influence
## 9213 EXECUTIVE IMPACT AND INFLUENCE - Office of the Chairman Goal
## 9214 Re: Actions for next Phase 2 off-site
## 9215 Re: Actions for next Phase 2 off-site
## 9216 Re: Actions for next Phase 2 off-site
## 9217 Re: Actions for next Phase 2 off-site
## 9218 Re: Actions for next Phase 2 off-site
## 9219 Re: Actions for next Phase 2 off-site
## 9220 Re: Actions for next Phase 2 off-site
## 9221 Re: Actions for next Phase 2 off-site
## 9222 Re: Actions for next Phase 2 off-site
## 9223 Re: Actions for next Phase 2 off-site
## 9224 Re: Actions for next Phase 2 off-site
## 9225 Re: Actions for next Phase 2 off-site
## 9226 Re: Actions for next Phase 2 off-site
## 9227 Re: Actions for next Phase 2 off-site
## 9228 Re: Actions for next Phase 2 off-site
## 9229 Re: Actions for next Phase 2 off-site
## 9230 Re: Actions for next Phase 2 off-site
## 9231 Re: Actions for next Phase 2 off-site
## 9232 Re: Actions for next Phase 2 off-site
## 9233 Re: Actions for next Phase 2 off-site
## 9234 Re: Actions for next Phase 2 off-site
## 9235 Re: Actions for next Phase 2 off-site
## 9236 Re: Actions for next Phase 2 off-site
## 9237 Re: Actions for next Phase 2 off-site
## 9238 Re: Actions for next Phase 2 off-site
## 9239 Re: Actions for next Phase 2 off-site
## 9240 Re: Actions for next Phase 2 off-site
## 9241 Re: Actions for next Phase 2 off-site
## 9242 Re: Actions for next Phase 2 off-site
## 9243 Re: Actions for next Phase 2 off-site
## 9244 Re: Actions for next Phase 2 off-site
## 9245 Re: Actions for next Phase 2 off-site
## 9246 Re: Actions for next Phase 2 off-site
## 9247 Re: Actions for next Phase 2 off-site
## 9248 Re: Actions for next Phase 2 off-site
## 9249 Re: Actions for next Phase 2 off-site
## 9250 Re: Actions for next Phase 2 off-site
## 9251 EnronOnline Phase 2 Meeting
## 9252 EnronOnline Phase 2 Meeting
## 9253 EnronOnline Phase 2 Meeting
## 9254 EnronOnline Phase 2 Meeting
## 9255 EnronOnline Phase 2 Meeting
## 9256 EnronOnline Phase 2 Meeting
## 9257 EnronOnline Phase 2 Meeting
## 9258 EnronOnline Phase 2 Meeting
## 9259 EnronOnline Phase 2 Meeting
## 9260 EnronOnline Phase 2 Meeting
## 9261 EnronOnline Phase 2 Meeting
## 9262 EnronOnline Phase 2 Meeting
## 9263 EnronOnline Phase 2 Meeting
## 9264 EnronOnline Phase 2 Meeting
## 9265 EnronOnline Phase 2 Meeting
## 9266 EnronOnline Phase 2 Meeting
## 9267 EnronOnline Phase 2 Meeting
## 9268 EnronOnline Phase 2 Meeting
## 9269 EnronOnline Phase 2 Meeting
## 9270 EnronOnline Phase 2 Meeting
## 9271 EnronOnline Phase 2 Meeting
## 9272 EnronOnline Phase 2 Meeting
## 9273 EnronOnline Phase 2 Meeting
## 9274 EnronOnline Phase 2 Meeting
## 9275 EnronOnline Phase 2 Meeting
## 9276 EnronOnline Phase 2 Meeting
## 9277 EnronOnline Phase 2 Meeting
## 9278 EnronOnline Phase 2 Meeting
## 9279 EnronOnline Phase 2 Meeting
## 9280 EnronOnline Phase 2 Meeting
## 9281 EnronOnline Phase 2 Meeting
## 9282 EnronOnline Phase 2 Meeting
## 9283 EnronOnline Phase 2 Meeting
## 9284 EnronOnline Phase 2 Meeting
## 9285 EnronOnline Phase 2 Meeting
## 9286 EnronOnline Phase 2 Meeting
## 9287 EnronOnline Phase 2 Meeting
## 9288 EnronOnline Phase 2 Meeting
## 9289 EnronOnline Phase 2 Meeting
## 9290 EnronOnline Phase 2 Meeting
## 9291 EnronOnline Phase 2 Meeting
## 9292 EnronOnline Phase 2 Meeting
## 9293 EnronOnline Phase 2 Meeting
## 9294 EnronOnline Phase 2 Meeting
## 9295 EnronOnline Phase 2 Meeting
## 9296 EnronOnline Phase 2 Meeting
## 9297 EnronOnline Phase 2 Meeting
## 9298 EnronOnline Phase 2 Meeting
## 9299 EnronOnline Phase 2 Meeting
## 9300 Counterparties that are LP s
## 9301 Counterparties that are LP s
## 9302 Counterparties that are LP s
## 9303 Counterparties that are LP s
## 9304 Counterparties that are LP s
## 9305 Counterparties that are LP s
## 9306 Counterparties that are LP s
## 9307 Counterparties that are LP s
## 9308 Counterparties that are LP s
## 9309 Counterparties that are LP s
## 9310 John Sherriff has asked if we can build autoconfirms into EOL
## 9311 John Sherriff has asked if we can build autoconfirms into EOL
## 9312 John Sherriff has asked if we can build autoconfirms into EOL
## 9313 John Sherriff has asked if we can build autoconfirms into EOL
## 9314 Agency are working for EBS
## 9315 Agency are working for EBS
## 9316 Agency are working for EBS
## 9317 Jr. Achievement
## 9318 Re: letter to reference credits
## 9319 Re: letter to reference credits
## 9320 Re: letter to reference credits
## 9321 Re: letter to reference credits
## 9322 Re: letter to reference credits
## 9323 Re: letter to reference credits
## 9324 Re: letter to reference credits
## 9325 Re: letter to reference credits
## 9326 Re: letter to reference credits
## 9327 Louise Kitchen - out of office
## 9328 Louise Kitchen - out of office
## 9329 Louise Kitchen - out of office
## 9330 Louise Kitchen - out of office
## 9331 Louise Kitchen - out of office
## 9332 Louise Kitchen - out of office
## 9333 Louise Kitchen - out of office
## 9334 Louise Kitchen - out of office
## 9335 Louise Kitchen - out of office
## 9336 Louise Kitchen - out of office
## 9337 Louise Kitchen - out of office
## 9338 Louise Kitchen - out of office
## 9339 Louise Kitchen - out of office
## 9340 Louise Kitchen - out of office
## 9341 Louise Kitchen - out of office
## 9342 Louise Kitchen - out of office
## 9343 Louise Kitchen - out of office
## 9344 Louise Kitchen - out of office
## 9345 Louise Kitchen - out of office
## 9346 Louise Kitchen - out of office
## 9347 Louise Kitchen - out of office
## 9348 Louise Kitchen - out of office
## 9349 Louise Kitchen - out of office
## 9350 Louise Kitchen - out of office
## 9351 Louise Kitchen - out of office
## 9352 Louise Kitchen - out of office
## 9353 Louise Kitchen - out of office
## 9354 Louise Kitchen - out of office
## 9355 Louise Kitchen - out of office
## 9356 Louise Kitchen - out of office
## 9357 Louise Kitchen - out of office
## 9358 Louise Kitchen - out of office
## 9359 Louise Kitchen - out of office
## 9360 talisman
## 9361 talisman
## 9362 talisman
## 9363 Union Oil
## 9364 Union Oil
## 9365 Termination Language for ETA and Password Application
## 9366 Termination Language for ETA and Password Application
## 9367 Online Issues
## 9368 Online Issues
## 9369 Online Issues
## 9370 Re: Bankruptcy Legislation
## 9371 Re: Bankruptcy Legislation
## 9372 Re: Bankruptcy Legislation
## 9373 Tomoorow
## 9374 Tomoorow
## 9375 Tomoorow
## 9376 Tomoorow
## 9377 Tomoorow
## 9378 Re: Your approval is requested
## 9379 Re: Your approval is requested
## 9380 Re: Your approval is requested
## 9381 RSVP Form
## 9382 New phone numbers and whereabouts
## 9383 Re: Consent
## 9384 Re: Consent
## 9385 Re: Consent
## 9386 Re: Consent
## 9387 Re: Consent
## 9388 Re: Consent
## 9389 Re: Consent
## 9390 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9391 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9392 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9393 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9394 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9395 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9396 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9397 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9398 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9399 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9400 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9401 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9402 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9403 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9404 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9405 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9406 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9407 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9408 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9409 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9410 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9411 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9412 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9413 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9414 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9415 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9416 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9417 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9418 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9419 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9420 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9421 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9422 Re: Fortum - ETA
## 9423 Re: Fortum - ETA
## 9424 Re: Fortum - ETA
## 9425 Re: EnronOnline
## 9426 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9427 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9428 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9429 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9430 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9431 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9432 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9433 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9434 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9435 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9436 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9437 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9438 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9439 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9440 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9441 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9442 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9443 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9444 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9445 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9446 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9447 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9448 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9449 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9450 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9451 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9452 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9453 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9454 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9455 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9456 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9457 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9458 Re: Consent
## 9459 Re: Consent
## 9460 Re: Consent
## 9461 Re: Consent
## 9462 Re: Consent
## 9463 Re: Consent
## 9464 Re: Consent
## 9465 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9466 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9467 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9468 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9469 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9470 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9471 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9472 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9473 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9474 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9475 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9476 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9477 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9478 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9479 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9480 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9481 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9482 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9483 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9484 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9485 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9486 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9487 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9488 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9489 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9490 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9491 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9492 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9493 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9494 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9495 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9496 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9497 Re: Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9498 Re: Updated EnronCredit.com release and Q&A
## 9499 Re: Updated EnronCredit.com release and Q&A
## 9500 Re: Updated EnronCredit.com release and Q&A
## 9501 Re: Updated EnronCredit.com release and Q&A
## 9502 Re: Updated EnronCredit.com release and Q&A
## 9503 Re: Updated EnronCredit.com release and Q&A
## 9504 Re: Updated EnronCredit.com release and Q&A
## 9505 Re: Legal Fees re: EnronOnline Credit Derivatives
## 9506 EnronOnline Management Report 3-21-2000
## 9507 EnronOnline Management Report 3-21-2000
## 9508 EnronOnline Management Report 3-21-2000
## 9509 EnronOnline Management Report 3-21-2000
## 9510 EnronOnline Management Report 3-21-2000
## 9511 EnronOnline Management Report 3-21-2000
## 9512 EnronOnline Management Report 3-21-2000
## 9513 EnronOnline Management Report 3-21-2000
## 9514 EnronOnline Management Report 3-21-2000
## 9515 EnronOnline Management Report 3-21-2000
## 9516 EnronOnline Management Report 3-21-2000
## 9517 EnronOnline Management Report 3-21-2000
## 9518 EnronOnline Management Report 3-21-2000
## 9519 EnronOnline Management Report 3-21-2000
## 9520 EnronOnline Management Report 3-21-2000
## 9521 EnronOnline Management Report 3-21-2000
## 9522 EnronOnline Management Report 3-21-2000
## 9523 EnronOnline Management Report 3-21-2000
## 9524 EnronOnline Management Report 3-21-2000
## 9525 EnronOnline Management Report 3-21-2000
## 9526 EnronOnline Management Report 3-21-2000
## 9527 EnronOnline Management Report 3-21-2000
## 9528 EnronOnline Management Report 3-21-2000
## 9529 EnronOnline Management Report 3-21-2000
## 9530 EnronOnline Management Report 3-21-2000
## 9531 EnronOnline Management Report 3-21-2000
## 9532 EnronOnline Management Report 3-21-2000
## 9533 EnronOnline Management Report 3-21-2000
## 9534 EnronOnline Management Report 3-21-2000
## 9535 EnronOnline Management Report 3-21-2000
## 9536 EnronOnline Management Report 3-21-2000
## 9537 EnronOnline Management Report 3-21-2000
## 9538 EnronOnline Phase 2 Meeting
## 9539 EnronOnline Phase 2 Meeting
## 9540 EnronOnline Phase 2 Meeting
## 9541 EnronOnline Phase 2 Meeting
## 9542 EnronOnline Phase 2 Meeting
## 9543 EnronOnline Phase 2 Meeting
## 9544 EnronOnline Phase 2 Meeting
## 9545 EnronOnline Phase 2 Meeting
## 9546 EnronOnline Phase 2 Meeting
## 9547 EnronOnline Phase 2 Meeting
## 9548 EnronOnline Phase 2 Meeting
## 9549 EnronOnline Phase 2 Meeting
## 9550 EnronOnline Phase 2 Meeting
## 9551 EnronOnline Phase 2 Meeting
## 9552 EnronOnline Phase 2 Meeting
## 9553 EnronOnline Phase 2 Meeting
## 9554 EnronOnline Phase 2 Meeting
## 9555 EnronOnline Phase 2 Meeting
## 9556 EnronOnline Phase 2 Meeting
## 9557 EnronOnline Phase 2 Meeting
## 9558 EnronOnline Phase 2 Meeting
## 9559 EnronOnline Phase 2 Meeting
## 9560 EnronOnline Phase 2 Meeting
## 9561 EnronOnline Phase 2 Meeting
## 9562 EnronOnline Phase 2 Meeting
## 9563 EnronOnline Phase 2 Meeting
## 9564 EnronOnline Phase 2 Meeting
## 9565 EnronOnline Phase 2 Meeting
## 9566 EnronOnline Phase 2 Meeting
## 9567 EnronOnline Phase 2 Meeting
## 9568 EnronOnline Phase 2 Meeting
## 9569 EnronOnline Phase 2 Meeting
## 9570 EnronOnline Phase 2 Meeting
## 9571 EnronOnline Phase 2 Meeting
## 9572 EnronOnline Phase 2 Meeting
## 9573 EnronOnline Phase 2 Meeting
## 9574 Re: Louise Kitchen - out of office
## 9575 Re: Louise Kitchen - out of office
## 9576 Re: Louise Kitchen - out of office
## 9577 Re: Louise Kitchen - out of office
## 9578 Re: Louise Kitchen - out of office
## 9579 Re: Louise Kitchen - out of office
## 9580 Re: Louise Kitchen - out of office
## 9581 Re: Louise Kitchen - out of office
## 9582 Re: Louise Kitchen - out of office
## 9583 Re: Louise Kitchen - out of office
## 9584 Re: Louise Kitchen - out of office
## 9585 Re: Louise Kitchen - out of office
## 9586 Re: Louise Kitchen - out of office
## 9587 Re: Louise Kitchen - out of office
## 9588 Re: Louise Kitchen - out of office
## 9589 Re: Louise Kitchen - out of office
## 9590 Re: Louise Kitchen - out of office
## 9591 Re: Louise Kitchen - out of office
## 9592 Re: Louise Kitchen - out of office
## 9593 Re: Louise Kitchen - out of office
## 9594 Re: Louise Kitchen - out of office
## 9595 Re: Louise Kitchen - out of office
## 9596 Re: Louise Kitchen - out of office
## 9597 Re: Louise Kitchen - out of office
## 9598 Re: Louise Kitchen - out of office
## 9599 Re: Louise Kitchen - out of office
## 9600 Re: Louise Kitchen - out of office
## 9601 Re: Louise Kitchen - out of office
## 9602 Re: Louise Kitchen - out of office
## 9603 Re: Louise Kitchen - out of office
## 9604 Re: Louise Kitchen - out of office
## 9605 Re: Louise Kitchen - out of office
## 9606 Re: Louise Kitchen - out of office
## 9607 Re: Louise Kitchen - out of office
## 9608 Re: Louise Kitchen - out of office
## 9609 Re: Louise Kitchen - out of office
## 9610 Re: Louise Kitchen - out of office
## 9611 Re: Louise Kitchen - out of office
## 9612 Re: Louise Kitchen - out of office
## 9613 Re: Louise Kitchen - out of office
## 9614 Re: Louise Kitchen - out of office
## 9615 Re: Louise Kitchen - out of office
## 9616 Re: Louise Kitchen - out of office
## 9617 Re: Louise Kitchen - out of office
## 9618 Re: Louise Kitchen - out of office
## 9619 Re: Louise Kitchen - out of office
## 9620 Re: Louise Kitchen - out of office
## 9621 Re: Louise Kitchen - out of office
## 9622 Re: Louise Kitchen - out of office
## 9623 Actions for next Phase 2 off-site
## 9624 Actions for next Phase 2 off-site
## 9625 Actions for next Phase 2 off-site
## 9626 Actions for next Phase 2 off-site
## 9627 Actions for next Phase 2 off-site
## 9628 Actions for next Phase 2 off-site
## 9629 Actions for next Phase 2 off-site
## 9630 Actions for next Phase 2 off-site
## 9631 Actions for next Phase 2 off-site
## 9632 Actions for next Phase 2 off-site
## 9633 Actions for next Phase 2 off-site
## 9634 Actions for next Phase 2 off-site
## 9635 Actions for next Phase 2 off-site
## 9636 Actions for next Phase 2 off-site
## 9637 Actions for next Phase 2 off-site
## 9638 Actions for next Phase 2 off-site
## 9639 Actions for next Phase 2 off-site
## 9640 Actions for next Phase 2 off-site
## 9641 Actions for next Phase 2 off-site
## 9642 Actions for next Phase 2 off-site
## 9643 Re: Press Release
## 9644 Re: Press Release
## 9645 Re: Press Release
## 9646 Re: Press Release
## 9647 Re: Press Release
## 9648 Re: Contact information
## 9649 Eastern - Summary of their Response to PA/ETA
## 9650 Eastern - Summary of their Response to PA/ETA
## 9651 Eastern - Summary of their Response to PA/ETA
## 9652 Eastern - Summary of their Response to PA/ETA
## 9653 Eastern - Summary of their Response to PA/ETA
## 9654 E Credit Trading
## 9655 Re: EOL Access Denied - Form Letter
## 9656 Re: EOL Access Denied - Form Letter
## 9657 Re: EOL Access Denied - Form Letter
## 9658 Re: EOL Access Denied - Form Letter
## 9659 Re: EOL Access Denied - Form Letter
## 9660 Re: EOL Access Denied - Form Letter
## 9661 Re: EOL Access Denied - Form Letter
## 9662 Comments from the Legal department
## 9663 Comments from the Legal department
## 9664 Comments from the Legal department
## 9665 Re: iFerc Sumas
## 9666 Re: iFerc Sumas
## 9667 Re: iFerc Sumas
## 9668 Re: iFerc Sumas
## 9669 Re: iFerc Sumas
## 9670 E-Commerce Team
## 9671 E-Commerce Team
## 9672 E-Commerce Team
## 9673 Customer Data
## 9674 Customer Data
## 9675 Customer Data
## 9676 Customer Data
## 9677 Customer Data
## 9678 Customer Data
## 9679 Customer Data
## 9680 Customer Data
## 9681 Customer Data
## 9682 Customer Data
## 9683 Customer Data
## 9684 Customer Data
## 9685 Getting started guide
## 9686 Getting started guide
## 9687 Getting started guide
## 9688 Getting started guide
## 9689 Getting started guide
## 9690 Getting started guide
## 9691 Getting started guide
## 9692 Getting started guide
## 9693 Getting started guide
## 9694 Getting started guide
## 9695 Re: Revised GTCs
## 9696 Re: Revised GTCs
## 9697 Re: Enron Online
## 9698 Re: Enron Online
## 9699 Re: Enron Online
## 9700 Re: Enron Online
## 9701 Re: Enron Online
## 9702 Re: Enron Online
## 9703 Re: Enron Online
## 9704 Re: Enron Online
## 9705 Re: Enron Online
## 9706 Re: Enron Online
## 9707 Re: Enron Online
## 9708 Re: Enron Online
## 9709 Re: Enron Online
## 9710 Re: Enron Online
## 9711 Re: Enron Online
## 9712 Re: FINAL AGENDA FOR LEGAL SIGN OFF MEETING - MONDAY 9TH AUGUST
## 9713 Re: FINAL AGENDA FOR LEGAL SIGN OFF MEETING - MONDAY 9TH AUGUST
## 9714 Re: FINAL AGENDA FOR LEGAL SIGN OFF MEETING - MONDAY 9TH AUGUST
## 9715 Re: FINAL AGENDA FOR LEGAL SIGN OFF MEETING - MONDAY 9TH AUGUST
## 9716 Re: FINAL AGENDA FOR LEGAL SIGN OFF MEETING - MONDAY 9TH AUGUST
## 9717 Re: FINAL AGENDA FOR LEGAL SIGN OFF MEETING - MONDAY 9TH AUGUST
## 9718 Re: FINAL AGENDA FOR LEGAL SIGN OFF MEETING - MONDAY 9TH AUGUST
## 9719 Re: FINAL AGENDA FOR LEGAL SIGN OFF MEETING - MONDAY 9TH AUGUST
## 9720 Re: FINAL AGENDA FOR LEGAL SIGN OFF MEETING - MONDAY 9TH AUGUST
## 9721 Re: FINAL AGENDA FOR LEGAL SIGN OFF MEETING - MONDAY 9TH AUGUST
## 9722 Re: FINAL AGENDA FOR LEGAL SIGN OFF MEETING - MONDAY 9TH AUGUST
## 9723 GTC
## 9724 GTC
## 9725 GTC
## 9726 Re: PA/ETA
## 9727 Re: PA/ETA
## 9728 Re: PA/ETA
## 9729 Re: PA/ETA
## 9730 Re: PA/ETA
## 9731 Re: PA/ETA
## 9732 Re: PA/ETA
## 9733 PA/ETA
## 9734 PA/ETA
## 9735 PA/ETA
## 9736 PA/ETA
## 9737 PA/ETA
## 9738 Hello - Monday
## 9739 Most recent Online presentation for information
## 9740 Most recent Online presentation for information
## 9741 Most recent Online presentation for information
## 9742 Most recent Online presentation for information
## 9743 Most recent Online presentation for information
## 9744 Most recent Online presentation for information
## 9745 Most recent Online presentation for information
## 9746 Most recent Online presentation for information
## 9747 Most recent Online presentation for information
## 9748 Most recent Online presentation for information
## 9749 Most recent Online presentation for information
## 9750 Most recent Online presentation for information
## 9751 Most recent Online presentation for information
## 9752 Most recent Online presentation for information
## 9753 Most recent Online presentation for information
## 9754 Most recent Online presentation for information
## 9755 Most recent Online presentation for information
## 9756 Most recent Online presentation for information
## 9757 Most recent Online presentation for information
## 9758 Most recent Online presentation for information
## 9759 Most recent Online presentation for information
## 9760 Most recent Online presentation for information
## 9761 Most recent Online presentation for information
## 9762 Most recent Online presentation for information
## 9763 Most recent Online presentation for information
## 9764 Most recent Online presentation for information
## 9765 Most recent Online presentation for information
## 9766 Most recent Online presentation for information
## 9767 Copyright Notice for EnronOnline
## 9768 Copyright Notice for EnronOnline
## 9769 Copyright Notice for EnronOnline
## 9770 Copyright Notice for EnronOnline
## 9771 Copyright Notice for EnronOnline
## 9772 Re: Internet Trading - partial online registration rider
## 9773 Re: Internet Trading - partial online registration rider
## 9774 Re: Internet Trading - partial online registration rider
## 9775 Re: Internet Trading - partial online registration rider
## 9776 Re: Internet Trading - partial online registration rider
## 9777 Re: Internet Trading - partial online registration rider
## 9778 Re: Internet Trading - partial online registration rider
## 9779 Re: Internet Trading - partial online registration rider
## 9780 Re: Internet Trading - partial online registration rider
## 9781 Re: Internet Trading - partial online registration rider
## 9782 Re: Internet Trading - partial online registration rider
## 9783 Re: Internet Trading - partial online registration rider
## 9784 Re: Internet Trading - partial online registration rider
## 9785 Re: Internet Trading - partial online registration rider
## 9786 Re: Internet Trading - partial online registration rider
## 9787 Re: ROETA
## 9788 Re: ROETA
## 9789 Re: ROETA
## 9790 Re: ROETA
## 9791 Re: ROETA
## 9792 Re: ROETA
## 9793 Re: ROETA
## 9794 Re: ROETA
## 9795 Re: ROETA
## 9796 Re: ROETA
## 9797 Re: ROETA
## 9798 Re: ROETA
## 9799 Re: ROETA
## 9800 Re: ROETA
## 9801 Re: ROETA
## 9802 Re: ROETA
## 9803 Re: ROETA
## 9804 Re: ROETA
## 9805 Re: ROETA
## 9806 Re: ROETA
## 9807 Re: ROETA
## 9808 EnronOnline Presentation - 8th July 1999
## 9809 EnronOnline Presentation - 8th July 1999
## 9810 EnronOnline Presentation - 8th July 1999
## 9811 EnronOnline Presentation - 8th July 1999
## 9812 EnronOnline Presentation - 8th July 1999
## 9813 EnronOnline Presentation - 8th July 1999
## 9814 EnronOnline Presentation - 8th July 1999
## 9815 EnronOnline Presentation - 8th July 1999
## 9816 EnronOnline Presentation - 8th July 1999
## 9817 EnronOnline Presentation - 8th July 1999
## 9818 EnronOnline Presentation - 8th July 1999
## 9819 EnronOnline Presentation - 8th July 1999
## 9820 EnronOnline Presentation - 8th July 1999
## 9821 EnronOnline Presentation - 8th July 1999
## 9822 EnronOnline Presentation - 8th July 1999
## 9823 EnronOnline Presentation - 8th July 1999
## 9824 EnronOnline Presentation - 8th July 1999
## 9825 EnronOnline Presentation - 8th July 1999
## 9826 EnronOnline Presentation - 8th July 1999
## 9827 EnronOnline Presentation - 8th July 1999
## 9828 EnronOnline Presentation - 8th July 1999
## 9829 RE: Registration Process Questions
## 9830 RE: Registration Process Questions
## 9831 Registration Process Questions
## 9832 Registration Process Questions
## 9833 Registration Process Questions
## 9834 Registration Process Questions
## 9835 Registration Process Questions
## 9836 Registration Process Questions
## 9837 Registration Process Questions
## 9838 Registration Process Questions
## 9839 Registration Process Questions
## 9840 Registration Process Questions
## 9841 Registration Process Questions
## 9842 Registration Process Questions
## 9843 Registration Process Questions
## 9844 Registration Process Questions
## 9845 Registration Process Questions
## 9846 Re: Internet
## 9847 Re: Legal Meeting - 8 June 1999
## 9848 Re: Legal Meeting - 8 June 1999
## 9849 Re: Legal Meeting - 8 June 1999
## 9850 Re: Legal Meeting - 8 June 1999
## 9851 Re: Legal Meeting - 8 June 1999
## 9852 Re: Legal Meeting - 8 June 1999
## 9853 Re: Legal Meeting - 8 June 1999
## 9854 Re: Legal Meeting - 8 June 1999
## 9855 Re: Legal Meeting - 8 June 1999
## 9856 Re: Legal Meeting - 8 June 1999
## 9857 Re: Legal Meeting - 8 June 1999
## 9858 Re: Legal Meeting - 8 June 1999
## 9859 Re: Legal Meeting - 8 June 1999
## 9860 FYI
## 9861 FYI
## 9862 Re: Access and Trading Agreements
## 9863 Re: Access and Trading Agreements
## 9864 Re: Access and Trading Agreements
## 9865 Re: Access and Trading Agreements
## 9866 Re: Access and Trading Agreements
## 9867 Re: Access and Trading Agreements
## 9868 Re: Access and Trading Agreements
## 9869 Re: Access and Trading Agreements
## 9870 Re: Access and Trading Agreements
## 9871 Re: Access and Trading Agreements
## 9872 Re: Access and Trading Agreements
## 9873 Re: EnronOnline.com-REVISED DOCUMENTS
## 9874 RE: Product type approval - US Gas Phy Fwd Firm < or = 1Mo (INTERNAL ONLY)
## 9875 RE: Product type approval - US Gas Phy Fwd Firm < or = 1Mo (INTERNAL ONLY)
## 9876 FW: Product Type approval - (CAN Gas Phy Fwd Firm East Spd < or = 1Mo)
## 9877 FW: Product Type approval - (CAN Gas Phy Fwd Firm East Spd < or = 1Mo)
## 9878 FW: Product Type approval - (CAN Gas Phy Fwd Firm East Spd < or = 1Mo)
## 9879 FW: 2 New product types approval needed (CAN Gas Phy Index Firm East)
## 9880 FW: 2 New product types approval needed (CAN Gas Phy Index Firm East)
## 9881 FW: 2 New product types approval needed (CAN Gas Phy Index Firm East)
## 9882 RE: CAN phy index EAST product
## 9883 RE: CAN phy index EAST product
## 9884 RE: CAN phy index EAST product
## 9885 EOL Amendment
## 9886 EOL Amendment
## 9887 EOL Amendment
## 9888 EOL Amendment
## 9889 EOL Amendment
## 9890 BP EOL Amendment
## 9891 BP EOL Amendment
## 9892 BP EOL Amendment
## 9893 EOL Amendment for Dynegy Companies
## 9894 EOL Amendment for Dynegy Companies
## 9895 EOL Amendment for Dynegy Companies
## 9896 EOL Amendment for Dynegy Companies
## 9897 EOL Amendment for Dynegy Companies
## 9898 Entergy-Koch Trading LP
## 9899 Entergy-Koch Trading LP
## 9900 Entergy-Koch Trading LP
## 9901 Latest Update
## 9902 Susan Bailey
## 9903 Susan Bailey
## 9904 Susan Bailey
## 9905 Susan Bailey
## 9906 Susan Bailey
## 9907 Susan Bailey
## 9908 Susan Bailey
## 9909 Susan Bailey
## 9910 Susan Bailey
## 9911 Susan Bailey
## 9912 Susan Bailey
## 9913 Susan Bailey
## 9914 Susan Bailey
## 9915 Susan Bailey
## 9916 Appointment
## 9917 Appointment
## 9918 Appointment
## 9919 Appointment
## 9920 Appointment
## 9921 Appointment
## 9922 Appointment
## 9923 Appointment
## 9924 Appointment
## 9925 Appointment
## 9926 Appointment
## 9927 Appointment
## 9928 Appointment
## 9929 Appointment
## 9930 Appointment
## 9931 Appointment
## 9932 Appointment
## 9933 Appointment
## 9934 Appointment
## 9935 Appointment
## 9936 Appointment
## 9937 Appointment
## 9938 Appointment
## 9939 Appointment
## 9940 Appointment
## 9941 Appointment
## 9942 Appointment
## 9943 Appointment
## 9944 Appointment
## 9945 Appointment
## 9946 Appointment
## 9947 Appointment
## 9948 Appointment
## 9949 Appointment
## 9950 Appointment
## 9951 Appointment
## 9952 Appointment
## 9953 Appointment
## 9954 Early Departure
## 9955 Early Departure
## 9956 Early Departure
## 9957 Early Departure
## 9958 Early Departure
## 9959 Early Departure
## 9960 Early Departure
## 9961 Early Departure
## 9962 Early Departure
## 9963 Early Departure
## 9964 Early Departure
## 9965 Early Departure
## 9966 Early Departure
## 9967 Early Departure
## 9968 Early Departure
## 9969 Early Departure
## 9970 Early Departure
## 9971 Early Departure
## 9972 Matt Baker
## 9973 Jessica Bishop
## 9974 Timothy Cohen
## 9975 Bill Freije
## 9976 Brandon Rigney
## 9977 Holly Keiser
## 9978 DeWitt Godfrey
## 9979 Veronica Brock
## 9980 Timothy Taylor
## 9981 RE: HGA rule
## 9982 updated
## 9983 updated
## 9984 updated
## 9985 updated
## 9986 updated
## 9987 RE: expense report
## 9988 FW: North American Energy and Developing Proucts Committee Conference\t Call
## 9989 FW: Support Services for ENA
## 9990 RE: GTC Change for removal of HPL language
## 9991 RE: GTC Change for removal of HPL language
## 9992 RE: GTC Change for removal of HPL language
## 9993 RE: GTC Change for removal of HPL language
## 9994 RE: GTC Change for removal of HPL language
## 9995 FW: Last Year trades - Top 50 counterparties - US/Canadian Gas/Power
## 9996 FW: IntercontinentalExchange Amended Participant Agreement
## 9997 RE: Master Netting Projects
## 9998 RE: Master Netting Projects
## 9999 RE: Master Netting Projects
## 10000 RE: Master Netting Projects
## 10001 Waste Management
## 10002 Waste Management
## 10003 Waste Management
## 10004 Waste Management
## 10005 Waste Management
## 10006 Waste Management
## 10007 Waste Management
## 10008 Waste Management
## 10009 Waste Management
## 10010 Waste Management
## 10011 Waste Management
## 10012 Waste Management
## 10013 Waste Management
## 10014 Waste Management
## 10015 FW: Index Language-physical and financial power
## 10016 FW: Index Language-physical and financial power
## 10017 FW: Index Language-physical and financial power
## 10018 FW: Index Language-physical and financial power
## 10019 FW: Index Language-physical and financial power
## 10020 RE: Thoughts on the world of energy (OSX $77, XNG $183, XOI 496)
## 10021 RE:
## 10022 RE: Re: So....?
## 10023 How did it go?
## 10024 RE: Auburn ticket
## 10025 RE: What s happening?
## 10026 RE: Fantasy
## 10027 RE: Fantasy
## 10028 NOx OTR flow control
## 10029 NOx SIP CALL 2004 Balance
## 10030 agreement with EEA
## 10031 agreement with EEA
## 10032 FW: FedEx package
## 10033 RE: FedEx package
## 10034 RE: EOTT Option Agreement
## 10035 Auburn ticket
## 10036 LOVE YOU
## 10037 RE: last game
## 10038 Auburn tickets
## 10039 address
## 10040 picks
## 10041 some info
## 10042 RE:
## 10043 RE:
## 10044 RE: tomorrow
## 10045 tomorrow
## 10046 RE:
## 10047 RE:
## 10048 RE:
## 10049 RE:
## 10050 FW: COP-7 Outcomes Conference Call, Nov. 20.....
## 10051 RE:
## 10052 RE:
## 10053 RE:
## 10054 RE:
## 10055 RE:
## 10056 meeting
## 10057 RE:
## 10058 RE: GEA Rainey
## 10059 RE: referee question
## 10060 RE: GEA Rainey
## 10061 RE: where are u?
## 10062 RE: GEA Rainey
## 10063 RE: where are u?
## 10064 where are u?
## 10065 check out indoor soccer
## 10066 RE: GEA Rainey
## 10067 thanksgiving
## 10068 RE: thurs
## 10069 RE: thurs
## 10070 thurs
## 10071 RE: GEA Rainey
## 10072 RE: GEA Rainey
## 10073 picks
## 10074 RE: FedEx package
## 10075 presentation
## 10076 RE: Financial Confirms
## 10077 RE: phone numbers
## 10078 RE: Mark Taylor s Visit to London
## 10079 RE: STANDARDIZATION OF TANKER FREIGHT WORDING
## 10080 RE: STANDARDIZATION OF TANKER FREIGHT WORDING
## 10081 RE: STANDARDIZATION OF TANKER FREIGHT WORDING
## 10082 RE: STANDARDIZATION OF TANKER FREIGHT WORDING
## 10083 RE: STANDARDIZATION OF TANKER FREIGHT WORDING
## 10084 FERC questions
## 10085 FERC questions
## 10086 FERC questions
## 10087 FERC questions
## 10088 FERC questions
## 10089 Swap Comments
## 10090 Swap Comments
## 10091 Swap Comments
## 10092 Swap Comments
## 10093 Swap Comments
## 10094 RE: Preparing for the upcoming VP & MD PRC meeting
## 10095 FW: Knauf Fiber Glass Transaction
## 10096 Welcome Back
## 10097 RE: SG and UK Tanker Freight
## 10098 RE: SG and UK Tanker Freight
## 10099 RE: SG and UK Tanker Freight
## 10100 RE: SG and UK Tanker Freight
## 10101 RE: SG and UK Tanker Freight
## 10102 RE: SG and UK Tanker Freight
## 10103 RE: SG and UK Tanker Freight
## 10104 RE: SG and UK Tanker Freight
## 10105 RE: SG and UK Tanker Freight
## 10106 RE: Put option
## 10107 Checks
## 10108 June 25 Committee Meeting
## 10109 June 25 Committee Meeting
## 10110 June 25 Committee Meeting
## 10111 Seat Preferences
## 10112 RE: Question re Sithe swap document
## 10113 Floods
## 10114 FW: (01-199) Launch date set for coal futures trading
## 10115 FW: (01-199) Launch date set for coal futures trading
## 10116 RE: Form
## 10117 RE: Revised language for Crude WTI Fin Spd
## 10118 FW: ISDA Cross-Agreement Bridge
## 10119 Calendar Access
## 10120 Calendar Access
## 10121 Calendar Access
## 10122 Calendar Access
## 10123 Calendar Access
## 10124 Calendar Access
## 10125 Calendar Access
## 10126 Calendar Access
## 10127 Calendar Access
## 10128 Calendar Access
## 10129 Calendar Access
## 10130 Calendar Access
## 10131 FW: Flat Screen Monitor
## 10132 FW: Flat Screen Computer
## 10133 FW: Computer Monitor
## 10134 FW: Knauf
## 10135 RE: June Newsletter - NA Energy Committee
## 10136 RE: June Newsletter - NA Energy Committee
## 10137 RE: June Newsletter - NA Energy Committee
## 10138 RE: TOCOM - CEL 145-5 METI Notice - New Matter "TOCOM"
## 10139 RE: TOCOM - CEL 145-5 METI Notice - New Matter "TOCOM"
## 10140 RE: TOCOM - CEL 145-5 METI Notice - New Matter "TOCOM"
## 10141 Re: News Ticker for US Gas Phy - Texas Products
## 10142 RE: PLEASE READ
## 10143 Re: Fw: Houston has a problem.
## 10144 Re: SMARTPages verification. Refcode=_V1.0_1qxbLr_2I.FV0
## 10145 RE: PLEASE READ
## 10146 Re: Agenda for FERC Meeting RE: EOL
## 10147 Another Article
## 10148 Article
## 10149 Broadband
## 10150 Re: You are right
## 10151 commodity acct
## 10152 Re: Flood
## 10153 Re: A/C Arrangements
## 10154 Financial Trading Agreements database
## 10155 Re: PLEASE READ
## 10156 RE: PLEASE READ
## 10157 RE: PLEASE READ
## 10158 PLEASE READ
## 10159 Re: 2- SURVEY/INFORMATION EMAIL
## 10160 (01-191) EXCHANGE TO SUBSTITUTE POSITION ACCOUNTABILITY REQUIREMENTS FOR POSITION LIMIT RULES
## 10161 FW: ISDA
## 10162 BVI Photos
## 10163 Graduation Photos
## 10164 Graduation Photos
## 10165 Graduation Photos
## 10166 BVI Photos
## 10167 BVI Photos
## 10168 Re: Margin Calls - Financial
## 10169 Re: Margin Calls - Financial
## 10170 Re: Margin Calls - Financial
## 10171 Re: Margin Calls - Financial
## 10172 Re: Margin Calls - Financial
## 10173 Re: Margin Calls - Financial
## 10174 Re: Margin Calls - Financial
## 10175 The Bitter End
## 10176 The Bitter End
## 10177 FW: ENRON ON LINE - PETROLEUM TANKER FREIGHT
## 10178 FW: ENRON ON LINE - PETROLEUM TANKER FREIGHT
## 10179
## 10180 Letters of Credit; Preference; Swap Transactions
## 10181 Letters of Credit; Preference; Swap Transactions
## 10182 Letters of Credit; Preference; Swap Transactions
## 10183 Letters of Credit; Preference; Swap Transactions
## 10184 Letters of Credit; Preference; Swap Transactions
## 10185 Test
## 10186 New Computer Screen
## 10187 eService Online improvements
## 10188 ISDA European Energy Conference Agenda
## 10189 ISDA European Energy Conference Agenda
## 10190 ISDA European Energy Conference Agenda
## 10191 ISDA European Energy Conference Agenda
## 10192 ISDA European Energy Conference Agenda
## 10193 ISDA European Energy Conference Agenda
## 10194 ISDA European Energy Conference Agenda
## 10195 ISDA European Energy Conference Agenda
## 10196 ISDA European Energy Conference Agenda
## 10197 ISDA European Energy Conference Agenda
## 10198 ISDA European Energy Conference Agenda
## 10199 ISDA European Energy Conference Agenda
## 10200 ISDA European Energy Conference Agenda
## 10201 e-mail address
## 10202 e-mail address
## 10203 CONFIDENTIAL BUSINESS PROPOSAL
## 10204 CONFIDENTIAL BUSINESS PROPOSAL
## 10205 Graham s leaving date
## 10206
## 10207
## 10208 RE: FedEx package
## 10209 happy anniversary
## 10210 Noble Gas Marketing, Inc.
## 10211 Noble Gas Marketing, Inc.
## 10212 Noble Gas Marketing, Inc.
## 10213 Noble Gas Marketing, Inc.
## 10214 Noble Gas Marketing, Inc.
## 10215 Noble Gas Marketing, Inc.
## 10216 Noble Gas Marketing, Inc.
## 10217 Noble Gas Marketing, Inc.
## 10218 Noble Gas Marketing, Inc.
## 10219 Noble Gas Marketing, Inc.
## 10220 Noble Gas Marketing, Inc.
## 10221 Noble Gas Marketing, Inc.
## 10222 Noble Gas Marketing, Inc.
## 10223 Noble Gas Marketing, Inc.
## 10224 Noble Gas Marketing, Inc.
## 10225 Noble Gas Marketing, Inc.
## 10226 Noble Gas Marketing, Inc.
## 10227 Noble Gas Marketing, Inc.
## 10228 Noble Gas Marketing, Inc.
## 10229 Noble Gas Marketing, Inc.
## 10230 Noble Gas Marketing, Inc.
## 10231 Noble Gas Marketing, Inc.
## 10232 Noble Gas Marketing, Inc.
## 10233 Noble Gas Marketing, Inc.
## 10234 Noble Gas Marketing, Inc.
## 10235 Noble Gas Marketing, Inc.
## 10236 Noble Gas Marketing, Inc.
## 10237 Noble Gas Marketing, Inc.
## 10238 Noble Gas Marketing, Inc.
## 10239 Noble Gas Marketing, Inc.
## 10240 Noble Gas Marketing, Inc.
## 10241 Noble Gas Marketing, Inc.
## 10242 Noble Gas Marketing, Inc.
## 10243 Noble Gas Marketing, Inc.
## 10244 Noble Gas Marketing, Inc.
## 10245 Noble Gas Marketing, Inc.
## 10246 Noble Gas Marketing, Inc.
## 10247 Noble Gas Marketing, Inc.
## 10248 Noble Gas Marketing, Inc.
## 10249 Noble Gas Marketing, Inc.
## 10250 Noble Gas Marketing, Inc.
## 10251 Noble Gas Marketing, Inc.
## 10252 Noble Gas Marketing, Inc.
## 10253 Noble Gas Marketing, Inc.
## 10254 Noble Gas Marketing, Inc.
## 10255 Noble Gas Marketing, Inc.
## 10256 Noble Gas Marketing, Inc.
## 10257 Noble Gas Marketing, Inc.
## 10258 Noble Gas Marketing, Inc.
## 10259 Noble Gas Marketing, Inc.
## 10260 Noble Gas Marketing, Inc.
## 10261 Noble Gas Marketing, Inc.
## 10262 Noble Gas Marketing, Inc.
## 10263 Noble Gas Marketing, Inc.
## 10264 Noble Gas Marketing, Inc.
## 10265 Noble Gas Marketing, Inc.
## 10266 Noble Gas Marketing, Inc.
## 10267 Noble Gas Marketing, Inc.
## 10268 Noble Gas Marketing, Inc.
## 10269 Noble Gas Marketing, Inc.
## 10270 Noble Gas Marketing, Inc.
## 10271 Noble Gas Marketing, Inc.
## 10272 Noble Gas Marketing, Inc.
## 10273 Noble Gas Marketing, Inc.
## 10274 Noble Gas Marketing, Inc.
## 10275 Noble Gas Marketing, Inc.
## 10276 Noble Gas Marketing, Inc.
## 10277 Noble Gas Marketing, Inc.
## 10278 Noble Gas Marketing, Inc.
## 10279 Noble Gas Marketing, Inc.
## 10280 Noble Gas Marketing, Inc.
## 10281 Noble Gas Marketing, Inc.
## 10282 Noble Gas Marketing, Inc.
## 10283 EnergyUSA-TPC
## 10284 EnergyUSA-TPC
## 10285 EnergyUSA-TPC
## 10286 EnergyUSA-TPC
## 10287 EnergyUSA-TPC
## 10288 EnergyUSA-TPC
## 10289 EnergyUSA-TPC
## 10290 EnergyUSA-TPC
## 10291 EnergyUSA-TPC
## 10292 EnergyUSA-TPC
## 10293 EnergyUSA-TPC
## 10294 EnergyUSA-TPC
## 10295 EnergyUSA-TPC
## 10296 EnergyUSA-TPC
## 10297 EnergyUSA-TPC
## 10298 EnergyUSA-TPC
## 10299 EnergyUSA-TPC
## 10300 EnergyUSA-TPC
## 10301 EnergyUSA-TPC
## 10302 EnergyUSA-TPC
## 10303 EnergyUSA-TPC
## 10304 EnergyUSA-TPC
## 10305 EnergyUSA-TPC
## 10306 EnergyUSA-TPC
## 10307 EnergyUSA-TPC
## 10308 EnergyUSA-TPC
## 10309 EnergyUSA-TPC
## 10310 EnergyUSA-TPC
## 10311 EnergyUSA-TPC
## 10312 EnergyUSA-TPC
## 10313 EnergyUSA-TPC
## 10314 EnergyUSA-TPC
## 10315 EnergyUSA-TPC
## 10316 EnergyUSA-TPC
## 10317 EnergyUSA-TPC
## 10318 EnergyUSA-TPC
## 10319 EnergyUSA-TPC
## 10320 EnergyUSA-TPC
## 10321 EnergyUSA-TPC
## 10322 EnergyUSA-TPC
## 10323 EnergyUSA-TPC
## 10324 EnergyUSA-TPC
## 10325 EnergyUSA-TPC
## 10326 EnergyUSA-TPC
## 10327 EnergyUSA-TPC
## 10328 EnergyUSA-TPC
## 10329 EnergyUSA-TPC
## 10330 EnergyUSA-TPC
## 10331 EnergyUSA-TPC
## 10332 EnergyUSA-TPC
## 10333 EnergyUSA-TPC
## 10334 EnergyUSA-TPC
## 10335 EnergyUSA-TPC
## 10336 EnergyUSA-TPC
## 10337 EnergyUSA-TPC
## 10338 EnergyUSA-TPC
## 10339 EnergyUSA-TPC
## 10340 EnergyUSA-TPC
## 10341 EnergyUSA-TPC
## 10342 EnergyUSA-TPC
## 10343 EnergyUSA-TPC
## 10344 EnergyUSA-TPC
## 10345 EnergyUSA-TPC
## 10346 EnergyUSA-TPC
## 10347 EnergyUSA-TPC
## 10348 EnergyUSA-TPC
## 10349 EnergyUSA-TPC
## 10350 EnergyUSA-TPC
## 10351 EnergyUSA-TPC
## 10352 EnergyUSA-TPC
## 10353 EnergyUSA-TPC
## 10354 EnergyUSA-TPC
## 10355 EnergyUSA-TPC
## 10356 FW:
## 10357 Encore Energy Solutions, L.P.
## 10358 Encore Energy Solutions, L.P.
## 10359 Encore Energy Solutions, L.P.
## 10360 Encore Energy Solutions, L.P.
## 10361 Encore Energy Solutions, L.P.
## 10362 Encore Energy Solutions, L.P.
## 10363 Encore Energy Solutions, L.P.
## 10364 Encore Energy Solutions, L.P.
## 10365 Encore Energy Solutions, L.P.
## 10366 Encore Energy Solutions, L.P.
## 10367 Encore Energy Solutions, L.P.
## 10368 Encore Energy Solutions, L.P.
## 10369 Encore Energy Solutions, L.P.
## 10370 Encore Energy Solutions, L.P.
## 10371 Encore Energy Solutions, L.P.
## 10372 Encore Energy Solutions, L.P.
## 10373 Encore Energy Solutions, L.P.
## 10374 Encore Energy Solutions, L.P.
## 10375 Encore Energy Solutions, L.P.
## 10376 Encore Energy Solutions, L.P.
## 10377 Encore Energy Solutions, L.P.
## 10378 Encore Energy Solutions, L.P.
## 10379 Encore Energy Solutions, L.P.
## 10380 Encore Energy Solutions, L.P.
## 10381 Encore Energy Solutions, L.P.
## 10382 Encore Energy Solutions, L.P.
## 10383 Encore Energy Solutions, L.P.
## 10384 Encore Energy Solutions, L.P.
## 10385 Encore Energy Solutions, L.P.
## 10386 Encore Energy Solutions, L.P.
## 10387 Encore Energy Solutions, L.P.
## 10388 Encore Energy Solutions, L.P.
## 10389 Encore Energy Solutions, L.P.
## 10390 Encore Energy Solutions, L.P.
## 10391 Encore Energy Solutions, L.P.
## 10392 Encore Energy Solutions, L.P.
## 10393 Encore Energy Solutions, L.P.
## 10394 Encore Energy Solutions, L.P.
## 10395 Encore Energy Solutions, L.P.
## 10396 Encore Energy Solutions, L.P.
## 10397 Encore Energy Solutions, L.P.
## 10398 Encore Energy Solutions, L.P.
## 10399 Encore Energy Solutions, L.P.
## 10400 Encore Energy Solutions, L.P.
## 10401 Encore Energy Solutions, L.P.
## 10402 Encore Energy Solutions, L.P.
## 10403 Encore Energy Solutions, L.P.
## 10404 Encore Energy Solutions, L.P.
## 10405 Encore Energy Solutions, L.P.
## 10406 Encore Energy Solutions, L.P.
## 10407 Encore Energy Solutions, L.P.
## 10408 Encore Energy Solutions, L.P.
## 10409 Encore Energy Solutions, L.P.
## 10410 Encore Energy Solutions, L.P.
## 10411 Encore Energy Solutions, L.P.
## 10412 Encore Energy Solutions, L.P.
## 10413 Encore Energy Solutions, L.P.
## 10414 Encore Energy Solutions, L.P.
## 10415 Encore Energy Solutions, L.P.
## 10416 Encore Energy Solutions, L.P.
## 10417 Encore Energy Solutions, L.P.
## 10418 Encore Energy Solutions, L.P.
## 10419 Encore Energy Solutions, L.P.
## 10420 Encore Energy Solutions, L.P.
## 10421 Encore Energy Solutions, L.P.
## 10422 Encore Energy Solutions, L.P.
## 10423 Encore Energy Solutions, L.P.
## 10424 Encore Energy Solutions, L.P.
## 10425 Encore Energy Solutions, L.P.
## 10426 Encore Energy Solutions, L.P.
## 10427 Encore Energy Solutions, L.P.
## 10428 Encore Energy Solutions, L.P.
## 10429 Encore Energy Solutions, L.P.
## 10430 Encore Energy Solutions, L.P.
## 10431 Legal Transition Committee
## 10432 Legal Transition Committee
## 10433 Legal Transition Committee
## 10434 Legal Transition Committee
## 10435 Legal Transition Committee
## 10436 Legal Transition Committee
## 10437 Legal Transition Committee
## 10438 Legal Transition Committee
## 10439 Legal Transition Committee
## 10440 Legal Transition Committee
## 10441 Legal Transition Committee
## 10442 Legal Transition Committee
## 10443 Legal Transition Committee
## 10444 Legal Transition Committee
## 10445 Legal Transition Committee
## 10446 Legal Transition Committee
## 10447 Legal Transition Committee
## 10448 Legal Transition Committee
## 10449 Legal Transition Committee
## 10450 Legal Transition Committee
## 10451 Legal Transition Committee
## 10452 Legal Transition Committee
## 10453 Legal Transition Committee
## 10454 Legal Transition Committee
## 10455 Legal Transition Committee
## 10456 RE: any updates?
## 10457 RE: any updates?
## 10458 Legal Team Meeting Time Has Changed
## 10459 Legal Team Meeting Time Has Changed
## 10460 Legal Team Meeting Time Has Changed
## 10461 Legal Team Meeting Time Has Changed
## 10462 Legal Team Meeting Time Has Changed
## 10463 Legal Team Meeting Time Has Changed
## 10464 Legal Team Meeting Time Has Changed
## 10465 Legal Team Meeting Time Has Changed
## 10466 Legal Team Meeting Time Has Changed
## 10467 Legal Team Meeting Time Has Changed
## 10468 Legal Team Meeting Time Has Changed
## 10469 Legal Team Meeting Time Has Changed
## 10470 Legal Team Meeting Time Has Changed
## 10471 Legal Team Meeting Time Has Changed
## 10472 Legal Team Meeting Time Has Changed
## 10473 Legal Team Meeting Time Has Changed
## 10474 Legal Team Meeting Time Has Changed
## 10475 Legal Team Meeting Time Has Changed
## 10476 Legal Team Meeting Time Has Changed
## 10477 Legal Team Meeting Time Has Changed
## 10478 Legal Team Meeting Time Has Changed
## 10479 RE:
## 10480 RE:
## 10481 RE:
## 10482 RE:
## 10483 RE:
## 10484 RE:
## 10485 RE:
## 10486 RE: Internet
## 10487 RE: Internet
## 10488 RE: Internet
## 10489 ENA Teams
## 10490 ENA Teams
## 10491 ENA Teams
## 10492 ENA Teams
## 10493 ENA Teams
## 10494 ENA Teams
## 10495 ENA Teams
## 10496 ENA Teams
## 10497 ENA Teams
## 10498 ENA Teams
## 10499 ENA Teams
## 10500 ENA Teams
## 10501 ENA Teams
## 10502 ENA Teams
## 10503 ENA Teams
## 10504 ENA Teams
## 10505 ENA Teams
## 10506 ENA Teams
## 10507 Confirmation - 5:00 PM (CST) Meeting Today
## 10508 Confirmation - 5:00 PM (CST) Meeting Today
## 10509 Confirmation - 5:00 PM (CST) Meeting Today
## 10510 Confirmation - 5:00 PM (CST) Meeting Today
## 10511 Confirmation - 5:00 PM (CST) Meeting Today
## 10512 Confirmation - 5:00 PM (CST) Meeting Today
## 10513 Confirmation - 5:00 PM (CST) Meeting Today
## 10514 Confirmation - 5:00 PM (CST) Meeting Today
## 10515 Confirmation - 5:00 PM (CST) Meeting Today
## 10516 Confirmation - 5:00 PM (CST) Meeting Today
## 10517 Confirmation - 5:00 PM (CST) Meeting Today
## 10518 Confirmation - 5:00 PM (CST) Meeting Today
## 10519 Confirmation - 5:00 PM (CST) Meeting Today
## 10520 Confirmation - 5:00 PM (CST) Meeting Today
## 10521 Confirmation - 5:00 PM (CST) Meeting Today
## 10522 Confirmation - 5:00 PM (CST) Meeting Today
## 10523 Confirmation - 5:00 PM (CST) Meeting Today
## 10524 Confirmation - 5:00 PM (CST) Meeting Today
## 10525 Confirmation - 5:00 PM (CST) Meeting Today
## 10526 Confirmation - 5:00 PM (CST) Meeting Today
## 10527 Confirmation - 5:00 PM (CST) Meeting Today
## 10528 Meeting Confirmation
## 10529 Meeting Confirmation
## 10530 Meeting Confirmation
## 10531 Meeting Confirmation
## 10532 Meeting Confirmation
## 10533 Meeting Confirmation
## 10534 Meeting Confirmation
## 10535 Meeting Confirmation
## 10536 Meeting Confirmation
## 10537 Meeting Confirmation
## 10538 Meeting Confirmation
## 10539 Meeting Confirmation
## 10540 Meeting Confirmation
## 10541 Meeting Confirmation
## 10542 FW: Vermont Gas Systems, Inc.
## 10543 FW: Vermont Gas Systems, Inc.
## 10544 FW: Vermont Gas Systems, Inc.
## 10545 FW: Vermont Gas Systems, Inc.
## 10546 FW: Vermont Gas Systems, Inc.
## 10547 FW: Vermont Gas Systems, Inc.
## 10548 FW: Vermont Gas Systems, Inc.
## 10549 FW: Vermont Gas Systems, Inc.
## 10550 FW: Vermont Gas Systems, Inc.
## 10551 FW: Vermont Gas Systems, Inc.
## 10552 FW: Vermont Gas Systems, Inc.
## 10553 FW: Vermont Gas Systems, Inc.
## 10554 FW: Vermont Gas Systems, Inc.
## 10555 FW: Vermont Gas Systems, Inc.
## 10556 FW: Vermont Gas Systems, Inc.
## 10557 FW: Vermont Gas Systems, Inc.
## 10558 FW: Vermont Gas Systems, Inc.
## 10559 FW: Vermont Gas Systems, Inc.
## 10560 FW: Vermont Gas Systems, Inc.
## 10561 FW: Vermont Gas Systems, Inc.
## 10562 FW: Vermont Gas Systems, Inc.
## 10563 FW: Vermont Gas Systems, Inc.
## 10564 FW: Vermont Gas Systems, Inc.
## 10565 FW: Vermont Gas Systems, Inc.
## 10566 FW: Vermont Gas Systems, Inc.
## 10567 FW: Vermont Gas Systems, Inc.
## 10568 FW: Vermont Gas Systems, Inc.
## 10569 FW: Vermont Gas Systems, Inc.
## 10570 FW: Vermont Gas Systems, Inc.
## 10571 FW: Vermont Gas Systems, Inc.
## 10572 FW: Vermont Gas Systems, Inc.
## 10573 FW: Vermont Gas Systems, Inc.
## 10574 FW: Vermont Gas Systems, Inc.
## 10575 FW: Vermont Gas Systems, Inc.
## 10576 FW: Vermont Gas Systems, Inc.
## 10577 FW: Vermont Gas Systems, Inc.
## 10578 FW: Vermont Gas Systems, Inc.
## 10579 FW: Vermont Gas Systems, Inc.
## 10580 FW: Vermont Gas Systems, Inc.
## 10581 FW: Vermont Gas Systems, Inc.
## 10582 FW: Vermont Gas Systems, Inc.
## 10583 FW: Vermont Gas Systems, Inc.
## 10584 FW: Vermont Gas Systems, Inc.
## 10585 FW: Vermont Gas Systems, Inc.
## 10586 FW: Vermont Gas Systems, Inc.
## 10587 FW: Vermont Gas Systems, Inc.
## 10588 FW: Vermont Gas Systems, Inc.
## 10589 FW: Vermont Gas Systems, Inc.
## 10590 FW: Vermont Gas Systems, Inc.
## 10591 FW: Vermont Gas Systems, Inc.
## 10592 FW: Vermont Gas Systems, Inc.
## 10593 FW: Vermont Gas Systems, Inc.
## 10594 FW: Vermont Gas Systems, Inc.
## 10595 FW: Vermont Gas Systems, Inc.
## 10596 FW: Vermont Gas Systems, Inc.
## 10597 FW: Vermont Gas Systems, Inc.
## 10598 FW: Vermont Gas Systems, Inc.
## 10599 FW: Vermont Gas Systems, Inc.
## 10600 FW: Vermont Gas Systems, Inc.
## 10601 FW: Vermont Gas Systems, Inc.
## 10602 FW: Vermont Gas Systems, Inc.
## 10603 FW: Vermont Gas Systems, Inc.
## 10604 FW: Vermont Gas Systems, Inc.
## 10605 FW: Vermont Gas Systems, Inc.
## 10606 FW: Vermont Gas Systems, Inc.
## 10607 FW: Vermont Gas Systems, Inc.
## 10608 FW: Vermont Gas Systems, Inc.
## 10609 FW: Vermont Gas Systems, Inc.
## 10610 FW: Vermont Gas Systems, Inc.
## 10611 FW: Vermont Gas Systems, Inc.
## 10612 FW: Vermont Gas Systems, Inc.
## 10613 FW: Vermont Gas Systems, Inc.
## 10614 FW: Vermont Gas Systems, Inc.
## 10615 FW: Vermont Gas Systems, Inc.
## 10616 FW: Vermont Gas Systems, Inc.
## 10617 FW: Vermont Gas Systems, Inc.
## 10618 Vermont Gas Systems, Inc.
## 10619 Vermont Gas Systems, Inc.
## 10620 Vermont Gas Systems, Inc.
## 10621 Vermont Gas Systems, Inc.
## 10622 Vermont Gas Systems, Inc.
## 10623 Vermont Gas Systems, Inc.
## 10624 Vermont Gas Systems, Inc.
## 10625 Vermont Gas Systems, Inc.
## 10626 Vermont Gas Systems, Inc.
## 10627 Vermont Gas Systems, Inc.
## 10628 Vermont Gas Systems, Inc.
## 10629 Vermont Gas Systems, Inc.
## 10630 Vermont Gas Systems, Inc.
## 10631 Vermont Gas Systems, Inc.
## 10632 Vermont Gas Systems, Inc.
## 10633 Vermont Gas Systems, Inc.
## 10634 Vermont Gas Systems, Inc.
## 10635 Vermont Gas Systems, Inc.
## 10636 Vermont Gas Systems, Inc.
## 10637 Vermont Gas Systems, Inc.
## 10638 Vermont Gas Systems, Inc.
## 10639 Vermont Gas Systems, Inc.
## 10640 Vermont Gas Systems, Inc.
## 10641 Vermont Gas Systems, Inc.
## 10642 Vermont Gas Systems, Inc.
## 10643 Vermont Gas Systems, Inc.
## 10644 Vermont Gas Systems, Inc.
## 10645 Vermont Gas Systems, Inc.
## 10646 Vermont Gas Systems, Inc.
## 10647 Vermont Gas Systems, Inc.
## 10648 Vermont Gas Systems, Inc.
## 10649 Vermont Gas Systems, Inc.
## 10650 Vermont Gas Systems, Inc.
## 10651 Vermont Gas Systems, Inc.
## 10652 Vermont Gas Systems, Inc.
## 10653 Vermont Gas Systems, Inc.
## 10654 Vermont Gas Systems, Inc.
## 10655 Vermont Gas Systems, Inc.
## 10656 Vermont Gas Systems, Inc.
## 10657 Vermont Gas Systems, Inc.
## 10658 Vermont Gas Systems, Inc.
## 10659 Vermont Gas Systems, Inc.
## 10660 Vermont Gas Systems, Inc.
## 10661 Vermont Gas Systems, Inc.
## 10662 Vermont Gas Systems, Inc.
## 10663 Vermont Gas Systems, Inc.
## 10664 Vermont Gas Systems, Inc.
## 10665 Vermont Gas Systems, Inc.
## 10666 Vermont Gas Systems, Inc.
## 10667 Vermont Gas Systems, Inc.
## 10668 Vermont Gas Systems, Inc.
## 10669 Vermont Gas Systems, Inc.
## 10670 Vermont Gas Systems, Inc.
## 10671 Vermont Gas Systems, Inc.
## 10672 Vermont Gas Systems, Inc.
## 10673 Vermont Gas Systems, Inc.
## 10674 Vermont Gas Systems, Inc.
## 10675 Vermont Gas Systems, Inc.
## 10676 Vermont Gas Systems, Inc.
## 10677 Vermont Gas Systems, Inc.
## 10678 Vermont Gas Systems, Inc.
## 10679 Vermont Gas Systems, Inc.
## 10680 Vermont Gas Systems, Inc.
## 10681 Vermont Gas Systems, Inc.
## 10682 Vermont Gas Systems, Inc.
## 10683 Vermont Gas Systems, Inc.
## 10684 Vermont Gas Systems, Inc.
## 10685 Vermont Gas Systems, Inc.
## 10686 Vermont Gas Systems, Inc.
## 10687 Vermont Gas Systems, Inc.
## 10688 Vermont Gas Systems, Inc.
## 10689 Vermont Gas Systems, Inc.
## 10690 Vermont Gas Systems, Inc.
## 10691 Vermont Gas Systems, Inc.
## 10692 Vermont Gas Systems, Inc.
## 10693 Vermont Gas Systems, Inc.
## 10694 RE: Secondary Firm Index product types
## 10695 RE: Secondary Firm Index product types
## 10696 RE: Secondary Firm Index product types
## 10697 Meeting - Update
## 10698 Meeting - Update
## 10699 Meeting - Update
## 10700 Meeting - Update
## 10701 Meeting - Update
## 10702 Meeting - Update
## 10703 Meeting - Update
## 10704 Meeting - Update
## 10705 Meeting - Update
## 10706 Meeting - Update
## 10707 Meeting - Update
## 10708 Meeting - Update
## 10709 Meeting - Update
## 10710 Meeting - Update
## 10711 Meeting - Update
## 10712 Meeting - Update
## 10713 Meeting - Update
## 10714 Meeting - Update
## 10715 Meeting - Update
## 10716 Meeting - Update
## 10717 Meeting - Update
## 10718 Meeting - Update
## 10719 Meeting - Update
## 10720 Meeting - Update
## 10721 Meeting - Update
## 10722 Meeting - Update
## 10723 Meeting - Update
## 10724 Meeting - Update
## 10725 Meeting - Update
## 10726 Meeting - Update
## 10727 Meeting - Update
## 10728 Tall Tree Lumber Company
## 10729 Tall Tree Lumber Company
## 10730 Tall Tree Lumber Company
## 10731 Tall Tree Lumber Company
## 10732 Tall Tree Lumber Company
## 10733 Tall Tree Lumber Company
## 10734 Tall Tree Lumber Company
## 10735 Tall Tree Lumber Company
## 10736 Tall Tree Lumber Company
## 10737 Tall Tree Lumber Company
## 10738 Tall Tree Lumber Company
## 10739 Tall Tree Lumber Company
## 10740 Tall Tree Lumber Company
## 10741 Tall Tree Lumber Company
## 10742 Tall Tree Lumber Company
## 10743 Tall Tree Lumber Company
## 10744 Tall Tree Lumber Company
## 10745 Tall Tree Lumber Company
## 10746 Tall Tree Lumber Company
## 10747 Tall Tree Lumber Company
## 10748 Tall Tree Lumber Company
## 10749 Tall Tree Lumber Company
## 10750 Tall Tree Lumber Company
## 10751 Tall Tree Lumber Company
## 10752 Tall Tree Lumber Company
## 10753 Tall Tree Lumber Company
## 10754 Tall Tree Lumber Company
## 10755 Tall Tree Lumber Company
## 10756 Tall Tree Lumber Company
## 10757 Tall Tree Lumber Company
## 10758 Tall Tree Lumber Company
## 10759 Tall Tree Lumber Company
## 10760 Tall Tree Lumber Company
## 10761 Tall Tree Lumber Company
## 10762 Tall Tree Lumber Company
## 10763 Tall Tree Lumber Company
## 10764 Tall Tree Lumber Company
## 10765 Tall Tree Lumber Company
## 10766 Tall Tree Lumber Company
## 10767 Tall Tree Lumber Company
## 10768 Tall Tree Lumber Company
## 10769 Tall Tree Lumber Company
## 10770 Tall Tree Lumber Company
## 10771 Tall Tree Lumber Company
## 10772 Tall Tree Lumber Company
## 10773 Tall Tree Lumber Company
## 10774 Tall Tree Lumber Company
## 10775 Tall Tree Lumber Company
## 10776 Tall Tree Lumber Company
## 10777 Tall Tree Lumber Company
## 10778 Tall Tree Lumber Company
## 10779 Tall Tree Lumber Company
## 10780 Tall Tree Lumber Company
## 10781 Tall Tree Lumber Company
## 10782 Tall Tree Lumber Company
## 10783 Tall Tree Lumber Company
## 10784 Tall Tree Lumber Company
## 10785 Tall Tree Lumber Company
## 10786 Tall Tree Lumber Company
## 10787 Tall Tree Lumber Company
## 10788 Tall Tree Lumber Company
## 10789 Tall Tree Lumber Company
## 10790 Tall Tree Lumber Company
## 10791 Tall Tree Lumber Company
## 10792 Tall Tree Lumber Company
## 10793 Tall Tree Lumber Company
## 10794 Tall Tree Lumber Company
## 10795 Tall Tree Lumber Company
## 10796 Tall Tree Lumber Company
## 10797 Tall Tree Lumber Company
## 10798 Tall Tree Lumber Company
## 10799 Tall Tree Lumber Company
## 10800 Tall Tree Lumber Company
## 10801 Tall Tree Lumber Company
## 10802 Tall Tree Lumber Company
## 10803 Tall Tree Lumber Company
## 10804 Energy Partners, Ltd.
## 10805 Energy Partners, Ltd.
## 10806 Energy Partners, Ltd.
## 10807 Energy Partners, Ltd.
## 10808 Energy Partners, Ltd.
## 10809 Energy Partners, Ltd.
## 10810 Energy Partners, Ltd.
## 10811 Energy Partners, Ltd.
## 10812 Energy Partners, Ltd.
## 10813 Energy Partners, Ltd.
## 10814 Energy Partners, Ltd.
## 10815 Energy Partners, Ltd.
## 10816 Energy Partners, Ltd.
## 10817 Energy Partners, Ltd.
## 10818 Energy Partners, Ltd.
## 10819 Energy Partners, Ltd.
## 10820 Energy Partners, Ltd.
## 10821 Energy Partners, Ltd.
## 10822 Energy Partners, Ltd.
## 10823 Energy Partners, Ltd.
## 10824 Energy Partners, Ltd.
## 10825 Energy Partners, Ltd.
## 10826 Energy Partners, Ltd.
## 10827 Energy Partners, Ltd.
## 10828 Energy Partners, Ltd.
## 10829 Energy Partners, Ltd.
## 10830 Energy Partners, Ltd.
## 10831 Energy Partners, Ltd.
## 10832 Energy Partners, Ltd.
## 10833 Energy Partners, Ltd.
## 10834 Energy Partners, Ltd.
## 10835 Energy Partners, Ltd.
## 10836 Energy Partners, Ltd.
## 10837 Energy Partners, Ltd.
## 10838 Energy Partners, Ltd.
## 10839 Energy Partners, Ltd.
## 10840 Energy Partners, Ltd.
## 10841 Energy Partners, Ltd.
## 10842 Energy Partners, Ltd.
## 10843 Energy Partners, Ltd.
## 10844 Energy Partners, Ltd.
## 10845 Energy Partners, Ltd.
## 10846 Energy Partners, Ltd.
## 10847 Energy Partners, Ltd.
## 10848 Energy Partners, Ltd.
## 10849 Energy Partners, Ltd.
## 10850 Energy Partners, Ltd.
## 10851 Energy Partners, Ltd.
## 10852 Energy Partners, Ltd.
## 10853 Energy Partners, Ltd.
## 10854 Energy Partners, Ltd.
## 10855 Energy Partners, Ltd.
## 10856 Energy Partners, Ltd.
## 10857 Energy Partners, Ltd.
## 10858 Energy Partners, Ltd.
## 10859 Energy Partners, Ltd.
## 10860 Energy Partners, Ltd.
## 10861 Energy Partners, Ltd.
## 10862 Energy Partners, Ltd.
## 10863 Energy Partners, Ltd.
## 10864 Energy Partners, Ltd.
## 10865 Energy Partners, Ltd.
## 10866 Energy Partners, Ltd.
## 10867 Energy Partners, Ltd.
## 10868 Energy Partners, Ltd.
## 10869 Energy Partners, Ltd.
## 10870 Energy Partners, Ltd.
## 10871 Energy Partners, Ltd.
## 10872 Energy Partners, Ltd.
## 10873 Energy Partners, Ltd.
## 10874 Energy Partners, Ltd.
## 10875 Energy Partners, Ltd.
## 10876 Energy Partners, Ltd.
## 10877 Energy Partners, Ltd.
## 10878 Energy Partners, Ltd.
## 10879 Energy Partners, Ltd.
## 10880 Energy Partners, Ltd.
## 10881 Barrett Resources Corporation
## 10882 Barrett Resources Corporation
## 10883 Barrett Resources Corporation
## 10884 Barrett Resources Corporation
## 10885 Barrett Resources Corporation
## 10886 Barrett Resources Corporation
## 10887 Barrett Resources Corporation
## 10888 Barrett Resources Corporation
## 10889 Barrett Resources Corporation
## 10890 Barrett Resources Corporation
## 10891 Barrett Resources Corporation
## 10892 Barrett Resources Corporation
## 10893 Barrett Resources Corporation
## 10894 Barrett Resources Corporation
## 10895 PPL EnergyPlus, LLC
## 10896 PPL EnergyPlus, LLC
## 10897 PPL EnergyPlus, LLC
## 10898 PPL EnergyPlus, LLC
## 10899 PPL EnergyPlus, LLC
## 10900 PPL EnergyPlus, LLC
## 10901 PPL EnergyPlus, LLC
## 10902 PPL EnergyPlus, LLC
## 10903 PPL EnergyPlus, LLC
## 10904 PPL EnergyPlus, LLC
## 10905 PPL EnergyPlus, LLC
## 10906 PPL EnergyPlus, LLC
## 10907 PPL EnergyPlus, LLC
## 10908 PPL EnergyPlus, LLC
## 10909 PPL EnergyPlus, LLC
## 10910 PPL EnergyPlus, LLC
## 10911 PPL EnergyPlus, LLC
## 10912 PPL EnergyPlus, LLC
## 10913 PPL EnergyPlus, LLC
## 10914 PPL EnergyPlus, LLC
## 10915 PPL EnergyPlus, LLC
## 10916 PPL EnergyPlus, LLC
## 10917 PPL EnergyPlus, LLC
## 10918 PPL EnergyPlus, LLC
## 10919 PPL EnergyPlus, LLC
## 10920 PPL EnergyPlus, LLC
## 10921 PPL EnergyPlus, LLC
## 10922 PPL EnergyPlus, LLC
## 10923 PPL EnergyPlus, LLC
## 10924 PPL EnergyPlus, LLC
## 10925 PPL EnergyPlus, LLC
## 10926 PPL EnergyPlus, LLC
## 10927 PPL EnergyPlus, LLC
## 10928 PPL EnergyPlus, LLC
## 10929 PPL EnergyPlus, LLC
## 10930 PPL EnergyPlus, LLC
## 10931 PPL EnergyPlus, LLC
## 10932 PPL EnergyPlus, LLC
## 10933 PPL EnergyPlus, LLC
## 10934 PPL EnergyPlus, LLC
## 10935 PPL EnergyPlus, LLC
## 10936 PPL EnergyPlus, LLC
## 10937 PPL EnergyPlus, LLC
## 10938 PPL EnergyPlus, LLC
## 10939 PPL EnergyPlus, LLC
## 10940 PPL EnergyPlus, LLC
## 10941 PPL EnergyPlus, LLC
## 10942 PPL EnergyPlus, LLC
## 10943 PPL EnergyPlus, LLC
## 10944 PPL EnergyPlus, LLC
## 10945 PPL EnergyPlus, LLC
## 10946 PPL EnergyPlus, LLC
## 10947 PPL EnergyPlus, LLC
## 10948 PPL EnergyPlus, LLC
## 10949 PPL EnergyPlus, LLC
## 10950 PPL EnergyPlus, LLC
## 10951 PPL EnergyPlus, LLC
## 10952 PPL EnergyPlus, LLC
## 10953 PPL EnergyPlus, LLC
## 10954 PPL EnergyPlus, LLC
## 10955 PPL EnergyPlus, LLC
## 10956 PPL EnergyPlus, LLC
## 10957 PPL EnergyPlus, LLC
## 10958 PPL EnergyPlus, LLC
## 10959 PPL EnergyPlus, LLC
## 10960 PPL EnergyPlus, LLC
## 10961 PPL EnergyPlus, LLC
## 10962 PPL EnergyPlus, LLC
## 10963 PPL EnergyPlus, LLC
## 10964 PPL EnergyPlus, LLC
## 10965 PPL EnergyPlus, LLC
## 10966 PPL EnergyPlus, LLC
## 10967 PPL EnergyPlus, LLC
## 10968 PPL EnergyPlus, LLC
## 10969 PPL EnergyPlus, LLC
## 10970 PPL EnergyPlus, LLC
## 10971 PPL EnergyPlus, LLC
## 10972 PPL EnergyPlus, LLC
## 10973 Maclaren Energy Inc.
## 10974 Maclaren Energy Inc.
## 10975 Maclaren Energy Inc.
## 10976 Maclaren Energy Inc.
## 10977 Maclaren Energy Inc.
## 10978 Maclaren Energy Inc.
## 10979 Maclaren Energy Inc.
## 10980 Maclaren Energy Inc.
## 10981 Maclaren Energy Inc.
## 10982 Maclaren Energy Inc.
## 10983 Maclaren Energy Inc.
## 10984 Maclaren Energy Inc.
## 10985 Maclaren Energy Inc.
## 10986 Maclaren Energy Inc.
## 10987 Maclaren Energy Inc.
## 10988 Maclaren Energy Inc.
## 10989 Maclaren Energy Inc.
## 10990 Maclaren Energy Inc.
## 10991 Maclaren Energy Inc.
## 10992 Maclaren Energy Inc.
## 10993 Maclaren Energy Inc.
## 10994 Maclaren Energy Inc.
## 10995 Maclaren Energy Inc.
## 10996 Maclaren Energy Inc.
## 10997 Maclaren Energy Inc.
## 10998 Maclaren Energy Inc.
## 10999 Maclaren Energy Inc.
## 11000 Maclaren Energy Inc.
## 11001 Maclaren Energy Inc.
## 11002 Maclaren Energy Inc.
## 11003 Maclaren Energy Inc.
## 11004 Maclaren Energy Inc.
## 11005 Maclaren Energy Inc.
## 11006 Maclaren Energy Inc.
## 11007 Maclaren Energy Inc.
## 11008 Maclaren Energy Inc.
## 11009 Maclaren Energy Inc.
## 11010 Maclaren Energy Inc.
## 11011 Maclaren Energy Inc.
## 11012 Maclaren Energy Inc.
## 11013 Maclaren Energy Inc.
## 11014 Maclaren Energy Inc.
## 11015 Maclaren Energy Inc.
## 11016 Maclaren Energy Inc.
## 11017 Maclaren Energy Inc.
## 11018 Maclaren Energy Inc.
## 11019 Maclaren Energy Inc.
## 11020 Maclaren Energy Inc.
## 11021 Maclaren Energy Inc.
## 11022 Maclaren Energy Inc.
## 11023 Maclaren Energy Inc.
## 11024 Maclaren Energy Inc.
## 11025 Maclaren Energy Inc.
## 11026 Maclaren Energy Inc.
## 11027 Maclaren Energy Inc.
## 11028 Maclaren Energy Inc.
## 11029 Maclaren Energy Inc.
## 11030 Maclaren Energy Inc.
## 11031 Maclaren Energy Inc.
## 11032 Maclaren Energy Inc.
## 11033 Maclaren Energy Inc.
## 11034 Maclaren Energy Inc.
## 11035 Maclaren Energy Inc.
## 11036 Maclaren Energy Inc.
## 11037 Maclaren Energy Inc.
## 11038 Maclaren Energy Inc.
## 11039 Maclaren Energy Inc.
## 11040 Maclaren Energy Inc.
## 11041 Maclaren Energy Inc.
## 11042 Maclaren Energy Inc.
## 11043 Maclaren Energy Inc.
## 11044 Maclaren Energy Inc.
## 11045 Maclaren Energy Inc.
## 11046 Maclaren Energy Inc.
## 11047 Maclaren Energy Inc.
## 11048 Maclaren Energy Inc.
## 11049 Maclaren Energy Inc.
## 11050 EWS Legal Year End PRC Meeting
## 11051 EWS Legal Year End PRC Meeting
## 11052 EWS Legal Year End PRC Meeting
## 11053 EWS Legal Year End PRC Meeting
## 11054 EWS Legal Year End PRC Meeting
## 11055 EWS Legal Year End PRC Meeting
## 11056 EWS Legal Year End PRC Meeting
## 11057 EWS Legal Year End PRC Meeting
## 11058 EWS Legal Year End PRC Meeting
## 11059 EWS Legal Year End PRC Meeting
## 11060 EWS Legal Year End PRC Meeting
## 11061 EWS Legal Year End PRC Meeting
## 11062 EWS Legal Year End PRC Meeting
## 11063 EWS Legal Year End PRC Meeting
## 11064 EWS Legal Year End PRC Meeting
## 11065 EWS Legal Year End PRC Meeting
## 11066 EWS Legal Year End PRC Meeting
## 11067 EWS Legal Year End PRC Meeting
## 11068 EWS Legal Year End PRC Meeting
## 11069 EWS Legal Year End PRC Meeting
## 11070 EWS Legal Year End PRC Meeting
## 11071 EWS Legal Year End PRC Meeting
## 11072 EWS Legal Year End PRC Meeting
## 11073 EWS Legal Year End PRC Meeting
## 11074 EWS Legal Year End PRC Meeting
## 11075 EWS Legal Year End PRC Meeting
## 11076 EWS Legal Year End PRC Meeting
## 11077 EWS Legal Year End PRC Meeting
## 11078 EWS Legal Year End PRC Meeting
## 11079 EWS Legal Year End PRC Meeting
## 11080 EWS Legal Year End PRC Meeting
## 11081 EWS Legal Year End PRC Meeting
## 11082 EWS Legal Year End PRC Meeting
## 11083 EWS Legal Year End PRC Meeting
## 11084 EWS Legal Year End PRC Meeting
## 11085 EWS Legal Year End PRC Meeting
## 11086 EWS Legal Year End PRC Meeting
## 11087 FW: Last Year trades - Top 50 counterparties - US/Canadian Gas/Power
## 11088 FW: Index Language-physical and financial power
## 11089 FW: Index Language-physical and financial power
## 11090 FW: Index Language-physical and financial power
## 11091 FW: Index Language-physical and financial power
## 11092 FW: Index Language-physical and financial power
## 11093 CFTC Issues
## 11094 Single Master Agreement
## 11095 Single Master Agreement
## 11096 Single Master Agreement
## 11097 Single Master Agreement
## 11098 Single Master Agreement
## 11099 Single Master Agreement
## 11100 Re: EnronOnline New Markets/Products Weekly Update 9/8/00
## 11101 Re: EnronOnline New Markets/Products Weekly Update 9/8/00
## 11102 Re: EnronOnline New Markets/Products Weekly Update 9/8/00
## 11103 Re: EnronOnline New Markets/Products Weekly Update 9/8/00
## 11104 Re: EnronOnline New Markets/Products Weekly Update 9/8/00
## 11105 Re: EnronOnline New Markets/Products Weekly Update 9/8/00
## 11106 RE:
## 11107
## 11108 Re: CNV-Precedents
## 11109 CNV-Precedents
## 11110 Re: Charles Christening
## 11111 Enron/McGarret C
## 11112 MG Metals
## 11113 MG Metals
## 11114 MG Metals
## 11115 Re: Gross Error language
## 11116 Re: Gross Error language
## 11117 Re: Gross Error language
## 11118 Re: Gross Error language
## 11119 Re: Gross Error language
## 11120 No Action Letter
## 11121 No Action Letter
## 11122 No Action Letter
## 11123 No Action Letter
## 11124 No Action Letter
## 11125 No Action Letter
## 11126 ENW Monthly Report
## 11127 ENW Monthly Report
## 11128 ENW Monthly Report
## 11129 ENW Monthly Report
## 11130 ENW Monthly Report
## 11131 Talisman ETA
## 11132 Talisman ETA
## 11133 Talisman ETA
## 11134 Re: ISDA with Citibank Subsidiary
## 11135 Enron moves make waves in electronic trading industry.(Brief ...
## 11136 Enron moves make waves in electronic trading industry.(Brief ...
## 11137 Enron moves make waves in electronic trading industry.(Brief ...
## 11138 Enron moves make waves in electronic trading industry.(Brief ...
## 11139 Enron moves make waves in electronic trading industry.(Brief ...
## 11140 Enron moves make waves in electronic trading industry.(Brief ...
## 11141 EnronOnline and Putting the Energy into Ecommerce
## 11142 EnronOnline and Putting the Energy into Ecommerce
## 11143 EnronOnline and Putting the Energy into Ecommerce
## 11144 EnronOnline and Putting the Energy into Ecommerce
## 11145 Re: assignment of deals from Merchant Energy Group of the Americas to Morgan Stanley
## 11146 Re: assignment of deals from Merchant Energy Group of the Americas to Morgan Stanley
## 11147 Re: assignment of deals from Merchant Energy Group of the Americas to Morgan Stanley
## 11148 Re: assignment of deals from Merchant Energy Group of the Americas to Morgan Stanley
## 11149 Re: assignment of deals from Merchant Energy Group of the Americas to Morgan Stanley
## 11150 Re: LeBoeuf bill
## 11151 Re: LeBoeuf bill
## 11152 Re: LeBoeuf bill
## 11153 FW: P.Thompson memorial
## 11154 FW: P.Thompson memorial
## 11155 IPE Query
## 11156 Status Memo
## 11157 Status Memo
## 11158 Re: buying a web site
## 11159 Re: buying a web site
## 11160 Re: buying a web site
## 11161 TrueQuote.com
## 11162 TrueQuote.com
## 11163 TrueQuote.com
## 11164 Susan Flynn Active Files
## 11165 Susan Flynn Active Files
## 11166 Re: questionnaire on Internet trading on commodities.DOC
## 11167 The Plan!
## 11168 Re: Deutsche Bank
## 11169 sorema structure
## 11170 sorema structure
## 11171 sorema structure
## 11172 ClickPaper Process Flow diagrams
## 11173 Cover letter to be sent with the brochures.
## 11174 Re: Mexico
## 11175 Re: Mexico
## 11176 Re: Mexico
## 11177 Re: Forms to be Signed
## 11178 Re: Forms to be Signed
## 11179 Re: Forms to be Signed
## 11180 Status of Online Amendments
## 11181 Status of Online Amendments
## 11182 Status of Online Amendments
## 11183 Status of Online Amendments
## 11184 Status of Online Amendments
## 11185 Status of Online Amendments
## 11186 Status of Online Amendments
## 11187 RE: revised Enron Online
## 11188 RE: revised Enron Online
## 11189 RE: revised Enron Online
## 11190 Bond and Equity Trading in Europe
## 11191 Enron Multi-Product Guaranty
## 11192 Enron Multi-Product Guaranty
## 11193 Enron Multi-Product Guaranty
## 11194 Enron Multi-Product Guaranty
## 11195 Enron Multi-Product Guaranty
## 11196 Enron Multi-Product Guaranty
## 11197 Enron Multi-Product Guaranty
## 11198 Enron Multi-Product Guaranty
## 11199 Enron Multi-Product Guaranty
## 11200 Enron Multi-Product Guaranty
## 11201 Enron Multi-Product Guaranty
## 11202 Enron Multi-Product Guaranty
## 11203 Enron Multi-Product Guaranty
## 11204 Enron Multi-Product Guaranty
## 11205 Enron Multi-Product Guaranty
## 11206 Enron Multi-Product Guaranty
## 11207 Enron Multi-Product Guaranty
## 11208 Enron Multi-Product Guaranty
## 11209 Enron Multi-Product Guaranty
## 11210 Enron Multi-Product Guaranty
## 11211 Enron Multi-Product Guaranty
## 11212 Enron Multi-Product Guaranty
## 11213 Enron Multi-Product Guaranty
## 11214 PJM Power Demand
## 11215 PJM Power Demand
## 11216 Multi-Product Counterparty Guaranty
## 11217 Multi-Product Counterparty Guaranty
## 11218 Multi-Product Counterparty Guaranty
## 11219 Multi-Product Counterparty Guaranty
## 11220 Multi-Product Counterparty Guaranty
## 11221 Multi-Product Counterparty Guaranty
## 11222 Multi-Product Counterparty Guaranty
## 11223 Multi-Product Counterparty Guaranty
## 11224 Multi-Product Counterparty Guaranty
## 11225 Multi-Product Counterparty Guaranty
## 11226 Multi-Product Counterparty Guaranty
## 11227 Multi-Product Counterparty Guaranty
## 11228 Multi-Product Counterparty Guaranty
## 11229 Multi-Product Counterparty Guaranty
## 11230 Multi-Product Counterparty Guaranty
## 11231 Multi-Product Counterparty Guaranty
## 11232 Multi-Product Counterparty Guaranty
## 11233 Multi-Product Counterparty Guaranty
## 11234 Multi-Product Counterparty Guaranty
## 11235 Multi-Product Counterparty Guaranty
## 11236 Multi-Product Counterparty Guaranty
## 11237 Multi-Product Counterparty Guaranty
## 11238 Multi-Product Counterparty Guaranty
## 11239 Multi-Product Counterparty Guaranty
## 11240 Multi-Product Counterparty Guaranty
## 11241 Multi-Product Counterparty Guaranty
## 11242 Multi-Product Counterparty Guaranty
## 11243 Multi-Product Counterparty Guaranty
## 11244 Multi-Product Counterparty Guaranty
## 11245 Multi-Product Counterparty Guaranty
## 11246 Multi-Product Counterparty Guaranty
## 11247 Multi-Product Counterparty Guaranty
## 11248 Multi-Product Counterparty Guaranty
## 11249 Multi-Product Counterparty Guaranty
## 11250 Multi-Product Counterparty Guaranty
## 11251 Multi-Product Counterparty Guaranty
## 11252 Multi-Product Counterparty Guaranty
## 11253 Multi-Product Counterparty Guaranty
## 11254 Multi-Product Counterparty Guaranty
## 11255 Multi-Product Counterparty Guaranty
## 11256 Multi-Product Counterparty Guaranty
## 11257 Multi-Product Counterparty Guaranty
## 11258 Multi-Product Counterparty Guaranty
## 11259 Multi-Product Counterparty Guaranty
## 11260 Multi-Product Counterparty Guaranty
## 11261 Multi-Product Counterparty Guaranty
## 11262 Re: spectrononline.com domain name redirecting to enrononline
## 11263 Re: spectrononline.com domain name redirecting to enrononline
## 11264 Re: spectrononline.com domain name redirecting to enrononline
## 11265 Re: spectrononline.com domain name redirecting to enrononline
## 11266 Re: spectrononline.com domain name redirecting to enrononline
## 11267 Re: spectrononline.com domain name redirecting to enrononline
## 11268 spectrononline.com domain name redirecting to enrononline
## 11269 spectrononline.com domain name redirecting to enrononline
## 11270 ICEX
## 11271 Posting agreement
## 11272 Confirmation Letter
## 11273 Confirmation Letter
## 11274 Confirmation Letter
## 11275 Confirmation Letter
## 11276 Confirmation Letter
## 11277 Confirmation Letter
## 11278 Confirmation Letter
## 11279 Confirmation Letter
## 11280 Re: Platts Offensive?
## 11281 Re: Platts Offensive?
## 11282 Re: Platts Offensive?
## 11283 Re: Platts Offensive?
## 11284 Re: Platts Offensive?
## 11285 Re: Platts Offensive?
## 11286 Re: Platts Offensive?
## 11287 Re: Platts Offensive?
## 11288 Re: Platts Offensive?
## 11289 Notice of Intent not to Waive Rights
## 11290 Securities Act Reps
## 11291 Securities Act Reps
## 11292 Securities Act Reps
## 11293 Re: Big Six C.A.
## 11294 Big Six C.A.
## 11295 documentation
## 11296 ISDA Securities Rep
## 11297 ISDA Securities Rep
## 11298 ISDA Securities Rep
## 11299 ISDA Securities Rep
## 11300 ISDA Securities Rep
## 11301 ISDA Forms
## 11302 ISDA Forms
## 11303 ISDA Forms
## 11304 ISDA Forms
## 11305 ISDA Forms
## 11306 ISDA Forms
## 11307 ISDA Forms
## 11308 ISDA Forms
## 11309 ISDA Forms
## 11310 ISDA Forms
## 11311 ISDA Forms
## 11312 New Form of LC
## 11313 New Form of LC
## 11314 New Form of LC
## 11315 New Form of LC
## 11316 New Form of LC
## 11317 New Form of LC
## 11318 New Form of LC
## 11319 Re: Enron Online
## 11320 Re: Enron Online
## 11321 Re: Enron Online
## 11322 Midland Cogeneration Venture LP
## 11323 Midland Cogeneration Venture LP
## 11324 Midland Cogeneration Venture LP
## 11325 Re: What happened with the NDA?
## 11326 Re: What happened with the NDA?
## 11327 Re: What happened with the NDA?
## 11328 Re: Follow-up on Friday s meeting
## 11329 Re: Follow-up on Friday s meeting
## 11330 True Quote LOU and Term Sheet
## 11331 True Quote LOU and Term Sheet
## 11332 True Quote LOU and Term Sheet
## 11333 True Quote LOU and Term Sheet
## 11334 True Quote LOU and Term Sheet
## 11335 True Quote LOU and Term Sheet
## 11336 True Quote LOU and Term Sheet
## 11337 Re: Bonneville Power Administration
## 11338 Re: Bonneville Power Administration
## 11339 Re: Bonneville Power Administration
## 11340 Re: Bonneville Power Administration
## 11341 Re: Bonneville Power Administration
## 11342 Re: Bonneville Power Administration
## 11343 Re: GPU Energy Amendment Letter
## 11344 Re: GPU Energy Amendment Letter
## 11345 Re: GPU Energy Amendment Letter
## 11346 New Legal Assistant Training
## 11347 New Legal Assistant Training
## 11348 New Legal Assistant Training
## 11349 Kennecott ETA Amendment Letter
## 11350 Kennecott ETA Amendment Letter
## 11351 Kennecott ETA Amendment Letter
## 11352 Kennecott ETA Amendment Letter
## 11353 Kennecott ETA Amendment Letter
## 11354 GPU Energy Amendment Letter
## 11355 GPU Energy Amendment Letter
## 11356 GPU Energy Amendment Letter
## 11357 GPU Energy Amendment Letter
## 11358 GPU Energy Amendment Letter
## 11359 GPU Energy Amendment Letter
## 11360 GPU Energy Amendment Letter
## 11361 List of Work Items
## 11362 Credit Seminar Issues
## 11363 Credit Seminar Issues
## 11364 Credit Seminar Issues
## 11365 Credit Seminar Issues
## 11366 Credit Seminar Issues
## 11367 Credit Seminar Issues
## 11368 Credit Seminar Issues
## 11369 Credit Seminar Issues
## 11370 Credit Seminar Issues
## 11371 Credit Seminar Issues
## 11372 Credit Seminar Issues
## 11373 Credit Seminar Issues
## 11374 Forms Meeting
## 11375 Forms Meeting
## 11376 Forms Meeting
## 11377 Forms Meeting
## 11378 Forms Meeting
## 11379 Re: kennecott
## 11380 Bonneville Power Administration
## 11381 Bonneville Power Administration
## 11382 Bonneville Power Administration
## 11383 Bonneville Power Administration
## 11384 Bonneville Power Administration
## 11385 Credit Semonar Issues
## 11386 Confirms Issues
## 11387 Confirms Issues
## 11388 Confirms Issues
## 11389 ETA Comments from GPU Energy
## 11390 ETA Comments from GPU Energy
## 11391 ETA Comments from GPU Energy
## 11392 ETA Comments from GPU Energy
## 11393 ETA Comments from GPU Energy
## 11394 Samantha Boyd
## 11395 Samantha Boyd
## 11396 Samantha Boyd
## 11397 Samantha Boyd
## 11398 Samantha Boyd
## 11399 Samantha Boyd
## 11400 Samantha Boyd
## 11401 Samantha Boyd
## 11402 Samantha Boyd
## 11403 Organic Confidentiality Agreement
## 11404 Organic Confidentiality Agreement
## 11405 Organic Confidentiality Agreement
## 11406 Organic Confidentiality Agreement
## 11407 Organic Confidentiality Agreement
## 11408 Organic Confidentiality Agreement
## 11409 newsletters
## 11410 ETA Changes
## 11411 margin exception report action items
## 11412 Margin Exception Report
## 11413 Canadian Memo
## 11414 Canadian Memo
## 11415 Canadian Memo
## 11416 Canadian Memo
## 11417 Canadian Memo
## 11418 Counterparty agreement of confirmations
## 11419 Counterparty agreement of confirmations
## 11420 Counterparty agreement of confirmations
## 11421 RSVP Form
## 11422 New phone numbers and whereabouts
## 11423 newsletters
## 11424 ETA Changes
## 11425 margin exception report action items
## 11426 Margin Exception Report
## 11427 Canadian Memo
## 11428 Canadian Memo
## 11429 Canadian Memo
## 11430 Canadian Memo
## 11431 Canadian Memo
## 11432 Counterparty agreement of confirmations
## 11433 Counterparty agreement of confirmations
## 11434 Counterparty agreement of confirmations
## 11435 FW: IntercontinentalExchange Amended Participant Agreement
## 11436 Re: Draft Responses to FERC Staff
## 11437 Re: Draft Responses to FERC Staff
## 11438 Re: Draft Responses to FERC Staff
## 11439 Re: Draft Responses to FERC Staff
## 11440 Re: Draft Responses to FERC Staff
## 11441 Re: Draft Responses to FERC Staff
## 11442 Re: Draft Responses to FERC Staff
## 11443 Re: Draft Responses to FERC Staff
## 11444 Re: Draft Responses to FERC Staff
## 11445 Re: Draft Responses to FERC Staff
## 11446 Re: Draft Responses to FERC Staff
## 11447 Re: Draft Responses to FERC Staff
## 11448 Re: Draft Responses to FERC Staff
## 11449 Re: Draft Responses to FERC Staff
## 11450 Re: Draft Responses to FERC Staff
## 11451 Re: Draft Responses to FERC Staff
## 11452 Re: Draft Responses to FERC Staff
## 11453 Re: Draft Responses to FERC Staff
## 11454 Re: Draft Responses to FERC Staff
## 11455 Re: Draft Responses to FERC Staff
## 11456 Re: Draft Responses to FERC Staff
## 11457 Re: Draft Responses to FERC Staff
## 11458 Re: Draft Responses to FERC Staff
## 11459 Re: Draft Responses to FERC Staff
## 11460 Re: Draft Responses to FERC Staff
## 11461 Re: Draft Responses to FERC Staff
## 11462 Re: Draft Responses to FERC Staff
## 11463 Re: Draft Responses to FERC Staff
## 11464 Re: Draft Responses to FERC Staff
## 11465 Re: Draft Responses to FERC Staff
## 11466 Re: Draft Responses to FERC Staff
## 11467 Re: Draft Responses to FERC Staff
## 11468 Re: Draft Responses to FERC Staff
## 11469 Re: Draft Responses to FERC Staff
## 11470 Re: Draft Responses to FERC Staff
## 11471 Re: Draft Responses to FERC Staff
## 11472 Financial Confirms
## 11473 Project Report
## 11474 Project Update
## 11475 Revised Project Report
## 11476 Project Update
## 11477 Project Update
## 11478 FW: Medicine Bow Tie-In Capacity
## 11479 FW: Medicine Bow Tie-In Capacity
## 11480 FW: Atmos Energy Corp.
## 11481 RE: Wyoming Interstate Gas Company (WIC) Maintenance
## 11482 FW: CMS Field Services - 09/01 prod
## 11483 FW: CMS Field Services - 09/01 prod
## 11484 Letter of Credit format
## 11485 RE: Citizens 10/01
## 11486 RE: Citizens 10/01
## 11487 RE: TODAY ONLY - SAVE UP TO $120 EXTRA ON AIRLINE TICKETS!
## 11488 RE: TODAY ONLY - SAVE UP TO $120 EXTRA ON AIRLINE TICKETS!
## 11489 RE: ENA Daily
## 11490 RE: Map to our house
## 11491 RE: Map to our house
## 11492 CIG invoices
## 11493 Lost creek fuel bid - December 01
## 11494 Lost creek fuel bid - December 01
## 11495 Lost creek fuel bid - December 01
## 11496 Lost creek fuel bid - December 01
## 11497 Lost creek fuel bid - December 01
## 11498 Lost creek fuel bid - December 01
## 11499 Lost creek fuel bid - December 01
## 11500 Lost creek fuel bid - December 01
## 11501 Lost creek fuel bid - December 01
## 11502 Lost creek fuel bid - December 01
## 11503 Lost creek fuel bid - December 01
## 11504 Lost creek fuel bid - December 01
## 11505 RE: December Fuel Bid for Lost Creek
## 11506 RE: CIG 10/01
## 11507 RE: FUGG Imbalances
## 11508 RE: FUGG Imbalances
## 11509 RE: FUGG Imbalances
## 11510 RE: FUGG Imbalances
## 11511 RE: FUGG Imbalances
## 11512 RE: FUGG Imbalances
## 11513 RE: FUGG Imbalances
## 11514 RE: FUGG Imbalances
## 11515 RE: FUGG Imbalances
## 11516 Medicine Bow
## 11517 Medicine Bow
## 11518 Medicine Bow
## 11519 Medicine Bow
## 11520 RE:
## 11521 RE: FUGG 10/01
## 11522 RE:
## 11523 RE: Crestone Imbalance
## 11524 RE: Wyoming Interstate Gas Company (WIC) Maintenance
## 11525 RE: Crestone Imbalance
## 11526 RE: Crestone Imbalance
## 11527 RE: DumbBells Membership - Please Reply
## 11528 Pillow
## 11529 RE:
## 11530 RE:
## 11531 Xmas Party
## 11532 RE: OBA Imbalance Sheet
## 11533 RE: OBA Imbalance Sheet
## 11534 RE: OBA Imbalance Sheet
## 11535 RE: OBA Imbalance Sheet
## 11536 RE: OBA Imbalance Sheet
## 11537 FW: Revised August
## 11538 FW: Revised August
## 11539 FW: Revised August
## 11540 RE: Pool
## 11541 RE: Pool
## 11542 Gas Daily Pricing
## 11543 Pool
## 11544 Football Pick
## 11545 Devon - Gas Day 4
## 11546 Devon - Gas Day 4
## 11547 Devon - Gas Day 4
## 11548 Devon - Gas Day 4
## 11549 Devon - Gas Day 4
## 11550 Devon - Gas Day 4
## 11551 Devon - Gas Day 4
## 11552 RE: Let s talk trade
## 11553 RE: Let s talk trade
## 11554 RE: Let s talk trade
## 11555 RE: Let s talk trade
## 11556 RE: Let s talk trade
## 11557 RE: Let s talk trade
## 11558 RE: Let s talk trade
## 11559 RE: Let s talk trade
## 11560 RE: Let s talk trade
## 11561 RE: Let s talk trade
## 11562 RE: Citizens
## 11563 RE: Phil s gift
## 11564 Crestone Final Payment Ticket #
## 11565 Crestone Final Payment Ticket #
## 11566 Crestone Final Payment Ticket #
## 11567 RE: Midstream
## 11568 RE: Retex/Exelon brokers deals at Debeque
## 11569 Gas Daily Pricing
## 11570 RE: Invoices
## 11571 RE: Invoices
## 11572 Gas Day 9 at Beaver Creek
## 11573 FUGG for July 01
## 11574 FUGG for July 01
## 11575 Calling Card
## 11576 Citizens - August 01
## 11577 Beaver Creek
## 11578 Beaver Creek
## 11579 Beaver Creek
## 11580 RE: KrispyKremeCalendar2001
## 11581 RE: KrispyKremeCalendar2001
## 11582 Gas Daily Pricing
## 11583 RE: pool
## 11584 RE: pool
## 11585 RE: Unify Exception List
## 11586 RE: Greeley Gas
## 11587 Gas Daily Pricing
## 11588 Fuel for September
## 11589 Fuel for September
## 11590 Lost Creek Fuel Bid for November 01
## 11591 Lost Creek Fuel Bid for November 01
## 11592 Lost Creek Fuel Bid for November 01
## 11593 Lost Creek Fuel Bid for November 01
## 11594 Lost Creek Fuel Bid for November 01
## 11595 Lost Creek Fuel Bid for November 01
## 11596 RE: Devon SFS 8/01
## 11597 Greeley Gas actuals
## 11598 RE: Deal 120644/120643; rate discrepancy with Enron NA
## 11599 RE: Crestone 10/00
## 11600 Scheduling Contacts for Enron
## 11601 RE: September Statements
## 11602 RE: Hello
## 11603 Crestone Service - September 2001
## 11604 RE: LC-002 sept revised
## 11605 Crestone 9/01 Service Verification and Fuel Sale Invoice
## 11606 Crestone 9/01 Service Verification and Fuel Sale Invoice
## 11607 RE: Revised September 2001
## 11608 RE: Greeley Gas - September 2001
## 11609 RE: Crestone Imbalance
## 11610 RE: when you are ready
## 11611 RE: when you are ready
## 11612 RE: Thanksgiving
## 11613 RE: Thanksgiving
## 11614 Revised Purchase for September
## 11615 Revised Purchase for September
## 11616 RE: September payment support
## 11617 RE: white stuff
## 11618 RE: September payment support
## 11619 RE: Attention!
## 11620 Cell Phones back on
## 11621 Cell Phones are turned off
## 11622 Theresa Staab Resume
## 11623 RE: Rent Check
## 11624 Denver Invoice
## 11625 Denver Invoice
## 11626 Denver Invoice
## 11627 November Purchase
## 11628 Final November Purchase
## 11629 New Spreadsheet
## 11630 Revised Independent
## 11631 Producers for November - Powder River
## 11632 RE: PSCO
## 11633 RE: Denver Deals
## 11634 Estimated November Purchase
## 11635 RE: Greeley Gas Oct 01
## 11636 RE: Crestone - Westport
## 11637 RE: Crestone - Westport
## 11638 RE: Crestone - Westport
## 11639 RE: Crestone - Citation
## 11640 RE: Crestone 10/01
## 11641 RE: Wire 11/29
## 11642 RE: Lost Creek and Crestone
## 11643 FW: Enron Greeley Contracts
## 11644 FW: Enron Greeley Contracts
## 11645 RE: vacation
## 11646 FW: Denver Deals
## 11647 FW: Medicine Bow Tie-In Capacity
## 11648 FW: Medicine Bow Tie-In Capacity
## 11649 Citation e-mail
## 11650 July Purchase
## 11651 Preliminary November Purchase
## 11652 Preliminary November Purchase
## 11653 Order on cubookstore.com
## 11654 RE: Expense Report Receipts Not Received
## 11655 RE: keep in touch
## 11656 Preliminary November purchase
## 11657 Preliminary November purchase
## 11658 Preliminary November purchase
## 11659 RE: How Are You Doing?
## 11660
## 11661 Preliminary November Purchase
## 11662 RE: Nov 01 - Anschutz Deal w BP
## 11663 How Are You Doing?
## 11664 Preliminary November Purchase
## 11665 Preliminary November Purchase
## 11666 Preliminary November Purchase
## 11667 How Are You?
## 11668 FW: Citizens - CIG Contract
## 11669 FW: Citizens - CIG Contract
## 11670 FW: Citizens - Deliveries to White Rock for LGSI/Woodward
## 11671 FW: Citizens - Deliveries to White Rock for LGSI/Woodward
## 11672 FW: Citizens - CIG NNT Services
## 11673 FW: Citizens - CIG NNT Services
## 11674 September Confirmations
## 11675 September Confirmations
## 11676 September Confirmations
## 11677 September Confirmations
## 11678 Renegotiation Letters
## 11679 Renegotiation Letters
## 11680 Kennedy
## 11681 FW: Draft Renegotiation letters
## 11682 FW: Medicine Bow Tie-In Capacity
## 11683 FW: Medicine Bow Tie-In Capacity
## 11684 FW: Medicine Bow Tie-In Capacity
## 11685
## 11686 FW: Medicine Bow Tie-In Capacity
## 11687 FW: Medicine Bow Tie-In Capacity
## 11688 FW: It s ready now Doc1
## 11689 FW: It s ready now Doc1
## 11690 FW: It s ready now Doc1
## 11691 FW: It s ready now Doc1
## 11692 FW: It s ready now Doc1
## 11693
## 11694
## 11695 August Confirmations
## 11696 August Confirms
## 11697 August Confirms
## 11698
## 11699
## 11700 RE: Hello!!!
## 11701 FW: Highlights from ENE Analyst Conference Call 11/14
## 11702 ENRON - A Study in How So Few Could Screw So Many
## 11703 RE: Contract price
## 11704 FW: Contract Price for Bazor Ridge Enron Contract 96045124
## 11705 RE: Contract Price for Bazor Ridge Enron Contract 96045124
## 11706 RE: Superior-Unwinding of Sonat Trigger Deal
## 11707 RE: CGLF for tomorrow
## 11708 RE: Superior-Unwinding of Sonat Trigger Deal
## 11709 RE: tonights practice
## 11710 RE: remapping
## 11711 RE: I re-read your email, my apologies if I was too casual and offended you, i didn t mean it that way -Frank
## 11712 RE:
## 11713 RE: Wire Detail for 10/25/01 wire for $195,209.95
## 11714 RE:
## 11715 RE: August Sonat
## 11716 RE: August Sonat
## 11717 RE: Wire Detail for 10/25/01 wire for $195,209.95
## 11718 FW: Varibus Outstanding Invoices
## 11719 RE: Varibus Outstanding Invoices
## 11720 RE: Varibus Outstanding Invoices
## 11721 RE: Wire Detail for 10/25/01 wire for $195,209.95
## 11722 RE: WOW!
## 11723 RE: cancellation of deal 44551573556
## 11724 RE: WOW!
## 11725 RE: Chicago Update
## 11726 RE: Soccer
## 11727 Summer camp 2002
## 11728 RE: August Sonat
## 11729 Parking in new garage
## 11730 Makeup game
## 11731 WorldCom card
## 11732 RE: WorldCom card
## 11733 RE: EOL Products
## 11734 RE: EOL Products
## 11735 FW: Important Information About Security & ClickAtHome
## 11736 Colonial Park
## 11737 Colonial Park
## 11738 Colonial Park
## 11739 RE: Colonial Park
## 11740 Colonial Park
## 11741 Colonial Park
## 11742 RE: remapping
## 11743 RE: remapping
## 11744 RE:
## 11745 New Sweet Mesquite at existing Eckerd s site
## 11746 New Sweet Mesquite at existing Eckerd s site
## 11747 FW: New Sweet Mesquite at existing Eckerd s site
## 11748 Sweet Mesquite site
## 11749 RE: Wed. practice/ice cream
## 11750 RE: THIS IS A SURVEY - ONE QUESTION
## 11751 FW: August Sonat
## 11752 RE: August Sonat
## 11753 RE: Wire Detail for 10/25/01 wire for $195,209.95
## 11754 RE: Kindergarten teacher gifts for Christmas
## 11755 RE: Networking Resources
## 11756 FW: Networking Resources
## 11757 Ken Lay email
## 11758 RE: i sne to the chronicle....haven t heard back yet!
## 11759 RE: Home E-mail
## 11760 United Way
## 11761 RE: Kindergarten teacher gifts for Christmas
## 11762 RE: Bazor Ridge Gas Plant
## 11763 Ormet
## 11764 RE: r u there today?
## 11765 RE: Morning
## 11766 FW: Way to Go, Hawks!!
## 11767 FW: Way to Go, Hawks!!
## 11768 FW: Way to Go, Hawks!!
## 11769 FW: Way to Go, Hawks!!
## 11770 FW: Way to Go, Hawks!!
## 11771 FW: Way to Go, Hawks!!
## 11772 FW: Way to Go, Hawks!!
## 11773 FW: Way to Go, Hawks!!
## 11774 FW: Way to Go, Hawks!!
## 11775 FW: Way to Go, Hawks!!
## 11776 FW: Way to Go, Hawks!!
## 11777 Way to Go, Hawks!!
## 11778 Way to Go, Hawks!!
## 11779 Way to Go, Hawks!!
## 11780 Way to Go, Hawks!!
## 11781 Way to Go, Hawks!!
## 11782 Way to Go, Hawks!!
## 11783 Way to Go, Hawks!!
## 11784 Way to Go, Hawks!!
## 11785 Way to Go, Hawks!!
## 11786 RE: TGT cashout language
## 11787
## 11788 FW: Cookie Sales 2002
## 11789 FW: ENRON - A Study in How So Few Could Screw So Many
## 11790 RE: TGT - Cashout Pricing Rejected by FERC
## 11791 PG&E 2001 Capacity Release Transactions on Transwestern Pipeline
## 11792 PG&E 2001 Capacity Release Transactions on Transwestern Pipeline
## 11793 PG&E 2001 Capacity Release Transactions on Transwestern Pipeline
## 11794
## 11795
## 11796
## 11797
## 11798
## 11799 RE: Richardson Products Co.
## 11800 RE: Richardson Products Co.
## 11801 RE: Richardson Products Co.
## 11802 RE: Richardson Products Co.
## 11803 RE: Richardson Products Co.
## 11804 RE: Richardson Products Co.
## 11805 RE: Richardson Products Co.
## 11806 RE: Richardson Products Co.
## 11807 RE: Richardson Products Co.
## 11808 RE: Richardson Products Co.
## 11809 RE: Richardson Products Co.
## 11810 RE: Richardson Products Co.
## 11811 RE: Richardson Products Co.
## 11812 RE: Richardson Products Co.
## 11813 RE: Richardson Products Co.
## 11814 Out of the Office
## 11815 Out of the Office
## 11816 Out of the Office
## 11817 Out of the Office
## 11818 Out of the Office
## 11819 Out of the Office
## 11820 Out of the Office
## 11821 Out of the Office
## 11822 Out of the Office
## 11823 Out of the Office
## 11824 Out of the Office
## 11825 Out of the Office
## 11826 Out of the Office
## 11827 Out of the Office
## 11828 Out of the Office
## 11829 Out of the Office
## 11830 Out of the Office
## 11831 Out of the Office
## 11832 Out of the Office
## 11833 Out of the Office
## 11834 Out of the Office
## 11835 Out of the Office
## 11836 Out of the Office
## 11837 Out of the Office
## 11838 Out of the Office
## 11839 Out of the Office
## 11840 Out of the Office
## 11841 Out of the Office
## 11842 Out of the Office
## 11843 Out of the Office
## 11844 Out of the Office
## 11845 Out of the Office
## 11846 Out of the Office
## 11847 Out of the Office
## 11848 Out of the Office
## 11849 Out of the Office
## 11850 Out of the Office
## 11851 Out of the Office
## 11852 Out of the Office
## 11853 Out of the Office
## 11854 Out of the Office
## 11855 Out of the Office
## 11856 Out of the Office
## 11857 Out of the Office
## 11858 Out of the Office
## 11859 Out of the Office
## 11860 Out of the Office
## 11861 Out of the Office
## 11862 Out of the Office
## 11863 Out of the Office
## 11864 Out of the Office
## 11865 Out of the Office
## 11866 Out of the Office
## 11867 Out of the Office
## 11868 Out of the Office
## 11869 Out of the Office
## 11870 Out of the Office
## 11871 Out of the Office
## 11872 Out of the Office
## 11873 Out of the Office
## 11874 Out of the Office
## 11875 Out of the Office
## 11876 California Capacity Report for Week of 12/26-12/28
## 11877 California Capacity Report for Week of 12/26-12/28
## 11878 California Capacity Report for Week of 12/26-12/28
## 11879 California Capacity Report for Week of 12/26-12/28
## 11880 California Capacity Report for Week of 12/26-12/28
## 11881 California Capacity Report for Week of 12/26-12/28
## 11882 California Capacity Report for Week of 12/26-12/28
## 11883 California Capacity Report for Week of 12/26-12/28
## 11884 California Capacity Report for Week of 12/26-12/28
## 11885 California Capacity Report for Week of 12/26-12/28
## 11886 California Capacity Report for Week of 12/26-12/28
## 11887 Reminder of weekly update for Horton
## 11888 Reminder of weekly update for Horton
## 11889 Reminder of weekly update for Horton
## 11890 Reminder of weekly update for Horton
## 11891 Reminder of weekly update for Horton
## 11892 Reminder of weekly update for Horton
## 11893 Reminder of weekly update for Horton
## 11894 Reminder of weekly update for Horton
## 11895 Reminder of weekly update for Horton
## 11896 Reminder of weekly update for Horton
## 11897 Reminder of weekly update for Horton
## 11898 Reminder of weekly update for Horton
## 11899 Reminder of weekly update for Horton
## 11900 Reminder of weekly update for Horton
## 11901 Reminder of weekly update for Horton
## 11902 Reminder of weekly update for Horton
## 11903 Reminder of weekly update for Horton
## 11904 Reminder of weekly update for Horton
## 11905 Reminder of weekly update for Horton
## 11906 Reminder of weekly update for Horton
## 11907 Reminder of weekly update for Horton
## 11908 Reminder of weekly update for Horton
## 11909 Reminder of weekly update for Horton
## 11910 Reminder of weekly update for Horton
## 11911 Reminder of weekly update for Horton
## 11912 Reminder of weekly update for Horton
## 11913 Reminder of weekly update for Horton
## 11914 Reminder of weekly update for Horton
## 11915 Reminder of weekly update for Horton
## 11916 Reminder of weekly update for Horton
## 11917 Angela Gregg
## 11918 RE: East Power Meeting
## 11919 RE: East Power Meeting
## 11920 RE: East Power Meeting
## 11921 RE: East Power Meeting
## 11922 RE: East Power Meeting
## 11923 RE: East Power Meeting
## 11924 RE: East Power Meeting
## 11925 RE: East Power Meeting
## 11926 RE: East Power Meeting
## 11927 RE: East Power Meeting
## 11928 RE: East Power Meeting
## 11929 RE: East Power Meeting
## 11930 RE: East Power Meeting
## 11931 RE: East Power Meeting
## 11932 RE: East Power Meeting
## 11933 RE: East Power Meeting
## 11934 RE: East Power Meeting
## 11935 RE: East Power Meeting
## 11936 RE: East Power Meeting
## 11937 RE: East Power Meeting
## 11938 FW: Ameren
## 11939 FW: Ameren
## 11940 Return of LC
## 11941 Return of LC
## 11942 Return of LC
## 11943 Return of LC
## 11944 Return of LC
## 11945 Return of LC
## 11946 FW: Columbia Energy Services Trades
## 11947 FW: Columbia Energy Services Trades
## 11948 Re: PRC review - phone calls
## 11949
## 11950
## 11951 Re: Hello
## 11952 Re: Hello
## 11953
## 11954 Re: Pick your Poison?
## 11955 Re: You Game?
## 11956 Final FIled Version
## 11957 Final FIled Version
## 11958 Re:
## 11959 Re:
## 11960
## 11961
## 11962 Re: Call saturday
## 11963 Re:
## 11964
## 11965
## 11966 Re: SM134 Proforma.xls
## 11967 Re: SM134 Proforma.xls
## 11968 RE: access
## 11969 RE: access
## 11970 Re: Global Ids
## 11971 Re: Global Ids
## 11972 Re: Global Ids
## 11973 Re: Global Ids
## 11974 Re: Global Ids
## 11975
## 11976 Re: Global Ids
## 11977
## 11978
## 11979
## 11980
## 11981
## 11982
## 11983
## 11984 Meeting with Governor Davis, need for additional comments/suggestions
## 11985 Meeting with Governor Davis, need for additional comments/suggestions
## 11986 Meeting with Governor Davis, need for additional comments/suggestions
## 11987 Meeting with Governor Davis, need for additional comments/suggestions
## 11988 New Generation, Nov 30th
## 11989 Re: SM134 Balcones Bank Loan
## 11990 Re: Untitled.exe Untitled.exe [22/23]
## 11991
## 11992
## 11993 Re: Needs Assessment Form
## 11994
## 11995
## 11996
## 11997
## 11998 Re: SM134
## 11999 Re: Analyst PRC
## 12000 Re: Wiring instructions
## 12001 updated lease information
## 12002
## 12003 Preliminary 2001 Northwest Hydro Outlook
## 12004 Analyst Rotating
## 12005 Re: Analyst Rotating
## 12006 Re:
## 12007 California - Jan 13 meeting
## 12008 California Action Update 1-14-00
## 12009 California Action Update 1-14-00
## 12010
## 12011
## 12012
## 12013 Re: Please respond
## 12014 Re: Please respond
## 12015
## 12016 Re: Response to PGE request for gas
## 12017
## 12018
## 12019
## 12020
## 12021 Re: Draft of Opposition to ORA/TURN petition
## 12022
## 12023 Kidventure Camp
## 12024 Re: Resume
## 12025 Analyst Interviews Needed - 2/15/01
## 12026 Status of QF negotiations on QFs & Legislative Update
## 12027 Status of QF negotiations on QFs & Legislative Update
## 12028 NGI access to eol
## 12029 Re: NGI access to eol
## 12030 RE: Loan for San Marcos
## 12031 Re: SM134
## 12032 Re: 32 acres
## 12033 RE:Stock Options
## 12034 Re: Bishops Corner Partnership
## 12035 CPUC posts audit reports
## 12036
## 12037 Highlights of Executive Summary by KPMG -- CPUC Audit Report on Edison
## 12038 Highlights of Executive Summary by KPMG -- CPUC Audit Report on Edison
## 12039 Re: The Stage
## 12040
## 12041 Re: web site
## 12042 Re: web site
## 12043
## 12044 RE: Phillip Allen Response on Partnership Issues
## 12045
## 12046
## 12047 re: book admin for Pipe/Gas daily option book
## 12048 final business points
## 12049
## 12050
## 12051 re: book admin for Pipe/Gas daily option book
## 12052 Re: Pipe Options Book Admin Role
## 12053
## 12054
## 12055 Re: Listing of Desk Directors
## 12056 Smeltering
## 12057 Governor Reports Results of 1st RFP -- ONLY 500 MW!!!!
## 12058 Governor Reports Results of 1st RFP -- ONLY 500 MW!!!!
## 12059
## 12060 Re: stage coach
## 12061
## 12062 the stage
## 12063
## 12064 California Gas Demand Growth
## 12065 AEC Volumes at OPAL
## 12066 Re: AEC Volumes at OPAL
## 12067 Re: EXTRINSIC VALUE WORKSHEET
## 12068 Re: Great Web Site
## 12069 CERA Analysis - California
## 12070 CERA Analysis - California
## 12071 Re:
## 12072
## 12073
## 12074
## 12075
## 12076 RE:
## 12077 RE:
## 12078
## 12079 Re: MAI Appraisal
## 12080 RE:
## 12081 DRAW2.xls
## 12082
## 12083
## 12084
## 12085 Re: DRAW2.xls
## 12086 Re: General Issues
## 12087
## 12088
## 12089 Re:
## 12090 Re: General Issues
## 12091 Re: FW: Change in the agroup Cycling Schedule
## 12092 SM134 Proforma2.xls
## 12093 Daily California Call Moved to Weekly Call
## 12094 leander and the Stage
## 12095 Weekly Status Meeting
## 12096 Re: Weekly Status Meeting
## 12097 SM134 Proforma2.xls
## 12098 Recession Scenario Impact on Power and Gas
## 12099 Recession Scenario Impact on Power and Gas
## 12100 Recession Scenario Impact on Power and Gas
## 12101 Re: Comparison of Estimates
## 12102 New Generation Report for January 2001
## 12103 Sagewood II
## 12104 RE: Comparison of Estimates
## 12105 Re: Genesis Plant Tour
## 12106
## 12107 San Marcos construction project
## 12108 Re: Enron s March Basdeload Fixed price physical deals as of 2/27\t\t/01 Attachment is free from viruses. Scan Mail
## 12109 Re: Producer Services
## 12110 Re: Insight Hardware
## 12111
## 12112
## 12113
## 12114
## 12115
## 12116
## 12117
## 12118
## 12119
## 12120 FW: Cross Commodity
## 12121 Re: MS 150
## 12122
## 12123 Re: the stage
## 12124 RE: the stage
## 12125
## 12126 Revised Long Range Hydro Forecast
## 12127 Re: San Marcos
## 12128 Sagewood Phase II
## 12129
## 12130 matt Smith
## 12131
## 12132
## 12133
## 12134 FW: ALL 1099 TAX QUESTIONS - ANSWERED
## 12135 Bishops Corner, Ltd. Buyout
## 12136
## 12137
## 12138
## 12139
## 12140 Bishops Corner, Ltd. Buyout
## 12141
## 12142
## 12143 Sagewood M/F
## 12144 Sagewood M/F
## 12145 Sagewood M/F
## 12146 RE: PERSONAL AND CONFIDENTIAL COMPENSATION INFORMATION
## 12147 Behind the Stage Two
## 12148 Re: Confidential Employee Information/Lenhart
## 12149
## 12150 Matt Smith
## 12151
## 12152 Re: Buyout
## 12153
## 12154 Your Approval is Overdue: Access Request for mike.grigsby@enron.com
## 12155 RE: Buyout
## 12156
## 12157 Re: Buyout
## 12158 Re: Buyout
## 12159 Re: Buyout
## 12160 Re:
## 12161 Current Gas Desk List
## 12162 Current Gas Desk List
## 12163 Current Gas Desk List
## 12164 Re: Purchase and Sale Agreement
## 12165 Re: Derek Kelly
## 12166
## 12167
## 12168
## 12169 Re: NGI access to eol
## 12170
## 12171
## 12172
## 12173
## 12174
## 12175
## 12176 Re: Opening Day - Baseball Tickets
## 12177
## 12178 Nondeliverable mail
## 12179 Nondeliverable mail
## 12180
## 12181
## 12182 Re:
## 12183
## 12184 Enron Center Garage
## 12185 Re: Location
## 12186
## 12187 EES Gas Desk Happy Hour
## 12188 Re: Answers to List
## 12189
## 12190 Re:
## 12191
## 12192 SanJuan/SoCal spread prices
## 12193 Re: SanJuan/SoCal spread prices
## 12194 Re: FW: SanJuan/SoCal spread prices
## 12195
## 12196 CAISO demand reduction
## 12197
## 12198
## 12199
## 12200 Re: The Stage
## 12201
## 12202
## 12203
## 12204
## 12205 RE: The Stage
## 12206 Re: insurance - the stage
## 12207 approved trader list
## 12208 approved trader list
## 12209 approved trader list
## 12210
## 12211 Re: Presentation to Trading Track A&A
## 12212 Re: FW: 2nd lien info. and private lien info - The Stage Coach Apartments, Phillip Allen
## 12213 Re: Resume
## 12214 RE: Presentation to Trading Track A&A
## 12215 Re: Do you still access data from Inteligence Press online??
## 12216
## 12217 Re: FW: Trading Track Program
## 12218 Re: Analyst Bryan Hull
## 12219 Re: Resume
## 12220 Re: Analyst Ashish Mahajan
## 12221
## 12222
## 12223 Re: The Stage
## 12224 Re:
## 12225 Instructions for FERC Meetings
## 12226 Instructions for FERC Meetings
## 12227 Instructions for FERC Meetings
## 12228 Instructions for FERC Meetings
## 12229 Instructions for FERC Meetings
## 12230 Instructions for FERC Meetings
## 12231 Instructions for FERC Meetings
## 12232 Instructions for FERC Meetings
## 12233 Instructions for FERC Meetings
## 12234 Instructions for FERC Meetings
## 12235 Instructions for FERC Meetings
## 12236 Re: Instructions for FERC Meetings
## 12237
## 12238 Re: This morning s Commission meeting delayed
## 12239 Re: This morning s Commission meeting delayed
## 12240 Re: Unocal WAHA Storage
## 12241 Re: Unocal WAHA Storage
## 12242 Re: Unocal WAHA Storage
## 12243 Re: FERC s Prospective Mitigation and Monitoring Plan for CA Wholesale Electric Markets
## 12244 Re:
## 12245 Re: Leander etc.
## 12246
## 12247
## 12248
## 12249 Re: Analyst Resume - Rafael Avila
## 12250 Request from Steve Kean
## 12251 Request from Steve Kean
## 12252 Re: Request from Steve Kean
## 12253 2- SURVEY/INFORMATION EMAIL
## 12254 4-URGENT - OWA Please print this now.
## 12255 Re: 2- SURVEY - PHILLIP ALLEN
## 12256
## 12257
## 12258
## 12259 Re:
## 12260 Re: Western Wholesale Activities - Gas & Power Conf. Call
## 12261 Re: Western Wholesale Activities - Gas & Power Conf. Call
## 12262 Re: Western Wholesale Activities - Gas & Power Conf. Call
## 12263 Re: Western Wholesale Activities - Gas & Power Conf. Call
## 12264 Re: Western Wholesale Activities - Gas & Power Conf. Call
## 12265 Re: Western Wholesale Activities - Gas & Power Conf. Call
## 12266 Re: Western Wholesale Activities - Gas & Power Conf. Call
## 12267 California Update 5/4/01
## 12268 Re: Western Wholesale Activities - Gas & Power Conf. Call
## 12269 Re: Western Wholesale Activities - Gas & Power Conf. Call
## 12270 Re: Western Wholesale Activities - Gas & Power Conf. Call
## 12271 California Summary
## 12272 California Summary
## 12273 Re:
## 12274
## 12275
## 12276 Re: 2- SURVEY/INFORMATION EMAIL 5-14- 01
## 12277
## 12278
## 12279 Stick it in your Shockmachine!
## 12280 Re: Are you trying to be funny?
## 12281 Re: receipts
## 12282 Re:
## 12283
## 12284
## 12285
## 12286
## 12287
## 12288
## 12289
## 12290 Re:
## 12291 eol
## 12292 eol
## 12293 eol
## 12294 Re: ENROLLMENT CONFIRMATION/Impact/ECT
## 12295
## 12296
## 12297
## 12298 Re:
## 12299 RE: Choosing a style
## 12300 dopewars
## 12301 dopewars
## 12302
## 12303 Re: Vishal Apte
## 12304
## 12305 Re: Website Access approval requested
## 12306 Re: Curve Update
## 12307
## 12308 Re: APEA - $228,204 hit
## 12309 Re: Kim Olinger - Transport Rate Team
## 12310 Re: January El paso invoice
## 12311 Re: W basis quotes
## 12312 Re: APEA - $228,204 hit
## 12313 RE: W basis quotes
## 12314 RE: W basis quotes
## 12315 Western Strategy Briefing
## 12316 Storage of Cycles at the Body Shop
## 12317 Re:
## 12318 Re: February expenses
## 12319 Re: Desk to Desk access Request
## 12320 PIRA s California/Southwest Gas Pipeline Study
## 12321 Re: 91acres
## 12322
## 12323 Re: Feb. Expense Report
## 12324
## 12325 Just Released! Exclusive new animation from Stan Lee
## 12326 Re:
## 12327 Western Strategy Summaries
## 12328
## 12329 Re:
## 12330 Re: Mission South
## 12331 RE: a/c for #27
## 12332
## 12333 re: apt. #2
## 12334 Priority List
## 12335 Priority List
## 12336 Priority List
## 12337 Priority List
## 12338
## 12339
## 12340 re: apt. #2
## 12341
## 12342 Re: 220,000 MW of New Capacity Needed by 2012
## 12343
## 12344 Maps
## 12345 Re:
## 12346 Maps
## 12347
## 12348 Re: Maps
## 12349 Meeting-THURSDAY, MARCH 23 - 11:15 AM
## 12350 Re: MS 150
## 12351 Western Strategy Briefing Materials
## 12352 re: storm results & refrigerators
## 12353
## 12354 Re: Inspection for Mission South
## 12355
## 12356 Re: your moms birthday
## 12357 RE: Inspection for Mission South
## 12358
## 12359 Alliance netback worksheet
## 12360 Alliance netback worksheet
## 12361 Alliance netback worksheet
## 12362 Re: Payroll Reclasses
## 12363 Re: DSL Install
## 12364 Re: Foundation leveling on #2 & #3 apts.
## 12365 Re: #30
## 12366 Western Strategy Session Materials
## 12367 Western Strategy Session Materials
## 12368 Re: #30
## 12369 SW Gas
## 12370 Re: SW Gas
## 12371 Re: DSL- Installs
## 12372 Re: 5/08/00
## 12373 Large Deal Alert
## 12374 Re: 91 acres
## 12375 Gas Transportation Market Intelligence
## 12376 Gas Transportation Market Intelligence
## 12377 Gas Transportation Market Intelligence
## 12378 Gas Transportation Market Intelligence
## 12379 Gas Transportation Market Intelligence
## 12380
## 12381
## 12382 Re: Todays update
## 12383
## 12384 Re: balance on truck/loan
## 12385 Transport p&l
## 12386 Re: What s happening?
## 12387 RE: 91 acres
## 12388
## 12389 Re: Compaq M700 laptop
## 12390
## 12391
## 12392
## 12393
## 12394
## 12395 Thoughts on Presentation
## 12396
## 12397 Re: Wade
## 12398 Re: The New Power Company
## 12399 FT-Denver book on EOL
## 12400 Download Frogger before it hops away!
## 12401 Re:
## 12402 Re:
## 12403 gas storage model
## 12404 West Power Strategy Materials
## 12405 West Power Strategy Materials
## 12406 (Reminder) Update GIS Information
## 12407 Re: Notices
## 12408 Executive Impact and Influence Course
## 12409 Re: Thoughts on Presentation
## 12410 Re: Memory
## 12411 Re: market intelligence
## 12412 Re: Brenda Stones telephone numbers
## 12413
## 12414 Re: Katy flatlands
## 12415 Re: EXECUTIVE IMPACT COURSE
## 12416 Natural Gas Customers
## 12417 Natural Gas Customers
## 12418 System Meeting 7/11
## 12419 test
## 12420 Re: New Notice from Transwestern Pipeline Co.
## 12421 Re: Katy flatlands
## 12422 assoc. for west desk
## 12423 Systems Meeting 7/18
## 12424
## 12425
## 12426 assoc. for west desk
## 12427 Project Elvis and Cactus Open Gas Position
## 12428 Re: 65th BD for Nea
## 12429 El Paso Blanco Avg product
## 12430 El Paso Blanco Avg product
## 12431 El Paso Blanco Avg product
## 12432 Comments on Order 637 Compliance Filings
## 12433 Re: lunch
## 12434 Interactive Information Resource
## 12435
## 12436
## 12437 Re: your address
## 12438 For Wade
## 12439 Price for Stanfield Term
## 12440 Re: New Notice from Transwestern Pipeline Co.
## 12441 New Generation Update 7/24/00
## 12442 New Generation Update 7/24/00
## 12443 New Generation Update 7/24/00
## 12444 New Generation Update 7/24/00
## 12445 New Generation Update 7/24/00
## 12446 Re: Electric Overage (1824.62)
## 12447
## 12448
## 12449
## 12450 Gas fundamentals development website
## 12451 Gas fundamentals development website
## 12452 Gas fundamentals development website
## 12453 Gas fundamentals development website
## 12454 Gas fundamentals development website
## 12455 Re: Report on Property
## 12456 New Socal Curves
## 12457 Re: trading opportunities
## 12458 Request Submitted: Access Request for frank.ermis@enron.com
## 12459 Your Approval is Overdue: Access Request for paul.t.lucci@enron.com
## 12460
## 12461 Re: TRANSPORTATION MODEL
## 12462 TRANSPORTATION MODEL
## 12463 Re: Ad Hoc VaR model
## 12464 tv on 33
## 12465 Re: Your approval is requested
## 12466
## 12467 Re:
## 12468 ENA Management Committee
## 12469 Re:
## 12470 Re: enron close to 85
## 12471 Daily Report
## 12472 Daily Report
## 12473 Daily Duties
## 12474
## 12475
## 12476
## 12477 Re: checkbook and budget
## 12478 Re: ENA Fileplan Project - Needs your approval
## 12479 Re: receipts
## 12480
## 12481 Re: Evaluation for new trading application
## 12482
## 12483
## 12484
## 12485
## 12486
## 12487 Re: regulatory filing summary
## 12488 Re: Meeting to discuss 2001 direct expense plan?
## 12489
## 12490
## 12491 New Generation
## 12492 New Generation
## 12493 New Generation
## 12494 New Generation
## 12495 New Generation
## 12496
## 12497
## 12498
## 12499 Re: Security Request: CLOG-4NNJEZ has been Denied.
## sender_status
## 1 Manager
## 2 Manager
## 3 Manager
## 4 Manager
## 5 Manager
## 6 Employee
## 7 Employee
## 8 Employee
## 9 Employee
## 10 Employee
## 11 Employee
## 12 Employee
## 13 Employee
## 14 Employee
## 15 Employee
## 16 Employee
## 17 Employee
## 18 Employee
## 19 Employee
## 20 Employee
## 21 Employee
## 22 Employee
## 23 Employee
## 24 Employee
## 25 Employee
## 26 Employee
## 27 Employee
## 28 Employee
## 29 Employee
## 30 Employee
## 31 Employee
## 32 Employee
## 33 Employee
## 34 Employee
## 35 Employee
## 36 Employee
## 37 Employee
## 38 Employee
## 39 Employee
## 40 Employee
## 41 Employee
## 42 Employee
## 43 Employee
## 44 Employee
## 45 Employee
## 46 Employee
## 47 Employee
## 48 Employee
## 49 Employee
## 50 Employee
## 51 Employee
## 52 Employee
## 53 Employee
## 54 Employee
## 55 Employee
## 56 Employee
## 57 Employee
## 58 Employee
## 59 Employee
## 60 Employee
## 61 Director
## 62 Director
## 63 Director
## 64 Director
## 65 Director
## 66 Director
## 67 Director
## 68 Director
## 69 Director
## 70 Director
## 71 Director
## 72 Director
## 73 Director
## 74 Director
## 75 Director
## 76 Director
## 77 Director
## 78 Director
## 79 Director
## 80 Director
## 81 Director
## 82 Director
## 83 Director
## 84 Director
## 85 Director
## 86 Director
## 87 Director
## 88 Director
## 89 Director
## 90 Director
## 91 Director
## 92 Director
## 93 Director
## 94 Director
## 95 Director
## 96 Director
## 97 Director
## 98 Director
## 99 Director
## 100 Director
## 101 Director
## 102 Director
## 103 Director
## 104 Director
## 105 Director
## 106 Director
## 107 Director
## 108 Director
## 109 Director
## 110 Director
## 111 Director
## 112 Director
## 113 Director
## 114 Director
## 115 Director
## 116 Director
## 117 Director
## 118 Director
## 119 Director
## 120 Director
## 121 Director
## 122 Director
## 123 Director
## 124 Director
## 125 Employee
## 126 Employee
## 127 Employee
## 128 Employee
## 129 Employee
## 130 Employee
## 131 Employee
## 132 Employee
## 133 Employee
## 134 Employee
## 135 Employee
## 136 Employee
## 137 Employee
## 138 Employee
## 139 Employee
## 140 Employee
## 141 Employee
## 142 Employee
## 143 Employee
## 144 Employee
## 145 Employee
## 146 Employee
## 147 Employee
## 148 Employee
## 149 Employee
## 150 Employee
## 151 Employee
## 152 Employee
## 153 Employee
## 154 Employee
## 155 Employee
## 156 Employee
## 157 Employee
## 158 Employee
## 159 Director
## 160 Director
## 161 Director
## 162 Director
## 163 Director
## 164 Employee
## 165 Employee
## 166 Employee
## 167 Employee
## 168 Director
## 169 Director
## 170 Director
## 171 Director
## 172 Director
## 173 Director
## 174 Employee
## 175 Employee
## 176 Employee
## 177 Employee
## 178 Employee
## 179 Employee
## 180 Employee
## 181 Employee
## 182 Employee
## 183 Employee
## 184 Employee
## 185 Employee
## 186 Employee
## 187 Employee
## 188 Employee
## 189 Employee
## 190 Employee
## 191 Employee
## 192 Vice President
## 193 Vice President
## 194 Vice President
## 195 Vice President
## 196 Vice President
## 197 Vice President
## 198 Vice President
## 199 Vice President
## 200 Vice President
## 201 Vice President
## 202 Vice President
## 203 Vice President
## 204 Vice President
## 205 Vice President
## 206 Vice President
## 207 Vice President
## 208 Vice President
## 209 Vice President
## 210 Vice President
## 211 Director
## 212 Director
## 213 Director
## 214 Director
## 215 Director
## 216 Director
## 217 Director
## 218 Director
## 219 Director
## 220 Director
## 221 Director
## 222 Director
## 223 Director
## 224 Director
## 225 Director
## 226 Director
## 227 Director
## 228 Director
## 229 Director
## 230 Director
## 231 Director
## 232 Director
## 233 Director
## 234 Director
## 235 Director
## 236 Director
## 237 Director
## 238 Director
## 239 Director
## 240 Director
## 241 Director
## 242 Director
## 243 Director
## 244 Director
## 245 Director
## 246 Director
## 247 Director
## 248 Director
## 249 Director
## 250 Director
## 251 Director
## 252 Director
## 253 Director
## 254 Director
## 255 Director
## 256 Director
## 257 Director
## 258 Director
## 259 Director
## 260 Director
## 261 Director
## 262 Director
## 263 Director
## 264 Director
## 265 Director
## 266 Director
## 267 Director
## 268 Director
## 269 Director
## 270 Director
## 271 Director
## 272 Director
## 273 Director
## 274 Director
## 275 Director
## 276 Director
## 277 Director
## 278 Director
## 279 Director
## 280 Director
## 281 Vice President
## 282 Director
## 283 Director
## 284 Director
## 285 Director
## 286 Director
## 287 Director
## 288 Director
## 289 Director
## 290 Director
## 291 Director
## 292 Director
## 293 Director
## 294 Director
## 295 Director
## 296 Director
## 297 Director
## 298 Director
## 299 Director
## 300 Director
## 301 Director
## 302 Director
## 303 Director
## 304 Director
## 305 Director
## 306 Director
## 307 Director
## 308 Director
## 309 Director
## 310 Director
## 311 Director
## 312 Director
## 313 Director
## 314 Director
## 315 Director
## 316 Director
## 317 Director
## 318 Director
## 319 Director
## 320 Director
## 321 Director
## 322 Director
## 323 Director
## 324 Director
## 325 Director
## 326 Director
## 327 Director
## 328 Director
## 329 Director
## 330 Director
## 331 Director
## 332 Director
## 333 Director
## 334 Director
## 335 Director
## 336 Director
## 337 Director
## 338 Director
## 339 Director
## 340 Director
## 341 Director
## 342 Director
## 343 Director
## 344 Director
## 345 Director
## 346 Director
## 347 Director
## 348 Director
## 349 Director
## 350 Director
## 351 Director
## 352 Director
## 353 Director
## 354 Director
## 355 Director
## 356 Director
## 357 Director
## 358 Director
## 359 Director
## 360 Director
## 361 Director
## 362 Director
## 363 Director
## 364 Director
## 365 Director
## 366 Director
## 367 Director
## 368 Director
## 369 Director
## 370 Director
## 371 Director
## 372 Director
## 373 Director
## 374 Director
## 375 Director
## 376 Director
## 377 Director
## 378 Director
## 379 Director
## 380 Director
## 381 Director
## 382 Director
## 383 Director
## 384 Director
## 385 Director
## 386 Director
## 387 Director
## 388 Director
## 389 Director
## 390 Director
## 391 Director
## 392 Director
## 393 Director
## 394 Director
## 395 Director
## 396 Director
## 397 Director
## 398 Director
## 399 Director
## 400 Director
## 401 Director
## 402 Director
## 403 Director
## 404 Director
## 405 Director
## 406 Director
## 407 Director
## 408 Director
## 409 Director
## 410 Director
## 411 Director
## 412 Director
## 413 Director
## 414 Director
## 415 Director
## 416 Director
## 417 Director
## 418 Director
## 419 Director
## 420 Director
## 421 Director
## 422 Director
## 423 Director
## 424 Director
## 425 Director
## 426 Director
## 427 Director
## 428 Director
## 429 Director
## 430 Director
## 431 Director
## 432 Director
## 433 Director
## 434 Director
## 435 Director
## 436 Director
## 437 Director
## 438 Director
## 439 Director
## 440 Director
## 441 Director
## 442 Director
## 443 Director
## 444 Director
## 445 Director
## 446 Director
## 447 Director
## 448 Director
## 449 Director
## 450 Director
## 451 Director
## 452 Director
## 453 Director
## 454 Director
## 455 Director
## 456 Director
## 457 Director
## 458 Director
## 459 Director
## 460 Director
## 461 Director
## 462 Director
## 463 Director
## 464 Director
## 465 Director
## 466 Director
## 467 Director
## 468 Director
## 469 Director
## 470 Director
## 471 Director
## 472 Director
## 473 Director
## 474 Director
## 475 Director
## 476 Director
## 477 Director
## 478 Director
## 479 Director
## 480 Director
## 481 Director
## 482 Director
## 483 Director
## 484 Director
## 485 Director
## 486 Director
## 487 Director
## 488 Director
## 489 Director
## 490 Director
## 491 Director
## 492 Director
## 493 Director
## 494 Director
## 495 Director
## 496 Director
## 497 Director
## 498 Director
## 499 Director
## 500 Director
## 501 Director
## 502 Director
## 503 Director
## 504 Director
## 505 Director
## 506 Director
## 507 Director
## 508 Director
## 509 Director
## 510 Director
## 511 Director
## 512 Director
## 513 Director
## 514 Director
## 515 Director
## 516 Director
## 517 Director
## 518 Director
## 519 Director
## 520 Director
## 521 Director
## 522 Director
## 523 Director
## 524 Director
## 525 Director
## 526 Director
## 527 Director
## 528 Director
## 529 Director
## 530 Director
## 531 Director
## 532 Director
## 533 Director
## 534 Director
## 535 Director
## 536 Director
## 537 Director
## 538 Director
## 539 Director
## 540 Director
## 541 Director
## 542 Director
## 543 Director
## 544 Director
## 545 Director
## 546 Director
## 547 Director
## 548 Director
## 549 Director
## 550 Director
## 551 Director
## 552 Director
## 553 Director
## 554 Director
## 555 Director
## 556 Director
## 557 Director
## 558 Director
## 559 Director
## 560 Director
## 561 Director
## 562 Director
## 563 Director
## 564 Director
## 565 Director
## 566 Director
## 567 Director
## 568 Director
## 569 Director
## 570 Director
## 571 Director
## 572 Director
## 573 Director
## 574 Director
## 575 Director
## 576 Director
## 577 Director
## 578 Director
## 579 Director
## 580 Director
## 581 Director
## 582 Director
## 583 Director
## 584 Director
## 585 Director
## 586 Director
## 587 Director
## 588 Director
## 589 Director
## 590 Director
## 591 Director
## 592 Director
## 593 Director
## 594 Director
## 595 Director
## 596 Director
## 597 Director
## 598 Director
## 599 Director
## 600 Director
## 601 Director
## 602 Director
## 603 Director
## 604 Director
## 605 Director
## 606 Director
## 607 Director
## 608 Director
## 609 Director
## 610 Director
## 611 Director
## 612 Director
## 613 Director
## 614 Director
## 615 Director
## 616 Director
## 617 Director
## 618 Director
## 619 Director
## 620 Director
## 621 Director
## 622 Director
## 623 Director
## 624 Director
## 625 Director
## 626 Director
## 627 Director
## 628 Director
## 629 Director
## 630 Director
## 631 Director
## 632 Director
## 633 Director
## 634 Director
## 635 Director
## 636 Director
## 637 Director
## 638 Director
## 639 Director
## 640 Director
## 641 Director
## 642 Director
## 643 Director
## 644 Director
## 645 Director
## 646 Director
## 647 Director
## 648 Director
## 649 Director
## 650 Director
## 651 Director
## 652 Director
## 653 Director
## 654 Director
## 655 Director
## 656 Director
## 657 Director
## 658 Director
## 659 Director
## 660 Director
## 661 Director
## 662 Director
## 663 Director
## 664 Director
## 665 Director
## 666 Director
## 667 Director
## 668 Director
## 669 Director
## 670 Director
## 671 Director
## 672 Director
## 673 Director
## 674 Director
## 675 Director
## 676 Director
## 677 Director
## 678 Director
## 679 Director
## 680 Director
## 681 Director
## 682 Director
## 683 Director
## 684 Director
## 685 Director
## 686 Director
## 687 Director
## 688 Director
## 689 Director
## 690 Director
## 691 Director
## 692 Director
## 693 Director
## 694 Director
## 695 Director
## 696 Director
## 697 Director
## 698 Director
## 699 Director
## 700 Director
## 701 Director
## 702 Director
## 703 Director
## 704 Director
## 705 Director
## 706 Director
## 707 Director
## 708 Director
## 709 Director
## 710 Director
## 711 Director
## 712 Director
## 713 Director
## 714 Director
## 715 Director
## 716 Director
## 717 Director
## 718 Director
## 719 Director
## 720 Director
## 721 Director
## 722 Director
## 723 Director
## 724 Director
## 725 Director
## 726 Director
## 727 Director
## 728 Director
## 729 Director
## 730 Director
## 731 Director
## 732 Director
## 733 Director
## 734 Director
## 735 Director
## 736 Director
## 737 Director
## 738 Director
## 739 Director
## 740 Director
## 741 Director
## 742 Director
## 743 Director
## 744 Director
## 745 Director
## 746 Director
## 747 Director
## 748 Director
## 749 Director
## 750 Director
## 751 Director
## 752 Director
## 753 Director
## 754 Director
## 755 Director
## 756 Director
## 757 Director
## 758 Director
## 759 Director
## 760 Director
## 761 Director
## 762 Director
## 763 Director
## 764 Director
## 765 Director
## 766 Director
## 767 Director
## 768 Director
## 769 Director
## 770 Director
## 771 Director
## 772 Director
## 773 Director
## 774 Director
## 775 Director
## 776 Director
## 777 Director
## 778 Director
## 779 Director
## 780 Director
## 781 Director
## 782 Director
## 783 Director
## 784 Director
## 785 Director
## 786 Director
## 787 Director
## 788 Director
## 789 Director
## 790 Director
## 791 Director
## 792 Director
## 793 Director
## 794 Director
## 795 Director
## 796 Director
## 797 Director
## 798 Director
## 799 Director
## 800 Director
## 801 Director
## 802 Director
## 803 Director
## 804 Director
## 805 Director
## 806 Director
## 807 Director
## 808 Director
## 809 Director
## 810 Director
## 811 Director
## 812 Director
## 813 Director
## 814 Director
## 815 Director
## 816 Director
## 817 Director
## 818 Director
## 819 Director
## 820 Director
## 821 Director
## 822 Director
## 823 Director
## 824 Director
## 825 Director
## 826 Director
## 827 Director
## 828 Director
## 829 Director
## 830 Director
## 831 Director
## 832 Director
## 833 Director
## 834 Director
## 835 Director
## 836 Director
## 837 Director
## 838 Director
## 839 Director
## 840 Director
## 841 Director
## 842 Director
## 843 Director
## 844 Director
## 845 Director
## 846 Director
## 847 Director
## 848 Director
## 849 Director
## 850 Director
## 851 Director
## 852 Director
## 853 Director
## 854 Director
## 855 Director
## 856 Director
## 857 Director
## 858 Director
## 859 Director
## 860 Director
## 861 Director
## 862 Director
## 863 Director
## 864 Director
## 865 Director
## 866 Director
## 867 Director
## 868 Director
## 869 Director
## 870 Director
## 871 Director
## 872 Director
## 873 Director
## 874 Director
## 875 Director
## 876 Director
## 877 Director
## 878 Director
## 879 Director
## 880 Director
## 881 Director
## 882 Director
## 883 Director
## 884 Director
## 885 Director
## 886 Director
## 887 Director
## 888 Director
## 889 Director
## 890 Director
## 891 Director
## 892 Director
## 893 Director
## 894 Director
## 895 Director
## 896 Director
## 897 Director
## 898 Director
## 899 Director
## 900 Director
## 901 Director
## 902 Director
## 903 Director
## 904 Director
## 905 Director
## 906 Director
## 907 Director
## 908 Director
## 909 Director
## 910 Director
## 911 Director
## 912 Director
## 913 Director
## 914 Director
## 915 Director
## 916 Director
## 917 Director
## 918 Director
## 919 Director
## 920 Director
## 921 Director
## 922 Director
## 923 Director
## 924 Director
## 925 Director
## 926 Director
## 927 Director
## 928 Employee
## 929 Employee
## 930 Employee
## 931 Employee
## 932 Employee
## 933 Employee
## 934 Employee
## 935 Employee
## 936 Employee
## 937 Employee
## 938 Employee
## 939 Employee
## 940 Employee
## 941 Employee
## 942 Employee
## 943 Employee
## 944 Employee
## 945 Employee
## 946 Employee
## 947 Employee
## 948 Vice President
## 949 Vice President
## 950 Vice President
## 951 Vice President
## 952 Director
## 953 Director
## 954 Director
## 955 Director
## 956 Director
## 957 Director
## 958 Director
## 959 Director
## 960 Director
## 961 Director
## 962 Director
## 963 Director
## 964 Director
## 965 Director
## 966 Director
## 967 Director
## 968 Director
## 969 Director
## 970 Director
## 971 Director
## 972 Director
## 973 Vice President
## 974 Vice President
## 975 Vice President
## 976 Vice President
## 977 Vice President
## 978 Director
## 979 Director
## 980 Director
## 981 Director
## 982 Director
## 983 Director
## 984 Director
## 985 Director
## 986 Director
## 987 Director
## 988 Director
## 989 Director
## 990 Director
## 991 Director
## 992 Director
## 993 Director
## 994 Director
## 995 Director
## 996 Director
## 997 Director
## 998 Director
## 999 Director
## 1000 Director
## 1001 Director
## 1002 Director
## 1003 Director
## 1004 Director
## 1005 Director
## 1006 Director
## 1007 Director
## 1008 Director
## 1009 Director
## 1010 Director
## 1011 Director
## 1012 Director
## 1013 Director
## 1014 Director
## 1015 Director
## 1016 Director
## 1017 Director
## 1018 Director
## 1019 Director
## 1020 Director
## 1021 Director
## 1022 Director
## 1023 Director
## 1024 Director
## 1025 Director
## 1026 Director
## 1027 Director
## 1028 Director
## 1029 Director
## 1030 Director
## 1031 Director
## 1032 Director
## 1033 Director
## 1034 Director
## 1035 Vice President
## 1036 Vice President
## 1037 Vice President
## 1038 Vice President
## 1039 Director
## 1040 Director
## 1041 Trader
## 1042 Trader
## 1043 Trader
## 1044 Trader
## 1045 Trader
## 1046 Vice President
## 1047 Vice President
## 1048 Vice President
## 1049 Vice President
## 1050 Vice President
## 1051 Vice President
## 1052 Vice President
## 1053 Vice President
## 1054 Vice President
## 1055 Vice President
## 1056 Vice President
## 1057 Employee
## 1058 Employee
## 1059 Employee
## 1060 Employee
## 1061 Employee
## 1062 Employee
## 1063 Employee
## 1064 Employee
## 1065 Employee
## 1066 Employee
## 1067 Employee
## 1068 Employee
## 1069 Employee
## 1070 Employee
## 1071 Employee
## 1072 Employee
## 1073 Employee
## 1074 Employee
## 1075 Employee
## 1076 Employee
## 1077 Employee
## 1078 Employee
## 1079 Employee
## 1080 Vice President
## 1081 Vice President
## 1082 Vice President
## 1083 Vice President
## 1084 Vice President
## 1085 Vice President
## 1086 Vice President
## 1087 Vice President
## 1088 Vice President
## 1089 Vice President
## 1090 Vice President
## 1091 Vice President
## 1092 Vice President
## 1093 Vice President
## 1094 Vice President
## 1095 Trader
## 1096 Vice President
## 1097 Vice President
## 1098 Vice President
## 1099 Vice President
## 1100 Vice President
## 1101 Vice President
## 1102 Vice President
## 1103 Vice President
## 1104 Vice President
## 1105 Vice President
## 1106 Trader
## 1107 Vice President
## 1108 Vice President
## 1109 Vice President
## 1110 Vice President
## 1111 Vice President
## 1112 Vice President
## 1113 Vice President
## 1114 Vice President
## 1115 Vice President
## 1116 Vice President
## 1117 Vice President
## 1118 Vice President
## 1119 Vice President
## 1120 Vice President
## 1121 Vice President
## 1122 Vice President
## 1123 Vice President
## 1124 Vice President
## 1125 Vice President
## 1126 Vice President
## 1127 Vice President
## 1128 Vice President
## 1129 Vice President
## 1130 Vice President
## 1131 Vice President
## 1132 Vice President
## 1133 Vice President
## 1134 Vice President
## 1135 Vice President
## 1136 Employee
## 1137 Trader
## 1138 Vice President
## 1139 Vice President
## 1140 Vice President
## 1141 Vice President
## 1142 Vice President
## 1143 Vice President
## 1144 Vice President
## 1145 Vice President
## 1146 Vice President
## 1147 Vice President
## 1148 Vice President
## 1149 Vice President
## 1150 Vice President
## 1151 Employee
## 1152 Vice President
## 1153 Vice President
## 1154 Vice President
## 1155 Vice President
## 1156 Vice President
## 1157 Vice President
## 1158 Vice President
## 1159 Vice President
## 1160 Vice President
## 1161 Vice President
## 1162 Vice President
## 1163 Vice President
## 1164 Vice President
## 1165 Vice President
## 1166 Vice President
## 1167 Vice President
## 1168 Vice President
## 1169 Vice President
## 1170 Vice President
## 1171 Vice President
## 1172 Vice President
## 1173 Employee
## 1174 Employee
## 1175 Employee
## 1176 Employee
## 1177 Employee
## 1178 Employee
## 1179 Employee
## 1180 Employee
## 1181 Employee
## 1182 Employee
## 1183 Employee
## 1184 Employee
## 1185 Employee
## 1186 Employee
## 1187 Employee
## 1188 Employee
## 1189 Employee
## 1190 Employee
## 1191 Employee
## 1192 Employee
## 1193 Employee
## 1194 Employee
## 1195 Employee
## 1196 Employee
## 1197 Employee
## 1198 Employee
## 1199 Employee
## 1200 Employee
## 1201 Employee
## 1202 Employee
## 1203 Employee
## 1204 Employee
## 1205 Employee
## 1206 Employee
## 1207 Employee
## 1208 Vice President
## 1209 Vice President
## 1210 Vice President
## 1211 Vice President
## 1212 Vice President
## 1213 Vice President
## 1214 Vice President
## 1215 Vice President
## 1216 Vice President
## 1217 Vice President
## 1218 Vice President
## 1219 Vice President
## 1220 Vice President
## 1221 Vice President
## 1222 Vice President
## 1223 Vice President
## 1224 Vice President
## 1225 Vice President
## 1226 Vice President
## 1227 Vice President
## 1228 Vice President
## 1229 Vice President
## 1230 Vice President
## 1231 Vice President
## 1232 Vice President
## 1233 Employee
## 1234 Employee
## 1235 Employee
## 1236 Employee
## 1237 Employee
## 1238 Employee
## 1239 Employee
## 1240 Employee
## 1241 Employee
## 1242 Employee
## 1243 Vice President
## 1244 Vice President
## 1245 Vice President
## 1246 Vice President
## 1247 Vice President
## 1248 Vice President
## 1249 Vice President
## 1250 Vice President
## 1251 Vice President
## 1252 Vice President
## 1253 Vice President
## 1254 Vice President
## 1255 Vice President
## 1256 Vice President
## 1257 Vice President
## 1258 Vice President
## 1259 Vice President
## 1260 Vice President
## 1261 Vice President
## 1262 Vice President
## 1263 Vice President
## 1264 Vice President
## 1265 Vice President
## 1266 Vice President
## 1267 Vice President
## 1268 Vice President
## 1269 Vice President
## 1270 Vice President
## 1271 Vice President
## 1272 Vice President
## 1273 Vice President
## 1274 Vice President
## 1275 Vice President
## 1276 Vice President
## 1277 Vice President
## 1278 Vice President
## 1279 Vice President
## 1280 Vice President
## 1281 Vice President
## 1282 Vice President
## 1283 Vice President
## 1284 Vice President
## 1285 Vice President
## 1286 Vice President
## 1287 Vice President
## 1288 Vice President
## 1289 Vice President
## 1290 Vice President
## 1291 Vice President
## 1292 Vice President
## 1293 Vice President
## 1294 Vice President
## 1295 Vice President
## 1296 Vice President
## 1297 Vice President
## 1298 Vice President
## 1299 Vice President
## 1300 Vice President
## 1301 Vice President
## 1302 Vice President
## 1303 Vice President
## 1304 Vice President
## 1305 Vice President
## 1306 Vice President
## 1307 Vice President
## 1308 Vice President
## 1309 Employee
## 1310 Employee
## 1311 Employee
## 1312 Employee
## 1313 Employee
## 1314 Employee
## 1315 Employee
## 1316 Employee
## 1317 Employee
## 1318 Employee
## 1319 Employee
## 1320 Employee
## 1321 Employee
## 1322 Employee
## 1323 Employee
## 1324 Employee
## 1325 Vice President
## 1326 Vice President
## 1327 Vice President
## 1328 Vice President
## 1329 Vice President
## 1330 Vice President
## 1331 Vice President
## 1332 Vice President
## 1333 Vice President
## 1334 Vice President
## 1335 Vice President
## 1336 Vice President
## 1337 Vice President
## 1338 Vice President
## 1339 Vice President
## 1340 Vice President
## 1341 Vice President
## 1342 Vice President
## 1343 Vice President
## 1344 Vice President
## 1345 Vice President
## 1346 Vice President
## 1347 Vice President
## 1348 Vice President
## 1349 Vice President
## 1350 Vice President
## 1351 Vice President
## 1352 Vice President
## 1353 Vice President
## 1354 Vice President
## 1355 Vice President
## 1356 Vice President
## 1357 Vice President
## 1358 Vice President
## 1359 Vice President
## 1360 Vice President
## 1361 Vice President
## 1362 Vice President
## 1363 Vice President
## 1364 Vice President
## 1365 Vice President
## 1366 Vice President
## 1367 Vice President
## 1368 Vice President
## 1369 Vice President
## 1370 Vice President
## 1371 Vice President
## 1372 Vice President
## 1373 Vice President
## 1374 Vice President
## 1375 Vice President
## 1376 Vice President
## 1377 Vice President
## 1378 Vice President
## 1379 Vice President
## 1380 Vice President
## 1381 Vice President
## 1382 Vice President
## 1383 Vice President
## 1384 Vice President
## 1385 Vice President
## 1386 Vice President
## 1387 Vice President
## 1388 Vice President
## 1389 Vice President
## 1390 Vice President
## 1391 Vice President
## 1392 Vice President
## 1393 Vice President
## 1394 Vice President
## 1395 Vice President
## 1396 Vice President
## 1397 Vice President
## 1398 Vice President
## 1399 Vice President
## 1400 Vice President
## 1401 Vice President
## 1402 Vice President
## 1403 Vice President
## 1404 Vice President
## 1405 Vice President
## 1406 Vice President
## 1407 Vice President
## 1408 Vice President
## 1409 Vice President
## 1410 Vice President
## 1411 Vice President
## 1412 Vice President
## 1413 Vice President
## 1414 Vice President
## 1415 Vice President
## 1416 Vice President
## 1417 Vice President
## 1418 Vice President
## 1419 Vice President
## 1420 Vice President
## 1421 Vice President
## 1422 Vice President
## 1423 Vice President
## 1424 Vice President
## 1425 Vice President
## 1426 Vice President
## 1427 Vice President
## 1428 Vice President
## 1429 Vice President
## 1430 Vice President
## 1431 Vice President
## 1432 Vice President
## 1433 Vice President
## 1434 Vice President
## 1435 Vice President
## 1436 Vice President
## 1437 Vice President
## 1438 Vice President
## 1439 Vice President
## 1440 Vice President
## 1441 Vice President
## 1442 Vice President
## 1443 Vice President
## 1444 Vice President
## 1445 Vice President
## 1446 Vice President
## 1447 Vice President
## 1448 Vice President
## 1449 Vice President
## 1450 Vice President
## 1451 Vice President
## 1452 Vice President
## 1453 Vice President
## 1454 Vice President
## 1455 Vice President
## 1456 Vice President
## 1457 Vice President
## 1458 Vice President
## 1459 Vice President
## 1460 Vice President
## 1461 Vice President
## 1462 Vice President
## 1463 Vice President
## 1464 Vice President
## 1465 Vice President
## 1466 Vice President
## 1467 Vice President
## 1468 Vice President
## 1469 Vice President
## 1470 Vice President
## 1471 Vice President
## 1472 Vice President
## 1473 Vice President
## 1474 Vice President
## 1475 Vice President
## 1476 Vice President
## 1477 Vice President
## 1478 Vice President
## 1479 Vice President
## 1480 Vice President
## 1481 Vice President
## 1482 Vice President
## 1483 Vice President
## 1484 Vice President
## 1485 Vice President
## 1486 Vice President
## 1487 Vice President
## 1488 Vice President
## 1489 Vice President
## 1490 Vice President
## 1491 Vice President
## 1492 Vice President
## 1493 Vice President
## 1494 Vice President
## 1495 Vice President
## 1496 Vice President
## 1497 Vice President
## 1498 Vice President
## 1499 Vice President
## 1500 Vice President
## 1501 Vice President
## 1502 Vice President
## 1503 Vice President
## 1504 Vice President
## 1505 Vice President
## 1506 Vice President
## 1507 Vice President
## 1508 Vice President
## 1509 Vice President
## 1510 Vice President
## 1511 Vice President
## 1512 Vice President
## 1513 Vice President
## 1514 Vice President
## 1515 Vice President
## 1516 Vice President
## 1517 Vice President
## 1518 Vice President
## 1519 Vice President
## 1520 Vice President
## 1521 Vice President
## 1522 Vice President
## 1523 Vice President
## 1524 Vice President
## 1525 Vice President
## 1526 Vice President
## 1527 Vice President
## 1528 Vice President
## 1529 Vice President
## 1530 Vice President
## 1531 Vice President
## 1532 Vice President
## 1533 Vice President
## 1534 Vice President
## 1535 Vice President
## 1536 Vice President
## 1537 Vice President
## 1538 Vice President
## 1539 Vice President
## 1540 Vice President
## 1541 Vice President
## 1542 Vice President
## 1543 Vice President
## 1544 Vice President
## 1545 Vice President
## 1546 Vice President
## 1547 Vice President
## 1548 Vice President
## 1549 Vice President
## 1550 Vice President
## 1551 Vice President
## 1552 Vice President
## 1553 Vice President
## 1554 Vice President
## 1555 Vice President
## 1556 Vice President
## 1557 Vice President
## 1558 Vice President
## 1559 Vice President
## 1560 Vice President
## 1561 Vice President
## 1562 Vice President
## 1563 Vice President
## 1564 Vice President
## 1565 Vice President
## 1566 Vice President
## 1567 Vice President
## 1568 Vice President
## 1569 Vice President
## 1570 Vice President
## 1571 Vice President
## 1572 Vice President
## 1573 Vice President
## 1574 Vice President
## 1575 Vice President
## 1576 Vice President
## 1577 Vice President
## 1578 Vice President
## 1579 Vice President
## 1580 Vice President
## 1581 Vice President
## 1582 Vice President
## 1583 Vice President
## 1584 Vice President
## 1585 Vice President
## 1586 Vice President
## 1587 Vice President
## 1588 Vice President
## 1589 Vice President
## 1590 Employee
## 1591 Vice President
## 1592 Vice President
## 1593 Vice President
## 1594 Vice President
## 1595 Vice President
## 1596 Vice President
## 1597 Vice President
## 1598 Vice President
## 1599 Vice President
## 1600 Vice President
## 1601 Vice President
## 1602 Vice President
## 1603 Vice President
## 1604 Vice President
## 1605 Vice President
## 1606 Vice President
## 1607 Vice President
## 1608 Vice President
## 1609 Vice President
## 1610 Vice President
## 1611 Vice President
## 1612 Vice President
## 1613 Vice President
## 1614 Vice President
## 1615 Vice President
## 1616 Vice President
## 1617 Vice President
## 1618 Vice President
## 1619 Vice President
## 1620 Vice President
## 1621 Vice President
## 1622 Vice President
## 1623 Vice President
## 1624 Vice President
## 1625 Vice President
## 1626 Vice President
## 1627 Vice President
## 1628 Vice President
## 1629 Vice President
## 1630 Vice President
## 1631 Vice President
## 1632 Vice President
## 1633 Vice President
## 1634 Vice President
## 1635 Vice President
## 1636 Vice President
## 1637 Vice President
## 1638 Vice President
## 1639 Vice President
## 1640 Vice President
## 1641 Vice President
## 1642 Vice President
## 1643 Vice President
## 1644 Vice President
## 1645 Vice President
## 1646 Vice President
## 1647 Vice President
## 1648 Vice President
## 1649 Vice President
## 1650 Vice President
## 1651 Vice President
## 1652 Vice President
## 1653 Vice President
## 1654 Vice President
## 1655 Vice President
## 1656 Vice President
## 1657 Employee
## 1658 Employee
## 1659 Employee
## 1660 Vice President
## 1661 Vice President
## 1662 Vice President
## 1663 Vice President
## 1664 Vice President
## 1665 Vice President
## 1666 President
## 1667 Employee
## 1668 Employee
## 1669 Employee
## 1670 Employee
## 1671 Employee
## 1672 Director
## 1673 Director
## 1674 Director
## 1675 Director
## 1676 Vice President
## 1677 Vice President
## 1678 Vice President
## 1679 Vice President
## 1680 Employee
## 1681 Employee
## 1682 Employee
## 1683 Employee
## 1684 Vice President
## 1685 Vice President
## 1686 Vice President
## 1687 Vice President
## 1688 Vice President
## 1689 Vice President
## 1690 Vice President
## 1691 Vice President
## 1692 Vice President
## 1693 Vice President
## 1694 Vice President
## 1695 Vice President
## 1696 Vice President
## 1697 Vice President
## 1698 Vice President
## 1699 Vice President
## 1700 Vice President
## 1701 Vice President
## 1702 Vice President
## 1703 Vice President
## 1704 Vice President
## 1705 Vice President
## 1706 Vice President
## 1707 Vice President
## 1708 Vice President
## 1709 Vice President
## 1710 Vice President
## 1711 Vice President
## 1712 Vice President
## 1713 Vice President
## 1714 Vice President
## 1715 Vice President
## 1716 Vice President
## 1717 Vice President
## 1718 Vice President
## 1719 Vice President
## 1720 Vice President
## 1721 Vice President
## 1722 Vice President
## 1723 Vice President
## 1724 Vice President
## 1725 Vice President
## 1726 Vice President
## 1727 Vice President
## 1728 Vice President
## 1729 Vice President
## 1730 Vice President
## 1731 Vice President
## 1732 Vice President
## 1733 Vice President
## 1734 Vice President
## 1735 Vice President
## 1736 Vice President
## 1737 Vice President
## 1738 Vice President
## 1739 Vice President
## 1740 Vice President
## 1741 Vice President
## 1742 Vice President
## 1743 Vice President
## 1744 Vice President
## 1745 Vice President
## 1746 Vice President
## 1747 Vice President
## 1748 Vice President
## 1749 Vice President
## 1750 Vice President
## 1751 Vice President
## 1752 Vice President
## 1753 Vice President
## 1754 Vice President
## 1755 Vice President
## 1756 Vice President
## 1757 Vice President
## 1758 Vice President
## 1759 Vice President
## 1760 Vice President
## 1761 Vice President
## 1762 Vice President
## 1763 Vice President
## 1764 Vice President
## 1765 Vice President
## 1766 Vice President
## 1767 Vice President
## 1768 Vice President
## 1769 Vice President
## 1770 Vice President
## 1771 Vice President
## 1772 Vice President
## 1773 Vice President
## 1774 Vice President
## 1775 Vice President
## 1776 Vice President
## 1777 Vice President
## 1778 Vice President
## 1779 Vice President
## 1780 Vice President
## 1781 Vice President
## 1782 Vice President
## 1783 Vice President
## 1784 Vice President
## 1785 Vice President
## 1786 Vice President
## 1787 Vice President
## 1788 Vice President
## 1789 Vice President
## 1790 Vice President
## 1791 Employee
## 1792 Employee
## 1793 Employee
## 1794 Employee
## 1795 Vice President
## 1796 Vice President
## 1797 Vice President
## 1798 Vice President
## 1799 Vice President
## 1800 Vice President
## 1801 Vice President
## 1802 Vice President
## 1803 Vice President
## 1804 Vice President
## 1805 Vice President
## 1806 Vice President
## 1807 Vice President
## 1808 Vice President
## 1809 Vice President
## 1810 Vice President
## 1811 Vice President
## 1812 Vice President
## 1813 Vice President
## 1814 Vice President
## 1815 Vice President
## 1816 Vice President
## 1817 Vice President
## 1818 Vice President
## 1819 Vice President
## 1820 Vice President
## 1821 Vice President
## 1822 Vice President
## 1823 Vice President
## 1824 Vice President
## 1825 Vice President
## 1826 Vice President
## 1827 Vice President
## 1828 Vice President
## 1829 Vice President
## 1830 Vice President
## 1831 Vice President
## 1832 Vice President
## 1833 Vice President
## 1834 Vice President
## 1835 Vice President
## 1836 Vice President
## 1837 Vice President
## 1838 Vice President
## 1839 Vice President
## 1840 Vice President
## 1841 Vice President
## 1842 Vice President
## 1843 Vice President
## 1844 Vice President
## 1845 Vice President
## 1846 Vice President
## 1847 Vice President
## 1848 Vice President
## 1849 Vice President
## 1850 Vice President
## 1851 Vice President
## 1852 Vice President
## 1853 Vice President
## 1854 Vice President
## 1855 Vice President
## 1856 Vice President
## 1857 Vice President
## 1858 Vice President
## 1859 Vice President
## 1860 Vice President
## 1861 Vice President
## 1862 Vice President
## 1863 Vice President
## 1864 Vice President
## 1865 Employee
## 1866 Employee
## 1867 Employee
## 1868 Employee
## 1869 Employee
## 1870 Vice President
## 1871 Vice President
## 1872 Vice President
## 1873 Vice President
## 1874 Vice President
## 1875 Vice President
## 1876 Vice President
## 1877 Vice President
## 1878 Vice President
## 1879 Vice President
## 1880 Vice President
## 1881 Vice President
## 1882 Vice President
## 1883 Vice President
## 1884 Vice President
## 1885 Vice President
## 1886 Vice President
## 1887 Vice President
## 1888 Vice President
## 1889 Vice President
## 1890 Vice President
## 1891 Vice President
## 1892 Vice President
## 1893 Vice President
## 1894 Vice President
## 1895 Vice President
## 1896 Vice President
## 1897 Vice President
## 1898 Vice President
## 1899 Vice President
## 1900 Vice President
## 1901 Vice President
## 1902 Vice President
## 1903 Vice President
## 1904 Vice President
## 1905 Vice President
## 1906 Vice President
## 1907 Vice President
## 1908 Vice President
## 1909 Vice President
## 1910 Vice President
## 1911 Vice President
## 1912 Vice President
## 1913 Vice President
## 1914 Vice President
## 1915 Vice President
## 1916 Vice President
## 1917 Vice President
## 1918 Vice President
## 1919 Vice President
## 1920 Vice President
## 1921 Vice President
## 1922 Vice President
## 1923 Vice President
## 1924 Vice President
## 1925 Vice President
## 1926 Vice President
## 1927 Vice President
## 1928 Vice President
## 1929 Vice President
## 1930 Vice President
## 1931 Vice President
## 1932 Vice President
## 1933 Vice President
## 1934 Vice President
## 1935 Vice President
## 1936 Vice President
## 1937 Vice President
## 1938 Vice President
## 1939 Vice President
## 1940 Vice President
## 1941 Vice President
## 1942 Vice President
## 1943 Vice President
## 1944 Vice President
## 1945 Vice President
## 1946 Vice President
## 1947 Vice President
## 1948 Vice President
## 1949 Vice President
## 1950 Vice President
## 1951 Vice President
## 1952 Vice President
## 1953 Vice President
## 1954 Vice President
## 1955 Vice President
## 1956 Vice President
## 1957 Vice President
## 1958 Manager
## 1959 Manager
## 1960 Vice President
## 1961 Vice President
## 1962 Vice President
## 1963 Vice President
## 1964 Vice President
## 1965 Vice President
## 1966 Vice President
## 1967 Vice President
## 1968 Vice President
## 1969 Vice President
## 1970 Vice President
## 1971 Vice President
## 1972 Vice President
## 1973 Vice President
## 1974 Vice President
## 1975 Vice President
## 1976 Vice President
## 1977 Vice President
## 1978 Vice President
## 1979 Vice President
## 1980 Vice President
## 1981 Vice President
## 1982 Vice President
## 1983 Vice President
## 1984 Vice President
## 1985 Vice President
## 1986 Vice President
## 1987 Vice President
## 1988 Vice President
## 1989 Vice President
## 1990 Vice President
## 1991 Vice President
## 1992 Vice President
## 1993 Vice President
## 1994 Vice President
## 1995 Vice President
## 1996 Vice President
## 1997 Vice President
## 1998 Vice President
## 1999 Vice President
## 2000 Vice President
## 2001 Vice President
## 2002 Vice President
## 2003 Vice President
## 2004 Vice President
## 2005 Vice President
## 2006 Vice President
## 2007 Vice President
## 2008 Vice President
## 2009 Vice President
## 2010 Vice President
## 2011 Vice President
## 2012 Vice President
## 2013 Vice President
## 2014 Vice President
## 2015 Vice President
## 2016 Vice President
## 2017 Vice President
## 2018 Vice President
## 2019 Vice President
## 2020 Vice President
## 2021 Vice President
## 2022 Vice President
## 2023 Vice President
## 2024 Vice President
## 2025 Vice President
## 2026 Vice President
## 2027 Vice President
## 2028 Vice President
## 2029 Vice President
## 2030 Vice President
## 2031 Vice President
## 2032 Vice President
## 2033 Vice President
## 2034 Vice President
## 2035 Vice President
## 2036 Vice President
## 2037 Vice President
## 2038 Vice President
## 2039 Vice President
## 2040 Vice President
## 2041 Vice President
## 2042 Vice President
## 2043 Vice President
## 2044 Vice President
## 2045 Vice President
## 2046 Vice President
## 2047 Vice President
## 2048 Vice President
## 2049 Vice President
## 2050 Vice President
## 2051 Vice President
## 2052 Vice President
## 2053 Vice President
## 2054 Vice President
## 2055 Vice President
## 2056 Vice President
## 2057 Vice President
## 2058 Vice President
## 2059 Vice President
## 2060 Vice President
## 2061 Vice President
## 2062 Vice President
## 2063 Vice President
## 2064 Vice President
## 2065 Vice President
## 2066 Vice President
## 2067 Vice President
## 2068 Vice President
## 2069 Vice President
## 2070 Vice President
## 2071 Vice President
## 2072 Vice President
## 2073 Vice President
## 2074 Vice President
## 2075 Vice President
## 2076 Vice President
## 2077 Vice President
## 2078 Vice President
## 2079 Vice President
## 2080 Vice President
## 2081 Vice President
## 2082 Vice President
## 2083 Vice President
## 2084 Vice President
## 2085 Vice President
## 2086 Vice President
## 2087 Vice President
## 2088 Vice President
## 2089 Vice President
## 2090 Vice President
## 2091 Vice President
## 2092 Vice President
## 2093 Vice President
## 2094 Vice President
## 2095 Vice President
## 2096 Vice President
## 2097 Vice President
## 2098 Vice President
## 2099 Vice President
## 2100 Vice President
## 2101 Vice President
## 2102 Vice President
## 2103 Vice President
## 2104 Vice President
## 2105 Vice President
## 2106 Vice President
## 2107 Vice President
## 2108 Vice President
## 2109 Vice President
## 2110 Vice President
## 2111 Vice President
## 2112 Vice President
## 2113 Vice President
## 2114 Vice President
## 2115 Vice President
## 2116 Vice President
## 2117 Vice President
## 2118 Vice President
## 2119 Vice President
## 2120 Vice President
## 2121 Vice President
## 2122 Vice President
## 2123 Vice President
## 2124 Vice President
## 2125 Vice President
## 2126 Vice President
## 2127 Vice President
## 2128 Vice President
## 2129 Vice President
## 2130 Vice President
## 2131 Vice President
## 2132 Vice President
## 2133 Vice President
## 2134 Vice President
## 2135 Vice President
## 2136 Vice President
## 2137 Vice President
## 2138 Vice President
## 2139 Vice President
## 2140 Vice President
## 2141 Vice President
## 2142 Vice President
## 2143 Vice President
## 2144 Director
## 2145 Vice President
## 2146 Vice President
## 2147 Employee
## 2148 Employee
## 2149 Employee
## 2150 Employee
## 2151 Employee
## 2152 Employee
## 2153 Employee
## 2154 Employee
## 2155 Employee
## 2156 Employee
## 2157 Employee
## 2158 Employee
## 2159 Employee
## 2160 Employee
## 2161 Employee
## 2162 Employee
## 2163 Employee
## 2164 Employee
## 2165 Employee
## 2166 Employee
## 2167 Employee
## 2168 Employee
## 2169 Employee
## 2170 Employee
## 2171 Employee
## 2172 Employee
## 2173 Employee
## 2174 Employee
## 2175 Employee
## 2176 Employee
## 2177 Employee
## 2178 Employee
## 2179 Employee
## 2180 Employee
## 2181 Employee
## 2182 Employee
## 2183 Employee
## 2184 Employee
## 2185 Employee
## 2186 Employee
## 2187 Employee
## 2188 Employee
## 2189 Employee
## 2190 Employee
## 2191 Employee
## 2192 Employee
## 2193 Employee
## 2194 Employee
## 2195 Employee
## 2196 Employee
## 2197 Employee
## 2198 Employee
## 2199 Employee
## 2200 Employee
## 2201 Employee
## 2202 Employee
## 2203 Employee
## 2204 Employee
## 2205 Employee
## 2206 Employee
## 2207 Employee
## 2208 Employee
## 2209 Employee
## 2210 Employee
## 2211 Employee
## 2212 Employee
## 2213 Employee
## 2214 Employee
## 2215 Employee
## 2216 Employee
## 2217 Employee
## 2218 Employee
## 2219 Employee
## 2220 Employee
## 2221 Employee
## 2222 Employee
## 2223 Employee
## 2224 Employee
## 2225 Employee
## 2226 Employee
## 2227 Employee
## 2228 Employee
## 2229 Employee
## 2230 Employee
## 2231 Employee
## 2232 Employee
## 2233 Employee
## 2234 Employee
## 2235 Employee
## 2236 Employee
## 2237 Employee
## 2238 Employee
## 2239 Employee
## 2240 Employee
## 2241 Employee
## 2242 Employee
## 2243 Employee
## 2244 Employee
## 2245 Employee
## 2246 Employee
## 2247 Employee
## 2248 Employee
## 2249 Employee
## 2250 Employee
## 2251 Employee
## 2252 Employee
## 2253 Employee
## 2254 Employee
## 2255 Employee
## 2256 Employee
## 2257 Employee
## 2258 Employee
## 2259 Employee
## 2260 Employee
## 2261 Employee
## 2262 Employee
## 2263 Employee
## 2264 Employee
## 2265 Employee
## 2266 Employee
## 2267 Employee
## 2268 Employee
## 2269 Employee
## 2270 Employee
## 2271 Employee
## 2272 Employee
## 2273 Employee
## 2274 Employee
## 2275 Employee
## 2276 Employee
## 2277 Employee
## 2278 Employee
## 2279 Employee
## 2280 Employee
## 2281 Employee
## 2282 Employee
## 2283 Employee
## 2284 Employee
## 2285 Employee
## 2286 Employee
## 2287 Employee
## 2288 Employee
## 2289 Employee
## 2290 Employee
## 2291 Employee
## 2292 Employee
## 2293 Employee
## 2294 Employee
## 2295 Employee
## 2296 Employee
## 2297 Employee
## 2298 Employee
## 2299 Employee
## 2300 Employee
## 2301 Employee
## 2302 Employee
## 2303 Employee
## 2304 Employee
## 2305 Employee
## 2306 Employee
## 2307 Employee
## 2308 Employee
## 2309 Employee
## 2310 Employee
## 2311 Employee
## 2312 Employee
## 2313 Employee
## 2314 Employee
## 2315 Employee
## 2316 Employee
## 2317 Employee
## 2318 Employee
## 2319 Employee
## 2320 Employee
## 2321 Employee
## 2322 Employee
## 2323 Employee
## 2324 Employee
## 2325 Employee
## 2326 Employee
## 2327 Employee
## 2328 Employee
## 2329 Employee
## 2330 Employee
## 2331 Employee
## 2332 Employee
## 2333 Employee
## 2334 Employee
## 2335 Employee
## 2336 Employee
## 2337 Employee
## 2338 Employee
## 2339 Employee
## 2340 Employee
## 2341 Employee
## 2342 Employee
## 2343 Employee
## 2344 Employee
## 2345 Employee
## 2346 Employee
## 2347 Employee
## 2348 Employee
## 2349 Employee
## 2350 Employee
## 2351 Employee
## 2352 Employee
## 2353 Employee
## 2354 Employee
## 2355 Employee
## 2356 Employee
## 2357 Employee
## 2358 Employee
## 2359 Employee
## 2360 Employee
## 2361 Employee
## 2362 Employee
## 2363 Employee
## 2364 Employee
## 2365 Employee
## 2366 Employee
## 2367 Employee
## 2368 Employee
## 2369 Employee
## 2370 Employee
## 2371 Employee
## 2372 Employee
## 2373 Employee
## 2374 Employee
## 2375 Employee
## 2376 Employee
## 2377 Employee
## 2378 Employee
## 2379 Employee
## 2380 Employee
## 2381 Employee
## 2382 Employee
## 2383 Employee
## 2384 Employee
## 2385 Employee
## 2386 Employee
## 2387 Employee
## 2388 Employee
## 2389 Employee
## 2390 Employee
## 2391 Employee
## 2392 Employee
## 2393 Employee
## 2394 Employee
## 2395 Employee
## 2396 Employee
## 2397 Employee
## 2398 Employee
## 2399 Employee
## 2400 Employee
## 2401 Employee
## 2402 Employee
## 2403 Employee
## 2404 Employee
## 2405 Employee
## 2406 Employee
## 2407 Employee
## 2408 Employee
## 2409 Employee
## 2410 Employee
## 2411 Employee
## 2412 Employee
## 2413 Employee
## 2414 Employee
## 2415 Employee
## 2416 Employee
## 2417 Employee
## 2418 Employee
## 2419 Employee
## 2420 Employee
## 2421 Employee
## 2422 Employee
## 2423 Employee
## 2424 Employee
## 2425 Employee
## 2426 Employee
## 2427 Employee
## 2428 Employee
## 2429 Employee
## 2430 Employee
## 2431 Employee
## 2432 Employee
## 2433 Employee
## 2434 Employee
## 2435 Employee
## 2436 Employee
## 2437 Employee
## 2438 Employee
## 2439 Employee
## 2440 Employee
## 2441 Employee
## 2442 Employee
## 2443 Employee
## 2444 Employee
## 2445 Employee
## 2446 Employee
## 2447 Employee
## 2448 Employee
## 2449 Employee
## 2450 Employee
## 2451 Employee
## 2452 Employee
## 2453 Employee
## 2454 Employee
## 2455 Employee
## 2456 Employee
## 2457 Employee
## 2458 Employee
## 2459 Employee
## 2460 Employee
## 2461 Employee
## 2462 Employee
## 2463 Employee
## 2464 Employee
## 2465 Employee
## 2466 Employee
## 2467 Employee
## 2468 Employee
## 2469 Employee
## 2470 Employee
## 2471 Employee
## 2472 Employee
## 2473 Employee
## 2474 Employee
## 2475 Employee
## 2476 Employee
## 2477 Employee
## 2478 Employee
## 2479 Employee
## 2480 Employee
## 2481 Employee
## 2482 Employee
## 2483 Employee
## 2484 Employee
## 2485 Employee
## 2486 Employee
## 2487 Employee
## 2488 Employee
## 2489 Employee
## 2490 Employee
## 2491 Employee
## 2492 Employee
## 2493 Employee
## 2494 Employee
## 2495 Employee
## 2496 Employee
## 2497 Employee
## 2498 Employee
## 2499 Employee
## 2500 Employee
## 2501 Employee
## 2502 Employee
## 2503 Employee
## 2504 Employee
## 2505 Employee
## 2506 Employee
## 2507 Employee
## 2508 Employee
## 2509 Employee
## 2510 Employee
## 2511 Employee
## 2512 Employee
## 2513 Employee
## 2514 Employee
## 2515 Employee
## 2516 Employee
## 2517 Employee
## 2518 Employee
## 2519 Employee
## 2520 Employee
## 2521 Employee
## 2522 Employee
## 2523 Employee
## 2524 Employee
## 2525 Employee
## 2526 Employee
## 2527 Employee
## 2528 Employee
## 2529 Employee
## 2530 Employee
## 2531 Employee
## 2532 Employee
## 2533 Employee
## 2534 Employee
## 2535 Employee
## 2536 Employee
## 2537 Employee
## 2538 Employee
## 2539 Employee
## 2540 Employee
## 2541 Employee
## 2542 Employee
## 2543 Employee
## 2544 Employee
## 2545 Employee
## 2546 Employee
## 2547 Employee
## 2548 Employee
## 2549 Employee
## 2550 Employee
## 2551 Employee
## 2552 Employee
## 2553 Employee
## 2554 Employee
## 2555 Employee
## 2556 Employee
## 2557 Employee
## 2558 Employee
## 2559 Employee
## 2560 Employee
## 2561 Employee
## 2562 Employee
## 2563 Employee
## 2564 Employee
## 2565 Employee
## 2566 Employee
## 2567 Employee
## 2568 Employee
## 2569 Employee
## 2570 Employee
## 2571 Employee
## 2572 Employee
## 2573 Employee
## 2574 Employee
## 2575 Employee
## 2576 Employee
## 2577 Employee
## 2578 Employee
## 2579 Employee
## 2580 Employee
## 2581 Employee
## 2582 Employee
## 2583 Employee
## 2584 Employee
## 2585 Employee
## 2586 Employee
## 2587 Employee
## 2588 Employee
## 2589 Employee
## 2590 Employee
## 2591 Employee
## 2592 Employee
## 2593 Employee
## 2594 Employee
## 2595 Employee
## 2596 Employee
## 2597 Employee
## 2598 Employee
## 2599 Employee
## 2600 Employee
## 2601 Employee
## 2602 Employee
## 2603 Employee
## 2604 Employee
## 2605 Employee
## 2606 Employee
## 2607 Employee
## 2608 Employee
## 2609 Employee
## 2610 Employee
## 2611 Employee
## 2612 Employee
## 2613 Employee
## 2614 Employee
## 2615 Employee
## 2616 Employee
## 2617 Employee
## 2618 Employee
## 2619 Employee
## 2620 Employee
## 2621 Employee
## 2622 Employee
## 2623 Employee
## 2624 Employee
## 2625 Employee
## 2626 Employee
## 2627 Employee
## 2628 Employee
## 2629 Employee
## 2630 Employee
## 2631 Employee
## 2632 Employee
## 2633 Employee
## 2634 Employee
## 2635 Employee
## 2636 Employee
## 2637 Employee
## 2638 Employee
## 2639 Employee
## 2640 Employee
## 2641 Employee
## 2642 Employee
## 2643 Employee
## 2644 Employee
## 2645 Employee
## 2646 Employee
## 2647 Employee
## 2648 Employee
## 2649 Employee
## 2650 Employee
## 2651 Employee
## 2652 Employee
## 2653 Employee
## 2654 Employee
## 2655 Employee
## 2656 Employee
## 2657 Employee
## 2658 Employee
## 2659 Employee
## 2660 Employee
## 2661 Employee
## 2662 Employee
## 2663 Employee
## 2664 Employee
## 2665 Employee
## 2666 Employee
## 2667 Employee
## 2668 Employee
## 2669 Employee
## 2670 Employee
## 2671 Employee
## 2672 Employee
## 2673 Employee
## 2674 Employee
## 2675 Employee
## 2676 Employee
## 2677 Employee
## 2678 Employee
## 2679 Employee
## 2680 Employee
## 2681 Employee
## 2682 Employee
## 2683 Employee
## 2684 Employee
## 2685 Employee
## 2686 Employee
## 2687 Employee
## 2688 Employee
## 2689 Employee
## 2690 Employee
## 2691 Employee
## 2692 Employee
## 2693 Employee
## 2694 Employee
## 2695 Employee
## 2696 Employee
## 2697 Employee
## 2698 Employee
## 2699 Employee
## 2700 Employee
## 2701 Employee
## 2702 Employee
## 2703 Employee
## 2704 Employee
## 2705 Employee
## 2706 Employee
## 2707 Employee
## 2708 Employee
## 2709 Employee
## 2710 Employee
## 2711 Employee
## 2712 Employee
## 2713 Employee
## 2714 Employee
## 2715 Employee
## 2716 Employee
## 2717 Employee
## 2718 Employee
## 2719 Employee
## 2720 Employee
## 2721 Employee
## 2722 Employee
## 2723 Employee
## 2724 Employee
## 2725 Employee
## 2726 Employee
## 2727 Employee
## 2728 Employee
## 2729 Employee
## 2730 Employee
## 2731 Employee
## 2732 Employee
## 2733 Employee
## 2734 Employee
## 2735 Employee
## 2736 Employee
## 2737 Employee
## 2738 Employee
## 2739 Employee
## 2740 Employee
## 2741 Employee
## 2742 Employee
## 2743 Employee
## 2744 Employee
## 2745 Employee
## 2746 Employee
## 2747 Employee
## 2748 Employee
## 2749 Employee
## 2750 Employee
## 2751 Employee
## 2752 Employee
## 2753 Employee
## 2754 Employee
## 2755 Employee
## 2756 Employee
## 2757 Employee
## 2758 Employee
## 2759 Employee
## 2760 Employee
## 2761 Employee
## 2762 Employee
## 2763 Employee
## 2764 Employee
## 2765 Employee
## 2766 Employee
## 2767 Employee
## 2768 Employee
## 2769 Employee
## 2770 Employee
## 2771 Employee
## 2772 Employee
## 2773 Employee
## 2774 Employee
## 2775 Employee
## 2776 Employee
## 2777 Employee
## 2778 Employee
## 2779 Employee
## 2780 Employee
## 2781 Employee
## 2782 Employee
## 2783 Employee
## 2784 Employee
## 2785 Employee
## 2786 Employee
## 2787 Employee
## 2788 Employee
## 2789 Employee
## 2790 Employee
## 2791 Employee
## 2792 Employee
## 2793 Employee
## 2794 Employee
## 2795 Employee
## 2796 Employee
## 2797 Employee
## 2798 Employee
## 2799 Employee
## 2800 Employee
## 2801 Employee
## 2802 Employee
## 2803 Employee
## 2804 Employee
## 2805 Employee
## 2806 Employee
## 2807 Employee
## 2808 Employee
## 2809 Employee
## 2810 Employee
## 2811 Employee
## 2812 Employee
## 2813 Employee
## 2814 Employee
## 2815 Employee
## 2816 Employee
## 2817 Employee
## 2818 Employee
## 2819 Employee
## 2820 Employee
## 2821 Employee
## 2822 Employee
## 2823 Employee
## 2824 Employee
## 2825 Employee
## 2826 Employee
## 2827 Employee
## 2828 Employee
## 2829 Employee
## 2830 Employee
## 2831 Employee
## 2832 Employee
## 2833 Employee
## 2834 Employee
## 2835 Employee
## 2836 Employee
## 2837 Employee
## 2838 Employee
## 2839 Employee
## 2840 Employee
## 2841 Employee
## 2842 Employee
## 2843 Employee
## 2844 Employee
## 2845 Employee
## 2846 Employee
## 2847 Employee
## 2848 Employee
## 2849 Employee
## 2850 Employee
## 2851 Employee
## 2852 Employee
## 2853 Employee
## 2854 Employee
## 2855 Employee
## 2856 Employee
## 2857 Employee
## 2858 Employee
## 2859 Employee
## 2860 Employee
## 2861 Employee
## 2862 Employee
## 2863 Employee
## 2864 Employee
## 2865 Employee
## 2866 Employee
## 2867 Employee
## 2868 Employee
## 2869 Employee
## 2870 Employee
## 2871 Employee
## 2872 Employee
## 2873 Employee
## 2874 Employee
## 2875 Employee
## 2876 Employee
## 2877 Employee
## 2878 Employee
## 2879 Employee
## 2880 Employee
## 2881 Employee
## 2882 Employee
## 2883 Employee
## 2884 Employee
## 2885 Employee
## 2886 Employee
## 2887 Employee
## 2888 Employee
## 2889 Employee
## 2890 Employee
## 2891 Employee
## 2892 Employee
## 2893 Employee
## 2894 Employee
## 2895 Employee
## 2896 Employee
## 2897 Employee
## 2898 Employee
## 2899 Employee
## 2900 Employee
## 2901 Employee
## 2902 Employee
## 2903 Employee
## 2904 Employee
## 2905 Employee
## 2906 Employee
## 2907 Employee
## 2908 Employee
## 2909 Employee
## 2910 Employee
## 2911 Employee
## 2912 Employee
## 2913 Employee
## 2914 Employee
## 2915 Employee
## 2916 Employee
## 2917 Employee
## 2918 Employee
## 2919 Employee
## 2920 Employee
## 2921 Employee
## 2922 Employee
## 2923 Employee
## 2924 Employee
## 2925 Employee
## 2926 Employee
## 2927 Employee
## 2928 Employee
## 2929 Employee
## 2930 Employee
## 2931 Employee
## 2932 Employee
## 2933 Employee
## 2934 Employee
## 2935 Employee
## 2936 Employee
## 2937 Employee
## 2938 Employee
## 2939 Employee
## 2940 Employee
## 2941 Employee
## 2942 Employee
## 2943 Employee
## 2944 Employee
## 2945 Employee
## 2946 Employee
## 2947 Employee
## 2948 Employee
## 2949 Employee
## 2950 Employee
## 2951 Employee
## 2952 Employee
## 2953 Employee
## 2954 Employee
## 2955 Employee
## 2956 Employee
## 2957 Employee
## 2958 Employee
## 2959 Employee
## 2960 Employee
## 2961 Employee
## 2962 Employee
## 2963 Employee
## 2964 Employee
## 2965 Employee
## 2966 Employee
## 2967 Employee
## 2968 Employee
## 2969 Employee
## 2970 Employee
## 2971 Employee
## 2972 Employee
## 2973 Employee
## 2974 Employee
## 2975 Employee
## 2976 Employee
## 2977 Employee
## 2978 Employee
## 2979 Employee
## 2980 Employee
## 2981 Employee
## 2982 Employee
## 2983 Employee
## 2984 Employee
## 2985 Employee
## 2986 Employee
## 2987 Employee
## 2988 Employee
## 2989 Employee
## 2990 Employee
## 2991 Employee
## 2992 Employee
## 2993 Employee
## 2994 Employee
## 2995 Employee
## 2996 Employee
## 2997 Employee
## 2998 Employee
## 2999 Employee
## 3000 Employee
## 3001 Employee
## 3002 Employee
## 3003 Employee
## 3004 Employee
## 3005 Employee
## 3006 Employee
## 3007 Employee
## 3008 Employee
## 3009 Employee
## 3010 Employee
## 3011 Employee
## 3012 Employee
## 3013 Employee
## 3014 Employee
## 3015 Employee
## 3016 Employee
## 3017 Employee
## 3018 Employee
## 3019 Employee
## 3020 Employee
## 3021 Employee
## 3022 Employee
## 3023 Employee
## 3024 Employee
## 3025 Employee
## 3026 Employee
## 3027 Employee
## 3028 Employee
## 3029 Employee
## 3030 Employee
## 3031 Employee
## 3032 Employee
## 3033 Employee
## 3034 Employee
## 3035 Employee
## 3036 Employee
## 3037 Employee
## 3038 Employee
## 3039 Employee
## 3040 Employee
## 3041 Employee
## 3042 Employee
## 3043 Employee
## 3044 Employee
## 3045 Employee
## 3046 Employee
## 3047 Employee
## 3048 Employee
## 3049 Employee
## 3050 Employee
## 3051 Employee
## 3052 Employee
## 3053 Employee
## 3054 Employee
## 3055 Employee
## 3056 Employee
## 3057 Employee
## 3058 Employee
## 3059 Employee
## 3060 Employee
## 3061 Employee
## 3062 Employee
## 3063 Employee
## 3064 Employee
## 3065 Employee
## 3066 Employee
## 3067 Employee
## 3068 Employee
## 3069 Employee
## 3070 Employee
## 3071 Employee
## 3072 Employee
## 3073 Employee
## 3074 Employee
## 3075 Employee
## 3076 Employee
## 3077 Employee
## 3078 Employee
## 3079 Employee
## 3080 Employee
## 3081 Manager
## 3082 Manager
## 3083 Manager
## 3084 Manager
## 3085 Manager
## 3086 Manager
## 3087 Manager
## 3088 Manager
## 3089 Manager
## 3090 Manager
## 3091 Manager
## 3092 Manager
## 3093 Manager
## 3094 Manager
## 3095 Manager
## 3096 Manager
## 3097 Manager
## 3098 Manager
## 3099 Manager
## 3100 Manager
## 3101 Manager
## 3102 Manager
## 3103 Manager
## 3104 Manager
## 3105 Manager
## 3106 Manager
## 3107 Manager
## 3108 Manager
## 3109 Manager
## 3110 Manager
## 3111 Manager
## 3112 Manager
## 3113 Manager
## 3114 Manager
## 3115 Manager
## 3116 Manager
## 3117 Manager
## 3118 Manager
## 3119 Manager
## 3120 Manager
## 3121 Manager
## 3122 Manager
## 3123 Manager
## 3124 Manager
## 3125 Manager
## 3126 Manager
## 3127 Manager
## 3128 Manager
## 3129 Manager
## 3130 Manager
## 3131 Manager
## 3132 Manager
## 3133 Manager
## 3134 Manager
## 3135 Manager
## 3136 Manager
## 3137 Manager
## 3138 Manager
## 3139 Manager
## 3140 Manager
## 3141 Manager
## 3142 Manager
## 3143 Manager
## 3144 Manager
## 3145 Manager
## 3146 Manager
## 3147 Manager
## 3148 Manager
## 3149 Manager
## 3150 Manager
## 3151 Manager
## 3152 Manager
## 3153 Manager
## 3154 Manager
## 3155 Manager
## 3156 Manager
## 3157 Manager
## 3158 Manager
## 3159 Manager
## 3160 Manager
## 3161 Manager
## 3162 Manager
## 3163 Manager
## 3164 Manager
## 3165 Manager
## 3166 Manager
## 3167 Manager
## 3168 Manager
## 3169 Manager
## 3170 Manager
## 3171 Manager
## 3172 Manager
## 3173 Manager
## 3174 Manager
## 3175 Manager
## 3176 Manager
## 3177 Manager
## 3178 Manager
## 3179 Manager
## 3180 Manager
## 3181 Manager
## 3182 Manager
## 3183 Manager
## 3184 Manager
## 3185 Manager
## 3186 Manager
## 3187 Manager
## 3188 Manager
## 3189 Manager
## 3190 Manager
## 3191 Manager
## 3192 Manager
## 3193 Manager
## 3194 Manager
## 3195 Manager
## 3196 Manager
## 3197 Manager
## 3198 Manager
## 3199 Manager
## 3200 Manager
## 3201 Manager
## 3202 Manager
## 3203 Manager
## 3204 Manager
## 3205 Manager
## 3206 Manager
## 3207 Manager
## 3208 Manager
## 3209 Manager
## 3210 Manager
## 3211 Manager
## 3212 Manager
## 3213 Manager
## 3214 Manager
## 3215 Manager
## 3216 Manager
## 3217 Manager
## 3218 Manager
## 3219 Manager
## 3220 Manager
## 3221 Manager
## 3222 Manager
## 3223 Manager
## 3224 Manager
## 3225 Manager
## 3226 Manager
## 3227 Manager
## 3228 Manager
## 3229 Manager
## 3230 Manager
## 3231 Manager
## 3232 Manager
## 3233 Manager
## 3234 Manager
## 3235 Manager
## 3236 Manager
## 3237 Manager
## 3238 Manager
## 3239 Manager
## 3240 Manager
## 3241 Manager
## 3242 Manager
## 3243 Manager
## 3244 Manager
## 3245 Manager
## 3246 Manager
## 3247 Manager
## 3248 Manager
## 3249 Manager
## 3250 Manager
## 3251 Manager
## 3252 Manager
## 3253 Manager
## 3254 Manager
## 3255 Manager
## 3256 Manager
## 3257 Manager
## 3258 Manager
## 3259 Manager
## 3260 Manager
## 3261 Manager
## 3262 Manager
## 3263 Manager
## 3264 Manager
## 3265 Manager
## 3266 Manager
## 3267 Manager
## 3268 Manager
## 3269 Manager
## 3270 Manager
## 3271 Manager
## 3272 Manager
## 3273 Manager
## 3274 Manager
## 3275 Manager
## 3276 Manager
## 3277 Manager
## 3278 Manager
## 3279 Manager
## 3280 Manager
## 3281 Manager
## 3282 Manager
## 3283 Manager
## 3284 Manager
## 3285 Manager
## 3286 Manager
## 3287 Manager
## 3288 Manager
## 3289 Manager
## 3290 Manager
## 3291 Manager
## 3292 Manager
## 3293 Manager
## 3294 Manager
## 3295 Manager
## 3296 Manager
## 3297 Manager
## 3298 Manager
## 3299 Manager
## 3300 Manager
## 3301 Manager
## 3302 Manager
## 3303 Manager
## 3304 Manager
## 3305 Manager
## 3306 Manager
## 3307 Manager
## 3308 Manager
## 3309 Manager
## 3310 Manager
## 3311 Manager
## 3312 Manager
## 3313 Manager
## 3314 Manager
## 3315 Manager
## 3316 Manager
## 3317 Manager
## 3318 Manager
## 3319 Manager
## 3320 Manager
## 3321 Manager
## 3322 Manager
## 3323 Manager
## 3324 Manager
## 3325 Manager
## 3326 Manager
## 3327 Manager
## 3328 Manager
## 3329 Manager
## 3330 Manager
## 3331 Manager
## 3332 Manager
## 3333 Manager
## 3334 Manager
## 3335 Manager
## 3336 Manager
## 3337 Manager
## 3338 Manager
## 3339 Manager
## 3340 Manager
## 3341 Manager
## 3342 Manager
## 3343 Manager
## 3344 Manager
## 3345 Manager
## 3346 Manager
## 3347 Manager
## 3348 Manager
## 3349 Manager
## 3350 Manager
## 3351 Manager
## 3352 Manager
## 3353 Manager
## 3354 Manager
## 3355 Manager
## 3356 Manager
## 3357 Manager
## 3358 Manager
## 3359 Manager
## 3360 Manager
## 3361 Manager
## 3362 Manager
## 3363 Manager
## 3364 Manager
## 3365 Manager
## 3366 Manager
## 3367 Manager
## 3368 Manager
## 3369 Manager
## 3370 Manager
## 3371 Manager
## 3372 Manager
## 3373 Manager
## 3374 Manager
## 3375 Manager
## 3376 Manager
## 3377 Manager
## 3378 Manager
## 3379 Manager
## 3380 Manager
## 3381 Manager
## 3382 Manager
## 3383 Manager
## 3384 Manager
## 3385 Manager
## 3386 Manager
## 3387 Manager
## 3388 Manager
## 3389 Manager
## 3390 Manager
## 3391 Manager
## 3392 Manager
## 3393 Manager
## 3394 Manager
## 3395 Manager
## 3396 Manager
## 3397 Manager
## 3398 Manager
## 3399 Manager
## 3400 Manager
## 3401 Manager
## 3402 Manager
## 3403 Manager
## 3404 Manager
## 3405 Manager
## 3406 Manager
## 3407 Manager
## 3408 Manager
## 3409 Manager
## 3410 Manager
## 3411 Manager
## 3412 Manager
## 3413 Manager
## 3414 Manager
## 3415 Manager
## 3416 Manager
## 3417 Manager
## 3418 Manager
## 3419 Manager
## 3420 Manager
## 3421 Manager
## 3422 Manager
## 3423 Manager
## 3424 Manager
## 3425 Manager
## 3426 Manager
## 3427 Manager
## 3428 Manager
## 3429 Manager
## 3430 Manager
## 3431 Manager
## 3432 Manager
## 3433 Manager
## 3434 Manager
## 3435 Manager
## 3436 Manager
## 3437 Manager
## 3438 Manager
## 3439 Manager
## 3440 Manager
## 3441 Manager
## 3442 Manager
## 3443 Manager
## 3444 Manager
## 3445 Manager
## 3446 Manager
## 3447 Manager
## 3448 Manager
## 3449 Manager
## 3450 Manager
## 3451 Manager
## 3452 Manager
## 3453 Manager
## 3454 Manager
## 3455 Manager
## 3456 Manager
## 3457 Manager
## 3458 Manager
## 3459 Manager
## 3460 Manager
## 3461 Manager
## 3462 Manager
## 3463 Manager
## 3464 Manager
## 3465 Manager
## 3466 Manager
## 3467 Manager
## 3468 Manager
## 3469 Manager
## 3470 Manager
## 3471 Manager
## 3472 Manager
## 3473 Manager
## 3474 Manager
## 3475 Manager
## 3476 Manager
## 3477 Manager
## 3478 Manager
## 3479 Manager
## 3480 Manager
## 3481 Manager
## 3482 Manager
## 3483 Manager
## 3484 Manager
## 3485 Manager
## 3486 Manager
## 3487 Manager
## 3488 Manager
## 3489 Manager
## 3490 Manager
## 3491 Manager
## 3492 Manager
## 3493 Manager
## 3494 Manager
## 3495 Manager
## 3496 Manager
## 3497 Manager
## 3498 Manager
## 3499 Manager
## 3500 Manager
## 3501 Manager
## 3502 Manager
## 3503 Manager
## 3504 Manager
## 3505 Manager
## 3506 Manager
## 3507 Manager
## 3508 Manager
## 3509 Employee
## 3510 Employee
## 3511 Employee
## 3512 Employee
## 3513 Employee
## 3514 Employee
## 3515 Employee
## 3516 Employee
## 3517 Employee
## 3518 Employee
## 3519 Employee
## 3520 Employee
## 3521 Employee
## 3522 Employee
## 3523 Employee
## 3524 Employee
## 3525 Employee
## 3526 Vice President
## 3527 Vice President
## 3528 Vice President
## 3529 Vice President
## 3530 Vice President
## 3531 Vice President
## 3532 Vice President
## 3533 Vice President
## 3534 Vice President
## 3535 Vice President
## 3536 Vice President
## 3537 Vice President
## 3538 Vice President
## 3539 Vice President
## 3540 Vice President
## 3541 Vice President
## 3542 Director
## 3543 Director
## 3544 Director
## 3545 Director
## 3546 Director
## 3547 Director
## 3548 Director
## 3549 Director
## 3550 Director
## 3551 Director
## 3552 Director
## 3553 Vice President
## 3554 Vice President
## 3555 Vice President
## 3556 Vice President
## 3557 Vice President
## 3558 Vice President
## 3559 Vice President
## 3560 Vice President
## 3561 Vice President
## 3562 Vice President
## 3563 Vice President
## 3564 Employee
## 3565 Employee
## 3566 Employee
## 3567 Employee
## 3568 Employee
## 3569 Employee
## 3570 Employee
## 3571 Employee
## 3572 Employee
## 3573 Vice President
## 3574 Vice President
## 3575 Vice President
## 3576 Vice President
## 3577 Vice President
## 3578 Vice President
## 3579 Vice President
## 3580 Vice President
## 3581 Vice President
## 3582 Director
## 3583 Director
## 3584 Director
## 3585 Director
## 3586 Director
## 3587 Director
## 3588 Director
## 3589 Director
## 3590 Director
## 3591 Director
## 3592 Director
## 3593 Director
## 3594 Director
## 3595 Director
## 3596 Director
## 3597 Director
## 3598 Vice President
## 3599 Vice President
## 3600 Director
## 3601 Director
## 3602 Director
## 3603 Director
## 3604 Director
## 3605 Director
## 3606 Director
## 3607 Director
## 3608 Director
## 3609 Director
## 3610 Director
## 3611 Director
## 3612 Director
## 3613 Director
## 3614 Director
## 3615 Director
## 3616 Director
## 3617 Director
## 3618 Vice President
## 3619 Vice President
## 3620 Vice President
## 3621 Vice President
## 3622 Vice President
## 3623 Vice President
## 3624 Vice President
## 3625 Vice President
## 3626 Manager
## 3627 Manager
## 3628 Manager
## 3629 Manager
## 3630 Manager
## 3631 Manager
## 3632 Manager
## 3633 Manager
## 3634 Employee
## 3635 Employee
## 3636 Employee
## 3637 Employee
## 3638 Employee
## 3639 Employee
## 3640 Employee
## 3641 Director
## 3642 Director
## 3643 Director
## 3644 Director
## 3645 Director
## 3646 Director
## 3647 Director
## 3648 Director
## 3649 Director
## 3650 Director
## 3651 Director
## 3652 Director
## 3653 Director
## 3654 Director
## 3655 Employee
## 3656 Employee
## 3657 Employee
## 3658 Employee
## 3659 Employee
## 3660 Employee
## 3661 Employee
## 3662 Employee
## 3663 Employee
## 3664 Employee
## 3665 Employee
## 3666 Employee
## 3667 Employee
## 3668 Employee
## 3669 Employee
## 3670 Director
## 3671 Director
## 3672 Director
## 3673 Director
## 3674 Director
## 3675 Director
## 3676 Director
## 3677 Director
## 3678 Director
## 3679 Director
## 3680 Director
## 3681 Director
## 3682 Director
## 3683 Director
## 3684 Employee
## 3685 Employee
## 3686 Employee
## 3687 Employee
## 3688 Employee
## 3689 Employee
## 3690 Employee
## 3691 Employee
## 3692 Employee
## 3693 Employee
## 3694 Employee
## 3695 Employee
## 3696 Employee
## 3697 Employee
## 3698 Employee
## 3699 Employee
## 3700 Vice President
## 3701 Vice President
## 3702 Vice President
## 3703 Vice President
## 3704 Vice President
## 3705 Vice President
## 3706 Vice President
## 3707 Vice President
## 3708 Vice President
## 3709 Vice President
## 3710 Vice President
## 3711 Vice President
## 3712 Vice President
## 3713 Vice President
## 3714 Vice President
## 3715 Vice President
## 3716 Vice President
## 3717 Vice President
## 3718 Vice President
## 3719 Vice President
## 3720 Vice President
## 3721 Vice President
## 3722 Vice President
## 3723 Vice President
## 3724 Vice President
## 3725 Vice President
## 3726 Vice President
## 3727 Vice President
## 3728 Vice President
## 3729 Vice President
## 3730 Vice President
## 3731 Vice President
## 3732 Vice President
## 3733 Vice President
## 3734 Vice President
## 3735 Vice President
## 3736 Vice President
## 3737 Vice President
## 3738 Vice President
## 3739 Vice President
## 3740 Employee
## 3741 Director
## 3742 Director
## 3743 Director
## 3744 Director
## 3745 Director
## 3746 Director
## 3747 Director
## 3748 Director
## 3749 Director
## 3750 Director
## 3751 Director
## 3752 Director
## 3753 Vice President
## 3754 Vice President
## 3755 Vice President
## 3756 Vice President
## 3757 Vice President
## 3758 Vice President
## 3759 Vice President
## 3760 Vice President
## 3761 Vice President
## 3762 Vice President
## 3763 Vice President
## 3764 Vice President
## 3765 Manager
## 3766 Manager
## 3767 Manager
## 3768 Manager
## 3769 Manager
## 3770 Manager
## 3771 Manager
## 3772 Vice President
## 3773 Vice President
## 3774 Director
## 3775 Director
## 3776 Director
## 3777 Director
## 3778 Director
## 3779 Director
## 3780 Director
## 3781 Director
## 3782 Director
## 3783 Director
## 3784 Employee
## 3785 Employee
## 3786 Employee
## 3787 Employee
## 3788 Employee
## 3789 Employee
## 3790 Employee
## 3791 Employee
## 3792 Employee
## 3793 Employee
## 3794 Employee
## 3795 Employee
## 3796 Employee
## 3797 Employee
## 3798 Employee
## 3799 Vice President
## 3800 Vice President
## 3801 Vice President
## 3802 Vice President
## 3803 Vice President
## 3804 Vice President
## 3805 Vice President
## 3806 Director
## 3807 Director
## 3808 Director
## 3809 Director
## 3810 Director
## 3811 Director
## 3812 Director
## 3813 Director
## 3814 Director
## 3815 Director
## 3816 Director
## 3817 Director
## 3818 Director
## 3819 Director
## 3820 Director
## 3821 Vice President
## 3822 Vice President
## 3823 Vice President
## 3824 Vice President
## 3825 Vice President
## 3826 Vice President
## 3827 Vice President
## 3828 Vice President
## 3829 Vice President
## 3830 Vice President
## 3831 Vice President
## 3832 Vice President
## 3833 Vice President
## 3834 Vice President
## 3835 Vice President
## 3836 Vice President
## 3837 Vice President
## 3838 Vice President
## 3839 Employee
## 3840 Employee
## 3841 Employee
## 3842 Employee
## 3843 Employee
## 3844 Employee
## 3845 Employee
## 3846 Employee
## 3847 Employee
## 3848 Employee
## 3849 Employee
## 3850 Employee
## 3851 Employee
## 3852 Employee
## 3853 Employee
## 3854 Employee
## 3855 Employee
## 3856 Employee
## 3857 Employee
## 3858 Employee
## 3859 Employee
## 3860 Employee
## 3861 Employee
## 3862 Employee
## 3863 Employee
## 3864 Employee
## 3865 Employee
## 3866 Employee
## 3867 Employee
## 3868 Employee
## 3869 Employee
## 3870 Employee
## 3871 Employee
## 3872 Employee
## 3873 Employee
## 3874 Employee
## 3875 Employee
## 3876 Employee
## 3877 Employee
## 3878 Employee
## 3879 Employee
## 3880 Employee
## 3881 Employee
## 3882 Employee
## 3883 Employee
## 3884 Employee
## 3885 Employee
## 3886 Employee
## 3887 Employee
## 3888 Employee
## 3889 Employee
## 3890 Employee
## 3891 Employee
## 3892 Employee
## 3893 Employee
## 3894 Employee
## 3895 Employee
## 3896 Employee
## 3897 Employee
## 3898 Employee
## 3899 Employee
## 3900 Employee
## 3901 Employee
## 3902 Employee
## 3903 Employee
## 3904 Employee
## 3905 Employee
## 3906 Employee
## 3907 Employee
## 3908 Employee
## 3909 Employee
## 3910 Employee
## 3911 Employee
## 3912 Employee
## 3913 Employee
## 3914 Employee
## 3915 Employee
## 3916 Employee
## 3917 Employee
## 3918 Employee
## 3919 Employee
## 3920 Employee
## 3921 Employee
## 3922 Employee
## 3923 Employee
## 3924 Employee
## 3925 Employee
## 3926 Employee
## 3927 Employee
## 3928 Employee
## 3929 Employee
## 3930 Employee
## 3931 Vice President
## 3932 Vice President
## 3933 Vice President
## 3934 Vice President
## 3935 Vice President
## 3936 Vice President
## 3937 Vice President
## 3938 Vice President
## 3939 Employee
## 3940 Employee
## 3941 Employee
## 3942 Employee
## 3943 Employee
## 3944 Employee
## 3945 Employee
## 3946 Employee
## 3947 Employee
## 3948 Employee
## 3949 Employee
## 3950 Employee
## 3951 Employee
## 3952 Employee
## 3953 Employee
## 3954 Employee
## 3955 Employee
## 3956 Employee
## 3957 Employee
## 3958 Employee
## 3959 Employee
## 3960 Employee
## 3961 Employee
## 3962 Employee
## 3963 Employee
## 3964 Employee
## 3965 Employee
## 3966 Employee
## 3967 Employee
## 3968 Employee
## 3969 Employee
## 3970 Employee
## 3971 Employee
## 3972 Employee
## 3973 Employee
## 3974 Employee
## 3975 Employee
## 3976 Employee
## 3977 Employee
## 3978 Employee
## 3979 Employee
## 3980 Employee
## 3981 Employee
## 3982 Employee
## 3983 Employee
## 3984 Employee
## 3985 Employee
## 3986 Employee
## 3987 Employee
## 3988 Employee
## 3989 Employee
## 3990 Employee
## 3991 Employee
## 3992 Employee
## 3993 Employee
## 3994 Employee
## 3995 Employee
## 3996 Employee
## 3997 Employee
## 3998 Employee
## 3999 Employee
## 4000 Employee
## 4001 Employee
## 4002 Employee
## 4003 Employee
## 4004 Employee
## 4005 Employee
## 4006 Employee
## 4007 Employee
## 4008 Employee
## 4009 Employee
## 4010 Employee
## 4011 Employee
## 4012 Employee
## 4013 Employee
## 4014 Employee
## 4015 Employee
## 4016 Employee
## 4017 Employee
## 4018 Employee
## 4019 Employee
## 4020 Employee
## 4021 Employee
## 4022 Employee
## 4023 Employee
## 4024 Employee
## 4025 Employee
## 4026 Employee
## 4027 Employee
## 4028 Employee
## 4029 Employee
## 4030 Employee
## 4031 Employee
## 4032 Employee
## 4033 Employee
## 4034 Employee
## 4035 Employee
## 4036 Employee
## 4037 Employee
## 4038 Employee
## 4039 Employee
## 4040 Employee
## 4041 Employee
## 4042 Employee
## 4043 Employee
## 4044 Employee
## 4045 Employee
## 4046 Employee
## 4047 Employee
## 4048 Employee
## 4049 Employee
## 4050 Employee
## 4051 Employee
## 4052 Employee
## 4053 Employee
## 4054 Employee
## 4055 Employee
## 4056 Employee
## 4057 Employee
## 4058 Employee
## 4059 Employee
## 4060 Employee
## 4061 Employee
## 4062 Employee
## 4063 Employee
## 4064 Employee
## 4065 Employee
## 4066 Employee
## 4067 Employee
## 4068 Employee
## 4069 Employee
## 4070 Employee
## 4071 Employee
## 4072 Employee
## 4073 Employee
## 4074 Employee
## 4075 Employee
## 4076 Employee
## 4077 Employee
## 4078 Employee
## 4079 Employee
## 4080 Employee
## 4081 Employee
## 4082 Employee
## 4083 Employee
## 4084 Employee
## 4085 Employee
## 4086 Employee
## 4087 Employee
## 4088 Employee
## 4089 Employee
## 4090 Employee
## 4091 Employee
## 4092 Employee
## 4093 Employee
## 4094 Employee
## 4095 Employee
## 4096 Employee
## 4097 Employee
## 4098 Employee
## 4099 Employee
## 4100 Employee
## 4101 Employee
## 4102 Employee
## 4103 Employee
## 4104 Employee
## 4105 Employee
## 4106 Employee
## 4107 Employee
## 4108 Employee
## 4109 Employee
## 4110 Employee
## 4111 Employee
## 4112 Employee
## 4113 Employee
## 4114 Employee
## 4115 Employee
## 4116 Employee
## 4117 Employee
## 4118 Employee
## 4119 Employee
## 4120 Employee
## 4121 Employee
## 4122 Employee
## 4123 Employee
## 4124 Employee
## 4125 Employee
## 4126 Employee
## 4127 Employee
## 4128 Employee
## 4129 Employee
## 4130 Employee
## 4131 Employee
## 4132 Employee
## 4133 Employee
## 4134 Employee
## 4135 Employee
## 4136 Employee
## 4137 Employee
## 4138 Employee
## 4139 Employee
## 4140 Employee
## 4141 Employee
## 4142 Employee
## 4143 Employee
## 4144 Employee
## 4145 Employee
## 4146 Employee
## 4147 Employee
## 4148 Employee
## 4149 Employee
## 4150 Employee
## 4151 Employee
## 4152 Employee
## 4153 Employee
## 4154 Employee
## 4155 Employee
## 4156 Employee
## 4157 Employee
## 4158 Employee
## 4159 Employee
## 4160 Employee
## 4161 Employee
## 4162 Employee
## 4163 Employee
## 4164 Employee
## 4165 Employee
## 4166 Employee
## 4167 Employee
## 4168 Employee
## 4169 Employee
## 4170 Employee
## 4171 Employee
## 4172 Employee
## 4173 Employee
## 4174 Employee
## 4175 Employee
## 4176 Employee
## 4177 Employee
## 4178 Employee
## 4179 Employee
## 4180 Employee
## 4181 Employee
## 4182 Employee
## 4183 Employee
## 4184 Employee
## 4185 Employee
## 4186 Employee
## 4187 Employee
## 4188 Employee
## 4189 Employee
## 4190 Employee
## 4191 Employee
## 4192 Employee
## 4193 Employee
## 4194 Employee
## 4195 Employee
## 4196 Employee
## 4197 Employee
## 4198 Employee
## 4199 Employee
## 4200 Employee
## 4201 Employee
## 4202 Employee
## 4203 Employee
## 4204 Employee
## 4205 Employee
## 4206 Employee
## 4207 Employee
## 4208 Employee
## 4209 Employee
## 4210 Employee
## 4211 Employee
## 4212 Employee
## 4213 Employee
## 4214 Employee
## 4215 Employee
## 4216 Employee
## 4217 Employee
## 4218 Employee
## 4219 Employee
## 4220 Employee
## 4221 Employee
## 4222 Employee
## 4223 Employee
## 4224 Employee
## 4225 Employee
## 4226 Employee
## 4227 Employee
## 4228 Employee
## 4229 Employee
## 4230 Employee
## 4231 Employee
## 4232 Employee
## 4233 Employee
## 4234 Employee
## 4235 Employee
## 4236 Employee
## 4237 Employee
## 4238 Employee
## 4239 Employee
## 4240 Employee
## 4241 Employee
## 4242 Employee
## 4243 Employee
## 4244 Employee
## 4245 Employee
## 4246 Employee
## 4247 Employee
## 4248 Employee
## 4249 Employee
## 4250 Employee
## 4251 Employee
## 4252 Employee
## 4253 Employee
## 4254 Employee
## 4255 Employee
## 4256 Employee
## 4257 Employee
## 4258 Employee
## 4259 Employee
## 4260 Employee
## 4261 Employee
## 4262 Employee
## 4263 Employee
## 4264 Employee
## 4265 Employee
## 4266 Employee
## 4267 Employee
## 4268 Employee
## 4269 Employee
## 4270 Employee
## 4271 Employee
## 4272 Employee
## 4273 Employee
## 4274 Employee
## 4275 Employee
## 4276 Employee
## 4277 Employee
## 4278 Employee
## 4279 Employee
## 4280 Employee
## 4281 Employee
## 4282 Employee
## 4283 Employee
## 4284 Employee
## 4285 Employee
## 4286 Employee
## 4287 Employee
## 4288 Employee
## 4289 Employee
## 4290 Employee
## 4291 Employee
## 4292 Employee
## 4293 Employee
## 4294 Employee
## 4295 Employee
## 4296 Employee
## 4297 Employee
## 4298 Employee
## 4299 Employee
## 4300 Employee
## 4301 Employee
## 4302 Employee
## 4303 Employee
## 4304 Employee
## 4305 Employee
## 4306 Employee
## 4307 Employee
## 4308 Employee
## 4309 Employee
## 4310 Employee
## 4311 Employee
## 4312 Employee
## 4313 Employee
## 4314 Employee
## 4315 Employee
## 4316 Employee
## 4317 Employee
## 4318 Employee
## 4319 Employee
## 4320 Employee
## 4321 Employee
## 4322 Employee
## 4323 Employee
## 4324 Employee
## 4325 Employee
## 4326 Employee
## 4327 Employee
## 4328 Employee
## 4329 Employee
## 4330 Employee
## 4331 Employee
## 4332 Employee
## 4333 Employee
## 4334 Employee
## 4335 Employee
## 4336 Employee
## 4337 Employee
## 4338 Employee
## 4339 Employee
## 4340 Employee
## 4341 Employee
## 4342 Employee
## 4343 Employee
## 4344 Employee
## 4345 Employee
## 4346 Employee
## 4347 Employee
## 4348 Employee
## 4349 Employee
## 4350 Employee
## 4351 Employee
## 4352 Employee
## 4353 Employee
## 4354 Employee
## 4355 Employee
## 4356 Employee
## 4357 Employee
## 4358 Employee
## 4359 Employee
## 4360 Employee
## 4361 Employee
## 4362 Employee
## 4363 Employee
## 4364 Employee
## 4365 Employee
## 4366 Employee
## 4367 Employee
## 4368 Employee
## 4369 Employee
## 4370 Employee
## 4371 Employee
## 4372 Employee
## 4373 Employee
## 4374 Employee
## 4375 Employee
## 4376 Employee
## 4377 Employee
## 4378 Employee
## 4379 Employee
## 4380 Employee
## 4381 Employee
## 4382 Employee
## 4383 Employee
## 4384 Employee
## 4385 Employee
## 4386 Employee
## 4387 Employee
## 4388 Employee
## 4389 Employee
## 4390 Employee
## 4391 Employee
## 4392 Employee
## 4393 Employee
## 4394 Employee
## 4395 Employee
## 4396 Employee
## 4397 Employee
## 4398 Employee
## 4399 Employee
## 4400 Employee
## 4401 Employee
## 4402 Employee
## 4403 Employee
## 4404 Employee
## 4405 Employee
## 4406 Employee
## 4407 Employee
## 4408 Employee
## 4409 Employee
## 4410 Employee
## 4411 Employee
## 4412 Employee
## 4413 Employee
## 4414 Employee
## 4415 Employee
## 4416 Employee
## 4417 Employee
## 4418 Employee
## 4419 Employee
## 4420 Employee
## 4421 Employee
## 4422 Employee
## 4423 Employee
## 4424 Employee
## 4425 Employee
## 4426 Employee
## 4427 Employee
## 4428 Employee
## 4429 Employee
## 4430 Employee
## 4431 Employee
## 4432 Employee
## 4433 Employee
## 4434 Employee
## 4435 Employee
## 4436 Employee
## 4437 Employee
## 4438 Employee
## 4439 Employee
## 4440 Employee
## 4441 Employee
## 4442 Employee
## 4443 Employee
## 4444 Employee
## 4445 Employee
## 4446 Employee
## 4447 Employee
## 4448 Employee
## 4449 Employee
## 4450 Employee
## 4451 Employee
## 4452 Employee
## 4453 Employee
## 4454 Employee
## 4455 Employee
## 4456 Employee
## 4457 Employee
## 4458 Employee
## 4459 Employee
## 4460 Employee
## 4461 Employee
## 4462 Employee
## 4463 Employee
## 4464 Employee
## 4465 Employee
## 4466 Employee
## 4467 Employee
## 4468 Employee
## 4469 Employee
## 4470 Employee
## 4471 Employee
## 4472 Employee
## 4473 Employee
## 4474 Employee
## 4475 Employee
## 4476 Employee
## 4477 Employee
## 4478 Employee
## 4479 Employee
## 4480 Employee
## 4481 Employee
## 4482 Employee
## 4483 Employee
## 4484 Employee
## 4485 Employee
## 4486 Employee
## 4487 Employee
## 4488 Employee
## 4489 Employee
## 4490 Employee
## 4491 Employee
## 4492 Employee
## 4493 Employee
## 4494 Employee
## 4495 Employee
## 4496 Employee
## 4497 Employee
## 4498 Employee
## 4499 Employee
## 4500 Employee
## 4501 Employee
## 4502 Employee
## 4503 Employee
## 4504 Employee
## 4505 Employee
## 4506 Employee
## 4507 Employee
## 4508 Employee
## 4509 Employee
## 4510 Employee
## 4511 Employee
## 4512 Employee
## 4513 Employee
## 4514 Employee
## 4515 Employee
## 4516 Employee
## 4517 Employee
## 4518 Employee
## 4519 Employee
## 4520 Employee
## 4521 Employee
## 4522 Employee
## 4523 Employee
## 4524 Employee
## 4525 Employee
## 4526 Employee
## 4527 Employee
## 4528 Employee
## 4529 Employee
## 4530 Employee
## 4531 Employee
## 4532 Employee
## 4533 Employee
## 4534 Employee
## 4535 Employee
## 4536 Employee
## 4537 Employee
## 4538 Employee
## 4539 Employee
## 4540 Employee
## 4541 Employee
## 4542 Employee
## 4543 Employee
## 4544 Employee
## 4545 Employee
## 4546 Employee
## 4547 Employee
## 4548 Employee
## 4549 Employee
## 4550 Employee
## 4551 Employee
## 4552 Employee
## 4553 Employee
## 4554 Employee
## 4555 Employee
## 4556 Employee
## 4557 Employee
## 4558 Employee
## 4559 Employee
## 4560 Employee
## 4561 Employee
## 4562 Employee
## 4563 Employee
## 4564 Employee
## 4565 Employee
## 4566 Employee
## 4567 Employee
## 4568 Employee
## 4569 Employee
## 4570 Employee
## 4571 Employee
## 4572 Employee
## 4573 Employee
## 4574 Employee
## 4575 Employee
## 4576 Employee
## 4577 Employee
## 4578 Employee
## 4579 Employee
## 4580 Employee
## 4581 Employee
## 4582 Employee
## 4583 Employee
## 4584 Employee
## 4585 Employee
## 4586 Employee
## 4587 Employee
## 4588 Employee
## 4589 Employee
## 4590 Employee
## 4591 Employee
## 4592 Employee
## 4593 Employee
## 4594 Employee
## 4595 Employee
## 4596 Employee
## 4597 Employee
## 4598 Employee
## 4599 Employee
## 4600 Employee
## 4601 Employee
## 4602 Employee
## 4603 Employee
## 4604 Employee
## 4605 Employee
## 4606 Employee
## 4607 Employee
## 4608 Employee
## 4609 Employee
## 4610 Employee
## 4611 Employee
## 4612 Employee
## 4613 Employee
## 4614 Employee
## 4615 Employee
## 4616 Employee
## 4617 Employee
## 4618 Employee
## 4619 Employee
## 4620 Employee
## 4621 Employee
## 4622 Employee
## 4623 Employee
## 4624 Employee
## 4625 Employee
## 4626 Employee
## 4627 Employee
## 4628 Employee
## 4629 Employee
## 4630 Employee
## 4631 Employee
## 4632 Employee
## 4633 Employee
## 4634 Employee
## 4635 Employee
## 4636 Employee
## 4637 Employee
## 4638 Employee
## 4639 Employee
## 4640 Employee
## 4641 Employee
## 4642 Employee
## 4643 Employee
## 4644 Employee
## 4645 Employee
## 4646 Employee
## 4647 Employee
## 4648 Employee
## 4649 Employee
## 4650 Employee
## 4651 Employee
## 4652 Employee
## 4653 Employee
## 4654 Employee
## 4655 Employee
## 4656 Employee
## 4657 Employee
## 4658 Employee
## 4659 Employee
## 4660 Employee
## 4661 Employee
## 4662 Employee
## 4663 Employee
## 4664 Employee
## 4665 Employee
## 4666 Employee
## 4667 Employee
## 4668 Employee
## 4669 Employee
## 4670 Employee
## 4671 Employee
## 4672 Employee
## 4673 Employee
## 4674 Employee
## 4675 Employee
## 4676 Employee
## 4677 Employee
## 4678 Employee
## 4679 Employee
## 4680 Employee
## 4681 Employee
## 4682 Employee
## 4683 Employee
## 4684 Employee
## 4685 Employee
## 4686 Employee
## 4687 Employee
## 4688 Employee
## 4689 Employee
## 4690 Employee
## 4691 Employee
## 4692 Employee
## 4693 Employee
## 4694 Employee
## 4695 Employee
## 4696 Employee
## 4697 Employee
## 4698 Employee
## 4699 Employee
## 4700 Employee
## 4701 Employee
## 4702 Employee
## 4703 Employee
## 4704 Employee
## 4705 Employee
## 4706 Employee
## 4707 Employee
## 4708 Employee
## 4709 Employee
## 4710 Employee
## 4711 Employee
## 4712 Employee
## 4713 Employee
## 4714 Employee
## 4715 Employee
## 4716 Employee
## 4717 Employee
## 4718 Employee
## 4719 Employee
## 4720 Employee
## 4721 Employee
## 4722 Employee
## 4723 Employee
## 4724 Employee
## 4725 Employee
## 4726 Employee
## 4727 Employee
## 4728 Employee
## 4729 Employee
## 4730 Employee
## 4731 Employee
## 4732 Employee
## 4733 Employee
## 4734 Employee
## 4735 Employee
## 4736 Employee
## 4737 Employee
## 4738 Employee
## 4739 Employee
## 4740 Employee
## 4741 Employee
## 4742 Employee
## 4743 Employee
## 4744 Employee
## 4745 Employee
## 4746 Employee
## 4747 Employee
## 4748 Employee
## 4749 Employee
## 4750 Employee
## 4751 Employee
## 4752 Employee
## 4753 Employee
## 4754 Employee
## 4755 Employee
## 4756 Employee
## 4757 Employee
## 4758 Employee
## 4759 Employee
## 4760 Employee
## 4761 Employee
## 4762 Employee
## 4763 Employee
## 4764 Employee
## 4765 Employee
## 4766 Employee
## 4767 Employee
## 4768 Employee
## 4769 Employee
## 4770 Employee
## 4771 Employee
## 4772 Employee
## 4773 Employee
## 4774 Employee
## 4775 Employee
## 4776 Employee
## 4777 Employee
## 4778 Employee
## 4779 Employee
## 4780 Employee
## 4781 Employee
## 4782 Employee
## 4783 Employee
## 4784 Employee
## 4785 Employee
## 4786 Employee
## 4787 Employee
## 4788 Employee
## 4789 Employee
## 4790 Employee
## 4791 Employee
## 4792 Employee
## 4793 Employee
## 4794 Employee
## 4795 Employee
## 4796 Employee
## 4797 Employee
## 4798 Employee
## 4799 Employee
## 4800 Employee
## 4801 Employee
## 4802 Employee
## 4803 Employee
## 4804 Employee
## 4805 Employee
## 4806 Employee
## 4807 Employee
## 4808 Employee
## 4809 Employee
## 4810 Employee
## 4811 Employee
## 4812 Employee
## 4813 Employee
## 4814 Employee
## 4815 Employee
## 4816 Employee
## 4817 Employee
## 4818 Employee
## 4819 Employee
## 4820 Employee
## 4821 Employee
## 4822 Employee
## 4823 Employee
## 4824 Employee
## 4825 Employee
## 4826 Employee
## 4827 Employee
## 4828 Employee
## 4829 Employee
## 4830 Employee
## 4831 Employee
## 4832 Employee
## 4833 Employee
## 4834 Employee
## 4835 Employee
## 4836 Employee
## 4837 Employee
## 4838 Employee
## 4839 Employee
## 4840 Employee
## 4841 Employee
## 4842 Employee
## 4843 Employee
## 4844 Employee
## 4845 Employee
## 4846 Employee
## 4847 Employee
## 4848 Employee
## 4849 Employee
## 4850 Employee
## 4851 Employee
## 4852 Employee
## 4853 Employee
## 4854 Employee
## 4855 Employee
## 4856 Employee
## 4857 Employee
## 4858 Employee
## 4859 Employee
## 4860 Employee
## 4861 Employee
## 4862 Employee
## 4863 Employee
## 4864 Employee
## 4865 Employee
## 4866 Employee
## 4867 Employee
## 4868 Employee
## 4869 Employee
## 4870 Employee
## 4871 Employee
## 4872 Employee
## 4873 Employee
## 4874 Employee
## 4875 Employee
## 4876 Employee
## 4877 Employee
## 4878 Employee
## 4879 Employee
## 4880 Employee
## 4881 Employee
## 4882 Employee
## 4883 Employee
## 4884 Employee
## 4885 Employee
## 4886 Employee
## 4887 Employee
## 4888 Employee
## 4889 Employee
## 4890 Employee
## 4891 Employee
## 4892 Employee
## 4893 Employee
## 4894 Employee
## 4895 Employee
## 4896 Employee
## 4897 Employee
## 4898 Employee
## 4899 Employee
## 4900 Employee
## 4901 Employee
## 4902 Employee
## 4903 Employee
## 4904 Employee
## 4905 Employee
## 4906 Employee
## 4907 Employee
## 4908 Employee
## 4909 Employee
## 4910 Employee
## 4911 Employee
## 4912 Employee
## 4913 Employee
## 4914 Employee
## 4915 Employee
## 4916 Employee
## 4917 Employee
## 4918 Employee
## 4919 Employee
## 4920 Employee
## 4921 Employee
## 4922 Employee
## 4923 Employee
## 4924 Employee
## 4925 Employee
## 4926 Employee
## 4927 Employee
## 4928 Employee
## 4929 Employee
## 4930 Employee
## 4931 Employee
## 4932 Employee
## 4933 Employee
## 4934 Employee
## 4935 Employee
## 4936 Employee
## 4937 Employee
## 4938 Employee
## 4939 Employee
## 4940 Employee
## 4941 Employee
## 4942 Employee
## 4943 Employee
## 4944 Employee
## 4945 Employee
## 4946 Employee
## 4947 Employee
## 4948 Employee
## 4949 Employee
## 4950 Employee
## 4951 Employee
## 4952 Employee
## 4953 Employee
## 4954 Employee
## 4955 Employee
## 4956 Employee
## 4957 Employee
## 4958 Employee
## 4959 Employee
## 4960 Employee
## 4961 Employee
## 4962 Employee
## 4963 Employee
## 4964 Employee
## 4965 Employee
## 4966 Employee
## 4967 Employee
## 4968 Employee
## 4969 Employee
## 4970 Employee
## 4971 Employee
## 4972 Employee
## 4973 Employee
## 4974 Employee
## 4975 Employee
## 4976 Employee
## 4977 Employee
## 4978 Employee
## 4979 Employee
## 4980 Employee
## 4981 Employee
## 4982 Employee
## 4983 Employee
## 4984 Employee
## 4985 Employee
## 4986 Employee
## 4987 Employee
## 4988 Employee
## 4989 Employee
## 4990 Employee
## 4991 Employee
## 4992 Employee
## 4993 Employee
## 4994 Employee
## 4995 Employee
## 4996 Employee
## 4997 Employee
## 4998 Employee
## 4999 Employee
## 5000 Employee
## 5001 Employee
## 5002 Employee
## 5003 Employee
## 5004 Employee
## 5005 Employee
## 5006 Employee
## 5007 Employee
## 5008 Employee
## 5009 Employee
## 5010 Employee
## 5011 Employee
## 5012 Employee
## 5013 Employee
## 5014 Employee
## 5015 Employee
## 5016 Employee
## 5017 Employee
## 5018 Employee
## 5019 Employee
## 5020 Employee
## 5021 Employee
## 5022 Employee
## 5023 Employee
## 5024 Employee
## 5025 Employee
## 5026 Employee
## 5027 Employee
## 5028 Employee
## 5029 Employee
## 5030 Employee
## 5031 Employee
## 5032 Employee
## 5033 Employee
## 5034 Employee
## 5035 Employee
## 5036 Employee
## 5037 Employee
## 5038 Employee
## 5039 Employee
## 5040 Employee
## 5041 Employee
## 5042 Employee
## 5043 Employee
## 5044 Employee
## 5045 Employee
## 5046 Employee
## 5047 Employee
## 5048 Employee
## 5049 Employee
## 5050 Employee
## 5051 Employee
## 5052 Employee
## 5053 Employee
## 5054 Employee
## 5055 Employee
## 5056 Employee
## 5057 Employee
## 5058 Employee
## 5059 Employee
## 5060 Employee
## 5061 Employee
## 5062 Employee
## 5063 Employee
## 5064 Employee
## 5065 Employee
## 5066 Employee
## 5067 Employee
## 5068 Employee
## 5069 Employee
## 5070 Employee
## 5071 Employee
## 5072 Employee
## 5073 Employee
## 5074 Employee
## 5075 Employee
## 5076 Employee
## 5077 Employee
## 5078 Employee
## 5079 Employee
## 5080 Employee
## 5081 Employee
## 5082 Employee
## 5083 Employee
## 5084 Employee
## 5085 Employee
## 5086 Employee
## 5087 Employee
## 5088 Employee
## 5089 Employee
## 5090 Employee
## 5091 Employee
## 5092 Employee
## 5093 Employee
## 5094 Employee
## 5095 Employee
## 5096 Employee
## 5097 Employee
## 5098 Employee
## 5099 Employee
## 5100 Employee
## 5101 Employee
## 5102 Employee
## 5103 Employee
## 5104 Employee
## 5105 Employee
## 5106 Employee
## 5107 Employee
## 5108 Employee
## 5109 Employee
## 5110 Employee
## 5111 Employee
## 5112 Employee
## 5113 Employee
## 5114 Employee
## 5115 Employee
## 5116 Employee
## 5117 Employee
## 5118 Employee
## 5119 Employee
## 5120 Employee
## 5121 Employee
## 5122 Employee
## 5123 Employee
## 5124 Employee
## 5125 Employee
## 5126 Employee
## 5127 Employee
## 5128 Employee
## 5129 Employee
## 5130 Employee
## 5131 Employee
## 5132 Employee
## 5133 Employee
## 5134 Employee
## 5135 Employee
## 5136 Employee
## 5137 Employee
## 5138 Employee
## 5139 Employee
## 5140 Employee
## 5141 Employee
## 5142 Employee
## 5143 Employee
## 5144 Employee
## 5145 Employee
## 5146 Employee
## 5147 Employee
## 5148 Employee
## 5149 Employee
## 5150 Employee
## 5151 Employee
## 5152 Employee
## 5153 Employee
## 5154 Employee
## 5155 Employee
## 5156 Employee
## 5157 Employee
## 5158 Employee
## 5159 Employee
## 5160 Employee
## 5161 Employee
## 5162 Employee
## 5163 Employee
## 5164 Employee
## 5165 Employee
## 5166 Employee
## 5167 Employee
## 5168 Employee
## 5169 Employee
## 5170 Employee
## 5171 Employee
## 5172 Employee
## 5173 Employee
## 5174 Employee
## 5175 Employee
## 5176 Employee
## 5177 Employee
## 5178 Employee
## 5179 Employee
## 5180 Employee
## 5181 Employee
## 5182 Employee
## 5183 Employee
## 5184 Employee
## 5185 Employee
## 5186 Employee
## 5187 Employee
## 5188 Employee
## 5189 Employee
## 5190 Employee
## 5191 Employee
## 5192 Employee
## 5193 Employee
## 5194 Employee
## 5195 Employee
## 5196 Employee
## 5197 Employee
## 5198 Employee
## 5199 Employee
## 5200 Employee
## 5201 Employee
## 5202 Employee
## 5203 Employee
## 5204 Employee
## 5205 Employee
## 5206 Employee
## 5207 Employee
## 5208 Employee
## 5209 Employee
## 5210 Employee
## 5211 Employee
## 5212 Employee
## 5213 Employee
## 5214 Employee
## 5215 Employee
## 5216 Employee
## 5217 Employee
## 5218 Employee
## 5219 Employee
## 5220 Employee
## 5221 Employee
## 5222 Employee
## 5223 Employee
## 5224 Employee
## 5225 Employee
## 5226 Employee
## 5227 Employee
## 5228 Employee
## 5229 Employee
## 5230 Employee
## 5231 Employee
## 5232 Employee
## 5233 Employee
## 5234 Employee
## 5235 Employee
## 5236 Employee
## 5237 Employee
## 5238 Employee
## 5239 Employee
## 5240 Employee
## 5241 Employee
## 5242 Employee
## 5243 Employee
## 5244 Employee
## 5245 Employee
## 5246 Employee
## 5247 Employee
## 5248 Employee
## 5249 Employee
## 5250 Employee
## 5251 Employee
## 5252 Employee
## 5253 Employee
## 5254 Employee
## 5255 Employee
## 5256 Employee
## 5257 Employee
## 5258 Employee
## 5259 Employee
## 5260 Employee
## 5261 Employee
## 5262 Employee
## 5263 Employee
## 5264 Employee
## 5265 Employee
## 5266 Employee
## 5267 Employee
## 5268 Employee
## 5269 Employee
## 5270 Employee
## 5271 Employee
## 5272 Employee
## 5273 Employee
## 5274 Employee
## 5275 Employee
## 5276 Employee
## 5277 Employee
## 5278 Employee
## 5279 Employee
## 5280 Employee
## 5281 Employee
## 5282 Employee
## 5283 Employee
## 5284 Employee
## 5285 Employee
## 5286 Employee
## 5287 Employee
## 5288 Employee
## 5289 Employee
## 5290 Employee
## 5291 Employee
## 5292 Employee
## 5293 Employee
## 5294 Employee
## 5295 Employee
## 5296 Employee
## 5297 Employee
## 5298 Employee
## 5299 Employee
## 5300 Employee
## 5301 Employee
## 5302 Employee
## 5303 Employee
## 5304 Employee
## 5305 Employee
## 5306 Employee
## 5307 Employee
## 5308 Employee
## 5309 Employee
## 5310 Employee
## 5311 Employee
## 5312 Employee
## 5313 Employee
## 5314 Employee
## 5315 Employee
## 5316 Employee
## 5317 Employee
## 5318 Employee
## 5319 Employee
## 5320 Employee
## 5321 Employee
## 5322 Employee
## 5323 Employee
## 5324 Employee
## 5325 Employee
## 5326 Employee
## 5327 Employee
## 5328 Employee
## 5329 Employee
## 5330 Employee
## 5331 Employee
## 5332 Employee
## 5333 Employee
## 5334 Employee
## 5335 Employee
## 5336 Employee
## 5337 Employee
## 5338 Employee
## 5339 Employee
## 5340 Employee
## 5341 Employee
## 5342 Employee
## 5343 Employee
## 5344 Employee
## 5345 Employee
## 5346 Employee
## 5347 Employee
## 5348 Employee
## 5349 Employee
## 5350 Employee
## 5351 Employee
## 5352 Employee
## 5353 Employee
## 5354 Employee
## 5355 Employee
## 5356 Employee
## 5357 Employee
## 5358 Employee
## 5359 Employee
## 5360 Employee
## 5361 Employee
## 5362 Employee
## 5363 Employee
## 5364 Employee
## 5365 Employee
## 5366 Employee
## 5367 Employee
## 5368 Employee
## 5369 Employee
## 5370 Employee
## 5371 Employee
## 5372 Employee
## 5373 Employee
## 5374 Employee
## 5375 Employee
## 5376 Employee
## 5377 Employee
## 5378 Employee
## 5379 Employee
## 5380 Employee
## 5381 Employee
## 5382 Employee
## 5383 Employee
## 5384 Employee
## 5385 Employee
## 5386 Employee
## 5387 Employee
## 5388 Employee
## 5389 Employee
## 5390 Employee
## 5391 Employee
## 5392 Employee
## 5393 Employee
## 5394 Employee
## 5395 Employee
## 5396 Employee
## 5397 Employee
## 5398 Employee
## 5399 Employee
## 5400 Employee
## 5401 Employee
## 5402 Employee
## 5403 Employee
## 5404 Employee
## 5405 Employee
## 5406 Employee
## 5407 Employee
## 5408 Employee
## 5409 Employee
## 5410 Employee
## 5411 Employee
## 5412 Employee
## 5413 Employee
## 5414 Employee
## 5415 Employee
## 5416 Employee
## 5417 Employee
## 5418 Employee
## 5419 Employee
## 5420 Employee
## 5421 Employee
## 5422 Employee
## 5423 Employee
## 5424 Employee
## 5425 Employee
## 5426 Employee
## 5427 Employee
## 5428 Employee
## 5429 Employee
## 5430 Employee
## 5431 Employee
## 5432 Employee
## 5433 Employee
## 5434 Employee
## 5435 Employee
## 5436 Employee
## 5437 Employee
## 5438 Employee
## 5439 Employee
## 5440 Employee
## 5441 Employee
## 5442 Employee
## 5443 Employee
## 5444 Employee
## 5445 Employee
## 5446 Employee
## 5447 Employee
## 5448 Employee
## 5449 Employee
## 5450 Employee
## 5451 Employee
## 5452 Employee
## 5453 Employee
## 5454 Employee
## 5455 Employee
## 5456 Employee
## 5457 Employee
## 5458 Employee
## 5459 Employee
## 5460 Employee
## 5461 Employee
## 5462 Employee
## 5463 Employee
## 5464 Employee
## 5465 Employee
## 5466 Employee
## 5467 Employee
## 5468 Employee
## 5469 Employee
## 5470 Employee
## 5471 Employee
## 5472 Employee
## 5473 Employee
## 5474 Employee
## 5475 Employee
## 5476 Employee
## 5477 Employee
## 5478 Employee
## 5479 Employee
## 5480 Employee
## 5481 Employee
## 5482 Employee
## 5483 Employee
## 5484 Employee
## 5485 Employee
## 5486 Employee
## 5487 Employee
## 5488 Employee
## 5489 Employee
## 5490 Employee
## 5491 Employee
## 5492 Employee
## 5493 Employee
## 5494 Employee
## 5495 Employee
## 5496 Employee
## 5497 Employee
## 5498 Employee
## 5499 Employee
## 5500 Employee
## 5501 Employee
## 5502 Employee
## 5503 Employee
## 5504 Employee
## 5505 Employee
## 5506 Employee
## 5507 Employee
## 5508 Employee
## 5509 Employee
## 5510 Employee
## 5511 Employee
## 5512 Employee
## 5513 Employee
## 5514 Employee
## 5515 Employee
## 5516 Employee
## 5517 Employee
## 5518 Employee
## 5519 Employee
## 5520 Employee
## 5521 Employee
## 5522 Employee
## 5523 Employee
## 5524 Employee
## 5525 Employee
## 5526 Employee
## 5527 Employee
## 5528 Employee
## 5529 Employee
## 5530 Employee
## 5531 Employee
## 5532 Employee
## 5533 Employee
## 5534 Employee
## 5535 Employee
## 5536 Employee
## 5537 Employee
## 5538 Employee
## 5539 Employee
## 5540 Employee
## 5541 Employee
## 5542 Employee
## 5543 Employee
## 5544 Employee
## 5545 Employee
## 5546 Employee
## 5547 Employee
## 5548 Employee
## 5549 Employee
## 5550 Employee
## 5551 Employee
## 5552 Employee
## 5553 Employee
## 5554 Employee
## 5555 Employee
## 5556 Employee
## 5557 Employee
## 5558 Employee
## 5559 Employee
## 5560 Employee
## 5561 Employee
## 5562 Employee
## 5563 Employee
## 5564 Employee
## 5565 Employee
## 5566 Employee
## 5567 Employee
## 5568 Employee
## 5569 Employee
## 5570 Employee
## 5571 Employee
## 5572 Employee
## 5573 Employee
## 5574 Employee
## 5575 Employee
## 5576 Employee
## 5577 Employee
## 5578 Employee
## 5579 Employee
## 5580 Employee
## 5581 Employee
## 5582 Employee
## 5583 Employee
## 5584 Employee
## 5585 Employee
## 5586 Employee
## 5587 Employee
## 5588 Employee
## 5589 Employee
## 5590 Employee
## 5591 Employee
## 5592 Employee
## 5593 Employee
## 5594 Employee
## 5595 Employee
## 5596 Employee
## 5597 Employee
## 5598 Employee
## 5599 Employee
## 5600 Employee
## 5601 Employee
## 5602 Employee
## 5603 Employee
## 5604 Employee
## 5605 Employee
## 5606 Employee
## 5607 Employee
## 5608 Employee
## 5609 Employee
## 5610 Employee
## 5611 Employee
## 5612 Employee
## 5613 Employee
## 5614 Employee
## 5615 Employee
## 5616 Employee
## 5617 Employee
## 5618 Employee
## 5619 Employee
## 5620 Employee
## 5621 Employee
## 5622 Employee
## 5623 Employee
## 5624 Employee
## 5625 Employee
## 5626 Employee
## 5627 Employee
## 5628 Employee
## 5629 Employee
## 5630 Employee
## 5631 Employee
## 5632 Employee
## 5633 Employee
## 5634 Employee
## 5635 Employee
## 5636 Employee
## 5637 Employee
## 5638 Employee
## 5639 Employee
## 5640 Employee
## 5641 Employee
## 5642 Employee
## 5643 Employee
## 5644 Employee
## 5645 Employee
## 5646 Employee
## 5647 Employee
## 5648 Employee
## 5649 Employee
## 5650 Employee
## 5651 Employee
## 5652 Employee
## 5653 Employee
## 5654 Employee
## 5655 Employee
## 5656 Employee
## 5657 Employee
## 5658 Employee
## 5659 Employee
## 5660 Employee
## 5661 Employee
## 5662 Employee
## 5663 Employee
## 5664 Employee
## 5665 Employee
## 5666 Employee
## 5667 Employee
## 5668 Employee
## 5669 Employee
## 5670 Employee
## 5671 Employee
## 5672 Employee
## 5673 Employee
## 5674 Employee
## 5675 Employee
## 5676 Employee
## 5677 Employee
## 5678 Employee
## 5679 Employee
## 5680 Employee
## 5681 Employee
## 5682 Employee
## 5683 Employee
## 5684 Employee
## 5685 Employee
## 5686 Employee
## 5687 Employee
## 5688 Employee
## 5689 Employee
## 5690 Employee
## 5691 Employee
## 5692 Employee
## 5693 Employee
## 5694 Employee
## 5695 Employee
## 5696 Employee
## 5697 Employee
## 5698 Employee
## 5699 Employee
## 5700 Employee
## 5701 Employee
## 5702 Employee
## 5703 Employee
## 5704 Employee
## 5705 Employee
## 5706 Employee
## 5707 Employee
## 5708 Employee
## 5709 Employee
## 5710 Employee
## 5711 Employee
## 5712 Employee
## 5713 Employee
## 5714 Employee
## 5715 Employee
## 5716 Employee
## 5717 Employee
## 5718 Employee
## 5719 Employee
## 5720 Employee
## 5721 Employee
## 5722 Employee
## 5723 Employee
## 5724 Employee
## 5725 Employee
## 5726 Employee
## 5727 Employee
## 5728 Employee
## 5729 Employee
## 5730 Employee
## 5731 Employee
## 5732 Employee
## 5733 Employee
## 5734 Employee
## 5735 Employee
## 5736 Employee
## 5737 Employee
## 5738 Employee
## 5739 Employee
## 5740 Employee
## 5741 Employee
## 5742 Employee
## 5743 Employee
## 5744 Employee
## 5745 Employee
## 5746 Employee
## 5747 Employee
## 5748 Employee
## 5749 Employee
## 5750 Employee
## 5751 Employee
## 5752 Employee
## 5753 Employee
## 5754 Employee
## 5755 Employee
## 5756 Employee
## 5757 Employee
## 5758 Employee
## 5759 Employee
## 5760 Employee
## 5761 Employee
## 5762 Employee
## 5763 Employee
## 5764 Employee
## 5765 Employee
## 5766 Employee
## 5767 Employee
## 5768 Employee
## 5769 Employee
## 5770 Employee
## 5771 Employee
## 5772 Employee
## 5773 Employee
## 5774 Employee
## 5775 Employee
## 5776 Employee
## 5777 Employee
## 5778 Employee
## 5779 Employee
## 5780 Employee
## 5781 Employee
## 5782 Employee
## 5783 Employee
## 5784 Employee
## 5785 Employee
## 5786 Employee
## 5787 Employee
## 5788 Employee
## 5789 Employee
## 5790 Employee
## 5791 Employee
## 5792 Employee
## 5793 Employee
## 5794 Employee
## 5795 Employee
## 5796 Employee
## 5797 Employee
## 5798 Employee
## 5799 Employee
## 5800 Employee
## 5801 Employee
## 5802 Employee
## 5803 Employee
## 5804 Employee
## 5805 Employee
## 5806 Employee
## 5807 Employee
## 5808 Employee
## 5809 Employee
## 5810 Employee
## 5811 Employee
## 5812 Employee
## 5813 Employee
## 5814 Employee
## 5815 Employee
## 5816 Employee
## 5817 Employee
## 5818 Employee
## 5819 Employee
## 5820 Employee
## 5821 Employee
## 5822 Employee
## 5823 Employee
## 5824 Employee
## 5825 Employee
## 5826 Employee
## 5827 Employee
## 5828 Employee
## 5829 Employee
## 5830 Employee
## 5831 Employee
## 5832 Employee
## 5833 Employee
## 5834 Employee
## 5835 Employee
## 5836 Employee
## 5837 Employee
## 5838 Employee
## 5839 Employee
## 5840 Employee
## 5841 Employee
## 5842 Employee
## 5843 Employee
## 5844 Employee
## 5845 Employee
## 5846 Employee
## 5847 Employee
## 5848 Employee
## 5849 Employee
## 5850 Employee
## 5851 Employee
## 5852 Employee
## 5853 Employee
## 5854 Employee
## 5855 Employee
## 5856 Employee
## 5857 Employee
## 5858 Employee
## 5859 Employee
## 5860 Employee
## 5861 Employee
## 5862 Employee
## 5863 Employee
## 5864 Employee
## 5865 Employee
## 5866 Employee
## 5867 Employee
## 5868 Employee
## 5869 Employee
## 5870 Employee
## 5871 Employee
## 5872 Employee
## 5873 Employee
## 5874 Employee
## 5875 Employee
## 5876 Employee
## 5877 Employee
## 5878 Employee
## 5879 Employee
## 5880 Employee
## 5881 Employee
## 5882 Employee
## 5883 Employee
## 5884 Employee
## 5885 Employee
## 5886 Employee
## 5887 Employee
## 5888 Employee
## 5889 Employee
## 5890 Employee
## 5891 Employee
## 5892 Employee
## 5893 Employee
## 5894 Employee
## 5895 Employee
## 5896 Employee
## 5897 Employee
## 5898 Employee
## 5899 Employee
## 5900 Employee
## 5901 Employee
## 5902 Employee
## 5903 Employee
## 5904 Employee
## 5905 Employee
## 5906 Employee
## 5907 Employee
## 5908 Employee
## 5909 Employee
## 5910 Employee
## 5911 Employee
## 5912 Employee
## 5913 Employee
## 5914 Employee
## 5915 Employee
## 5916 Employee
## 5917 Employee
## 5918 Employee
## 5919 Employee
## 5920 Employee
## 5921 Employee
## 5922 Employee
## 5923 Employee
## 5924 Employee
## 5925 Employee
## 5926 Employee
## 5927 Employee
## 5928 Employee
## 5929 Employee
## 5930 Employee
## 5931 Employee
## 5932 Employee
## 5933 Employee
## 5934 Employee
## 5935 Employee
## 5936 Employee
## 5937 Employee
## 5938 Employee
## 5939 Employee
## 5940 Employee
## 5941 Employee
## 5942 Employee
## 5943 Employee
## 5944 Employee
## 5945 Employee
## 5946 Employee
## 5947 Employee
## 5948 Employee
## 5949 Employee
## 5950 Employee
## 5951 Employee
## 5952 Employee
## 5953 Employee
## 5954 Employee
## 5955 Employee
## 5956 Employee
## 5957 Employee
## 5958 Employee
## 5959 Employee
## 5960 Employee
## 5961 Employee
## 5962 Employee
## 5963 Employee
## 5964 Employee
## 5965 Employee
## 5966 Employee
## 5967 Employee
## 5968 Employee
## 5969 Employee
## 5970 Employee
## 5971 Employee
## 5972 Employee
## 5973 Employee
## 5974 Employee
## 5975 Employee
## 5976 Employee
## 5977 Employee
## 5978 Employee
## 5979 Employee
## 5980 Employee
## 5981 Employee
## 5982 Employee
## 5983 Employee
## 5984 Employee
## 5985 Employee
## 5986 Employee
## 5987 Employee
## 5988 Employee
## 5989 Employee
## 5990 Employee
## 5991 Employee
## 5992 Employee
## 5993 Employee
## 5994 Employee
## 5995 Employee
## 5996 Employee
## 5997 Employee
## 5998 Employee
## 5999 Employee
## 6000 Employee
## 6001 Employee
## 6002 Employee
## 6003 Employee
## 6004 Employee
## 6005 Employee
## 6006 Employee
## 6007 Employee
## 6008 Employee
## 6009 Employee
## 6010 Employee
## 6011 Employee
## 6012 Employee
## 6013 Employee
## 6014 Employee
## 6015 Employee
## 6016 Employee
## 6017 Employee
## 6018 Employee
## 6019 Employee
## 6020 Employee
## 6021 Employee
## 6022 Employee
## 6023 Employee
## 6024 Employee
## 6025 Employee
## 6026 Employee
## 6027 Employee
## 6028 Employee
## 6029 Employee
## 6030 Employee
## 6031 Employee
## 6032 Employee
## 6033 Employee
## 6034 Employee
## 6035 Employee
## 6036 Employee
## 6037 Employee
## 6038 Employee
## 6039 Employee
## 6040 Employee
## 6041 Employee
## 6042 Employee
## 6043 Employee
## 6044 Employee
## 6045 Employee
## 6046 Employee
## 6047 Employee
## 6048 Employee
## 6049 Employee
## 6050 Employee
## 6051 Employee
## 6052 Employee
## 6053 Employee
## 6054 Employee
## 6055 Employee
## 6056 Employee
## 6057 Employee
## 6058 Employee
## 6059 Employee
## 6060 Employee
## 6061 Employee
## 6062 Employee
## 6063 Employee
## 6064 Employee
## 6065 Employee
## 6066 Employee
## 6067 Employee
## 6068 Employee
## 6069 Employee
## 6070 Employee
## 6071 Employee
## 6072 Employee
## 6073 Employee
## 6074 Employee
## 6075 Employee
## 6076 Employee
## 6077 Employee
## 6078 Employee
## 6079 Employee
## 6080 Employee
## 6081 Employee
## 6082 Employee
## 6083 Employee
## 6084 Employee
## 6085 Employee
## 6086 Employee
## 6087 Employee
## 6088 Employee
## 6089 Employee
## 6090 Employee
## 6091 Employee
## 6092 Employee
## 6093 Employee
## 6094 Employee
## 6095 Employee
## 6096 Employee
## 6097 Employee
## 6098 Employee
## 6099 Employee
## 6100 Employee
## 6101 Employee
## 6102 Employee
## 6103 Employee
## 6104 Employee
## 6105 Employee
## 6106 Employee
## 6107 Employee
## 6108 Employee
## 6109 Employee
## 6110 Employee
## 6111 Employee
## 6112 Employee
## 6113 Employee
## 6114 Employee
## 6115 Employee
## 6116 Employee
## 6117 Employee
## 6118 Employee
## 6119 Employee
## 6120 Employee
## 6121 Employee
## 6122 Employee
## 6123 Employee
## 6124 Employee
## 6125 Employee
## 6126 Employee
## 6127 Employee
## 6128 Employee
## 6129 Employee
## 6130 Employee
## 6131 Employee
## 6132 Employee
## 6133 Employee
## 6134 Employee
## 6135 Employee
## 6136 Employee
## 6137 Employee
## 6138 Employee
## 6139 Employee
## 6140 Employee
## 6141 Employee
## 6142 Employee
## 6143 Employee
## 6144 Employee
## 6145 Employee
## 6146 Employee
## 6147 Employee
## 6148 Employee
## 6149 Employee
## 6150 Employee
## 6151 Employee
## 6152 Employee
## 6153 Employee
## 6154 Employee
## 6155 Employee
## 6156 Employee
## 6157 Employee
## 6158 Employee
## 6159 Employee
## 6160 Employee
## 6161 Employee
## 6162 Employee
## 6163 Employee
## 6164 Employee
## 6165 Employee
## 6166 Employee
## 6167 Employee
## 6168 Employee
## 6169 Employee
## 6170 Employee
## 6171 Employee
## 6172 Employee
## 6173 Employee
## 6174 Employee
## 6175 Employee
## 6176 Employee
## 6177 Employee
## 6178 Employee
## 6179 Employee
## 6180 Employee
## 6181 Employee
## 6182 Employee
## 6183 Employee
## 6184 Employee
## 6185 Employee
## 6186 Employee
## 6187 Employee
## 6188 Employee
## 6189 Employee
## 6190 Employee
## 6191 Employee
## 6192 Employee
## 6193 Employee
## 6194 Employee
## 6195 Employee
## 6196 Employee
## 6197 Employee
## 6198 Employee
## 6199 Employee
## 6200 Employee
## 6201 Employee
## 6202 Employee
## 6203 Employee
## 6204 Employee
## 6205 Employee
## 6206 Employee
## 6207 Employee
## 6208 Employee
## 6209 Employee
## 6210 Employee
## 6211 Employee
## 6212 Employee
## 6213 Employee
## 6214 Employee
## 6215 Employee
## 6216 Employee
## 6217 Employee
## 6218 Employee
## 6219 Employee
## 6220 Employee
## 6221 Employee
## 6222 Employee
## 6223 Employee
## 6224 Employee
## 6225 Employee
## 6226 Employee
## 6227 Employee
## 6228 Employee
## 6229 Employee
## 6230 Employee
## 6231 Employee
## 6232 Employee
## 6233 Employee
## 6234 Employee
## 6235 Employee
## 6236 Employee
## 6237 Employee
## 6238 Employee
## 6239 Employee
## 6240 Employee
## 6241 Employee
## 6242 Employee
## 6243 Employee
## 6244 Employee
## 6245 Employee
## 6246 Employee
## 6247 Employee
## 6248 Employee
## 6249 Employee
## 6250 Employee
## 6251 Employee
## 6252 Employee
## 6253 Employee
## 6254 Employee
## 6255 Employee
## 6256 Employee
## 6257 Employee
## 6258 Employee
## 6259 Employee
## 6260 Employee
## 6261 Employee
## 6262 Employee
## 6263 Employee
## 6264 Employee
## 6265 Employee
## 6266 Employee
## 6267 Employee
## 6268 Employee
## 6269 Employee
## 6270 Employee
## 6271 Employee
## 6272 Employee
## 6273 Employee
## 6274 Employee
## 6275 Employee
## 6276 Employee
## 6277 Employee
## 6278 Employee
## 6279 Employee
## 6280 Employee
## 6281 Employee
## 6282 Employee
## 6283 Employee
## 6284 Employee
## 6285 Employee
## 6286 Employee
## 6287 Employee
## 6288 Employee
## 6289 Employee
## 6290 Employee
## 6291 Employee
## 6292 Employee
## 6293 Employee
## 6294 Employee
## 6295 Employee
## 6296 Employee
## 6297 Employee
## 6298 Employee
## 6299 Employee
## 6300 Employee
## 6301 Employee
## 6302 Employee
## 6303 Employee
## 6304 Employee
## 6305 Employee
## 6306 Employee
## 6307 Employee
## 6308 Employee
## 6309 Employee
## 6310 Employee
## 6311 Employee
## 6312 Employee
## 6313 Employee
## 6314 Employee
## 6315 Employee
## 6316 Employee
## 6317 Employee
## 6318 Employee
## 6319 Employee
## 6320 Employee
## 6321 Employee
## 6322 Employee
## 6323 Employee
## 6324 Employee
## 6325 Employee
## 6326 Employee
## 6327 Employee
## 6328 Employee
## 6329 Employee
## 6330 Employee
## 6331 Employee
## 6332 Employee
## 6333 Employee
## 6334 Employee
## 6335 Employee
## 6336 Employee
## 6337 Employee
## 6338 Employee
## 6339 Employee
## 6340 Employee
## 6341 Employee
## 6342 Employee
## 6343 Employee
## 6344 Employee
## 6345 Employee
## 6346 Employee
## 6347 Employee
## 6348 Employee
## 6349 Employee
## 6350 Employee
## 6351 Employee
## 6352 Employee
## 6353 Employee
## 6354 Employee
## 6355 Employee
## 6356 Employee
## 6357 Employee
## 6358 Employee
## 6359 Employee
## 6360 Employee
## 6361 Employee
## 6362 Employee
## 6363 Employee
## 6364 Employee
## 6365 Employee
## 6366 Employee
## 6367 Employee
## 6368 Employee
## 6369 Employee
## 6370 Employee
## 6371 Employee
## 6372 Employee
## 6373 Employee
## 6374 Employee
## 6375 Employee
## 6376 Employee
## 6377 Employee
## 6378 Employee
## 6379 Employee
## 6380 Employee
## 6381 Employee
## 6382 Employee
## 6383 Employee
## 6384 Employee
## 6385 Employee
## 6386 Employee
## 6387 Employee
## 6388 Employee
## 6389 Employee
## 6390 Employee
## 6391 Employee
## 6392 Employee
## 6393 Employee
## 6394 Employee
## 6395 Employee
## 6396 Employee
## 6397 Employee
## 6398 Employee
## 6399 Employee
## 6400 Employee
## 6401 Employee
## 6402 Employee
## 6403 Employee
## 6404 Employee
## 6405 Employee
## 6406 Employee
## 6407 Employee
## 6408 Employee
## 6409 Employee
## 6410 Employee
## 6411 Employee
## 6412 Employee
## 6413 Employee
## 6414 Employee
## 6415 Employee
## 6416 Employee
## 6417 Employee
## 6418 Employee
## 6419 Employee
## 6420 Employee
## 6421 Employee
## 6422 Employee
## 6423 Employee
## 6424 Employee
## 6425 Employee
## 6426 Employee
## 6427 Employee
## 6428 Employee
## 6429 Employee
## 6430 Employee
## 6431 Employee
## 6432 Employee
## 6433 Employee
## 6434 Employee
## 6435 Employee
## 6436 Employee
## 6437 Employee
## 6438 Employee
## 6439 Employee
## 6440 Employee
## 6441 Employee
## 6442 Employee
## 6443 Employee
## 6444 Employee
## 6445 Employee
## 6446 Employee
## 6447 Employee
## 6448 Employee
## 6449 Employee
## 6450 Employee
## 6451 Employee
## 6452 Employee
## 6453 Employee
## 6454 Employee
## 6455 Employee
## 6456 Employee
## 6457 Employee
## 6458 Employee
## 6459 Employee
## 6460 Employee
## 6461 Employee
## 6462 Employee
## 6463 Employee
## 6464 Employee
## 6465 Employee
## 6466 Employee
## 6467 Employee
## 6468 Employee
## 6469 Employee
## 6470 Employee
## 6471 Employee
## 6472 Employee
## 6473 Employee
## 6474 Employee
## 6475 Employee
## 6476 Employee
## 6477 Employee
## 6478 Employee
## 6479 Employee
## 6480 Employee
## 6481 Employee
## 6482 Employee
## 6483 Employee
## 6484 Employee
## 6485 Employee
## 6486 Employee
## 6487 Employee
## 6488 Employee
## 6489 Employee
## 6490 Employee
## 6491 Employee
## 6492 Employee
## 6493 Employee
## 6494 Employee
## 6495 Employee
## 6496 Employee
## 6497 Employee
## 6498 Employee
## 6499 Employee
## 6500 Employee
## 6501 Employee
## 6502 Employee
## 6503 Employee
## 6504 Employee
## 6505 Employee
## 6506 Employee
## 6507 Employee
## 6508 Employee
## 6509 Employee
## 6510 Employee
## 6511 Employee
## 6512 Employee
## 6513 Employee
## 6514 Employee
## 6515 Employee
## 6516 Employee
## 6517 Employee
## 6518 Employee
## 6519 Employee
## 6520 Employee
## 6521 Employee
## 6522 Employee
## 6523 Employee
## 6524 Employee
## 6525 Employee
## 6526 Employee
## 6527 Employee
## 6528 Employee
## 6529 Employee
## 6530 Employee
## 6531 Employee
## 6532 Employee
## 6533 Employee
## 6534 Employee
## 6535 Employee
## 6536 Employee
## 6537 Employee
## 6538 Employee
## 6539 Employee
## 6540 Employee
## 6541 Employee
## 6542 Employee
## 6543 Employee
## 6544 Employee
## 6545 Employee
## 6546 Employee
## 6547 Employee
## 6548 Employee
## 6549 Employee
## 6550 Employee
## 6551 Employee
## 6552 Employee
## 6553 Employee
## 6554 Employee
## 6555 Employee
## 6556 Employee
## 6557 Employee
## 6558 Employee
## 6559 Employee
## 6560 Employee
## 6561 Employee
## 6562 Employee
## 6563 Employee
## 6564 Employee
## 6565 Employee
## 6566 Employee
## 6567 Employee
## 6568 Employee
## 6569 Employee
## 6570 Employee
## 6571 Employee
## 6572 Employee
## 6573 Employee
## 6574 Employee
## 6575 Employee
## 6576 Employee
## 6577 Employee
## 6578 Employee
## 6579 Employee
## 6580 Employee
## 6581 Employee
## 6582 Employee
## 6583 Employee
## 6584 Employee
## 6585 Employee
## 6586 Employee
## 6587 Employee
## 6588 Employee
## 6589 Employee
## 6590 Employee
## 6591 Employee
## 6592 Employee
## 6593 Employee
## 6594 Employee
## 6595 Employee
## 6596 Employee
## 6597 Employee
## 6598 Employee
## 6599 Employee
## 6600 Employee
## 6601 Employee
## 6602 Employee
## 6603 Employee
## 6604 Employee
## 6605 Employee
## 6606 Employee
## 6607 Employee
## 6608 Employee
## 6609 Employee
## 6610 Employee
## 6611 Employee
## 6612 Employee
## 6613 Employee
## 6614 Employee
## 6615 Employee
## 6616 Employee
## 6617 Employee
## 6618 Employee
## 6619 Employee
## 6620 Employee
## 6621 Employee
## 6622 Employee
## 6623 Employee
## 6624 Employee
## 6625 Employee
## 6626 Employee
## 6627 Employee
## 6628 Employee
## 6629 Employee
## 6630 Employee
## 6631 Employee
## 6632 Employee
## 6633 Employee
## 6634 Employee
## 6635 Employee
## 6636 Employee
## 6637 Employee
## 6638 Employee
## 6639 Employee
## 6640 Employee
## 6641 Employee
## 6642 Employee
## 6643 Employee
## 6644 Employee
## 6645 Employee
## 6646 Employee
## 6647 Employee
## 6648 Employee
## 6649 Employee
## 6650 Employee
## 6651 Employee
## 6652 Employee
## 6653 Employee
## 6654 Employee
## 6655 Employee
## 6656 Employee
## 6657 Employee
## 6658 Employee
## 6659 Employee
## 6660 Employee
## 6661 Employee
## 6662 Employee
## 6663 Employee
## 6664 Employee
## 6665 Employee
## 6666 Employee
## 6667 Employee
## 6668 Employee
## 6669 Employee
## 6670 Employee
## 6671 Employee
## 6672 Employee
## 6673 Employee
## 6674 Employee
## 6675 Employee
## 6676 Employee
## 6677 Employee
## 6678 Employee
## 6679 Employee
## 6680 Employee
## 6681 Employee
## 6682 Employee
## 6683 Employee
## 6684 Employee
## 6685 Employee
## 6686 Employee
## 6687 Employee
## 6688 Employee
## 6689 Employee
## 6690 Employee
## 6691 Employee
## 6692 Employee
## 6693 Employee
## 6694 Employee
## 6695 Employee
## 6696 Employee
## 6697 Employee
## 6698 Employee
## 6699 Employee
## 6700 Employee
## 6701 Employee
## 6702 Employee
## 6703 Employee
## 6704 Employee
## 6705 Employee
## 6706 Employee
## 6707 Employee
## 6708 Employee
## 6709 Employee
## 6710 Employee
## 6711 Employee
## 6712 Employee
## 6713 Employee
## 6714 Employee
## 6715 Employee
## 6716 Employee
## 6717 Employee
## 6718 Employee
## 6719 Employee
## 6720 Employee
## 6721 Employee
## 6722 Employee
## 6723 Employee
## 6724 Employee
## 6725 Employee
## 6726 Employee
## 6727 Employee
## 6728 Employee
## 6729 Employee
## 6730 Employee
## 6731 Employee
## 6732 Employee
## 6733 Employee
## 6734 Employee
## 6735 Employee
## 6736 Employee
## 6737 Employee
## 6738 Employee
## 6739 Employee
## 6740 Employee
## 6741 Employee
## 6742 Employee
## 6743 Employee
## 6744 Employee
## 6745 Employee
## 6746 Employee
## 6747 Employee
## 6748 Employee
## 6749 Employee
## 6750 Employee
## 6751 Employee
## 6752 Employee
## 6753 Employee
## 6754 Employee
## 6755 Employee
## 6756 Employee
## 6757 Employee
## 6758 Employee
## 6759 Employee
## 6760 Employee
## 6761 Employee
## 6762 Employee
## 6763 Employee
## 6764 Employee
## 6765 Employee
## 6766 Employee
## 6767 Employee
## 6768 Employee
## 6769 Employee
## 6770 Employee
## 6771 Employee
## 6772 Employee
## 6773 Employee
## 6774 Employee
## 6775 Employee
## 6776 Employee
## 6777 Employee
## 6778 Employee
## 6779 Employee
## 6780 Employee
## 6781 Employee
## 6782 Employee
## 6783 Employee
## 6784 Employee
## 6785 Employee
## 6786 Employee
## 6787 Employee
## 6788 Employee
## 6789 Employee
## 6790 Employee
## 6791 Employee
## 6792 Employee
## 6793 Employee
## 6794 Employee
## 6795 Employee
## 6796 Employee
## 6797 Employee
## 6798 Employee
## 6799 Employee
## 6800 Employee
## 6801 Employee
## 6802 Employee
## 6803 Employee
## 6804 Employee
## 6805 Employee
## 6806 Employee
## 6807 Employee
## 6808 Employee
## 6809 Employee
## 6810 Employee
## 6811 Employee
## 6812 Employee
## 6813 Employee
## 6814 Employee
## 6815 Employee
## 6816 Employee
## 6817 Employee
## 6818 Employee
## 6819 Employee
## 6820 Employee
## 6821 Employee
## 6822 Employee
## 6823 Employee
## 6824 Employee
## 6825 Employee
## 6826 Employee
## 6827 Employee
## 6828 Employee
## 6829 Employee
## 6830 Employee
## 6831 Employee
## 6832 Employee
## 6833 Employee
## 6834 Employee
## 6835 Employee
## 6836 Employee
## 6837 Employee
## 6838 Employee
## 6839 Employee
## 6840 Employee
## 6841 Employee
## 6842 Employee
## 6843 Employee
## 6844 Employee
## 6845 Employee
## 6846 Employee
## 6847 Employee
## 6848 Employee
## 6849 Employee
## 6850 Employee
## 6851 Employee
## 6852 Employee
## 6853 Employee
## 6854 Employee
## 6855 Employee
## 6856 Employee
## 6857 Employee
## 6858 Employee
## 6859 Employee
## 6860 Employee
## 6861 Employee
## 6862 Employee
## 6863 Employee
## 6864 Employee
## 6865 Employee
## 6866 Employee
## 6867 Employee
## 6868 Employee
## 6869 Employee
## 6870 Employee
## 6871 Employee
## 6872 Employee
## 6873 Employee
## 6874 Employee
## 6875 Employee
## 6876 Employee
## 6877 Employee
## 6878 Employee
## 6879 Employee
## 6880 Employee
## 6881 Employee
## 6882 Employee
## 6883 Employee
## 6884 Employee
## 6885 Employee
## 6886 Employee
## 6887 Employee
## 6888 Employee
## 6889 Employee
## 6890 Employee
## 6891 Employee
## 6892 Employee
## 6893 Employee
## 6894 Employee
## 6895 Employee
## 6896 Employee
## 6897 Employee
## 6898 Employee
## 6899 Employee
## 6900 Employee
## 6901 Employee
## 6902 Employee
## 6903 Employee
## 6904 Employee
## 6905 Employee
## 6906 Employee
## 6907 Employee
## 6908 Employee
## 6909 Employee
## 6910 Employee
## 6911 Employee
## 6912 Employee
## 6913 Employee
## 6914 Employee
## 6915 Employee
## 6916 Employee
## 6917 Employee
## 6918 Employee
## 6919 Employee
## 6920 Employee
## 6921 Employee
## 6922 Employee
## 6923 Employee
## 6924 Employee
## 6925 Employee
## 6926 Employee
## 6927 Employee
## 6928 Employee
## 6929 Employee
## 6930 Employee
## 6931 Employee
## 6932 Employee
## 6933 Employee
## 6934 Employee
## 6935 Employee
## 6936 Employee
## 6937 Employee
## 6938 Employee
## 6939 Employee
## 6940 Employee
## 6941 Employee
## 6942 Employee
## 6943 Employee
## 6944 Employee
## 6945 Employee
## 6946 Employee
## 6947 Employee
## 6948 Employee
## 6949 Employee
## 6950 Employee
## 6951 Employee
## 6952 Employee
## 6953 Employee
## 6954 Employee
## 6955 Employee
## 6956 Employee
## 6957 Employee
## 6958 Employee
## 6959 Employee
## 6960 Employee
## 6961 Employee
## 6962 Employee
## 6963 Employee
## 6964 Employee
## 6965 Employee
## 6966 Employee
## 6967 Employee
## 6968 Employee
## 6969 Employee
## 6970 Employee
## 6971 Employee
## 6972 Employee
## 6973 Employee
## 6974 Employee
## 6975 Employee
## 6976 Employee
## 6977 Employee
## 6978 Employee
## 6979 Employee
## 6980 Employee
## 6981 Employee
## 6982 Employee
## 6983 Employee
## 6984 Employee
## 6985 Employee
## 6986 Employee
## 6987 Employee
## 6988 Employee
## 6989 Employee
## 6990 Employee
## 6991 Employee
## 6992 Employee
## 6993 Employee
## 6994 Employee
## 6995 Employee
## 6996 Employee
## 6997 Employee
## 6998 Employee
## 6999 Employee
## 7000 Employee
## 7001 Employee
## 7002 Employee
## 7003 Employee
## 7004 Employee
## 7005 Employee
## 7006 Employee
## 7007 Employee
## 7008 Employee
## 7009 Employee
## 7010 Employee
## 7011 Employee
## 7012 Employee
## 7013 Employee
## 7014 Employee
## 7015 Employee
## 7016 Employee
## 7017 Employee
## 7018 Employee
## 7019 Employee
## 7020 Employee
## 7021 Employee
## 7022 Employee
## 7023 Employee
## 7024 Employee
## 7025 Employee
## 7026 Employee
## 7027 Employee
## 7028 Employee
## 7029 Employee
## 7030 Employee
## 7031 Employee
## 7032 Employee
## 7033 Employee
## 7034 Employee
## 7035 Employee
## 7036 Employee
## 7037 Employee
## 7038 Employee
## 7039 Employee
## 7040 Employee
## 7041 Employee
## 7042 Employee
## 7043 Employee
## 7044 Employee
## 7045 Employee
## 7046 Employee
## 7047 Employee
## 7048 Employee
## 7049 Employee
## 7050 Employee
## 7051 Employee
## 7052 Employee
## 7053 Employee
## 7054 Employee
## 7055 Employee
## 7056 Employee
## 7057 Employee
## 7058 Employee
## 7059 Employee
## 7060 Employee
## 7061 Employee
## 7062 Employee
## 7063 Employee
## 7064 Employee
## 7065 Employee
## 7066 Employee
## 7067 Employee
## 7068 Employee
## 7069 Employee
## 7070 Employee
## 7071 Employee
## 7072 Employee
## 7073 Employee
## 7074 Employee
## 7075 Employee
## 7076 Employee
## 7077 Employee
## 7078 Employee
## 7079 Employee
## 7080 Employee
## 7081 Employee
## 7082 Employee
## 7083 Employee
## 7084 Employee
## 7085 Employee
## 7086 Employee
## 7087 Employee
## 7088 Employee
## 7089 Employee
## 7090 Employee
## 7091 Employee
## 7092 Employee
## 7093 Employee
## 7094 Employee
## 7095 Employee
## 7096 Employee
## 7097 Employee
## 7098 Employee
## 7099 Employee
## 7100 Employee
## 7101 Employee
## 7102 Employee
## 7103 Employee
## 7104 Employee
## 7105 Employee
## 7106 Employee
## 7107 Employee
## 7108 Employee
## 7109 Employee
## 7110 Employee
## 7111 Employee
## 7112 Employee
## 7113 Employee
## 7114 Employee
## 7115 Employee
## 7116 Employee
## 7117 Employee
## 7118 Employee
## 7119 Employee
## 7120 Employee
## 7121 Employee
## 7122 Employee
## 7123 Employee
## 7124 Employee
## 7125 Employee
## 7126 Employee
## 7127 Employee
## 7128 Employee
## 7129 Employee
## 7130 Employee
## 7131 Employee
## 7132 Employee
## 7133 Employee
## 7134 Employee
## 7135 Employee
## 7136 Employee
## 7137 Employee
## 7138 Employee
## 7139 Employee
## 7140 Employee
## 7141 Employee
## 7142 Employee
## 7143 Employee
## 7144 Employee
## 7145 Employee
## 7146 Employee
## 7147 Employee
## 7148 Employee
## 7149 Employee
## 7150 Employee
## 7151 Employee
## 7152 Employee
## 7153 Employee
## 7154 Employee
## 7155 Employee
## 7156 Employee
## 7157 Employee
## 7158 Employee
## 7159 Employee
## 7160 Employee
## 7161 Employee
## 7162 Employee
## 7163 Employee
## 7164 Employee
## 7165 Employee
## 7166 Employee
## 7167 Employee
## 7168 Employee
## 7169 Employee
## 7170 Employee
## 7171 Employee
## 7172 Employee
## 7173 Employee
## 7174 Employee
## 7175 Employee
## 7176 Employee
## 7177 Employee
## 7178 Employee
## 7179 Employee
## 7180 Employee
## 7181 Employee
## 7182 Employee
## 7183 Employee
## 7184 Employee
## 7185 Employee
## 7186 Employee
## 7187 Employee
## 7188 Employee
## 7189 Employee
## 7190 Employee
## 7191 Employee
## 7192 Employee
## 7193 Employee
## 7194 Employee
## 7195 Employee
## 7196 Employee
## 7197 Employee
## 7198 Employee
## 7199 Employee
## 7200 Employee
## 7201 Employee
## 7202 Employee
## 7203 Employee
## 7204 Employee
## 7205 Employee
## 7206 Employee
## 7207 Employee
## 7208 Employee
## 7209 Employee
## 7210 Employee
## 7211 Employee
## 7212 Employee
## 7213 Employee
## 7214 Employee
## 7215 Employee
## 7216 Employee
## 7217 Employee
## 7218 Employee
## 7219 Employee
## 7220 Employee
## 7221 Employee
## 7222 Employee
## 7223 Employee
## 7224 Employee
## 7225 Employee
## 7226 Employee
## 7227 Employee
## 7228 Employee
## 7229 Employee
## 7230 Employee
## 7231 Employee
## 7232 Employee
## 7233 Employee
## 7234 Employee
## 7235 Employee
## 7236 Employee
## 7237 Employee
## 7238 Employee
## 7239 Employee
## 7240 Employee
## 7241 Employee
## 7242 Employee
## 7243 Employee
## 7244 Employee
## 7245 Employee
## 7246 Employee
## 7247 Employee
## 7248 Employee
## 7249 Employee
## 7250 Employee
## 7251 Employee
## 7252 Employee
## 7253 Employee
## 7254 Employee
## 7255 Employee
## 7256 Employee
## 7257 Employee
## 7258 Employee
## 7259 Employee
## 7260 Employee
## 7261 Employee
## 7262 Employee
## 7263 Employee
## 7264 Employee
## 7265 Employee
## 7266 Employee
## 7267 Employee
## 7268 Employee
## 7269 Employee
## 7270 Employee
## 7271 Employee
## 7272 Employee
## 7273 Employee
## 7274 Employee
## 7275 Employee
## 7276 Employee
## 7277 Employee
## 7278 Employee
## 7279 Employee
## 7280 Employee
## 7281 Employee
## 7282 Employee
## 7283 Employee
## 7284 Employee
## 7285 Employee
## 7286 Employee
## 7287 Employee
## 7288 Employee
## 7289 Employee
## 7290 Employee
## 7291 Employee
## 7292 Employee
## 7293 Employee
## 7294 Employee
## 7295 Employee
## 7296 Employee
## 7297 Employee
## 7298 Employee
## 7299 Employee
## 7300 Employee
## 7301 Employee
## 7302 Employee
## 7303 Employee
## 7304 Employee
## 7305 Employee
## 7306 Employee
## 7307 Employee
## 7308 Employee
## 7309 Employee
## 7310 Employee
## 7311 Employee
## 7312 Employee
## 7313 Employee
## 7314 Employee
## 7315 Employee
## 7316 Employee
## 7317 Employee
## 7318 Employee
## 7319 Employee
## 7320 Employee
## 7321 Employee
## 7322 Employee
## 7323 Employee
## 7324 Employee
## 7325 Employee
## 7326 Employee
## 7327 Employee
## 7328 Employee
## 7329 Employee
## 7330 Employee
## 7331 Employee
## 7332 Employee
## 7333 Employee
## 7334 Employee
## 7335 Employee
## 7336 Employee
## 7337 Employee
## 7338 Employee
## 7339 Employee
## 7340 Employee
## 7341 Employee
## 7342 Employee
## 7343 Employee
## 7344 Employee
## 7345 Employee
## 7346 Employee
## 7347 Employee
## 7348 Employee
## 7349 Employee
## 7350 Employee
## 7351 Employee
## 7352 Employee
## 7353 Employee
## 7354 Employee
## 7355 Employee
## 7356 Employee
## 7357 Employee
## 7358 Employee
## 7359 Employee
## 7360 Employee
## 7361 Employee
## 7362 Employee
## 7363 Employee
## 7364 Employee
## 7365 Employee
## 7366 Employee
## 7367 Employee
## 7368 Employee
## 7369 Employee
## 7370 Employee
## 7371 Employee
## 7372 Employee
## 7373 Employee
## 7374 Employee
## 7375 Employee
## 7376 Employee
## 7377 Employee
## 7378 Employee
## 7379 Employee
## 7380 Employee
## 7381 Employee
## 7382 Employee
## 7383 Employee
## 7384 Employee
## 7385 Employee
## 7386 Employee
## 7387 Employee
## 7388 Employee
## 7389 Employee
## 7390 Employee
## 7391 Employee
## 7392 Employee
## 7393 Employee
## 7394 Employee
## 7395 Employee
## 7396 Employee
## 7397 Employee
## 7398 Employee
## 7399 Employee
## 7400 Employee
## 7401 Employee
## 7402 Employee
## 7403 Employee
## 7404 Employee
## 7405 Employee
## 7406 Employee
## 7407 Employee
## 7408 Employee
## 7409 Employee
## 7410 Employee
## 7411 Employee
## 7412 Employee
## 7413 Employee
## 7414 Employee
## 7415 Employee
## 7416 Employee
## 7417 Employee
## 7418 Employee
## 7419 Employee
## 7420 Employee
## 7421 Employee
## 7422 Employee
## 7423 Employee
## 7424 Employee
## 7425 Employee
## 7426 Employee
## 7427 Employee
## 7428 Employee
## 7429 Employee
## 7430 Employee
## 7431 Employee
## 7432 Employee
## 7433 Employee
## 7434 Employee
## 7435 Employee
## 7436 Employee
## 7437 Employee
## 7438 Employee
## 7439 Employee
## 7440 Employee
## 7441 Employee
## 7442 Employee
## 7443 Employee
## 7444 Employee
## 7445 Employee
## 7446 Employee
## 7447 Employee
## 7448 Employee
## 7449 Employee
## 7450 Employee
## 7451 Employee
## 7452 Employee
## 7453 Employee
## 7454 Employee
## 7455 Employee
## 7456 Employee
## 7457 Employee
## 7458 Employee
## 7459 Employee
## 7460 Employee
## 7461 Employee
## 7462 Employee
## 7463 Employee
## 7464 Employee
## 7465 Employee
## 7466 Employee
## 7467 Employee
## 7468 Employee
## 7469 Employee
## 7470 Employee
## 7471 Employee
## 7472 Employee
## 7473 Employee
## 7474 Employee
## 7475 Employee
## 7476 Employee
## 7477 Employee
## 7478 Employee
## 7479 Employee
## 7480 Employee
## 7481 Employee
## 7482 Employee
## 7483 Employee
## 7484 Employee
## 7485 Employee
## 7486 Employee
## 7487 Employee
## 7488 Employee
## 7489 Employee
## 7490 Employee
## 7491 Employee
## 7492 Employee
## 7493 Employee
## 7494 Employee
## 7495 Employee
## 7496 Employee
## 7497 Employee
## 7498 Employee
## 7499 Employee
## 7500 Employee
## 7501 Employee
## 7502 Employee
## 7503 Employee
## 7504 Employee
## 7505 Employee
## 7506 Employee
## 7507 Employee
## 7508 Employee
## 7509 Employee
## 7510 Employee
## 7511 Employee
## 7512 Employee
## 7513 Employee
## 7514 Employee
## 7515 Employee
## 7516 Employee
## 7517 Employee
## 7518 Employee
## 7519 Employee
## 7520 Employee
## 7521 Employee
## 7522 Employee
## 7523 Employee
## 7524 Employee
## 7525 Employee
## 7526 Employee
## 7527 Employee
## 7528 Employee
## 7529 Employee
## 7530 Employee
## 7531 Employee
## 7532 Employee
## 7533 Employee
## 7534 Employee
## 7535 Employee
## 7536 Employee
## 7537 Employee
## 7538 Employee
## 7539 Employee
## 7540 Employee
## 7541 Employee
## 7542 Employee
## 7543 Employee
## 7544 Employee
## 7545 Employee
## 7546 Employee
## 7547 Employee
## 7548 Employee
## 7549 Employee
## 7550 Employee
## 7551 Employee
## 7552 Employee
## 7553 Employee
## 7554 Employee
## 7555 Employee
## 7556 Employee
## 7557 Employee
## 7558 Employee
## 7559 Employee
## 7560 Employee
## 7561 Employee
## 7562 Employee
## 7563 Employee
## 7564 Employee
## 7565 Employee
## 7566 Employee
## 7567 Employee
## 7568 Employee
## 7569 Employee
## 7570 Employee
## 7571 Employee
## 7572 Employee
## 7573 Employee
## 7574 Employee
## 7575 Employee
## 7576 Employee
## 7577 Employee
## 7578 Employee
## 7579 Employee
## 7580 Employee
## 7581 Employee
## 7582 Employee
## 7583 Employee
## 7584 Employee
## 7585 Employee
## 7586 Employee
## 7587 Employee
## 7588 Employee
## 7589 Employee
## 7590 Employee
## 7591 Employee
## 7592 Employee
## 7593 Employee
## 7594 Employee
## 7595 Employee
## 7596 Employee
## 7597 Employee
## 7598 Employee
## 7599 Employee
## 7600 Employee
## 7601 Employee
## 7602 Employee
## 7603 Employee
## 7604 Employee
## 7605 Employee
## 7606 Employee
## 7607 Employee
## 7608 Employee
## 7609 Employee
## 7610 Employee
## 7611 Employee
## 7612 Employee
## 7613 Employee
## 7614 Employee
## 7615 Employee
## 7616 Employee
## 7617 Employee
## 7618 Employee
## 7619 Employee
## 7620 Employee
## 7621 Employee
## 7622 Employee
## 7623 Employee
## 7624 Employee
## 7625 Employee
## 7626 Employee
## 7627 Employee
## 7628 Employee
## 7629 Employee
## 7630 Employee
## 7631 Employee
## 7632 Employee
## 7633 Employee
## 7634 Employee
## 7635 Employee
## 7636 Employee
## 7637 Employee
## 7638 Employee
## 7639 Employee
## 7640 Employee
## 7641 Employee
## 7642 Employee
## 7643 Employee
## 7644 Employee
## 7645 Employee
## 7646 Employee
## 7647 Employee
## 7648 Employee
## 7649 Employee
## 7650 Employee
## 7651 Employee
## 7652 Employee
## 7653 Employee
## 7654 Employee
## 7655 Employee
## 7656 Employee
## 7657 Employee
## 7658 Employee
## 7659 Employee
## 7660 Employee
## 7661 Employee
## 7662 Employee
## 7663 Employee
## 7664 Employee
## 7665 Employee
## 7666 Employee
## 7667 Employee
## 7668 Employee
## 7669 Employee
## 7670 Employee
## 7671 Employee
## 7672 Employee
## 7673 Employee
## 7674 Employee
## 7675 Employee
## 7676 Employee
## 7677 Employee
## 7678 Employee
## 7679 Employee
## 7680 Employee
## 7681 Employee
## 7682 Employee
## 7683 Employee
## 7684 Employee
## 7685 Employee
## 7686 Employee
## 7687 Employee
## 7688 Employee
## 7689 Employee
## 7690 Employee
## 7691 Employee
## 7692 Employee
## 7693 Employee
## 7694 Employee
## 7695 Employee
## 7696 Employee
## 7697 Employee
## 7698 Employee
## 7699 Employee
## 7700 Employee
## 7701 Employee
## 7702 Employee
## 7703 Employee
## 7704 Employee
## 7705 Employee
## 7706 Employee
## 7707 Employee
## 7708 Employee
## 7709 Employee
## 7710 Employee
## 7711 Employee
## 7712 Employee
## 7713 Employee
## 7714 Employee
## 7715 Employee
## 7716 Employee
## 7717 Employee
## 7718 Employee
## 7719 Employee
## 7720 Employee
## 7721 Employee
## 7722 Employee
## 7723 Employee
## 7724 President
## 7725 President
## 7726 President
## 7727 President
## 7728 President
## 7729 President
## 7730 President
## 7731 President
## 7732 President
## 7733 President
## 7734 President
## 7735 President
## 7736 President
## 7737 President
## 7738 President
## 7739 President
## 7740 President
## 7741 President
## 7742 President
## 7743 President
## 7744 President
## 7745 President
## 7746 President
## 7747 President
## 7748 President
## 7749 President
## 7750 President
## 7751 President
## 7752 President
## 7753 Employee
## 7754 Employee
## 7755 Employee
## 7756 Employee
## 7757 Managing Director
## 7758 Managing Director
## 7759 Managing Director
## 7760 Vice President
## 7761 President
## 7762 President
## 7763 President
## 7764 President
## 7765 President
## 7766 Employee
## 7767 Managing Director
## 7768 Vice President
## 7769 Managing Director
## 7770 Employee
## 7771 Employee
## 7772 Employee
## 7773 Employee
## 7774 Employee
## 7775 Employee
## 7776 Employee
## 7777 Employee
## 7778 Employee
## 7779 Employee
## 7780 Employee
## 7781 Employee
## 7782 Employee
## 7783 Employee
## 7784 Employee
## 7785 Employee
## 7786 Employee
## 7787 Employee
## 7788 Employee
## 7789 Employee
## 7790 Employee
## 7791 Employee
## 7792 Employee
## 7793 Employee
## 7794 Employee
## 7795 Employee
## 7796 Employee
## 7797 Employee
## 7798 Employee
## 7799 Employee
## 7800 Employee
## 7801 Employee
## 7802 Employee
## 7803 Employee
## 7804 Employee
## 7805 Employee
## 7806 Employee
## 7807 Employee
## 7808 Employee
## 7809 Employee
## 7810 Employee
## 7811 Employee
## 7812 Employee
## 7813 Employee
## 7814 Employee
## 7815 Employee
## 7816 Employee
## 7817 Employee
## 7818 Employee
## 7819 Employee
## 7820 Employee
## 7821 Employee
## 7822 Employee
## 7823 Employee
## 7824 Employee
## 7825 Employee
## 7826 Employee
## 7827 Vice President
## 7828 Vice President
## 7829 Vice President
## 7830 Employee
## 7831 Employee
## 7832 Employee
## 7833 Employee
## 7834 Employee
## 7835 Employee
## 7836 Employee
## 7837 Employee
## 7838 Employee
## 7839 Employee
## 7840 Employee
## 7841 Employee
## 7842 Employee
## 7843 Employee
## 7844 Employee
## 7845 Vice President
## 7846 Vice President
## 7847 Vice President
## 7848 Vice President
## 7849 Vice President
## 7850 Vice President
## 7851 Vice President
## 7852 Vice President
## 7853 Vice President
## 7854 Vice President
## 7855 Vice President
## 7856 Vice President
## 7857 Vice President
## 7858 Vice President
## 7859 Vice President
## 7860 Vice President
## 7861 Vice President
## 7862 Vice President
## 7863 Vice President
## 7864 Vice President
## 7865 Vice President
## 7866 Vice President
## 7867 Vice President
## 7868 Vice President
## 7869 Vice President
## 7870 Vice President
## 7871 Vice President
## 7872 Vice President
## 7873 Vice President
## 7874 Vice President
## 7875 Employee
## 7876 Employee
## 7877 Employee
## 7878 Employee
## 7879 Employee
## 7880 Employee
## 7881 Employee
## 7882 Employee
## 7883 Employee
## 7884 Employee
## 7885 Employee
## 7886 Employee
## 7887 Employee
## 7888 Employee
## 7889 Employee
## 7890 Employee
## 7891 Employee
## 7892 Employee
## 7893 Employee
## 7894 Employee
## 7895 Employee
## 7896 Employee
## 7897 Employee
## 7898 Employee
## 7899 Employee
## 7900 Employee
## 7901 Employee
## 7902 Employee
## 7903 Employee
## 7904 Employee
## 7905 Employee
## 7906 Employee
## 7907 Employee
## 7908 Employee
## 7909 Employee
## 7910 Employee
## 7911 Employee
## 7912 Employee
## 7913 Employee
## 7914 Employee
## 7915 Employee
## 7916 Employee
## 7917 Employee
## 7918 Employee
## 7919 Employee
## 7920 Employee
## 7921 Employee
## 7922 Employee
## 7923 Employee
## 7924 Employee
## 7925 Employee
## 7926 Employee
## 7927 Employee
## 7928 Employee
## 7929 Employee
## 7930 Employee
## 7931 Employee
## 7932 Employee
## 7933 Employee
## 7934 Employee
## 7935 Employee
## 7936 Employee
## 7937 Employee
## 7938 Employee
## 7939 Employee
## 7940 Employee
## 7941 Employee
## 7942 Employee
## 7943 Vice President
## 7944 Vice President
## 7945 Vice President
## 7946 Vice President
## 7947 Vice President
## 7948 Vice President
## 7949 Vice President
## 7950 Vice President
## 7951 Vice President
## 7952 Vice President
## 7953 Vice President
## 7954 Vice President
## 7955 Vice President
## 7956 Vice President
## 7957 Vice President
## 7958 Managing Director
## 7959 Managing Director
## 7960 Managing Director
## 7961 Managing Director
## 7962 Managing Director
## 7963 Managing Director
## 7964 Managing Director
## 7965 Managing Director
## 7966 Managing Director
## 7967 Managing Director
## 7968 Managing Director
## 7969 Managing Director
## 7970 Managing Director
## 7971 Managing Director
## 7972 Employee
## 7973 Employee
## 7974 Employee
## 7975 Employee
## 7976 Employee
## 7977 Employee
## 7978 Employee
## 7979 Employee
## 7980 Employee
## 7981 Employee
## 7982 Employee
## 7983 Employee
## 7984 Employee
## 7985 Employee
## 7986 Employee
## 7987 Vice President
## 7988 Vice President
## 7989 Vice President
## 7990 President
## 7991 Vice President
## 7992 Vice President
## 7993 Vice President
## 7994 Vice President
## 7995 Vice President
## 7996 Vice President
## 7997 Vice President
## 7998 Vice President
## 7999 Vice President
## 8000 Employee
## 8001 Employee
## 8002 Employee
## 8003 Employee
## 8004 Manager
## 8005 Employee
## 8006 Employee
## 8007 Employee
## 8008 Employee
## 8009 Employee
## 8010 Employee
## 8011 Managing Director
## 8012 Managing Director
## 8013 Managing Director
## 8014 Managing Director
## 8015 Managing Director
## 8016 Managing Director
## 8017 Managing Director
## 8018 Managing Director
## 8019 Managing Director
## 8020 Employee
## 8021 Employee
## 8022 Employee
## 8023 Employee
## 8024 Employee
## 8025 Employee
## 8026 Employee
## 8027 Employee
## 8028 Employee
## 8029 Employee
## 8030 Employee
## 8031 Employee
## 8032 Employee
## 8033 Employee
## 8034 Employee
## 8035 Vice President
## 8036 Vice President
## 8037 Vice President
## 8038 Vice President
## 8039 Vice President
## 8040 Vice President
## 8041 Vice President
## 8042 Vice President
## 8043 Vice President
## 8044 Vice President
## 8045 Vice President
## 8046 Vice President
## 8047 Vice President
## 8048 Vice President
## 8049 Employee
## 8050 Employee
## 8051 Vice President
## 8052 Vice President
## 8053 Vice President
## 8054 CEO
## 8055 CEO
## 8056 CEO
## 8057 CEO
## 8058 CEO
## 8059 CEO
## 8060 CEO
## 8061 CEO
## 8062 CEO
## 8063 CEO
## 8064 CEO
## 8065 CEO
## 8066 CEO
## 8067 CEO
## 8068 CEO
## 8069 CEO
## 8070 CEO
## 8071 CEO
## 8072 CEO
## 8073 CEO
## 8074 CEO
## 8075 CEO
## 8076 CEO
## 8077 CEO
## 8078 CEO
## 8079 CEO
## 8080 CEO
## 8081 CEO
## 8082 CEO
## 8083 CEO
## 8084 CEO
## 8085 CEO
## 8086 CEO
## 8087 CEO
## 8088 CEO
## 8089 CEO
## 8090 CEO
## 8091 CEO
## 8092 CEO
## 8093 CEO
## 8094 CEO
## 8095 CEO
## 8096 CEO
## 8097 CEO
## 8098 CEO
## 8099 CEO
## 8100 CEO
## 8101 CEO
## 8102 CEO
## 8103 CEO
## 8104 CEO
## 8105 CEO
## 8106 CEO
## 8107 CEO
## 8108 CEO
## 8109 CEO
## 8110 CEO
## 8111 CEO
## 8112 CEO
## 8113 CEO
## 8114 CEO
## 8115 CEO
## 8116 CEO
## 8117 CEO
## 8118 CEO
## 8119 CEO
## 8120 CEO
## 8121 CEO
## 8122 CEO
## 8123 CEO
## 8124 CEO
## 8125 CEO
## 8126 CEO
## 8127 CEO
## 8128 CEO
## 8129 CEO
## 8130 CEO
## 8131 CEO
## 8132 CEO
## 8133 CEO
## 8134 CEO
## 8135 CEO
## 8136 CEO
## 8137 CEO
## 8138 CEO
## 8139 CEO
## 8140 CEO
## 8141 CEO
## 8142 CEO
## 8143 CEO
## 8144 CEO
## 8145 CEO
## 8146 CEO
## 8147 CEO
## 8148 CEO
## 8149 CEO
## 8150 CEO
## 8151 CEO
## 8152 CEO
## 8153 CEO
## 8154 CEO
## 8155 CEO
## 8156 CEO
## 8157 CEO
## 8158 CEO
## 8159 CEO
## 8160 CEO
## 8161 CEO
## 8162 CEO
## 8163 CEO
## 8164 CEO
## 8165 CEO
## 8166 CEO
## 8167 CEO
## 8168 CEO
## 8169 CEO
## 8170 CEO
## 8171 CEO
## 8172 CEO
## 8173 CEO
## 8174 CEO
## 8175 CEO
## 8176 CEO
## 8177 Vice President
## 8178 Vice President
## 8179 Vice President
## 8180 Vice President
## 8181 Vice President
## 8182 Vice President
## 8183 Managing Director
## 8184 Managing Director
## 8185 Managing Director
## 8186 Managing Director
## 8187 Managing Director
## 8188 Employee
## 8189 Employee
## 8190 Employee
## 8191 Vice President
## 8192 Vice President
## 8193 Vice President
## 8194 Vice President
## 8195 Vice President
## 8196 Vice President
## 8197 Vice President
## 8198 Vice President
## 8199 Employee
## 8200 Employee
## 8201 Employee
## 8202 Employee
## 8203 Employee
## 8204 Employee
## 8205 Employee
## 8206 Employee
## 8207 Employee
## 8208 Employee
## 8209 Employee
## 8210 Employee
## 8211 Employee
## 8212 Employee
## 8213 Employee
## 8214 Employee
## 8215 Employee
## 8216 Employee
## 8217 Employee
## 8218 Employee
## 8219 Employee
## 8220 Employee
## 8221 Employee
## 8222 Employee
## 8223 Employee
## 8224 Employee
## 8225 Employee
## 8226 Employee
## 8227 Employee
## 8228 Employee
## 8229 Employee
## 8230 Employee
## 8231 Employee
## 8232 Employee
## 8233 Employee
## 8234 Employee
## 8235 Employee
## 8236 Employee
## 8237 Employee
## 8238 Employee
## 8239 Employee
## 8240 Employee
## 8241 Employee
## 8242 Employee
## 8243 Employee
## 8244 Employee
## 8245 Employee
## 8246 Employee
## 8247 Employee
## 8248 Employee
## 8249 Employee
## 8250 Employee
## 8251 Employee
## 8252 Employee
## 8253 Employee
## 8254 Employee
## 8255 Employee
## 8256 Employee
## 8257 Employee
## 8258 Employee
## 8259 Employee
## 8260 Employee
## 8261 Employee
## 8262 Employee
## 8263 Employee
## 8264 Employee
## 8265 Employee
## 8266 Employee
## 8267 Employee
## 8268 Employee
## 8269 Employee
## 8270 Employee
## 8271 Employee
## 8272 Employee
## 8273 Employee
## 8274 Employee
## 8275 Employee
## 8276 Employee
## 8277 Employee
## 8278 Employee
## 8279 Employee
## 8280 Employee
## 8281 Employee
## 8282 Employee
## 8283 Employee
## 8284 Employee
## 8285 Employee
## 8286 Employee
## 8287 Employee
## 8288 Employee
## 8289 Employee
## 8290 Employee
## 8291 Employee
## 8292 Employee
## 8293 Employee
## 8294 Employee
## 8295 Employee
## 8296 Employee
## 8297 Employee
## 8298 Employee
## 8299 Employee
## 8300 Employee
## 8301 Employee
## 8302 Employee
## 8303 Employee
## 8304 Employee
## 8305 Employee
## 8306 Employee
## 8307 Employee
## 8308 Employee
## 8309 Employee
## 8310 Employee
## 8311 Employee
## 8312 Employee
## 8313 Employee
## 8314 Employee
## 8315 Employee
## 8316 Employee
## 8317 Employee
## 8318 Employee
## 8319 Employee
## 8320 Employee
## 8321 Employee
## 8322 Employee
## 8323 Employee
## 8324 Employee
## 8325 Employee
## 8326 Employee
## 8327 Employee
## 8328 Employee
## 8329 Employee
## 8330 Employee
## 8331 Employee
## 8332 Employee
## 8333 Employee
## 8334 Employee
## 8335 Employee
## 8336 Employee
## 8337 Employee
## 8338 Employee
## 8339 Employee
## 8340 Employee
## 8341 Employee
## 8342 Employee
## 8343 Employee
## 8344 Employee
## 8345 Employee
## 8346 Employee
## 8347 Employee
## 8348 Employee
## 8349 Employee
## 8350 Employee
## 8351 Employee
## 8352 Employee
## 8353 Employee
## 8354 Employee
## 8355 Employee
## 8356 Employee
## 8357 Employee
## 8358 Employee
## 8359 Employee
## 8360 Employee
## 8361 Employee
## 8362 Employee
## 8363 Employee
## 8364 Vice President
## 8365 Vice President
## 8366 Vice President
## 8367 Vice President
## 8368 Vice President
## 8369 Vice President
## 8370 Vice President
## 8371 Vice President
## 8372 Vice President
## 8373 Vice President
## 8374 Vice President
## 8375 Vice President
## 8376 Vice President
## 8377 Vice President
## 8378 Vice President
## 8379 Vice President
## 8380 Vice President
## 8381 Vice President
## 8382 Employee
## 8383 Employee
## 8384 Employee
## 8385 Employee
## 8386 Employee
## 8387 Employee
## 8388 Employee
## 8389 Employee
## 8390 Employee
## 8391 Employee
## 8392 Employee
## 8393 Employee
## 8394 Employee
## 8395 Employee
## 8396 Employee
## 8397 Employee
## 8398 Employee
## 8399 Employee
## 8400 Employee
## 8401 Employee
## 8402 Employee
## 8403 Employee
## 8404 Employee
## 8405 Employee
## 8406 Employee
## 8407 Employee
## 8408 Employee
## 8409 Employee
## 8410 Employee
## 8411 Employee
## 8412 Employee
## 8413 Employee
## 8414 Employee
## 8415 Employee
## 8416 Employee
## 8417 Employee
## 8418 Employee
## 8419 Employee
## 8420 Employee
## 8421 Employee
## 8422 Employee
## 8423 Employee
## 8424 Employee
## 8425 Employee
## 8426 Employee
## 8427 Employee
## 8428 Employee
## 8429 Employee
## 8430 Employee
## 8431 Employee
## 8432 Employee
## 8433 Employee
## 8434 Employee
## 8435 Employee
## 8436 Employee
## 8437 Employee
## 8438 Employee
## 8439 Employee
## 8440 Employee
## 8441 Employee
## 8442 Employee
## 8443 Employee
## 8444 Employee
## 8445 Employee
## 8446 Employee
## 8447 Employee
## 8448 Employee
## 8449 Employee
## 8450 Employee
## 8451 Employee
## 8452 Employee
## 8453 Employee
## 8454 Employee
## 8455 Employee
## 8456 Employee
## 8457 Employee
## 8458 Employee
## 8459 Employee
## 8460 Employee
## 8461 Employee
## 8462 Employee
## 8463 Managing Director
## 8464 Managing Director
## 8465 Managing Director
## 8466 Employee
## 8467 Employee
## 8468 Employee
## 8469 Employee
## 8470 Employee
## 8471 Employee
## 8472 Employee
## 8473 Employee
## 8474 Employee
## 8475 Employee
## 8476 Employee
## 8477 Employee
## 8478 Employee
## 8479 Employee
## 8480 Employee
## 8481 Employee
## 8482 Employee
## 8483 Employee
## 8484 Employee
## 8485 Employee
## 8486 Employee
## 8487 Employee
## 8488 Employee
## 8489 Employee
## 8490 Employee
## 8491 Employee
## 8492 Employee
## 8493 Employee
## 8494 Employee
## 8495 Employee
## 8496 Employee
## 8497 Employee
## 8498 Employee
## 8499 Employee
## 8500 Employee
## 8501 Employee
## 8502 Employee
## 8503 Employee
## 8504 Employee
## 8505 Employee
## 8506 Employee
## 8507 Employee
## 8508 Employee
## 8509 Employee
## 8510 Employee
## 8511 Employee
## 8512 Employee
## 8513 Employee
## 8514 Employee
## 8515 Employee
## 8516 Employee
## 8517 Employee
## 8518 Employee
## 8519 Employee
## 8520 Employee
## 8521 Employee
## 8522 Employee
## 8523 Employee
## 8524 Employee
## 8525 Employee
## 8526 Employee
## 8527 Employee
## 8528 Employee
## 8529 Employee
## 8530 Employee
## 8531 Employee
## 8532 Employee
## 8533 Employee
## 8534 Employee
## 8535 Employee
## 8536 Employee
## 8537 Employee
## 8538 Employee
## 8539 Employee
## 8540 Employee
## 8541 Employee
## 8542 Employee
## 8543 Employee
## 8544 Employee
## 8545 Employee
## 8546 Employee
## 8547 Employee
## 8548 Employee
## 8549 Employee
## 8550 Employee
## 8551 Employee
## 8552 Employee
## 8553 Employee
## 8554 Employee
## 8555 Employee
## 8556 Employee
## 8557 Employee
## 8558 Employee
## 8559 Employee
## 8560 Employee
## 8561 Employee
## 8562 Employee
## 8563 Employee
## 8564 Employee
## 8565 Employee
## 8566 Employee
## 8567 Employee
## 8568 Employee
## 8569 Employee
## 8570 Employee
## 8571 Employee
## 8572 Employee
## 8573 Employee
## 8574 Employee
## 8575 Employee
## 8576 Employee
## 8577 Employee
## 8578 Employee
## 8579 Employee
## 8580 Employee
## 8581 Employee
## 8582 Employee
## 8583 Employee
## 8584 Employee
## 8585 Employee
## 8586 Employee
## 8587 Employee
## 8588 Employee
## 8589 Employee
## 8590 Employee
## 8591 Employee
## 8592 Employee
## 8593 Vice President
## 8594 Employee
## 8595 Vice President
## 8596 Vice President
## 8597 Vice President
## 8598 Employee
## 8599 Employee
## 8600 Employee
## 8601 Employee
## 8602 Employee
## 8603 Employee
## 8604 Employee
## 8605 Employee
## 8606 Vice President
## 8607 Vice President
## 8608 Vice President
## 8609 Vice President
## 8610 Vice President
## 8611 Vice President
## 8612 Vice President
## 8613 Vice President
## 8614 Vice President
## 8615 Vice President
## 8616 Vice President
## 8617 Vice President
## 8618 Vice President
## 8619 Vice President
## 8620 Employee
## 8621 Vice President
## 8622 Managing Director
## 8623 Managing Director
## 8624 Managing Director
## 8625 Managing Director
## 8626 Managing Director
## 8627 Managing Director
## 8628 Managing Director
## 8629 Managing Director
## 8630 Managing Director
## 8631 Managing Director
## 8632 Managing Director
## 8633 Managing Director
## 8634 Managing Director
## 8635 Managing Director
## 8636 Managing Director
## 8637 Managing Director
## 8638 Managing Director
## 8639 Managing Director
## 8640 Managing Director
## 8641 Managing Director
## 8642 Managing Director
## 8643 Managing Director
## 8644 Managing Director
## 8645 Managing Director
## 8646 Managing Director
## 8647 Managing Director
## 8648 Managing Director
## 8649 Managing Director
## 8650 Managing Director
## 8651 Vice President
## 8652 Employee
## 8653 Employee
## 8654 Employee
## 8655 Employee
## 8656 Employee
## 8657 Employee
## 8658 Employee
## 8659 Employee
## 8660 Employee
## 8661 Employee
## 8662 Employee
## 8663 Employee
## 8664 President
## 8665 President
## 8666 President
## 8667 President
## 8668 President
## 8669 President
## 8670 President
## 8671 President
## 8672 President
## 8673 President
## 8674 President
## 8675 President
## 8676 President
## 8677 President
## 8678 President
## 8679 Vice President
## 8680 Vice President
## 8681 Vice President
## 8682 Vice President
## 8683 Vice President
## 8684 Vice President
## 8685 Vice President
## 8686 Vice President
## 8687 Employee
## 8688 Vice President
## 8689 Vice President
## 8690 Vice President
## 8691 Vice President
## 8692 Vice President
## 8693 President
## 8694 Employee
## 8695 Managing Director
## 8696 Managing Director
## 8697 Managing Director
## 8698 Managing Director
## 8699 Managing Director
## 8700 Managing Director
## 8701 President
## 8702 President
## 8703 President
## 8704 President
## 8705 President
## 8706 President
## 8707 Vice President
## 8708 Vice President
## 8709 Employee
## 8710 Employee
## 8711 Vice President
## 8712 Vice President
## 8713 President
## 8714 President
## 8715 President
## 8716 President
## 8717 President
## 8718 President
## 8719 President
## 8720 President
## 8721 President
## 8722 President
## 8723 President
## 8724 President
## 8725 President
## 8726 President
## 8727 Managing Director
## 8728 Managing Director
## 8729 Managing Director
## 8730 Managing Director
## 8731 Managing Director
## 8732 Vice President
## 8733 Vice President
## 8734 Vice President
## 8735 Vice President
## 8736 President
## 8737 President
## 8738 President
## 8739 President
## 8740 President
## 8741 President
## 8742 President
## 8743 President
## 8744 President
## 8745 President
## 8746 Vice President
## 8747 Vice President
## 8748 Vice President
## 8749 Vice President
## 8750 Vice President
## 8751 Vice President
## 8752 Vice President
## 8753 Vice President
## 8754 President
## 8755 President
## 8756 President
## 8757 Vice President
## 8758 Vice President
## 8759 Vice President
## 8760 Vice President
## 8761 Vice President
## 8762 President
## 8763 President
## 8764 President
## 8765 Vice President
## 8766 Vice President
## 8767 Vice President
## 8768 Vice President
## 8769 Vice President
## 8770 Vice President
## 8771 Vice President
## 8772 Vice President
## 8773 President
## 8774 Vice President
## 8775 Vice President
## 8776 Vice President
## 8777 Vice President
## 8778 Vice President
## 8779 Vice President
## 8780 Vice President
## 8781 Vice President
## 8782 Vice President
## 8783 Vice President
## 8784 Vice President
## 8785 Vice President
## 8786 Vice President
## 8787 Vice President
## 8788 Vice President
## 8789 Vice President
## 8790 Vice President
## 8791 Vice President
## 8792 Vice President
## 8793 Vice President
## 8794 Vice President
## 8795 Vice President
## 8796 Vice President
## 8797 Vice President
## 8798 Vice President
## 8799 Vice President
## 8800 President
## 8801 President
## 8802 President
## 8803 President
## 8804 President
## 8805 President
## 8806 President
## 8807 President
## 8808 President
## 8809 President
## 8810 President
## 8811 President
## 8812 President
## 8813 President
## 8814 President
## 8815 President
## 8816 President
## 8817 President
## 8818 Vice President
## 8819 Vice President
## 8820 Vice President
## 8821 Vice President
## 8822 Vice President
## 8823 Vice President
## 8824 Vice President
## 8825 Vice President
## 8826 Vice President
## 8827 Managing Director
## 8828 Vice President
## 8829 Vice President
## 8830 Vice President
## 8831 Vice President
## 8832 Vice President
## 8833 Vice President
## 8834 Vice President
## 8835 Vice President
## 8836 Vice President
## 8837 Vice President
## 8838 Vice President
## 8839 Vice President
## 8840 Vice President
## 8841 Vice President
## 8842 Vice President
## 8843 Vice President
## 8844 Vice President
## 8845 Vice President
## 8846 Vice President
## 8847 Vice President
## 8848 Vice President
## 8849 Vice President
## 8850 Vice President
## 8851 Vice President
## 8852 Vice President
## 8853 Vice President
## 8854 Vice President
## 8855 Vice President
## 8856 Vice President
## 8857 Vice President
## 8858 Vice President
## 8859 Vice President
## 8860 Vice President
## 8861 Vice President
## 8862 Vice President
## 8863 Vice President
## 8864 Vice President
## 8865 Vice President
## 8866 Vice President
## 8867 Vice President
## 8868 Vice President
## 8869 Vice President
## 8870 Vice President
## 8871 Vice President
## 8872 Vice President
## 8873 Vice President
## 8874 Vice President
## 8875 Vice President
## 8876 Vice President
## 8877 Vice President
## 8878 Vice President
## 8879 Vice President
## 8880 Vice President
## 8881 Vice President
## 8882 Vice President
## 8883 Vice President
## 8884 Vice President
## 8885 Vice President
## 8886 Vice President
## 8887 Vice President
## 8888 Vice President
## 8889 Vice President
## 8890 Vice President
## 8891 Vice President
## 8892 Vice President
## 8893 Vice President
## 8894 Vice President
## 8895 Vice President
## 8896 Vice President
## 8897 Vice President
## 8898 Vice President
## 8899 Vice President
## 8900 Vice President
## 8901 Vice President
## 8902 Vice President
## 8903 Vice President
## 8904 President
## 8905 President
## 8906 President
## 8907 President
## 8908 President
## 8909 President
## 8910 President
## 8911 President
## 8912 Vice President
## 8913 Vice President
## 8914 Vice President
## 8915 Vice President
## 8916 Vice President
## 8917 Vice President
## 8918 Vice President
## 8919 Vice President
## 8920 Vice President
## 8921 Vice President
## 8922 Vice President
## 8923 Vice President
## 8924 Vice President
## 8925 Vice President
## 8926 Vice President
## 8927 Managing Director
## 8928 Vice President
## 8929 Vice President
## 8930 Vice President
## 8931 Vice President
## 8932 Vice President
## 8933 Vice President
## 8934 Vice President
## 8935 Vice President
## 8936 Vice President
## 8937 Vice President
## 8938 Vice President
## 8939 Vice President
## 8940 Vice President
## 8941 Vice President
## 8942 Vice President
## 8943 Vice President
## 8944 Vice President
## 8945 Vice President
## 8946 Vice President
## 8947 Vice President
## 8948 Vice President
## 8949 Vice President
## 8950 Vice President
## 8951 Vice President
## 8952 Vice President
## 8953 Vice President
## 8954 Vice President
## 8955 President
## 8956 President
## 8957 President
## 8958 President
## 8959 President
## 8960 President
## 8961 President
## 8962 Vice President
## 8963 Vice President
## 8964 Vice President
## 8965 Vice President
## 8966 Vice President
## 8967 Vice President
## 8968 Vice President
## 8969 Vice President
## 8970 Vice President
## 8971 Vice President
## 8972 Vice President
## 8973 Vice President
## 8974 Vice President
## 8975 Vice President
## 8976 Vice President
## 8977 Vice President
## 8978 Vice President
## 8979 Vice President
## 8980 Vice President
## 8981 Vice President
## 8982 Vice President
## 8983 Vice President
## 8984 Vice President
## 8985 Vice President
## 8986 Vice President
## 8987 Vice President
## 8988 Vice President
## 8989 Vice President
## 8990 Vice President
## 8991 Vice President
## 8992 Vice President
## 8993 Vice President
## 8994 Vice President
## 8995 Vice President
## 8996 Vice President
## 8997 Vice President
## 8998 Vice President
## 8999 Vice President
## 9000 Vice President
## 9001 Vice President
## 9002 Vice President
## 9003 Vice President
## 9004 Vice President
## 9005 Vice President
## 9006 President
## 9007 President
## 9008 President
## 9009 Employee
## 9010 Employee
## 9011 President
## 9012 President
## 9013 President
## 9014 President
## 9015 President
## 9016 President
## 9017 President
## 9018 Vice President
## 9019 Vice President
## 9020 Vice President
## 9021 Vice President
## 9022 Vice President
## 9023 Vice President
## 9024 Vice President
## 9025 Vice President
## 9026 Vice President
## 9027 Vice President
## 9028 Vice President
## 9029 Vice President
## 9030 Vice President
## 9031 Vice President
## 9032 Vice President
## 9033 Vice President
## 9034 Vice President
## 9035 Vice President
## 9036 Vice President
## 9037 Vice President
## 9038 Vice President
## 9039 Vice President
## 9040 Vice President
## 9041 Vice President
## 9042 Vice President
## 9043 Vice President
## 9044 Vice President
## 9045 Vice President
## 9046 Vice President
## 9047 Vice President
## 9048 Vice President
## 9049 Vice President
## 9050 Vice President
## 9051 Vice President
## 9052 Vice President
## 9053 Vice President
## 9054 Vice President
## 9055 Vice President
## 9056 Vice President
## 9057 Vice President
## 9058 Vice President
## 9059 Vice President
## 9060 Vice President
## 9061 Vice President
## 9062 Vice President
## 9063 Vice President
## 9064 Vice President
## 9065 Vice President
## 9066 Vice President
## 9067 Vice President
## 9068 Vice President
## 9069 Vice President
## 9070 Vice President
## 9071 Vice President
## 9072 Vice President
## 9073 Vice President
## 9074 Vice President
## 9075 Vice President
## 9076 Vice President
## 9077 Vice President
## 9078 Vice President
## 9079 Vice President
## 9080 Vice President
## 9081 Vice President
## 9082 Vice President
## 9083 Vice President
## 9084 Vice President
## 9085 Vice President
## 9086 Vice President
## 9087 Vice President
## 9088 Vice President
## 9089 Vice President
## 9090 Vice President
## 9091 Vice President
## 9092 Vice President
## 9093 Vice President
## 9094 Vice President
## 9095 Vice President
## 9096 President
## 9097 President
## 9098 President
## 9099 President
## 9100 President
## 9101 President
## 9102 President
## 9103 Employee
## 9104 President
## 9105 President
## 9106 President
## 9107 President
## 9108 President
## 9109 President
## 9110 President
## 9111 President
## 9112 Vice President
## 9113 Vice President
## 9114 Vice President
## 9115 Vice President
## 9116 Vice President
## 9117 Vice President
## 9118 Vice President
## 9119 Vice President
## 9120 Vice President
## 9121 Vice President
## 9122 Vice President
## 9123 Vice President
## 9124 Vice President
## 9125 Vice President
## 9126 Vice President
## 9127 Vice President
## 9128 Vice President
## 9129 Vice President
## 9130 Vice President
## 9131 Vice President
## 9132 Employee
## 9133 Vice President
## 9134 Vice President
## 9135 Vice President
## 9136 Vice President
## 9137 Vice President
## 9138 Vice President
## 9139 Vice President
## 9140 Vice President
## 9141 Vice President
## 9142 Vice President
## 9143 Vice President
## 9144 Vice President
## 9145 Vice President
## 9146 Vice President
## 9147 Vice President
## 9148 Vice President
## 9149 Vice President
## 9150 Vice President
## 9151 Vice President
## 9152 Vice President
## 9153 Vice President
## 9154 Vice President
## 9155 Vice President
## 9156 President
## 9157 Employee
## 9158 Vice President
## 9159 Vice President
## 9160 Vice President
## 9161 Vice President
## 9162 Vice President
## 9163 Vice President
## 9164 Vice President
## 9165 Vice President
## 9166 Vice President
## 9167 Vice President
## 9168 Vice President
## 9169 Vice President
## 9170 Employee
## 9171 Vice President
## 9172 Vice President
## 9173 Vice President
## 9174 Vice President
## 9175 Vice President
## 9176 Vice President
## 9177 Vice President
## 9178 Vice President
## 9179 Vice President
## 9180 Trader
## 9181 Trader
## 9182 Trader
## 9183 President
## 9184 President
## 9185 Vice President
## 9186 Vice President
## 9187 Vice President
## 9188 Vice President
## 9189 Vice President
## 9190 Vice President
## 9191 Vice President
## 9192 Vice President
## 9193 Vice President
## 9194 Vice President
## 9195 Vice President
## 9196 Vice President
## 9197 Vice President
## 9198 Vice President
## 9199 Vice President
## 9200 Vice President
## 9201 Vice President
## 9202 Vice President
## 9203 Vice President
## 9204 Vice President
## 9205 Vice President
## 9206 Vice President
## 9207 Vice President
## 9208 Vice President
## 9209 Vice President
## 9210 Vice President
## 9211 Vice President
## 9212 Employee
## 9213 Employee
## 9214 President
## 9215 President
## 9216 President
## 9217 President
## 9218 President
## 9219 President
## 9220 President
## 9221 President
## 9222 President
## 9223 President
## 9224 President
## 9225 President
## 9226 President
## 9227 President
## 9228 President
## 9229 President
## 9230 President
## 9231 President
## 9232 President
## 9233 President
## 9234 President
## 9235 President
## 9236 President
## 9237 President
## 9238 President
## 9239 President
## 9240 President
## 9241 President
## 9242 President
## 9243 President
## 9244 President
## 9245 President
## 9246 President
## 9247 President
## 9248 President
## 9249 President
## 9250 President
## 9251 President
## 9252 President
## 9253 President
## 9254 President
## 9255 President
## 9256 President
## 9257 President
## 9258 President
## 9259 President
## 9260 President
## 9261 President
## 9262 President
## 9263 President
## 9264 President
## 9265 President
## 9266 President
## 9267 President
## 9268 President
## 9269 President
## 9270 President
## 9271 President
## 9272 President
## 9273 President
## 9274 President
## 9275 President
## 9276 President
## 9277 President
## 9278 President
## 9279 President
## 9280 President
## 9281 President
## 9282 President
## 9283 President
## 9284 President
## 9285 President
## 9286 President
## 9287 President
## 9288 President
## 9289 President
## 9290 President
## 9291 President
## 9292 President
## 9293 President
## 9294 President
## 9295 President
## 9296 President
## 9297 President
## 9298 President
## 9299 President
## 9300 Vice President
## 9301 Vice President
## 9302 Vice President
## 9303 Vice President
## 9304 Vice President
## 9305 Vice President
## 9306 Vice President
## 9307 Vice President
## 9308 Vice President
## 9309 Vice President
## 9310 President
## 9311 President
## 9312 President
## 9313 President
## 9314 President
## 9315 President
## 9316 President
## 9317 Vice President
## 9318 President
## 9319 President
## 9320 President
## 9321 President
## 9322 President
## 9323 President
## 9324 President
## 9325 President
## 9326 President
## 9327 President
## 9328 President
## 9329 President
## 9330 President
## 9331 President
## 9332 President
## 9333 President
## 9334 President
## 9335 President
## 9336 President
## 9337 President
## 9338 President
## 9339 President
## 9340 President
## 9341 President
## 9342 President
## 9343 President
## 9344 President
## 9345 President
## 9346 President
## 9347 President
## 9348 President
## 9349 President
## 9350 President
## 9351 President
## 9352 President
## 9353 President
## 9354 President
## 9355 President
## 9356 President
## 9357 President
## 9358 President
## 9359 President
## 9360 Vice President
## 9361 Vice President
## 9362 Vice President
## 9363 Vice President
## 9364 Vice President
## 9365 Vice President
## 9366 Vice President
## 9367 Vice President
## 9368 Vice President
## 9369 Vice President
## 9370 Vice President
## 9371 Vice President
## 9372 Vice President
## 9373 Vice President
## 9374 Vice President
## 9375 Vice President
## 9376 Vice President
## 9377 Vice President
## 9378 President
## 9379 President
## 9380 President
## 9381 Employee
## 9382 President
## 9383 President
## 9384 President
## 9385 President
## 9386 President
## 9387 President
## 9388 President
## 9389 President
## 9390 President
## 9391 President
## 9392 President
## 9393 President
## 9394 President
## 9395 President
## 9396 President
## 9397 President
## 9398 President
## 9399 President
## 9400 President
## 9401 President
## 9402 President
## 9403 President
## 9404 President
## 9405 President
## 9406 President
## 9407 President
## 9408 President
## 9409 President
## 9410 President
## 9411 President
## 9412 President
## 9413 President
## 9414 President
## 9415 President
## 9416 President
## 9417 President
## 9418 President
## 9419 President
## 9420 President
## 9421 President
## 9422 Vice President
## 9423 Vice President
## 9424 Vice President
## 9425 Vice President
## 9426 President
## 9427 President
## 9428 President
## 9429 President
## 9430 President
## 9431 President
## 9432 President
## 9433 President
## 9434 President
## 9435 President
## 9436 President
## 9437 President
## 9438 President
## 9439 President
## 9440 President
## 9441 President
## 9442 President
## 9443 President
## 9444 President
## 9445 President
## 9446 President
## 9447 President
## 9448 President
## 9449 President
## 9450 President
## 9451 President
## 9452 President
## 9453 President
## 9454 President
## 9455 President
## 9456 President
## 9457 President
## 9458 President
## 9459 President
## 9460 President
## 9461 President
## 9462 President
## 9463 President
## 9464 President
## 9465 President
## 9466 President
## 9467 President
## 9468 President
## 9469 President
## 9470 President
## 9471 President
## 9472 President
## 9473 President
## 9474 President
## 9475 President
## 9476 President
## 9477 President
## 9478 President
## 9479 President
## 9480 President
## 9481 President
## 9482 President
## 9483 President
## 9484 President
## 9485 President
## 9486 President
## 9487 President
## 9488 President
## 9489 President
## 9490 President
## 9491 President
## 9492 President
## 9493 President
## 9494 President
## 9495 President
## 9496 President
## 9497 President
## 9498 President
## 9499 President
## 9500 President
## 9501 President
## 9502 President
## 9503 President
## 9504 President
## 9505 President
## 9506 President
## 9507 President
## 9508 President
## 9509 President
## 9510 President
## 9511 President
## 9512 President
## 9513 President
## 9514 President
## 9515 President
## 9516 President
## 9517 President
## 9518 President
## 9519 President
## 9520 President
## 9521 President
## 9522 President
## 9523 President
## 9524 President
## 9525 President
## 9526 President
## 9527 President
## 9528 President
## 9529 President
## 9530 President
## 9531 President
## 9532 President
## 9533 President
## 9534 President
## 9535 President
## 9536 President
## 9537 President
## 9538 President
## 9539 President
## 9540 President
## 9541 President
## 9542 President
## 9543 President
## 9544 President
## 9545 President
## 9546 President
## 9547 President
## 9548 President
## 9549 President
## 9550 President
## 9551 President
## 9552 President
## 9553 President
## 9554 President
## 9555 President
## 9556 President
## 9557 President
## 9558 President
## 9559 President
## 9560 President
## 9561 President
## 9562 President
## 9563 President
## 9564 President
## 9565 President
## 9566 President
## 9567 President
## 9568 President
## 9569 President
## 9570 President
## 9571 President
## 9572 President
## 9573 President
## 9574 President
## 9575 President
## 9576 President
## 9577 President
## 9578 President
## 9579 President
## 9580 President
## 9581 President
## 9582 President
## 9583 President
## 9584 President
## 9585 President
## 9586 President
## 9587 President
## 9588 President
## 9589 President
## 9590 President
## 9591 President
## 9592 President
## 9593 President
## 9594 President
## 9595 President
## 9596 President
## 9597 President
## 9598 President
## 9599 President
## 9600 President
## 9601 President
## 9602 President
## 9603 President
## 9604 President
## 9605 President
## 9606 President
## 9607 President
## 9608 President
## 9609 President
## 9610 President
## 9611 President
## 9612 President
## 9613 President
## 9614 President
## 9615 President
## 9616 President
## 9617 President
## 9618 President
## 9619 President
## 9620 President
## 9621 President
## 9622 President
## 9623 President
## 9624 President
## 9625 President
## 9626 President
## 9627 President
## 9628 President
## 9629 President
## 9630 President
## 9631 President
## 9632 President
## 9633 President
## 9634 President
## 9635 President
## 9636 President
## 9637 President
## 9638 President
## 9639 President
## 9640 President
## 9641 President
## 9642 President
## 9643 President
## 9644 President
## 9645 President
## 9646 President
## 9647 President
## 9648 President
## 9649 President
## 9650 President
## 9651 President
## 9652 President
## 9653 President
## 9654 President
## 9655 Employee
## 9656 Employee
## 9657 Employee
## 9658 Employee
## 9659 Employee
## 9660 Employee
## 9661 Employee
## 9662 President
## 9663 President
## 9664 President
## 9665 Employee
## 9666 Employee
## 9667 Employee
## 9668 Employee
## 9669 Employee
## 9670 President
## 9671 President
## 9672 President
## 9673 President
## 9674 President
## 9675 President
## 9676 President
## 9677 President
## 9678 President
## 9679 President
## 9680 President
## 9681 President
## 9682 President
## 9683 President
## 9684 President
## 9685 President
## 9686 President
## 9687 President
## 9688 President
## 9689 President
## 9690 President
## 9691 President
## 9692 President
## 9693 President
## 9694 President
## 9695 President
## 9696 President
## 9697 President
## 9698 President
## 9699 President
## 9700 President
## 9701 President
## 9702 President
## 9703 President
## 9704 President
## 9705 President
## 9706 President
## 9707 President
## 9708 President
## 9709 President
## 9710 President
## 9711 President
## 9712 President
## 9713 President
## 9714 President
## 9715 President
## 9716 President
## 9717 President
## 9718 President
## 9719 President
## 9720 President
## 9721 President
## 9722 President
## 9723 Employee
## 9724 Employee
## 9725 Employee
## 9726 President
## 9727 President
## 9728 President
## 9729 President
## 9730 President
## 9731 President
## 9732 President
## 9733 President
## 9734 President
## 9735 President
## 9736 President
## 9737 President
## 9738 President
## 9739 President
## 9740 President
## 9741 President
## 9742 President
## 9743 President
## 9744 President
## 9745 President
## 9746 President
## 9747 President
## 9748 President
## 9749 President
## 9750 President
## 9751 President
## 9752 President
## 9753 President
## 9754 President
## 9755 President
## 9756 President
## 9757 President
## 9758 President
## 9759 President
## 9760 President
## 9761 President
## 9762 President
## 9763 President
## 9764 President
## 9765 President
## 9766 President
## 9767 President
## 9768 President
## 9769 President
## 9770 President
## 9771 President
## 9772 President
## 9773 President
## 9774 President
## 9775 President
## 9776 President
## 9777 President
## 9778 President
## 9779 President
## 9780 President
## 9781 President
## 9782 President
## 9783 President
## 9784 President
## 9785 President
## 9786 President
## 9787 President
## 9788 President
## 9789 President
## 9790 President
## 9791 President
## 9792 President
## 9793 President
## 9794 President
## 9795 President
## 9796 President
## 9797 President
## 9798 President
## 9799 President
## 9800 President
## 9801 President
## 9802 President
## 9803 President
## 9804 President
## 9805 President
## 9806 President
## 9807 President
## 9808 President
## 9809 President
## 9810 President
## 9811 President
## 9812 President
## 9813 President
## 9814 President
## 9815 President
## 9816 President
## 9817 President
## 9818 President
## 9819 President
## 9820 President
## 9821 President
## 9822 President
## 9823 President
## 9824 President
## 9825 President
## 9826 President
## 9827 President
## 9828 President
## 9829 President
## 9830 President
## 9831 President
## 9832 President
## 9833 President
## 9834 President
## 9835 President
## 9836 President
## 9837 President
## 9838 President
## 9839 President
## 9840 President
## 9841 President
## 9842 President
## 9843 President
## 9844 President
## 9845 President
## 9846 President
## 9847 President
## 9848 President
## 9849 President
## 9850 President
## 9851 President
## 9852 President
## 9853 President
## 9854 President
## 9855 President
## 9856 President
## 9857 President
## 9858 President
## 9859 President
## 9860 President
## 9861 President
## 9862 President
## 9863 President
## 9864 President
## 9865 President
## 9866 President
## 9867 President
## 9868 President
## 9869 President
## 9870 President
## 9871 President
## 9872 President
## 9873 Employee
## 9874 Employee
## 9875 Employee
## 9876 Employee
## 9877 Employee
## 9878 Employee
## 9879 Employee
## 9880 Employee
## 9881 Employee
## 9882 Employee
## 9883 Employee
## 9884 Employee
## 9885 Employee
## 9886 Employee
## 9887 Employee
## 9888 Employee
## 9889 Employee
## 9890 Employee
## 9891 Employee
## 9892 Employee
## 9893 Employee
## 9894 Employee
## 9895 Employee
## 9896 Employee
## 9897 Employee
## 9898 Employee
## 9899 Employee
## 9900 Employee
## 9901 President
## 9902 Employee
## 9903 Employee
## 9904 Employee
## 9905 Employee
## 9906 Employee
## 9907 Employee
## 9908 Employee
## 9909 Employee
## 9910 Employee
## 9911 Employee
## 9912 Employee
## 9913 Employee
## 9914 Employee
## 9915 Employee
## 9916 Employee
## 9917 Employee
## 9918 Employee
## 9919 Employee
## 9920 Employee
## 9921 Employee
## 9922 Employee
## 9923 Employee
## 9924 Employee
## 9925 Employee
## 9926 Employee
## 9927 Employee
## 9928 Employee
## 9929 Employee
## 9930 Employee
## 9931 Employee
## 9932 Employee
## 9933 Employee
## 9934 Employee
## 9935 Employee
## 9936 Employee
## 9937 Employee
## 9938 Employee
## 9939 Employee
## 9940 Employee
## 9941 Employee
## 9942 Employee
## 9943 Employee
## 9944 Employee
## 9945 Employee
## 9946 Employee
## 9947 Employee
## 9948 Employee
## 9949 Employee
## 9950 Employee
## 9951 Employee
## 9952 Employee
## 9953 Employee
## 9954 Employee
## 9955 Employee
## 9956 Employee
## 9957 Employee
## 9958 Employee
## 9959 Employee
## 9960 Employee
## 9961 Employee
## 9962 Employee
## 9963 Employee
## 9964 Employee
## 9965 Employee
## 9966 Employee
## 9967 Employee
## 9968 Employee
## 9969 Employee
## 9970 Employee
## 9971 Employee
## 9972 Employee
## 9973 Employee
## 9974 Employee
## 9975 Employee
## 9976 Employee
## 9977 Employee
## 9978 Employee
## 9979 Employee
## 9980 Employee
## 9981 Employee
## 9982 Employee
## 9983 Employee
## 9984 Employee
## 9985 Employee
## 9986 Employee
## 9987 Vice President
## 9988 Employee
## 9989 President
## 9990 President
## 9991 President
## 9992 President
## 9993 President
## 9994 President
## 9995 President
## 9996 Vice President
## 9997 Employee
## 9998 Employee
## 9999 Employee
## 10000 Employee
## 10001 Employee
## 10002 Employee
## 10003 Employee
## 10004 Employee
## 10005 Employee
## 10006 Employee
## 10007 Employee
## 10008 Employee
## 10009 Employee
## 10010 Employee
## 10011 Employee
## 10012 Employee
## 10013 Employee
## 10014 Employee
## 10015 Employee
## 10016 Employee
## 10017 Employee
## 10018 Employee
## 10019 Employee
## 10020 Employee
## 10021 Employee
## 10022 Employee
## 10023 Employee
## 10024 Employee
## 10025 Employee
## 10026 Employee
## 10027 Employee
## 10028 Employee
## 10029 Employee
## 10030 Employee
## 10031 Employee
## 10032 Employee
## 10033 Employee
## 10034 Employee
## 10035 Employee
## 10036 Employee
## 10037 Employee
## 10038 Employee
## 10039 Employee
## 10040 Employee
## 10041 Employee
## 10042 Employee
## 10043 Employee
## 10044 Employee
## 10045 Employee
## 10046 Employee
## 10047 Employee
## 10048 Employee
## 10049 Employee
## 10050 Employee
## 10051 Employee
## 10052 Employee
## 10053 Employee
## 10054 Employee
## 10055 Employee
## 10056 Employee
## 10057 Employee
## 10058 Employee
## 10059 Employee
## 10060 Employee
## 10061 Employee
## 10062 Employee
## 10063 Employee
## 10064 Employee
## 10065 Employee
## 10066 Employee
## 10067 Employee
## 10068 Employee
## 10069 Employee
## 10070 Employee
## 10071 Employee
## 10072 Employee
## 10073 Employee
## 10074 Employee
## 10075 Employee
## 10076 Employee
## 10077 Employee
## 10078 Employee
## 10079 Employee
## 10080 Employee
## 10081 Employee
## 10082 Employee
## 10083 Employee
## 10084 Employee
## 10085 Employee
## 10086 Employee
## 10087 Employee
## 10088 Employee
## 10089 Employee
## 10090 Employee
## 10091 Employee
## 10092 Employee
## 10093 Employee
## 10094 Employee
## 10095 Employee
## 10096 Employee
## 10097 Employee
## 10098 Employee
## 10099 Employee
## 10100 Employee
## 10101 Employee
## 10102 Employee
## 10103 Employee
## 10104 Employee
## 10105 Employee
## 10106 Employee
## 10107 Employee
## 10108 Employee
## 10109 Employee
## 10110 Employee
## 10111 Employee
## 10112 Employee
## 10113 Employee
## 10114 Employee
## 10115 Employee
## 10116 Employee
## 10117 Employee
## 10118 Employee
## 10119 Employee
## 10120 Employee
## 10121 Employee
## 10122 Employee
## 10123 Employee
## 10124 Employee
## 10125 Employee
## 10126 Employee
## 10127 Employee
## 10128 Employee
## 10129 Employee
## 10130 Employee
## 10131 Employee
## 10132 Employee
## 10133 Employee
## 10134 Employee
## 10135 Employee
## 10136 Employee
## 10137 Employee
## 10138 Employee
## 10139 Employee
## 10140 Employee
## 10141 Employee
## 10142 Employee
## 10143 Employee
## 10144 Employee
## 10145 Employee
## 10146 Employee
## 10147 Employee
## 10148 Employee
## 10149 Employee
## 10150 Employee
## 10151 Employee
## 10152 Employee
## 10153 Employee
## 10154 Employee
## 10155 Employee
## 10156 Employee
## 10157 Employee
## 10158 Employee
## 10159 Employee
## 10160 Employee
## 10161 Employee
## 10162 Employee
## 10163 Employee
## 10164 Employee
## 10165 Employee
## 10166 Employee
## 10167 Employee
## 10168 Employee
## 10169 Employee
## 10170 Employee
## 10171 Employee
## 10172 Employee
## 10173 Employee
## 10174 Employee
## 10175 Employee
## 10176 Employee
## 10177 Employee
## 10178 Employee
## 10179 Employee
## 10180 Employee
## 10181 Employee
## 10182 Employee
## 10183 Employee
## 10184 Employee
## 10185 Employee
## 10186 Employee
## 10187 Employee
## 10188 Employee
## 10189 Employee
## 10190 Employee
## 10191 Employee
## 10192 Employee
## 10193 Employee
## 10194 Employee
## 10195 Employee
## 10196 Employee
## 10197 Employee
## 10198 Employee
## 10199 Employee
## 10200 Employee
## 10201 Employee
## 10202 Employee
## 10203 Employee
## 10204 Employee
## 10205 Employee
## 10206 Employee
## 10207 Employee
## 10208 Employee
## 10209 Employee
## 10210 Employee
## 10211 Employee
## 10212 Employee
## 10213 Employee
## 10214 Employee
## 10215 Employee
## 10216 Employee
## 10217 Employee
## 10218 Employee
## 10219 Employee
## 10220 Employee
## 10221 Employee
## 10222 Employee
## 10223 Employee
## 10224 Employee
## 10225 Employee
## 10226 Employee
## 10227 Employee
## 10228 Employee
## 10229 Employee
## 10230 Employee
## 10231 Employee
## 10232 Employee
## 10233 Employee
## 10234 Employee
## 10235 Employee
## 10236 Employee
## 10237 Employee
## 10238 Employee
## 10239 Employee
## 10240 Employee
## 10241 Employee
## 10242 Employee
## 10243 Employee
## 10244 Employee
## 10245 Employee
## 10246 Employee
## 10247 Employee
## 10248 Employee
## 10249 Employee
## 10250 Employee
## 10251 Employee
## 10252 Employee
## 10253 Employee
## 10254 Employee
## 10255 Employee
## 10256 Employee
## 10257 Employee
## 10258 Employee
## 10259 Employee
## 10260 Employee
## 10261 Employee
## 10262 Employee
## 10263 Employee
## 10264 Employee
## 10265 Employee
## 10266 Employee
## 10267 Employee
## 10268 Employee
## 10269 Employee
## 10270 Employee
## 10271 Employee
## 10272 Employee
## 10273 Employee
## 10274 Employee
## 10275 Employee
## 10276 Employee
## 10277 Employee
## 10278 Employee
## 10279 Employee
## 10280 Employee
## 10281 Employee
## 10282 Employee
## 10283 Employee
## 10284 Employee
## 10285 Employee
## 10286 Employee
## 10287 Employee
## 10288 Employee
## 10289 Employee
## 10290 Employee
## 10291 Employee
## 10292 Employee
## 10293 Employee
## 10294 Employee
## 10295 Employee
## 10296 Employee
## 10297 Employee
## 10298 Employee
## 10299 Employee
## 10300 Employee
## 10301 Employee
## 10302 Employee
## 10303 Employee
## 10304 Employee
## 10305 Employee
## 10306 Employee
## 10307 Employee
## 10308 Employee
## 10309 Employee
## 10310 Employee
## 10311 Employee
## 10312 Employee
## 10313 Employee
## 10314 Employee
## 10315 Employee
## 10316 Employee
## 10317 Employee
## 10318 Employee
## 10319 Employee
## 10320 Employee
## 10321 Employee
## 10322 Employee
## 10323 Employee
## 10324 Employee
## 10325 Employee
## 10326 Employee
## 10327 Employee
## 10328 Employee
## 10329 Employee
## 10330 Employee
## 10331 Employee
## 10332 Employee
## 10333 Employee
## 10334 Employee
## 10335 Employee
## 10336 Employee
## 10337 Employee
## 10338 Employee
## 10339 Employee
## 10340 Employee
## 10341 Employee
## 10342 Employee
## 10343 Employee
## 10344 Employee
## 10345 Employee
## 10346 Employee
## 10347 Employee
## 10348 Employee
## 10349 Employee
## 10350 Employee
## 10351 Employee
## 10352 Employee
## 10353 Employee
## 10354 Employee
## 10355 Employee
## 10356 President
## 10357 Employee
## 10358 Employee
## 10359 Employee
## 10360 Employee
## 10361 Employee
## 10362 Employee
## 10363 Employee
## 10364 Employee
## 10365 Employee
## 10366 Employee
## 10367 Employee
## 10368 Employee
## 10369 Employee
## 10370 Employee
## 10371 Employee
## 10372 Employee
## 10373 Employee
## 10374 Employee
## 10375 Employee
## 10376 Employee
## 10377 Employee
## 10378 Employee
## 10379 Employee
## 10380 Employee
## 10381 Employee
## 10382 Employee
## 10383 Employee
## 10384 Employee
## 10385 Employee
## 10386 Employee
## 10387 Employee
## 10388 Employee
## 10389 Employee
## 10390 Employee
## 10391 Employee
## 10392 Employee
## 10393 Employee
## 10394 Employee
## 10395 Employee
## 10396 Employee
## 10397 Employee
## 10398 Employee
## 10399 Employee
## 10400 Employee
## 10401 Employee
## 10402 Employee
## 10403 Employee
## 10404 Employee
## 10405 Employee
## 10406 Employee
## 10407 Employee
## 10408 Employee
## 10409 Employee
## 10410 Employee
## 10411 Employee
## 10412 Employee
## 10413 Employee
## 10414 Employee
## 10415 Employee
## 10416 Employee
## 10417 Employee
## 10418 Employee
## 10419 Employee
## 10420 Employee
## 10421 Employee
## 10422 Employee
## 10423 Employee
## 10424 Employee
## 10425 Employee
## 10426 Employee
## 10427 Employee
## 10428 Employee
## 10429 Employee
## 10430 Employee
## 10431 Managing Director
## 10432 Managing Director
## 10433 Managing Director
## 10434 Managing Director
## 10435 Managing Director
## 10436 Managing Director
## 10437 Managing Director
## 10438 Managing Director
## 10439 Managing Director
## 10440 Managing Director
## 10441 Managing Director
## 10442 Managing Director
## 10443 Managing Director
## 10444 Managing Director
## 10445 Managing Director
## 10446 Managing Director
## 10447 Managing Director
## 10448 Managing Director
## 10449 Managing Director
## 10450 Managing Director
## 10451 Managing Director
## 10452 Managing Director
## 10453 Managing Director
## 10454 Managing Director
## 10455 Managing Director
## 10456 Employee
## 10457 Employee
## 10458 Managing Director
## 10459 Managing Director
## 10460 Managing Director
## 10461 Managing Director
## 10462 Managing Director
## 10463 Managing Director
## 10464 Managing Director
## 10465 Managing Director
## 10466 Managing Director
## 10467 Managing Director
## 10468 Managing Director
## 10469 Managing Director
## 10470 Managing Director
## 10471 Managing Director
## 10472 Managing Director
## 10473 Managing Director
## 10474 Managing Director
## 10475 Managing Director
## 10476 Managing Director
## 10477 Managing Director
## 10478 Managing Director
## 10479 Vice President
## 10480 Vice President
## 10481 Vice President
## 10482 Vice President
## 10483 Vice President
## 10484 Vice President
## 10485 Vice President
## 10486 Managing Director
## 10487 Managing Director
## 10488 Managing Director
## 10489 Managing Director
## 10490 Managing Director
## 10491 Managing Director
## 10492 Managing Director
## 10493 Managing Director
## 10494 Managing Director
## 10495 Managing Director
## 10496 Managing Director
## 10497 Managing Director
## 10498 Managing Director
## 10499 Managing Director
## 10500 Managing Director
## 10501 Managing Director
## 10502 Managing Director
## 10503 Managing Director
## 10504 Managing Director
## 10505 Managing Director
## 10506 Managing Director
## 10507 Managing Director
## 10508 Managing Director
## 10509 Managing Director
## 10510 Managing Director
## 10511 Managing Director
## 10512 Managing Director
## 10513 Managing Director
## 10514 Managing Director
## 10515 Managing Director
## 10516 Managing Director
## 10517 Managing Director
## 10518 Managing Director
## 10519 Managing Director
## 10520 Managing Director
## 10521 Managing Director
## 10522 Managing Director
## 10523 Managing Director
## 10524 Managing Director
## 10525 Managing Director
## 10526 Managing Director
## 10527 Managing Director
## 10528 Managing Director
## 10529 Managing Director
## 10530 Managing Director
## 10531 Managing Director
## 10532 Managing Director
## 10533 Managing Director
## 10534 Managing Director
## 10535 Managing Director
## 10536 Managing Director
## 10537 Managing Director
## 10538 Managing Director
## 10539 Managing Director
## 10540 Managing Director
## 10541 Managing Director
## 10542 Employee
## 10543 Employee
## 10544 Employee
## 10545 Employee
## 10546 Employee
## 10547 Employee
## 10548 Employee
## 10549 Employee
## 10550 Employee
## 10551 Employee
## 10552 Employee
## 10553 Employee
## 10554 Employee
## 10555 Employee
## 10556 Employee
## 10557 Employee
## 10558 Employee
## 10559 Employee
## 10560 Employee
## 10561 Employee
## 10562 Employee
## 10563 Employee
## 10564 Employee
## 10565 Employee
## 10566 Employee
## 10567 Employee
## 10568 Employee
## 10569 Employee
## 10570 Employee
## 10571 Employee
## 10572 Employee
## 10573 Employee
## 10574 Employee
## 10575 Employee
## 10576 Employee
## 10577 Employee
## 10578 Employee
## 10579 Employee
## 10580 Employee
## 10581 Employee
## 10582 Employee
## 10583 Employee
## 10584 Employee
## 10585 Employee
## 10586 Employee
## 10587 Employee
## 10588 Employee
## 10589 Employee
## 10590 Employee
## 10591 Employee
## 10592 Employee
## 10593 Employee
## 10594 Employee
## 10595 Employee
## 10596 Employee
## 10597 Employee
## 10598 Employee
## 10599 Employee
## 10600 Employee
## 10601 Employee
## 10602 Employee
## 10603 Employee
## 10604 Employee
## 10605 Employee
## 10606 Employee
## 10607 Employee
## 10608 Employee
## 10609 Employee
## 10610 Employee
## 10611 Employee
## 10612 Employee
## 10613 Employee
## 10614 Employee
## 10615 Employee
## 10616 Employee
## 10617 Employee
## 10618 Employee
## 10619 Employee
## 10620 Employee
## 10621 Employee
## 10622 Employee
## 10623 Employee
## 10624 Employee
## 10625 Employee
## 10626 Employee
## 10627 Employee
## 10628 Employee
## 10629 Employee
## 10630 Employee
## 10631 Employee
## 10632 Employee
## 10633 Employee
## 10634 Employee
## 10635 Employee
## 10636 Employee
## 10637 Employee
## 10638 Employee
## 10639 Employee
## 10640 Employee
## 10641 Employee
## 10642 Employee
## 10643 Employee
## 10644 Employee
## 10645 Employee
## 10646 Employee
## 10647 Employee
## 10648 Employee
## 10649 Employee
## 10650 Employee
## 10651 Employee
## 10652 Employee
## 10653 Employee
## 10654 Employee
## 10655 Employee
## 10656 Employee
## 10657 Employee
## 10658 Employee
## 10659 Employee
## 10660 Employee
## 10661 Employee
## 10662 Employee
## 10663 Employee
## 10664 Employee
## 10665 Employee
## 10666 Employee
## 10667 Employee
## 10668 Employee
## 10669 Employee
## 10670 Employee
## 10671 Employee
## 10672 Employee
## 10673 Employee
## 10674 Employee
## 10675 Employee
## 10676 Employee
## 10677 Employee
## 10678 Employee
## 10679 Employee
## 10680 Employee
## 10681 Employee
## 10682 Employee
## 10683 Employee
## 10684 Employee
## 10685 Employee
## 10686 Employee
## 10687 Employee
## 10688 Employee
## 10689 Employee
## 10690 Employee
## 10691 Employee
## 10692 Employee
## 10693 Employee
## 10694 Employee
## 10695 Employee
## 10696 Employee
## 10697 Managing Director
## 10698 Managing Director
## 10699 Managing Director
## 10700 Managing Director
## 10701 Managing Director
## 10702 Managing Director
## 10703 Managing Director
## 10704 Managing Director
## 10705 Managing Director
## 10706 Managing Director
## 10707 Managing Director
## 10708 Managing Director
## 10709 Managing Director
## 10710 Managing Director
## 10711 Managing Director
## 10712 Managing Director
## 10713 Managing Director
## 10714 Managing Director
## 10715 Managing Director
## 10716 Managing Director
## 10717 Managing Director
## 10718 Managing Director
## 10719 Managing Director
## 10720 Managing Director
## 10721 Managing Director
## 10722 Managing Director
## 10723 Managing Director
## 10724 Managing Director
## 10725 Managing Director
## 10726 Managing Director
## 10727 Managing Director
## 10728 Employee
## 10729 Employee
## 10730 Employee
## 10731 Employee
## 10732 Employee
## 10733 Employee
## 10734 Employee
## 10735 Employee
## 10736 Employee
## 10737 Employee
## 10738 Employee
## 10739 Employee
## 10740 Employee
## 10741 Employee
## 10742 Employee
## 10743 Employee
## 10744 Employee
## 10745 Employee
## 10746 Employee
## 10747 Employee
## 10748 Employee
## 10749 Employee
## 10750 Employee
## 10751 Employee
## 10752 Employee
## 10753 Employee
## 10754 Employee
## 10755 Employee
## 10756 Employee
## 10757 Employee
## 10758 Employee
## 10759 Employee
## 10760 Employee
## 10761 Employee
## 10762 Employee
## 10763 Employee
## 10764 Employee
## 10765 Employee
## 10766 Employee
## 10767 Employee
## 10768 Employee
## 10769 Employee
## 10770 Employee
## 10771 Employee
## 10772 Employee
## 10773 Employee
## 10774 Employee
## 10775 Employee
## 10776 Employee
## 10777 Employee
## 10778 Employee
## 10779 Employee
## 10780 Employee
## 10781 Employee
## 10782 Employee
## 10783 Employee
## 10784 Employee
## 10785 Employee
## 10786 Employee
## 10787 Employee
## 10788 Employee
## 10789 Employee
## 10790 Employee
## 10791 Employee
## 10792 Employee
## 10793 Employee
## 10794 Employee
## 10795 Employee
## 10796 Employee
## 10797 Employee
## 10798 Employee
## 10799 Employee
## 10800 Employee
## 10801 Employee
## 10802 Employee
## 10803 Employee
## 10804 Employee
## 10805 Employee
## 10806 Employee
## 10807 Employee
## 10808 Employee
## 10809 Employee
## 10810 Employee
## 10811 Employee
## 10812 Employee
## 10813 Employee
## 10814 Employee
## 10815 Employee
## 10816 Employee
## 10817 Employee
## 10818 Employee
## 10819 Employee
## 10820 Employee
## 10821 Employee
## 10822 Employee
## 10823 Employee
## 10824 Employee
## 10825 Employee
## 10826 Employee
## 10827 Employee
## 10828 Employee
## 10829 Employee
## 10830 Employee
## 10831 Employee
## 10832 Employee
## 10833 Employee
## 10834 Employee
## 10835 Employee
## 10836 Employee
## 10837 Employee
## 10838 Employee
## 10839 Employee
## 10840 Employee
## 10841 Employee
## 10842 Employee
## 10843 Employee
## 10844 Employee
## 10845 Employee
## 10846 Employee
## 10847 Employee
## 10848 Employee
## 10849 Employee
## 10850 Employee
## 10851 Employee
## 10852 Employee
## 10853 Employee
## 10854 Employee
## 10855 Employee
## 10856 Employee
## 10857 Employee
## 10858 Employee
## 10859 Employee
## 10860 Employee
## 10861 Employee
## 10862 Employee
## 10863 Employee
## 10864 Employee
## 10865 Employee
## 10866 Employee
## 10867 Employee
## 10868 Employee
## 10869 Employee
## 10870 Employee
## 10871 Employee
## 10872 Employee
## 10873 Employee
## 10874 Employee
## 10875 Employee
## 10876 Employee
## 10877 Employee
## 10878 Employee
## 10879 Employee
## 10880 Employee
## 10881 Employee
## 10882 Employee
## 10883 Employee
## 10884 Employee
## 10885 Employee
## 10886 Employee
## 10887 Employee
## 10888 Employee
## 10889 Employee
## 10890 Employee
## 10891 Employee
## 10892 Employee
## 10893 Employee
## 10894 Employee
## 10895 Employee
## 10896 Employee
## 10897 Employee
## 10898 Employee
## 10899 Employee
## 10900 Employee
## 10901 Employee
## 10902 Employee
## 10903 Employee
## 10904 Employee
## 10905 Employee
## 10906 Employee
## 10907 Employee
## 10908 Employee
## 10909 Employee
## 10910 Employee
## 10911 Employee
## 10912 Employee
## 10913 Employee
## 10914 Employee
## 10915 Employee
## 10916 Employee
## 10917 Employee
## 10918 Employee
## 10919 Employee
## 10920 Employee
## 10921 Employee
## 10922 Employee
## 10923 Employee
## 10924 Employee
## 10925 Employee
## 10926 Employee
## 10927 Employee
## 10928 Employee
## 10929 Employee
## 10930 Employee
## 10931 Employee
## 10932 Employee
## 10933 Employee
## 10934 Employee
## 10935 Employee
## 10936 Employee
## 10937 Employee
## 10938 Employee
## 10939 Employee
## 10940 Employee
## 10941 Employee
## 10942 Employee
## 10943 Employee
## 10944 Employee
## 10945 Employee
## 10946 Employee
## 10947 Employee
## 10948 Employee
## 10949 Employee
## 10950 Employee
## 10951 Employee
## 10952 Employee
## 10953 Employee
## 10954 Employee
## 10955 Employee
## 10956 Employee
## 10957 Employee
## 10958 Employee
## 10959 Employee
## 10960 Employee
## 10961 Employee
## 10962 Employee
## 10963 Employee
## 10964 Employee
## 10965 Employee
## 10966 Employee
## 10967 Employee
## 10968 Employee
## 10969 Employee
## 10970 Employee
## 10971 Employee
## 10972 Employee
## 10973 Employee
## 10974 Employee
## 10975 Employee
## 10976 Employee
## 10977 Employee
## 10978 Employee
## 10979 Employee
## 10980 Employee
## 10981 Employee
## 10982 Employee
## 10983 Employee
## 10984 Employee
## 10985 Employee
## 10986 Employee
## 10987 Employee
## 10988 Employee
## 10989 Employee
## 10990 Employee
## 10991 Employee
## 10992 Employee
## 10993 Employee
## 10994 Employee
## 10995 Employee
## 10996 Employee
## 10997 Employee
## 10998 Employee
## 10999 Employee
## 11000 Employee
## 11001 Employee
## 11002 Employee
## 11003 Employee
## 11004 Employee
## 11005 Employee
## 11006 Employee
## 11007 Employee
## 11008 Employee
## 11009 Employee
## 11010 Employee
## 11011 Employee
## 11012 Employee
## 11013 Employee
## 11014 Employee
## 11015 Employee
## 11016 Employee
## 11017 Employee
## 11018 Employee
## 11019 Employee
## 11020 Employee
## 11021 Employee
## 11022 Employee
## 11023 Employee
## 11024 Employee
## 11025 Employee
## 11026 Employee
## 11027 Employee
## 11028 Employee
## 11029 Employee
## 11030 Employee
## 11031 Employee
## 11032 Employee
## 11033 Employee
## 11034 Employee
## 11035 Employee
## 11036 Employee
## 11037 Employee
## 11038 Employee
## 11039 Employee
## 11040 Employee
## 11041 Employee
## 11042 Employee
## 11043 Employee
## 11044 Employee
## 11045 Employee
## 11046 Employee
## 11047 Employee
## 11048 Employee
## 11049 Employee
## 11050 Managing Director
## 11051 Managing Director
## 11052 Managing Director
## 11053 Managing Director
## 11054 Managing Director
## 11055 Managing Director
## 11056 Managing Director
## 11057 Managing Director
## 11058 Managing Director
## 11059 Managing Director
## 11060 Managing Director
## 11061 Managing Director
## 11062 Managing Director
## 11063 Managing Director
## 11064 Managing Director
## 11065 Managing Director
## 11066 Managing Director
## 11067 Managing Director
## 11068 Managing Director
## 11069 Managing Director
## 11070 Managing Director
## 11071 Managing Director
## 11072 Managing Director
## 11073 Managing Director
## 11074 Managing Director
## 11075 Managing Director
## 11076 Managing Director
## 11077 Managing Director
## 11078 Managing Director
## 11079 Managing Director
## 11080 Managing Director
## 11081 Managing Director
## 11082 Managing Director
## 11083 Managing Director
## 11084 Managing Director
## 11085 Managing Director
## 11086 Managing Director
## 11087 President
## 11088 Employee
## 11089 Employee
## 11090 Employee
## 11091 Employee
## 11092 Employee
## 11093 Employee
## 11094 Managing Director
## 11095 Managing Director
## 11096 Managing Director
## 11097 Managing Director
## 11098 Managing Director
## 11099 Managing Director
## 11100 President
## 11101 President
## 11102 President
## 11103 President
## 11104 President
## 11105 President
## 11106 Vice President
## 11107 Vice President
## 11108 Employee
## 11109 Employee
## 11110 Vice President
## 11111 Vice President
## 11112 President
## 11113 President
## 11114 President
## 11115 President
## 11116 President
## 11117 President
## 11118 President
## 11119 President
## 11120 President
## 11121 President
## 11122 President
## 11123 President
## 11124 President
## 11125 President
## 11126 Managing Director
## 11127 Managing Director
## 11128 Managing Director
## 11129 Managing Director
## 11130 Managing Director
## 11131 Vice President
## 11132 Vice President
## 11133 Vice President
## 11134 Vice President
## 11135 President
## 11136 President
## 11137 President
## 11138 President
## 11139 President
## 11140 President
## 11141 President
## 11142 President
## 11143 President
## 11144 President
## 11145 Vice President
## 11146 Vice President
## 11147 Vice President
## 11148 Vice President
## 11149 Vice President
## 11150 Vice President
## 11151 Vice President
## 11152 Vice President
## 11153 President
## 11154 President
## 11155 President
## 11156 Vice President
## 11157 Vice President
## 11158 Vice President
## 11159 Vice President
## 11160 Vice President
## 11161 President
## 11162 President
## 11163 President
## 11164 Vice President
## 11165 Vice President
## 11166 Vice President
## 11167 Vice President
## 11168 Vice President
## 11169 Vice President
## 11170 Vice President
## 11171 Vice President
## 11172 President
## 11173 Vice President
## 11174 Vice President
## 11175 Vice President
## 11176 Vice President
## 11177 Vice President
## 11178 Vice President
## 11179 Vice President
## 11180 Vice President
## 11181 Vice President
## 11182 Vice President
## 11183 Vice President
## 11184 Vice President
## 11185 Vice President
## 11186 Vice President
## 11187 Vice President
## 11188 Vice President
## 11189 Vice President
## 11190 Managing Director
## 11191 Vice President
## 11192 Vice President
## 11193 Vice President
## 11194 Vice President
## 11195 Vice President
## 11196 Vice President
## 11197 Vice President
## 11198 Vice President
## 11199 Vice President
## 11200 Vice President
## 11201 Vice President
## 11202 Vice President
## 11203 Vice President
## 11204 Vice President
## 11205 Vice President
## 11206 Vice President
## 11207 Vice President
## 11208 Vice President
## 11209 Vice President
## 11210 Vice President
## 11211 Vice President
## 11212 Vice President
## 11213 Vice President
## 11214 Vice President
## 11215 Vice President
## 11216 Vice President
## 11217 Vice President
## 11218 Vice President
## 11219 Vice President
## 11220 Vice President
## 11221 Vice President
## 11222 Vice President
## 11223 Vice President
## 11224 Vice President
## 11225 Vice President
## 11226 Vice President
## 11227 Vice President
## 11228 Vice President
## 11229 Vice President
## 11230 Vice President
## 11231 Vice President
## 11232 Vice President
## 11233 Vice President
## 11234 Vice President
## 11235 Vice President
## 11236 Vice President
## 11237 Vice President
## 11238 Vice President
## 11239 Vice President
## 11240 Vice President
## 11241 Vice President
## 11242 Vice President
## 11243 Vice President
## 11244 Vice President
## 11245 Vice President
## 11246 Vice President
## 11247 Vice President
## 11248 Vice President
## 11249 Vice President
## 11250 Vice President
## 11251 Vice President
## 11252 Vice President
## 11253 Vice President
## 11254 Vice President
## 11255 Vice President
## 11256 Vice President
## 11257 Vice President
## 11258 Vice President
## 11259 Vice President
## 11260 Vice President
## 11261 Vice President
## 11262 President
## 11263 President
## 11264 President
## 11265 President
## 11266 President
## 11267 President
## 11268 President
## 11269 President
## 11270 Vice President
## 11271 Vice President
## 11272 Vice President
## 11273 Vice President
## 11274 Vice President
## 11275 Vice President
## 11276 Vice President
## 11277 Vice President
## 11278 Vice President
## 11279 Vice President
## 11280 Vice President
## 11281 Vice President
## 11282 Vice President
## 11283 Vice President
## 11284 Vice President
## 11285 Vice President
## 11286 Vice President
## 11287 Vice President
## 11288 Vice President
## 11289 Vice President
## 11290 Vice President
## 11291 Vice President
## 11292 Vice President
## 11293 Vice President
## 11294 Vice President
## 11295 Vice President
## 11296 Vice President
## 11297 Vice President
## 11298 Vice President
## 11299 Vice President
## 11300 Vice President
## 11301 Vice President
## 11302 Vice President
## 11303 Vice President
## 11304 Vice President
## 11305 Vice President
## 11306 Vice President
## 11307 Vice President
## 11308 Vice President
## 11309 Vice President
## 11310 Vice President
## 11311 Vice President
## 11312 Vice President
## 11313 Vice President
## 11314 Vice President
## 11315 Vice President
## 11316 Vice President
## 11317 Vice President
## 11318 Vice President
## 11319 Vice President
## 11320 Vice President
## 11321 Vice President
## 11322 Vice President
## 11323 Vice President
## 11324 Vice President
## 11325 President
## 11326 President
## 11327 President
## 11328 Employee
## 11329 Employee
## 11330 President
## 11331 President
## 11332 President
## 11333 President
## 11334 President
## 11335 President
## 11336 President
## 11337 Vice President
## 11338 Vice President
## 11339 Vice President
## 11340 Vice President
## 11341 Vice President
## 11342 Vice President
## 11343 Vice President
## 11344 Vice President
## 11345 Vice President
## 11346 Vice President
## 11347 Vice President
## 11348 Vice President
## 11349 Vice President
## 11350 Vice President
## 11351 Vice President
## 11352 Vice President
## 11353 Vice President
## 11354 Vice President
## 11355 Vice President
## 11356 Vice President
## 11357 Vice President
## 11358 Vice President
## 11359 Vice President
## 11360 Vice President
## 11361 Vice President
## 11362 Vice President
## 11363 Vice President
## 11364 Vice President
## 11365 Vice President
## 11366 Vice President
## 11367 Vice President
## 11368 Vice President
## 11369 Vice President
## 11370 Vice President
## 11371 Vice President
## 11372 Vice President
## 11373 Vice President
## 11374 Vice President
## 11375 Vice President
## 11376 Vice President
## 11377 Vice President
## 11378 Vice President
## 11379 Vice President
## 11380 Vice President
## 11381 Vice President
## 11382 Vice President
## 11383 Vice President
## 11384 Vice President
## 11385 Vice President
## 11386 Vice President
## 11387 Vice President
## 11388 Vice President
## 11389 Vice President
## 11390 Vice President
## 11391 Vice President
## 11392 Vice President
## 11393 Vice President
## 11394 Vice President
## 11395 Vice President
## 11396 Vice President
## 11397 Vice President
## 11398 Vice President
## 11399 Vice President
## 11400 Vice President
## 11401 Vice President
## 11402 Vice President
## 11403 Vice President
## 11404 Vice President
## 11405 Vice President
## 11406 Vice President
## 11407 Vice President
## 11408 Vice President
## 11409 Employee
## 11410 President
## 11411 Vice President
## 11412 Vice President
## 11413 Vice President
## 11414 Vice President
## 11415 Vice President
## 11416 Vice President
## 11417 Vice President
## 11418 Employee
## 11419 Employee
## 11420 Employee
## 11421 Employee
## 11422 President
## 11423 Employee
## 11424 President
## 11425 Vice President
## 11426 Vice President
## 11427 Vice President
## 11428 Vice President
## 11429 Vice President
## 11430 Vice President
## 11431 Vice President
## 11432 Employee
## 11433 Employee
## 11434 Employee
## 11435 Vice President
## 11436 President
## 11437 President
## 11438 President
## 11439 President
## 11440 President
## 11441 President
## 11442 President
## 11443 President
## 11444 President
## 11445 President
## 11446 President
## 11447 President
## 11448 President
## 11449 President
## 11450 President
## 11451 President
## 11452 President
## 11453 President
## 11454 President
## 11455 President
## 11456 President
## 11457 President
## 11458 President
## 11459 President
## 11460 President
## 11461 President
## 11462 President
## 11463 President
## 11464 President
## 11465 President
## 11466 President
## 11467 President
## 11468 President
## 11469 President
## 11470 President
## 11471 President
## 11472 Employee
## 11473 Employee
## 11474 Employee
## 11475 Employee
## 11476 Employee
## 11477 Employee
## 11478 Employee
## 11479 Employee
## 11480 Employee
## 11481 Employee
## 11482 Employee
## 11483 Employee
## 11484 Vice President
## 11485 Employee
## 11486 Employee
## 11487 Employee
## 11488 Employee
## 11489 Employee
## 11490 Employee
## 11491 Employee
## 11492 Employee
## 11493 Employee
## 11494 Employee
## 11495 Employee
## 11496 Employee
## 11497 Employee
## 11498 Employee
## 11499 Employee
## 11500 Employee
## 11501 Employee
## 11502 Employee
## 11503 Employee
## 11504 Employee
## 11505 Employee
## 11506 Employee
## 11507 Employee
## 11508 Employee
## 11509 Employee
## 11510 Employee
## 11511 Employee
## 11512 Employee
## 11513 Employee
## 11514 Employee
## 11515 Employee
## 11516 Employee
## 11517 Employee
## 11518 Employee
## 11519 Employee
## 11520 Employee
## 11521 Employee
## 11522 Employee
## 11523 Employee
## 11524 Employee
## 11525 Employee
## 11526 Employee
## 11527 Employee
## 11528 Employee
## 11529 Employee
## 11530 Employee
## 11531 Employee
## 11532 Employee
## 11533 Employee
## 11534 Employee
## 11535 Employee
## 11536 Employee
## 11537 Employee
## 11538 Employee
## 11539 Employee
## 11540 Employee
## 11541 Employee
## 11542 Employee
## 11543 Employee
## 11544 Employee
## 11545 Employee
## 11546 Employee
## 11547 Employee
## 11548 Employee
## 11549 Employee
## 11550 Employee
## 11551 Employee
## 11552 Employee
## 11553 Employee
## 11554 Employee
## 11555 Employee
## 11556 Employee
## 11557 Employee
## 11558 Employee
## 11559 Employee
## 11560 Employee
## 11561 Employee
## 11562 Employee
## 11563 Employee
## 11564 Employee
## 11565 Employee
## 11566 Employee
## 11567 Employee
## 11568 Employee
## 11569 Employee
## 11570 Employee
## 11571 Employee
## 11572 Employee
## 11573 Employee
## 11574 Employee
## 11575 Employee
## 11576 Employee
## 11577 Employee
## 11578 Employee
## 11579 Employee
## 11580 Employee
## 11581 Employee
## 11582 Employee
## 11583 Employee
## 11584 Employee
## 11585 Employee
## 11586 Employee
## 11587 Employee
## 11588 Employee
## 11589 Employee
## 11590 Employee
## 11591 Employee
## 11592 Employee
## 11593 Employee
## 11594 Employee
## 11595 Employee
## 11596 Employee
## 11597 Employee
## 11598 Employee
## 11599 Employee
## 11600 Employee
## 11601 Employee
## 11602 Employee
## 11603 Employee
## 11604 Employee
## 11605 Employee
## 11606 Employee
## 11607 Employee
## 11608 Employee
## 11609 Employee
## 11610 Employee
## 11611 Employee
## 11612 Employee
## 11613 Employee
## 11614 Employee
## 11615 Employee
## 11616 Employee
## 11617 Employee
## 11618 Employee
## 11619 Employee
## 11620 Employee
## 11621 Employee
## 11622 Employee
## 11623 Employee
## 11624 Employee
## 11625 Employee
## 11626 Employee
## 11627 Employee
## 11628 Employee
## 11629 Employee
## 11630 Employee
## 11631 Employee
## 11632 Employee
## 11633 Employee
## 11634 Employee
## 11635 Employee
## 11636 Employee
## 11637 Employee
## 11638 Employee
## 11639 Employee
## 11640 Employee
## 11641 Employee
## 11642 Employee
## 11643 Employee
## 11644 Employee
## 11645 Employee
## 11646 Employee
## 11647 Employee
## 11648 Employee
## 11649 Employee
## 11650 Employee
## 11651 Employee
## 11652 Employee
## 11653 Employee
## 11654 Employee
## 11655 Employee
## 11656 Employee
## 11657 Employee
## 11658 Employee
## 11659 Employee
## 11660 Employee
## 11661 Employee
## 11662 Employee
## 11663 Employee
## 11664 Employee
## 11665 Employee
## 11666 Employee
## 11667 Employee
## 11668 Employee
## 11669 Employee
## 11670 Employee
## 11671 Employee
## 11672 Employee
## 11673 Employee
## 11674 Employee
## 11675 Employee
## 11676 Employee
## 11677 Employee
## 11678 Employee
## 11679 Employee
## 11680 Employee
## 11681 Employee
## 11682 Employee
## 11683 Employee
## 11684 Employee
## 11685 Employee
## 11686 Employee
## 11687 Employee
## 11688 Employee
## 11689 Employee
## 11690 Employee
## 11691 Employee
## 11692 Employee
## 11693 Employee
## 11694 Employee
## 11695 Employee
## 11696 Employee
## 11697 Employee
## 11698 Employee
## 11699 Employee
## 11700 Employee
## 11701 Employee
## 11702 Employee
## 11703 Employee
## 11704 Employee
## 11705 Employee
## 11706 Employee
## 11707 Employee
## 11708 Employee
## 11709 Employee
## 11710 Employee
## 11711 Employee
## 11712 Employee
## 11713 Employee
## 11714 Employee
## 11715 Employee
## 11716 Employee
## 11717 Employee
## 11718 Employee
## 11719 Employee
## 11720 Employee
## 11721 Employee
## 11722 Employee
## 11723 Employee
## 11724 Employee
## 11725 Employee
## 11726 Employee
## 11727 Employee
## 11728 Employee
## 11729 Employee
## 11730 Employee
## 11731 Employee
## 11732 Employee
## 11733 Employee
## 11734 Employee
## 11735 Employee
## 11736 Employee
## 11737 Employee
## 11738 Employee
## 11739 Employee
## 11740 Employee
## 11741 Employee
## 11742 Employee
## 11743 Employee
## 11744 Employee
## 11745 Employee
## 11746 Employee
## 11747 Employee
## 11748 Employee
## 11749 Employee
## 11750 Employee
## 11751 Employee
## 11752 Employee
## 11753 Employee
## 11754 Employee
## 11755 Employee
## 11756 Employee
## 11757 Employee
## 11758 Employee
## 11759 Employee
## 11760 Employee
## 11761 Employee
## 11762 Employee
## 11763 Employee
## 11764 Employee
## 11765 Employee
## 11766 Employee
## 11767 Employee
## 11768 Employee
## 11769 Employee
## 11770 Employee
## 11771 Employee
## 11772 Employee
## 11773 Employee
## 11774 Employee
## 11775 Employee
## 11776 Employee
## 11777 Employee
## 11778 Employee
## 11779 Employee
## 11780 Employee
## 11781 Employee
## 11782 Employee
## 11783 Employee
## 11784 Employee
## 11785 Employee
## 11786 Employee
## 11787 Employee
## 11788 Employee
## 11789 Employee
## 11790 Employee
## 11791 Vice President
## 11792 Vice President
## 11793 Vice President
## 11794 Vice President
## 11795 Vice President
## 11796 Vice President
## 11797 Vice President
## 11798 Vice President
## 11799 Vice President
## 11800 Vice President
## 11801 Vice President
## 11802 Vice President
## 11803 Vice President
## 11804 Vice President
## 11805 Vice President
## 11806 Vice President
## 11807 Vice President
## 11808 Vice President
## 11809 Vice President
## 11810 Vice President
## 11811 Vice President
## 11812 Vice President
## 11813 Vice President
## 11814 Vice President
## 11815 Vice President
## 11816 Vice President
## 11817 Vice President
## 11818 Vice President
## 11819 Vice President
## 11820 Vice President
## 11821 Vice President
## 11822 Vice President
## 11823 Vice President
## 11824 Vice President
## 11825 Vice President
## 11826 Vice President
## 11827 Vice President
## 11828 Vice President
## 11829 Vice President
## 11830 Vice President
## 11831 Vice President
## 11832 Vice President
## 11833 Vice President
## 11834 Vice President
## 11835 Vice President
## 11836 Vice President
## 11837 Vice President
## 11838 Vice President
## 11839 Vice President
## 11840 Vice President
## 11841 Vice President
## 11842 Vice President
## 11843 Vice President
## 11844 Vice President
## 11845 Vice President
## 11846 Vice President
## 11847 Vice President
## 11848 Vice President
## 11849 Vice President
## 11850 Vice President
## 11851 Vice President
## 11852 Vice President
## 11853 Vice President
## 11854 Vice President
## 11855 Vice President
## 11856 Vice President
## 11857 Vice President
## 11858 Vice President
## 11859 Vice President
## 11860 Vice President
## 11861 Vice President
## 11862 Vice President
## 11863 Vice President
## 11864 Vice President
## 11865 Vice President
## 11866 Vice President
## 11867 Vice President
## 11868 Vice President
## 11869 Vice President
## 11870 Vice President
## 11871 Vice President
## 11872 Vice President
## 11873 Vice President
## 11874 Vice President
## 11875 Vice President
## 11876 Employee
## 11877 Employee
## 11878 Employee
## 11879 Employee
## 11880 Employee
## 11881 Employee
## 11882 Employee
## 11883 Employee
## 11884 Employee
## 11885 Employee
## 11886 Employee
## 11887 Vice President
## 11888 Vice President
## 11889 Vice President
## 11890 Vice President
## 11891 Vice President
## 11892 Vice President
## 11893 Vice President
## 11894 Vice President
## 11895 Vice President
## 11896 Vice President
## 11897 Vice President
## 11898 Vice President
## 11899 Vice President
## 11900 Vice President
## 11901 Vice President
## 11902 Vice President
## 11903 Vice President
## 11904 Vice President
## 11905 Vice President
## 11906 Vice President
## 11907 Vice President
## 11908 Vice President
## 11909 Vice President
## 11910 Vice President
## 11911 Vice President
## 11912 Vice President
## 11913 Vice President
## 11914 Vice President
## 11915 Vice President
## 11916 Vice President
## 11917 Employee
## 11918 Vice President
## 11919 Vice President
## 11920 Vice President
## 11921 Vice President
## 11922 Vice President
## 11923 Vice President
## 11924 Vice President
## 11925 Vice President
## 11926 Vice President
## 11927 Vice President
## 11928 Vice President
## 11929 Vice President
## 11930 Vice President
## 11931 Vice President
## 11932 Vice President
## 11933 Vice President
## 11934 Vice President
## 11935 Vice President
## 11936 Vice President
## 11937 Vice President
## 11938 Employee
## 11939 Employee
## 11940 Employee
## 11941 Employee
## 11942 Employee
## 11943 Employee
## 11944 Employee
## 11945 Employee
## 11946 Employee
## 11947 Employee
## 11948 Manager
## 11949 Manager
## 11950 Manager
## 11951 Manager
## 11952 Manager
## 11953 Manager
## 11954 Manager
## 11955 Manager
## 11956 Manager
## 11957 Manager
## 11958 Manager
## 11959 Manager
## 11960 Manager
## 11961 Manager
## 11962 Manager
## 11963 Manager
## 11964 Manager
## 11965 Manager
## 11966 Manager
## 11967 Manager
## 11968 Manager
## 11969 Manager
## 11970 Manager
## 11971 Manager
## 11972 Manager
## 11973 Manager
## 11974 Manager
## 11975 Manager
## 11976 Manager
## 11977 Manager
## 11978 Manager
## 11979 Manager
## 11980 Manager
## 11981 Manager
## 11982 Manager
## 11983 Manager
## 11984 Manager
## 11985 Manager
## 11986 Manager
## 11987 Manager
## 11988 Manager
## 11989 Manager
## 11990 Manager
## 11991 Manager
## 11992 Manager
## 11993 Manager
## 11994 Manager
## 11995 Manager
## 11996 Manager
## 11997 Manager
## 11998 Manager
## 11999 Manager
## 12000 Manager
## 12001 Manager
## 12002 Manager
## 12003 Manager
## 12004 Manager
## 12005 Manager
## 12006 Manager
## 12007 Manager
## 12008 Manager
## 12009 Manager
## 12010 Manager
## 12011 Manager
## 12012 Manager
## 12013 Manager
## 12014 Manager
## 12015 Manager
## 12016 Manager
## 12017 Manager
## 12018 Manager
## 12019 Manager
## 12020 Manager
## 12021 Manager
## 12022 Manager
## 12023 Manager
## 12024 Manager
## 12025 Manager
## 12026 Manager
## 12027 Manager
## 12028 Manager
## 12029 Manager
## 12030 Manager
## 12031 Manager
## 12032 Manager
## 12033 Manager
## 12034 Manager
## 12035 Manager
## 12036 Manager
## 12037 Manager
## 12038 Manager
## 12039 Manager
## 12040 Manager
## 12041 Manager
## 12042 Manager
## 12043 Manager
## 12044 Manager
## 12045 Manager
## 12046 Manager
## 12047 Manager
## 12048 Manager
## 12049 Manager
## 12050 Manager
## 12051 Manager
## 12052 Manager
## 12053 Manager
## 12054 Manager
## 12055 Manager
## 12056 Manager
## 12057 Manager
## 12058 Manager
## 12059 Manager
## 12060 Manager
## 12061 Manager
## 12062 Manager
## 12063 Manager
## 12064 Manager
## 12065 Manager
## 12066 Manager
## 12067 Manager
## 12068 Manager
## 12069 Manager
## 12070 Manager
## 12071 Manager
## 12072 Manager
## 12073 Manager
## 12074 Manager
## 12075 Manager
## 12076 Manager
## 12077 Manager
## 12078 Manager
## 12079 Manager
## 12080 Manager
## 12081 Manager
## 12082 Manager
## 12083 Manager
## 12084 Manager
## 12085 Manager
## 12086 Manager
## 12087 Manager
## 12088 Manager
## 12089 Manager
## 12090 Manager
## 12091 Manager
## 12092 Manager
## 12093 Manager
## 12094 Manager
## 12095 Manager
## 12096 Manager
## 12097 Manager
## 12098 Manager
## 12099 Manager
## 12100 Manager
## 12101 Manager
## 12102 Manager
## 12103 Manager
## 12104 Manager
## 12105 Manager
## 12106 Manager
## 12107 Manager
## 12108 Manager
## 12109 Manager
## 12110 Manager
## 12111 Manager
## 12112 Manager
## 12113 Manager
## 12114 Manager
## 12115 Manager
## 12116 Manager
## 12117 Manager
## 12118 Manager
## 12119 Manager
## 12120 Manager
## 12121 Manager
## 12122 Manager
## 12123 Manager
## 12124 Manager
## 12125 Manager
## 12126 Manager
## 12127 Manager
## 12128 Manager
## 12129 Manager
## 12130 Manager
## 12131 Manager
## 12132 Manager
## 12133 Manager
## 12134 Manager
## 12135 Manager
## 12136 Manager
## 12137 Manager
## 12138 Manager
## 12139 Manager
## 12140 Manager
## 12141 Manager
## 12142 Manager
## 12143 Manager
## 12144 Manager
## 12145 Manager
## 12146 Manager
## 12147 Manager
## 12148 Manager
## 12149 Manager
## 12150 Manager
## 12151 Manager
## 12152 Manager
## 12153 Manager
## 12154 Manager
## 12155 Manager
## 12156 Manager
## 12157 Manager
## 12158 Manager
## 12159 Manager
## 12160 Manager
## 12161 Manager
## 12162 Manager
## 12163 Manager
## 12164 Manager
## 12165 Manager
## 12166 Manager
## 12167 Manager
## 12168 Manager
## 12169 Manager
## 12170 Manager
## 12171 Manager
## 12172 Manager
## 12173 Manager
## 12174 Manager
## 12175 Manager
## 12176 Manager
## 12177 Manager
## 12178 Manager
## 12179 Manager
## 12180 Manager
## 12181 Manager
## 12182 Manager
## 12183 Manager
## 12184 Manager
## 12185 Manager
## 12186 Manager
## 12187 Manager
## 12188 Manager
## 12189 Manager
## 12190 Manager
## 12191 Manager
## 12192 Manager
## 12193 Manager
## 12194 Manager
## 12195 Manager
## 12196 Manager
## 12197 Manager
## 12198 Manager
## 12199 Manager
## 12200 Manager
## 12201 Manager
## 12202 Manager
## 12203 Manager
## 12204 Manager
## 12205 Manager
## 12206 Manager
## 12207 Manager
## 12208 Manager
## 12209 Manager
## 12210 Manager
## 12211 Manager
## 12212 Manager
## 12213 Manager
## 12214 Manager
## 12215 Manager
## 12216 Manager
## 12217 Manager
## 12218 Manager
## 12219 Manager
## 12220 Manager
## 12221 Manager
## 12222 Manager
## 12223 Manager
## 12224 Manager
## 12225 Manager
## 12226 Manager
## 12227 Manager
## 12228 Manager
## 12229 Manager
## 12230 Manager
## 12231 Manager
## 12232 Manager
## 12233 Manager
## 12234 Manager
## 12235 Manager
## 12236 Manager
## 12237 Manager
## 12238 Manager
## 12239 Manager
## 12240 Manager
## 12241 Manager
## 12242 Manager
## 12243 Manager
## 12244 Manager
## 12245 Manager
## 12246 Manager
## 12247 Manager
## 12248 Manager
## 12249 Manager
## 12250 Manager
## 12251 Manager
## 12252 Manager
## 12253 Manager
## 12254 Manager
## 12255 Manager
## 12256 Manager
## 12257 Manager
## 12258 Manager
## 12259 Manager
## 12260 Manager
## 12261 Manager
## 12262 Manager
## 12263 Manager
## 12264 Manager
## 12265 Manager
## 12266 Manager
## 12267 Manager
## 12268 Manager
## 12269 Manager
## 12270 Manager
## 12271 Manager
## 12272 Manager
## 12273 Manager
## 12274 Manager
## 12275 Manager
## 12276 Manager
## 12277 Manager
## 12278 Manager
## 12279 Manager
## 12280 Manager
## 12281 Manager
## 12282 Manager
## 12283 Manager
## 12284 Manager
## 12285 Manager
## 12286 Manager
## 12287 Manager
## 12288 Manager
## 12289 Manager
## 12290 Manager
## 12291 Manager
## 12292 Manager
## 12293 Manager
## 12294 Manager
## 12295 Manager
## 12296 Manager
## 12297 Manager
## 12298 Manager
## 12299 Manager
## 12300 Manager
## 12301 Manager
## 12302 Manager
## 12303 Manager
## 12304 Manager
## 12305 Manager
## 12306 Manager
## 12307 Manager
## 12308 Manager
## 12309 Manager
## 12310 Manager
## 12311 Manager
## 12312 Manager
## 12313 Manager
## 12314 Manager
## 12315 Manager
## 12316 Manager
## 12317 Manager
## 12318 Manager
## 12319 Manager
## 12320 Manager
## 12321 Manager
## 12322 Manager
## 12323 Manager
## 12324 Manager
## 12325 Manager
## 12326 Manager
## 12327 Manager
## 12328 Manager
## 12329 Manager
## 12330 Manager
## 12331 Manager
## 12332 Manager
## 12333 Manager
## 12334 Manager
## 12335 Manager
## 12336 Manager
## 12337 Manager
## 12338 Manager
## 12339 Manager
## 12340 Manager
## 12341 Manager
## 12342 Manager
## 12343 Manager
## 12344 Manager
## 12345 Manager
## 12346 Manager
## 12347 Manager
## 12348 Manager
## 12349 Manager
## 12350 Manager
## 12351 Manager
## 12352 Manager
## 12353 Manager
## 12354 Manager
## 12355 Manager
## 12356 Manager
## 12357 Manager
## 12358 Manager
## 12359 Manager
## 12360 Manager
## 12361 Manager
## 12362 Manager
## 12363 Manager
## 12364 Manager
## 12365 Manager
## 12366 Manager
## 12367 Manager
## 12368 Manager
## 12369 Manager
## 12370 Manager
## 12371 Manager
## 12372 Manager
## 12373 Manager
## 12374 Manager
## 12375 Manager
## 12376 Manager
## 12377 Manager
## 12378 Manager
## 12379 Manager
## 12380 Manager
## 12381 Manager
## 12382 Manager
## 12383 Manager
## 12384 Manager
## 12385 Manager
## 12386 Manager
## 12387 Manager
## 12388 Manager
## 12389 Manager
## 12390 Manager
## 12391 Manager
## 12392 Manager
## 12393 Manager
## 12394 Manager
## 12395 Manager
## 12396 Manager
## 12397 Manager
## 12398 Manager
## 12399 Manager
## 12400 Manager
## 12401 Manager
## 12402 Manager
## 12403 Manager
## 12404 Manager
## 12405 Manager
## 12406 Manager
## 12407 Manager
## 12408 Manager
## 12409 Manager
## 12410 Manager
## 12411 Manager
## 12412 Manager
## 12413 Manager
## 12414 Manager
## 12415 Manager
## 12416 Manager
## 12417 Manager
## 12418 Manager
## 12419 Manager
## 12420 Manager
## 12421 Manager
## 12422 Manager
## 12423 Manager
## 12424 Manager
## 12425 Manager
## 12426 Manager
## 12427 Manager
## 12428 Manager
## 12429 Manager
## 12430 Manager
## 12431 Manager
## 12432 Manager
## 12433 Manager
## 12434 Manager
## 12435 Manager
## 12436 Manager
## 12437 Manager
## 12438 Manager
## 12439 Manager
## 12440 Manager
## 12441 Manager
## 12442 Manager
## 12443 Manager
## 12444 Manager
## 12445 Manager
## 12446 Manager
## 12447 Manager
## 12448 Manager
## 12449 Manager
## 12450 Manager
## 12451 Manager
## 12452 Manager
## 12453 Manager
## 12454 Manager
## 12455 Manager
## 12456 Manager
## 12457 Manager
## 12458 Manager
## 12459 Manager
## 12460 Manager
## 12461 Manager
## 12462 Manager
## 12463 Manager
## 12464 Manager
## 12465 Manager
## 12466 Manager
## 12467 Manager
## 12468 Manager
## 12469 Manager
## 12470 Manager
## 12471 Manager
## 12472 Manager
## 12473 Manager
## 12474 Manager
## 12475 Manager
## 12476 Manager
## 12477 Manager
## 12478 Manager
## 12479 Manager
## 12480 Manager
## 12481 Manager
## 12482 Manager
## 12483 Manager
## 12484 Manager
## 12485 Manager
## 12486 Manager
## 12487 Manager
## 12488 Manager
## 12489 Manager
## 12490 Manager
## 12491 Manager
## 12492 Manager
## 12493 Manager
## 12494 Manager
## 12495 Manager
## 12496 Manager
## 12497 Manager
## 12498 Manager
## 12499 Manager
## [ reached 'max' / getOption("max.print") -- omitted 281792 rows ]
In doing this we are able to link 294 291 email sent to the employee status.
We do the same for the recipient by renaming the status variable in the employeelist_2 to recipient_employee_status.
employeelist_2_recipient_merged <- employeelist_2 %>% select(Email_id, status) %>%
rename(rvalue = Email_id, recipient_status = status)
df_message_status <- left_join(df_message_status, employeelist_2_recipient_merged, #the table we merged
by = "rvalue") #the variable used for merging
df_message_status %>% filter(is.na(recipient_status)) %>% filter(is.na(sender_status))
## rid mid rtype rvalue
## 1 67 52 TO all.worldwide@enron.com
## 2 68 53 TO all.downtown@enron.com
## 3 69 54 TO all.enron-worldwide@enron.com
## 4 70 55 TO all.worldwide@enron.com
## 5 71 56 TO all_enron_north.america@enron.com
## 6 72 56 TO ec.communications@enron.com
## 7 73 57 TO charlotte@wptf.org
## 8 74 58 TO sap.mailout@enron.com
## 9 76 60 TO tim.belden@enron.com
## 10 78 60 TO jeff.richter@enron.com
## 11 79 60 TO valarie.sabo@enron.com
## 12 80 60 TO carla.hoffman@enron.com
## 13 81 60 TO murray.o neil@enron.com
## 14 82 60 TO chris.stokley@enron.com
## 15 86 61 TO tim.belden@enron.com
## 16 89 61 TO jeff.richter@enron.com
## 17 90 61 CC valarie.sabo@enron.com
## 18 91 61 CC monica.lande@enron.com
## 19 92 61 CC donald.vinson@enron.com
## 20 93 61 BCC valarie.sabo@enron.com
## 21 94 61 BCC monica.lande@enron.com
## 22 95 61 BCC donald.vinson@enron.com
## 23 96 62 TO evelyn.metoyer@enron.com
## 24 97 62 TO amy.degeyter@enron.com
## 25 98 62 TO stephanie.piwetz@enron.com
## 26 99 62 TO kim.theriot@enron.com
## 27 100 62 CC christian.yoder@enron.com
## 28 101 62 CC tim.belden@enron.com
## 29 103 62 CC jeff.richter@enron.com
## 30 105 62 BCC christian.yoder@enron.com
## 31 106 62 BCC tim.belden@enron.com
## 32 108 62 BCC jeff.richter@enron.com
## 33 111 63 TO jeff.richter@enron.com
## 34 112 63 CC christian.yoder@enron.com
## 35 113 63 CC tim.belden@enron.com
## 36 114 63 BCC christian.yoder@enron.com
## 37 115 63 BCC tim.belden@enron.com
## 38 116 64 TO california.affairs@enron.com
## 39 117 64 TO paul.kaufman@enron.com
## 40 120 64 TO joe.hartsoe@enron.com
## 41 121 64 TO mary.hain@enron.com
## 42 122 64 TO cynthia.sandherr@enron.com
## 43 123 64 TO sarah.novosel@enron.com
## 44 124 64 TO karen.denne@enron.com
## 45 125 64 TO peggy.mahoney@enron.com
## 46 126 64 TO harry.kingerski@enron.com
## 47 127 64 TO david.parquet@enron.com
## 48 128 64 TO laird.dyer@enron.com
## 49 129 64 TO roger.yang@enron.com
## 50 130 64 TO dennis.benevides@enron.com
## 51 131 64 TO michael.mcdonald@enron.com
## 52 133 64 TO tim.belden@enron.com
## 53 134 65 TO 20participants@caiso.com
## 54 135 66 TO portland.shift@enron.com
## 55 136 66 TO tim.belden@enron.com
## 56 141 66 TO mark.fischer@enron.com
## 57 142 66 TO tom.alonso@enron.com
## 58 143 66 TO jeff.richter@enron.com
## 59 144 66 TO chris.mallory@enron.com
## 60 146 66 TO smith.day@enron.com
## 61 148 66 TO stewart.rosman@enron.com
## 62 149 66 TO chris.foster@enron.com
## 63 150 66 TO holli.krebs@enron.com
## 64 151 66 TO paul.choi@enron.com
## 65 152 66 TO john.malowney@enron.com
## 66 153 66 TO kim.ward@enron.com
## 67 154 66 TO chris.stokley@enron.com
## 68 155 66 TO murray.o neil@enron.com
## 69 156 67 TO david.parquet@enron.com
## 70 157 67 TO tim.belden@enron.com
## 71 159 67 TO jake.thomas@enron.com
## 72 160 67 TO michael.mcdonald@enron.com
## 73 161 67 TO greg.wolfe@enron.com
## 74 162 67 TO mona.petrochko@enron.com
## 75 164 67 TO paul.kaufman@enron.com
## 76 165 67 TO susan.mara@enron.com
## 77 166 67 TO sandra.mccubbin@enron.com
## 78 167 67 TO roger.yang@enron.com
## 79 168 67 TO dennis.benevides@enron.com
## 80 169 68 TO charlotte@wptf.org
## 81 170 69 TO edward.hamb@enron.com
## 82 171 69 TO james.wood@enron.com
## 83 172 69 TO greg.cordell@enron.com
## 84 173 69 TO chris.hendrix@enron.com
## 85 174 69 TO martin.wenzel@enron.com
## 86 175 69 TO douglas.condon@enron.com
## 87 176 69 TO harry.kingerski@enron.com
## 88 177 69 TO roger.yang@enron.com
## 89 178 69 TO dennis.benevides@enron.com
## 90 179 69 CC west.ga@enron.com
## 91 181 69 CC peggy.mahoney@enron.com
## 92 183 69 CC kathleen.magruder@enron.com
## 93 184 69 BCC west.ga@enron.com
## 94 186 69 BCC peggy.mahoney@enron.com
## 95 188 69 BCC kathleen.magruder@enron.com
## 96 189 70 TO david.parquet@enron.com
## 97 190 70 TO tim.belden@enron.com
## 98 192 70 TO jake.thomas@enron.com
## 99 193 70 TO michael.mcdonald@enron.com
## 100 194 70 TO greg.wolfe@enron.com
## 101 195 70 TO mona.petrochko@enron.com
## 102 197 70 TO paul.kaufman@enron.com
## 103 198 70 TO susan.mara@enron.com
## 104 199 70 TO sandra.mccubbin@enron.com
## 105 200 70 TO roger.yang@enron.com
## 106 201 70 TO dennis.benevides@enron.com
## 107 202 71 TO tim.belden@enron.com
## 108 204 71 TO jeff.richter@enron.com
## 109 211 71 TO tom.alonso@enron.com
## 110 212 71 TO mark.fischer@enron.com
## 111 213 71 TO stewart.rosman@enron.com
## 112 214 71 TO greg.wolfe@enron.com
## 113 215 71 TO kim.ward@enron.com
## 114 216 71 TO kristian.lande@enron.com
## 115 217 71 TO monica.lande@enron.com
## 116 218 71 TO valarie.sabo@enron.com
## 117 220 72 TO jeff.richter@enron.com
## 118 221 72 CC tim.belden@enron.com
## 119 222 72 CC christian.yoder@enron.com
## 120 223 72 CC kim.theriot@enron.com
## 121 224 72 CC stephanie.piwetz@enron.com
## 122 225 72 CC evelyn.metoyer@enron.com
## 123 226 72 CC amy.degeyter@enron.com
## 124 227 72 CC kerri.thompson@enron.com
## 125 228 72 BCC tim.belden@enron.com
## 126 229 72 BCC christian.yoder@enron.com
## 127 230 72 BCC kim.theriot@enron.com
## 128 231 72 BCC stephanie.piwetz@enron.com
## 129 232 72 BCC evelyn.metoyer@enron.com
## 130 233 72 BCC amy.degeyter@enron.com
## 131 234 72 BCC kerri.thompson@enron.com
## 132 236 74 TO kevin.mcgowan@enron.com
## 133 238 74 CC john.massey@enron.com
## 134 239 74 BCC john.massey@enron.com
## 135 241 76 TO tim.belden@enron.com
## 136 245 77 TO 20participants@caiso.com
## 137 249 80 TO jeff.richter@enron.com
## 138 250 81 TO portland.desk@enron.com
## 139 251 81 CC winston.goodbody@enron.com
## 140 252 81 BCC winston.goodbody@enron.com
## 141 254 83 TO sewilson@calpx.com
## 142 255 83 TO kamarlantes@calpx.com
## 143 256 83 TO pgillman@schiffhardin.com
## 144 259 84 TO all.houston@enron.com
## 145 260 85 TO 20participants@caiso.com
## 146 261 86 TO 20participants@caiso.com
## 147 262 87 TO 20participants@caiso.com
## 148 263 87 CC isoclientrelations@caiso.com
## 149 264 87 CC tcarlson@caiso.com
## 150 265 87 CC jmcintosh@caiso.com
## 151 266 87 CC rsullivan@caiso.com
## 152 267 87 CC ntraweek@caiso.com
## 153 268 87 BCC isoclientrelations@caiso.com
## 154 269 87 BCC tcarlson@caiso.com
## 155 270 87 BCC jmcintosh@caiso.com
## 156 271 87 BCC rsullivan@caiso.com
## 157 272 87 BCC ntraweek@caiso.com
## 158 273 88 TO portland.desk@enron.com
## 159 274 89 TO 20participants@caiso.com
## 160 275 89 TO tswg@caiso.com
## 161 276 90 TO tim.belden@enron.com
## 162 278 90 TO jeff.richter@enron.com
## 163 285 90 TO tom.alonso@enron.com
## 164 286 90 TO mark.fischer@enron.com
## 165 287 90 TO stewart.rosman@enron.com
## 166 288 90 TO greg.wolfe@enron.com
## 167 289 91 TO scsettlecontacts@caiso.com
## 168 290 91 CC wregan@caiso.com
## 169 291 91 CC rabernathy@caiso.com
## 170 292 91 CC gperez@caiso.com
## 171 293 91 CC stenbroeck@caiso.com
## 172 294 91 CC dnelsen@caiso.com
## 173 295 91 CC 20participants@caiso.com
## 174 296 91 CC isoclientrelations@caiso.com
## 175 297 91 CC sgerber@caiso.com
## 176 298 91 CC emorgan@caiso.com
## 177 299 91 CC rklussmann@caiso.com
## 178 300 91 CC bbouillon@caiso.com
## 179 301 91 CC thuynh@caiso.com
## 180 302 91 BCC wregan@caiso.com
## 181 303 91 BCC rabernathy@caiso.com
## 182 304 91 BCC gperez@caiso.com
## 183 305 91 BCC stenbroeck@caiso.com
## 184 306 91 BCC dnelsen@caiso.com
## 185 307 91 BCC 20participants@caiso.com
## 186 308 91 BCC isoclientrelations@caiso.com
## 187 309 91 BCC sgerber@caiso.com
## 188 310 91 BCC emorgan@caiso.com
## 189 311 91 BCC rklussmann@caiso.com
## 190 312 91 BCC bbouillon@caiso.com
## 191 313 91 BCC thuynh@caiso.com
## 192 314 92 TO marketstatus@caiso.com
## 193 320 94 TO scsettlecontacts@caiso.com
## 194 321 94 CC wregan@caiso.com
## 195 322 94 CC rabernathy@caiso.com
## 196 323 94 CC gperez@caiso.com
## 197 324 94 CC stenbroeck@caiso.com
## 198 325 94 CC dnelsen@caiso.com
## 199 326 94 CC 20participants@caiso.com
## 200 327 94 CC isoclientrelations@caiso.com
## 201 328 94 CC sgerber@caiso.com
## 202 329 94 CC emorgan@caiso.com
## 203 330 94 CC rklussmann@caiso.com
## 204 331 94 CC bbouillon@caiso.com
## 205 332 94 CC thuynh@caiso.com
## 206 333 94 CC jplumley@caiso.com
## 207 334 94 BCC wregan@caiso.com
## 208 335 94 BCC rabernathy@caiso.com
## 209 336 94 BCC gperez@caiso.com
## 210 337 94 BCC stenbroeck@caiso.com
## 211 338 94 BCC dnelsen@caiso.com
## 212 339 94 BCC 20participants@caiso.com
## 213 340 94 BCC isoclientrelations@caiso.com
## 214 341 94 BCC sgerber@caiso.com
## 215 342 94 BCC emorgan@caiso.com
## 216 343 94 BCC rklussmann@caiso.com
## 217 344 94 BCC bbouillon@caiso.com
## 218 345 94 BCC thuynh@caiso.com
## 219 346 94 BCC jplumley@caiso.com
## 220 347 95 TO tim.belden@enron.com
## 221 349 95 TO jeff.richter@enron.com
## 222 356 95 TO tom.alonso@enron.com
## 223 357 95 TO mark.fischer@enron.com
## 224 358 95 TO stewart.rosman@enron.com
## 225 359 95 TO greg.wolfe@enron.com
## 226 362 98 TO 20participants@caiso.com
## 227 363 99 TO tim.belden@enron.com
## 228 365 99 TO jeff.richter@enron.com
## 229 372 99 TO tom.alonso@enron.com
## 230 373 99 TO mark.fischer@enron.com
## 231 374 99 TO kristian.lande@enron.com
## 232 375 99 TO monica.lande@enron.com
## 233 376 99 TO valarie.sabo@enron.com
## 234 377 100 TO stephanie.piwetz@enron.com
## 235 379 100 CC jeff.richter@enron.com
## 236 381 100 BCC jeff.richter@enron.com
## 237 382 101 TO tim.belden@enron.com
## 238 384 101 TO jeff.richter@enron.com
## 239 391 101 TO tom.alonso@enron.com
## 240 392 101 TO mark.fischer@enron.com
## 241 393 101 TO kristian.lande@enron.com
## 242 394 101 TO monica.lande@enron.com
## 243 395 101 TO valarie.sabo@enron.com
## 244 396 102 TO 20participants@caiso.com
## 245 397 102 CC isoclientrelations@caiso.com
## 246 398 102 CC mmcquay@caiso.com
## 247 399 102 BCC isoclientrelations@caiso.com
## 248 400 102 BCC mmcquay@caiso.com
## 249 401 103 TO 20participants@caiso.com
## 250 402 103 TO tswg@caiso.com
## 251 403 104 TO christopher.calger@enron.com
## 252 404 104 TO jake.thomas@enron.com
## 253 405 104 TO frank.vickers@enron.com
## 254 406 104 TO elliot.mainzer@enron.com
## 255 407 104 TO michael.mcdonald@enron.com
## 256 408 104 TO david.parquet@enron.com
## 257 409 104 TO laird.dyer@enron.com
## 258 410 104 TO jim.buerkle@enron.com
## 259 411 104 TO jim.gilbert@enron.com
## 260 412 104 TO terry.donovan@enron.com
## 261 413 104 TO jeff.slaughter@enron.com
## 262 414 104 TO ed.clark@enron.com
## 263 415 104 CC tim.belden@enron.com
## 264 419 104 BCC tim.belden@enron.com
## 265 423 105 TO eol.wide@enron.com
## 266 426 105 CC dave.samuels@enron.com
## 267 429 105 BCC dave.samuels@enron.com
## 268 430 106 TO portland.desk@enron.com
## 269 431 107 TO 20participants@caiso.com
## 270 432 108 TO marketstatus@caiso.com
## 271 433 108 TO pxrt@calpx.com
## 272 434 108 CC cpryor@caiso.com
## 273 435 108 CC wsccnwsc@bpa.gov
## 274 436 108 CC rmrsecur@warmr.net
## 275 437 108 BCC cpryor@caiso.com
## 276 438 108 BCC wsccnwsc@bpa.gov
## 277 439 108 BCC rmrsecur@warmr.net
## 278 440 109 TO all.users@enron.com
## 279 441 110 TO all.users@enron.com
## 280 442 111 TO 20participants@caiso.com
## 281 443 111 CC cmrcoreteam@caiso.com
## 282 444 111 CC cmrexecutivepolicyteam@caiso.com
## 283 445 111 CC cmrsteeringcommittee@caiso.com
## 284 446 111 CC alexp@eccointl.com
## 285 447 111 CC adp3@pge.com
## 286 448 111 CC asheffrin@caiso.com
## 287 449 111 CC bwoertz@caiso.com
## 288 450 111 CC cgates@caiso.com
## 289 451 111 CC ccameron@caiso.com
## 290 452 111 CC dvhawk@aol.com
## 291 453 111 CC eberlin@swidlaw.com
## 292 454 111 CC eschmid@caiso.com
## 293 455 111 CC afrahimi@nilou.com
## 294 456 111 CC frahimi@caiso.com
## 295 457 111 CC wolak@zia.stanford.edu
## 296 458 111 CC gangelidis@caiso.com
## 297 459 111 CC kkelley@caiso.com
## 298 460 111 CC lkaimer@caiso.com
## 299 461 111 CC lkristov@caiso.com
## 300 462 111 CC mrothleder@caiso.com
## 301 463 111 CC mwillis@caiso.com
## 302 464 111 CC ntraweek@caiso.com
## 303 465 111 CC rwilson@stanford.edu
## 304 466 111 CC rtreinen@caiso.com
## 305 467 111 CC saatkins@swidlaw.com
## 306 468 111 CC sgerber@caiso.com
## 307 469 111 CC sgreenleaf@caiso.com
## 308 470 111 CC twu@caiso.com
## 309 471 111 CC vkasarjian@caiso.com
## 310 472 111 CC zalaywan@caiso.com
## 311 473 111 BCC cmrcoreteam@caiso.com
## 312 474 111 BCC cmrexecutivepolicyteam@caiso.com
## 313 475 111 BCC cmrsteeringcommittee@caiso.com
## 314 476 111 BCC alexp@eccointl.com
## 315 477 111 BCC adp3@pge.com
## 316 478 111 BCC asheffrin@caiso.com
## 317 479 111 BCC bwoertz@caiso.com
## 318 480 111 BCC cgates@caiso.com
## 319 481 111 BCC ccameron@caiso.com
## 320 482 111 BCC dvhawk@aol.com
## 321 483 111 BCC eberlin@swidlaw.com
## 322 484 111 BCC eschmid@caiso.com
## 323 485 111 BCC afrahimi@nilou.com
## 324 486 111 BCC frahimi@caiso.com
## 325 487 111 BCC wolak@zia.stanford.edu
## 326 488 111 BCC gangelidis@caiso.com
## 327 489 111 BCC kkelley@caiso.com
## 328 490 111 BCC lkaimer@caiso.com
## 329 491 111 BCC lkristov@caiso.com
## 330 492 111 BCC mrothleder@caiso.com
## 331 493 111 BCC mwillis@caiso.com
## 332 494 111 BCC ntraweek@caiso.com
## 333 495 111 BCC rwilson@stanford.edu
## 334 496 111 BCC rtreinen@caiso.com
## 335 497 111 BCC saatkins@swidlaw.com
## 336 498 111 BCC sgerber@caiso.com
## 337 499 111 BCC sgreenleaf@caiso.com
## 338 500 111 BCC twu@caiso.com
## 339 501 111 BCC vkasarjian@caiso.com
## 340 502 111 BCC zalaywan@caiso.com
## 341 503 112 TO Undisclosed-Recipient
## 342 504 113 TO tim.belden@enron.com
## 343 508 113 CC mark.fischer@enron.com
## 344 509 113 CC tom.alonso@enron.com
## 345 510 113 CC jeff.richter@enron.com
## 346 512 113 CC debra.davidson@enron.com
## 347 513 113 CC monica.lande@enron.com
## 348 514 113 CC vladimir.gorny@enron.com
## 349 518 113 BCC mark.fischer@enron.com
## 350 519 113 BCC tom.alonso@enron.com
## 351 520 113 BCC jeff.richter@enron.com
## 352 522 113 BCC debra.davidson@enron.com
## 353 523 113 BCC monica.lande@enron.com
## 354 524 113 BCC vladimir.gorny@enron.com
## 355 525 114 TO energyinsight@spector.ftenergy.com
## 356 526 115 TO Undisclosed-Recipient
## 357 527 116 TO 20participants@caiso.com
## 358 528 116 TO plwg@caiso.com
## 359 529 116 TO aja6@pge.com
## 360 530 116 TO abb@eslawfirm.com
## 361 531 116 TO arosenthal@urmgroup.com
## 362 532 116 TO asw@ix.netcom.com
## 363 533 116 TO brbarkovich@earthlink.net
## 364 534 116 TO bdunlop@gralegal.com
## 365 535 116 TO bchamber@energy.state.ca.us
## 366 536 116 TO bnspeckman@aol.com
## 367 537 116 TO bob@sixthdimension.com
## 368 538 116 TO btollerson@otpco.com
## 369 539 116 TO chrisls@tallassee.rms.slb.com
## 370 540 116 TO dslifer@planergyservices.com
## 371 541 116 TO dcazalet@apx.com
## 372 542 116 TO dviner@newenergy.com
## 373 543 116 TO drowan@aswengineering.com
## 374 544 116 TO dmoody@youngco.com
## 375 545 116 TO dviolette@energycentral.com
## 376 546 116 TO elucero@sempra.com
## 377 547 116 TO ellen@tca-us.com
## 378 548 116 TO exm0@pge.com
## 379 549 116 TO estrategy@mindspring.com
## 380 550 116 TO evos@sierrapine.com
## 381 551 116 TO fivestarenergy@earthlink.net
## 382 552 116 TO gkeller1@compuserve.com
## 383 553 116 TO harry.singh@gen.pge.com
## 384 554 116 TO hcann@planergyservices.com
## 385 555 116 TO jcgardin@newwestenergy.com
## 386 556 116 TO jdesmond@elinet.com
## 387 557 116 TO jtlaib@srp.gov
## 388 558 116 TO jeh@cpuc.ca.gov
## 389 559 116 TO john.g.buchanan@ac.com
## 390 560 116 TO kpatterson@hesinet.com
## 391 561 116 TO kirk_miller@city.palo-alto.ca.us
## 392 562 116 TO kon.mcquiston@californiapowel.com
## 393 563 116 TO kpp1@ccnet.com
## 394 564 116 TO kskinner@haglerbailly.com
## 395 565 116 TO ksmith@camfg.com
## 396 566 116 TO ku5@ornl.gov
## 397 567 116 TO lfrigo@siliconenergy.com
## 398 568 116 TO lys@aelaw.com
## 399 569 116 TO maz@cpuc.ca.gov
## 400 570 116 TO mbochotorena@calpx.com
## 401 571 116 TO michael.kintner-meyer@pnl.gov
## 402 572 116 TO mwynne@uoc.com
## 403 573 116 TO mjaske@energy.state.ca.us
## 404 574 116 TO nsteo@enetics.com
## 405 575 116 TO oliverd@sce.com
## 406 576 116 TO pmcaulif@eob.ca.gov
## 407 577 116 TO pat@sixthdimension.com
## 408 578 116 TO pschleifer@planergyservices.com
## 409 579 116 TO rick.buckingham@dgs.ca.gov
## 410 580 116 TO rick_noger@praxair.com
## 411 581 116 TO rljohn@water.ca.gov
## 412 582 116 TO roland.allred@uaecorp.com
## 413 583 116 TO rsoutner@aol.com
## 414 584 116 TO sieben1@slb.com
## 415 585 116 TO smartin@smud.org
## 416 586 116 TO sgreenberg@intergypower.com
## 417 587 116 TO schneider@rsvl.net
## 418 588 116 TO tshaw@tis4000.com
## 419 589 116 TO txw8@pge.com
## 420 590 116 TO tonylam@water.ca.gov
## 421 591 116 TO torresc@sce.com
## 422 592 116 TO vpatel@water.ca.gov
## 423 593 116 TO sblack@smud.org
## 424 594 116 TO wwashburn@home.com
## 425 595 116 TO tdinkel@retx.com
## 426 596 116 TO ehenandez@c3com.com
## 427 597 116 TO jjacoby@c3com.com
## 428 598 116 TO john@sixthdimension.com
## 429 599 116 TO rstarr@planergyservices.com
## 430 600 116 TO dwylie@ascoalition.com
## 431 601 116 TO drowan@aswengineering.com
## 432 602 116 TO goodson@norcross.rms.slb.com
## 433 603 116 TO lrust@oconee.rms.slb.com
## 434 604 116 TO jcgardin@newwestenergy.com
## 435 605 116 TO mjurosek@puc.sf.ca.us
## 436 606 116 TO dabo@dynegy.com
## 437 607 116 TO dviner@newenergy.com
## 438 608 116 TO rfbarreno@calpx.com
## 439 609 116 TO marvin.clark@sce.com
## 440 610 116 TO mcarpenter@powersavers.com
## 441 611 116 TO ramk@pge.com
## 442 612 116 TO lpark@puc.sf.ca.us
## 443 613 116 CC isoclientrelations@caiso.com
## 444 614 116 BCC isoclientrelations@caiso.com
## 445 615 117 TO all.worldwide@enron.com
## 446 616 118 TO all.worldwide@enron.com
## 447 620 119 TO jeff.richter@enron.com
## 448 622 119 TO tom.alonso@enron.com
## 449 623 119 TO mark.fischer@enron.com
## 450 625 119 CC david.forster@enron.com
## 451 626 119 CC savita.puthigai@enron.com
## 452 627 119 CC bob.shults@enron.com
## 453 628 119 CC lorraine.becker@enron.com
## 454 629 119 BCC david.forster@enron.com
## 455 630 119 BCC savita.puthigai@enron.com
## 456 631 119 BCC bob.shults@enron.com
## 457 632 119 BCC lorraine.becker@enron.com
## 458 633 120 TO tim.belden@enron.com
## 459 635 120 TO genia.fitzgerald@enron.com
## 460 636 120 TO jeffrey.hodge@enron.com
## 461 637 120 TO melissa.murphy@enron.com
## 462 638 120 TO kyle.schultz@enron.com
## 463 639 120 TO kim.theriot@enron.com
## 464 640 120 TO christi.nicolay@enron.com
## 465 641 120 TO leslie.reeves@enron.com
## 466 642 120 TO john.berger@enron.com
## 467 643 120 TO tracy.ngo@enron.com
## 468 644 120 TO gretchen.lotz@enron.com
## 469 645 120 TO dean.laurent@enron.com
## 470 646 120 TO john.suarez@enron.com
## 471 648 120 TO christian.yoder@enron.com
## 472 649 120 TO jan.king@enron.com
## 473 651 120 TO mary.hain@enron.com
## 474 652 120 TO michael.etringer@enron.com
## 475 653 120 TO john.malowney@enron.com
## 476 655 120 TO laura.jones@enron.com
## 477 656 120 TO cyril.price@enron.com
## 478 657 120 TO james.terrell@enron.com
## 479 658 120 TO corry.bentley@enron.com
## 480 659 120 TO matt.lorenz@enron.com
## 481 660 120 TO thresa.allen@enron.com
## 482 661 120 TO david.portz@enron.com
## 483 662 120 TO sharen.cason@enron.com
## 484 663 120 TO veronica.gonzalez@enron.com
## 485 664 120 TO kimberly.allen@enron.com
## 486 665 120 TO william.bradford@enron.com
## 487 666 120 TO debbie.brackett@enron.com
## 488 667 120 TO christopher.smith@enron.com
## 489 668 120 TO brant.reves@enron.com
## 490 669 120 TO russell.diamond@enron.com
## 491 670 120 TO john.suttle@enron.com
## 492 671 120 TO tanya.rohauer@enron.com
## 493 672 120 TO rod.nelson@enron.com
## 494 673 120 TO stephanie.piwetz@enron.com
## 495 674 120 TO tom.moran@enron.com
## 496 675 120 TO leslie.hansen@enron.com
## 497 676 120 TO russell.kelley@enron.com
## 498 677 120 TO stewart.rosman@enron.com
## 499 678 120 TO holli.krebs@enron.com
## 500 679 120 TO paul.choi@enron.com
## 501 680 120 TO chris.foster@enron.com
## 502 683 120 TO paul.mead@enron.com
## 503 684 120 TO jeff.richter@enron.com
## 504 686 120 TO smith.day@enron.com
## 505 688 120 TO d.hunsucker@enron.com
## 506 689 120 TO kim.ward@enron.com
## 507 691 120 TO edward.baughman@enron.com
## 508 692 120 TO kayne.coulter@enron.com
## 509 693 120 TO alonzo.williams@enron.com
## 510 694 120 TO john.kinser@enron.com
## 511 696 120 TO larry.valderrama@enron.com
## 512 697 120 TO paul.broderick@enron.com
## 513 698 120 TO edward.sacks@enron.com
## 514 699 120 TO janet.moore@enron.com
## 515 700 120 TO janice.moore@enron.com
## 516 701 120 TO shari.stack@enron.com
## 517 703 120 TO rogers.herndon@enron.com
## 518 704 120 TO jesse.bryson@enron.com
## 519 705 120 TO stanley.cocke@enron.com
## 520 706 120 TO michael.driscoll@enron.com
## 521 707 120 TO brian.robinhold@enron.com
## 522 709 120 TO kimberly.hundl@enron.com
## 523 710 120 TO joy.werner@enron.com
## 524 711 120 TO elsie.lew@enron.com
## 525 712 120 TO dan.houston@enron.com
## 526 713 120 TO amy.horton@enron.com
## 527 714 120 TO kim.durham@enron.com
## 528 715 120 TO theresa.kotrla@enron.com
## 529 716 121 TO Undisclosed-Recipient
## 530 717 122 TO marketstatus@caiso.com
## 531 718 123 TO marketstatus@caiso.com
## 532 719 123 TO pxrt@calpx.com
## 533 720 123 CC cpryor@caiso.com
## 534 721 123 CC rmrsecur@warmr.net
## 535 722 123 CC wsccnwsc@bpa.gov
## 536 723 123 BCC cpryor@caiso.com
## 537 724 123 BCC rmrsecur@warmr.net
## 538 725 123 BCC wsccnwsc@bpa.gov
## 539 726 124 TO all.houston@enron.com
## 540 727 125 TO all.worldwide@enron.com
## 541 728 126 TO tim.belden@enron.com
## 542 730 126 TO jeff.richter@enron.com
## 543 737 126 TO tom.alonso@enron.com
## 544 738 126 TO mark.fischer@enron.com
## 545 740 128 TO Undisclosed-Recipient
## 546 741 129 TO Undisclosed-Recipient
## 547 742 130 TO Undisclosed-Recipient
## 548 743 131 TO Undisclosed-Recipient
## 549 746 132 TO greg.wolfe@enron.com
## 550 747 132 TO jeff.richter@enron.com
## 551 748 132 TO lester.rawson@enron.com
## 552 749 133 TO energyinsight@spector.ftenergy.com
## 553 750 134 TO all.worldwide@enron.com
## 554 751 135 TO portland.desk@enron.com
## 555 755 136 TO tim.belden@enron.com
## 556 756 136 TO jeff.richter@enron.com
## 557 759 136 TO tom.alonso@enron.com
## 558 760 136 TO mark.fischer@enron.com
## 559 761 137 TO portland.desk@enron.com
## 560 762 138 TO Undisclosed-Recipient
## 561 764 140 TO 20participants@caiso.com
## 562 765 141 TO portland.desk@enron.com
## 563 766 142 TO 20participants@caiso.com
## 564 767 143 TO 20participants@caiso.com
## 565 768 143 TO scsettlecontacts@caiso.com
## 566 769 144 TO chris.foster@enron.com
## 567 770 144 TO murray.o neil@enron.com
## 568 772 144 TO tim.heizenrader@enron.com
## 569 776 144 TO greg.wolfe@enron.com
## 570 777 144 TO jeff.richter@enron.com
## 571 778 144 TO debra.davidson@enron.com
## 572 780 144 TO tom.alonso@enron.com
## 573 781 144 TO mark.fischer@enron.com
## 574 782 144 TO tim.belden@enron.com
## 575 784 145 TO marketstatus@caiso.com
## 576 785 145 TO pxrt@calpx.com
## 577 786 145 CC mneeley@caiso.com
## 578 787 145 CC cpryor@caiso.com
## 579 788 145 CC wsccnwsc@bpa.gov
## 580 789 145 CC rmrsecur@warmr.net
## 581 790 145 BCC mneeley@caiso.com
## 582 791 145 BCC cpryor@caiso.com
## 583 792 145 BCC wsccnwsc@bpa.gov
## 584 793 145 BCC rmrsecur@warmr.net
## 585 794 146 TO douglas.condon@enron.com
## 586 795 146 TO james.wood@enron.com
## 587 796 146 TO edward.hamb@enron.com
## 588 797 146 TO greg.cordell@enron.com
## 589 798 146 TO dennis.benevides@enron.com
## 590 799 146 TO roger.yang@enron.com
## 591 800 146 TO martin.wenzel@enron.com
## 592 801 146 CC west.ga@enron.com
## 593 803 146 CC harry.kingerski@enron.com
## 594 804 146 CC paul.kaufman@enron.com
## 595 806 146 BCC west.ga@enron.com
## 596 808 146 BCC harry.kingerski@enron.com
## 597 809 146 BCC paul.kaufman@enron.com
## 598 811 147 TO 20participants@caiso.com
## 599 812 147 TO scsettlecontacts@caiso.com
## 600 813 147 CC tswg@caiso.com
## 601 814 147 BCC tswg@caiso.com
## 602 815 148 TO 20participants@caiso.com
## 603 816 148 TO scsettlecontacts@caiso.com
## 604 817 149 TO energyinsight@spector.ftenergy.com
## 605 818 150 TO portland.desk@enron.com
## 606 819 151 TO marketstatus@caiso.com
## 607 821 153 TO 20participants@caiso.com
## 608 822 154 TO 20participants@caiso.com
## 609 823 154 CC isoclientrelations@caiso.com
## 610 824 154 CC mmcquay@caiso.com
## 611 825 154 BCC isoclientrelations@caiso.com
## 612 826 154 BCC mmcquay@caiso.com
## 613 827 155 TO dale.rasmussen@enron.com
## 614 829 155 TO jeff.richter@enron.com
## 615 830 155 TO mike.mcclain@enron.com
## 616 832 155 TO stewart.rosman@enron.com
## 617 833 155 TO bill_williams@pgn.com
## 618 834 155 TO bill_williams_iii@pgn.com
## 619 835 155 TO cooper_richey@pgn.com
## 620 836 155 TO frank_w_vickers@pgn.com
## 621 837 155 TO gray_calvert@pgn.com
## 622 838 155 TO greg_wolfe@pgn.com
## 623 839 155 TO kristian_j_lande@pgn.com
## 624 840 155 TO mark_mullen@pgn.com
## 625 841 155 TO mike_purcell@pgn.com
## 626 842 155 TO paul_kane@pgn.com
## 627 843 155 TO sean_crandall@pgn.com
## 628 844 155 TO terry_w_donovan@pgn.com
## 629 845 155 TO tim_belden@pgn.com
## 630 846 155 TO valarie_sabo@pgn.com
## 631 847 156 TO no.address@enron.com
## 632 848 157 TO scsettlecontacts@caiso.com
## 633 849 157 TO tswg@caiso.com
## 634 850 157 TO 20participants@caiso.com
## 635 851 157 CC cguss@anaheim.net
## 636 852 157 CC rbarlow@anaheim.net
## 637 853 157 CC scaps@apsc.com
## 638 854 157 CC bfeliciano@apx.com
## 639 855 157 CC dhuckabay@apx.com
## 640 856 157 CC mark@apx.com
## 641 857 157 CC sdavis@apx.com
## 642 858 157 CC rtorres@ci.azusa.ca.us
## 643 859 157 CC kmjohnson@bpa.gov
## 644 860 157 CC ljpompel@bpa.gov
## 645 861 157 CC mdkemple@bpa.gov
## 646 862 157 CC kwright@water.ca.gov
## 647 863 157 CC rljohn@water.ca.gov
## 648 864 157 CC cmkozma@duke-energy.com
## 649 865 157 CC msdagostino@duke-energy.com
## 650 866 157 CC alzu@dynegy.com
## 651 867 157 CC jjjo@dynegy.com
## 652 868 157 CC rjha@dynegy.com
## 653 869 157 CC heather.dunton@enron.com
## 654 870 157 CC jshacke@enron.com
## 655 871 157 CC erbrickb@epenergy.com
## 656 872 157 CC bowdenj@epenergy.com
## 657 873 157 CC hewettk@kochind.com
## 658 874 157 CC beckettm@kochind.com
## 659 875 157 CC fred@ncpa.com
## 660 876 157 CC sc2@ncpa.com
## 661 877 157 CC john@ncpa.com
## 662 878 157 CC tom@ncpa.com
## 663 879 157 CC jay_e_brandenberger@reliantenergy.com
## 664 880 157 CC juan_g_sanchez@reliantenergy.com
## 665 881 157 CC kfrankeny@reliantenergy.com
## 666 882 157 CC jim.portouw@pacificorp.com
## 667 883 157 CC tml9@pge.com
## 668 884 157 CC tlg4@pge.com
## 669 885 157 CC kevin_nordt@pgn.com
## 670 886 157 CC cclouie@calpx.com
## 671 887 157 CC lawrence_r_conn@calpx.com
## 672 888 157 CC marjan_f_mohtashami@calpx.com
## 673 889 157 CC mjyester@calpx.com
## 674 890 157 CC smarco_m_ho@calpx.com
## 675 891 157 CC aldykstra@pac.state.ca.us
## 676 892 157 CC dmccann@pac.state.ca.us
## 677 893 157 CC fmason@pac.state.ca.us
## 678 894 157 CC rdelgado@pac.state.ca.us
## 679 895 157 CC reardomb@sce.com
## 680 896 157 CC sakagusc@sce.com
## 681 897 157 CC rhett.nichol@sce.com
## 682 898 157 CC craig.epling@southernenergy.com
## 683 899 157 CC lane.mcgullion@southernenergy.com
## 684 900 157 CC pjmartel@srpnet.com
## 685 901 157 CC wasil@wapa.gov
## 686 902 157 CC rhonda.morgan@williams.com
## 687 903 157 CC shonda.meyer@williams.com
## 688 904 157 CC byve@dynegy.com
## 689 905 157 CC jjjo@dynegy.com
## 690 906 157 CC ntraweek@caiso.com
## 691 907 157 CC mrothleder@caiso.com
## 692 908 157 CC gford@caiso.com
## 693 909 157 CC rfudeh@caiso.com
## 694 910 157 CC jpowers@caiso.com
## 695 911 157 CC bsimmons@caiso.com
## 696 912 157 CC bdgevorgian@caiso.com
## 697 913 157 CC sgerber@caiso.com
## 698 914 157 CC hdayani@caiso.com
## 699 915 157 CC dnelsen@caiso.com
## 700 916 157 CC cng@caiso.com
## 701 917 157 CC vkondragunta@caiso.com
## 702 918 157 CC stenbroeck@caiso.com
## 703 919 157 CC ajaschke@caiso.com
## 704 920 157 CC lfeusi@caiso.com
## 705 921 157 CC gperez@caiso.com
## 706 922 157 CC cyoung@caiso.com
## 707 923 157 CC jblatchford@caiso.com
## 708 924 157 CC ltabbut@caiso.com
## 709 925 157 CC bwagner@caiso.com
## 710 926 157 CC cvangelatos@caiso.com
## 711 927 157 BCC cguss@anaheim.net
## 712 928 157 BCC rbarlow@anaheim.net
## 713 929 157 BCC scaps@apsc.com
## 714 930 157 BCC bfeliciano@apx.com
## 715 931 157 BCC dhuckabay@apx.com
## 716 932 157 BCC mark@apx.com
## 717 933 157 BCC sdavis@apx.com
## 718 934 157 BCC rtorres@ci.azusa.ca.us
## 719 935 157 BCC kmjohnson@bpa.gov
## 720 936 157 BCC ljpompel@bpa.gov
## 721 937 157 BCC mdkemple@bpa.gov
## 722 938 157 BCC kwright@water.ca.gov
## 723 939 157 BCC rljohn@water.ca.gov
## 724 940 157 BCC cmkozma@duke-energy.com
## 725 941 157 BCC msdagostino@duke-energy.com
## 726 942 157 BCC alzu@dynegy.com
## 727 943 157 BCC jjjo@dynegy.com
## 728 944 157 BCC rjha@dynegy.com
## 729 945 157 BCC heather.dunton@enron.com
## 730 946 157 BCC jshacke@enron.com
## 731 947 157 BCC erbrickb@epenergy.com
## 732 948 157 BCC bowdenj@epenergy.com
## 733 949 157 BCC hewettk@kochind.com
## 734 950 157 BCC beckettm@kochind.com
## 735 951 157 BCC fred@ncpa.com
## 736 952 157 BCC sc2@ncpa.com
## 737 953 157 BCC john@ncpa.com
## 738 954 157 BCC tom@ncpa.com
## 739 955 157 BCC jay_e_brandenberger@reliantenergy.com
## 740 956 157 BCC juan_g_sanchez@reliantenergy.com
## 741 957 157 BCC kfrankeny@reliantenergy.com
## 742 958 157 BCC jim.portouw@pacificorp.com
## 743 959 157 BCC tml9@pge.com
## 744 960 157 BCC tlg4@pge.com
## 745 961 157 BCC kevin_nordt@pgn.com
## 746 962 157 BCC cclouie@calpx.com
## 747 963 157 BCC lawrence_r_conn@calpx.com
## 748 964 157 BCC marjan_f_mohtashami@calpx.com
## 749 965 157 BCC mjyester@calpx.com
## 750 966 157 BCC smarco_m_ho@calpx.com
## 751 967 157 BCC aldykstra@pac.state.ca.us
## 752 968 157 BCC dmccann@pac.state.ca.us
## 753 969 157 BCC fmason@pac.state.ca.us
## 754 970 157 BCC rdelgado@pac.state.ca.us
## 755 971 157 BCC reardomb@sce.com
## 756 972 157 BCC sakagusc@sce.com
## 757 973 157 BCC rhett.nichol@sce.com
## 758 974 157 BCC craig.epling@southernenergy.com
## 759 975 157 BCC lane.mcgullion@southernenergy.com
## 760 976 157 BCC pjmartel@srpnet.com
## 761 977 157 BCC wasil@wapa.gov
## 762 978 157 BCC rhonda.morgan@williams.com
## 763 979 157 BCC shonda.meyer@williams.com
## 764 980 157 BCC byve@dynegy.com
## 765 981 157 BCC jjjo@dynegy.com
## 766 982 157 BCC ntraweek@caiso.com
## 767 983 157 BCC mrothleder@caiso.com
## 768 984 157 BCC gford@caiso.com
## 769 985 157 BCC rfudeh@caiso.com
## 770 986 157 BCC jpowers@caiso.com
## 771 987 157 BCC bsimmons@caiso.com
## 772 988 157 BCC bdgevorgian@caiso.com
## 773 989 157 BCC sgerber@caiso.com
## 774 990 157 BCC hdayani@caiso.com
## 775 991 157 BCC dnelsen@caiso.com
## 776 992 157 BCC cng@caiso.com
## 777 993 157 BCC vkondragunta@caiso.com
## 778 994 157 BCC stenbroeck@caiso.com
## 779 995 157 BCC ajaschke@caiso.com
## 780 996 157 BCC lfeusi@caiso.com
## 781 997 157 BCC gperez@caiso.com
## 782 998 157 BCC cyoung@caiso.com
## 783 999 157 BCC jblatchford@caiso.com
## 784 1000 157 BCC ltabbut@caiso.com
## 785 1001 157 BCC bwagner@caiso.com
## 786 1002 157 BCC cvangelatos@caiso.com
## 787 1003 158 TO 20participants@caiso.com
## 788 1004 159 TO chris.foster@enron.com
## 789 1006 159 TO jeff.richter@enron.com
## 790 1009 160 TO 20participants@caiso.com
## 791 1010 161 TO tim.belden@enron.com
## 792 1012 161 TO jeff.richter@enron.com
## 793 1019 161 TO tom.alonso@enron.com
## 794 1020 161 TO mark.fischer@enron.com
## 795 1021 162 TO tim.belden@enron.com
## 796 1023 162 TO jeff.richter@enron.com
## 797 1030 162 TO tom.alonso@enron.com
## 798 1031 162 TO mark.fischer@enron.com
## 799 1032 163 TO marketstatus@caiso.com
## 800 1033 163 TO pxrt@calpx.com
## 801 1034 163 CC cpryor@caiso.com
## 802 1035 163 CC mneeley@caiso.com
## 803 1036 163 CC wsccnwsc@bpa.gov
## 804 1037 163 CC rmrsecur@warmr.net
## 805 1038 163 BCC cpryor@caiso.com
## 806 1039 163 BCC mneeley@caiso.com
## 807 1040 163 BCC wsccnwsc@bpa.gov
## 808 1041 163 BCC rmrsecur@warmr.net
## 809 1042 164 TO portland.desk@enron.com
## 810 1043 165 TO 20participants@caiso.com
## 811 1044 165 TO tswg@caiso.com
## 812 1045 166 TO tswg@caiso.com
## 813 1046 166 TO 20participants@caiso.com
## 814 1047 167 TO andrew.conner@enron.com
## 815 1048 167 TO allan.ford@enron.com
## 816 1049 167 TO adam.gross@enron.com
## 817 1050 167 TO andrew.h.lewis@enron.com
## 818 1051 167 TO andrea.ring@enron.com
## 819 1052 167 TO bryan.garrett@enron.com
## 820 1053 167 TO brian.hoskins@enron.com
## 821 1055 167 TO chad.clark@enron.com
## 822 1058 167 TO chris.lambie@enron.com
## 823 1059 167 TO christian.lebroc@enron.com
## 824 1060 167 TO carey.metz@enron.com
## 825 1061 167 TO douglas.friedman@enron.com
## 826 1062 167 TO dick.jenkins@enron.com
## 827 1063 167 TO dan.junek@enron.com
## 828 1064 167 TO darrin.morris@enron.com
## 829 1065 167 TO daniel.reck@enron.com
## 830 1066 167 TO david.redmond@enron.com
## 831 1068 167 TO erik.simpson@enron.com
## 832 1069 167 TO elsa.villarreal@enron.com
## 833 1070 167 TO fred.cohagan@enron.com
## 834 1072 167 TO fred.lagrasta@enron.com
## 835 1074 167 TO gabriel.fuzat@enron.com
## 836 1075 167 TO george.hopley@enron.com
## 837 1076 167 TO george.mcclellan@enron.com
## 838 1079 167 TO george.wood@enron.com
## 839 1080 167 TO greg.woulfe@enron.com
## 840 1081 167 TO grant.zimmerman@enron.com
## 841 1083 167 TO howard.levy@enron.com
## 842 1087 167 TO john.berger@enron.com
## 843 1088 167 TO john.bowman@enron.com
## 844 1089 167 TO john.disturnal@enron.com
## 845 1090 167 TO jim.fallon@enron.com
## 846 1092 167 TO jim.goughary@enron.com
## 847 1093 167 TO jay.hawthorn@enron.com
## 848 1094 167 TO jared.kaiser@enron.com
## 849 1095 167 TO john.massey@enron.com
## 850 1097 167 TO john.mcpherson@enron.com
## 851 1098 167 TO john.nowlan@enron.com
## 852 1099 167 TO jeff.richter@enron.com
## 853 1101 167 TO john.suarez@enron.com
## 854 1105 167 TO karla.compean@enron.com
## 855 1106 167 TO kate.fraser@enron.com
## 856 1109 167 TO kyle.schultz@enron.com
## 857 1110 167 TO kelli.stevens@enron.com
## 858 1111 167 TO kim.ward@enron.com
## 859 1112 167 TO lee.jackson@enron.com
## 860 1114 167 TO matthew.arnold@enron.com
## 861 1116 167 TO michael.cowan@enron.com
## 862 1118 167 TO michael.etringer@enron.com
## 863 1119 167 TO matthew.goering@enron.com
## 864 1121 167 TO moazzam.khoja@enron.com
## 865 1126 167 TO mark.tawney@enron.com
## 866 1128 167 TO paul.broderick@enron.com
## 867 1129 167 TO phil.clifford@enron.com
## 868 1130 167 TO partho.ghosh@enron.com
## 869 1131 167 TO peter.heintzelman@enron.com
## 870 1133 167 TO patrick.markey@enron.com
## 871 1134 167 TO patrice.mims@enron.com
## 872 1135 167 TO paul.quilkey@enron.com
## 873 1136 167 TO paul.racicot@enron.com
## 874 1137 167 TO pushkar.shahi@enron.com
## 875 1138 167 TO paul.smith@enron.com
## 876 1140 167 TO robin.barbe@enron.com
## 877 1142 167 TO bob.crane@enron.com
## 878 1143 167 TO rudy.dautel@enron.com
## 879 1144 167 TO robert.fuller@enron.com
## 880 1145 167 TO rob.mcdonald@enron.com
## 881 1146 167 TO richard.schneider@enron.com
## 882 1147 167 TO raymond.yeow@enron.com
## 883 1149 167 TO stephane.brodeur@enron.com
## 884 1151 167 TO steve.elliott@enron.com
## 885 1152 167 TO scott.hendrickson@enron.com
## 886 1153 167 TO steven.kleege@enron.com
## 887 1154 167 TO sarah.mulholland@enron.com
## 888 1155 167 TO susan.pereira@enron.com
## 889 1156 167 TO spencer.vosko@enron.com
## 890 1157 167 TO tim.belden@enron.com
## 891 1158 167 TO theresa.branney@enron.com
## 892 1159 167 TO terri.clynes@enron.com
## 893 1160 167 TO tammi.depaolis@enron.com
## 894 1162 167 TO tom.dutta@enron.com
## 895 1165 167 TO william.stuart@enron.com
## 896 1166 167 TO mark.davis@enron.com
## 897 1167 167 TO larry.gagliardi@enron.com
## 898 1168 167 TO alan.engberg@enron.com
## 899 1169 167 TO john.lavorato@enron.com
## 900 1170 167 TO adam.metry@enron.com
## 901 1173 167 TO bhavna.pandya@enron.com
## 902 1174 167 TO bill.berkeland@enron.com
## 903 1175 167 TO bill.rust@enron.com
## 904 1176 167 TO bill.white@enron.com
## 905 1177 167 TO brando.hayden@enron.com
## 906 1178 167 TO caroline.abramo@enron.com
## 907 1179 167 TO corry.bentley@enron.com
## 908 1180 167 TO craig.breslau@enron.com
## 909 1181 167 TO cyntia.pastega@enron.com
## 910 1182 167 TO danny.conner@enron.com
## 911 1184 167 TO dave.mangskau@enron.com
## 912 1185 167 TO david.walsh@enron.com
## 913 1186 167 TO derek.davies@enron.com
## 914 1187 167 TO doug.miller@enron.com
## 915 1188 167 TO doug.paterson@enron.com
## 916 1189 167 TO edward.baughman@enron.com
## 917 1190 167 TO edward.gottlob@enron.com
## 918 1191 167 TO ellen.su@enron.com
## 919 1192 167 TO gary.taylor@enron.com
## 920 1193 167 TO gerald.gilbert@enron.com
## 921 1194 167 TO grant.oh@enron.com
## 922 1195 167 TO greg.mcclendon@enron.com
## 923 1196 167 TO greg.woulfe@enron.com
## 924 1197 167 TO gretchen.lotz@enron.com
## 925 1198 167 TO janel.guerrero@enron.com
## 926 1199 167 TO janelle.scheuer@enron.com
## 927 1200 167 TO jason.seigal@enron.com
## 928 1201 167 TO jason.choate@enron.com
## 929 1202 167 TO jay.hatfield@enron.com
## 930 1204 167 TO jay.webb@enron.com
## 931 1205 167 TO jean-sebastien.fontaine@enron.com
## 932 1207 167 TO jeff.pearson@enron.com
## 933 1208 167 TO jennifer.fraser@enron.com
## 934 1209 167 TO jennifer.shipos@enron.com
## 935 1210 167 TO jim.fallon@enron.com
## 936 1211 167 TO joseph.piotrowski@enron.com
## 937 1212 167 TO john.llodra@enron.com
## 938 1213 167 TO john.singer@enron.com
## 939 1215 167 TO laura.podurgiel@enron.com
## 940 1216 167 TO lee.fascetti@enron.com
## 941 1217 167 TO lisa.burnett@enron.com
## 942 1218 167 TO lisa.deakin@enron.com
## 943 1219 167 TO lisa.nemec@enron.com
## 944 1220 167 TO maria.valdes@enron.com
## 945 1221 167 TO mark.rodriguez@enron.com
## 946 1222 167 TO mark.fischer@enron.com
## 947 1223 167 TO mark.smith@enron.com
## 948 1224 167 TO mike.curry@enron.com
## 949 1225 167 TO monique.sanchez@enron.com
## 950 1226 167 TO oscar.dalton@enron.com
## 951 1227 167 TO patrick.hanse@enron.com
## 952 1229 167 TO pavel.zadorozhny@enron.com
## 953 1230 167 TO richard.tomaski@enron.com
## 954 1231 167 TO rick.dietz@enron.com
## 955 1232 167 TO doug.sewell@enron.com
## 956 1233 167 TO rogers.herndon@enron.com
## 957 1234 167 TO rudy.acevedo@enron.com
## 958 1235 167 TO s.story@enron.com
## 959 1236 167 TO scott.goodell@enron.com
## 960 1238 167 TO shawn.cumberland@enron.com
## 961 1239 167 TO stephen.klein@enron.com
## 962 1240 167 TO steve.crumley@enron.com
## 963 1241 167 TO steven.curlee@enron.com
## 964 1242 167 TO steven.kleege@enron.com
## 965 1243 167 TO steven.vu@enron.com
## 966 1244 167 TO stewart.rosman@enron.com
## 967 1245 167 TO susan.wood@enron.com
## 968 1246 167 TO tk.lohman@enron.com
## 969 1247 167 TO tim.heizenrader@enron.com
## 970 1248 167 TO todd.richardson@enron.com
## 971 1249 167 TO tom.alonso@enron.com
## 972 1250 167 TO tom.may@enron.com
## 973 1251 167 TO tom.swank@enron.com
## 974 1252 167 TO troy.black@enron.com
## 975 1253 167 TO w.hicks@enron.com
## 976 1254 167 TO zachary.sampson@enron.com
## 977 1255 167 TO zal.masani@enron.com
## 978 1257 167 CC dave.samuels@enron.com
## 979 1260 167 BCC dave.samuels@enron.com
## 980 1262 168 TO all.worldwide@enron.com
## 981 1263 169 TO tswg@caiso.com
## 982 1264 169 CC 20participants@caiso.com
## 983 1265 169 BCC 20participants@caiso.com
## 984 1266 170 TO 20participants@caiso.com
## 985 1267 170 CC cmrcoreteam@caiso.com
## 986 1268 170 CC cmrsteeringcommittee@caiso.com
## 987 1269 170 CC cmrexecutivepolicyteam@caiso.com
## 988 1270 170 CC alexp@eccointl.com
## 989 1271 170 CC adp3@pge.com
## 990 1272 170 CC asheffrin@caiso.com
## 991 1273 170 CC bwoertz@caiso.com
## 992 1274 170 CC cgates@caiso.com
## 993 1275 170 CC ccameron@caiso.com
## 994 1276 170 CC dvhawk@aol.com
## 995 1277 170 CC eberlin@swidlaw.com
## 996 1278 170 CC eschmid@caiso.com
## 997 1279 170 CC afrahimi@nilou.com
## 998 1280 170 CC frahimi@caiso.com
## 999 1281 170 CC flong@caiso.com
## 1000 1282 170 CC wolak@zia.stanford.edu
## 1001 1283 170 CC gangelidis@caiso.com
## 1002 1284 170 CC kkelley@caiso.com
## 1003 1285 170 CC lkaimer@caiso.com
## 1004 1286 170 CC lkristov@caiso.com
## 1005 1287 170 CC mrothleder@caiso.com
## 1006 1288 170 CC mwillis@caiso.com
## 1007 1289 170 CC ntraweek@caiso.com
## 1008 1290 170 CC rwilson@stanford.edu
## 1009 1291 170 CC rtreinen@caiso.com
## 1010 1292 170 CC saatkins@swidlaw.com
## 1011 1293 170 CC sgerber@caiso.com
## 1012 1294 170 CC sgreenleaf@caiso.com
## 1013 1295 170 CC twu@caiso.com
## 1014 1296 170 CC vkasarjian@caiso.com
## 1015 1297 170 CC zalaywan@caiso.com
## 1016 1298 170 BCC cmrcoreteam@caiso.com
## 1017 1299 170 BCC cmrsteeringcommittee@caiso.com
## 1018 1300 170 BCC cmrexecutivepolicyteam@caiso.com
## 1019 1301 170 BCC alexp@eccointl.com
## 1020 1302 170 BCC adp3@pge.com
## 1021 1303 170 BCC asheffrin@caiso.com
## 1022 1304 170 BCC bwoertz@caiso.com
## 1023 1305 170 BCC cgates@caiso.com
## 1024 1306 170 BCC ccameron@caiso.com
## 1025 1307 170 BCC dvhawk@aol.com
## 1026 1308 170 BCC eberlin@swidlaw.com
## 1027 1309 170 BCC eschmid@caiso.com
## 1028 1310 170 BCC afrahimi@nilou.com
## 1029 1311 170 BCC frahimi@caiso.com
## 1030 1312 170 BCC flong@caiso.com
## 1031 1313 170 BCC wolak@zia.stanford.edu
## 1032 1314 170 BCC gangelidis@caiso.com
## 1033 1315 170 BCC kkelley@caiso.com
## 1034 1316 170 BCC lkaimer@caiso.com
## 1035 1317 170 BCC lkristov@caiso.com
## 1036 1318 170 BCC mrothleder@caiso.com
## 1037 1319 170 BCC mwillis@caiso.com
## 1038 1320 170 BCC ntraweek@caiso.com
## 1039 1321 170 BCC rwilson@stanford.edu
## 1040 1322 170 BCC rtreinen@caiso.com
## 1041 1323 170 BCC saatkins@swidlaw.com
## 1042 1324 170 BCC sgerber@caiso.com
## 1043 1325 170 BCC sgreenleaf@caiso.com
## 1044 1326 170 BCC twu@caiso.com
## 1045 1327 170 BCC vkasarjian@caiso.com
## 1046 1328 170 BCC zalaywan@caiso.com
## 1047 1329 171 TO all.america@enron.com
## 1048 1330 172 TO all.worldwide@enron.com
## 1049 1331 173 TO bromberg@cgalaska.uscg.mil
## 1050 1332 173 TO balgeo@rpw200.com
## 1051 1333 173 TO bill.pond@garden.com
## 1052 1335 173 TO bfogel@hbs.edu
## 1053 1336 173 TO ccorl@cga.uscg.mil
## 1054 1337 173 TO dallman@ballston.uscg.mil
## 1055 1338 173 TO dostergaard@lantd5.uscg.mil
## 1056 1339 173 TO kmbourdon@aol.com
## 1057 1340 173 TO dspade65@aol.com
## 1058 1341 173 TO dev.braganza@garden.com
## 1059 1342 173 TO dontrone@email.msn.com
## 1060 1343 173 TO dfears@comdt.uscg.mil
## 1061 1344 173 TO dwhitmer@d11.uscg.mil
## 1062 1345 173 TO phndh@rpnet.net
## 1063 1346 173 TO garret.guinn@kaisertwd.com
## 1064 1347 173 TO h.schmidt@internet.uscg.mil
## 1065 1348 173 TO james.roth@whiting-turner.com
## 1066 1349 173 TO jddow@shore.net
## 1067 1350 173 TO jpiche@kpmg.com
## 1068 1351 173 TO jandrews@rdc.uscg.mil
## 1069 1352 173 TO j.vorbach@worldnet.att.net
## 1070 1353 173 TO jcoburn@whoi.edu
## 1071 1354 173 TO jsanto@mba.2001.hbs.edu
## 1072 1355 173 TO jrwhitehead@msoboston.uscg.mil
## 1073 1356 173 TO jgalo@mit.edu
## 1074 1357 173 TO jdheller@cga.uscg.mil
## 1075 1358 173 TO jjaskot@jwlaw.com
## 1076 1359 173 TO jmcderm926@aol.com
## 1077 1360 173 TO jnolan@d9.uscg.mil
## 1078 1361 173 TO crossley.mw@pg.com
## 1079 1362 173 TO miltr@houxchange.ckor.com
## 1080 1363 173 TO njarmstrong@avondale.com
## 1081 1364 173 TO akflynn@alaska.com
## 1082 1365 173 TO pboynton@d1.uscg.mil
## 1083 1366 173 TO rich@beutel-usa.com
## 1084 1367 173 TO richard.lerudis@level3.com
## 1085 1368 173 TO rlsco@sprynet.com
## 1086 1369 173 TO haymort78@aol.com
## 1087 1370 173 TO rwalther@tuskercorp.com
## 1088 1371 173 TO rblendu@aol.com
## 1089 1372 173 TO kirkpat@mit.edu
## 1090 1373 173 TO steve@taxpayer.net
## 1091 1374 173 TO jfsf@mindspring.com
## 1092 1375 173 TO tlindstrom@pacnorwest.uscg.mil
## 1093 1376 173 TO tim_atkin@sra.com
## 1094 1377 173 TO timothy.noonan.wg97@wharton.upenn.edu
## 1095 1378 173 TO abaginski@cga.uscg.mil
## 1096 1379 173 TO tripp14@aol.com
## 1097 1380 173 TO jdsbridge@aol.com
## 1098 1381 173 TO gronlund@ctol.net
## 1099 1382 173 TO yale.peebles@bain.com
## 1100 1383 174 TO ena.employees@enron.com
## 1101 1384 175 TO all.worldwide@enron.com
## 1102 1385 176 TO all.worldwide@enron.com
## 1103 1386 177 TO all.worldwide@enron.com
## 1104 1387 178 TO all.worldwide@enron.com
## 1105 1388 179 TO portland.desk@enron.com
## 1106 1389 180 TO tim.belden@enron.com
## 1107 1391 180 TO jeff.richter@enron.com
## 1108 1398 180 TO tom.alonso@enron.com
## 1109 1399 180 TO mark.fischer@enron.com
## 1110 1400 180 TO stewart.rosman@enron.com
## 1111 1401 180 TO greg.wolfe@enron.com
## 1112 1402 180 TO kristian.lande@enron.com
## 1113 1403 180 TO monica.lande@enron.com
## 1114 1404 180 TO valarie.sabo@enron.com
## 1115 1405 181 TO tim.belden@enron.com
## 1116 1407 181 TO jeff.richter@enron.com
## 1117 1414 181 TO tom.alonso@enron.com
## 1118 1415 181 TO mark.fischer@enron.com
## 1119 1416 181 TO stewart.rosman@enron.com
## 1120 1417 181 TO greg.wolfe@enron.com
## 1121 1418 181 TO kristian.lande@enron.com
## 1122 1419 181 TO monica.lande@enron.com
## 1123 1420 181 TO valarie.sabo@enron.com
## 1124 1421 182 TO tim.belden@enron.com
## 1125 1423 182 TO jeff.richter@enron.com
## 1126 1430 182 TO tom.alonso@enron.com
## 1127 1431 182 TO mark.fischer@enron.com
## 1128 1432 182 TO kristian.lande@enron.com
## 1129 1433 182 TO monica.lande@enron.com
## 1130 1434 182 TO stewart.rosman@enron.com
## 1131 1435 182 TO greg.wolfe@enron.com
## 1132 1436 183 TO tim.belden@enron.com
## 1133 1438 183 TO jeff.richter@enron.com
## 1134 1445 183 TO tom.alonso@enron.com
## 1135 1446 183 TO mark.fischer@enron.com
## 1136 1447 183 TO stewart.rosman@enron.com
## 1137 1448 183 TO kristian.lande@enron.com
## 1138 1449 183 TO monica.lande@enron.com
## 1139 1450 183 TO valarie.sabo@enron.com
## 1140 1451 184 TO tim.belden@enron.com
## 1141 1453 184 TO jeff.richter@enron.com
## 1142 1460 184 TO tom.alonso@enron.com
## 1143 1461 184 TO mark.fischer@enron.com
## 1144 1462 184 TO stewart.rosman@enron.com
## 1145 1463 184 TO greg.wolfe@enron.com
## 1146 1464 184 TO kristian.lande@enron.com
## 1147 1465 184 TO monica.lande@enron.com
## 1148 1466 185 TO tim.belden@enron.com
## 1149 1468 185 TO jeff.richter@enron.com
## 1150 1475 185 TO tom.alonso@enron.com
## 1151 1476 185 TO mark.fischer@enron.com
## 1152 3499 462 CC russell_c_mills@calpx.com
## 1153 3500 462 CC mark_a_thompson@calpx.com
## 1154 3501 462 BCC russell_c_mills@calpx.com
## 1155 3502 462 BCC mark_a_thompson@calpx.com
## 1156 3504 463 CC mark_a_thompson@calpx.com
## 1157 3505 463 CC russell_c_mills@calpx.com
## 1158 3506 463 CC mark_a._hoppe@calpx.com
## 1159 3507 463 BCC mark_a_thompson@calpx.com
## 1160 3508 463 BCC russell_c_mills@calpx.com
## 1161 3509 463 BCC mark_a._hoppe@calpx.com
## 1162 3510 464 TO christian.yoder@enron.com
## 1163 3511 464 TO chris.stokley@enron.com
## 1164 3512 464 TO jeff.richter@enron.com
## 1165 3513 464 TO tim.belden@enron.com
## 1166 3515 464 CC monica.lande@enron.com
## 1167 3516 464 CC donald.vinson@enron.com
## 1168 3517 464 CC d.hunsucker@enron.com
## 1169 3519 464 BCC monica.lande@enron.com
## 1170 3520 464 BCC donald.vinson@enron.com
## 1171 3521 464 BCC d.hunsucker@enron.com
## 1172 3536 466 TO christian.yoder@enron.com
## 1173 3537 467 TO marketparticipants@caiso.com
## 1174 3538 467 CC 20relations@caiso.com
## 1175 3539 467 CC mmcquay@caiso.com
## 1176 3540 467 BCC 20relations@caiso.com
## 1177 3541 467 BCC mmcquay@caiso.com
## 1178 3542 468 TO marketparticipants@caiso.com
## 1179 3543 468 TO brbarkovich@earthlink.net
## 1180 3544 468 TO bmspeckman@aol.com
## 1181 3545 468 TO cabaker@duke-energy.com
## 1182 3546 468 TO cjones@swc.org
## 1183 3547 468 TO foothi19@idt.net
## 1184 3548 468 TO jburne@ladwp.com
## 1185 3549 468 TO kfyip@seiworldwide.com
## 1186 3550 468 TO mccreem@sce.com
## 1187 3551 468 TO mwynne@uoc.com
## 1188 3552 468 TO pgs@ieee.org
## 1189 3553 468 TO rjhickok@duke-energy.com
## 1190 3554 468 TO rluck@dwp.ci.la.ca.us
## 1191 3555 468 TO sce2@caiso.com
## 1192 3556 468 TO braun@braunlegal.com
## 1193 3557 469 TO marketparticipants@caiso.com
## 1194 3558 470 TO marketparticipants@caiso.com
## 1195 3559 471 TO marketparticipants@caiso.com
## 1196 3560 472 TO marketparticipants@caiso.com
## 1197 3561 473 TO tom.alonso@enron.com
## 1198 3563 473 CC mary.hain@enron.com
## 1199 3565 473 BCC mary.hain@enron.com
## 1200 3566 474 TO marketparticipants@caiso.com
## 1201 3567 475 TO marketparticipants@caiso.com
## 1202 3568 476 TO marketparticipants@caiso.com
## 1203 3569 476 TO scsettlecontacts@caiso.com
## 1204 3570 476 CC isobussys@caiso.com
## 1205 3571 476 CC isoclientrelations@caiso.com
## 1206 3572 476 CC twinter@caiso.com
## 1207 3573 476 CC zlazic@caiso.com
## 1208 3574 476 CC wregan@caiso.com
## 1209 3575 476 CC sgerber@caiso.com
## 1210 3576 476 CC bbouillon@caiso.com
## 1211 3577 476 BCC isobussys@caiso.com
## 1212 3578 476 BCC isoclientrelations@caiso.com
## 1213 3579 476 BCC twinter@caiso.com
## 1214 3580 476 BCC zlazic@caiso.com
## 1215 3581 476 BCC wregan@caiso.com
## 1216 3582 476 BCC sgerber@caiso.com
## 1217 3583 476 BCC bbouillon@caiso.com
## 1218 3584 477 TO jubran.whalan@enron.com
## 1219 3585 477 TO roger.yang@enron.com
## 1220 3586 477 TO dennis.benevides@enron.com
## 1221 3587 477 TO mary.hain@enron.com
## 1222 3589 477 TO chris.foster@enron.com
## 1223 3591 477 TO chris.stokley@enron.com
## 1224 3592 477 TO sandra.mccubbin@enron.com
## 1225 3593 477 TO mona.petrochko@enron.com
## 1226 3595 477 TO bruno.gaillard@enron.com
## 1227 3597 477 TO sarah.novosel@enron.com
## 1228 3598 477 TO paul.kaufman@enron.com
## 1229 3599 477 TO tim.belden@enron.com
## 1230 3600 477 TO douglas.condon@enron.com
## 1231 3601 477 TO phyllis.anzalone@enron.com
## 1232 3602 477 TO martin.wenzel@enron.com
## 1233 3604 477 TO john.malowney@enron.com
## 1234 3605 477 TO steve.montovano@enron.com
## 1235 3606 477 TO janine.migden@enron.com
## 1236 3607 477 TO aleck.dadson@enron.com
## 1237 3608 477 CC rcarroll@bracepatt.com
## 1238 3609 477 BCC rcarroll@bracepatt.com
## 1239 3610 478 TO marketparticipants@caiso.com
## 1240 3611 478 CC isoclientrelations@caiso.com
## 1241 3612 478 CC mmcquay@caiso.com
## 1242 3613 478 BCC isoclientrelations@caiso.com
## 1243 3614 478 BCC mmcquay@caiso.com
## 1244 3615 479 TO marketparticipants@caiso.com
## 1245 3616 480 TO phyllis.anzalone@enron.com
## 1246 3617 480 TO douglas.condon@enron.com
## 1247 3618 480 TO david.forster@enron.com
## 1248 3619 480 TO john.neslage@enron.com
## 1249 3621 480 CC sf.ga@enron.com
## 1250 3622 480 CC paul.kaufman@enron.com
## 1251 3624 480 BCC sf.ga@enron.com
## 1252 3625 480 BCC paul.kaufman@enron.com
## 1253 3627 481 TO marketparticipants@caiso.com
## 1254 3628 481 TO tswg@caiso.com
## 1255 3629 481 CC isoclientrelations@caiso.com
## 1256 3630 481 CC cvangelatos@caiso.com
## 1257 3631 481 CC mrothleder@caiso.com
## 1258 3632 481 BCC isoclientrelations@caiso.com
## 1259 3633 481 BCC cvangelatos@caiso.com
## 1260 3634 481 BCC mrothleder@caiso.com
## 1261 3635 482 TO 20participants@caiso.com
## 1262 3636 483 TO marketparticipants@caiso.com
## 1263 3637 484 TO marketparticipants@caiso.com
## 1264 3638 485 TO 20participants@caiso.com
## 1265 3639 485 CC ntraweek@caiso.com
## 1266 3640 485 CC sauradou@caiso.com
## 1267 3641 485 CC mkiverson@caiso.com
## 1268 3642 485 CC bwoertz@caiso.com
## 1269 3643 485 CC dfuller@caiso.com
## 1270 3644 485 CC amiremadi@caiso.com
## 1271 3645 485 CC aleonard@caiso.com
## 1272 3646 485 CC aagustin@caiso.com
## 1273 3647 485 CC chood@caiso.com
## 1274 3648 485 CC csibley@caiso.com
## 1275 3649 485 CC dlecureux@caiso.com
## 1276 3650 485 CC dtimson@caiso.com
## 1277 3651 485 CC dpeters@caiso.com
## 1278 3652 485 CC jblatchford@caiso.com
## 1279 3653 485 CC jcole@caiso.com
## 1280 3654 485 CC jgoodin@caiso.com
## 1281 3655 485 CC kalmeida@caiso.com
## 1282 3656 485 CC khoffman@caiso.com
## 1283 3657 485 CC mhough@caiso.com
## 1284 3658 485 CC smorris@caiso.com
## 1285 3659 485 BCC ntraweek@caiso.com
## 1286 3660 485 BCC sauradou@caiso.com
## 1287 3661 485 BCC mkiverson@caiso.com
## 1288 3662 485 BCC bwoertz@caiso.com
## 1289 3663 485 BCC dfuller@caiso.com
## 1290 3664 485 BCC amiremadi@caiso.com
## 1291 3665 485 BCC aleonard@caiso.com
## 1292 3666 485 BCC aagustin@caiso.com
## 1293 3667 485 BCC chood@caiso.com
## 1294 3668 485 BCC csibley@caiso.com
## 1295 3669 485 BCC dlecureux@caiso.com
## 1296 3670 485 BCC dtimson@caiso.com
## 1297 3671 485 BCC dpeters@caiso.com
## 1298 3672 485 BCC jblatchford@caiso.com
## 1299 3673 485 BCC jcole@caiso.com
## 1300 3674 485 BCC jgoodin@caiso.com
## 1301 3675 485 BCC kalmeida@caiso.com
## 1302 3676 485 BCC khoffman@caiso.com
## 1303 3677 485 BCC mhough@caiso.com
## 1304 3678 485 BCC smorris@caiso.com
## 1305 3679 486 TO tom.alonso@enron.com
## 1306 3680 486 TO tim.belden@enron.com
## 1307 3682 486 TO mary.hain@enron.com
## 1308 3683 486 CC paul.kaufman@enron.com
## 1309 3684 486 CC jeff.brown@enron.com
## 1310 3685 486 BCC paul.kaufman@enron.com
## 1311 3686 486 BCC jeff.brown@enron.com
## 1312 3687 487 TO marketparticipants@caiso.com
## 1313 3688 488 TO marketparticipants@caiso.com
## 1314 3689 488 TO tswg@caiso.com
## 1315 3690 489 TO 20participants@caiso.com
## 1316 3691 490 TO 20participants@caiso.com
## 1317 3692 491 TO 20participants@caiso.com
## 1318 3693 492 TO 20participants@caiso.com
## 1319 3694 493 TO 20participants@caiso.com
## 1320 3695 493 CC eschmid@caiso.com
## 1321 3696 493 CC crobinson@caiso.com
## 1322 3697 493 CC kfluckiger@caiso.com
## 1323 3698 493 CC zlazic@caiso.com
## 1324 3699 493 CC rabernathy@caiso.com
## 1325 3700 493 CC pmackin@caiso.com
## 1326 3701 493 CC sgreenleaf@caiso.com
## 1327 3702 493 CC cmrcoreteam@caiso.com
## 1328 3703 493 CC cmrsteeringcommittee@caiso.com
## 1329 3704 493 CC jmiller@caiso.com
## 1330 3705 493 CC saatkins@swidlaw.com
## 1331 3706 493 CC rwilson@stanford.edu
## 1332 3707 493 CC wolak@zia.stanford.edu
## 1333 3708 493 CC jmcintosh@caiso.com
## 1334 3709 493 CC eriley@caiso.com
## 1335 3710 493 CC ntraweek@caiso.com
## 1336 3711 493 CC tbibb@caiso.com
## 1337 3712 493 CC pgarris@caiso.com
## 1338 3713 493 CC bellard@caiso.com
## 1339 3714 493 CC mwillis@caiso.com
## 1340 3715 493 CC dwimberly@caiso.com
## 1341 3716 493 CC smccorkle@caiso.com
## 1342 3717 493 CC djohns@caiso.com
## 1343 3718 493 CC cmrexecutivepolicyteam@caiso.com
## 1344 3719 493 CC eberlin@swidlaw.com
## 1345 3720 493 CC ehildebrandt@caiso.com
## 1346 3721 493 CC afrahimi@nilou.com
## 1347 3722 493 CC kgjaffe@swidlaw.com
## 1348 3723 493 CC mbockie@caiso.com
## 1349 3724 493 BCC eschmid@caiso.com
## 1350 3725 493 BCC crobinson@caiso.com
## 1351 3726 493 BCC kfluckiger@caiso.com
## 1352 3727 493 BCC zlazic@caiso.com
## 1353 3728 493 BCC rabernathy@caiso.com
## 1354 3729 493 BCC pmackin@caiso.com
## 1355 3730 493 BCC sgreenleaf@caiso.com
## 1356 3731 493 BCC cmrcoreteam@caiso.com
## 1357 3732 493 BCC cmrsteeringcommittee@caiso.com
## 1358 3733 493 BCC jmiller@caiso.com
## 1359 3734 493 BCC saatkins@swidlaw.com
## 1360 3735 493 BCC rwilson@stanford.edu
## 1361 3736 493 BCC wolak@zia.stanford.edu
## 1362 3737 493 BCC jmcintosh@caiso.com
## 1363 3738 493 BCC eriley@caiso.com
## 1364 3739 493 BCC ntraweek@caiso.com
## 1365 3740 493 BCC tbibb@caiso.com
## 1366 3741 493 BCC pgarris@caiso.com
## 1367 3742 493 BCC bellard@caiso.com
## 1368 3743 493 BCC mwillis@caiso.com
## 1369 3744 493 BCC dwimberly@caiso.com
## 1370 3745 493 BCC smccorkle@caiso.com
## 1371 3746 493 BCC djohns@caiso.com
## 1372 3747 493 BCC cmrexecutivepolicyteam@caiso.com
## 1373 3748 493 BCC eberlin@swidlaw.com
## 1374 3749 493 BCC ehildebrandt@caiso.com
## 1375 3750 493 BCC afrahimi@nilou.com
## 1376 3751 493 BCC kgjaffe@swidlaw.com
## 1377 3752 493 BCC mbockie@caiso.com
## 1378 3753 494 TO 20participants@caiso.com
## 1379 3754 495 TO 20participants@caiso.com
## 1380 3755 495 CC cmrcoreteam@caiso.com
## 1381 3756 495 CC cmrexecutivepolicyteam@caiso.com
## 1382 3757 495 CC cmrsteeringcommittee@caiso.com
## 1383 3758 495 BCC cmrcoreteam@caiso.com
## 1384 3759 495 BCC cmrexecutivepolicyteam@caiso.com
## 1385 3760 495 BCC cmrsteeringcommittee@caiso.com
## 1386 3762 497 TO 20participants@caiso.com
## 1387 3763 498 TO 20participants@caiso.com
## 1388 3764 498 CC cmrsteeringcommittee@caiso.com
## 1389 3765 498 CC cmrcoreteam@caiso.com
## 1390 3766 498 CC cmrexecutivepolicyteam@caiso.com
## 1391 3767 498 BCC cmrsteeringcommittee@caiso.com
## 1392 3768 498 BCC cmrcoreteam@caiso.com
## 1393 3769 498 BCC cmrexecutivepolicyteam@caiso.com
## 1394 3770 499 TO 20participants@caiso.com
## 1395 3771 500 TO 20participants@caiso.com
## 1396 3772 500 CC cmrsteeringcommittee@caiso.com
## 1397 3773 500 CC cmrexecutivepolicyteam@caiso.com
## 1398 3774 500 CC cmrcoreteam@caiso.com
## 1399 3775 500 BCC cmrsteeringcommittee@caiso.com
## 1400 3776 500 BCC cmrexecutivepolicyteam@caiso.com
## 1401 3777 500 BCC cmrcoreteam@caiso.com
## 1402 3778 501 TO 20participants@caiso.com
## 1403 3779 501 TO tswg@caiso.com
## 1404 3780 501 TO alzu@dynegy.com
## 1405 3781 501 TO wasil@wapa.gov
## 1406 3782 501 TO erbrickb@epenergy.com
## 1407 3783 501 TO byve@dynegy.com
## 1408 3784 501 TO dmccann@pac.state.ca.us
## 1409 3785 501 TO dhuckabay@apx.com
## 1410 3786 501 TO eather.dunton@enron.com
## 1411 3787 501 TO fred@ncpa.com
## 1412 3788 501 TO hewettk@kochind.com
## 1413 3789 501 TO bowdenj@epenergy.com
## 1414 3790 501 TO jay_e_brandenberger@reliantenergy.com
## 1415 3791 501 TO jim.portouw@pacificorp.com
## 1416 3792 501 TO jjjo@dynegy.com
## 1417 3793 501 TO juan_g_sanchez@reliantenergy.com
## 1418 3794 501 TO kwright@water.ca.gov
## 1419 3795 501 TO kenny_kam@calpx.com
## 1420 3796 501 TO kfrankeny@reliantenergy.com
## 1421 3797 501 TO kmjohnson@bpa.gov
## 1422 3798 501 TO kevin_nordt@pgn.com
## 1423 3799 501 TO lane.mcgullion@southernenergy.com
## 1424 3800 501 TO reardomb@sce.com
## 1425 3801 501 TO mark@apx.com
## 1426 3802 501 TO mdkemple@bpa.gov
## 1427 3803 501 TO beckettm@kochind.com
## 1428 3804 501 TO pat@ncpa.com
## 1429 3805 501 TO pjmartel@srpnet.com
## 1430 3806 501 TO rjha@dynegy.com
## 1431 3807 501 TO rhonda.morgan@williams.com
## 1432 3808 501 TO rdelgado@pac.state.ca.us
## 1433 3809 501 TO rljohn@water.ca.gov
## 1434 3810 501 TO sdavis@apx.com
## 1435 3811 501 TO sakagusc@sce.com
## 1436 3812 501 TO shonda.meyer@williams.com
## 1437 3813 501 TO smarco_m_ho@calpx.com
## 1438 3814 501 TO tml9@pge.com
## 1439 3815 501 TO tlg4@pge.com
## 1440 3816 501 TO tom@ncpa.com
## 1441 3817 501 CC isoclientrelations@caiso.com
## 1442 3818 501 CC mrothleder@caiso.com
## 1443 3819 501 CC ntraweek@caiso.com
## 1444 3820 501 CC bkindel@caiso.com
## 1445 3821 501 CC ajaschke@caiso.com
## 1446 3822 501 CC cng@caiso.com
## 1447 3823 501 CC sgerber@caiso.com
## 1448 3824 501 CC dnelsen@caiso.com
## 1449 3825 501 CC stenbroeck@caiso.com
## 1450 3826 501 CC cvangelatos@caiso.com
## 1451 3827 501 CC lfeusi@caiso.com
## 1452 3828 501 CC rfudeh@caiso.com
## 1453 3829 501 CC gford@caiso.com
## 1454 3830 501 CC vkondragunta@caiso.com
## 1455 3831 501 BCC isoclientrelations@caiso.com
## 1456 3832 501 BCC mrothleder@caiso.com
## 1457 3833 501 BCC ntraweek@caiso.com
## 1458 3834 501 BCC bkindel@caiso.com
## 1459 3835 501 BCC ajaschke@caiso.com
## 1460 3836 501 BCC cng@caiso.com
## 1461 3837 501 BCC sgerber@caiso.com
## 1462 3838 501 BCC dnelsen@caiso.com
## 1463 3839 501 BCC stenbroeck@caiso.com
## 1464 3840 501 BCC cvangelatos@caiso.com
## 1465 3841 501 BCC lfeusi@caiso.com
## 1466 3842 501 BCC rfudeh@caiso.com
## 1467 3843 501 BCC gford@caiso.com
## 1468 3844 501 BCC vkondragunta@caiso.com
## 1469 3845 502 TO 20participants@caiso.com
## 1470 3846 503 TO 20participants@caiso.com
## 1471 3847 504 TO 20participants@caiso.com
## 1472 3848 505 TO 20participants@caiso.com
## 1473 3849 506 TO 20participants@caiso.com
## 1474 3850 507 TO 20participants@caiso.com
## 1475 3851 507 CC cmrsteeringcommittee@caiso.com
## 1476 3852 507 CC cmrexecutivepolicyteam@caiso.com
## 1477 3853 507 CC cmrcoreteam@caiso.com
## 1478 3854 507 BCC cmrsteeringcommittee@caiso.com
## 1479 3855 507 BCC cmrexecutivepolicyteam@caiso.com
## 1480 3856 507 BCC cmrcoreteam@caiso.com
## 1481 3857 508 TO 20participants@caiso.com
## 1482 3858 508 CC cmrcoreteam@caiso.com
## 1483 3859 508 CC cmrexecutivepolicyteam@caiso.com
## 1484 3860 508 CC cmrsteeringcommittee@caiso.com
## 1485 3861 508 BCC cmrcoreteam@caiso.com
## 1486 3862 508 BCC cmrexecutivepolicyteam@caiso.com
## 1487 3863 508 BCC cmrsteeringcommittee@caiso.com
## 1488 3864 509 TO david.parquet@enron.com
## 1489 3865 509 TO tim.belden@enron.com
## 1490 3867 509 TO dennis.benevides@enron.com
## 1491 3868 509 TO roger.yang@enron.com
## 1492 3869 509 TO elsa.piekielniak@enron.com
## 1493 3871 509 TO scott.vonderheide@enron.com
## 1494 3872 509 TO bruno.gaillard@enron.com
## 1495 3874 509 TO mona.petrochko@enron.com
## 1496 3875 509 TO sandra.mccubbin@enron.com
## 1497 3876 509 TO chris.foster@enron.com
## 1498 3877 509 TO paul.kaufman@enron.com
## 1499 3879 509 TO mary.hain@enron.com
## 1500 3882 510 CC jeff.richter@enron.com
## 1501 3884 510 BCC jeff.richter@enron.com
## 1502 3885 511 TO 20participants@caiso.com
## 1503 3886 512 TO 20participants@caiso.com
## 1504 3887 513 TO 20participants@caiso.com
## 1505 3889 515 TO 20participants@caiso.com
## 1506 3890 516 TO 20participants@caiso.com
## 1507 3891 516 CC tswg@caiso.com
## 1508 3892 516 BCC tswg@caiso.com
## 1509 3905 518 TO 20participants@caiso.com
## 1510 3906 519 TO 20participants@caiso.com
## 1511 3907 520 TO 20participants@caiso.com
## 1512 3908 521 TO 20participants@caiso.com
## 1513 3909 522 TO 20participants@caiso.com
## 1514 3910 523 TO 20participants@caiso.com
## 1515 3911 524 TO 20participants@caiso.com
## 1516 3912 525 TO 20participants@caiso.com
## 1517 3913 526 TO 20participants@caiso.com
## 1518 3914 526 TO tswg@caiso.com
## 1519 3917 528 TO adsproject@caiso.com
## 1520 3918 528 CC cgrant@caiso.com
## 1521 3919 528 CC jcole@caiso.com
## 1522 3920 528 CC 20participants@caiso.com
## 1523 3921 528 CC gford@caiso.com
## 1524 3922 528 CC kkelley@caiso.com
## 1525 3923 528 CC isoclientrelations@caiso.com
## 1526 3924 528 BCC cgrant@caiso.com
## 1527 3925 528 BCC jcole@caiso.com
## 1528 3926 528 BCC 20participants@caiso.com
## 1529 3927 528 BCC gford@caiso.com
## 1530 3928 528 BCC kkelley@caiso.com
## 1531 3929 528 BCC isoclientrelations@caiso.com
## 1532 3931 530 TO 20participants@caiso.com
## 1533 3932 531 TO 20participants@caiso.com
## 1534 3933 531 TO scsettlecontacts@caiso.com
## 1535 3934 532 TO 20participants@caiso.com
## 1536 3935 533 TO 20participants@caiso.com
## 1537 3936 534 TO 20participants@caiso.com
## 1538 3937 535 TO 20participants@caiso.com
## 1539 3938 536 TO charlotte@wptf.org
## 1540 3939 537 TO mona.petrochko@enron.com
## 1541 3941 537 TO susan.mara@enron.com
## 1542 3942 537 TO sandra.mccubbin@enron.com
## 1543 3943 537 TO marcie.milner@enron.com
## 1544 3944 537 TO paul.kaufman@enron.com
## 1545 3945 537 TO mary.hain@enron.com
## 1546 3946 537 TO james.wood@enron.com
## 1547 3947 537 TO greg.cordell@enron.com
## 1548 3948 537 TO chris.hendrix@enron.com
## 1549 3949 537 TO martin.wenzel@enron.com
## 1550 3950 537 TO douglas.condon@enron.com
## 1551 3951 537 TO gary.mirich@enron.com
## 1552 3952 537 TO jennifer.rudolph@enron.com
## 1553 3953 537 TO chris.foster@enron.com
## 1554 3954 537 TO harry.kingerski@enron.com
## 1555 3956 537 TO roger.yang@enron.com
## 1556 3957 537 TO dennis.benevides@enron.com
## 1557 3958 537 TO david.forster@enron.com
## 1558 3959 537 TO lysa.akin@enron.com
## 1559 3960 537 TO marcia.linton@enron.com
## 1560 3972 539 TO sarah.novosel@enron.com
## 1561 3973 539 TO dennis.benevides@enron.com
## 1562 3974 539 TO roger.yang@enron.com
## 1563 3975 539 CC west.ga@enron.com
## 1564 3977 539 BCC west.ga@enron.com
## 1565 3979 540 TO mona.petrochko@enron.com
## 1566 3981 540 TO susan.mara@enron.com
## 1567 3982 540 TO sandra.mccubbin@enron.com
## 1568 3983 540 TO marcie.milner@enron.com
## 1569 3984 540 TO paul.kaufman@enron.com
## 1570 3985 540 TO mary.hain@enron.com
## 1571 3986 540 TO james.wood@enron.com
## 1572 3987 540 TO greg.cordell@enron.com
## 1573 3988 540 TO chris.hendrix@enron.com
## 1574 3989 540 TO martin.wenzel@enron.com
## 1575 3990 540 TO douglas.condon@enron.com
## 1576 3991 540 TO gary.mirich@enron.com
## 1577 3992 540 TO jennifer.rudolph@enron.com
## 1578 3993 540 TO chris.foster@enron.com
## 1579 3994 540 TO harry.kingerski@enron.com
## 1580 3996 540 TO roger.yang@enron.com
## 1581 3997 540 TO dennis.benevides@enron.com
## 1582 3998 540 TO david.forster@enron.com
## 1583 3999 540 TO lysa.akin@enron.com
## 1584 4000 540 TO marcia.linton@enron.com
## 1585 6087 850 CC susan.wadle@enron.com
## 1586 6089 850 CC john.millar@enron.com
## 1587 6090 850 CC elberg.gelin@enron.com
## 1588 6091 850 CC david.junus@enron.com
## 1589 6092 850 CC jebong.lee@enron.com
## 1590 6093 850 CC stephen.dowd@enron.com
## 1591 6094 850 BCC susan.wadle@enron.com
## 1592 6096 850 BCC john.millar@enron.com
## 1593 6097 850 BCC elberg.gelin@enron.com
## 1594 6098 850 BCC david.junus@enron.com
## 1595 6099 850 BCC jebong.lee@enron.com
## 1596 6100 850 BCC stephen.dowd@enron.com
## 1597 6102 851 CC jo.williams@enron.com
## 1598 6103 851 CC john.pritchard@enron.com
## 1599 6104 851 BCC jo.williams@enron.com
## 1600 6105 851 BCC john.pritchard@enron.com
## 1601 6107 852 CC lisa.druzbik@enron.com
## 1602 6108 852 CC ned.higgins@enron.com
## 1603 6109 852 BCC lisa.druzbik@enron.com
## 1604 6110 852 BCC ned.higgins@enron.com
## 1605 6112 853 CC ned.higgins@enron.com
## 1606 6113 853 CC lisa.druzbik@enron.com
## 1607 6114 853 BCC ned.higgins@enron.com
## 1608 6115 853 BCC lisa.druzbik@enron.com
## 1609 6118 856 TO randy.lagrimini@enron.com
## 1610 6120 857 TO bob.jacobs@enron.com
## 1611 6121 857 CC bob.burleson@enron.com
## 1612 6122 857 CC david.roensch@enron.com
## 1613 6123 857 CC diane.corbett@enron.com
## 1614 6124 857 CC john.will@enron.com
## 1615 6125 857 CC kenneth.chow@enron.com
## 1616 6127 857 CC randy.lagrimini@enron.com
## 1617 6128 857 CC randy.rice@enron.com
## 1618 6129 857 CC rich.jolly@enron.com
## 1619 6130 857 CC rick.suderman@enron.com
## 1620 6131 857 CC roy.hartstein@enron.com
## 1621 6132 857 CC susan.ralph@enron.com
## 1622 6133 857 BCC bob.burleson@enron.com
## 1623 6134 857 BCC david.roensch@enron.com
## 1624 6135 857 BCC diane.corbett@enron.com
## 1625 6136 857 BCC john.will@enron.com
## 1626 6137 857 BCC kenneth.chow@enron.com
## 1627 6139 857 BCC randy.lagrimini@enron.com
## 1628 6140 857 BCC randy.rice@enron.com
## 1629 6141 857 BCC rich.jolly@enron.com
## 1630 6142 857 BCC rick.suderman@enron.com
## 1631 6143 857 BCC roy.hartstein@enron.com
## 1632 6144 857 BCC susan.ralph@enron.com
## 1633 6145 858 TO randy.lagrimini@enron.com
## 1634 6146 858 TO john.shafer@enron.com
## 1635 6147 858 CC randy.rice@enron.com
## 1636 6149 858 CC kenneth.chow@enron.com
## 1637 6150 858 CC david.roensch@enron.com
## 1638 6151 858 CC susan.ralph@enron.com
## 1639 6152 858 CC larry.garrett@enron.com
## 1640 6153 858 CC bob.jacobs@enron.com
## 1641 6154 858 CC diane.corbett@enron.com
## 1642 6155 858 CC rick.suderman@enron.com
## 1643 6156 858 CC bob.burleson@enron.com
## 1644 6157 858 CC roy.hartstein@enron.com
## 1645 6158 858 CC john.will@enron.com
## 1646 6159 858 CC louis.soldano@enron.com
## 1647 6160 858 BCC randy.rice@enron.com
## 1648 6162 858 BCC kenneth.chow@enron.com
## 1649 6163 858 BCC david.roensch@enron.com
## 1650 6164 858 BCC susan.ralph@enron.com
## 1651 6165 858 BCC larry.garrett@enron.com
## 1652 6166 858 BCC bob.jacobs@enron.com
## 1653 6167 858 BCC diane.corbett@enron.com
## 1654 6168 858 BCC rick.suderman@enron.com
## 1655 6169 858 BCC bob.burleson@enron.com
## 1656 6170 858 BCC roy.hartstein@enron.com
## 1657 6171 858 BCC john.will@enron.com
## 1658 6172 858 BCC louis.soldano@enron.com
## 1659 6173 859 TO randy.lagrimini@enron.com
## 1660 6174 859 TO john.shafer@enron.com
## 1661 6175 859 TO randy.rice@enron.com
## 1662 6177 859 TO kenneth.chow@enron.com
## 1663 6178 859 TO david.roensch@enron.com
## 1664 6179 859 TO susan.ralph@enron.com
## 1665 6180 859 TO larry.garrett@enron.com
## 1666 6181 859 TO bob.jacobs@enron.com
## 1667 6182 859 TO diane.corbett@enron.com
## 1668 6183 859 TO bob.burleson@enron.com
## 1669 6184 859 TO roy.hartstein@enron.com
## 1670 6185 859 TO john.will@enron.com
## 1671 6186 859 TO louis.soldano@enron.com
## 1672 6187 860 TO randy.rice@enron.com
## 1673 6189 860 TO rich.jolly@enron.com
## 1674 6190 860 TO david.roensch@enron.com
## 1675 6191 860 TO randy.lagrimini@enron.com
## 1676 6192 860 TO bob.burleson@enron.com
## 1677 6193 860 TO bob.jacobs@eott.com
## 1678 6194 860 TO larry.garrett@eott.com
## 1679 6195 860 TO diane.corbett@eott.com
## 1680 6196 860 TO kenneth.chow@enron.com
## 1681 6197 860 TO norm.spalding@enron.com
## 1682 6198 860 TO earl.chanley@enron.com
## 1683 6200 861 TO rick_suderman@eott.com
## 1684 6201 861 CC randy.rice@enron.com
## 1685 6203 861 CC rich.jolly@enron.com
## 1686 6204 861 CC david.roensch@enron.com
## 1687 6205 861 CC randy.lagrimini@enron.com
## 1688 6206 861 CC bob.burleson@enron.com
## 1689 6207 861 CC bob.jacobs@eott.com
## 1690 6208 861 CC larry.garrett@eott.com
## 1691 6209 861 CC diane.corbett@eott.com
## 1692 6210 861 CC norm.spalding@enron.com
## 1693 6211 861 CC earl.chanley@enron.com
## 1694 6213 861 CC ben.asante@enron.com
## 1695 6214 861 BCC randy.rice@enron.com
## 1696 6216 861 BCC rich.jolly@enron.com
## 1697 6217 861 BCC david.roensch@enron.com
## 1698 6218 861 BCC randy.lagrimini@enron.com
## 1699 6219 861 BCC bob.burleson@enron.com
## 1700 6220 861 BCC bob.jacobs@eott.com
## 1701 6221 861 BCC larry.garrett@eott.com
## 1702 6222 861 BCC diane.corbett@eott.com
## 1703 6223 861 BCC norm.spalding@enron.com
## 1704 6224 861 BCC earl.chanley@enron.com
## 1705 6226 861 BCC ben.asante@enron.com
## 1706 6227 862 TO rick_suderman@eott.com
## 1707 6228 862 TO scott_jones@eoot.com
## 1708 6229 862 CC randy.rice@enron.com
## 1709 6231 862 CC rich.jolly@enron.com
## 1710 6232 862 CC david.roensch@enron.com
## 1711 6233 862 CC randy.lagrimini@enron.com
## 1712 6234 862 CC bob.burleson@enron.com
## 1713 6235 862 CC bob.jacobs@eott.com
## 1714 6236 862 CC larry.garrett@eott.com
## 1715 6237 862 CC diane.corbett@eott.com
## 1716 6238 862 CC kenneth.chow@enron.com
## 1717 6239 862 CC norm.spalding@enron.com
## 1718 6240 862 CC earl.chanley@enron.com
## 1719 6242 862 BCC randy.rice@enron.com
## 1720 6244 862 BCC rich.jolly@enron.com
## 1721 6245 862 BCC david.roensch@enron.com
## 1722 6246 862 BCC randy.lagrimini@enron.com
## 1723 6247 862 BCC bob.burleson@enron.com
## 1724 6248 862 BCC bob.jacobs@eott.com
## 1725 6249 862 BCC larry.garrett@eott.com
## 1726 6250 862 BCC diane.corbett@eott.com
## 1727 6251 862 BCC kenneth.chow@enron.com
## 1728 6252 862 BCC norm.spalding@enron.com
## 1729 6253 862 BCC earl.chanley@enron.com
## 1730 6256 864 TO bob.burleson@enron.com
## 1731 6257 864 CC rick_suderman@eott.com
## 1732 6258 864 CC scott_jones@eoot.com
## 1733 6259 864 CC randy.rice@enron.com
## 1734 6261 864 CC rich.jolly@enron.com
## 1735 6262 864 CC david.roensch@enron.com
## 1736 6263 864 CC randy.lagrimini@enron.com
## 1737 6264 864 CC bob.burleson@enron.com
## 1738 6265 864 CC bob.jacobs@eott.com
## 1739 6266 864 CC larry.garrett@eott.com
## 1740 6267 864 CC diane.corbett@eott.com
## 1741 6268 864 CC kenneth.chow@enron.com
## 1742 6269 864 CC norm.spalding@enron.com
## 1743 6270 864 CC earl.chanley@enron.com
## 1744 6272 864 BCC rick_suderman@eott.com
## 1745 6273 864 BCC scott_jones@eoot.com
## 1746 6274 864 BCC randy.rice@enron.com
## 1747 6276 864 BCC rich.jolly@enron.com
## 1748 6277 864 BCC david.roensch@enron.com
## 1749 6278 864 BCC randy.lagrimini@enron.com
## 1750 6279 864 BCC bob.burleson@enron.com
## 1751 6280 864 BCC bob.jacobs@eott.com
## 1752 6281 864 BCC larry.garrett@eott.com
## 1753 6282 864 BCC diane.corbett@eott.com
## 1754 6283 864 BCC kenneth.chow@enron.com
## 1755 6284 864 BCC norm.spalding@enron.com
## 1756 6285 864 BCC earl.chanley@enron.com
## 1757 6287 865 TO randy.lagrimini@enron.com
## 1758 6288 865 CC bob.burleson@enron.com
## 1759 6289 865 CC david.roensch@enron.com
## 1760 6290 865 CC diane.corbett@enron.com
## 1761 6291 865 CC john.will@enron.com
## 1762 6292 865 CC kenneth.chow@enron.com
## 1763 6294 865 CC larry.garrett@enron.com
## 1764 6295 865 CC randy.rice@enron.com
## 1765 6296 865 CC rich.jolly@enron.com
## 1766 6297 865 CC rick.suderman@enron.com
## 1767 6298 865 CC roy.hartstein@enron.com
## 1768 6299 865 CC susan.ralph@enron.com
## 1769 6300 865 BCC bob.burleson@enron.com
## 1770 6301 865 BCC david.roensch@enron.com
## 1771 6302 865 BCC diane.corbett@enron.com
## 1772 6303 865 BCC john.will@enron.com
## 1773 6304 865 BCC kenneth.chow@enron.com
## 1774 6306 865 BCC larry.garrett@enron.com
## 1775 6307 865 BCC randy.rice@enron.com
## 1776 6308 865 BCC rich.jolly@enron.com
## 1777 6309 865 BCC rick.suderman@enron.com
## 1778 6310 865 BCC roy.hartstein@enron.com
## 1779 6311 865 BCC susan.ralph@enron.com
## 1780 6312 866 TO bob.burleson@enron.com
## 1781 6313 866 TO david.roensch@enron.com
## 1782 6314 866 TO diane.corbett@enron.com
## 1783 6315 866 TO john.will@enron.com
## 1784 6316 866 TO kenneth.chow@enron.com
## 1785 6318 866 TO larry.garrett@enron.com
## 1786 6319 866 TO randy.rice@enron.com
## 1787 6320 866 TO rich.jolly@enron.com
## 1788 6321 866 TO rick.suderman@enron.com
## 1789 6322 866 TO roy.hartstein@enron.com
## 1790 6323 866 TO susan.ralph@enron.com
## 1791 6324 866 TO randy.lagrimini@enron.com
## 1792 6325 866 TO earl.chanley@enron.com
## 1793 6326 866 TO norm.spalding@enron.com
## 1794 6328 867 TO rick.suderman@enron.com
## 1795 6329 867 CC bob.burleson@enron.com
## 1796 6330 867 CC bob.jacobs@enron.com
## 1797 6331 867 CC david.roensch@enron.com
## 1798 6332 867 CC diane.corbett@enron.com
## 1799 6333 867 CC john.will@enron.com
## 1800 6334 867 CC kenneth.chow@enron.com
## 1801 6336 867 CC randy.lagrimini@enron.com
## 1802 6337 867 CC randy.rice@enron.com
## 1803 6338 867 CC rich.jolly@enron.com
## 1804 6339 867 CC roy.hartstein@enron.com
## 1805 6340 867 CC susan.ralph@enron.com
## 1806 6341 867 BCC bob.burleson@enron.com
## 1807 6342 867 BCC bob.jacobs@enron.com
## 1808 6343 867 BCC david.roensch@enron.com
## 1809 6344 867 BCC diane.corbett@enron.com
## 1810 6345 867 BCC john.will@enron.com
## 1811 6346 867 BCC kenneth.chow@enron.com
## 1812 6348 867 BCC randy.lagrimini@enron.com
## 1813 6349 867 BCC randy.rice@enron.com
## 1814 6350 867 BCC rich.jolly@enron.com
## 1815 6351 867 BCC roy.hartstein@enron.com
## 1816 6352 867 BCC susan.ralph@enron.com
## 1817 6360 869 TO dean.mccallister@enron.com
## 1818 6361 869 TO scott.clark@enron.com
## 1819 6362 869 TO randall.mobley@enron.com
## 1820 6363 869 TO team.monahans@enron.com
## 1821 6364 870 TO johnny.mcgee@enron.com
## 1822 6365 870 TO larry.gleffe@enron.com
## 1823 6366 870 TO james.sanford@enron.com
## 1824 6367 870 CC dean.mccallister@enron.com
## 1825 6369 870 BCC dean.mccallister@enron.com
## 1826 6371 871 TO frank.carriere@enron.com
## 1827 6373 871 CC mary.hubbard@enron.com
## 1828 6375 871 BCC mary.hubbard@enron.com
## 1829 6377 872 CC john.cobb@enron.com
## 1830 6378 872 CC james.saunders@enron.com
## 1831 6379 872 CC mary.hubbard@enron.com
## 1832 6380 872 BCC john.cobb@enron.com
## 1833 6381 872 BCC james.saunders@enron.com
## 1834 6382 872 BCC mary.hubbard@enron.com
## 1835 6390 874 TO einsighttext@listserv.platts.com
## 1836 6392 875 CC susan.wadle@enron.com
## 1837 6393 875 BCC susan.wadle@enron.com
## 1838 6394 876 TO gabriel.chavez@enron.com
## 1839 6395 876 TO stephen.dowd@enron.com
## 1840 6396 876 TO eric.gadd@enron.com
## 1841 6397 876 TO elberg.gelin@enron.com
## 1842 6398 876 TO martin.gonzalez@enron.com
## 1843 6400 876 TO david.junus@enron.com
## 1844 6401 876 TO jebong.lee@enron.com
## 1845 6402 876 TO john.millar@enron.com
## 1846 6403 876 TO michael.ratner@enron.com
## 1847 6404 877 TO john.goodpasture@enron.com
## 1848 6405 877 TO gabriel.chavez@enron.com
## 1849 6406 877 TO stephen.dowd@enron.com
## 1850 6407 877 TO eric.gadd@enron.com
## 1851 6409 877 TO john.millar@enron.com
## 1852 6410 877 TO michael.ratner@enron.com
## 1853 6411 877 TO gina.taylor@enron.com
## 1854 6412 877 TO glen.hass@enron.com
## 1855 6413 877 TO michael.loeffler@enron.com
## 1856 6414 877 TO lon.stanton@enron.com
## 1857 6415 877 TO rob.wilson@enron.com
## 1858 6416 877 TO w..mcgowan@enron.com
## 1859 6417 878 TO gina.taylor@enron.com
## 1860 6418 878 TO gabriel.chavez@enron.com
## 1861 6419 878 TO eric.gadd@enron.com
## 1862 6421 878 TO john.millar@enron.com
## 1863 6422 878 TO michael.ratner@enron.com
## 1864 6423 878 TO ken.anderson@enron.com
## 1865 6424 878 TO doug.aschwege@enron.com
## 1866 6425 878 TO judy.beck@enron.com
## 1867 6426 878 TO gary.choquette@enron.com
## 1868 6427 878 TO carolyn.descoteaux@enron.com
## 1869 6428 878 TO l..johnson@enron.com
## 1870 6429 878 TO bryan.reinecke@enron.com
## 1871 6430 878 TO becki.sans@enron.com
## 1872 6431 878 TO roger.westfall@enron.com
## 1873 6432 878 TO david.marye@enron.com
## 1874 6433 878 TO sarabeth.smith@enron.com
## 1875 6434 879 TO gabriel.chavez@enron.com
## 1876 6435 879 TO eric.gadd@enron.com
## 1877 6437 879 TO john.millar@enron.com
## 1878 6438 879 TO michael.ratner@enron.com
## 1879 6439 879 TO glen.hass@enron.com
## 1880 6440 879 TO michael.loeffler@enron.com
## 1881 6441 879 TO lon.stanton@enron.com
## 1882 6442 879 TO rob.wilson@enron.com
## 1883 6443 879 TO john.dushinske@enron.com
## 1884 6444 879 TO bill.fowler@enron.com
## 1885 6445 879 TO kent.miller@enron.com
## 1886 6446 879 TO dave.neubauer@enron.com
## 1887 6447 879 TO sue.neville@enron.com
## 1888 6448 879 TO jo.williams@enron.com
## 1889 6449 879 TO w..mcgowan@enron.com
## 1890 6450 879 TO david.marye@enron.com
## 1891 6451 879 TO sarabeth.smith@enron.com
## 1892 6452 880 TO courtney.barker@enron.com
## 1893 6453 880 TO gabriel.chavez@enron.com
## 1894 6454 880 TO eric.gadd@enron.com
## 1895 6456 880 TO john.millar@enron.com
## 1896 6457 880 TO michael.ratner@enron.com
## 1897 6458 880 TO w..mcgowan@enron.com
## 1898 6459 881 TO gabriel.chavez@enron.com
## 1899 6460 881 TO eric.gadd@enron.com
## 1900 6462 881 TO john.millar@enron.com
## 1901 6463 881 TO michael.ratner@enron.com
## 1902 6465 882 TO eric.gadd@enron.com
## 1903 6467 883 TO gabriel.chavez@enron.com
## 1904 6468 883 TO eric.gadd@enron.com
## 1905 6470 883 TO john.millar@enron.com
## 1906 6471 883 TO michael.ratner@enron.com
## 1907 6472 884 TO einsighttext@spector.ftenergy.com
## 1908 6475 886 TO bill.cordes@enron.com
## 1909 6479 888 TO patti@enron.com
## 1910 6480 888 TO spatti@ensr.com
## 1911 6481 888 CC phil.hackney@enron.com
## 1912 6482 888 CC jon.schmidt@enron.com
## 1913 6484 888 CC eric.gadd@enron.com
## 1914 6485 888 CC doug.cebryk@enron.com
## 1915 6486 888 BCC phil.hackney@enron.com
## 1916 6487 888 BCC jon.schmidt@enron.com
## 1917 6489 888 BCC eric.gadd@enron.com
## 1918 6490 888 BCC doug.cebryk@enron.com
## 1919 6491 889 TO john.shafer@enron.com
## 1920 6492 889 TO armando.diaz@enron.com
## 1921 6493 889 TO doug.cebryk@enron.com
## 1922 6495 889 TO eric.gadd@enron.com
## 1923 6496 889 CC schmidt@enron.com
## 1924 6497 889 CC jschmidt@ensr.com
## 1925 6498 889 BCC schmidt@enron.com
## 1926 6499 889 BCC jschmidt@ensr.com
## 1927 6501 891 TO eric.gadd@enron.com
## 1928 6502 891 CC ben.asante@enron.com
## 1929 6503 891 CC l..eisenstein@enron.com
## 1930 6504 891 CC eric.gadd@enron.com
## 1931 6506 891 CC l..smith@enron.com
## 1932 6507 891 CC e..rosenberg@enron.com
## 1933 6508 891 BCC ben.asante@enron.com
## 1934 6509 891 BCC l..eisenstein@enron.com
## 1935 6510 891 BCC eric.gadd@enron.com
## 1936 6512 891 BCC l..smith@enron.com
## 1937 6513 891 BCC e..rosenberg@enron.com
## 1938 6514 892 TO l..eisenstein@enron.com
## 1939 6515 892 TO eric.gadd@enron.com
## 1940 6517 892 TO ben.asante@enron.com
## 1941 6518 892 CC l..smith@enron.com
## 1942 6519 892 CC e..rosenberg@enron.com
## 1943 6520 892 BCC l..smith@enron.com
## 1944 6521 892 BCC e..rosenberg@enron.com
## 1945 6522 893 TO ron.matthews@enron.com
## 1946 6524 893 CC susan.wadle@enron.com
## 1947 6525 893 CC ben.asante@enron.com
## 1948 6527 893 BCC susan.wadle@enron.com
## 1949 6528 893 BCC ben.asante@enron.com
## 1950 6533 895 TO lorraine.lindberg@enron.com
## 1951 6534 896 TO eric.gadd@enron.com
## 1952 6537 897 TO susan.wadle@enron.com
## 1953 6538 897 TO michael.ratner@enron.com
## 1954 6539 897 TO james.centilli@enron.com
## 1955 6540 897 TO l..eisenstein@enron.com
## 1956 6548 900 TO greg.porter@dynegy.com
## 1957 6549 900 TO mary.kay.miller@dynegy.com
## 1958 6550 900 TO dave.neubauer@dynegy.com
## 1959 6551 900 TO rita.bianchi@dynegy.com
## 1960 6552 900 TO barbara.bischoff@dynegy.com
## 1961 6553 900 TO naomi.bourg@dynegy.com
## 1962 6554 900 TO patrick.brennan@dynegy.com
## 1963 6555 900 TO josie.call@dynegy.com
## 1964 6556 900 TO mary.darveaux@dynegy.com
## 1965 6557 900 TO bret.fritch@dynegy.com
## 1966 6558 900 TO steve.kirk@dynegy.com
## 1967 6559 900 TO tim.kissner@dynegy.com
## 1968 6560 900 TO mike.loeffler@dynegy.com
## 1969 6561 900 TO donna.martens@dynegy.com
## 1970 6562 900 TO mike.mcgowan@dynegy.com
## 1971 6563 900 TO lon.stanton@dynegy.com
## 1972 6564 900 TO bob.thurber@dynegy.com
## 1973 6565 900 TO don.vignaroli@dynegy.com
## 1974 6566 900 TO dave.waymire@dynegy.com
## 1975 6567 900 TO michele.winckowski@dynegy.com
## 1976 6568 900 TO dave.abraham@dynegy.com
## 1977 6569 900 TO dari.dornan@dynegy.com
## 1978 6570 900 TO maria.pavlou@dynegy.com
## 1979 6571 900 TO tony.pryor@dynegy.com
## 1980 6572 900 TO kathy.ringblom@dynegy.com
## 1981 6573 900 TO ann.smith@dynegy.com
## 1982 6574 900 TO sharon.solon@dynegy.com
## 1983 6575 900 CC sarah.tomalty@dynegy.com
## 1984 6576 900 CC mary.doyle@dynegy.com
## 1985 6577 900 CC kathy_patton@dynegy.com
## 1986 6578 900 BCC sarah.tomalty@dynegy.com
## 1987 6579 900 BCC mary.doyle@dynegy.com
## 1988 6580 900 BCC kathy_patton@dynegy.com
## 1989 6583 902 TO james.centilli@enron.com
## 1990 6584 902 CC eric.gadd@enron.com
## 1991 6585 902 BCC eric.gadd@enron.com
## 1992 6588 904 TO susan.wadle@enron.com
## 1993 6602 908 TO eric.gadd@enron.com
## 1994 6605 910 TO hleibowitz@ormat.com
## 1995 6606 910 CC norm.spalding@enron.com
## 1996 6608 910 CC byron.rance@enron.com
## 1997 6609 910 BCC norm.spalding@enron.com
## 1998 6611 910 BCC byron.rance@enron.com
## 1999 6613 912 TO ben.asante@enron.com
## 2000 6614 912 TO ron.matthews@enron.com
## 2001 6615 912 CC eric.gadd@enron.com
## 2002 6617 912 BCC eric.gadd@enron.com
## 2003 6622 915 CC barbara.howard@enron.com
## 2004 6623 915 BCC barbara.howard@enron.com
## 2005 6634 921 TO james.centilli@enron.com
## 2006 6635 921 TO ben.asante@enron.com
## 2007 6637 923 TO doug.cebryk@enron.com
## 2008 6638 923 TO l..eisenstein@enron.com
## 2009 6639 923 TO dennis.alters@enron.com
## 2010 6640 923 TO morgan.gottsponer@enron.com
## 2011 6643 924 TO marcello.minotti@enron.com
## 2012 6644 924 TO l..eisenstein@enron.com
## 2013 6645 924 TO doug.cebryk@enron.com
## 2014 6648 925 TO eric.gadd@enron.com
## 2015 6653 927 TO eric.gadd@enron.com
## 2016 6654 927 CC ben.asante@enron.com
## 2017 6655 927 CC dennis.alters@enron.com
## 2018 6656 927 BCC ben.asante@enron.com
## 2019 6657 927 BCC dennis.alters@enron.com
## 2020 6661 929 CC eric.gadd@enron.com
## 2021 6662 929 BCC eric.gadd@enron.com
## 2022 6672 934 CC eric.gadd@enron.com
## 2023 6673 934 BCC eric.gadd@enron.com
## 2024 6677 936 CC bethc@pandaenergy.com
## 2025 6678 936 CC jima@pandaenergy.com
## 2026 6679 936 BCC bethc@pandaenergy.com
## 2027 6680 936 BCC jima@pandaenergy.com
## 2028 6688 939 TO ben.asante@enron.com
## 2029 6689 940 TO j.wood@energydg.com
## 2030 6695 943 CC dennis.alters@enron.com
## 2031 6696 943 BCC dennis.alters@enron.com
## 2032 6697 944 TO r..keller@enron.com
## 2033 6698 944 TO d..martin@enron.com
## 2034 6699 944 TO doug.cebryk@enron.com
## 2035 6700 944 TO l..eisenstein@enron.com
## 2036 6701 944 TO dennis.alters@enron.com
## 2037 6702 944 TO morgan.gottsponer@enron.com
## 2038 6704 944 TO eric.gadd@enron.com
## 2039 6705 944 TO l..smith@enron.com
## 2040 6707 946 TO john.shafer@enron.com
## 2041 6708 946 TO doug.cebryk@enron.com
## 2042 6709 946 CC gina.taylor@enron.com
## 2043 6711 946 CC eric.gadd@enron.com
## 2044 6712 946 CC scott.patti@enron.com
## 2045 6713 946 BCC gina.taylor@enron.com
## 2046 6715 946 BCC eric.gadd@enron.com
## 2047 6716 946 BCC scott.patti@enron.com
## 2048 6753 950 CC morgan.gottsponer@enron.com
## 2049 6754 950 CC ron.matthews@enron.com
## 2050 6755 950 CC dennis.alters@enron.com
## 2051 6756 950 BCC morgan.gottsponer@enron.com
## 2052 6757 950 BCC ron.matthews@enron.com
## 2053 6758 950 BCC dennis.alters@enron.com
## 2054 6759 951 TO john.shafer@enron.com
## 2055 6760 951 CC eric.gadd@enron.com
## 2056 6763 951 CC robert.kilmer@enron.com
## 2057 6764 951 CC doug.cebryk@enron.com
## 2058 6765 951 CC jon.schmidt@enron.com
## 2059 6766 951 CC jon.alstad@enron.com
## 2060 6767 951 BCC eric.gadd@enron.com
## 2061 6770 951 BCC robert.kilmer@enron.com
## 2062 6771 951 BCC doug.cebryk@enron.com
## 2063 6772 951 BCC jon.schmidt@enron.com
## 2064 6773 951 BCC jon.alstad@enron.com
## 2065 6774 952 TO john.shafer@enron.com
## 2066 6775 952 TO doug.cebryk@enron.com
## 2067 6777 952 CC jon.schmidt@enron.com
## 2068 6778 952 CC gina.taylor@enron.com
## 2069 6780 952 CC eric.gadd@enron.com
## 2070 6781 952 CC jon.alstad@enron.com
## 2071 6782 952 CC kim.munson@enron.com
## 2072 6783 952 BCC jon.schmidt@enron.com
## 2073 6784 952 BCC gina.taylor@enron.com
## 2074 6786 952 BCC eric.gadd@enron.com
## 2075 6787 952 BCC jon.alstad@enron.com
## 2076 6788 952 BCC kim.munson@enron.com
## 2077 6789 953 TO john.shafer@enron.com
## 2078 6790 953 TO doug.cebryk@enron.com
## 2079 6791 953 TO dave.hubbard@enron.com
## 2080 6792 953 CC jon.schmidt@enron.com
## 2081 6793 953 CC gina.taylor@enron.com
## 2082 6795 953 CC eric.gadd@enron.com
## 2083 6796 953 CC jon.alstad@enron.com
## 2084 6797 953 BCC jon.schmidt@enron.com
## 2085 6798 953 BCC gina.taylor@enron.com
## 2086 6800 953 BCC eric.gadd@enron.com
## 2087 6801 953 BCC jon.alstad@enron.com
## 2088 6803 954 CC eric.gadd@enron.com
## 2089 6804 954 BCC eric.gadd@enron.com
## 2090 6805 955 TO john.shafer@enron.com
## 2091 6807 955 CC eric.gadd@enron.com
## 2092 6809 955 CC robert.kilmer@enron.com
## 2093 6810 955 CC doug.cebryk@enron.com
## 2094 6811 955 CC jon.schmidt@enron.com
## 2095 6812 955 CC jon.alstad@enron.com
## 2096 6813 955 BCC eric.gadd@enron.com
## 2097 6815 955 BCC robert.kilmer@enron.com
## 2098 6816 955 BCC doug.cebryk@enron.com
## 2099 6817 955 BCC jon.schmidt@enron.com
## 2100 6818 955 BCC jon.alstad@enron.com
## 2101 6819 956 TO doug.cebryk@enron.com
## 2102 6820 956 CC john.shafer@enron.com
## 2103 6822 956 CC jon.schmidt@enron.com
## 2104 6823 956 CC robert.kilmer@enron.com
## 2105 6824 956 CC eric.gadd@enron.com
## 2106 6826 956 BCC john.shafer@enron.com
## 2107 6828 956 BCC jon.schmidt@enron.com
## 2108 6829 956 BCC robert.kilmer@enron.com
## 2109 6830 956 BCC eric.gadd@enron.com
## 2110 6832 957 TO scott.patti@enron.com
## 2111 6833 957 TO jon.schmidt@enron.com
## 2112 6834 957 TO john.shafer@enron.com
## 2113 6835 957 CC doug.cebryk@enron.com
## 2114 6837 957 CC eric.gadd@enron.com
## 2115 6838 957 BCC doug.cebryk@enron.com
## 2116 6840 957 BCC eric.gadd@enron.com
## 2117 6841 958 TO scott . patti@enron.com
## 2118 6842 958 TO john.shafer@enron.com
## 2119 6844 958 TO eric.gadd@enron.com
## 2120 6845 958 CC jon.schmidt@enron.com
## 2121 6846 958 CC gina.taylor@enron.com
## 2122 6847 958 CC jon.alstad@enron.com
## 2123 6848 958 CC larry.gleffe@enron.com
## 2124 6849 958 CC johnny.mcgee@enron.com
## 2125 6850 958 BCC jon.schmidt@enron.com
## 2126 6851 958 BCC gina.taylor@enron.com
## 2127 6852 958 BCC jon.alstad@enron.com
## 2128 6853 958 BCC larry.gleffe@enron.com
## 2129 6854 958 BCC johnny.mcgee@enron.com
## 2130 6855 959 TO john.shafer@enron.com
## 2131 6856 959 TO scott.patti@enron.com
## 2132 6858 959 CC eric.gadd@enron.com
## 2133 6860 959 CC robert.kilmer@enron.com
## 2134 6861 959 CC doug.cebryk@enron.com
## 2135 6862 959 BCC eric.gadd@enron.com
## 2136 6864 959 BCC robert.kilmer@enron.com
## 2137 6865 959 BCC doug.cebryk@enron.com
## 2138 6866 960 TO john.shafer@enron.com
## 2139 6868 960 TO eric.gadd@enron.com
## 2140 6869 960 CC jon.schmidt@enron.com
## 2141 6870 960 CC gina.taylor@enron.com
## 2142 6871 960 CC doug.cebryk@enron.com
## 2143 6872 960 CC jon.alstad@enron.com
## 2144 6873 960 BCC jon.schmidt@enron.com
## 2145 6874 960 BCC gina.taylor@enron.com
## 2146 6875 960 BCC doug.cebryk@enron.com
## 2147 6876 960 BCC jon.alstad@enron.com
## 2148 6877 961 TO eric.gadd@enron.com
## 2149 6879 961 TO d..martin@enron.com
## 2150 6880 961 CC dave.hubbard@enron.com
## 2151 6881 961 BCC dave.hubbard@enron.com
## 2152 6882 962 TO john.shafer@enron.com
## 2153 6884 962 TO eric.gadd@enron.com
## 2154 6885 962 CC jon.schmidt@enron.com
## 2155 6886 962 CC gina.taylor@enron.com
## 2156 6887 962 CC doug.cebryk@enron.com
## 2157 6888 962 CC jon.alstad@enron.com
## 2158 6889 962 BCC jon.schmidt@enron.com
## 2159 6890 962 BCC gina.taylor@enron.com
## 2160 6891 962 BCC doug.cebryk@enron.com
## 2161 6892 962 BCC jon.alstad@enron.com
## 2162 6893 963 TO john.shafer@enron.com
## 2163 6895 963 TO eric.gadd@enron.com
## 2164 6896 963 CC jon.schmidt@enron.com
## 2165 6897 963 CC gina.taylor@enron.com
## 2166 6898 963 CC doug.cebryk@enron.com
## 2167 6899 963 CC jon.alstad@enron.com
## 2168 6900 963 BCC jon.schmidt@enron.com
## 2169 6901 963 BCC gina.taylor@enron.com
## 2170 6902 963 BCC doug.cebryk@enron.com
## 2171 6903 963 BCC jon.alstad@enron.com
## 2172 6906 966 TO eric.gadd@enron.com
## 2173 6909 966 CC doug.cebryk@enron.com
## 2174 6910 966 CC robert.kilmer@enron.com
## 2175 6911 966 CC gina.taylor@enron.com
## 2176 6912 966 CC louis.soldano@enron.com
## 2177 6913 966 CC joe.hartsoe@enron.com
## 2178 6916 966 BCC doug.cebryk@enron.com
## 2179 6917 966 BCC robert.kilmer@enron.com
## 2180 6918 966 BCC gina.taylor@enron.com
## 2181 6919 966 BCC louis.soldano@enron.com
## 2182 6920 966 BCC joe.hartsoe@enron.com
## 2183 6922 967 TO doug.cebryk@enron.com
## 2184 6923 967 TO john.shafer@enron.com
## 2185 6924 967 TO robert.kilmer@enron.com
## 2186 6925 967 TO kimberly.watson@enron.com
## 2187 6930 968 TO doug.cebryk@enron.com
## 2188 6933 969 TO eric.gadd@enron.com
## 2189 6934 969 CC doug.cebryk@enron.com
## 2190 6935 969 BCC doug.cebryk@enron.com
## 2191 6937 970 TO eric.gadd@enron.com
## 2192 6938 970 CC doug.cebryk@enron.com
## 2193 6939 970 BCC doug.cebryk@enron.com
## 2194 6940 971 TO john.shafer@enron.com
## 2195 6942 971 CC ruth.jensen@enron.com
## 2196 6943 971 CC d..martin@enron.com
## 2197 6944 971 CC william.kendrick@enron.com
## 2198 6946 971 BCC ruth.jensen@enron.com
## 2199 6947 971 BCC d..martin@enron.com
## 2200 6948 971 BCC william.kendrick@enron.com
## 2201 6950 972 TO gina.taylor@enron.com
## 2202 6953 973 TO doug.cebryk@enron.com
## 2203 6955 973 CC william.kendrick@enron.com
## 2204 6957 973 CC d..martin@enron.com
## 2205 6958 973 BCC william.kendrick@enron.com
## 2206 6960 973 BCC d..martin@enron.com
## 2207 6961 974 TO john.shafer@enron.com
## 2208 6963 974 CC william.kendrick@enron.com
## 2209 6965 974 BCC william.kendrick@enron.com
## 2210 6967 975 TO john.shafer@enron.com
## 2211 6968 975 TO scott . patti@enron.com
## 2212 6969 975 TO armando.diaz@enron.com
## 2213 6970 975 CC william.kendrick@enron.com
## 2214 6971 975 CC jon . schmidt@enron.com
## 2215 6972 975 CC eric.gadd@enron.com
## 2216 6974 975 CC d..martin@enron.com
## 2217 6975 975 BCC william.kendrick@enron.com
## 2218 6976 975 BCC jon . schmidt@enron.com
## 2219 6977 975 BCC eric.gadd@enron.com
## 2220 6979 975 BCC d..martin@enron.com
## 2221 6980 976 TO rich.plachy@enron.com
## 2222 6981 976 TO d..martin@enron.com
## 2223 6984 977 CC dennis.alters@enron.com
## 2224 6985 977 CC morgan.gottsponer@enron.com
## 2225 6986 977 BCC dennis.alters@enron.com
## 2226 6987 977 BCC morgan.gottsponer@enron.com
## 2227 6988 978 TO gina.taylor@enron.com
## 2228 6991 979 TO robert.kilmer@enron.com
## 2229 6995 980 TO robert.kilmer@enron.com
## 2230 6998 981 TO robert.kilmer@enron.com
## 2231 7000 983 TO eric.gadd@enron.com
## 2232 7004 984 TO ron.matthews@enron.com
## 2233 7005 984 CC morgan.gottsponer@enron.com
## 2234 7006 984 CC doug.aschwege@enron.com
## 2235 7007 984 BCC morgan.gottsponer@enron.com
## 2236 7008 984 BCC doug.aschwege@enron.com
## 2237 7010 985 TO ron.matthews@enron.com
## 2238 7011 986 TO karen.denne@enron.com
## 2239 7012 986 TO rex.rogers@enron.com
## 2240 7013 986 TO gay.mayeux@enron.com
## 2241 7014 986 TO rosalee.fleming@enron.com
## 2242 7018 986 TO eric.gadd@enron.com
## 2243 7019 986 TO john.shafer@enron.com
## 2244 7020 986 TO robert.kilmer@enron.com
## 2245 7022 986 TO mark.palmer@enron.com
## 2246 7024 986 CC sarah.haden@enron.com
## 2247 7025 986 BCC sarah.haden@enron.com
## 2248 7026 987 TO john.shafer@enron.com
## 2249 7027 987 TO eric.gadd@enron.com
## 2250 7029 987 CC sarah.haden@enron.com
## 2251 7030 987 CC doug.cebryk@enron.com
## 2252 7031 987 CC robert.kilmer@enron.com
## 2253 7033 987 CC tony.pryor@enron.com
## 2254 7036 987 CC d..martin@enron.com
## 2255 7037 987 CC gay.mayeux@enron.com
## 2256 7039 987 CC stephen.veatch@enron.com
## 2257 7040 987 CC phil.lowry@enron.com
## 2258 7041 987 BCC sarah.haden@enron.com
## 2259 7042 987 BCC doug.cebryk@enron.com
## 2260 7043 987 BCC robert.kilmer@enron.com
## 2261 7045 987 BCC tony.pryor@enron.com
## 2262 7048 987 BCC d..martin@enron.com
## 2263 7049 987 BCC gay.mayeux@enron.com
## 2264 7051 987 BCC stephen.veatch@enron.com
## 2265 7052 987 BCC phil.lowry@enron.com
## 2266 7057 990 TO eric.gadd@enron.com
## 2267 7058 990 TO gina.taylor@enron.com
## 2268 7059 990 TO doug.cebryk@enron.com
## 2269 7060 990 TO robert.kilmer@enron.com
## 2270 7062 990 TO tony.pryor@enron.com
## 2271 7065 990 TO d..martin@enron.com
## 2272 7066 990 TO gay.mayeux@enron.com
## 2273 7068 990 TO stephen.veatch@enron.com
## 2274 7069 990 CC sarah.haden@enron.com
## 2275 7070 990 BCC sarah.haden@enron.com
## 2276 7073 992 CC mike.riedel@enron.com
## 2277 7074 992 CC william.kendrick@enron.com
## 2278 7075 992 CC louis.soldano@enron.com
## 2279 7077 992 CC doug.cebryk@enron.com
## 2280 7078 992 CC randy.rice@enron.com
## 2281 7079 992 CC stephen.veatch@enron.com
## 2282 7080 992 CC joe.hartsoe@enron.com
## 2283 7081 992 CC gina.taylor@enron.com
## 2284 7082 992 BCC mike.riedel@enron.com
## 2285 7083 992 BCC william.kendrick@enron.com
## 2286 7084 992 BCC louis.soldano@enron.com
## 2287 7086 992 BCC doug.cebryk@enron.com
## 2288 7087 992 BCC randy.rice@enron.com
## 2289 7088 992 BCC stephen.veatch@enron.com
## 2290 7089 992 BCC joe.hartsoe@enron.com
## 2291 7090 992 BCC gina.taylor@enron.com
## 2292 7092 993 TO ron.matthews@enron.com
## 2293 7093 993 CC d..martin@enron.com
## 2294 7094 993 CC norm.spalding@enron.com
## 2295 7095 993 BCC d..martin@enron.com
## 2296 7096 993 BCC norm.spalding@enron.com
## 2297 7098 994 CC eric.gadd@enron.com
## 2298 7099 994 CC sandy.sheffield@enron.com
## 2299 7100 994 BCC eric.gadd@enron.com
## 2300 7101 994 BCC sandy.sheffield@enron.com
## 2301 7102 995 TO no.address@enron.com
## 2302 7103 995 TO johnny.mcgee@enron.com
## 2303 7104 995 TO larry.gleffe@enron.com
## 2304 7109 996 TO no.address@enron.com
## 2305 7110 996 CC seang@tradefairgroup.com
## 2306 7111 996 CC davidj@tradefairgroup.com
## 2307 7112 996 CC gregl@tradefairgroup.com
## 2308 7113 996 CC heatherh@tradefairgroup.com
## 2309 7114 996 CC jmakansi@pearlstreetinc.com
## 2310 7115 996 BCC seang@tradefairgroup.com
## 2311 7116 996 BCC davidj@tradefairgroup.com
## 2312 7117 996 BCC gregl@tradefairgroup.com
## 2313 7118 996 BCC heatherh@tradefairgroup.com
## 2314 7119 996 BCC jmakansi@pearlstreetinc.com
## 2315 7121 997 TO john.millar@enron.com
## 2316 7122 997 TO susan.wadle@enron.com
## 2317 7123 997 TO david.junus@enron.com
## 2318 7124 998 TO spatti@ensr.com
## 2319 7125 998 CC eric.gadd@enron.com
## 2320 7127 998 CC john.shafer@enron.com
## 2321 7128 998 BCC eric.gadd@enron.com
## 2322 7130 998 BCC john.shafer@enron.com
## 2323 7131 999 TO lorraine.lindberg@enron.com
## 2324 7133 999 CC adams.jim@enron.com
## 2325 7135 999 BCC adams.jim@enron.com
## 2326 7138 1001 TO morgan.gottsponer@enron.com
## 2327 7139 1001 TO doug.cebryk@enron.com
## 2328 7140 1001 CC l..eisenstein@enron.com
## 2329 7141 1001 CC kim.kouri@enron.com
## 2330 7142 1001 BCC l..eisenstein@enron.com
## 2331 7143 1001 BCC kim.kouri@enron.com
## 2332 7149 1006 CC john.shafer@enron.com
## 2333 7150 1006 CC phil.hackney@enron.com
## 2334 7151 1006 CC jon.alstad@enron.com
## 2335 7152 1006 CC kim.munson@enron.com
## 2336 7153 1006 CC devyn.richardson@enron.com
## 2337 7154 1006 BCC john.shafer@enron.com
## 2338 7155 1006 BCC phil.hackney@enron.com
## 2339 7156 1006 BCC jon.alstad@enron.com
## 2340 7157 1006 BCC kim.munson@enron.com
## 2341 7158 1006 BCC devyn.richardson@enron.com
## 2342 7165 1012 TO craigm@azcommerce.com
## 2343 7166 1013 TO eric.gadd@enron.com
## 2344 7168 1013 CC d..martin@enron.com
## 2345 7169 1013 CC randy.rice@enron.com
## 2346 7170 1013 CC stephen.veatch@enron.com
## 2347 7171 1013 CC robert.kilmer@enron.com
## 2348 7173 1013 BCC d..martin@enron.com
## 2349 7174 1013 BCC randy.rice@enron.com
## 2350 7175 1013 BCC stephen.veatch@enron.com
## 2351 7176 1013 BCC robert.kilmer@enron.com
## 2352 7178 1014 TO eric.gadd@enron.com
## 2353 7180 1014 CC d..martin@enron.com
## 2354 7181 1014 CC stephen.veatch@enron.com
## 2355 7182 1014 CC robert.kilmer@enron.com
## 2356 7184 1014 CC louis.soldano@enron.com
## 2357 7185 1014 CC joe.hartsoe@enron.com
## 2358 7186 1014 BCC d..martin@enron.com
## 2359 7187 1014 BCC stephen.veatch@enron.com
## 2360 7188 1014 BCC robert.kilmer@enron.com
## 2361 7190 1014 BCC louis.soldano@enron.com
## 2362 7191 1014 BCC joe.hartsoe@enron.com
## 2363 7194 1016 CC phil.lowry@enron.com
## 2364 7195 1016 CC louis.soldano@enron.com
## 2365 7197 1016 CC randy.rice@enron.com
## 2366 7198 1016 BCC phil.lowry@enron.com
## 2367 7199 1016 BCC louis.soldano@enron.com
## 2368 7201 1016 BCC randy.rice@enron.com
## 2369 7203 1017 CC phil.lowry@enron.com
## 2370 7205 1017 CC randy.rice@enron.com
## 2371 7206 1017 BCC phil.lowry@enron.com
## 2372 7208 1017 BCC randy.rice@enron.com
## 2373 7215 1020 CC william.kendrick@enron.com
## 2374 7216 1020 CC louis.soldano@enron.com
## 2375 7217 1020 BCC william.kendrick@enron.com
## 2376 7218 1020 BCC louis.soldano@enron.com
## 2377 7220 1021 CC eric.gadd@enron.com
## 2378 7221 1021 BCC eric.gadd@enron.com
## 2379 7223 1022 TO morgan.gottsponer@enron.com
## 2380 7224 1022 CC l..eisenstein@enron.com
## 2381 7225 1022 BCC l..eisenstein@enron.com
## 2382 7226 1023 TO parker@enron.com
## 2383 7227 1023 TO scott_parker@kindermorgan.com
## 2384 7230 1025 TO morgan.gottsponer@enron.com
## 2385 7231 1025 TO eric.faucheaux@enron.com
## 2386 7232 1026 TO jdoering@rcgroup.com
## 2387 7236 1028 TO gabriel.chavez@enron.com
## 2388 7237 1028 TO stephen.dowd@enron.com
## 2389 7238 1028 TO eric.gadd@enron.com
## 2390 7240 1028 TO john.millar@enron.com
## 2391 7241 1028 TO michael.ratner@enron.com
## 2392 7242 1028 TO gina.taylor@enron.com
## 2393 7243 1028 TO glen.hass@enron.com
## 2394 7244 1028 TO michael.loeffler@enron.com
## 2395 7245 1028 TO lon.stanton@enron.com
## 2396 7246 1028 TO rob.wilson@enron.com
## 2397 7249 1028 TO pallavi.goradia@enron.com
## 2398 7250 1028 TO lorraine.lindberg@enron.com
## 2399 7251 1028 TO tk.lohman@enron.com
## 2400 7253 1028 TO jan.moore@enron.com
## 2401 7254 1028 TO kimberly.watson@enron.com
## 2402 7259 1032 TO michele.winckowski@enron.com
## 2403 7263 1035 TO james.centilli@enron.com
## 2404 7265 1035 CC eric.faucheaux@enron.com
## 2405 7266 1035 CC morgan.gottsponer@enron.com
## 2406 7267 1035 BCC eric.faucheaux@enron.com
## 2407 7268 1035 BCC morgan.gottsponer@enron.com
## 2408 7269 1036 TO james.centilli@enron.com
## 2409 7270 1036 TO morgan.gottsponer@enron.com
## 2410 7271 1036 TO eric.faucheaux@enron.com
## 2411 7272 1036 TO dennis.alters@enron.com
## 2412 7274 1036 TO lorraine.lindberg@enron.com
## 2413 7275 1036 TO ben.asante@enron.com
## 2414 7278 1039 TO lippmanc@aol.com
## 2415 7282 1040 TO lorraine.lindberg@enron.com
## 2416 7283 1041 TO acook@utilicorp.com
## 2417 7285 1041 CC ben.asante@enron.com
## 2418 7286 1041 CC dennis.alters@enron.com
## 2419 7288 1041 BCC ben.asante@enron.com
## 2420 7289 1041 BCC dennis.alters@enron.com
## 2421 7290 1042 TO v.dickerson@enron.com
## 2422 7291 1042 CC morgan.gottsponer@enron.com
## 2423 7293 1042 BCC morgan.gottsponer@enron.com
## 2424 7296 1044 TO eric.gadd@enron.com
## 2425 7297 1044 TO stephen.dowd@enron.com
## 2426 7298 1044 TO v.dickerson@enron.com
## 2427 7299 1044 TO susan.wadle@enron.com
## 2428 7300 1044 TO david.junus@enron.com
## 2429 7301 1044 TO elberg.gelin@enron.com
## 2430 7302 1044 TO jebong.lee@enron.com
## 2431 7303 1044 TO gabriel.chavez@enron.com
## 2432 7304 1044 TO martin.gonzalez@enron.com
## 2433 7305 1044 TO john.millar@enron.com
## 2434 7307 1045 TO eric.gadd@enron.com
## 2435 7308 1045 TO sue.neville@enron.com
## 2436 7311 1046 TO john.cobb@enron.com
## 2437 7313 1046 CC eric.gadd@enron.com
## 2438 7315 1046 BCC eric.gadd@enron.com
## 2439 7316 1047 TO eric.gadd@enron.com
## 2440 7319 1049 TO perry.frazier@enron.com
## 2441 7323 1050 CC paul.bieniawski@enron.com
## 2442 7324 1050 CC ned.higgins@enron.com
## 2443 7325 1050 BCC paul.bieniawski@enron.com
## 2444 7326 1050 BCC ned.higgins@enron.com
## 2445 7328 1052 TO gale.ramsaran@enron.com
## 2446 7330 1052 CC morgan.gottsponer@enron.com
## 2447 7332 1052 BCC morgan.gottsponer@enron.com
## 2448 7340 1055 TO lee.huber@enron.com
## 2449 7343 1056 TO arnold.eisenstein@enron.com
## 2450 7344 1056 CC dennis.zitterkopf@enron.com
## 2451 7345 1056 CC eric.faucheaux@enron.com
## 2452 7346 1056 CC rich.jolly@enron.com
## 2453 7348 1056 CC earl.chanley@enron.com
## 2454 7349 1056 CC neill.grant@enron.com
## 2455 7350 1056 BCC dennis.zitterkopf@enron.com
## 2456 7351 1056 BCC eric.faucheaux@enron.com
## 2457 7352 1056 BCC rich.jolly@enron.com
## 2458 7354 1056 BCC earl.chanley@enron.com
## 2459 7355 1056 BCC neill.grant@enron.com
## 2460 7357 1058 TO john.dushinske@enron.com
## 2461 7359 1058 TO jeffery.fawcett@enron.com
## 2462 7360 1058 TO stephen.herber@enron.com
## 2463 7361 1058 CC g..stage@enron.com
## 2464 7362 1058 CC susan.scott@enron.com
## 2465 7363 1058 BCC g..stage@enron.com
## 2466 7364 1058 BCC susan.scott@enron.com
## 2467 7366 1060 TO john.millar@enron.com
## 2468 7368 1061 TO john.millar@enron.com
## 2469 7371 1063 TO john.keller@enron.com
## 2470 7372 1063 TO morgan.gottsponer@enron.com
## 2471 7374 1063 TO ben.asante@enron.com
## 2472 7375 1063 TO r..stark@enron.com
## 2473 7376 1063 TO michael.crump@enron.com
## 2474 7377 1063 CC rick.craig@enron.com
## 2475 7378 1063 CC rich.jolly@enron.com
## 2476 7379 1063 CC rick.smith@enron.com
## 2477 7380 1063 CC david.roensch@enron.com
## 2478 7381 1063 CC arnie.bailey@enron.com
## 2479 7382 1063 BCC rick.craig@enron.com
## 2480 7383 1063 BCC rich.jolly@enron.com
## 2481 7384 1063 BCC rick.smith@enron.com
## 2482 7385 1063 BCC david.roensch@enron.com
## 2483 7386 1063 BCC arnie.bailey@enron.com
## 2484 7387 1064 TO max.brown@enron.com
## 2485 7388 1064 TO john.keller@enron.com
## 2486 7389 1064 TO morgan.gottsponer@enron.com
## 2487 7391 1064 TO ben.asante@enron.com
## 2488 7392 1064 TO michael.crump@enron.com
## 2489 7393 1064 CC rick.craig@enron.com
## 2490 7394 1064 CC rich.jolly@enron.com
## 2491 7395 1064 CC rick.smith@enron.com
## 2492 7396 1064 CC david.roensch@enron.com
## 2493 7397 1064 CC arnie.bailey@enron.com
## 2494 7398 1064 BCC rick.craig@enron.com
## 2495 7399 1064 BCC rich.jolly@enron.com
## 2496 7400 1064 BCC rick.smith@enron.com
## 2497 7401 1064 BCC david.roensch@enron.com
## 2498 7402 1064 BCC arnie.bailey@enron.com
## 2499 7404 1065 CC morgan.gottsponer@enron.com
## 2500 7405 1065 CC eric.faucheaux@enron.com
## 2501 7406 1065 BCC morgan.gottsponer@enron.com
## 2502 7407 1065 BCC eric.faucheaux@enron.com
## 2503 7408 1066 TO ben.asante@enron.com
## 2504 7409 1066 TO no.address@enron.com
## 2505 7410 1066 TO no.address@enron.com
## 2506 7411 1066 TO earl.chanley@enron.com
## 2507 7412 1066 TO no.address@enron.com
## 2508 7413 1066 TO perry.frazier@enron.com
## 2509 7414 1066 TO morgan.gottsponer@enron.com
## 2510 7416 1066 TO steven.january@enron.com
## 2511 7417 1066 TO darrell.schoolcraft@enron.com
## 2512 7418 1066 TO no.address@enron.com
## 2513 7421 1066 CC l..johnson@enron.com
## 2514 7422 1066 CC john.keller@enron.com
## 2515 7425 1066 BCC l..johnson@enron.com
## 2516 7426 1066 BCC john.keller@enron.com
## 2517 7445 1069 TO igi@nctimes.net
## 2518 7446 1069 CC john.keller@enron.com
## 2519 7447 1069 CC ben.asante@enron.com
## 2520 7448 1069 CC darrell.schoolcraft@enron.com
## 2521 7449 1069 CC morgan.gottsponer@enron.com
## 2522 7450 1069 CC eric.faucheaux@enron.com
## 2523 7453 1069 BCC john.keller@enron.com
## 2524 7454 1069 BCC ben.asante@enron.com
## 2525 7455 1069 BCC darrell.schoolcraft@enron.com
## 2526 7456 1069 BCC morgan.gottsponer@enron.com
## 2527 7457 1069 BCC eric.faucheaux@enron.com
## 2528 7461 1070 TO jo.williams@enron.com
## 2529 7463 1070 TO g..stage@enron.com
## 2530 7464 1070 CC john.keller@enron.com
## 2531 7465 1070 CC morgan.gottsponer@enron.com
## 2532 7466 1070 CC ben.asante@enron.com
## 2533 7467 1070 CC mansoor.abdmoulaie@enron.com
## 2534 7468 1070 CC earl.chanley@enron.com
## 2535 7469 1070 CC rich.jolly@enron.com
## 2536 7470 1070 CC tony.teakell@enron.com
## 2537 7471 1070 CC ricky.brown@enron.com
## 2538 7472 1070 CC perry.frazier@enron.com
## 2539 7475 1070 BCC john.keller@enron.com
## 2540 7476 1070 BCC morgan.gottsponer@enron.com
## 2541 7477 1070 BCC ben.asante@enron.com
## 2542 7478 1070 BCC mansoor.abdmoulaie@enron.com
## 2543 7479 1070 BCC earl.chanley@enron.com
## 2544 7480 1070 BCC rich.jolly@enron.com
## 2545 7481 1070 BCC tony.teakell@enron.com
## 2546 7482 1070 BCC ricky.brown@enron.com
## 2547 7483 1070 BCC perry.frazier@enron.com
## 2548 7489 1071 TO morgan.gottsponer@enron.com
## 2549 7490 1071 TO eric.faucheaux@enron.com
## 2550 7491 1071 TO earl.chanley@enron.com
## 2551 7492 1071 TO g..stage@enron.com
## 2552 7493 1071 TO lee.huber@enron.com
## 2553 7494 1071 TO randy.rice@enron.com
## 2554 7495 1071 TO darrell.schoolcraft@enron.com
## 2555 7496 1071 TO rich.jolly@enron.com
## 2556 7497 1071 TO susan.scott@enron.com
## 2557 7498 1071 TO kay.miller@enron.com
## 2558 7501 1072 TO john.keller@enron.com
## 2559 7502 1072 TO morgan.gottsponer@enron.com
## 2560 7504 1072 TO steven.january@enron.com
## 2561 7505 1072 TO darrell.schoolcraft@enron.com
## 2562 7506 1072 TO r..stark@enron.com
## 2563 7507 1072 TO will.burks@enron.com
## 2564 7509 1073 TO darrell.schoolcraft@enron.com
## 2565 7510 1073 TO john.keller@enron.com
## 2566 7511 1073 TO morgan.gottsponer@enron.com
## 2567 7512 1073 TO ben.asante@enron.com
## 2568 7513 1073 TO no.address@enron.com
## 2569 7514 1073 TO steven.january@enron.com
## 2570 7515 1073 TO will.burks@enron.com
## 2571 7516 1073 TO r..stark@enron.com
## 2572 7519 1073 CC l..johnson@enron.com
## 2573 7522 1073 BCC l..johnson@enron.com
## 2574 7523 1074 TO jeffery.fawcett@enron.com
## 2575 7524 1074 CC morgan.gottsponer@enron.com
## 2576 7525 1074 CC eric.faucheaux@enron.com
## 2577 7529 1074 CC lorraine.lindberg@enron.com
## 2578 7530 1074 CC darrell.schoolcraft@enron.com
## 2579 7531 1074 CC susan.scott@enron.com
## 2580 7532 1074 CC earl.chanley@enron.com
## 2581 7533 1074 BCC morgan.gottsponer@enron.com
## 2582 7534 1074 BCC eric.faucheaux@enron.com
## 2583 7538 1074 BCC lorraine.lindberg@enron.com
## 2584 7539 1074 BCC darrell.schoolcraft@enron.com
## 2585 7540 1074 BCC susan.scott@enron.com
## 2586 7541 1074 BCC earl.chanley@enron.com
## 2587 7542 1075 TO lorraine.lindberg@enron.com
## 2588 7545 1075 CC morgan.gottsponer@enron.com
## 2589 7546 1075 CC john.keller@enron.com
## 2590 7547 1075 CC perry.frazier@enron.com
## 2591 7548 1075 CC bob.burleson@enron.com
## 2592 7549 1075 CC rich.jolly@enron.com
## 2593 7550 1075 CC randy.rice@enron.com
## 2594 7551 1075 CC eric.faucheaux@enron.com
## 2595 7552 1075 CC stephen.herber@enron.com
## 2596 7553 1075 CC ben.asante@enron.com
## 2597 7554 1075 CC dennis.alters@enron.com
## 2598 7555 1075 CC darrell.schoolcraft@enron.com
## 2599 7556 1075 CC gary.spraggins@enron.com
## 2600 7557 1075 CC steven.january@enron.com
## 2601 7560 1075 BCC morgan.gottsponer@enron.com
## 2602 7561 1075 BCC john.keller@enron.com
## 2603 7562 1075 BCC perry.frazier@enron.com
## 2604 7563 1075 BCC bob.burleson@enron.com
## 2605 7564 1075 BCC rich.jolly@enron.com
## 2606 7565 1075 BCC randy.rice@enron.com
## 2607 7566 1075 BCC eric.faucheaux@enron.com
## 2608 7567 1075 BCC stephen.herber@enron.com
## 2609 7568 1075 BCC ben.asante@enron.com
## 2610 7569 1075 BCC dennis.alters@enron.com
## 2611 7570 1075 BCC darrell.schoolcraft@enron.com
## 2612 7571 1075 BCC gary.spraggins@enron.com
## 2613 7572 1075 BCC steven.january@enron.com
## 2614 7573 1076 TO ben.asante@enron.com
## 2615 7574 1076 TO eric.faucheaux@enron.com
## 2616 7575 1076 CC james.centilli@enron.com
## 2617 7578 1076 BCC james.centilli@enron.com
## 2618 7581 1077 TO kenneth.chow@enron.com
## 2619 7582 1077 TO bob.mcchane@enron.com
## 2620 7583 1077 TO kim.kouri@enron.com
## 2621 7584 1077 TO john.sturn@enron.com
## 2622 7585 1077 TO gale.ramsaran@enron.com
## 2623 7586 1077 TO ben.asante@enron.com
## 2624 7587 1077 TO candace.williams@enron.com
## 2625 7588 1077 TO rich.jolly@enron.com
## 2626 7589 1077 TO steven.january@enron.com
## 2627 7590 1077 TO darrell.schoolcraft@enron.com
## 2628 7591 1077 TO dale.ratliff@enron.com
## 2629 7593 1077 TO david.roensch@enron.com
## 2630 7594 1077 TO eric.faucheaux@enron.com
## 2631 7595 1077 TO ronald.matthews@enron.com
## 2632 7596 1078 TO gary.choquette@enron.com
## 2633 7597 1078 CC kenneth.chow@enron.com
## 2634 7598 1078 CC bob.mcchane@enron.com
## 2635 7599 1078 CC kim.kouri@enron.com
## 2636 7600 1078 CC john.sturn@enron.com
## 2637 7601 1078 CC gale.ramsaran@enron.com
## 2638 7602 1078 CC ben.asante@enron.com
## 2639 7603 1078 CC candace.williams@enron.com
## 2640 7604 1078 CC rich.jolly@enron.com
## 2641 7605 1078 CC steven.january@enron.com
## 2642 7606 1078 CC darrell.schoolcraft@enron.com
## 2643 7607 1078 CC dale.ratliff@enron.com
## 2644 7609 1078 CC david.roensch@enron.com
## 2645 7610 1078 CC eric.faucheaux@enron.com
## 2646 7611 1078 CC ronald.matthews@enron.com
## 2647 7612 1078 BCC kenneth.chow@enron.com
## 2648 7613 1078 BCC bob.mcchane@enron.com
## 2649 7614 1078 BCC kim.kouri@enron.com
## 2650 7615 1078 BCC john.sturn@enron.com
## 2651 7616 1078 BCC gale.ramsaran@enron.com
## 2652 7617 1078 BCC ben.asante@enron.com
## 2653 7618 1078 BCC candace.williams@enron.com
## 2654 7619 1078 BCC rich.jolly@enron.com
## 2655 7620 1078 BCC steven.january@enron.com
## 2656 7621 1078 BCC darrell.schoolcraft@enron.com
## 2657 7622 1078 BCC dale.ratliff@enron.com
## 2658 7624 1078 BCC david.roensch@enron.com
## 2659 7625 1078 BCC eric.faucheaux@enron.com
## 2660 7626 1078 BCC ronald.matthews@enron.com
## 2661 7628 1079 TO jeffery.fawcett@enron.com
## 2662 7629 1079 CC mack@enron.com
## 2663 7630 1079 CC mmack@ameramex.com
## 2664 7631 1079 CC cashel@whc.net
## 2665 7632 1079 BCC mack@enron.com
## 2666 7633 1079 BCC mmack@ameramex.com
## 2667 7634 1079 BCC cashel@whc.net
## 2668 7635 1080 TO hyatt@enron.com
## 2669 7637 1080 CC moore@enron.com
## 2670 7638 1080 CC rmoore@ameramex.com
## 2671 7639 1080 CC mack@enron.com
## 2672 7640 1080 CC mmack@ameramex.com
## 2673 7641 1080 BCC moore@enron.com
## 2674 7642 1080 BCC rmoore@ameramex.com
## 2675 7643 1080 BCC mack@enron.com
## 2676 7644 1080 BCC mmack@ameramex.com
## 2677 7645 1081 TO jeffery.fawcett@enron.com
## 2678 7648 1081 TO lorraine.lindberg@enron.com
## 2679 7649 1081 TO tk.lohman@enron.com
## 2680 7670 1083 TO steven.january@enron.com
## 2681 7671 1083 TO randy.rice@enron.com
## 2682 7672 1083 TO rich.jolly@enron.com
## 2683 7673 1083 TO david.roensch@enron.com
## 2684 7674 1083 TO ronald.matthews@enron.com
## 2685 7676 1084 TO eric.faucheaux@enron.com
## 2686 7679 1084 CC susan.scott@enron.com
## 2687 7680 1084 CC rich.jolly@enron.com
## 2688 7683 1084 BCC susan.scott@enron.com
## 2689 7684 1084 BCC rich.jolly@enron.com
## 2690 7685 1085 TO jeffery.fawcett@enron.com
## 2691 7686 1085 CC eric.faucheaux@enron.com
## 2692 7687 1085 CC rich.jolly@enron.com
## 2693 7688 1085 CC rick.smith@enron.com
## 2694 7689 1085 CC team.san-juan@enron.com
## 2695 7693 1085 CC mary.miller@enron.com
## 2696 7694 1085 CC susan.scott@enron.com
## 2697 7695 1085 CC terry.galassini@enron.com
## 2698 7696 1085 BCC eric.faucheaux@enron.com
## 2699 7697 1085 BCC rich.jolly@enron.com
## 2700 7698 1085 BCC rick.smith@enron.com
## 2701 7699 1085 BCC team.san-juan@enron.com
## 2702 7703 1085 BCC mary.miller@enron.com
## 2703 7704 1085 BCC susan.scott@enron.com
## 2704 7705 1085 BCC terry.galassini@enron.com
## 2705 7706 1086 TO keith.petersen@enron.com
## 2706 7707 1086 CC bret.fritch@enron.com
## 2707 7708 1086 CC susan.scott@enron.com
## 2708 7709 1086 CC ronald.matthews@enron.com
## 2709 7710 1086 BCC bret.fritch@enron.com
## 2710 7711 1086 BCC susan.scott@enron.com
## 2711 7712 1086 BCC ronald.matthews@enron.com
## 2712 7713 1087 TO bret.fritch@enron.com
## 2713 7714 1087 CC keith.petersen@enron.com
## 2714 7715 1087 CC ronald.matthews@enron.com
## 2715 7716 1087 CC susan.scott@enron.com
## 2716 7717 1087 BCC keith.petersen@enron.com
## 2717 7718 1087 BCC ronald.matthews@enron.com
## 2718 7719 1087 BCC susan.scott@enron.com
## 2719 7721 1088 TO lorraine.lindberg@enron.com
## 2720 7723 1088 TO ben.asante@enron.com
## 2721 7724 1088 TO terry.galassini@enron.com
## 2722 7725 1088 TO eric.faucheaux@enron.com
## 2723 7726 1088 TO john.keller@enron.com
## 2724 7727 1088 TO kenneth.chow@enron.com
## 2725 7728 1088 TO arnold.eisenstein@enron.com
## 2726 7730 1088 CC denis.tu@enron.com
## 2727 7731 1088 CC david.rosenberg@enron.com
## 2728 7732 1088 CC dave.waymire@enron.com
## 2729 7735 1088 BCC denis.tu@enron.com
## 2730 7736 1088 BCC david.rosenberg@enron.com
## 2731 7737 1088 BCC dave.waymire@enron.com
## 2732 7739 1089 TO steve@apiweb.com
## 2733 7740 1089 CC eric.faucheaux@enron.com
## 2734 7741 1089 BCC eric.faucheaux@enron.com
## 2735 7742 1090 TO eric.faucheaux@enron.com
## 2736 7743 1090 TO ronald.matthews@enron.com
## 2737 7744 1090 TO earl.chanley@enron.com
## 2738 7745 1090 CC susan.scott@enron.com
## 2739 7749 1090 CC james.centilli@enron.com
## 2740 7750 1090 CC mary.miller@enron.com
## 2741 7751 1090 BCC susan.scott@enron.com
## 2742 7755 1090 BCC james.centilli@enron.com
## 2743 7756 1090 BCC mary.miller@enron.com
## 2744 7757 1091 TO eric.faucheaux@enron.com
## 2745 7758 1092 TO steve@apiweb.com
## 2746 7759 1093 TO terry.galassini@enron.com
## 2747 7760 1093 CC phil.lowry@enron.com
## 2748 7761 1093 CC john.keller@enron.com
## 2749 7762 1093 CC mary.miller@enron.com
## 2750 7764 1093 CC randy.rice@enron.com
## 2751 7765 1093 CC keith.petersen@enron.com
## 2752 7766 1093 CC donna.martin@enron.com
## 2753 7767 1093 CC rich.jolly@enron.com
## 2754 7768 1093 CC norm.spalding@enron.com
## 2755 7769 1093 CC arnold.eisenstein@enron.com
## 2756 7770 1093 CC earl.chanley@enron.com
## 2757 7771 1093 CC gary.maestas@enron.com
## 2758 7772 1093 CC gary.choquette@enron.com
## 2759 7773 1093 CC lorraine.lindberg@enron.com
## 2760 7775 1093 CC eric.faucheaux@enron.com
## 2761 7776 1093 CC jerry.martin@enron.com
## 2762 7777 1093 CC amelia.alder@enron.com
## 2763 7778 1093 CC cheryl.cole@enron.com
## 2764 7779 1093 CC betty.alexander@enron.com
## 2765 7780 1093 BCC phil.lowry@enron.com
## 2766 7781 1093 BCC john.keller@enron.com
## 2767 7782 1093 BCC mary.miller@enron.com
## 2768 7784 1093 BCC randy.rice@enron.com
## 2769 7785 1093 BCC keith.petersen@enron.com
## 2770 7786 1093 BCC donna.martin@enron.com
## 2771 7787 1093 BCC rich.jolly@enron.com
## 2772 7788 1093 BCC norm.spalding@enron.com
## 2773 7789 1093 BCC arnold.eisenstein@enron.com
## 2774 7790 1093 BCC earl.chanley@enron.com
## 2775 7791 1093 BCC gary.maestas@enron.com
## 2776 7792 1093 BCC gary.choquette@enron.com
## 2777 7793 1093 BCC lorraine.lindberg@enron.com
## 2778 7795 1093 BCC eric.faucheaux@enron.com
## 2779 7796 1093 BCC jerry.martin@enron.com
## 2780 7797 1093 BCC amelia.alder@enron.com
## 2781 7798 1093 BCC cheryl.cole@enron.com
## 2782 7799 1093 BCC betty.alexander@enron.com
## 2783 7802 1095 TO lorraine.lindberg@enron.com
## 2784 7876 1165 CC carries@tradefairgroup.com
## 2785 7877 1165 BCC carries@tradefairgroup.com
## 2786 7881 1168 CC davidj@tradefairgroup.com
## 2787 7882 1168 CC seang@tradefairgroup.com
## 2788 7883 1168 BCC davidj@tradefairgroup.com
## 2789 7884 1168 BCC seang@tradefairgroup.com
## 2790 7886 1169 CC seang@tradefairgroup.com
## 2791 7887 1169 BCC seang@tradefairgroup.com
## 2792 7888 1170 TO ljnorwood@calpine.com
## 2793 7891 1171 TO no.address@enron.com
## 2794 7892 1171 CC davidj@tradefairgroup.com
## 2795 7893 1171 CC seang@tradefairgroup.com
## 2796 7894 1171 CC miken@tradefairgroup.com
## 2797 7895 1171 CC jmakansi@pearlstreetinc.com
## 2798 7896 1171 BCC davidj@tradefairgroup.com
## 2799 7897 1171 BCC seang@tradefairgroup.com
## 2800 7898 1171 BCC miken@tradefairgroup.com
## 2801 7899 1171 BCC jmakansi@pearlstreetinc.com
## 2802 7901 1173 TO bill.dulle@enron.com
## 2803 7902 1173 CC carries@tradefairgroup.com
## 2804 7903 1173 BCC carries@tradefairgroup.com
## 2805 7905 1174 CC dulle@enron.com
## 2806 7906 1174 CC wdulle@amerenenergy.com
## 2807 7907 1174 BCC dulle@enron.com
## 2808 7908 1174 BCC wdulle@amerenenergy.com
## 2809 7909 1175 TO bill.dulle@enron.com
## 2810 7910 1176 TO no.address@enron.com
## 2811 7911 1176 CC caseym@tradefairgroup.com
## 2812 7912 1176 BCC caseym@tradefairgroup.com
## 2813 7913 1177 TO no.address@enron.com
## 2814 7916 1180 TO carries@tradefairgroup.com
## 2815 7919 1181 TO no.address@enron.com
## 2816 7926 1186 TO einsighttext@listserv.platts.com
## 2817 7928 1188 TO clients@cera.com
## 2818 7930 1190 TO sumey@enron.com
## 2819 7931 1190 TO ksumey@ftenergy.com
## 2820 7933 1192 TO dl-ga-all_enron_worldwide2@enron.com
## 2821 7935 1193 TO john.millar@enron.com
## 2822 7936 1193 TO susan.wadle@enron.com
## 2823 7939 1196 TO eric.gadd@enron.com
## 2824 7940 1196 TO stephen.dowd@enron.com
## 2825 7942 1196 TO john.millar@enron.com
## 2826 7943 1196 TO david.junus@enron.com
## 2827 7944 1196 TO elberg.gelin@enron.com
## 2828 7945 1196 TO michael.ratner@enron.com
## 2829 7946 1196 TO gabriel.chavez@enron.com
## 2830 7947 1196 TO martin.gonzalez@enron.com
## 2831 7948 1196 TO jebong.lee@enron.com
## 2832 7950 1197 CC eric.gadd@enron.com
## 2833 7951 1197 BCC eric.gadd@enron.com
## 2834 7952 1198 TO Enron Transportation Services Everyone - All@ENRON
## 2835 7953 1199 TO v.dickerson@enron.com
## 2836 7957 1201 TO james.centilli@enron.com
## 2837 7959 1201 TO morgan.gottsponer@enron.com
## 2838 7960 1201 TO dennis.alters@enron.com
## 2839 7961 1201 TO mansoor.abdmoulaie@enron.com
## 2840 7968 1208 TO james.centilli@enron.com
## 2841 7970 1208 TO blair.lichtenwalter@enron.com
## 2842 7972 1208 TO lorraine.lindberg@enron.com
## 2843 7974 1208 CC robert.kilmer@enron.com
## 2844 7975 1208 CC david.junus@enron.com
## 2845 7976 1208 CC susan.wadle@enron.com
## 2846 7977 1208 BCC robert.kilmer@enron.com
## 2847 7978 1208 BCC david.junus@enron.com
## 2848 7979 1208 BCC susan.wadle@enron.com
## 2849 7984 1213 TO robert.kilmer@enron.com
## 2850 7986 1213 TO eric.gadd@enron.com
## 2851 7988 1214 TO no.address@enron.com
## 2852 7989 1215 TO no.address@enron.com
## 2853 7990 1216 TO dl-ga-all_egs@enron.com
## 2854 7991 1217 TO no.address@enron.com
## 2855 7992 1218 TO no.address@enron.com
## 2856 7994 1220 TO no.address@enron.com
## 2857 7995 1220 TO agresti.michelle@enron.com
## 2858 7996 1220 TO lepage.melissa@enron.com
## 2859 7997 1220 TO powell.karen@enron.com
## 2860 7998 1220 TO prario.kara@enron.com
## 2861 7999 1220 TO a030.john@enron.com
## 2862 8000 1220 TO latour.jason@enron.com
## 2863 8001 1220 TO no.address@enron.com
## 2864 8002 1220 TO no.address@enron.com
## 2865 8003 1220 TO durkin.andrea@enron.com
## 2866 8004 1220 TO schmidt.adam@enron.com
## 2867 8009 1224 TO lorraine.lindberg@enron.com
## 2868 8010 1224 TO kimberly.watson@enron.com
## 2869 8011 1224 TO glen.hass@enron.com
## 2870 8012 1224 TO bill.rapp@enron.com
## 2871 8013 1224 TO robert.kilmer@enron.com
## 2872 8014 1225 TO janet.butler@enron.com
## 2873 8015 1226 TO eric.gadd@enron.com
## 2874 8016 1226 TO ron.matthews@enron.com
## 2875 8018 1226 CC ben.asante@enron.com
## 2876 8020 1226 BCC ben.asante@enron.com
## 2877 8021 1227 TO jansen . alicia@enron.com
## 2878 8022 1227 TO harmon . barbara@enron.com
## 2879 8023 1227 TO bunruh @enron.com
## 2880 8024 1227 TO goss . carol@enron.com
## 2881 8025 1227 TO hudler . cindy@enron.com
## 2882 8026 1227 TO theisen . dr@enron.com
## 2883 8027 1227 TO no.address@enron.com
## 2884 8028 1227 TO dietsch . erin@enron.com
## 2885 8029 1227 TO vaughn . greg@enron.com
## 2886 8030 1227 TO joern . jeff@enron.com
## 2887 8031 1227 TO ketcham . jim@enron.com
## 2888 8032 1227 TO ragusa . joe@enron.com
## 2889 8033 1227 TO leinhardt . judy@enron.com
## 2890 8034 1227 TO finkelman . karen@enron.com
## 2891 8035 1227 TO breckon . karl@enron.com
## 2892 8036 1227 TO daly-home . kelly@enron.com
## 2893 8037 1227 TO hyatt . kevin@enron.com
## 2894 8038 1227 TO cook . larry@enron.com
## 2895 8039 1227 TO brand . mark@enron.com
## 2896 8040 1227 TO wolpert . michelle@enron.com
## 2897 8041 1227 TO peterson . micki@enron.com
## 2898 8042 1227 TO gilson . mike@enron.com
## 2899 8043 1227 TO grieg . nancy@enron.com
## 2900 8044 1227 TO norm.spalding@enron.com
## 2901 8045 1227 TO hager . rhonda@enron.com
## 2902 8046 1227 TO wassinger . ruth@enron.com
## 2903 8047 1227 TO brannon . stephen@enron.com
## 2904 8048 1227 TO veedell . steve@enron.com
## 2905 8049 1227 TO bommer . arno@enron.com
## 2906 8053 1230 TO james.centilli@enron.com
## 2907 8058 1235 TO newgen@platts.com
## 2908 8059 1236 TO no.address@enron.com
## 2909 8060 1236 TO no.address@enron.com
## 2910 8061 1236 TO no.address@enron.com
## 2911 8062 1236 TO no.address@enron.com
## 2912 8063 1236 TO no.address@enron.com
## 2913 8064 1236 TO no.address@enron.com
## 2914 8065 1236 TO no.address@enron.com
## 2915 8066 1236 TO no.address@enron.com
## 2916 8067 1236 TO no.address@enron.com
## 2917 8068 1236 TO no.address@enron.com
## 2918 8070 1236 TO no.address@enron.com
## 2919 8071 1236 TO no.address@enron.com
## 2920 8072 1236 TO no.address@enron.com
## 2921 8073 1236 TO no.address@enron.com
## 2922 8074 1236 TO no.address@enron.com
## 2923 8075 1236 TO no.address@enron.com
## 2924 8076 1236 TO no.address@enron.com
## 2925 8077 1236 TO no.address@enron.com
## 2926 8078 1236 TO no.address@enron.com
## 2927 8079 1236 TO no.address@enron.com
## 2928 8080 1236 TO no.address@enron.com
## 2929 8081 1236 TO no.address@enron.com
## 2930 8083 1238 TO dl-ga-all_domestic@enron.com
## 2931 8090 1243 TO khyatt@ect.enron.com
## 2932 8710 1564 TO no.address@enron.com
## 2933 8711 1565 TO no.address@enron.com
## 2934 8712 1566 TO clients@cera.com
## 2935 8713 1567 TO powerindex@list.intcx.com
## 2936 8714 1568 TO gasindex@list.intcx.com
## 2937 8719 1573 TO courtney.barker@enron.com
## 2938 8720 1573 TO w..mcgowan@enron.com
## 2939 8721 1573 TO gabriel.chavez@enron.com
## 2940 8722 1573 TO v.dickerson@enron.com
## 2941 8723 1573 TO stephen.dowd@enron.com
## 2942 8724 1573 TO eric.gadd@enron.com
## 2943 8725 1573 TO elberg.gelin@enron.com
## 2944 8726 1573 TO martin.gonzalez@enron.com
## 2945 8728 1573 TO david.junus@enron.com
## 2946 8729 1573 TO jebong.lee@enron.com
## 2947 8730 1573 TO john.millar@enron.com
## 2948 8731 1573 TO michael.ratner@enron.com
## 2949 8732 1573 TO glen.hass@enron.com
## 2950 8733 1573 TO michael.loeffler@enron.com
## 2951 8734 1573 TO lon.stanton@enron.com
## 2952 8735 1573 TO rob.wilson@enron.com
## 2953 8736 1573 TO john.dushinske@enron.com
## 2954 8737 1573 TO bill.fowler@enron.com
## 2955 8738 1573 TO kent.miller@enron.com
## 2956 8739 1573 TO dave.neubauer@enron.com
## 2957 8740 1573 TO sue.neville@enron.com
## 2958 8741 1573 TO jo.williams@enron.com
## 2959 8742 1573 TO mike.barry@enron.com
## 2960 8743 1573 TO vicki.berg@enron.com
## 2961 8744 1573 TO sean.bolks@enron.com
## 2962 8745 1573 TO joni.bollinger@enron.com
## 2963 8746 1573 TO janet.bowers@enron.com
## 2964 8747 1573 TO theresa.branney@enron.com
## 2965 8748 1573 TO craig.buehler@enron.com
## 2966 8749 1573 TO bob.burleson@enron.com
## 2967 8750 1573 TO reyna.cabrera@enron.com
## 2968 8751 1573 TO tom.halpin@enron.com
## 2969 8752 1573 TO stephen.herber@enron.com
## 2970 8753 1573 TO martha.janousek@enron.com
## 2971 8754 1573 TO tim.johanson@enron.com
## 2972 8755 1573 TO karen.lagerstrom@enron.com
## 2973 8756 1573 TO laura.lantefield@enron.com
## 2974 8757 1573 TO robert.mason@enron.com
## 2975 8758 1573 TO penny.mccarran@enron.com
## 2976 8759 1573 TO vernon.mercaldo@enron.com
## 2977 8760 1573 TO frank.oldenhuis@enron.com
## 2978 8761 1573 TO larry.pavlou@enron.com
## 2979 8762 1573 TO loren.penkava@enron.com
## 2980 8763 1573 TO john.pritchard@enron.com
## 2981 8764 1573 TO richard.riehm@enron.com
## 2982 8765 1573 TO preston.roobaert@enron.com
## 2983 8766 1573 TO chris.sebesta@enron.com
## 2984 8767 1573 TO frank.semin@enron.com
## 2985 8768 1573 TO g..stage@enron.com
## 2986 8769 1573 TO bob.stevens@enron.com
## 2987 8770 1573 TO vincent.strohmeyer@enron.com
## 2988 8771 1573 TO steve.thomas@enron.com
## 2989 8772 1573 TO kay.threet@enron.com
## 2990 8773 1573 TO lisa.valley@enron.com
## 2991 8774 1573 TO steve.weller@enron.com
## 2992 8775 1573 TO chuck.wilkinson@enron.com
## 2993 8776 1573 TO allen.cohrs@enron.com
## 2994 8777 1573 TO john.fiscus@enron.com
## 2995 8778 1573 TO steve.gilbert@enron.com
## 2996 8779 1573 TO dana.jones@enron.com
## 2997 8780 1573 TO jane.joyce@enron.com
## 2998 8781 1573 TO stephanie.korbelik@enron.com
## 2999 8782 1573 TO don.powell@enron.com
## 3000 8783 1573 TO ken.powers@enron.com
## 3001 8786 1573 TO pallavi.goradia@enron.com
## 3002 8787 1573 TO lorraine.lindberg@enron.com
## 3003 8788 1573 TO tk.lohman@enron.com
## 3004 8790 1573 TO mark.mcconnell@enron.com
## 3005 8791 1573 TO jan.moore@enron.com
## 3006 8792 1573 TO kimberly.watson@enron.com
## 3007 8795 1575 TO everyone.dl-ets@enron.com
## 3008 8796 1575 TO distribution.dl-ets@enron.com
## 3009 8798 1577 TO gabriel.chavez@enron.com
## 3010 8799 1577 TO v.dickerson@enron.com
## 3011 8800 1577 TO stephen.dowd@enron.com
## 3012 8801 1577 TO eric.gadd@enron.com
## 3013 8802 1577 TO elberg.gelin@enron.com
## 3014 8803 1577 TO martin.gonzalez@enron.com
## 3015 8805 1577 TO david.junus@enron.com
## 3016 8806 1577 TO jebong.lee@enron.com
## 3017 8807 1577 TO john.millar@enron.com
## 3018 8808 1577 TO michael.ratner@enron.com
## 3019 8811 1577 TO pallavi.goradia@enron.com
## 3020 8812 1577 TO lorraine.lindberg@enron.com
## 3021 8813 1577 TO tk.lohman@enron.com
## 3022 8815 1577 TO mark.mcconnell@enron.com
## 3023 8816 1577 TO jan.moore@enron.com
## 3024 8817 1577 TO kimberly.watson@enron.com
## 3025 8819 1577 TO lee.huber@enron.com
## 3026 8820 1577 TO tony.pryor@enron.com
## 3027 8824 1581 TO einsighttext@listserv.platts.com
## 3028 8825 1582 TO Enron Everyone_ET&S_Houston@ENRON
## 3029 8828 1585 TO newsletter_text@chron-news.com
## 3030 8831 1588 TO All Enron Houston@ENRON
## 3031 8833 1590 TO hi@mailman.enron.com
## 3032 8834 1591 TO clients@cera.com
## 3033 8839 1596 TO powerindex@list.intcx.com
## 3034 8842 1598 CC arnie.bailey@enron.com
## 3035 8843 1598 CC bob.burleson@enron.com
## 3036 8844 1598 CC darrell.schoolcraft@enron.com
## 3037 8845 1598 CC perry.frazier@enron.com
## 3038 8846 1598 BCC arnie.bailey@enron.com
## 3039 8847 1598 BCC bob.burleson@enron.com
## 3040 8848 1598 BCC darrell.schoolcraft@enron.com
## 3041 8849 1598 BCC perry.frazier@enron.com
## 3042 8851 1600 TO lorraine.lindberg@enron.com
## 3043 8852 1600 TO lorraine.lindberg@enron.com
## 3044 8854 1600 CC eric.faucheaux@enron.com
## 3045 8855 1600 CC bob.burleson@enron.com
## 3046 8857 1600 BCC eric.faucheaux@enron.com
## 3047 8858 1600 BCC bob.burleson@enron.com
## 3048 8862 1602 CC darrell.schoolcraft@enron.com
## 3049 8863 1602 CC john.keller@enron.com
## 3050 8864 1602 CC rich.jolly@enron.com
## 3051 8865 1602 CC bob.burleson@enron.com
## 3052 8866 1602 CC randy.rice@enron.com
## 3053 8867 1602 CC john.keller@enron.com
## 3054 8868 1602 CC dennis.alters@enron.com
## 3055 8869 1602 CC terry.galassini@enron.com
## 3056 8870 1602 CC perry.frazier@enron.com
## 3057 8872 1602 BCC darrell.schoolcraft@enron.com
## 3058 8873 1602 BCC john.keller@enron.com
## 3059 8874 1602 BCC rich.jolly@enron.com
## 3060 8875 1602 BCC bob.burleson@enron.com
## 3061 8876 1602 BCC randy.rice@enron.com
## 3062 8877 1602 BCC john.keller@enron.com
## 3063 8878 1602 BCC dennis.alters@enron.com
## 3064 8879 1602 BCC terry.galassini@enron.com
## 3065 8880 1602 BCC perry.frazier@enron.com
## 3066 8881 1603 TO mike.mccracken@enron.com
## 3067 8882 1603 CC earl.chanley@enron.com
## 3068 8883 1603 CC mansoor.abdmoulaie@enron.com
## 3069 8884 1603 CC eric.faucheaux@enron.com
## 3070 8885 1603 CC arnie.bailey@enron.com
## 3071 8886 1603 CC team.artesia@enron.com
## 3072 8888 1603 BCC earl.chanley@enron.com
## 3073 8889 1603 BCC mansoor.abdmoulaie@enron.com
## 3074 8890 1603 BCC eric.faucheaux@enron.com
## 3075 8891 1603 BCC arnie.bailey@enron.com
## 3076 8892 1603 BCC team.artesia@enron.com
## 3077 8894 1604 TO john.keller@enron.com
## 3078 8895 1604 TO randy.rice@enron.com
## 3079 8896 1604 TO gary.maestas@enron.com
## 3080 8897 1604 TO arnie.bailey@enron.com
## 3081 8903 1606 TO lorraine.lindberg@enron.com
## 3082 8904 1606 TO tk.lohman@enron.com
## 3083 8906 1606 TO jan.moore@enron.com
## 3084 8907 1606 TO kimberly.watson@enron.com
## 3085 8908 1606 CC kay.miller@enron.com
## 3086 8909 1606 CC robert.kilmer@enron.com
## 3087 8910 1606 BCC kay.miller@enron.com
## 3088 8911 1606 BCC robert.kilmer@enron.com
## 3089 8913 1607 TO eric.gadd@enron.com
## 3090 8914 1607 TO stephen.dowd@enron.com
## 3091 8917 1607 TO pallavi.goradia@enron.com
## 3092 8918 1607 TO lorraine.lindberg@enron.com
## 3093 8919 1607 TO tk.lohman@enron.com
## 3094 8921 1607 TO jan.moore@enron.com
## 3095 8922 1607 TO kimberly.watson@enron.com
## 3096 8923 1607 TO lee.huber@enron.com
## 3097 8924 1607 TO tony.pryor@enron.com
## 3098 8926 1608 CC sharris1@enron.com
## 3099 8927 1608 BCC sharris1@enron.com
## 3100 8928 1609 TO gabriel.chavez@enron.com
## 3101 8929 1609 TO stephen.dowd@enron.com
## 3102 8930 1609 TO eric.gadd@enron.com
## 3103 8932 1609 TO john.millar@enron.com
## 3104 8933 1609 TO michael.ratner@enron.com
## 3105 8934 1609 TO gina.taylor@enron.com
## 3106 8935 1609 TO glen.hass@enron.com
## 3107 8936 1609 TO michael.loeffler@enron.com
## 3108 8937 1609 TO lon.stanton@enron.com
## 3109 8938 1609 TO rob.wilson@enron.com
## 3110 8941 1609 TO pallavi.goradia@enron.com
## 3111 8942 1609 TO lorraine.lindberg@enron.com
## 3112 8943 1609 TO tk.lohman@enron.com
## 3113 8945 1609 TO jan.moore@enron.com
## 3114 8946 1609 TO kimberly.watson@enron.com
## 3115 8947 1609 TO lee.huber@enron.com
## 3116 8948 1609 TO tony.pryor@enron.com
## 3117 8950 1611 TO courtney.barker@enron.com
## 3118 8951 1611 TO mike.barry@enron.com
## 3119 8952 1611 TO joni.bollinger@enron.com
## 3120 8953 1611 TO laura.lantefield@enron.com
## 3121 8954 1611 TO loren.penkava@enron.com
## 3122 8955 1611 TO chris.sebesta@enron.com
## 3123 8956 1611 TO lisa.valley@enron.com
## 3124 8959 1611 TO jeffery.fawcett@enron.com
## 3125 8960 1611 TO pallavi.goradia@enron.com
## 3126 8961 1611 TO lorraine.lindberg@enron.com
## 3127 8962 1611 TO tk.lohman@enron.com
## 3128 8964 1611 TO jan.moore@enron.com
## 3129 8965 1611 TO kimberly.watson@enron.com
## 3130 8966 1611 TO lee.huber@enron.com
## 3131 8967 1611 TO susan.scott@enron.com
## 3132 8968 1611 TO eric.gadd@enron.com
## 3133 8970 1611 TO michael.ratner@enron.com
## 3134 8972 1612 TO eric.gadd@enron.com
## 3135 8975 1613 TO clients@cera.com
## 3136 8976 1614 TO einsighttext@listserv.platts.com
## 3137 8982 1620 TO lesli.campbell@enron.com
## 3138 8984 1620 TO pamela.rush@enron.com
## 3139 8986 1622 TO john.millar@enron.com
## 3140 8988 1622 TO stephen.dowd@enron.com
## 3141 8989 1622 TO michael.ratner@enron.com
## 3142 8990 1622 TO elberg.gelin@enron.com
## 3143 8991 1622 TO david.junus@enron.com
## 3144 8992 1622 TO martin.gonzalez@enron.com
## 3145 8993 1622 TO gabriel.chavez@enron.com
## 3146 8994 1622 TO jebong.lee@enron.com
## 3147 8995 1622 CC eric.gadd@enron.com
## 3148 8996 1622 BCC eric.gadd@enron.com
## 3149 8997 1623 TO lippmanc@aol.com
## 3150 8998 1624 TO powerindex@list.intcx.com
## 3151 8999 1625 TO gasindex@list.intcx.com
## 3152 9000 1626 TO susan.wadle@enron.com
## 3153 9001 1626 CC eric.gadd@enron.com
## 3154 9003 1626 BCC eric.gadd@enron.com
## 3155 9006 1627 CC susan.scott@enron.com
## 3156 9007 1627 CC morgan.gottsponer@enron.com
## 3157 9008 1627 BCC susan.scott@enron.com
## 3158 9009 1627 BCC morgan.gottsponer@enron.com
## 3159 9011 1628 CC lorraine.lindberg@enron.com
## 3160 9012 1628 CC eric.faucheaux@enron.com
## 3161 9013 1628 CC perry.frazier@enron.com
## 3162 9014 1628 CC morgan.gottsponer@enron.com
## 3163 9015 1628 BCC lorraine.lindberg@enron.com
## 3164 9016 1628 BCC eric.faucheaux@enron.com
## 3165 9017 1628 BCC perry.frazier@enron.com
## 3166 9018 1628 BCC morgan.gottsponer@enron.com
## 3167 9019 1629 TO igi@nctimes.net
## 3168 9020 1629 CC morgan.gottsponer@enron.com
## 3169 9023 1629 CC eric.faucheaux@enron.com
## 3170 9024 1629 CC susan.scott@enron.com
## 3171 9026 1629 CC kay.miller@enron.com
## 3172 9027 1629 CC darrell.schoolcraft@enron.com
## 3173 9028 1629 BCC morgan.gottsponer@enron.com
## 3174 9031 1629 BCC eric.faucheaux@enron.com
## 3175 9032 1629 BCC susan.scott@enron.com
## 3176 9034 1629 BCC kay.miller@enron.com
## 3177 9035 1629 BCC darrell.schoolcraft@enron.com
## 3178 9036 1630 TO earl.chanley@enron.com
## 3179 9037 1630 CC rich.jolly@enron.com
## 3180 9038 1630 CC mike.mccracken@enron.com
## 3181 9039 1630 CC laura.kunkel@enron.com
## 3182 9040 1630 CC darrell.schoolcraft@enron.com
## 3183 9042 1630 CC perry.frazier@enron.com
## 3184 9043 1630 CC team.carlsbad@enron.com
## 3185 9045 1630 CC george.kneisley@enron.com
## 3186 9046 1630 CC bob.burleson@enron.com
## 3187 9047 1630 BCC rich.jolly@enron.com
## 3188 9048 1630 BCC mike.mccracken@enron.com
## 3189 9049 1630 BCC laura.kunkel@enron.com
## 3190 9050 1630 BCC darrell.schoolcraft@enron.com
## 3191 9052 1630 BCC perry.frazier@enron.com
## 3192 9053 1630 BCC team.carlsbad@enron.com
## 3193 9055 1630 BCC george.kneisley@enron.com
## 3194 9056 1630 BCC bob.burleson@enron.com
## 3195 9058 1631 CC harry.okabayashi@enron.com
## 3196 9059 1631 BCC harry.okabayashi@enron.com
## 3197 9060 1632 TO igi@nctimes.net
## 3198 9061 1632 CC ronald.matthews@enron.com
## 3199 9064 1632 CC susan.scott@enron.com
## 3200 9066 1632 CC eric.faucheaux@enron.com
## 3201 9067 1632 BCC ronald.matthews@enron.com
## 3202 9070 1632 BCC susan.scott@enron.com
## 3203 9072 1632 BCC eric.faucheaux@enron.com
## 3204 9073 1633 TO steven.january@enron.com
## 3205 9102 1646 TO eric.faucheaux@enron.com
## 3206 9105 1647 TO perry.frazier@enron.com
## 3207 9106 1647 TO arnie.bailey@enron.com
## 3208 9107 1647 CC eric.faucheaux@enron.com
## 3209 9108 1647 CC ben.asante@enron.com
## 3210 9109 1647 CC team.carlsbad@enron.com
## 3211 9110 1647 CC rich.jolly@enron.com
## 3212 9111 1647 CC mike.mccracken@enron.com
## 3213 9112 1647 CC james.moore@enron.com
## 3214 9113 1647 CC earl.chanley@enron.com
## 3215 9115 1647 BCC eric.faucheaux@enron.com
## 3216 9116 1647 BCC ben.asante@enron.com
## 3217 9117 1647 BCC team.carlsbad@enron.com
## 3218 9118 1647 BCC rich.jolly@enron.com
## 3219 9119 1647 BCC mike.mccracken@enron.com
## 3220 9120 1647 BCC james.moore@enron.com
## 3221 9121 1647 BCC earl.chanley@enron.com
## 3222 9123 1648 TO lorraine.lindberg@enron.com
## 3223 9124 1648 CC arnie.bailey@enron.com
## 3224 9125 1648 CC eric.faucheaux@enron.com
## 3225 9126 1648 CC ben.asante@enron.com
## 3226 9127 1648 CC team.carlsbad@enron.com
## 3227 9128 1648 CC rich.jolly@enron.com
## 3228 9129 1648 CC mike.mccracken@enron.com
## 3229 9130 1648 CC james.moore@enron.com
## 3230 9131 1648 CC earl.chanley@enron.com
## 3231 9133 1648 BCC arnie.bailey@enron.com
## 3232 9134 1648 BCC eric.faucheaux@enron.com
## 3233 9135 1648 BCC ben.asante@enron.com
## 3234 9136 1648 BCC team.carlsbad@enron.com
## 3235 9137 1648 BCC rich.jolly@enron.com
## 3236 9138 1648 BCC mike.mccracken@enron.com
## 3237 9139 1648 BCC james.moore@enron.com
## 3238 9140 1648 BCC earl.chanley@enron.com
## 3239 9142 1649 TO perry.frazier@enron.com
## 3240 9143 1649 CC arnie.bailey@enron.com
## 3241 9144 1649 CC eric.faucheaux@enron.com
## 3242 9145 1649 CC ben.asante@enron.com
## 3243 9146 1649 CC team.carlsbad@enron.com
## 3244 9147 1649 CC rich.jolly@enron.com
## 3245 9148 1649 CC mike.mccracken@enron.com
## 3246 9149 1649 CC james.moore@enron.com
## 3247 9150 1649 CC earl.chanley@enron.com
## 3248 9152 1649 BCC arnie.bailey@enron.com
## 3249 9153 1649 BCC eric.faucheaux@enron.com
## 3250 9154 1649 BCC ben.asante@enron.com
## 3251 9155 1649 BCC team.carlsbad@enron.com
## 3252 9156 1649 BCC rich.jolly@enron.com
## 3253 9157 1649 BCC mike.mccracken@enron.com
## 3254 9158 1649 BCC james.moore@enron.com
## 3255 9159 1649 BCC earl.chanley@enron.com
## 3256 9161 1650 TO lorraine.lindberg@enron.com
## 3257 9162 1650 TO bob.burleson@enron.com
## 3258 9164 1650 CC morgan.gottsponer@enron.com
## 3259 9165 1650 CC earl.chanley@enron.com
## 3260 9166 1650 CC mansoor.abdmoulaie@enron.com
## 3261 9167 1650 CC perry.frazier@enron.com
## 3262 9168 1650 CC rich.jolly@enron.com
## 3263 9169 1650 CC darrell.schoolcraft@enron.com
## 3264 9170 1650 CC steven.january@enron.com
## 3265 9171 1650 CC rich.jolly@enron.com
## 3266 9172 1650 CC arnie.bailey@enron.com
## 3267 9174 1650 BCC morgan.gottsponer@enron.com
## 3268 9175 1650 BCC earl.chanley@enron.com
## 3269 9176 1650 BCC mansoor.abdmoulaie@enron.com
## 3270 9177 1650 BCC perry.frazier@enron.com
## 3271 9178 1650 BCC rich.jolly@enron.com
## 3272 9179 1650 BCC darrell.schoolcraft@enron.com
## 3273 9180 1650 BCC steven.january@enron.com
## 3274 9181 1650 BCC rich.jolly@enron.com
## 3275 9182 1650 BCC arnie.bailey@enron.com
## 3276 9204 1653 CC eric.gadd@enron.com
## 3277 9205 1653 CC john.millar@enron.com
## 3278 9206 1653 BCC eric.gadd@enron.com
## 3279 9207 1653 BCC john.millar@enron.com
## 3280 9209 1655 TO johnny.mcgee@enron.com
## 3281 9210 1655 TO doug.cebryk@enron.com
## 3282 9211 1655 TO eric.gadd@enron.com
## 3283 9212 1655 TO ron.matthews@enron.com
## 3284 9213 1655 TO dennis.alters@enron.com
## 3285 9214 1655 TO kimberly.watson@enron.com
## 3286 9215 1655 TO gina.taylor@enron.com
## 3287 9217 1655 TO stephen.veatch@enron.com
## 3288 9218 1655 TO sarah.haden@enron.com
## 3289 9219 1655 TO blair.lichtenwalter@enron.com
## 3290 9223 1656 TO eric.gadd@enron.com
## 3291 9226 1658 TO gabriel.chavez@enron.com
## 3292 9227 1658 TO v.dickerson@enron.com
## 3293 9228 1658 TO stephen.dowd@enron.com
## 3294 9229 1658 TO eric.gadd@enron.com
## 3295 9230 1658 TO elberg.gelin@enron.com
## 3296 9231 1658 TO martin.gonzalez@enron.com
## 3297 9233 1658 TO david.junus@enron.com
## 3298 9234 1658 TO jebong.lee@enron.com
## 3299 9235 1658 TO john.millar@enron.com
## 3300 9236 1658 TO michael.ratner@enron.com
## 3301 9238 1660 TO mark.brand@enron.com
## 3302 9239 1660 TO j..krejci@enron.com
## 3303 9241 1661 TO Enron Everyone_ET&S_Houston@ENRON
## 3304 9243 1663 TO no.address@enron.com
## 3305 9244 1664 TO no.address@enron.com
## 3306 9246 1665 TO clients@cera.com
## 3307 9248 1667 TO All Enron Houston@ENRON
## 3308 9250 1669 TO einsighttext@listserv.platts.com
## 3309 9255 1674 TO gasindex@list.intcx.com
## 3310 9256 1675 TO powerindex@list.intcx.com
## 3311 9258 1677 TO e..whatley@enron.com
## 3312 9260 1677 TO scott.massey@enron.com
## 3313 9261 1677 TO judy.dyess@enron.com
## 3314 9262 1678 TO lippmanc@aol.com
## 3315 9263 1679 TO janet.bowers@enron.com
## 3316 9264 1679 TO tom.halpin@enron.com
## 3317 9265 1679 TO michael.loeffler@enron.com
## 3318 9266 1679 TO ryan.choquette@enron.com
## 3319 9267 1679 TO john.dushinske@enron.com
## 3320 9268 1679 TO chuck.wilkinson@enron.com
## 3321 9269 1679 TO john.sturn@enron.com
## 3322 9270 1679 TO tom.gilbert@enron.com
## 3323 9271 1679 TO randy.rice@enron.com
## 3324 9272 1679 TO dennis.alters@enron.com
## 3325 9273 1679 TO lorraine.lindberg@enron.com
## 3326 9275 1679 TO david.roensch@enron.com
## 3327 9276 1679 TO rich.jolly@enron.com
## 3328 9278 1679 TO joni.bollinger@enron.com
## 3329 9279 1679 TO bruce.tuttle@enron.com
## 3330 9280 1679 TO jerry.graves@enron.com
## 3331 9281 1679 TO dan.mowrer@enron.com
## 3332 9282 1679 TO deaun.trayer@enron.com
## 3333 9283 1679 TO sharon.farrell@enron.com
## 3334 9284 1679 TO jack.boatman@enron.com
## 3335 9285 1679 TO marcello.minotti@enron.com
## 3336 9286 1679 TO gary.dreadin@enron.com
## 3337 9287 1679 TO chris.christenson@enron.com
## 3338 9288 1679 TO jami.horton@enron.com
## 3339 9289 1679 TO s..smith@enron.com
## 3340 9290 1679 TO bret.fritch@enron.com
## 3341 9291 1679 TO steve.weller@enron.com
## 3342 9292 1679 TO chris.sebesta@enron.com
## 3343 9293 1679 TO greg.mall@enron.com
## 3344 9294 1679 TO dan.swanson@enron.com
## 3345 9295 1679 TO frazier.king@enron.com
## 3346 9296 1679 TO douglas.mulhausen@enron.com
## 3347 9297 1679 TO david.sztroin@enron.com
## 3348 9298 1679 TO rick.lucas@enron.com
## 3349 9299 1679 TO jimmy.dowden@enron.com
## 3350 9300 1679 TO maurice.gilbert@enron.com
## 3351 9301 1679 TO dean.hallowell@enron.com
## 3352 9302 1679 TO michele.winckowski@enron.com
## 3353 9303 1679 TO steve.thomas@enron.com
## 3354 9304 1679 TO ranelle.paladino@enron.com
## 3355 9305 1679 TO patricia.steele@enron.com
## 3356 9306 1679 TO zuela.carter@enron.com
## 3357 9307 1679 TO craig.buehler@enron.com
## 3358 9308 1679 TO jo.williams@enron.com
## 3359 9309 1679 TO bob.burleson@enron.com
## 3360 9310 1679 TO kimberly.watson@enron.com
## 3361 9311 1679 TO s..wang@enron.com
## 3362 9312 1679 TO ben.asante@enron.com
## 3363 9313 1679 TO earl.chanley@enron.com
## 3364 9314 1679 TO dennis.lee@enron.com
## 3365 9315 1679 TO tk.lohman@enron.com
## 3366 9316 1679 TO darrell.schoolcraft@enron.com
## 3367 9318 1679 TO allan.weatherford@enron.com
## 3368 9319 1679 TO mike.teal@enron.com
## 3369 9320 1680 TO All Enron Employees United States Group@ENRON
## 3370 9321 1681 TO no.address@enron.com
## 3371 9322 1682 TO geneva.davis@enron.com
## 3372 9325 1684 TO dl-ga-all_enron_worldwide2@enron.com
## 3373 9328 1687 TO william.plunkett@enron.com
## 3374 9329 1687 TO jim.goodman@enron.com
## 3375 9333 1690 TO lippmanc@aol.com
## 3376 9334 1691 TO gabriel.chavez@enron.com
## 3377 9335 1691 TO v.dickerson@enron.com
## 3378 9336 1691 TO stephen.dowd@enron.com
## 3379 9337 1691 TO eric.gadd@enron.com
## 3380 9338 1691 TO elberg.gelin@enron.com
## 3381 9339 1691 TO martin.gonzalez@enron.com
## 3382 9341 1691 TO david.junus@enron.com
## 3383 9342 1691 TO jebong.lee@enron.com
## 3384 9343 1691 TO john.millar@enron.com
## 3385 9344 1691 TO michael.ratner@enron.com
## 3386 9346 1693 TO courtney.barker@enron.com
## 3387 9347 1693 TO mike.barry@enron.com
## 3388 9348 1693 TO vicki.berg@enron.com
## 3389 9349 1693 TO sean.bolks@enron.com
## 3390 9350 1693 TO joni.bollinger@enron.com
## 3391 9351 1693 TO janet.bowers@enron.com
## 3392 9352 1693 TO lorna.brennan@enron.com
## 3393 9353 1693 TO bob.burleson@enron.com
## 3394 9354 1693 TO reyna.cabrera@enron.com
## 3395 9355 1693 TO allen.cohrs@enron.com
## 3396 9357 1693 TO john.dushinske@enron.com
## 3397 9358 1693 TO john.fiscus@enron.com
## 3398 9359 1693 TO bill.fowler@enron.com
## 3399 9360 1693 TO eric.gadd@enron.com
## 3400 9361 1693 TO steve.gilbert@enron.com
## 3401 9362 1693 TO tom.halpin@enron.com
## 3402 9364 1693 TO stephen.herber@enron.com
## 3403 9366 1693 TO tim.johanson@enron.com
## 3404 9367 1693 TO dana.jones@enron.com
## 3405 9368 1693 TO jane.joyce@enron.com
## 3406 9369 1693 TO stephanie.korbelik@enron.com
## 3407 9370 1693 TO karen.lagerstrom@enron.com
## 3408 9371 1693 TO laura.lantefield@enron.com
## 3409 9372 1693 TO lorraine.lindberg@enron.com
## 3410 9373 1693 TO tk.lohman@enron.com
## 3411 9375 1693 TO penny.mccarran@enron.com
## 3412 9376 1693 TO w..mcgowan@enron.com
## 3413 9377 1693 TO vernon.mercaldo@enron.com
## 3414 9378 1693 TO john.millar@enron.com
## 3415 9379 1693 TO kent.miller@enron.com
## 3416 9380 1693 TO jan.moore@enron.com
## 3417 9381 1693 TO dave.neubauer@enron.com
## 3418 9382 1693 TO sue.neville@enron.com
## 3419 9383 1693 TO frank.oldenhuis@enron.com
## 3420 9384 1693 TO ranelle.paladino@enron.com
## 3421 9385 1693 TO larry.pavlou@enron.com
## 3422 9386 1693 TO loren.penkava@enron.com
## 3423 9387 1693 TO don.powell@enron.com
## 3424 9388 1693 TO ken.powers@enron.com
## 3425 9389 1693 TO john.pritchard@enron.com
## 3426 9390 1693 TO richard.riehm@enron.com
## 3427 9391 1693 TO preston.roobaert@enron.com
## 3428 9392 1693 TO chris.sebesta@enron.com
## 3429 9393 1693 TO frank.semin@enron.com
## 3430 9394 1693 TO g..stage@enron.com
## 3431 9395 1693 TO bob.stevens@enron.com
## 3432 9396 1693 TO steve.thomas@enron.com
## 3433 9397 1693 TO kay.threet@enron.com
## 3434 9398 1693 TO lisa.valley@enron.com
## 3435 9399 1693 TO kimberly.watson@enron.com
## 3436 9400 1693 TO steve.weller@enron.com
## 3437 9401 1693 TO roger.westfall@enron.com
## 3438 9402 1693 TO chuck.wilkinson@enron.com
## 3439 9403 1693 TO jo.williams@enron.com
## 3440 9404 1693 TO john.williams@enron.com
## 3441 9405 1693 TO deborah.cappiello@enron.com
## 3442 9406 1693 TO connie.hook@enron.com
## 3443 9407 1693 TO julie.mccoy@enron.com
## 3444 9408 1693 TO pilar.ramirez@enron.com
## 3445 9409 1693 TO audrey.robertson@enron.com
## 3446 9410 1693 TO susan.wadle@enron.com
## 3447 9411 1693 TO linda.wehring@enron.com
## 3448 9412 1694 TO Enron Everyone_ET&S_Houston@ENRON
## 3449 9413 1695 TO newsletter_text@chron-news.com
## 3450 9423 1705 TO no.address@enron.com
## 3451 9424 1706 TO clients@cera.com
## 3452 9429 1711 TO einsighttext@listserv.platts.com
## 3453 9431 1713 TO powerindex@list.intcx.com
## 3454 9432 1714 TO gasindex@list.intcx.com
## 3455 9436 1717 TO josh.mayes@enron.com
## 3456 9437 1717 TO victor.garza@enron.com
## 3457 9438 1718 TO powerindex@list.intcx.com
## 3458 9439 1719 TO gasindex@list.intcx.com
## 3459 9440 1720 TO lippmanc@aol.com
## 3460 9444 1724 TO Enron Global Services - US@ENRON
## 3461 9445 1725 TO einsighttext@listserv.platts.com
## 3462 9446 1726 TO All Enron Houston@ENRON
## 3463 9447 1727 TO elizabeth.brown@enron.com
## 3464 9448 1727 TO john.buchanan@enron.com
## 3465 9449 1727 TO mary.draemer@enron.com
## 3466 9450 1727 TO perry.frazier@enron.com
## 3467 9451 1727 TO bert.hernandez@enron.com
## 3468 9453 1727 TO terry.kowalke@enron.com
## 3469 9454 1727 TO dennis.lee@enron.com
## 3470 9455 1727 TO lorraine.lindberg@enron.com
## 3471 9456 1727 TO tk.lohman@enron.com
## 3472 9458 1727 TO sigrid.macpherson@enron.com
## 3473 9459 1727 TO christine.mcevoy@enron.com
## 3474 9460 1727 TO vernon.mercaldo@enron.com
## 3475 9461 1727 TO beverly.miller@enron.com
## 3476 9462 1727 TO tracy.minter@enron.com
## 3477 9463 1727 TO amy.mulligan@enron.com
## 3478 9464 1727 TO gale.ramsaran@enron.com
## 3479 9465 1727 TO darrell.schoolcraft@enron.com
## 3480 9466 1727 TO gary.spraggins@enron.com
## 3481 9467 1727 TO james.studebaker@enron.com
## 3482 9468 1727 TO linda.trevino@enron.com
## 3483 9469 1727 TO donald.vignaroli@enron.com
## 3484 9470 1727 TO linda.ward@enron.com
## 3485 9473 1729 TO lorraine.lindberg@enron.com
## 3486 9474 1730 TO no.address@enron.com
## 3487 9475 1731 TO platts@listserv.platts.com
## 3488 9476 1732 TO susan.wadle@enron.com
## 3489 9478 1732 CC cindy.stark@enron.com
## 3490 9480 1732 BCC cindy.stark@enron.com
## 3491 9482 1734 TO morris.brassfield@enron.com
## 3492 9486 1736 TO dl-ga-all_enron_houston@enron.com
## 3493 9487 1737 TO no.address@enron.com
## 3494 9489 1739 TO platts@listserv.platts.com
## 3495 9490 1740 TO aberdy@aol.com
## 3496 9491 1740 TO arthur.goldsmith@att.net
## 3497 9492 1740 TO acooper2@columbus.rr.com
## 3498 9493 1740 TO darango@houston.rr.com
## 3499 9494 1740 TO djoraholmen@houston.rr.com
## 3500 9495 1740 TO jdyess@houston.rr.com
## 3501 9496 1740 TO eufard.cooper@att.net
## 3502 9498 1740 TO indyandy06@msn.com
## 3503 9499 1740 TO irongator@aol.com
## 3504 9500 1740 TO kwangenheim@houston.rr.com
## 3505 9501 1740 TO johnstonp@houston.rr.com
## 3506 9502 1740 TO dmarquardt@prodigy.net
## 3507 9503 1740 TO massey.r@worldnet.att.net
## 3508 9504 1740 TO ronmichalski@msn.com
## 3509 9505 1740 TO jpoxer@houston.rr.com
## 3510 9506 1740 TO pdalessandro64@hotmail.com
## 3511 9507 1740 TO dsaucier@columbus.rr.com
## 3512 9508 1740 TO fshort@houston.rr.com
## 3513 9509 1740 TO steveswerd@aol.com
## 3514 9510 1740 TO wtruxillo@hotmail.com
## 3515 9511 1740 TO tsundel@houston.rr.com
## 3516 9512 1740 TO newhatley@earthlink.net
## 3517 9513 1740 TO gfoust@adelphia.net
## 3518 9514 1740 TO jfoust@adelphia.net
## 3519 9515 1740 TO hmathews@houston.rr.com
## 3520 9518 1743 TO no.address@enron.com
## 3521 9519 1743 CC aceversull@aol.com
## 3522 9520 1743 CC grector@houston.rr.com
## 3523 9521 1743 CC brector@meridianconsultants.net
## 3524 9522 1743 CC c..cih@enron.com
## 3525 9523 1743 CC chip.till@chevrontexaco.com
## 3526 9524 1743 CC c..cih@enron.com
## 3527 9525 1743 CC till5@mindspring.com
## 3528 9526 1743 CC bailecj@chevrontexaco.com
## 3529 9527 1743 CC chenry@reliantenergy.com
## 3530 9528 1743 CC psiinc@flash.net
## 3531 9529 1743 CC dshepperd@trilliuminc.com
## 3532 9530 1743 CC dianasallen@hotmail.com
## 3533 9531 1743 CC dbvarga@worldnet.att.net
## 3534 9532 1743 CC dlarson@kingwoodcable.com
## 3535 9533 1743 CC fremcoeastcoast@aol.com
## 3536 9534 1743 CC gwynngorsuch@hotmail.com
## 3537 9536 1743 CC jasbarnes019@cs.com
## 3538 9537 1743 CC jldorrell@aol.com
## 3539 9538 1743 BCC aceversull@aol.com
## 3540 9539 1743 BCC grector@houston.rr.com
## 3541 9540 1743 BCC brector@meridianconsultants.net
## 3542 9541 1743 BCC c..cih@enron.com
## 3543 9542 1743 BCC chip.till@chevrontexaco.com
## 3544 9543 1743 BCC c..cih@enron.com
## 3545 9544 1743 BCC till5@mindspring.com
## 3546 9545 1743 BCC bailecj@chevrontexaco.com
## 3547 9546 1743 BCC chenry@reliantenergy.com
## 3548 9547 1743 BCC psiinc@flash.net
## 3549 9548 1743 BCC dshepperd@trilliuminc.com
## 3550 9549 1743 BCC dianasallen@hotmail.com
## 3551 9550 1743 BCC dbvarga@worldnet.att.net
## 3552 9551 1743 BCC dlarson@kingwoodcable.com
## 3553 9552 1743 BCC fremcoeastcoast@aol.com
## 3554 9553 1743 BCC gwynngorsuch@hotmail.com
## 3555 9555 1743 BCC jasbarnes019@cs.com
## 3556 9556 1743 BCC jldorrell@aol.com
## 3557 9559 1746 TO lorraine.lindberg@enron.com
## 3558 9560 1746 TO tk.lohman@enron.com
## 3559 9561 1746 TO kimberly.watson@enron.com
## 3560 9562 1746 TO mark.mcconnell@enron.com
## 3561 9565 1746 TO eric.gadd@enron.com
## 3562 9569 1748 TO platts@listserv.platts.com
## 3563 9576 1755 TO mmarina@conservetn.com
## 3564 9577 1755 TO alisonspare@cs.com
## 3565 9578 1755 TO charles_t._wehland@jonesday.com
## 3566 9579 1755 TO ccarter@mcnair.net
## 3567 9580 1755 TO cbell@sidley.com
## 3568 9581 1755 TO dmcvicker@ldsr.com
## 3569 9582 1755 TO dgilles@ermse.com
## 3570 9583 1755 TO dharbin@mail.state.tn.us
## 3571 9584 1755 TO david.hollyday@carepoint.com
## 3572 9585 1755 TO tdhinch@triadenv.com
## 3573 9586 1755 TO ehscott@premiercorp-usa.com
## 3574 9587 1755 TO eware@mcnair.net
## 3575 9588 1755 TO grow@enron.com
## 3576 9589 1755 TO growtom@bfusa.com
## 3577 9591 1755 TO lems@eralley.com
## 3578 9592 1755 TO markinney@aol.com
## 3579 9593 1755 TO mabutler@conservetn.com
## 3580 9594 1755 TO paul.breeding@rmtinc.com
## 3581 9595 1755 TO pqd@roblaw.net
## 3582 9596 1755 TO randall_taylor@urscorp.com
## 3583 9597 1755 TO rrboner@aol.com
## 3584 9598 1755 TO scottw@eralley.com
## 3585 9599 1755 TO sean_mccarthy@tmmna.com
## 3586 9600 1755 TO shrdnbrd@mindspring.com
## 3587 9601 1755 TO c002s09@langate.tnet.state.tn.us
## 3588 9605 1756 TO lorraine.lindberg@enron.com
## 3589 9606 1756 TO tk.lohman@enron.com
## 3590 9608 1756 TO mark.mcconnell@enron.com
## 3591 9609 1756 TO audrey.robertson@enron.com
## 3592 9610 1756 TO kimberly.watson@enron.com
## 3593 9614 1758 TO no.address@enron.com
## 3594 9619 1763 TO no.address@enron.com
## 3595 9620 1763 CC rick_krejci@kindermorgan.com
## 3596 9621 1763 BCC rick_krejci@kindermorgan.com
## 3597 9622 1764 TO krejci . joellen@enron.com
## 3598 9623 1764 TO d..butler@enron.com
## 3599 9624 1764 TO a..cutrer@enron.com
## 3600 9625 1764 TO m..knouse@enron.com
## 3601 9626 1764 TO g..tostengard@enron.com
## 3602 9627 1764 CC krejci@enron.com
## 3603 9628 1764 CC rick_krejci@kindermorgan.com
## 3604 9629 1764 BCC krejci@enron.com
## 3605 9630 1764 BCC rick_krejci@kindermorgan.com
## 3606 9631 1765 TO platts@listserv.platts.com
## 3607 9633 1767 TO kimberly.watson@enron.com
## 3608 9634 1767 TO tk.lohman@enron.com
## 3609 9635 1767 TO lorraine.lindberg@enron.com
## 3610 9639 1767 TO jan.moore@enron.com
## 3611 9641 1767 TO audrey.robertson@enron.com
## 3612 9642 1767 TO bill.rapp@enron.com
## 3613 9644 1767 TO james.centilli@enron.com
## 3614 9645 1767 CC jmalinov@yahoo.com
## 3615 9646 1767 CC sarah.mcconnell@compaq.com
## 3616 9647 1767 BCC jmalinov@yahoo.com
## 3617 9648 1767 BCC sarah.mcconnell@compaq.com
## 3618 9649 1768 TO newsletter_text@chron-news.com
## 3619 9652 1771 TO no.address@enron.com
## 3620 9656 1774 CC dean.mccallister@enron.com
## 3621 9657 1774 BCC dean.mccallister@enron.com
## 3622 9658 1775 TO rdoyle@mbakercorp.com
## 3623 9659 1775 TO gfoust@adelphia.net
## 3624 9660 1775 TO indyandy06@msn.com
## 3625 9661 1775 TO tsundel@houston.rr.com
## 3626 9662 1775 TO dsaucier@columbus.rr.com
## 3627 9664 1775 TO newhatley@earthlink.net
## 3628 9665 1775 TO jwright3@sbcglobal.net
## 3629 9666 1776 TO dl-ga-all_enron_houston@enron.com
## 3630 9667 1777 TO platts@listserv.platts.com
## 3631 9668 1778 TO audrey.robertson@enron.com
## 3632 9670 1778 TO kimberly.watson@enron.com
## 3633 9671 1778 TO lorraine.lindberg@enron.com
## 3634 9672 1778 TO tk.lohman@enron.com
## 3635 9674 1778 TO mark.mcconnell@enron.com
## 3636 9675 1778 TO james.centilli@enron.com
## 3637 9677 1778 TO susan.wadle@enron.com
## 3638 9678 1778 TO eric.gadd@enron.com
## 3639 9679 1778 TO julie.armstrong@enron.com
## 3640 9685 1782 CC ward@enron.com
## 3641 9686 1782 CC bill.ward@harrisgroup.com
## 3642 9687 1782 BCC ward@enron.com
## 3643 9688 1782 BCC bill.ward@harrisgroup.com
## 3644 9691 1784 TO kimberly.watson@enron.com
## 3645 9692 1784 TO lorraine.lindberg@enron.com
## 3646 9693 1784 TO tk.lohman@enron.com
## 3647 9695 1784 TO mark.mcconnell@enron.com
## 3648 9696 1784 TO james.centilli@enron.com
## 3649 9698 1784 TO susan.wadle@enron.com
## 3650 9699 1784 TO eric.gadd@enron.com
## 3651 9700 1784 TO julie.armstrong@enron.com
## 3652 9702 1784 CC audrey.robertson@enron.com
## 3653 9703 1784 BCC audrey.robertson@enron.com
## 3654 9704 1785 TO platts@listserv.platts.com
## 3655 9705 1786 TO paula.corey@enron.com
## 3656 9707 1786 CC eric.gadd@enron.com
## 3657 9709 1786 BCC eric.gadd@enron.com
## 3658 9711 1788 TO gfoust@adelphia.net
## 3659 9712 1788 TO jfoust@adelphia.net
## 3660 9714 1788 TO indyandy06@msn.com
## 3661 9715 1788 TO irongator@aol.com
## 3662 9716 1788 TO kwangenheim@houston.rr.com
## 3663 9717 1788 TO markkiddle@aol.com
## 3664 9718 1788 TO ronmichalski@msn.com
## 3665 9719 1788 TO jpoxer@houston.rr.com
## 3666 9720 1788 TO pdalessandro64@hotmail.com
## 3667 9721 1788 TO m_b_rosen@yahoo.com
## 3668 9722 1788 TO dsaucier@columbus.rr.com
## 3669 9723 1788 TO steveswerd@aol.com
## 3670 9724 1788 TO wtruxillo@hotmail.com
## 3671 9725 1788 TO tsundel@houston.rr.com
## 3672 9733 1796 TO iceuserslist@list.intcx.com
## 3673 9734 1796 CC sales@intcx.com
## 3674 9735 1796 CC icehelpdesk@intcx.com
## 3675 9736 1796 BCC sales@intcx.com
## 3676 9737 1796 BCC icehelpdesk@intcx.com
## 3677 9738 1797 TO no.address@enron.com
## 3678 9742 1801 TO platts@listserv.platts.com
## 3679 9747 1805 TO susan.wadle@enron.com
## 3680 9751 1809 TO eric.gadd@enron.com
## 3681 9758 1815 TO dalbritton@cox.rr.com
## 3682 9759 1815 TO rda2c@unix.mail.virginia.edu
## 3683 9760 1815 TO bandrews257@aol.com
## 3684 9761 1815 TO maanbr@hotmail.com
## 3685 9762 1815 TO elena_carver@yahoo.com
## 3686 9763 1815 TO sjplus5@hotmail.com
## 3687 9764 1815 TO mdockens79@msn.com
## 3688 9765 1815 TO nncymorgan@msn.com
## 3689 9766 1815 TO m011602@yahoo.com
## 3690 9767 1815 TO apdiving@aol.com
## 3691 9768 1815 TO fowlerj_23102@msn.com
## 3692 9769 1815 TO resqdisp@yahoo.com
## 3693 9770 1815 TO cardiac696@aol.com
## 3694 9771 1815 TO emt607@aol.com
## 3695 9772 1815 TO misnic20@yahoo.com
## 3696 9773 1815 TO vamtblues@aol.com
## 3697 9774 1815 TO jhyatt@msn.com
## 3698 9777 1816 TO dalbritton@cox.rr.com
## 3699 9778 1816 TO rda2c@unix.mail.virginia.edu
## 3700 9779 1816 TO bandrews257@aol.com
## 3701 9780 1816 TO maanbr@hotmail.com
## 3702 9781 1816 TO kcarrlcsw@aol.com
## 3703 9782 1816 TO elena_carver@yahoo.com
## 3704 9783 1816 TO sjplus5@hotmail.com
## 3705 9784 1816 TO sweetie05291983@msn.com
## 3706 9785 1816 TO kravenoriole5610@msn.com
## 3707 9786 1816 TO mdockens79@msn.com
## 3708 9787 1816 TO nncymorgan@msn.com
## 3709 9788 1816 TO m011602@yahoo.com
## 3710 9789 1816 TO apdiving@aol.com
## 3711 9790 1816 TO fowlerj_23102@msn.com
## 3712 9791 1816 TO resqdisp@yahoo.com
## 3713 9792 1817 TO rda2c@unix.mail.virginia.edu
## 3714 9793 1817 TO bandrews257@aol.com
## 3715 9794 1817 TO kcarrlcsw@aol.com
## 3716 9795 1817 TO elena_carver@yahoo.com
## 3717 9796 1817 TO sweetie05291983@msn.com
## 3718 9797 1817 TO kravenoriole5610@msn.com
## 3719 9798 1817 TO mdockens79@msn.com
## 3720 9799 1817 TO nncymorgan@msn.com
## 3721 9800 1817 TO m011602@yahoo.com
## 3722 9801 1817 TO apdiving@aol.com
## 3723 9802 1817 TO fowlerj_23102@msn.com
## 3724 9803 1817 TO resqdisp@yahoo.com
## 3725 9804 1817 TO cardiac696@aol.com
## 3726 9805 1817 TO emt607@aol.com
## 3727 9806 1817 TO jhyatt@msn.com
## 3728 9809 1818 TO dalbritton@cox.rr.com
## 3729 9810 1818 TO rda2c@unix.mail.virginia.edu
## 3730 9811 1818 TO bandrews257@aol.com
## 3731 9812 1818 TO elena_carver@yahoo.com
## 3732 9813 1818 TO sweetie05291983@msn.com
## 3733 9814 1818 TO kravenoriole5610@msn.com
## 3734 9815 1818 TO mdockens79@msn.com
## 3735 9816 1818 TO nncymorgan@msn.com
## 3736 9817 1818 TO m011602@yahoo.com
## 3737 9818 1818 TO apdiving@aol.com
## 3738 9819 1818 TO fowlerj_23102@msn.com
## 3739 9820 1818 TO resqdisp@yahoo.com
## 3740 9821 1818 TO cardiac696@aol.com
## 3741 9822 1818 TO emt607@aol.com
## 3742 9823 1818 TO vamtblues@aol.com
## 3743 9824 1819 TO rda2c@unix.mail.virginia.edu
## 3744 9825 1819 TO bandrews257@aol.com
## 3745 9826 1819 TO mbock@kgo.csc.com
## 3746 9827 1819 TO kcarrlcsw@aol.com
## 3747 9828 1819 TO elena_carver@yahoo.com
## 3748 9829 1819 TO sweetie05291983@msn.com
## 3749 9830 1819 TO kravenoriole5610@msn.com
## 3750 9831 1819 TO mdockens79@msn.com
## 3751 9832 1819 TO nncymorgan@msn.com
## 3752 9833 1819 TO m011602@yahoo.com
## 3753 9834 1819 TO apdiving@aol.com
## 3754 9835 1819 TO fowlerj_23102@msn.com
## 3755 9836 1819 TO resqdisp@yahoo.com
## 3756 9837 1819 TO cardiac696@aol.com
## 3757 9838 1819 TO emt607@aol.com
## 3758 9839 1819 TO vamtblues@aol.com
## 3759 9840 1819 TO jhyatt@msn.com
## 3760 9843 1820 TO no.address@enron.com
## 3761 9844 1820 CC larry.gordon@usmc-mccs.org
## 3762 9845 1820 CC leavylaw@aol.com
## 3763 9846 1820 CC leavys@msn.com
## 3764 9847 1820 CC tammy_leavy@msn.com
## 3765 9848 1820 CC medic_99us@yahoo.com
## 3766 9849 1820 CC belmontrm2@juno.com
## 3767 9850 1820 CC quackemt621@aol.com
## 3768 9851 1820 CC exploreremtsar@aol.com
## 3769 9852 1820 CC mmurray538@aol.com
## 3770 9853 1820 CC ts671@aol.com
## 3771 9854 1820 CC want2bjustme@aol.com
## 3772 9855 1820 CC gprial@yahoo.com
## 3773 9856 1820 CC robertusher@va.prestige.net
## 3774 9857 1820 CC rrtcpr2001@att.net
## 3775 9858 1820 CC lady4lifeinva@aol.com
## 3776 9859 1820 BCC larry.gordon@usmc-mccs.org
## 3777 9860 1820 BCC leavylaw@aol.com
## 3778 9861 1820 BCC leavys@msn.com
## 3779 9862 1820 BCC tammy_leavy@msn.com
## 3780 9863 1820 BCC medic_99us@yahoo.com
## 3781 9864 1820 BCC belmontrm2@juno.com
## 3782 9865 1820 BCC quackemt621@aol.com
## 3783 9866 1820 BCC exploreremtsar@aol.com
## 3784 9867 1820 BCC mmurray538@aol.com
## 3785 9868 1820 BCC ts671@aol.com
## 3786 9869 1820 BCC want2bjustme@aol.com
## 3787 9870 1820 BCC gprial@yahoo.com
## 3788 9871 1820 BCC robertusher@va.prestige.net
## 3789 9872 1820 BCC rrtcpr2001@att.net
## 3790 9873 1820 BCC lady4lifeinva@aol.com
## 3791 9874 1821 TO dalbritton@cox.rr.com
## 3792 9875 1821 TO rda2c@unix.mail.virginia.edu
## 3793 9876 1821 TO bandrews257@aol.com
## 3794 9877 1821 TO mbock@kgo.csc.com
## 3795 9878 1821 TO kcarrlcsw@aol.com
## 3796 9879 1821 TO elena_carver@yahoo.com
## 3797 9880 1821 TO sweetie05291983@msn.com
## 3798 9881 1821 TO kravenoriole5610@msn.com
## 3799 9882 1821 TO mdockens79@msn.com
## 3800 9883 1821 TO nncymorgan@msn.com
## 3801 9884 1821 TO dpkdd@aol.com
## 3802 9885 1821 TO m011602@yahoo.com
## 3803 9886 1821 TO apdiving@aol.com
## 3804 9887 1821 TO fowlerj_23102@msn.com
## 3805 9888 1821 TO resqdisp@yahoo.com
## 3806 9889 1822 TO no.address@enron.com
## 3807 9890 1822 CC leavylaw@aol.com
## 3808 9891 1822 CC leavys@msn.com
## 3809 9892 1822 CC tammy_leavy@msn.com
## 3810 9893 1822 CC medic_99us@yahoo.com
## 3811 9894 1822 CC emt92480@aol.com
## 3812 9895 1822 CC quackemt621@aol.com
## 3813 9896 1822 CC exploreremtsar@aol.com
## 3814 9897 1822 CC mmurray538@aol.com
## 3815 9898 1822 CC want2bjustme@aol.com
## 3816 9899 1822 CC gprial@yahoo.com
## 3817 9900 1822 CC robertusher@va.prestige.net
## 3818 9901 1822 CC rrtcpr2001@att.net
## 3819 9902 1822 CC lady4lifeinva@aol.com
## 3820 9903 1822 CC zman@firehousemail.com
## 3821 9904 1822 BCC leavylaw@aol.com
## 3822 9905 1822 BCC leavys@msn.com
## 3823 9906 1822 BCC tammy_leavy@msn.com
## 3824 9907 1822 BCC medic_99us@yahoo.com
## 3825 9908 1822 BCC emt92480@aol.com
## 3826 9909 1822 BCC quackemt621@aol.com
## 3827 9910 1822 BCC exploreremtsar@aol.com
## 3828 9911 1822 BCC mmurray538@aol.com
## 3829 9912 1822 BCC want2bjustme@aol.com
## 3830 9913 1822 BCC gprial@yahoo.com
## 3831 9914 1822 BCC robertusher@va.prestige.net
## 3832 9915 1822 BCC rrtcpr2001@att.net
## 3833 9916 1822 BCC lady4lifeinva@aol.com
## 3834 9917 1822 BCC zman@firehousemail.com
## 3835 9918 1823 TO dalbritton@cox.rr.com
## 3836 9919 1823 TO rda2c@unix.mail.virginia.edu
## 3837 9920 1823 TO bandrews257@aol.com
## 3838 9921 1823 TO maanbr@hotmail.com
## 3839 9922 1823 TO kcarrlcsw@aol.com
## 3840 9923 1823 TO elena_carver@yahoo.com
## 3841 9924 1823 TO sjplus5@hotmail.com
## 3842 9925 1823 TO sweetie05291983@msn.com
## 3843 9926 1823 TO kravenoriole5610@msn.com
## 3844 9927 1823 TO mdockens79@msn.com
## 3845 9928 1823 TO nncymorgan@msn.com
## 3846 9929 1823 TO m011602@yahoo.com
## 3847 9930 1823 TO apdiving@aol.com
## 3848 9931 1823 TO fowlerj_23102@msn.com
## 3849 9932 1823 TO resqdisp@yahoo.com
## 3850 9933 1824 TO dalbritton@cox.rr.com
## 3851 9934 1824 TO rda2c@unix.mail.virginia.edu
## 3852 9935 1824 TO bandrews257@aol.com
## 3853 9936 1824 TO elena_carver@yahoo.com
## 3854 9937 1824 TO sweetie05291983@msn.com
## 3855 9938 1824 TO kravenoriole5610@msn.com
## 3856 9939 1824 TO mdockens79@msn.com
## 3857 9940 1824 TO nncymorgan@msn.com
## 3858 9941 1824 TO dpkdd@aol.com
## 3859 9942 1824 TO m011602@yahoo.com
## 3860 9943 1824 TO apdiving@aol.com
## 3861 9944 1824 TO fowlerj_23102@msn.com
## 3862 9945 1824 TO resqdisp@yahoo.com
## 3863 9946 1824 TO cardiac696@aol.com
## 3864 9947 1824 TO jhyatt@msn.com
## 3865 9950 1825 TO no.address@enron.com
## 3866 9951 1825 CC ntisti95@aol.com
## 3867 9952 1825 CC majacks5@hotmail.com
## 3868 9953 1825 CC ellen@pwarc.org
## 3869 9954 1825 CC larry.kester@hoffman.army.mil
## 3870 9955 1825 CC larry.gordon@usmc-mccs.org
## 3871 9956 1825 CC leavylaw@aol.com
## 3872 9957 1825 CC leavys@msn.com
## 3873 9958 1825 CC tammy_leavy@msn.com
## 3874 9959 1825 CC bjlord2@aol.com
## 3875 9960 1825 CC jsay251425@aol.com
## 3876 9961 1825 CC cmarsh3892@aol.com
## 3877 9962 1825 CC medic_99us@yahoo.com
## 3878 9963 1825 CC belmontrm2@juno.com
## 3879 9964 1825 BCC ntisti95@aol.com
## 3880 9965 1825 BCC majacks5@hotmail.com
## 3881 9966 1825 BCC ellen@pwarc.org
## 3882 9967 1825 BCC larry.kester@hoffman.army.mil
## 3883 9968 1825 BCC larry.gordon@usmc-mccs.org
## 3884 9969 1825 BCC leavylaw@aol.com
## 3885 9970 1825 BCC leavys@msn.com
## 3886 9971 1825 BCC tammy_leavy@msn.com
## 3887 9972 1825 BCC bjlord2@aol.com
## 3888 9973 1825 BCC jsay251425@aol.com
## 3889 9974 1825 BCC cmarsh3892@aol.com
## 3890 9975 1825 BCC medic_99us@yahoo.com
## 3891 9976 1825 BCC belmontrm2@juno.com
## 3892 9979 1828 TO dl-ga-all_egs@enron.com
## 3893 9980 1829 TO platts@listserv.platts.com
## 3894 9984 1832 TO indyandy06@msn.com
## 3895 9985 1832 TO kwangenheim@houston.rr.com
## 3896 9986 1832 TO bapidutt@aol.com
## 3897 9987 1832 TO djoraholmen@houston.rr.com
## 3898 9988 1832 TO ronmichalski@msn.com
## 3899 9989 1832 TO jpoxer@houston.rr.com
## 3900 9990 1832 TO pdalessandro64@hotmail.com
## 3901 9991 1832 TO rickbeckernrg@charter.net
## 3902 9992 1832 TO wtruxillo@hotmail.com
## 3903 9993 1832 TO tsundel@houston.rr.com
## 3904 9994 1832 TO txsnyder@houston.rr.com
## 3905 9995 1832 TO gaylen_kari@msn.com
## 3906 9996 1833 TO bapidutt@aol.com
## 3907 9997 1833 TO gfoust@adelphia.net
## 3908 9999 1833 TO jjohnston2@houston.rr.com
## 3909 10000 1833 TO kwangenheim@houston.rr.com
## 3910 10001 1833 TO massey.r@worldnet.att.net
## 3911 10002 1833 TO pdalessandro64@hotmail.com
## 3912 10003 1833 TO steveswerd@aol.com
## 3913 10004 1833 TO newhatley@earthlink.net
## 3914 10005 1833 TO gaylen_kari@msn.com
## 3915 10007 1835 TO newsletter_text@chron-news.com
## 3916 10013 1841 TO dl-ga-all_domestic@enron.com
## 3917 10014 1842 TO platts@listserv.platts.com
## 3918 10019 1847 TO william.plunkett@enron.com
## 3919 10020 1847 TO lorraine.lindberg@enron.com
## 3920 10022 1847 TO a..howard@enron.com
## 3921 10023 1848 TO bapidutt@aol.com
## 3922 10025 1848 TO gfou@aol.com
## 3923 10027 1850 TO no.address@enron.com
## 3924 10028 1851 TO dalbritton@cox.rr.com
## 3925 10029 1851 TO rda2c@unix.mail.virginia.edu
## 3926 10030 1851 TO bandrews257@aol.com
## 3927 10031 1851 TO mbock@kgo.csc.com
## 3928 10032 1851 TO maanbr@hotmail.com
## 3929 10033 1851 TO mandmranch@ev1.net
## 3930 10034 1851 TO kcarrlcsw@aol.com
## 3931 10035 1851 TO elena_carver@yahoo.com
## 3932 10036 1851 TO sjplus5@hotmail.com
## 3933 10037 1851 TO sweetie05291983@msn.com
## 3934 10038 1851 TO mdockens79@msn.com
## 3935 10039 1851 TO nncymorgan@msn.com
## 3936 10040 1851 TO m011602@yahoo.com
## 3937 10041 1851 TO apdiving@aol.com
## 3938 10042 1851 TO fowlerj_23102@msn.com
## 3939 10043 1851 TO resqdisp@yahoo.com
## 3940 10045 1853 TO l..eisenstein@enron.com
## 3941 10047 1853 TO james.centilli@enron.com
## 3942 10048 1853 TO eric.gadd@enron.com
## 3943 10049 1854 TO no.address@enron.com
## 3944 10050 1855 TO platts@listserv.platts.com
## 3945 10053 1858 TO eric.gadd@enron.com
## 3946 10055 1858 TO sylvia.sauseda@enron.com
## 3947 10056 1858 TO earl.hailey@enron.com
## 3948 10057 1858 TO lora.sullivan@enron.com
## 3949 10061 1862 TO diane.becker@enron.com
## 3950 10062 1862 TO mark.begley@enron.com
## 3951 10063 1862 TO alan.behrens@enron.com
## 3952 10064 1862 TO jack.boatman@enron.com
## 3953 10065 1862 TO michael.bodnar@enron.com
## 3954 10066 1862 TO jerry.boston@enron.com
## 3955 10067 1862 TO john.buchanan@enron.com
## 3956 10068 1862 TO craig.buehler@enron.com
## 3957 10069 1862 TO christopher.burns@enron.com
## 3958 10070 1862 TO rachel.cady@enron.com
## 3959 10071 1862 TO james.centilli@enron.com
## 3960 10072 1862 TO dori.cooper@enron.com
## 3961 10073 1862 TO esther.dasilva@enron.com
## 3962 10074 1862 TO don.daze@enron.com
## 3963 10075 1862 TO jeanette.doll@enron.com
## 3964 10077 1862 TO stephen.dowd@enron.com
## 3965 10078 1862 TO rudy.elizondo@delinea.com
## 3966 10079 1862 TO sharon.farrell@enron.com
## 3967 10080 1862 TO anne.fogarty@enron.com
## 3968 10081 1862 TO john.freeman@enron.com
## 3969 10082 1862 TO eric.gadd@enron.com
## 3970 10083 1862 TO mara.gonzalez@enron.com
## 3971 10084 1862 TO pallavi.goradia@enron.com
## 3972 10085 1862 TO billi.harrill@enron.com
## 3973 10087 1862 TO robert.hayes@enron.com
## 3974 10089 1862 TO martha.janousek@enron.com
## 3975 10090 1862 TO robert.johnson@enron.com
## 3976 10091 1862 TO tammy.kovalcik@enron.com
## 3977 10092 1862 TO terry.kowalke@enron.com
## 3978 10093 1862 TO lorraine.lindberg@enron.com
## 3979 10094 1862 TO tk.lohman@enron.com
## 3980 10096 1862 TO robert.mason@enron.com
## 3981 10097 1862 TO mark.mcconnell@enron.com
## 3982 10098 1862 TO jean.mcfarland@enron.com
## 3983 10099 1862 TO john.millar@enron.com
## 3984 10100 1862 TO jan.moore@enron.com
## 3985 10101 1862 TO jeff.nielsen@enron.com
## 3986 10102 1862 TO audrey.robertson@enron.com
## 3987 10103 1862 TO marian.salinas@enron.com
## 3988 10104 1862 TO ronnie.sims@enron.com
## 3989 10105 1862 TO sue.sova@enron.com
## 3990 10106 1862 TO patricia.steele@enron.com
## 3991 10107 1862 TO vincent.strohmeyer@enron.com
## 3992 10108 1862 TO colin.strom@enron.com
## 3993 10109 1862 TO david.tran@enron.com
## 3994 10110 1862 TO susan.wadle@enron.com
## 3995 10111 1862 TO kimberly.watson@enron.com
## 3996 10112 1862 TO david.weber@enron.com
## 3997 10113 1862 TO john.williams@enron.com
## 3998 10114 1862 TO ted.willimon@enron.com
## 3999 10116 1862 CC lupita.cantu@enron.com
## 4000 10117 1862 CC patti.dennis@enron.com
## 4001 10118 1862 CC roger.radda@enron.com
## 4002 10119 1862 CC patrick.ryan@enron.com
## 4003 10120 1862 CC a..smith@enron.com
## 4004 10121 1862 CC thomas.sroka@enron.com
## 4005 10122 1862 CC james.sumpter@enron.com
## 4006 10123 1862 CC management.ets@enron.com
## 4007 10124 1862 CC center.ets@enron.com
## 4008 10125 1862 BCC lupita.cantu@enron.com
## 4009 10126 1862 BCC patti.dennis@enron.com
## 4010 10127 1862 BCC roger.radda@enron.com
## 4011 10128 1862 BCC patrick.ryan@enron.com
## 4012 10129 1862 BCC a..smith@enron.com
## 4013 10130 1862 BCC thomas.sroka@enron.com
## 4014 10131 1862 BCC james.sumpter@enron.com
## 4015 10132 1862 BCC management.ets@enron.com
## 4016 10133 1862 BCC center.ets@enron.com
## 4017 10137 1866 TO houstonchronicle-ecrm@chron-news.com
## 4018 10138 1867 TO james.centilli@enron.com
## 4019 10140 1867 CC mary.hubbard@enron.com
## 4020 10142 1867 BCC mary.hubbard@enron.com
## 4021 10144 1868 CC frank.carriere@enron.com
## 4022 10145 1868 BCC frank.carriere@enron.com
## 4023 10148 1870 TO james.centilli@enron.com
## 4024 10149 1870 TO l..eisenstein@enron.com
## 4025 10153 1874 TO platts@listserv.platts.com
## 4026 10154 1875 TO jean.mcfarland@enron.com
## 4027 10155 1875 TO center.ets@enron.com
## 4028 10157 1875 CC diane.becker@enron.com
## 4029 10159 1875 BCC diane.becker@enron.com
## 4030 10169 1885 TO platts@listserv.platts.com
## 4031 10170 1886 TO everyone.dl-ets@enron.com
## 4032 10171 1886 TO distribution.dl-ets@enron.com
## 4033 10172 1887 TO rbecker@enron.com
## 4034 10173 1887 TO djoraholmen@houston.rr.com
## 4035 10175 1887 TO indyandy06@msn.com
## 4036 10176 1887 TO jjohnston2@houston.rr.com
## 4037 10177 1887 TO kwangenheim@houston.rr.com
## 4038 10178 1887 TO massey.r@worldnet.att.net
## 4039 10179 1887 TO fshort@houston.rr.com
## 4040 10180 1887 TO tsundel@houston.rr.com
## 4041 10181 1887 TO wtruxillo@hotmail.com
## 4042 10183 1889 TO newsletter_text@chron-news.com
## 4043 10194 1898 TO dl-ga-all_ets@enron.com
## 4044 10196 1900 TO no.address@enron.com
## 4045 10197 1901 TO eric.gadd@enron.com
## 4046 10199 1902 TO rbaker2@enron.com
## 4047 10200 1903 TO dl-ga-all_domestic@enron.com
## 4048 10202 1905 TO center.ets@enron.com
## 4049 10204 1905 CC diane.becker@enron.com
## 4050 10206 1905 BCC diane.becker@enron.com
## 4051 10211 1910 TO platts@listserv.platts.com
## 4052 10213 1912 TO mark.mcconnell@enron.com
## 4053 10215 1912 TO lorraine.lindberg@enron.com
## 4054 10216 1912 TO tk.lohman@enron.com
## 4055 10217 1912 TO eric.gadd@enron.com
## 4056 10219 1913 TO lippmanc@aol.com
## 4057 10221 1915 TO platts@listserv.platts.com
## 4058 10227 1921 TO audrey.robertson@enron.com
## 4059 10228 1921 TO julie.armstrong@enron.com
## 4060 10230 1921 CC eric.gadd@enron.com
## 4061 10232 1921 BCC eric.gadd@enron.com
## 4062 10240 1929 TO platts@listserv.platts.com
## 4063 10243 1932 TO platts@listserv.platts.com
## 4064 10244 1933 TO dl-ga-all_domestic@enron.com
## 4065 10246 1935 TO hyatt . kevin@enron.com
## 4066 10247 1935 TO mark.brand@enron.com
## 4067 10248 1935 TO marcarelli . greg@enron.com
## 4068 10249 1935 TO culotta . mike@enron.com
## 4069 10257 1943 TO lippmanc@aol.com
## 4070 10259 1945 TO lippmanc@aol.com
## 4071 10264 1950 TO platts@listserv.platts.com
## 4072 10265 1951 TO rbecker@enron.com
## 4073 10266 1951 TO bapidutt@aol.com
## 4074 10268 1951 TO indyandy06@msn.com
## 4075 10269 1951 TO jbradshaw@kamalia.com
## 4076 10270 1951 TO massey.r@worldnet.att.net
## 4077 10271 1951 TO ronmichalski@msn.com
## 4078 10276 1956 TO no.address@enron.com
## 4079 10277 1957 TO no.address@enron.com
## 4080 10278 1958 TO no.address@enron.com
## 4081 10281 1961 TO dalbritton@cox.rr.com
## 4082 10282 1961 TO rda2c@unix.mail.virginia.edu
## 4083 10283 1961 TO bandrews257@aol.com
## 4084 10284 1961 TO cardiac734@aol.com
## 4085 10285 1961 TO elena_carver@yahoo.com
## 4086 10286 1961 TO pita651@aol.com
## 4087 10287 1961 TO sjplus5@hotmail.com
## 4088 10288 1961 TO mdockens79@msn.com
## 4089 10289 1961 TO nncymorgan@msn.com
## 4090 10290 1961 TO m011602@yahoo.com
## 4091 10291 1961 TO apdiving@aol.com
## 4092 10292 1961 TO found@monumental.com
## 4093 10293 1961 TO fowlerj_23102@msn.com
## 4094 10294 1961 TO pd4byot@aol.com
## 4095 10295 1961 TO resqdisp@yahoo.com
## 4096 10296 1962 TO no.address@enron.com
## 4097 10297 1963 TO dl-ga-all_enron_houston@enron.com
## 4098 10300 1966 TO lorraine.lindberg@enron.com
## 4099 10302 1967 TO platts@listserv.platts.com
## 4100 10305 1970 TO platts@listserv.platts.com
## 4101 10311 1976 TO platts@listserv.platts.com
## 4102 10312 1977 TO dl-ga-all_egs_houston@enron.com
## 4103 10313 1977 TO dl-ga-all_ets@enron.com
## 4104 10315 1979 TO julie.armstrong@enron.com
## 4105 10316 1979 TO audrey.robertson@enron.com
## 4106 10317 1979 CC eric.gadd@enron.com
## 4107 10319 1979 BCC eric.gadd@enron.com
## 4108 10321 1980 TO platts@listserv.platts.com
## 4109 10322 1981 TO no.address@enron.com
## 4110 10323 1982 TO dalbritton@cox.rr.com
## 4111 10324 1982 TO rda2c@unix.mail.virginia.edu
## 4112 10325 1982 TO bandrews257@aol.com
## 4113 10326 1982 TO maanbr@hotmail.com
## 4114 10327 1982 TO elena_carver@yahoo.com
## 4115 10328 1982 TO sweetie05291983@msn.com
## 4116 10329 1982 TO kravenoriole5610@msn.com
## 4117 10330 1982 TO mdockens79@msn.com
## 4118 10331 1982 TO nncymorgan@msn.com
## 4119 10332 1982 TO m011602@yahoo.com
## 4120 10333 1982 TO apdiving@aol.com
## 4121 10334 1982 TO fowlerj_23102@msn.com
## 4122 10335 1983 TO mbock@kgo.csc.com
## 4123 10336 1983 TO kcarrlcsw@aol.com
## 4124 10337 1983 TO elena_carver@yahoo.com
## 4125 10338 1983 TO sjplus5@hotmail.com
## 4126 10339 1983 TO sweetie05291983@msn.com
## 4127 10340 1983 TO kravenoriole5610@msn.com
## 4128 10341 1983 TO mdockens79@msn.com
## 4129 10342 1983 TO nncymorgan@msn.com
## 4130 10343 1983 TO m011602@yahoo.com
## 4131 10344 1983 TO apdiving@aol.com
## 4132 10345 1983 TO resqdisp@yahoo.com
## 4133 10346 1983 TO gordon_karen@hotmail.com
## 4134 10347 1983 TO cardiac696@aol.com
## 4135 10348 1983 TO emt607@aol.com
## 4136 10349 1983 TO cahemming@hotmail.com
## 4137 10351 1985 TO dl-ga-all_enron_worldwide1@enron.com
## 4138 10353 1987 TO no.address@enron.com
## 4139 10355 1989 TO platts@listserv.platts.com
## 4140 10357 1991 TO ron.matthews@enron.com
## 4141 10358 1991 TO l..eisenstein@enron.com
## 4142 10359 1991 TO dennis.alters@enron.com
## 4143 10360 1991 TO morgan.gottsponer@enron.com
## 4144 10362 1991 CC l..smith@enron.com
## 4145 10363 1991 CC george.davis@enron.com
## 4146 10365 1991 BCC l..smith@enron.com
## 4147 10366 1991 BCC george.davis@enron.com
## 4148 10369 1994 TO eric.gadd@enron.com
## 4149 10371 1995 TO dl-ga-all_domestic@enron.com
## 4150 10372 1996 TO cra123@yahoo.com
## 4151 10373 1996 TO bapidutt@aol.com
## 4152 10374 1996 TO jdyess@houston.rr.com
## 4153 10375 1996 TO pamedwards@academicplanet.com
## 4154 10377 1996 TO indyandy06@msn.com
## 4155 10378 1996 TO jjohnston2@houston.rr.com
## 4156 10379 1996 TO kwangenheim@houston.rr.com
## 4157 10380 1996 TO massey.r@worldnet.att.net
## 4158 10381 1996 TO ronmichalski@msn.com
## 4159 10382 1996 TO rick.d.becker@worldnet.att.net
## 4160 10383 1996 TO m_b_rosen@yahoo.com
## 4161 10384 1996 TO dsaucier@columbus.rr.com
## 4162 10385 1996 TO steveswerd@aol.com
## 4163 10386 1996 TO wtruxillo@hotmail.com
## 4164 10387 1996 TO tsundel@houston.rr.com
## 4165 10388 1996 TO newhatley@earthlink.net
## 4166 10389 1996 TO gaylen_kari@msn.com
## 4167 10391 1998 TO newsletter_text@chron-news.com
## 4168 10395 2002 TO dl-ga-all_ets@enron.com
## 4169 10396 2003 TO no.address@enron.com
## 4170 10397 2004 TO dl-ga-all_domestic@enron.com
## 4171 10400 2007 TO no.address@enron.com
## 4172 10406 2011 TO eric.gadd@enron.com
## 4173 10407 2011 TO kimberly.watson@enron.com
## 4174 10409 2012 TO platts@listserv.platts.com
## 4175 10412 2015 TO no.address@enron.com
## 4176 10413 2016 TO dl-ga-all_enron_worldwide1@enron.com
## 4177 10414 2017 TO platts@listserv.platts.com
## 4178 10415 2018 TO rda2c@unix.mail.virginia.edu
## 4179 10416 2018 TO bandrews257@aol.com
## 4180 10417 2018 TO mbock@kgo.csc.com
## 4181 10418 2018 TO maanbr@hotmail.com
## 4182 10419 2018 TO mandmranch@ev1.net
## 4183 10420 2018 TO kcarrlcsw@aol.com
## 4184 10421 2018 TO elena_carver@yahoo.com
## 4185 10422 2018 TO sweetie05291983@msn.com
## 4186 10423 2018 TO kravenoriole5610@msn.com
## 4187 10424 2018 TO mdockens79@msn.com
## 4188 10425 2018 TO nncymorgan@msn.com
## 4189 10426 2018 TO m011602@yahoo.com
## 4190 10427 2018 TO apdiving@aol.com
## 4191 10428 2018 TO fowlerj_23102@msn.com
## 4192 10429 2018 TO resqdisp@yahoo.com
## 4193 10430 2019 TO dalbritton@cox.rr.com
## 4194 10431 2019 TO rda2c@unix.mail.virginia.edu
## 4195 10432 2019 TO bandrews257@aol.com
## 4196 10433 2019 TO mbock@kgo.csc.com
## 4197 10434 2019 TO maanbr@hotmail.com
## 4198 10435 2019 TO mandmranch@ev1.net
## 4199 10436 2019 TO kcarrlcsw@aol.com
## 4200 10437 2019 TO elena_carver@yahoo.com
## 4201 10438 2019 TO sweetie05291983@msn.com
## 4202 10439 2019 TO kravenoriole5610@msn.com
## 4203 10440 2019 TO mdockens79@msn.com
## 4204 10441 2019 TO nncymorgan@msn.com
## 4205 10442 2019 TO m011602@yahoo.com
## 4206 10443 2019 TO apdiving@aol.com
## 4207 10444 2019 TO fowlerj_23102@msn.com
## 4208 10445 2020 TO rda2c@unix.mail.virginia.edu
## 4209 10446 2020 TO mbock@kgo.csc.com
## 4210 10447 2020 TO maanbr@hotmail.com
## 4211 10448 2020 TO mandmranch@ev1.net
## 4212 10449 2020 TO kcarrlcsw@aol.com
## 4213 10450 2020 TO elena_carver@yahoo.com
## 4214 10451 2020 TO sweetie05291983@msn.com
## 4215 10452 2020 TO kravenoriole5610@msn.com
## 4216 10453 2020 TO mdockens79@msn.com
## 4217 10454 2020 TO nncymorgan@msn.com
## 4218 10455 2020 TO dpkdd@aol.com
## 4219 10456 2020 TO m011602@yahoo.com
## 4220 10457 2021 TO dalbritton@cox.rr.com
## 4221 10458 2021 TO rda2c@unix.mail.virginia.edu
## 4222 10459 2021 TO bandrews257@aol.com
## 4223 10460 2021 TO mbock@kgo.csc.com
## 4224 10461 2021 TO maanbr@hotmail.com
## 4225 10462 2021 TO mandmranch@ev1.net
## 4226 10463 2021 TO kcarrlcsw@aol.com
## 4227 10464 2021 TO elena_carver@yahoo.com
## 4228 10465 2021 TO sjplus5@hotmail.com
## 4229 10466 2021 TO sweetie05291983@msn.com
## 4230 10467 2021 TO kravenoriole5610@msn.com
## 4231 10468 2021 TO mdockens79@msn.com
## 4232 10469 2021 TO nncymorgan@msn.com
## 4233 10470 2021 TO junglesniper@hotmail.com
## 4234 10471 2021 TO lady4lifeinva@aol.com
## 4235 10472 2022 TO rda2c@unix.mail.virginia.edu
## 4236 10473 2022 TO mbock@kgo.csc.com
## 4237 10474 2022 TO kcarrlcsw@aol.com
## 4238 10475 2022 TO elena_carver@yahoo.com
## 4239 10476 2022 TO sjplus5@hotmail.com
## 4240 10477 2022 TO sweetie05291983@msn.com
## 4241 10478 2022 TO kravenoriole5610@msn.com
## 4242 10479 2022 TO mdockens79@msn.com
## 4243 10480 2022 TO nncymorgan@msn.com
## 4244 10481 2022 TO m011602@yahoo.com
## 4245 10482 2022 TO apdiving@aol.com
## 4246 10483 2022 TO found@monumental.com
## 4247 10484 2022 TO pd4byot@aol.com
## 4248 10485 2022 TO resqdisp@yahoo.com
## 4249 10486 2022 TO gordon_karen@hotmail.com
## 4250 10487 2023 TO rda2c@unix.mail.virginia.edu
## 4251 10488 2023 TO bandrews257@aol.com
## 4252 10489 2023 TO maanbr@hotmail.com
## 4253 10490 2023 TO kcarrlcsw@aol.com
## 4254 10491 2023 TO elena_carver@yahoo.com
## 4255 10492 2023 TO sjplus5@hotmail.com
## 4256 10493 2023 TO sweetie05291983@msn.com
## 4257 10494 2023 TO mdockens79@msn.com
## 4258 10495 2023 TO nncymorgan@msn.com
## 4259 10496 2023 TO m011602@yahoo.com
## 4260 10497 2023 TO apdiving@aol.com
## 4261 10498 2023 TO fowlerj_23102@msn.com
## 4262 10499 2023 TO resqdisp@yahoo.com
## 4263 10500 2023 TO cardiac696@aol.com
## 4264 10501 2023 TO emt607@aol.com
## 4265 10502 2024 TO rda2c@unix.mail.virginia.edu
## 4266 10503 2024 TO bandrews257@aol.com
## 4267 10504 2024 TO mbock@kgo.csc.com
## 4268 10505 2024 TO maanbr@hotmail.com
## 4269 10506 2024 TO mandmranch@ev1.net
## 4270 10507 2024 TO kcarrlcsw@aol.com
## 4271 10508 2024 TO elena_carver@yahoo.com
## 4272 10509 2024 TO sweetie05291983@msn.com
## 4273 10510 2024 TO kravenoriole5610@msn.com
## 4274 10511 2024 TO mdockens79@msn.com
## 4275 10512 2024 TO nncymorgan@msn.com
## 4276 10513 2024 TO m011602@yahoo.com
## 4277 10514 2024 TO apdiving@aol.com
## 4278 10515 2024 TO fowlerj_23102@msn.com
## 4279 10516 2024 TO resqdisp@yahoo.com
## 4280 10517 2025 TO dalbritton@cox.rr.com
## 4281 10518 2025 TO rda2c@unix.mail.virginia.edu
## 4282 10519 2025 TO bandrews257@aol.com
## 4283 10520 2025 TO mbock@kgo.csc.com
## 4284 10521 2025 TO maanbr@hotmail.com
## 4285 10522 2025 TO mandmranch@ev1.net
## 4286 10523 2025 TO kcarrlcsw@aol.com
## 4287 10524 2025 TO elena_carver@yahoo.com
## 4288 10525 2025 TO sweetie05291983@msn.com
## 4289 10526 2025 TO kravenoriole5610@msn.com
## 4290 10527 2025 TO mdockens79@msn.com
## 4291 10528 2025 TO nncymorgan@msn.com
## 4292 10529 2025 TO dpkdd@aol.com
## 4293 10530 2025 TO m011602@yahoo.com
## 4294 10531 2025 TO apdiving@aol.com
## 4295 10532 2026 TO dalbritton@cox.rr.com
## 4296 10533 2026 TO rda2c@unix.mail.virginia.edu
## 4297 10534 2026 TO bandrews257@aol.com
## 4298 10535 2026 TO mbock@kgo.csc.com
## 4299 10536 2026 TO maanbr@hotmail.com
## 4300 10537 2026 TO mandmranch@ev1.net
## 4301 10538 2026 TO kcarrlcsw@aol.com
## 4302 10539 2026 TO elena_carver@yahoo.com
## 4303 10540 2026 TO sweetie05291983@msn.com
## 4304 10541 2026 TO kravenoriole5610@msn.com
## 4305 10542 2026 TO mdockens79@msn.com
## 4306 10543 2026 TO nncymorgan@msn.com
## 4307 10544 2026 TO m011602@yahoo.com
## 4308 10545 2026 TO apdiving@aol.com
## 4309 10546 2026 TO fowlerj_23102@msn.com
## 4310 10547 2027 TO no.address@enron.com
## 4311 10548 2028 TO platts@listserv.platts.com
## 4312 10554 2034 TO dl-ga-all_enron_worldwide1@enron.com
## 4313 10555 2035 TO dl-ga-all_enron_houston@enron.com
## 4314 10557 2037 TO newsletter_text@chron-news.com
## 4315 10560 2040 TO dl-ga-all_enron_houston@enron.com
## 4316 10561 2041 TO no.address@enron.com
## 4317 10562 2041 CC nncymorgan@msn.com
## 4318 10563 2041 CC dpkdd@aol.com
## 4319 10564 2041 CC m011602@yahoo.com
## 4320 10565 2041 CC apdiving@aol.com
## 4321 10566 2041 CC found@monumental.com
## 4322 10567 2041 CC fowlerj_23102@msn.com
## 4323 10568 2041 CC pd4byot@aol.com
## 4324 10569 2041 CC resqdisp@yahoo.com
## 4325 10570 2041 CC gordon_karen@hotmail.com
## 4326 10571 2041 CC cardiac696@aol.com
## 4327 10572 2041 CC emt607@aol.com
## 4328 10573 2041 CC vamtblues@aol.com
## 4329 10574 2041 CC majacks5@hotmail.com
## 4330 10575 2041 CC ellen@pwarc.org
## 4331 10576 2041 CC larry.kester@hoffman.army.mil
## 4332 10577 2041 CC larry.gordon@usmc-mccs.org
## 4333 10578 2041 BCC nncymorgan@msn.com
## 4334 10579 2041 BCC dpkdd@aol.com
## 4335 10580 2041 BCC m011602@yahoo.com
## 4336 10581 2041 BCC apdiving@aol.com
## 4337 10582 2041 BCC found@monumental.com
## 4338 10583 2041 BCC fowlerj_23102@msn.com
## 4339 10584 2041 BCC pd4byot@aol.com
## 4340 10585 2041 BCC resqdisp@yahoo.com
## 4341 10586 2041 BCC gordon_karen@hotmail.com
## 4342 10587 2041 BCC cardiac696@aol.com
## 4343 10588 2041 BCC emt607@aol.com
## 4344 10589 2041 BCC vamtblues@aol.com
## 4345 10590 2041 BCC majacks5@hotmail.com
## 4346 10591 2041 BCC ellen@pwarc.org
## 4347 10592 2041 BCC larry.kester@hoffman.army.mil
## 4348 10593 2041 BCC larry.gordon@usmc-mccs.org
## 4349 10594 2042 TO rda2c@unix.mail.virginia.edu
## 4350 10595 2042 TO bandrews257@aol.com
## 4351 10596 2042 TO mbock@kgo.csc.com
## 4352 10597 2042 TO maanbr@hotmail.com
## 4353 10598 2042 TO mandmranch@ev1.net
## 4354 10599 2042 TO cardiac734@aol.com
## 4355 10600 2042 TO kcarrlcsw@aol.com
## 4356 10601 2042 TO elena_carver@yahoo.com
## 4357 10602 2042 TO sweetie05291983@msn.com
## 4358 10603 2042 TO kravenoriole5610@msn.com
## 4359 10604 2042 TO fowlerj_23102@msn.com
## 4360 10605 2042 TO resqdisp@yahoo.com
## 4361 10606 2042 TO quackemt621@aol.com
## 4362 10607 2042 TO mmurray538@aol.com
## 4363 10608 2042 TO tammiep98@hotmail.com
## 4364 10609 2042 TO want2bjustme@aol.com
## 4365 10610 2042 TO lmrjpfeiff@aol.com
## 4366 10611 2042 TO jsrs@kcnet.com
## 4367 10612 2042 TO junglesniper@hotmail.com
## 4368 10613 2042 TO rrtcpr2001@aol.com
## 4369 10614 2042 TO lady4lifeinva@aol.com
## 4370 10615 2042 TO zman@firehousemail.com
## 4371 10616 2042 CC mdockens79@msn.com
## 4372 10617 2042 CC nncymorgan@msn.com
## 4373 10618 2042 CC dpkdd@aol.com
## 4374 10619 2042 CC m011602@yahoo.com
## 4375 10620 2042 CC apdiving@aol.com
## 4376 10621 2042 CC dkeuston@hotmail.com
## 4377 10622 2042 CC resdive626@hotmail.com
## 4378 10623 2042 CC cardiac696@aol.com
## 4379 10624 2042 CC emt607@aol.com
## 4380 10625 2042 CC cahemming@hotmail.com
## 4381 10626 2042 BCC mdockens79@msn.com
## 4382 10627 2042 BCC nncymorgan@msn.com
## 4383 10628 2042 BCC dpkdd@aol.com
## 4384 10629 2042 BCC m011602@yahoo.com
## 4385 10630 2042 BCC apdiving@aol.com
## 4386 10631 2042 BCC dkeuston@hotmail.com
## 4387 10632 2042 BCC resdive626@hotmail.com
## 4388 10633 2042 BCC cardiac696@aol.com
## 4389 10634 2042 BCC emt607@aol.com
## 4390 10635 2042 BCC cahemming@hotmail.com
## 4391 10637 2044 TO no.address@enron.com
## 4392 10646 2053 TO platts@listserv.platts.com
## 4393 10650 2057 TO no.address@enron.com
## 4394 10655 2061 CC lisa.druzbik@enron.com
## 4395 10656 2061 CC ned.higgins@enron.com
## 4396 10657 2061 BCC lisa.druzbik@enron.com
## 4397 10658 2061 BCC ned.higgins@enron.com
## 4398 10660 2062 CC ned.higgins@enron.com
## 4399 10661 2062 CC lisa.druzbik@enron.com
## 4400 10662 2062 BCC ned.higgins@enron.com
## 4401 10663 2062 BCC lisa.druzbik@enron.com
## 4402 10665 2063 CC jo.williams@enron.com
## 4403 10666 2063 CC john.pritchard@enron.com
## 4404 10667 2063 BCC jo.williams@enron.com
## 4405 10668 2063 BCC john.pritchard@enron.com
## 4406 10670 2065 TO a..howard@enron.com
## 4407 10671 2065 TO kimberly.watson@enron.com
## 4408 10676 2068 TO platts@listserv.platts.com
## 4409 10682 2074 TO no.address@enron.com
## 4410 10683 2075 TO dl-ga-all_domestic@enron.com
## 4411 10684 2076 TO All Enron Employees North America@ENRON
## 4412 10685 2077 TO sumey@enron.com
## 4413 10686 2077 TO katrina_sumey@platts.com
## 4414 10689 2080 TO jjohnston2@houston.rr.com
## 4415 10691 2081 TO platts@listserv.platts.com
## 4416 10692 2082 TO roy.hartstein@enron.com
## 4417 10694 2082 TO josh.mayes@enron.com
## 4418 10700 2088 TO eric.gadd@enron.com
## 4419 10702 2088 CC julie.armstrong@enron.com
## 4420 10703 2088 CC audrey.robertson@enron.com
## 4421 10704 2088 BCC julie.armstrong@enron.com
## 4422 10705 2088 BCC audrey.robertson@enron.com
## 4423 10706 2089 TO susan.wadle@enron.com
## 4424 10707 2089 TO eric.gadd@enron.com
## 4425 10709 2089 CC julie.armstrong@enron.com
## 4426 10710 2089 BCC julie.armstrong@enron.com
## 4427 10711 2090 TO audrey.robertson@enron.com
## 4428 10712 2090 TO susan.wadle@enron.com
## 4429 10713 2090 TO eric.gadd@enron.com
## 4430 10715 2091 TO julie.armstrong@enron.com
## 4431 10716 2091 TO audrey.robertson@enron.com
## 4432 10717 2091 TO eric.gadd@enron.com
## 4433 10719 2092 TO doug.aschwege@enron.com
## 4434 10720 2092 TO l..johnson@enron.com
## 4435 10721 2092 TO becki.sans@enron.com
## 4436 10722 2092 TO courtney.barker@enron.com
## 4437 10723 2092 TO mike.barry@enron.com
## 4438 10724 2092 TO vicki.berg@enron.com
## 4439 10725 2092 TO sean.bolks@enron.com
## 4440 10726 2092 TO joni.bollinger@enron.com
## 4441 10727 2092 TO janet.bowers@enron.com
## 4442 10728 2092 TO lorna.brennan@enron.com
## 4443 10729 2092 TO bob.burleson@enron.com
## 4444 10730 2092 TO reyna.cabrera@enron.com
## 4445 10731 2092 TO allen.cohrs@enron.com
## 4446 10733 2092 TO john.dushinske@enron.com
## 4447 10734 2092 TO john.fiscus@enron.com
## 4448 10735 2092 TO bill.fowler@enron.com
## 4449 10736 2092 TO eric.gadd@enron.com
## 4450 10737 2092 TO steve.gilbert@enron.com
## 4451 10738 2092 TO tom.halpin@enron.com
## 4452 10740 2092 TO stephen.herber@enron.com
## 4453 10742 2092 TO tim.johanson@enron.com
## 4454 10743 2092 TO dana.jones@enron.com
## 4455 10744 2092 TO jane.joyce@enron.com
## 4456 10745 2092 TO stephanie.korbelik@enron.com
## 4457 10746 2092 TO karen.lagerstrom@enron.com
## 4458 10747 2092 TO laura.lantefield@enron.com
## 4459 10748 2092 TO lorraine.lindberg@enron.com
## 4460 10749 2092 TO tk.lohman@enron.com
## 4461 10751 2092 TO penny.mccarran@enron.com
## 4462 10752 2092 TO w..mcgowan@enron.com
## 4463 10753 2092 TO vernon.mercaldo@enron.com
## 4464 10754 2092 TO john.millar@enron.com
## 4465 10755 2092 TO kent.miller@enron.com
## 4466 10756 2092 TO jan.moore@enron.com
## 4467 10757 2092 TO dave.neubauer@enron.com
## 4468 10758 2092 TO sue.neville@enron.com
## 4469 10759 2092 TO frank.oldenhuis@enron.com
## 4470 10760 2092 TO ranelle.paladino@enron.com
## 4471 10761 2092 TO larry.pavlou@enron.com
## 4472 10762 2092 TO loren.penkava@enron.com
## 4473 10763 2092 TO don.powell@enron.com
## 4474 10764 2092 TO ken.powers@enron.com
## 4475 10765 2092 TO john.pritchard@enron.com
## 4476 10766 2092 TO richard.riehm@enron.com
## 4477 10767 2092 TO preston.roobaert@enron.com
## 4478 10768 2092 TO chris.sebesta@enron.com
## 4479 10769 2092 TO frank.semin@enron.com
## 4480 10770 2092 TO g..stage@enron.com
## 4481 10771 2092 TO bob.stevens@enron.com
## 4482 10772 2092 TO steve.thomas@enron.com
## 4483 10773 2092 TO kay.threet@enron.com
## 4484 10774 2092 TO lisa.valley@enron.com
## 4485 10775 2092 TO kimberly.watson@enron.com
## 4486 10776 2092 TO steve.weller@enron.com
## 4487 10777 2092 TO roger.westfall@enron.com
## 4488 10778 2092 TO chuck.wilkinson@enron.com
## 4489 10779 2092 TO jo.williams@enron.com
## 4490 10780 2092 TO john.williams@enron.com
## 4491 10781 2092 TO deborah.cappiello@enron.com
## 4492 10782 2092 TO connie.hook@enron.com
## 4493 10783 2092 TO julie.mccoy@enron.com
## 4494 10784 2092 TO pilar.ramirez@enron.com
## 4495 10785 2092 TO audrey.robertson@enron.com
## 4496 10786 2092 TO susan.wadle@enron.com
## 4497 10787 2092 TO linda.wehring@enron.com
## 4498 10789 2094 TO susan.wadle@enron.com
## 4499 10792 2096 TO eric.gadd@enron.com
## 4500 10794 2097 TO lmfoust@aol.com
## 4501 10795 2097 TO pamedwards@academicplanet.com
## 4502 10797 2097 TO jbradshaw@kamalia.com
## 4503 10798 2097 TO jjohnston2@houston.rr.com
## 4504 10799 2097 TO kwangenheim@houston.rr.com
## 4505 10800 2097 TO massey.r@worldnet.att.net
## 4506 10801 2097 TO msmith@reliant.com
## 4507 10802 2097 TO rick.d.becker@worldnet.att.net
## 4508 10803 2097 TO jwright3@sbcglobal.net
## 4509 10804 2097 TO gaylen_kari@msn.com
## 4510 10805 2097 TO mgator7@hotmail.com
## 4511 10806 2097 TO cra123@yahoo.com
## 4512 10807 2097 TO indyandy06@msn.com
## 4513 10808 2097 TO aberdy@aol.com
## 4514 10809 2097 TO dandiamond1208@yahoo.com
## 4515 10810 2097 TO jdruffel@attbi.com
## 4516 10811 2097 TO dfontana@houston.rr.com
## 4517 10812 2097 TO w-hay1@ti.com
## 4518 10813 2097 TO eheil@intellimark-it.com
## 4519 10814 2097 TO johnstonp@houston.rr.com
## 4520 10815 2097 TO djoraholmen@houston.rr.com
## 4521 10816 2097 TO seidel1@home.com
## 4522 10817 2097 TO fshort@houston.rr.com
## 4523 10818 2097 TO beckyswerd@aol.com
## 4524 10819 2098 TO lippmanc@aol.com
## 4525 10823 2102 TO pamedwards@academicplanet.com
## 4526 10824 2102 TO eufard.cooper@att.net
## 4527 10825 2102 TO gfou@aol.com
## 4528 10826 2102 TO jcfou2@aol.com
## 4529 10828 2102 TO irongator@aol.com
## 4530 10829 2102 TO jlewis4@msn.com
## 4531 10830 2102 TO ronmichalski@msn.com
## 4532 10831 2102 TO rrathvon@houston.rr.com
## 4533 10832 2102 TO steveswerd@aol.com
## 4534 10833 2102 TO wtruxillo@hotmail.com
## 4535 10835 2104 TO platts@listserv.platts.com
## 4536 10836 2105 TO no.address@enron.com
## 4537 10837 2106 TO no.address@enron.com
## 4538 10838 2107 TO no.address@enron.com
## 4539 10839 2108 TO everyone.dl-ets@enron.com
## 4540 10840 2108 TO distribution.dl-ets@enron.com
## 4541 10843 2111 TO rex@texasbuydirect.com
## 4542 10844 2111 TO bapidutt@aol.com
## 4543 10845 2111 TO pamedwards@academicplanet.com
## 4544 10847 2111 TO jjohnston2@houston.rr.com
## 4545 10848 2111 TO massey.r@worldnet.att.net
## 4546 10849 2111 TO steveswerd@aol.com
## 4547 10850 2112 TO dl-ga-all_domestic@enron.com
## 4548 10864 2116 TO lorraine.lindberg@enron.com
## 4549 10865 2116 TO michael.clover@enron.com
## 4550 10866 2116 TO jim.goodman@enron.com
## 4551 10868 2116 TO phyllis.huckabee@enron.com
## 4552 10869 2117 TO platts@listserv.platts.com
## 4553 10873 2121 TO dl-ga-all_ees@enron.com
## 4554 10874 2121 TO dl-ga-all_enron_north_america@enron.com
## 4555 10875 2121 TO dl-ga-all_enw@enron.com
## 4556 10887 2132 TO platts@listserv.platts.com
## 4557 10893 2138 TO dl-ga-all_enron_houston@enron.com
## 4558 10894 2139 TO einsighttext@listserv.platts.com
## 4559 10903 2144 TO team.artesia@enron.com
## 4560 10904 2144 TO arnie.bailey@enron.com
## 4561 10905 2144 TO ginger.bissey@enron.com
## 4562 10906 2144 TO james.boatman@enron.com
## 4563 10907 2144 TO david.boothe@enron.com
## 4564 10908 2144 TO ronnie.brickman@enron.com
## 4565 10909 2144 TO dwain.brown@enron.com
## 4566 10910 2144 TO max.brown@enron.com
## 4567 10912 2144 TO team.carlsbad@enron.com
## 4568 10913 2144 TO earl.chanley@enron.com
## 4569 10914 2144 TO trevor.davidson@enron.com
## 4570 10915 2144 TO ernie.delossantos@enron.com
## 4571 10916 2144 TO leo.fajardo@enron.com
## 4572 10917 2144 TO team.flagstaff-sta2@enron.com
## 4573 10918 2144 TO team.flagstaff-sta3@enron.com
## 4574 10919 2144 TO team.flagstaff@enron.com
## 4575 10920 2144 TO lawrence.foutz@enron.com
## 4576 10921 2144 TO matt.francis@enron.com
## 4577 10922 2144 TO team.gallup-sta4@enron.com
## 4578 10923 2144 TO team.gallup-sta5@enron.com
## 4579 10924 2144 TO team.gallup@enron.com
## 4580 10925 2144 TO john.gormley@enron.com
## 4581 10926 2144 TO jerry.graves@enron.com
## 4582 10927 2144 TO jeff.greider@enron.com
## 4583 10928 2144 TO dick.heitman@enron.com
## 4584 10929 2144 TO jonny.hendricks@enron.com
## 4585 10930 2144 TO jackie.hewett@enron.com
## 4586 10931 2144 TO scott.hill@enron.com
## 4587 10932 2144 TO danny.hostetler@enron.com
## 4588 10933 2144 TO chris.hulls@enron.com
## 4589 10935 2144 TO randy.johnson@enron.com
## 4590 10936 2144 TO timothy.jones@enron.com
## 4591 10937 2144 TO team.kingman-needles@enron.com
## 4592 10938 2144 TO team.kingman-sta1@enron.com
## 4593 10939 2144 TO george.kneisley@enron.com
## 4594 10940 2144 TO team.laguna@enron.com
## 4595 10941 2144 TO ed.lawrence@enron.com
## 4596 10942 2144 TO lorraine.lindberg@enron.com
## 4597 10943 2144 TO joe.lueras@enron.com
## 4598 10944 2144 TO ron.matthews@enron.com
## 4599 10945 2144 TO mike.mccracken@enron.com
## 4600 10946 2144 TO ronnie.morse@enron.com
## 4601 10947 2144 TO team.mountainair@enron.com
## 4602 10948 2144 TO stan.nelson@enron.com
## 4603 10949 2144 TO roger.osborn@enron.com
## 4604 10950 2144 TO team.panhandle-p2@enron.com
## 4605 10951 2144 TO team.panhandle@enron.com
## 4606 10952 2144 TO mike.pavey@enron.com
## 4607 10953 2144 TO team.roswell-capitan@enron.com
## 4608 10954 2144 TO team.roswell@enron.com
## 4609 10955 2144 TO team.san-juan-laplata@enron.com
## 4610 10956 2144 TO team.san-juan@enron.com
## 4611 10957 2144 TO steve.sanmiguel@enron.com
## 4612 10958 2144 TO darrell.schoolcraft@enron.com
## 4613 10959 2144 TO frank.sosa@enron.com
## 4614 10960 2144 TO ben.tanner@enron.com
## 4615 10961 2144 TO russ.ulibarri@enron.com
## 4616 10962 2144 TO kimberly.watson@enron.com
## 4617 10963 2144 TO gloria.wier@enron.com
## 4618 10965 2146 TO dl-ga-all_enron_houston_employees@enron.com
## 4619 10967 2147 TO kimberly.watson@enron.com
## 4620 10969 2147 CC team.kingman-needles@enron.com
## 4621 10970 2147 BCC team.kingman-needles@enron.com
## 4622 10972 2149 TO dl-ga-all_enron_worldwide2@enron.com
## 4623 10974 2151 TO einsighttext@listserv.platts.com
## 4624 10975 2152 TO einsighttext@listserv.platts.com
## 4625 10977 2154 TO jwalk@futuresouth.com
## 4626 10978 2154 TO stanford@enron.com
## 4627 10979 2154 TO stanfors@fleishman.com
## 4628 10980 2154 TO jsommganc@aol.com
## 4629 10981 2154 TO wbsj@prodigy.net
## 4630 10982 2154 TO airlifter@earthlink.net
## 4631 10983 2154 TO connierodriguez@att.net
## 4632 10984 2154 TO donrod@flash.net
## 4633 10985 2154 TO spearl@viad.com
## 4634 10986 2154 TO ohara@attglobal.net
## 4635 10987 2154 TO josephohara@earthlink.com
## 4636 10988 2154 TO ejohara@webtv.net
## 4637 10989 2154 TO kkseeley@aol.com
## 4638 10990 2154 TO khyatt@ect.enron.com
## 4639 10991 2154 TO kennpatsy@aol.com
## 4640 10992 2154 TO terryhensleymk@yahoo.com
## 4641 10993 2154 TO kcharbour@aol.com
## 4642 10994 2154 TO maryann.grayson@ourclub.com
## 4643 10995 2154 TO sgee@apex2000.net
## 4644 10996 2154 TO gee@llano.net
## 4645 10997 2154 TO smile_98_atg@hotmail.com
## 4646 10998 2155 TO eric.gadd@enron.com
## 4647 11000 2155 CC julie.armstrong@enron.com
## 4648 11001 2155 CC audrey.robertson@enron.com
## 4649 11002 2155 BCC julie.armstrong@enron.com
## 4650 11003 2155 BCC audrey.robertson@enron.com
## 4651 11007 2159 TO bill.dulle@enron.com
## 4652 11009 2160 CC dulle@enron.com
## 4653 11010 2160 CC wdulle@amerenenergy.com
## 4654 11011 2160 BCC dulle@enron.com
## 4655 11012 2160 BCC wdulle@amerenenergy.com
## 4656 11013 2161 TO no.address@enron.com
## 4657 11014 2161 CC davidj@tradefairgroup.com
## 4658 11015 2161 CC seang@tradefairgroup.com
## 4659 11016 2161 CC miken@tradefairgroup.com
## 4660 11017 2161 CC jmakansi@pearlstreetinc.com
## 4661 11018 2161 BCC davidj@tradefairgroup.com
## 4662 11019 2161 BCC seang@tradefairgroup.com
## 4663 11020 2161 BCC miken@tradefairgroup.com
## 4664 11021 2161 BCC jmakansi@pearlstreetinc.com
## 4665 11022 2162 TO bill.dulle@enron.com
## 4666 11023 2162 CC carries@tradefairgroup.com
## 4667 11024 2162 BCC carries@tradefairgroup.com
## 4668 11025 2163 TO ljnorwood@calpine.com
## 4669 11062 2179 TO All Enron Employees North America@ENRON
## 4670 11082 2181 TO lorraine.lindberg@enron.com
## 4671 11089 2185 TO gabriel.chavez@enron.com
## 4672 11090 2185 TO v.dickerson@enron.com
## 4673 11091 2185 TO stephen.dowd@enron.com
## 4674 11092 2185 TO eric.gadd@enron.com
## 4675 11093 2185 TO martin.gonzalez@enron.com
## 4676 11095 2185 TO david.junus@enron.com
## 4677 11096 2185 TO jebong.lee@enron.com
## 4678 11097 2185 TO john.millar@enron.com
## 4679 11098 2185 TO michael.ratner@enron.com
## 4680 11101 2185 TO pallavi.goradia@enron.com
## 4681 11102 2185 TO lorraine.lindberg@enron.com
## 4682 11103 2185 TO tk.lohman@enron.com
## 4683 11105 2185 TO jan.moore@enron.com
## 4684 11106 2185 TO kimberly.watson@enron.com
## 4685 11108 2185 TO lee.huber@enron.com
## 4686 11109 2185 TO tony.pryor@enron.com
## 4687 11110 2186 TO masc@dynegy.com
## 4688 11111 2186 TO nmackenz@utilicorp.com
## 4689 11112 2186 TO pkeeler@br-inc.com
## 4690 11113 2186 TO gisb1@aol.com
## 4691 11114 2186 TO richard_d_smith@email.mobil.com
## 4692 11115 2186 TO ttoerner@reliant.com
## 4693 11116 2186 TO healyb@epenergy.com
## 4694 11117 2186 TO bruce.a.connell@usa.conoco.com
## 4695 11118 2186 TO carla.j.johnson@usa.conoco.com
## 4696 11119 2186 TO maroltct@er.oge.com
## 4697 11120 2186 TO dkohler@br-inc.com
## 4698 11121 2186 TO fritz_t_kolb@amoco.com
## 4699 11122 2186 TO gary.muckelroy@elpaso.com
## 4700 11123 2186 TO jerry.strange@elpaso.com
## 4701 11125 2186 TO llblack1@attglobal.net
## 4702 11126 2186 TO mmaglier@utilicorp.com
## 4703 11127 2186 TO fmdutton@aep.com
## 4704 11128 2186 TO pkeeler@br-inc.com
## 4705 11129 2186 TO barryp@bp.com
## 4706 11130 2186 TO pcervin@br-inc.com
## 4707 11131 2186 TO phil.richardson@dynegy.com
## 4708 11132 2186 TO rkboone@duke-energy.com
## 4709 11133 2186 TO ron.cabe@dynegy.com
## 4710 11134 2186 TO steve_irizarry@kindermorgan.com
## 4711 11135 2186 TO tarpeysp@bp.com
## 4712 11136 2186 TO murrata@texaco.com
## 4713 11137 2186 TO kbosley@reliant.com
## 4714 11138 2186 TO patricia.shelton@elpaso.com
## 4715 11148 2196 TO gabriel.chavez@enron.com
## 4716 11149 2196 TO v.dickerson@enron.com
## 4717 11150 2196 TO stephen.dowd@enron.com
## 4718 11151 2196 TO eric.gadd@enron.com
## 4719 11152 2196 TO martin.gonzalez@enron.com
## 4720 11154 2196 TO david.junus@enron.com
## 4721 11155 2196 TO jebong.lee@enron.com
## 4722 11156 2196 TO john.millar@enron.com
## 4723 11157 2196 TO michael.ratner@enron.com
## 4724 11160 2196 TO pallavi.goradia@enron.com
## 4725 11161 2196 TO lorraine.lindberg@enron.com
## 4726 11162 2196 TO tk.lohman@enron.com
## 4727 11164 2196 TO jan.moore@enron.com
## 4728 11165 2196 TO kimberly.watson@enron.com
## 4729 11167 2196 TO lee.huber@enron.com
## 4730 11168 2196 TO tony.pryor@enron.com
## 4731 11169 2197 TO charles_t._wehland@jonesday.com
## 4732 11170 2197 TO martinc@pgdp.usec.com
## 4733 11171 2197 TO brandrup@enron.com
## 4734 11172 2197 TO brandrupdain@firestoneag.com
## 4735 11173 2197 TO dcebmah@aol.com
## 4736 11174 2197 TO dgilles@ermse.com
## 4737 11175 2197 TO david.hollyday@carepoint.com
## 4738 11176 2197 TO dspencer@cdc.net
## 4739 11177 2197 TO rggraham@yahoo.com
## 4740 11179 2197 TO lswann@acesag.auburn.edu
## 4741 11180 2197 TO mparham@hpestatelaw.com
## 4742 11181 2197 TO paul.breeding@rmtinc.com
## 4743 11182 2197 TO paul@corvettecity.com
## 4744 11183 2197 TO scottw@eralley.com
## 4745 11185 2198 TO jjohnston2@houston.rr.com
## 4746 11186 2198 TO kwangenheim@houston.rr.com
## 4747 11187 2198 TO massey.r@worldnet.att.net
## 4748 11188 2198 TO steveswerd@aol.com
## 4749 11189 2198 TO wtruxillo@hotmail.com
## 4750 11190 2199 TO carr.kim@enron.com
## 4751 11192 2199 TO dockens.keith@enron.com
## 4752 11193 2199 TO w.michelle@enron.com
## 4753 11194 2199 TO leavy.michael@enron.com
## 4754 11195 2199 TO leavy.steve@enron.com
## 4755 11196 2199 TO majak.lydia@enron.com
## 4756 11197 2199 TO brasch.mark@enron.com
## 4757 11198 2199 TO jackson.matthew@enron.com
## 4758 11199 2199 TO bock.marian@enron.com
## 4759 11200 2199 TO dockens.meagan@enron.com
## 4760 11201 2199 TO mata.luis@enron.com
## 4761 11202 2199 TO murray.erica@enron.com
## 4762 11203 2200 TO prial.greg@enron.com
## 4763 11204 2200 TO hyatt.jeff@enron.com
## 4764 11205 2200 TO m.zebo@enron.com
## 4765 11206 2200 TO saighman.jayne@enron.com
## 4766 11207 2200 TO shogi.tyler@enron.com
## 4767 11208 2200 TO carr.kim@enron.com
## 4768 11210 2200 TO dockens.keith@enron.com
## 4769 11211 2200 TO w.michelle@enron.com
## 4770 11212 2200 TO kester.larry@enron.com
## 4771 11213 2200 TO leavy.michael@enron.com
## 4772 11214 2200 TO leavy.steve@enron.com
## 4773 11221 2207 TO dl-ga-all_enron_houston_employees@enron.com
## 4774 11222 2208 TO einsighttext@listserv.platts.com
## 4775 11224 2210 TO lippmanc@aol.com
## 4776 11226 2212 TO Enron Everyone_ET&S_Houston@ENRON
## 4777 11229 2215 TO einsighttext@listserv.platts.com
## 4778 11234 2220 TO jean.adams@enron.com
## 4779 11235 2220 TO patrick.barry@enron.com
## 4780 11236 2220 TO nancy.bastida@enron.com
## 4781 11237 2220 TO robert.benningfield@enron.com
## 4782 11238 2220 TO larry.berger@enron.com
## 4783 11239 2220 TO jean.blair@enron.com
## 4784 11241 2220 TO michael.bodnar@enron.com
## 4785 11242 2220 TO janet.bowers@enron.com
## 4786 11243 2220 TO karen.brostad@enron.com
## 4787 11244 2220 TO elizabeth.brown@enron.com
## 4788 11245 2220 TO randy.bryan@enron.com
## 4789 11246 2220 TO john.buchanan@enron.com
## 4790 11247 2220 TO craig.buehler@enron.com
## 4791 11248 2220 TO bob.burleson@enron.com
## 4792 11249 2220 TO reyna.cabrera@enron.com
## 4793 11250 2220 TO nancy.callans@enron.com
## 4794 11251 2220 TO james.carr@enron.com
## 4795 11252 2220 TO alma.carrillo@enron.com
## 4796 11253 2220 TO zuela.carter@enron.com
## 4797 11254 2220 TO karen.clapper@enron.com
## 4798 11256 2220 TO rick.dietz@enron.com
## 4799 11258 2220 TO mary.draemer@enron.com
## 4800 11259 2220 TO dale.eldridge@enron.com
## 4801 11260 2220 TO jodie.floyd@enron.com
## 4802 11261 2220 TO sherry.forbish@enron.com
## 4803 11262 2220 TO perry.frazier@enron.com
## 4804 11263 2220 TO ava.garcia@enron.com
## 4805 11264 2220 TO laura.giambrone@enron.com
## 4806 11265 2220 TO chris.greaney@enron.com
## 4807 11266 2220 TO alma.green@enron.com
## 4808 11267 2220 TO stephen.herber@enron.com
## 4809 11268 2220 TO bert.hernandez@enron.com
## 4810 11269 2220 TO helpdesk.hottap@enron.com
## 4811 11270 2220 TO jack.howard@enron.com
## 4812 11272 2220 TO randy.janzen@enron.com
## 4813 11273 2220 TO terry.kowalke@enron.com
## 4814 11274 2220 TO lynda.laferla@enron.com
## 4815 11275 2220 TO dennis.lee@enron.com
## 4816 11276 2220 TO lorraine.lindberg@enron.com
## 4817 11277 2220 TO joe.linhart@enron.com
## 4818 11278 2220 TO tk.lohman@enron.com
## 4819 11280 2220 TO maggie.matheson@enron.com
## 4820 11281 2220 TO penny.mccarran@enron.com
## 4821 11282 2220 TO janet.mcdaniel@enron.com
## 4822 11283 2220 TO christine.mcevoy@enron.com
## 4823 11284 2220 TO gerry.medeles@enron.com
## 4824 11285 2220 TO vernon.mercaldo@enron.com
## 4825 11286 2220 TO beverly.miller@enron.com
## 4826 11287 2220 TO christopher.miller@enron.com
## 4827 11288 2220 TO kent.miller@enron.com
## 4828 11289 2220 TO tracy.minter@enron.com
## 4829 11290 2220 TO amy.mulligan@enron.com
## 4830 11291 2220 TO sheila.nacey@enron.com
## 4831 11292 2220 TO sue.neville@enron.com
## 4832 11293 2220 TO kim.perez@enron.com
## 4833 11294 2220 TO renee.perry@enron.com
## 4834 11295 2220 TO diana.porter@enron.com
## 4835 11296 2220 TO preston.roobaert@enron.com
## 4836 11297 2220 TO debra.scurlock@enron.com
## 4837 11298 2220 TO kathy.sturr@enron.com
## 4838 11299 2220 TO kay.threet@enron.com
## 4839 11300 2220 TO linda.trevino@enron.com
## 4840 11301 2220 TO cara.vaughan@enron.com
## 4841 11302 2220 TO shirley.walden@enron.com
## 4842 11303 2220 TO linda.ward@enron.com
## 4843 11304 2220 TO steve.weller@enron.com
## 4844 11305 2220 TO jerry.wilkens@enron.com
## 4845 11306 2220 TO john.williams@enron.com
## 4846 11307 2220 TO harry.woodson@enron.com
## 4847 11308 2220 TO raetta.zadow@enron.com
## 4848 11309 2221 TO no.address@enron.com
## 4849 11310 2222 TO Enron Employees Domestic@ENRON
## 4850 11311 2223 TO khyatt@ect.enron.com
## 4851 11317 2229 TO ken.anderson@enron.com
## 4852 11318 2229 TO doug.aschwege@enron.com
## 4853 11319 2229 TO judy.beck@enron.com
## 4854 11320 2229 TO gary.choquette@enron.com
## 4855 11321 2229 TO carolyn.descoteaux@enron.com
## 4856 11322 2229 TO l..johnson@enron.com
## 4857 11323 2229 TO bryan.reinecke@enron.com
## 4858 11324 2229 TO becki.sans@enron.com
## 4859 11325 2229 TO roger.westfall@enron.com
## 4860 11326 2229 TO gabriel.chavez@enron.com
## 4861 11327 2229 TO v.dickerson@enron.com
## 4862 11328 2229 TO stephen.dowd@enron.com
## 4863 11329 2229 TO eric.gadd@enron.com
## 4864 11330 2229 TO elberg.gelin@enron.com
## 4865 11331 2229 TO martin.gonzalez@enron.com
## 4866 11333 2229 TO david.junus@enron.com
## 4867 11334 2229 TO jebong.lee@enron.com
## 4868 11335 2229 TO john.millar@enron.com
## 4869 11336 2229 TO michael.ratner@enron.com
## 4870 11337 2229 TO gina.taylor@enron.com
## 4871 11338 2229 TO glen.hass@enron.com
## 4872 11339 2229 TO michael.loeffler@enron.com
## 4873 11340 2229 TO lon.stanton@enron.com
## 4874 11341 2229 TO rob.wilson@enron.com
## 4875 11342 2229 TO deborah.cappiello@enron.com
## 4876 11343 2229 TO rosemary.gracey@enron.com
## 4877 11344 2229 TO connie.hook@enron.com
## 4878 11345 2229 TO pilar.ramirez@enron.com
## 4879 11346 2229 TO audrey.robertson@enron.com
## 4880 11347 2229 TO india.torres@enron.com
## 4881 11348 2229 TO linda.wehring@enron.com
## 4882 11349 2229 TO john.dushinske@enron.com
## 4883 11350 2229 TO bill.fowler@enron.com
## 4884 11351 2229 TO kent.miller@enron.com
## 4885 11352 2229 TO dave.neubauer@enron.com
## 4886 11353 2229 TO sue.neville@enron.com
## 4887 11354 2229 TO jo.williams@enron.com
## 4888 11355 2229 TO mike.barry@enron.com
## 4889 11356 2229 TO vicki.berg@enron.com
## 4890 11357 2229 TO sean.bolks@enron.com
## 4891 11358 2229 TO joni.bollinger@enron.com
## 4892 11359 2229 TO janet.bowers@enron.com
## 4893 11360 2229 TO theresa.branney@enron.com
## 4894 11361 2229 TO craig.buehler@enron.com
## 4895 11362 2229 TO bob.burleson@enron.com
## 4896 11363 2229 TO reyna.cabrera@enron.com
## 4897 11364 2229 TO tom.halpin@enron.com
## 4898 11365 2229 TO stephen.herber@enron.com
## 4899 11366 2229 TO martha.janousek@enron.com
## 4900 11367 2229 TO tim.johanson@enron.com
## 4901 11368 2229 TO karen.lagerstrom@enron.com
## 4902 11369 2229 TO laura.lantefield@enron.com
## 4903 11370 2229 TO robert.mason@enron.com
## 4904 11371 2229 TO penny.mccarran@enron.com
## 4905 11372 2229 TO vernon.mercaldo@enron.com
## 4906 11373 2229 TO frank.oldenhuis@enron.com
## 4907 11374 2229 TO larry.pavlou@enron.com
## 4908 11375 2229 TO loren.penkava@enron.com
## 4909 11376 2229 TO john.pritchard@enron.com
## 4910 11377 2229 TO richard.riehm@enron.com
## 4911 11378 2229 TO preston.roobaert@enron.com
## 4912 11379 2229 TO chris.sebesta@enron.com
## 4913 11380 2229 TO frank.semin@enron.com
## 4914 11381 2229 TO g..stage@enron.com
## 4915 11382 2229 TO bob.stevens@enron.com
## 4916 11383 2229 TO vincent.strohmeyer@enron.com
## 4917 11384 2229 TO steve.thomas@enron.com
## 4918 11385 2229 TO kay.threet@enron.com
## 4919 11386 2229 TO lisa.valley@enron.com
## 4920 11387 2229 TO steve.weller@enron.com
## 4921 11388 2229 TO chuck.wilkinson@enron.com
## 4922 11390 2229 TO rick.dietz@enron.com
## 4923 11391 2229 TO steven.january@enron.com
## 4924 11392 2229 TO gerry.medeles@enron.com
## 4925 11393 2229 TO sheila.nacey@enron.com
## 4926 11394 2229 TO donna.scott@enron.com
## 4927 11395 2229 TO dari.dornan@enron.com
## 4928 11396 2229 TO maria.pavlou@enron.com
## 4929 11397 2229 TO j..porter@enron.com
## 4930 11398 2229 TO jim.talcott@enron.com
## 4931 11402 2229 TO kay.miller@enron.com
## 4932 11403 2229 TO randy.rice@enron.com
## 4933 11404 2229 TO courtney.barker@enron.com
## 4934 11405 2229 TO w..mcgowan@enron.com
## 4935 11406 2229 TO allen.cohrs@enron.com
## 4936 11407 2229 TO john.fiscus@enron.com
## 4937 11408 2229 TO steve.gilbert@enron.com
## 4938 11409 2229 TO dana.jones@enron.com
## 4939 11410 2229 TO jane.joyce@enron.com
## 4940 11411 2229 TO stephanie.korbelik@enron.com
## 4941 11412 2229 TO don.powell@enron.com
## 4942 11413 2229 TO ken.powers@enron.com
## 4943 11416 2229 TO pallavi.goradia@enron.com
## 4944 11417 2229 TO lorraine.lindberg@enron.com
## 4945 11418 2229 TO tk.lohman@enron.com
## 4946 11420 2229 TO mark.mcconnell@enron.com
## 4947 11421 2229 TO jan.moore@enron.com
## 4948 11422 2229 TO kimberly.watson@enron.com
## 4949 11424 2229 TO lee.huber@enron.com
## 4950 11425 2229 TO tony.pryor@enron.com
## 4951 11426 2230 TO gina.taylor@enron.com
## 4952 11427 2230 TO courtney.barker@enron.com
## 4953 11428 2230 TO bret.fritch@enron.com
## 4954 11429 2230 TO donna.martens@enron.com
## 4955 11430 2230 TO keith.petersen@enron.com
## 4956 11431 2230 TO donald.vignaroli@enron.com
## 4957 11432 2230 TO ken.anderson@enron.com
## 4958 11433 2230 TO doug.aschwege@enron.com
## 4959 11434 2230 TO judy.beck@enron.com
## 4960 11435 2230 TO gary.choquette@enron.com
## 4961 11436 2230 TO carolyn.descoteaux@enron.com
## 4962 11437 2230 TO l..johnson@enron.com
## 4963 11438 2230 TO bryan.reinecke@enron.com
## 4964 11439 2230 TO becki.sans@enron.com
## 4965 11440 2230 TO roger.westfall@enron.com
## 4966 11441 2230 TO gabriel.chavez@enron.com
## 4967 11442 2230 TO stephen.dowd@enron.com
## 4968 11443 2230 TO eric.gadd@enron.com
## 4969 11444 2230 TO elberg.gelin@enron.com
## 4970 11445 2230 TO martin.gonzalez@enron.com
## 4971 11447 2230 TO david.junus@enron.com
## 4972 11448 2230 TO jebong.lee@enron.com
## 4973 11449 2230 TO john.millar@enron.com
## 4974 11450 2230 TO michael.ratner@enron.com
## 4975 11451 2230 TO glen.hass@enron.com
## 4976 11452 2230 TO michael.loeffler@enron.com
## 4977 11453 2230 TO lon.stanton@enron.com
## 4978 11454 2230 TO rob.wilson@enron.com
## 4979 11455 2230 TO john.dushinske@enron.com
## 4980 11456 2230 TO bill.fowler@enron.com
## 4981 11457 2230 TO kent.miller@enron.com
## 4982 11458 2230 TO dave.neubauer@enron.com
## 4983 11459 2230 TO sue.neville@enron.com
## 4984 11460 2230 TO jo.williams@enron.com
## 4985 11461 2230 TO mike.barry@enron.com
## 4986 11462 2230 TO vicki.berg@enron.com
## 4987 11463 2230 TO sean.bolks@enron.com
## 4988 11464 2230 TO joni.bollinger@enron.com
## 4989 11465 2230 TO janet.bowers@enron.com
## 4990 11466 2230 TO theresa.branney@enron.com
## 4991 11467 2230 TO craig.buehler@enron.com
## 4992 11468 2230 TO bob.burleson@enron.com
## 4993 11469 2230 TO reyna.cabrera@enron.com
## 4994 11470 2230 TO tom.halpin@enron.com
## 4995 11471 2230 TO stephen.herber@enron.com
## 4996 11472 2230 TO martha.janousek@enron.com
## 4997 11473 2230 TO tim.johanson@enron.com
## 4998 11474 2230 TO karen.lagerstrom@enron.com
## 4999 11475 2230 TO laura.lantefield@enron.com
## 5000 11476 2230 TO robert.mason@enron.com
## 5001 11477 2230 TO penny.mccarran@enron.com
## 5002 11478 2230 TO vernon.mercaldo@enron.com
## 5003 11479 2230 TO frank.oldenhuis@enron.com
## 5004 11480 2230 TO larry.pavlou@enron.com
## 5005 11481 2230 TO loren.penkava@enron.com
## 5006 11482 2230 TO john.pritchard@enron.com
## 5007 11483 2230 TO richard.riehm@enron.com
## 5008 11484 2230 TO preston.roobaert@enron.com
## 5009 11485 2230 TO chris.sebesta@enron.com
## 5010 11486 2230 TO frank.semin@enron.com
## 5011 11487 2230 TO g..stage@enron.com
## 5012 11488 2230 TO bob.stevens@enron.com
## 5013 11489 2230 TO vincent.strohmeyer@enron.com
## 5014 11490 2230 TO larry.swett@enron.com
## 5015 11491 2230 TO steve.thomas@enron.com
## 5016 11492 2230 TO kay.threet@enron.com
## 5017 11493 2230 TO lisa.valley@enron.com
## 5018 11494 2230 TO steve.weller@enron.com
## 5019 11495 2230 TO chuck.wilkinson@enron.com
## 5020 11497 2230 TO rick.dietz@enron.com
## 5021 11498 2230 TO steven.january@enron.com
## 5022 11499 2230 TO gerry.medeles@enron.com
## 5023 11500 2230 TO sheila.nacey@enron.com
## 5024 11501 2230 TO donna.scott@enron.com
## 5025 11502 2230 TO dari.dornan@enron.com
## 5026 11503 2230 TO maria.pavlou@enron.com
## 5027 11504 2230 TO j..porter@enron.com
## 5028 11505 2230 TO jim.talcott@enron.com
## 5029 11509 2230 TO w..mcgowan@enron.com
## 5030 11510 2230 TO kay.miller@enron.com
## 5031 11511 2230 TO mike.nelson@enron.com
## 5032 11512 2230 TO rita.bianchi@enron.com
## 5033 11513 2230 TO patrick.brennan@enron.com
## 5034 11514 2230 TO carol.clements@enron.com
## 5035 11515 2230 TO mary.darveaux@enron.com
## 5036 11516 2230 TO steve.kirk@enron.com
## 5037 11517 2230 TO tim.kissner@enron.com
## 5038 11518 2230 TO bob.thurber@enron.com
## 5039 11519 2230 TO michele.winckowski@enron.com
## 5040 11520 2230 TO sarabeth.smith@enron.com
## 5041 11521 2230 TO allen.cohrs@enron.com
## 5042 11522 2230 TO john.fiscus@enron.com
## 5043 11523 2230 TO steve.gilbert@enron.com
## 5044 11524 2230 TO dana.jones@enron.com
## 5045 11525 2230 TO jane.joyce@enron.com
## 5046 11526 2230 TO stephanie.korbelik@enron.com
## 5047 11527 2230 TO don.powell@enron.com
## 5048 11528 2230 TO ken.powers@enron.com
## 5049 11531 2230 TO pallavi.goradia@enron.com
## 5050 11532 2230 TO lorraine.lindberg@enron.com
## 5051 11533 2230 TO tk.lohman@enron.com
## 5052 11535 2230 TO mark.mcconnell@enron.com
## 5053 11536 2230 TO jan.moore@enron.com
## 5054 11537 2230 TO kimberly.watson@enron.com
## 5055 11539 2230 TO lee.huber@enron.com
## 5056 11540 2230 TO tony.pryor@enron.com
## 5057 11541 2231 TO All Enron Employees North America@ENRON
## 5058 11542 2232 TO dl-ga-all_egs@enron.com
## 5059 11543 2232 TO notes.dl-ga-all_egs@enron.com
## 5060 11544 2233 TO dl-ga-all_domestic@enron.com
## 5061 11545 2234 TO dl-ga-all_egs@enron.com
## 5062 11546 2235 TO dl-ga-all_enron_worldwide2@enron.com
## 5063 11547 2236 TO dl-ga-all_egs@enron.com
## 5064 11548 2237 TO dl-ga-all_egs@enron.com
## 5065 11549 2238 TO dl-ga-all_enron_worldwide1@enron.com
## 5066 11550 2239 TO dl-ga-all_enron_worldwide2@enron.com
## 5067 11552 2240 CC dorothy.mccoppin@enron.com
## 5068 11553 2240 BCC dorothy.mccoppin@enron.com
## 5069 11554 2241 TO All Enron Employees United States Group@ENRON
## 5070 11555 2242 TO dl-ga-all_enron_worldwide2@enron.com
## 5071 11556 2243 TO dl-ga-all_enron_worldwide2@enron.com
## 5072 11557 2244 TO einsighttext@listserv.platts.com
## 5073 11558 2245 TO dl-ga-all_enron_worldwide@enron.com
## 5074 11559 2246 TO All Enron Worldwide@ENRON
## 5075 11560 2247 TO All Enron Worldwide@ENRON
## 5076 11561 2248 TO All Enron Employees North America@ENRON
## 5077 11562 2249 TO All Enron Worldwide@ENRON
## 5078 11563 2250 TO All Enron Worldwide@ENRON
## 5079 11564 2251 TO All Enron Worldwide@ENRON
## 5080 11565 2252 TO All Enron Worldwide@ENRON
## 5081 11566 2253 TO All Enron Employees North America@ENRON
## 5082 11567 2254 TO robert.hayes@enron.com
## 5083 11568 2254 TO robert.kilmer@enron.com
## 5084 11569 2254 TO jack.boatman@enron.com
## 5085 11570 2254 TO mike.bryant@enron.com
## 5086 11571 2254 TO c..alexander@enron.com
## 5087 11572 2254 TO stephen.veatch@enron.com
## 5088 11576 2254 TO dave.neubauer@enron.com
## 5089 11577 2254 TO kent.miller@enron.com
## 5090 11578 2254 TO eric.gadd@enron.com
## 5091 11580 2254 TO beth.jensen@enron.com
## 5092 11581 2254 TO joe.hartsoe@enron.com
## 5093 11583 2254 TO dana.gibbs@enron.com
## 5094 11584 2254 TO ellen.coombe@enron.com
## 5095 11585 2254 TO bill.cordes@enron.com
## 5096 11587 2254 TO phil.lowry@enron.com
## 5097 11588 2254 TO gary.smith@enron.com
## 5098 11589 2254 TO steve.hotte@enron.com
## 5099 11590 2254 TO janet.butler@enron.com
## 5100 11591 2254 TO steven.january@enron.com
## 5101 11592 2254 TO bradley.holmes@enron.com
## 5102 11593 2254 TO donna.scott@enron.com
## 5103 11594 2254 TO sheila.nacey@enron.com
## 5104 11596 2254 TO rick.dietz@enron.com
## 5105 11597 2254 TO ricki.winters@enron.com
## 5106 11598 2254 TO lillian.villarreal@enron.com
## 5107 11599 2254 TO r..keller@enron.com
## 5108 11601 2254 TO kimberly.watson@enron.com
## 5109 11602 2254 TO kay.miller@enron.com
## 5110 11603 2254 TO julie.armstrong@enron.com
## 5111 11604 2254 TO d..martin@enron.com
## 5112 11605 2254 TO john.shafer@enron.com
## 5113 11607 2254 TO bambi.heckerman@enron.com
## 5114 11608 2254 CC gina.taylor@enron.com
## 5115 11609 2254 CC kimberley.nelson@enron.com
## 5116 11610 2254 CC sarah.haden@enron.com
## 5117 11611 2254 BCC gina.taylor@enron.com
## 5118 11612 2254 BCC kimberley.nelson@enron.com
## 5119 11613 2254 BCC sarah.haden@enron.com
## 5120 11614 2255 TO All Enron Worldwide@ENRON
## 5121 11615 2256 TO arnie.bailey@enron.com
## 5122 11616 2256 TO rick.smith@enron.com
## 5123 11617 2256 TO david.roensch@enron.com
## 5124 11618 2256 TO rick.suderman@enron.com
## 5125 11619 2256 TO trevor.davidson@enron.com
## 5126 11620 2256 TO carmelita.holland@enron.com
## 5127 11621 2256 TO timothy.jones@enron.com
## 5128 11622 2256 TO joe.lueras@enron.com
## 5129 11623 2256 TO team.kingman-needles@enron.com
## 5130 11624 2256 TO team.kingman-sta1@enron.com
## 5131 11625 2256 TO team.kingman@enron.com
## 5132 11626 2256 TO team.laguna@enron.com
## 5133 11627 2256 TO team.gallup-sta4@enron.com
## 5134 11628 2256 TO team.gallup-sta5@enron.com
## 5135 11629 2256 TO team.gallup@enron.com
## 5136 11630 2256 TO team.roswell-capitan@enron.com
## 5137 11631 2256 TO team.roswell@enron.com
## 5138 11632 2256 TO team.artesia@enron.com
## 5139 11633 2256 TO team.carlsbad@enron.com
## 5140 11634 2256 TO team.san-juan-laplata@enron.com
## 5141 11635 2256 TO team.san-juan@enron.com
## 5142 11636 2256 TO team.flagstaff@enron.com
## 5143 11637 2256 TO team.panhandle-p2@enron.com
## 5144 11638 2256 TO ben.asante@enron.com
## 5145 11639 2256 TO bob.bandel@enron.com
## 5146 11640 2256 TO ginger.bissey@enron.com
## 5147 11641 2256 TO mike.bonnstetter@enron.com
## 5148 11642 2256 TO david.boothe@enron.com
## 5149 11643 2256 TO morris.brassfield@enron.com
## 5150 11644 2256 TO ronnie.brickman@enron.com
## 5151 11645 2256 TO dwain.brown@enron.com
## 5152 11646 2256 TO bob.burleson@enron.com
## 5153 11648 2256 TO kenneth.cessac@enron.com
## 5154 11649 2256 TO earl.chanley@enron.com
## 5155 11650 2256 TO scott.clark@enron.com
## 5156 11651 2256 TO ken.crowl@enron.com
## 5157 11652 2256 TO ernie.delossantos@enron.com
## 5158 11653 2256 TO l..eisenstein@enron.com
## 5159 11654 2256 TO leo.fajardo@enron.com
## 5160 11655 2256 TO eric.faucheaux@enron.com
## 5161 11656 2256 TO larry.fenstad@enron.com
## 5162 11657 2256 TO sandra.fitzwater@enron.com
## 5163 11658 2256 TO matt.francis@enron.com
## 5164 11659 2256 TO perry.frazier@enron.com
## 5165 11660 2256 TO robert.geheb@enron.com
## 5166 11661 2256 TO john.gormley@enron.com
## 5167 11662 2256 TO charlie.graham@enron.com
## 5168 11663 2256 TO cecil.gutierrez@enron.com
## 5169 11664 2256 TO jerry.harkreader@enron.com
## 5170 11666 2256 TO don.hawkins@enron.com
## 5171 11667 2256 TO jonny.hendricks@enron.com
## 5172 11668 2256 TO jackie.hewett@enron.com
## 5173 11670 2256 TO todd.ingalls@enron.com
## 5174 11671 2256 TO steven.january@enron.com
## 5175 11672 2256 TO joe.jeffers@enron.com
## 5176 11673 2256 TO randy.johnson@enron.com
## 5177 11674 2256 TO r..keller@enron.com
## 5178 11675 2256 TO jill.kendrick@enron.com
## 5179 11676 2256 TO george.kneisley@enron.com
## 5180 11677 2256 TO laura.kunkel@enron.com
## 5181 11678 2256 TO kim.ladish@enron.com
## 5182 11679 2256 TO ed.lawrence@enron.com
## 5183 11680 2256 TO randy.lebeau@enron.com
## 5184 11681 2256 TO lorraine.lindberg@enron.com
## 5185 11682 2256 TO gary.maestas@enron.com
## 5186 11683 2256 TO ronald.matthews@enron.com
## 5187 11684 2256 TO mike.mccracken@enron.com
## 5188 11685 2256 TO johnny.mcgee@enron.com
## 5189 11686 2256 TO greg.mcilwain@enron.com
## 5190 11687 2256 TO stan.nelson@enron.com
## 5191 11688 2256 TO roger.osborn@enron.com
## 5192 11689 2256 TO renee.pena@enron.com
## 5193 11690 2256 TO randy.rice@enron.com
## 5194 11691 2256 TO butch.russell@enron.com
## 5195 11692 2256 TO steve.sanmiguel@enron.com
## 5196 11693 2256 TO darrell.schoolcraft@enron.com
## 5197 11694 2256 TO john.shafer@enron.com
## 5198 11695 2256 TO michael.smith@enron.com
## 5199 11696 2256 TO louis.soldano@enron.com
## 5200 11697 2256 TO norm.spalding@enron.com
## 5201 11698 2256 TO ld.stephens@enron.com
## 5202 11699 2256 TO jim.talcott@enron.com
## 5203 11700 2256 TO ben.tanner@enron.com
## 5204 11701 2256 TO steve.tarter@enron.com
## 5205 11702 2256 TO larry.urban@enron.com
## 5206 11703 2256 TO amy.villasenor@enron.com
## 5207 11704 2256 TO kimberly.watson@enron.com
## 5208 11705 2256 TO gloria.wier@enron.com
## 5209 11706 2256 TO neta.zitnik@enron.com
## 5210 11707 2256 TO ronald.matthews@enron.com
## 5211 11708 2257 TO Enron Transportation Services Employees@ENRON
## 5212 11709 2258 TO brandon.rigney@enron.com
## 5213 11710 2258 CC geneva.davis@enron.com
## 5214 11712 2258 CC elyse.kalmans@enron.com
## 5215 11713 2258 BCC geneva.davis@enron.com
## 5216 11715 2258 BCC elyse.kalmans@enron.com
## 5217 11719 2261 TO fawcett.jeff@enron.com
## 5218 11720 2261 TO melissa.solis@enron.com
## 5219 11721 2261 TO nelson.neale@enron.com
## 5220 11722 2261 TO kay.young@enron.com
## 5221 11723 2261 TO preston.roobaert@enron.com
## 5222 11724 2261 TO robert.hignojos@enron.com
## 5223 11725 2261 TO dana.jones@enron.com
## 5224 11726 2261 TO rita.wynne@enron.com
## 5225 11727 2261 TO julie.armstrong@enron.com
## 5226 11728 2261 TO rhenn.cherry@enron.com
## 5227 11729 2261 TO fawn.borger@enron.com
## 5228 11730 2261 TO thomas.adams@enron.com
## 5229 11731 2261 TO jennifer.hillegonds@enron.com
## 5230 11732 2261 TO stephanie.truss@enron.com
## 5231 11733 2261 TO karen.hayes@enron.com
## 5232 11734 2261 TO kathy.sturr@enron.com
## 5233 11735 2261 TO perry.frazier@enron.com
## 5234 11736 2261 TO matthews.ron@enron.com
## 5235 11737 2261 TO schoolcraft.lynda@enron.com
## 5236 11738 2261 TO darrell.schoolcraft@enron.com
## 5237 11739 2261 TO jean.blair@enron.com
## 5238 11740 2261 TO kathy.washington@enron.com
## 5239 11741 2261 TO nancy.callans@enron.com
## 5240 11742 2261 TO diana.porter@enron.com
## 5241 11743 2261 TO james.carr@enron.com
## 5242 11744 2261 TO perry.renee@enron.com
## 5243 11745 2261 TO linda.wehring@enron.com
## 5244 11746 2261 TO penny.mccarran@enron.com
## 5245 11747 2261 TO steve.weller@enron.com
## 5246 11748 2261 TO susan.wadle@enron.com
## 5247 11749 2261 TO jan.moore@enron.com
## 5248 11750 2261 TO bob.chandler@enron.com
## 5249 11751 2261 TO herber.steve@enron.com
## 5250 11757 2265 TO console.security@enron.com
## 5251 11758 2265 CC doug.blake@enron.com
## 5252 11759 2265 CC ira.mozee@enron.com
## 5253 11761 2265 BCC doug.blake@enron.com
## 5254 11762 2265 BCC ira.mozee@enron.com
## 5255 11765 2266 CC jessemorris@entouch.net
## 5256 11766 2266 BCC jessemorris@entouch.net
## 5257 11769 2269 TO lillian.villarreal@enron.com
## 5258 11770 2269 TO lillian.villarreal@enron.com
## 5259 11771 2269 TO gloria.alvarez@enron.com
## 5260 11772 2269 TO carin.andre@enron.com
## 5261 11773 2269 TO cheryl.arguijo@enron.com
## 5262 11774 2269 TO kristy.armstrong@enron.com
## 5263 11775 2269 TO ladonna.avery@enron.com
## 5264 11776 2269 TO lorraine.becker@enron.com
## 5265 11777 2269 TO debra.blake@enron.com
## 5266 11778 2269 TO lissa.boatright@enron.com
## 5267 11779 2269 TO stacie.bohanan@enron.com
## 5268 11780 2269 TO felicia.buenrostro@enron.com
## 5269 11781 2269 TO therese.candella@enron.com
## 5270 11782 2269 TO felicia.case@enron.com
## 5271 11783 2269 TO tina.clements@enron.com
## 5272 11784 2269 TO angie.collins@enron.com
## 5273 11785 2269 TO rachel.crowell@enron.com
## 5274 11786 2269 TO bradley.diebner@enron.com
## 5275 11787 2269 TO s..dutton@enron.com
## 5276 11788 2269 TO rebecca.ford@enron.com
## 5277 11789 2269 TO sarita.garza@enron.com
## 5278 11790 2269 TO alisha.guerrero@enron.com
## 5279 11791 2269 TO bert.hernandez@enron.com
## 5280 11793 2269 TO s..johnson@enron.com
## 5281 11794 2269 TO a..johnson@enron.com
## 5282 11795 2269 TO shelley.johnson@enron.com
## 5283 11796 2269 TO melissa.jones@enron.com
## 5284 11797 2269 TO daryl.kitchen@enron.com
## 5285 11798 2269 TO a..lancaster@enron.com
## 5286 11799 2269 TO dennis.lee@enron.com
## 5287 11800 2269 TO elsie.lew@enron.com
## 5288 11801 2269 TO ruth.mann@enron.com
## 5289 11802 2269 TO george.margoliner@enron.com
## 5290 11803 2269 TO zakiyyah.mcclure@enron.com
## 5291 11804 2269 TO g..moore@enron.com
## 5292 11805 2269 TO emitra.nelson@enron.com
## 5293 11806 2269 TO tam.nguyen@enron.com
## 5294 11807 2269 TO elizabeth.resendiz@enron.com
## 5295 11808 2269 TO chaun.roberts@enron.com
## 5296 11809 2269 TO michelle.robichaux@enron.com
## 5297 11810 2269 TO ramona.rodriguez@enron.com
## 5298 11811 2269 TO pamela.rush@enron.com
## 5299 11812 2269 TO julie.sek@enron.com
## 5300 11813 2269 TO j.smith@enron.com
## 5301 11814 2269 TO n..stewart@enron.com
## 5302 11815 2269 TO sharon.stringfellow@enron.com
## 5303 11816 2269 TO eboni.troupe@enron.com
## 5304 11817 2269 TO chantelle.villanueva@enron.com
## 5305 11818 2269 TO tammie.williams@enron.com
## 5306 11819 2270 TO eia@enron.com
## 5307 11820 2270 CC geneva.davis@enron.com
## 5308 11822 2270 BCC geneva.davis@enron.com
## 5309 11824 2271 TO misha.siegel@enron.com
## 5310 11825 2271 TO elyse.kalmans@enron.com
## 5311 11826 2271 CC cindy.olson@enron.com
## 5312 11827 2271 BCC cindy.olson@enron.com
## 5313 11828 2272 TO lillian.villarreal@enron.com
## 5314 11829 2272 TO gloria.alvarez@enron.com
## 5315 11830 2272 TO carin.andre@enron.com
## 5316 11831 2272 TO cheryl.arguijo@enron.com
## 5317 11832 2272 TO kristy.armstrong@enron.com
## 5318 11833 2272 TO ladonna.avery@enron.com
## 5319 11834 2272 TO lorraine.becker@enron.com
## 5320 11835 2272 TO debra.blake@enron.com
## 5321 11836 2272 TO lissa.boatright@enron.com
## 5322 11837 2272 TO stacie.bohanan@enron.com
## 5323 11838 2272 TO felicia.buenrostro@enron.com
## 5324 11839 2272 TO lesli.campbell@enron.com
## 5325 11840 2272 TO therese.candella@enron.com
## 5326 11841 2272 TO felicia.case@enron.com
## 5327 11842 2272 TO tina.clements@enron.com
## 5328 11843 2272 TO angie.collins@enron.com
## 5329 11844 2272 TO rachel.crowell@enron.com
## 5330 11845 2272 TO bradley.diebner@enron.com
## 5331 11846 2272 TO s..dutton@enron.com
## 5332 11847 2272 TO rebecca.ford@enron.com
## 5333 11848 2272 TO sarita.garza@enron.com
## 5334 11849 2272 TO alisha.guerrero@enron.com
## 5335 11850 2272 TO bert.hernandez@enron.com
## 5336 11852 2272 TO s..johnson@enron.com
## 5337 11853 2272 TO a..johnson@enron.com
## 5338 11854 2272 TO melissa.jones@enron.com
## 5339 11855 2272 TO daryl.kitchen@enron.com
## 5340 11856 2272 TO a..lancaster@enron.com
## 5341 11857 2272 TO dennis.lee@enron.com
## 5342 11858 2272 TO elsie.lew@enron.com
## 5343 11859 2272 TO ruth.mann@enron.com
## 5344 11860 2272 TO george.margoliner@enron.com
## 5345 11861 2272 TO zakiyyah.mcclure@enron.com
## 5346 11862 2272 TO g..moore@enron.com
## 5347 11863 2272 TO emitra.nelson@enron.com
## 5348 11864 2272 TO tam.nguyen@enron.com
## 5349 11865 2272 TO elizabeth.resendiz@enron.com
## 5350 11866 2272 TO chaun.roberts@enron.com
## 5351 11867 2272 TO michelle.robichaux@enron.com
## 5352 11868 2272 TO ramona.rodriguez@enron.com
## 5353 11869 2272 TO pamela.rush@enron.com
## 5354 11870 2272 TO julie.sek@enron.com
## 5355 11871 2272 TO j.smith@enron.com
## 5356 11872 2272 TO n..stewart@enron.com
## 5357 11873 2272 TO sharon.stringfellow@enron.com
## 5358 11874 2272 TO eboni.troupe@enron.com
## 5359 11875 2272 TO chantelle.villanueva@enron.com
## 5360 11876 2272 TO tammie.williams@enron.com
## 5361 11877 2273 TO lillian.villarreal@enron.com
## 5362 11879 2273 CC lesli.campbell@enron.com
## 5363 11880 2273 BCC lesli.campbell@enron.com
## 5364 11881 2274 TO geneva.davis@enron.com
## 5365 11882 2274 TO lesli.campbell@enron.com
## 5366 11883 2274 TO pamela.rush@enron.com
## 5367 11886 2275 TO geneva.davis@enron.com
## 5368 11887 2275 TO gloria.alvarez@enron.com
## 5369 11888 2276 TO geneva.davis@enron.com
## 5370 11891 2278 TO gloria.alvarez@enron.com
## 5371 11892 2278 TO cheryl.arguijo@enron.com
## 5372 11893 2278 TO kristy.armstrong@enron.com
## 5373 11894 2278 TO ladonna.avery@enron.com
## 5374 11895 2278 TO lorraine.becker@enron.com
## 5375 11896 2278 TO debra.blake@enron.com
## 5376 11897 2278 TO lissa.boatright@enron.com
## 5377 11898 2278 TO stacie.bohanan@enron.com
## 5378 11899 2278 TO felicia.buenrostro@enron.com
## 5379 11900 2278 TO lesli.campbell@enron.com
## 5380 11901 2278 TO tina.clements@enron.com
## 5381 11902 2278 TO shannon.cobb@enron.com
## 5382 11903 2278 TO angie.collins@enron.com
## 5383 11904 2278 TO rachel.crowell@enron.com
## 5384 11905 2278 TO geneva.davis@enron.com
## 5385 11906 2278 TO bradley.diebner@enron.com
## 5386 11907 2278 TO s..dutton@enron.com
## 5387 11908 2278 TO rebecca.ford@enron.com
## 5388 11909 2278 TO sarita.garza@enron.com
## 5389 11910 2278 TO alisha.guerrero@enron.com
## 5390 11911 2278 TO bert.hernandez@enron.com
## 5391 11913 2278 TO s..johnson@enron.com
## 5392 11914 2278 TO shelley.johnson@enron.com
## 5393 11915 2278 TO daryl.kitchen@enron.com
## 5394 11916 2278 TO a..lancaster@enron.com
## 5395 11917 2278 TO dennis.lee@enron.com
## 5396 11918 2278 TO elsie.lew@enron.com
## 5397 11919 2278 TO ruth.mann@enron.com
## 5398 11920 2278 TO george.margoliner@enron.com
## 5399 11921 2278 TO zakiyyah.mcclure@enron.com
## 5400 11922 2278 TO teresa.mcomber@enron.com
## 5401 11923 2278 TO g..moore@enron.com
## 5402 11924 2278 TO emitra.nelson@enron.com
## 5403 11925 2278 TO elizabeth.resendiz@enron.com
## 5404 11926 2278 TO chaun.roberts@enron.com
## 5405 11927 2278 TO michelle.robichaux@enron.com
## 5406 11928 2278 TO ramona.rodriguez@enron.com
## 5407 11929 2278 TO pamela.rush@enron.com
## 5408 11930 2278 TO julie.sek@enron.com
## 5409 11931 2278 TO sharon.stringfellow@enron.com
## 5410 11932 2278 TO rosalinda.tijerina@enron.com
## 5411 11933 2278 TO lynn.tippery@enron.com
## 5412 11934 2278 TO eboni.troupe@enron.com
## 5413 11935 2278 TO chantelle.villanueva@enron.com
## 5414 11936 2278 TO lillian.villarreal@enron.com
## 5415 11937 2278 TO tammie.williams@enron.com
## 5416 11938 2279 TO geneva.davis@enron.com
## 5417 11940 2280 TO gloria.alvarez@enron.com
## 5418 11941 2280 TO ladonna.avery@enron.com
## 5419 11942 2280 TO lorraine.becker@enron.com
## 5420 11943 2280 TO stacie.bohanan@enron.com
## 5421 11944 2280 TO felicia.buenrostro@enron.com
## 5422 11945 2280 TO lesli.campbell@enron.com
## 5423 11946 2280 TO alma.carrillo@enron.com
## 5424 11947 2280 TO cynthia.casey@enron.com
## 5425 11948 2280 TO shannon.cobb@enron.com
## 5426 11949 2280 TO geneva.davis@enron.com
## 5427 11950 2280 TO bradley.diebner@enron.com
## 5428 11951 2280 TO s..dutton@enron.com
## 5429 11952 2280 TO rebecca.ford@enron.com
## 5430 11953 2280 TO albert.hernandez@enron.com
## 5431 11955 2280 TO s..johnson@enron.com
## 5432 11956 2280 TO daryl.kitchen@enron.com
## 5433 11957 2280 TO dennis.lee@enron.com
## 5434 11958 2280 TO elsie.lew@enron.com
## 5435 11959 2280 TO ruth.mann@enron.com
## 5436 11960 2280 TO zakiyyah.mcclure@enron.com
## 5437 11961 2280 TO teresa.mcomber@enron.com
## 5438 11962 2280 TO g..moore@enron.com
## 5439 11963 2280 TO emitra.nelson@enron.com
## 5440 11964 2280 TO charla.reese@enron.com
## 5441 11965 2280 TO michelle.robichaux@enron.com
## 5442 11966 2280 TO pamela.rush@enron.com
## 5443 11967 2280 TO missy.stevens@enron.com
## 5444 11968 2280 TO sharon.stringfellow@enron.com
## 5445 11969 2280 TO rosalinda.tijerina@enron.com
## 5446 11970 2280 TO lynn.tippery@enron.com
## 5447 11971 2280 TO lillian.villarreal@enron.com
## 5448 11972 2280 TO sharron.westbrook@enron.com
## 5449 11973 2281 TO lillian.villarreal@enron.com
## 5450 11974 2281 CC teresa.mcomber@enron.com
## 5451 11975 2281 CC geneva.davis@enron.com
## 5452 11977 2281 BCC teresa.mcomber@enron.com
## 5453 11978 2281 BCC geneva.davis@enron.com
## 5454 11981 2282 TO lesli.campbell@enron.com
## 5455 11982 2282 TO lillian.villarreal@enron.com
## 5456 11983 2283 TO geneva.davis@enron.com
## 5457 11984 2283 TO lesli.campbell@enron.com
## 5458 11985 2283 TO albert.hernandez@enron.com
## 5459 11987 2283 TO daryl.kitchen@enron.com
## 5460 11988 2283 TO s..dutton@enron.com
## 5461 11989 2284 TO courtney.barker@enron.com
## 5462 11990 2284 TO bret.fritch@enron.com
## 5463 11991 2284 TO donna.martens@enron.com
## 5464 11992 2284 TO keith.petersen@enron.com
## 5465 11993 2284 TO donald.vignaroli@enron.com
## 5466 11994 2284 TO ken.anderson@enron.com
## 5467 11995 2284 TO doug.aschwege@enron.com
## 5468 11996 2284 TO judy.beck@enron.com
## 5469 11997 2284 TO gary.choquette@enron.com
## 5470 11998 2284 TO carolyn.descoteaux@enron.com
## 5471 11999 2284 TO l..johnson@enron.com
## 5472 12000 2284 TO bryan.reinecke@enron.com
## 5473 12001 2284 TO becki.sans@enron.com
## 5474 12002 2284 TO roger.westfall@enron.com
## 5475 12003 2284 TO gabriel.chavez@enron.com
## 5476 12004 2284 TO stephen.dowd@enron.com
## 5477 12005 2284 TO eric.gadd@enron.com
## 5478 12006 2284 TO elberg.gelin@enron.com
## 5479 12007 2284 TO martin.gonzalez@enron.com
## 5480 12009 2284 TO david.junus@enron.com
## 5481 12010 2284 TO jebong.lee@enron.com
## 5482 12011 2284 TO john.millar@enron.com
## 5483 12012 2284 TO michael.ratner@enron.com
## 5484 12013 2284 TO gina.taylor@enron.com
## 5485 12014 2284 TO glen.hass@enron.com
## 5486 12015 2284 TO michael.loeffler@enron.com
## 5487 12016 2284 TO lon.stanton@enron.com
## 5488 12017 2284 TO rob.wilson@enron.com
## 5489 12018 2284 TO john.dushinske@enron.com
## 5490 12019 2284 TO bill.fowler@enron.com
## 5491 12020 2284 TO kent.miller@enron.com
## 5492 12021 2284 TO dave.neubauer@enron.com
## 5493 12022 2284 TO sue.neville@enron.com
## 5494 12023 2284 TO jo.williams@enron.com
## 5495 12024 2284 TO mike.barry@enron.com
## 5496 12025 2284 TO vicki.berg@enron.com
## 5497 12026 2284 TO sean.bolks@enron.com
## 5498 12027 2284 TO joni.bollinger@enron.com
## 5499 12028 2284 TO janet.bowers@enron.com
## 5500 12029 2284 TO theresa.branney@enron.com
## 5501 12030 2284 TO craig.buehler@enron.com
## 5502 12031 2284 TO bob.burleson@enron.com
## 5503 12032 2284 TO reyna.cabrera@enron.com
## 5504 12033 2284 TO tom.halpin@enron.com
## 5505 12034 2284 TO stephen.herber@enron.com
## 5506 12035 2284 TO martha.janousek@enron.com
## 5507 12036 2284 TO tim.johanson@enron.com
## 5508 12037 2284 TO karen.lagerstrom@enron.com
## 5509 12038 2284 TO laura.lantefield@enron.com
## 5510 12039 2284 TO robert.mason@enron.com
## 5511 12040 2284 TO penny.mccarran@enron.com
## 5512 12041 2284 TO vernon.mercaldo@enron.com
## 5513 12042 2284 TO frank.oldenhuis@enron.com
## 5514 12043 2284 TO larry.pavlou@enron.com
## 5515 12044 2284 TO loren.penkava@enron.com
## 5516 12045 2284 TO john.pritchard@enron.com
## 5517 12046 2284 TO richard.riehm@enron.com
## 5518 12047 2284 TO preston.roobaert@enron.com
## 5519 12048 2284 TO chris.sebesta@enron.com
## 5520 12049 2284 TO frank.semin@enron.com
## 5521 12050 2284 TO g..stage@enron.com
## 5522 12051 2284 TO bob.stevens@enron.com
## 5523 12052 2284 TO vincent.strohmeyer@enron.com
## 5524 12053 2284 TO larry.swett@enron.com
## 5525 12054 2284 TO steve.thomas@enron.com
## 5526 12055 2284 TO kay.threet@enron.com
## 5527 12056 2284 TO lisa.valley@enron.com
## 5528 12057 2284 TO steve.weller@enron.com
## 5529 12058 2284 TO chuck.wilkinson@enron.com
## 5530 12060 2284 TO rick.dietz@enron.com
## 5531 12061 2284 TO steven.january@enron.com
## 5532 12062 2284 TO gerry.medeles@enron.com
## 5533 12063 2284 TO sheila.nacey@enron.com
## 5534 12064 2284 TO donna.scott@enron.com
## 5535 12068 2284 TO w..mcgowan@enron.com
## 5536 12069 2284 TO kay.miller@enron.com
## 5537 12070 2284 TO mike.nelson@enron.com
## 5538 12071 2284 TO rita.bianchi@enron.com
## 5539 12072 2284 TO patrick.brennan@enron.com
## 5540 12073 2284 TO carol.clements@enron.com
## 5541 12074 2284 TO mary.darveaux@enron.com
## 5542 12075 2284 TO steve.kirk@enron.com
## 5543 12076 2284 TO tim.kissner@enron.com
## 5544 12077 2284 TO bob.thurber@enron.com
## 5545 12078 2284 TO michele.winckowski@enron.com
## 5546 12079 2284 TO sarabeth.smith@enron.com
## 5547 12080 2284 TO allen.cohrs@enron.com
## 5548 12081 2284 TO john.fiscus@enron.com
## 5549 12082 2284 TO steve.gilbert@enron.com
## 5550 12083 2284 TO dana.jones@enron.com
## 5551 12084 2284 TO jane.joyce@enron.com
## 5552 12085 2284 TO stephanie.korbelik@enron.com
## 5553 12086 2284 TO don.powell@enron.com
## 5554 12087 2284 TO ken.powers@enron.com
## 5555 12090 2284 TO pallavi.goradia@enron.com
## 5556 12091 2284 TO lorraine.lindberg@enron.com
## 5557 12092 2284 TO tk.lohman@enron.com
## 5558 12094 2284 TO jan.moore@enron.com
## 5559 12095 2284 TO kimberly.watson@enron.com
## 5560 12096 2285 TO no.address@enron.com
## 5561 12097 2286 TO no.address@enron.com
## 5562 12099 2288 TO no.address@enron.com
## 5563 12100 2288 TO no.address@enron.com
## 5564 12101 2288 TO no.address@enron.com
## 5565 12102 2288 TO no.address@enron.com
## 5566 12103 2288 TO no.address@enron.com
## 5567 12104 2288 TO no.address@enron.com
## 5568 12105 2288 TO no.address@enron.com
## 5569 12106 2288 TO no.address@enron.com
## 5570 12107 2288 TO no.address@enron.com
## 5571 12108 2288 TO no.address@enron.com
## 5572 12109 2288 TO no.address@enron.com
## 5573 12110 2288 TO no.address@enron.com
## 5574 12111 2288 TO no.address@enron.com
## 5575 12112 2288 TO no.address@enron.com
## 5576 12113 2288 TO no.address@enron.com
## 5577 12114 2288 TO no.address@enron.com
## 5578 12115 2288 TO no.address@enron.com
## 5579 12116 2288 TO no.address@enron.com
## 5580 12117 2288 TO no.address@enron.com
## 5581 12118 2288 TO no.address@enron.com
## 5582 12119 2288 TO no.address@enron.com
## 5583 12120 2288 TO no.address@enron.com
## 5584 12121 2288 TO no.address@enron.com
## 5585 12122 2288 TO no.address@enron.com
## 5586 12123 2288 TO no.address@enron.com
## 5587 12124 2288 TO no.address@enron.com
## 5588 12125 2288 TO no.address@enron.com
## 5589 12126 2288 TO no.address@enron.com
## 5590 12127 2288 TO no.address@enron.com
## 5591 12128 2288 TO no.address@enron.com
## 5592 12129 2288 TO no.address@enron.com
## 5593 12130 2288 TO no.address@enron.com
## 5594 12131 2288 TO no.address@enron.com
## 5595 12132 2288 TO no.address@enron.com
## 5596 12133 2288 TO no.address@enron.com
## 5597 12134 2288 TO no.address@enron.com
## 5598 12135 2288 TO no.address@enron.com
## 5599 12136 2288 TO steven.p.south@enron.com
## 5600 12137 2288 TO no.address@enron.com
## 5601 12138 2288 TO no.address@enron.com
## 5602 12139 2288 TO no.address@enron.com
## 5603 12140 2288 TO no.address@enron.com
## 5604 12141 2288 TO no.address@enron.com
## 5605 12142 2288 TO no.address@enron.com
## 5606 12143 2288 TO no.address@enron.com
## 5607 12144 2289 TO scott.affelt@enron.com
## 5608 12145 2289 TO matthew.arnold@enron.com
## 5609 12146 2289 TO c..aucoin@enron.com
## 5610 12147 2289 TO jeff.bartlett@enron.com
## 5611 12148 2289 TO alan.behrens@enron.com
## 5612 12149 2289 TO moises.benchluch@enron.com
## 5613 12150 2289 TO ken.berryman@enron.com
## 5614 12151 2289 TO ken.berryman@enron.com
## 5615 12152 2289 TO jody.blackburn@enron.com
## 5616 12153 2289 TO tom.blanks@enron.com
## 5617 12154 2289 TO wilma.bleshman@enron.com
## 5618 12155 2289 TO eric.boyt@enron.com
## 5619 12156 2289 TO daniel.brown@enron.com
## 5620 12157 2289 TO dan.bunch@enron.com
## 5621 12158 2289 TO colin.carlsen@enron.com
## 5622 12159 2289 TO tom.chapman@enron.com
## 5623 12160 2289 TO elena.chilkina@enron.com
## 5624 12161 2289 TO greg.couch@enron.com
## 5625 12162 2289 TO bob.crane@enron.com
## 5626 12164 2289 TO samir.datta@enron.com
## 5627 12165 2289 TO george.davis@enron.com
## 5628 12166 2289 TO ryan.deane@enron.com
## 5629 12167 2289 TO joseph.deffner@enron.com
## 5630 12168 2289 TO troy.denetsosie@enron.com
## 5631 12169 2289 TO louis.dicarlo@enron.com
## 5632 12170 2289 TO cheryl.erickson@enron.com
## 5633 12171 2289 TO brian.falik@enron.com
## 5634 12172 2289 TO kenneth.farrar@enron.com
## 5635 12173 2289 TO suzanne.franco@enron.com
## 5636 12174 2289 TO l..funk@enron.com
## 5637 12175 2289 TO n..gilbert@enron.com
## 5638 12176 2289 TO a..gomez@enron.com
## 5639 12177 2289 TO james.grace@enron.com
## 5640 12178 2289 TO april.gregory@enron.com
## 5641 12179 2289 TO paul.gregory@enron.com
## 5642 12180 2289 TO jaime.gualy@enron.com
## 5643 12181 2289 TO jaime.gualy@enron.com
## 5644 12182 2289 TO amar.gupta@enron.com
## 5645 12183 2289 TO gautam.gupta@enron.com
## 5646 12184 2289 TO sanjay.hemani@enron.com
## 5647 12186 2289 TO eric.irani@enron.com
## 5648 12187 2289 TO eric.irani@enron.com
## 5649 12188 2289 TO cindy.irvin@enron.com
## 5650 12189 2289 TO steve.irvin@enron.com
## 5651 12190 2289 TO oliver.jones@enron.com
## 5652 12191 2289 TO jeffrey.keenan@enron.com
## 5653 12192 2289 TO andy.kelemen@enron.com
## 5654 12193 2289 TO l..kennedy@enron.com
## 5655 12194 2289 TO duong.kim@enron.com
## 5656 12195 2289 TO mina.kim@enron.com
## 5657 12196 2289 TO harry.kingerski@enron.com
## 5658 12197 2289 TO mark.knippa@enron.com
## 5659 12198 2289 TO jay.knoblauh@enron.com
## 5660 12199 2289 TO heather.kroll@enron.com
## 5661 12200 2289 TO elizabeth.linnell@enron.com
## 5662 12201 2289 TO laura.luce@enron.com
## 5663 12202 2289 TO steven.luong@enron.com
## 5664 12203 2289 TO chris.mallory@enron.com
## 5665 12204 2289 TO george.mcclellan@enron.com
## 5666 12207 2289 TO ed.mcmichael@enron.com
## 5667 12208 2289 TO chris.meyer@enron.com
## 5668 12209 2289 TO vince.middleton@enron.com
## 5669 12210 2289 TO narsimha.misra@enron.com
## 5670 12211 2289 TO fred.mitro@enron.com
## 5671 12212 2289 TO carolyn.moore@enron.com
## 5672 12213 2289 TO brad.morse@enron.com
## 5673 12214 2289 TO victor.munoz@enron.com
## 5674 12215 2289 TO liqun.pan@enron.com
## 5675 12216 2289 TO mona.parikh@enron.com
## 5676 12217 2289 TO mona.parikh@enron.com
## 5677 12218 2289 TO matthew.paynter@enron.com
## 5678 12219 2289 TO gregg.penman@enron.com
## 5679 12220 2289 TO marc.phillips@enron.com
## 5680 12221 2289 TO joseph.piotrowski@enron.com
## 5681 12222 2289 TO denver.plachy@enron.com
## 5682 12223 2289 TO stephen.plauche@enron.com
## 5683 12224 2289 TO s..pollan@enron.com
## 5684 12225 2289 TO jim.pritchert@enron.com
## 5685 12226 2289 TO christopher.riley@enron.com
## 5686 12229 2289 TO judith.schlesinger@enron.com
## 5687 12230 2289 TO don.schroeder@enron.com
## 5688 12231 2289 TO a..schroeder@enron.com
## 5689 12232 2289 TO doug.sewell@enron.com
## 5690 12233 2289 TO paul.shoemaker@enron.com
## 5691 12234 2289 TO john.suarez@enron.com
## 5692 12235 2289 TO scott.tackett@enron.com
## 5693 12236 2289 TO tony.thomas@enron.com
## 5694 12237 2289 TO timothy.thomas@enron.com
## 5695 12238 2289 TO yuan.tian@enron.com
## 5696 12239 2289 TO richard.tomaski@enron.com
## 5697 12240 2289 TO greg.trefz@enron.com
## 5698 12241 2289 TO sunil.vaze@enron.com
## 5699 12242 2289 TO rocco.vita@enron.com
## 5700 12243 2289 TO christopher.watts@enron.com
## 5701 12244 2289 TO samuel.wehn@enron.com
## 5702 12245 2289 TO jeffery.williams@enron.com
## 5703 12246 2289 TO cristina.zavala@enron.com
## 5704 12247 2289 CC stephen.harrington@enron.com
## 5705 12248 2289 CC roy.hartstein@enron.com
## 5706 12249 2289 BCC stephen.harrington@enron.com
## 5707 12250 2289 BCC roy.hartstein@enron.com
## 5708 12252 2291 TO lippmanc@aol.com
## 5709 12255 2292 TO pallavi.goradia@enron.com
## 5710 12256 2292 TO lorraine.lindberg@enron.com
## 5711 12257 2292 TO tk.lohman@enron.com
## 5712 12259 2292 TO mark.mcconnell@enron.com
## 5713 12260 2292 TO jan.moore@enron.com
## 5714 12261 2292 TO kimberly.watson@enron.com
## 5715 12263 2292 TO lee.huber@enron.com
## 5716 12264 2292 TO tony.pryor@enron.com
## 5717 12265 2292 TO stephen.dowd@enron.com
## 5718 12266 2292 TO eric.gadd@enron.com
## 5719 12268 2292 TO john.millar@enron.com
## 5720 12269 2292 TO michael.ratner@enron.com
## 5721 12270 2293 TO loretta.mcgowan@enron.com
## 5722 12271 2293 TO stephen.dowd@enron.com
## 5723 12272 2293 TO eric.gadd@enron.com
## 5724 12274 2293 TO john.millar@enron.com
## 5725 12275 2293 TO michael.ratner@enron.com
## 5726 12276 2293 TO glen.hass@enron.com
## 5727 12277 2293 TO michael.loeffler@enron.com
## 5728 12278 2293 TO lon.stanton@enron.com
## 5729 12279 2293 TO rob.wilson@enron.com
## 5730 12280 2293 TO john.dushinske@enron.com
## 5731 12281 2293 TO bill.fowler@enron.com
## 5732 12282 2293 TO kent.miller@enron.com
## 5733 12283 2293 TO dave.neubauer@enron.com
## 5734 12284 2293 TO sue.neville@enron.com
## 5735 12285 2293 TO jo.williams@enron.com
## 5736 12286 2293 TO mike.barry@enron.com
## 5737 12287 2293 TO vicki.berg@enron.com
## 5738 12288 2293 TO sean.bolks@enron.com
## 5739 12289 2293 TO joni.bollinger@enron.com
## 5740 12290 2293 TO janet.bowers@enron.com
## 5741 12291 2293 TO craig.buehler@enron.com
## 5742 12292 2293 TO bob.burleson@enron.com
## 5743 12293 2293 TO reyna.cabrera@enron.com
## 5744 12294 2293 TO tom.halpin@enron.com
## 5745 12295 2293 TO stephen.herber@enron.com
## 5746 12296 2293 TO martha.janousek@enron.com
## 5747 12297 2293 TO tim.johanson@enron.com
## 5748 12298 2293 TO karen.lagerstrom@enron.com
## 5749 12299 2293 TO laura.lantefield@enron.com
## 5750 12300 2293 TO robert.mason@enron.com
## 5751 12301 2293 TO penny.mccarran@enron.com
## 5752 12302 2293 TO vernon.mercaldo@enron.com
## 5753 12303 2293 TO frank.oldenhuis@enron.com
## 5754 12304 2293 TO larry.pavlou@enron.com
## 5755 12305 2293 TO loren.penkava@enron.com
## 5756 12306 2293 TO john.pritchard@enron.com
## 5757 12307 2293 TO richard.riehm@enron.com
## 5758 12308 2293 TO preston.roobaert@enron.com
## 5759 12309 2293 TO chris.sebesta@enron.com
## 5760 12310 2293 TO frank.semin@enron.com
## 5761 12311 2293 TO g..stage@enron.com
## 5762 12312 2293 TO bob.stevens@enron.com
## 5763 12313 2293 TO vincent.strohmeyer@enron.com
## 5764 12314 2293 TO steve.thomas@enron.com
## 5765 12315 2293 TO kay.threet@enron.com
## 5766 12316 2293 TO lisa.valley@enron.com
## 5767 12317 2293 TO steve.weller@enron.com
## 5768 12318 2293 TO chuck.wilkinson@enron.com
## 5769 12319 2293 TO courtney.barker@enron.com
## 5770 12320 2293 TO w..mcgowan@enron.com
## 5771 12322 2293 TO rick.dietz@enron.com
## 5772 12323 2293 TO steve.january@enron.com
## 5773 12324 2293 TO gerry.medeles@enron.com
## 5774 12325 2293 TO sheila.nacey@enron.com
## 5775 12326 2293 TO donna.scott@enron.com
## 5776 12327 2293 TO randy.rice@enron.com
## 5777 12328 2293 TO sarabeth.smith@enron.com
## 5778 12329 2293 TO allen.cohrs@enron.com
## 5779 12330 2293 TO john.fiscus@enron.com
## 5780 12331 2293 TO steve.gilbert@enron.com
## 5781 12332 2293 TO dana.jones@enron.com
## 5782 12333 2293 TO jane.joyce@enron.com
## 5783 12334 2293 TO stephanie.korbelik@enron.com
## 5784 12335 2293 TO don.powell@enron.com
## 5785 12336 2293 TO ken.powers@enron.com
## 5786 12339 2293 TO pallavi.goradia@enron.com
## 5787 12340 2293 TO lorraine.lindberg@enron.com
## 5788 12341 2293 TO tk.lohman@enron.com
## 5789 12343 2293 TO mark.mcconnell@enron.com
## 5790 12344 2293 TO jan.moore@enron.com
## 5791 12345 2293 TO kimberly.watson@enron.com
## 5792 12348 2295 TO glen.hass@enron.com
## 5793 12349 2295 TO gabriel.chavez@enron.com
## 5794 12350 2295 TO v.dickerson@enron.com
## 5795 12351 2295 TO stephen.dowd@enron.com
## 5796 12352 2295 TO eric.gadd@enron.com
## 5797 12353 2295 TO elberg.gelin@enron.com
## 5798 12354 2295 TO martin.gonzalez@enron.com
## 5799 12356 2295 TO david.junus@enron.com
## 5800 12357 2295 TO jebong.lee@enron.com
## 5801 12358 2295 TO john.millar@enron.com
## 5802 12359 2295 TO michael.ratner@enron.com
## 5803 12362 2295 TO pallavi.goradia@enron.com
## 5804 12363 2295 TO lorraine.lindberg@enron.com
## 5805 12364 2295 TO tk.lohman@enron.com
## 5806 12366 2295 TO mark.mcconnell@enron.com
## 5807 12367 2295 TO jan.moore@enron.com
## 5808 12368 2295 TO kimberly.watson@enron.com
## 5809 12370 2295 TO lee.huber@enron.com
## 5810 12371 2295 TO tony.pryor@enron.com
## 5811 12372 2295 TO w..mcgowan@enron.com
## 5812 12373 2296 TO All Enron Worldwide@ENRON
## 5813 12374 2297 TO lippmanc@aol.com
## 5814 12375 2298 TO v.dickerson@enron.com
## 5815 12376 2298 TO gabriel.chavez@enron.com
## 5816 12377 2298 TO stephen.dowd@enron.com
## 5817 12378 2298 TO eric.gadd@enron.com
## 5818 12379 2298 TO elberg.gelin@enron.com
## 5819 12380 2298 TO martin.gonzalez@enron.com
## 5820 12382 2298 TO david.junus@enron.com
## 5821 12383 2298 TO jebong.lee@enron.com
## 5822 12384 2298 TO john.millar@enron.com
## 5823 12385 2298 TO michael.ratner@enron.com
## 5824 12386 2299 TO courtney.barker@enron.com
## 5825 12387 2299 TO ken.anderson@enron.com
## 5826 12388 2299 TO doug.aschwege@enron.com
## 5827 12389 2299 TO judy.beck@enron.com
## 5828 12390 2299 TO gary.choquette@enron.com
## 5829 12391 2299 TO carolyn.descoteaux@enron.com
## 5830 12392 2299 TO l..johnson@enron.com
## 5831 12393 2299 TO bryan.reinecke@enron.com
## 5832 12394 2299 TO becki.sans@enron.com
## 5833 12395 2299 TO roger.westfall@enron.com
## 5834 12396 2299 TO gabriel.chavez@enron.com
## 5835 12397 2299 TO eric.gadd@enron.com
## 5836 12399 2299 TO john.millar@enron.com
## 5837 12400 2299 TO michael.ratner@enron.com
## 5838 12401 2299 TO glen.hass@enron.com
## 5839 12402 2299 TO michael.loeffler@enron.com
## 5840 12403 2299 TO lon.stanton@enron.com
## 5841 12404 2299 TO rob.wilson@enron.com
## 5842 12405 2299 TO john.dushinske@enron.com
## 5843 12406 2299 TO bill.fowler@enron.com
## 5844 12407 2299 TO kent.miller@enron.com
## 5845 12408 2299 TO dave.neubauer@enron.com
## 5846 12409 2299 TO sue.neville@enron.com
## 5847 12410 2299 TO jo.williams@enron.com
## 5848 12411 2299 TO mike.barry@enron.com
## 5849 12412 2299 TO vicki.berg@enron.com
## 5850 12413 2299 TO sean.bolks@enron.com
## 5851 12414 2299 TO joni.bollinger@enron.com
## 5852 12415 2299 TO janet.bowers@enron.com
## 5853 12416 2299 TO theresa.branney@enron.com
## 5854 12417 2299 TO craig.buehler@enron.com
## 5855 12418 2299 TO bob.burleson@enron.com
## 5856 12419 2299 TO reyna.cabrera@enron.com
## 5857 12420 2299 TO lee.ferrell@enron.com
## 5858 12421 2299 TO tom.halpin@enron.com
## 5859 12422 2299 TO stephen.herber@enron.com
## 5860 12423 2299 TO martha.janousek@enron.com
## 5861 12424 2299 TO tim.johanson@enron.com
## 5862 12425 2299 TO jane.joyce@enron.com
## 5863 12426 2299 TO karen.lagerstrom@enron.com
## 5864 12427 2299 TO laura.lantefield@enron.com
## 5865 12428 2299 TO robert.mason@enron.com
## 5866 12429 2299 TO penny.mccarran@enron.com
## 5867 12430 2299 TO vernon.mercaldo@enron.com
## 5868 12431 2299 TO jeff.nielsen@enron.com
## 5869 12432 2299 TO frank.oldenhuis@enron.com
## 5870 12433 2299 TO larry.pavlou@enron.com
## 5871 12434 2299 TO loren.penkava@enron.com
## 5872 12435 2299 TO john.pritchard@enron.com
## 5873 12436 2299 TO preston.roobaert@enron.com
## 5874 12437 2299 TO chris.sebesta@enron.com
## 5875 12438 2299 TO frank.semin@enron.com
## 5876 12439 2299 TO g..stage@enron.com
## 5877 12440 2299 TO bob.stevens@enron.com
## 5878 12441 2299 TO larry.swett@enron.com
## 5879 12442 2299 TO steve.thomas@enron.com
## 5880 12443 2299 TO kay.threet@enron.com
## 5881 12444 2299 TO lisa.valley@enron.com
## 5882 12445 2299 TO steve.weller@enron.com
## 5883 12446 2299 TO chuck.wilkinson@enron.com
## 5884 12447 2299 TO w..mcgowan@enron.com
## 5885 12448 2299 TO david.marye@enron.com
## 5886 12449 2299 TO sarabeth.smith@enron.com
## 5887 12450 2299 TO allen.cohrs@enron.com
## 5888 12451 2299 TO john.fiscus@enron.com
## 5889 12452 2299 TO steve.gilbert@enron.com
## 5890 12453 2299 TO dana.jones@enron.com
## 5891 12454 2299 TO stephanie.korbelik@enron.com
## 5892 12455 2299 TO don.powell@enron.com
## 5893 12456 2299 TO ken.powers@enron.com
## 5894 12459 2299 TO pallavi.goradia@enron.com
## 5895 12460 2299 TO lorraine.lindberg@enron.com
## 5896 12461 2299 TO tk.lohman@enron.com
## 5897 12463 2299 TO jan.moore@enron.com
## 5898 12464 2299 TO kimberly.watson@enron.com
## 5899 12466 2301 TO kay.miller@enron.com
## 5900 12467 2301 TO robert.kilmer@enron.com
## 5901 12471 2301 TO lorraine.lindberg@enron.com
## 5902 12472 2301 TO tk.lohman@enron.com
## 5903 12474 2301 TO jan.moore@enron.com
## 5904 12475 2301 TO kimberly.watson@enron.com
## 5905 12476 2302 TO courtney.barker@enron.com
## 5906 12477 2302 TO ken.anderson@enron.com
## 5907 12478 2302 TO doug.aschwege@enron.com
## 5908 12479 2302 TO judy.beck@enron.com
## 5909 12480 2302 TO gary.choquette@enron.com
## 5910 12481 2302 TO carolyn.descoteaux@enron.com
## 5911 12482 2302 TO l..johnson@enron.com
## 5912 12483 2302 TO bryan.reinecke@enron.com
## 5913 12484 2302 TO becki.sans@enron.com
## 5914 12485 2302 TO roger.westfall@enron.com
## 5915 12486 2302 TO gabriel.chavez@enron.com
## 5916 12487 2302 TO stephen.dowd@enron.com
## 5917 12488 2302 TO eric.gadd@enron.com
## 5918 12490 2302 TO john.millar@enron.com
## 5919 12491 2302 TO michael.ratner@enron.com
## 5920 12492 2302 TO gina.taylor@enron.com
## 5921 12493 2302 TO glen.hass@enron.com
## 5922 12494 2302 TO michael.loeffler@enron.com
## 5923 12495 2302 TO lon.stanton@enron.com
## 5924 12496 2302 TO rob.wilson@enron.com
## 5925 12497 2302 TO john.dushinske@enron.com
## 5926 12498 2302 TO bill.fowler@enron.com
## 5927 12499 2302 TO kent.miller@enron.com
## 5928 12500 2302 TO dave.neubauer@enron.com
## 5929 12501 2302 TO sue.neville@enron.com
## 5930 12502 2302 TO jo.williams@enron.com
## 5931 12503 2302 TO mike.barry@enron.com
## 5932 12504 2302 TO vicki.berg@enron.com
## 5933 12505 2302 TO sean.bolks@enron.com
## 5934 12506 2302 TO joni.bollinger@enron.com
## 5935 12507 2302 TO janet.bowers@enron.com
## 5936 12508 2302 TO theresa.branney@enron.com
## 5937 12509 2302 TO craig.buehler@enron.com
## 5938 12510 2302 TO bob.burleson@enron.com
## 5939 12511 2302 TO reyna.cabrera@enron.com
## 5940 12512 2302 TO lee.ferrell@enron.com
## 5941 12513 2302 TO tom.halpin@enron.com
## 5942 12514 2302 TO stephen.herber@enron.com
## 5943 12515 2302 TO martha.janousek@enron.com
## 5944 12516 2302 TO tim.johanson@enron.com
## 5945 12517 2302 TO jane.joyce@enron.com
## 5946 12518 2302 TO karen.lagerstrom@enron.com
## 5947 12519 2302 TO laura.lantefield@enron.com
## 5948 12520 2302 TO robert.mason@enron.com
## 5949 12521 2302 TO penny.mccarran@enron.com
## 5950 12522 2302 TO vernon.mercaldo@enron.com
## 5951 12523 2302 TO jeff.nielsen@enron.com
## 5952 12524 2302 TO frank.oldenhuis@enron.com
## 5953 12525 2302 TO larry.pavlou@enron.com
## 5954 12526 2302 TO loren.penkava@enron.com
## 5955 12527 2302 TO john.pritchard@enron.com
## 5956 12528 2302 TO preston.roobaert@enron.com
## 5957 12529 2302 TO chris.sebesta@enron.com
## 5958 12530 2302 TO frank.semin@enron.com
## 5959 12531 2302 TO g..stage@enron.com
## 5960 12532 2302 TO bob.stevens@enron.com
## 5961 12533 2302 TO larry.swett@enron.com
## 5962 12534 2302 TO steve.thomas@enron.com
## 5963 12535 2302 TO kay.threet@enron.com
## 5964 12536 2302 TO lisa.valley@enron.com
## 5965 12537 2302 TO steve.weller@enron.com
## 5966 12538 2302 TO chuck.wilkinson@enron.com
## 5967 12540 2302 TO rick.dietz@enron.com
## 5968 12541 2302 TO steven.january@enron.com
## 5969 12542 2302 TO sheila.nacey@enron.com
## 5970 12543 2302 TO donna.scott@enron.com
## 5971 12544 2302 TO w..mcgowan@enron.com
## 5972 12545 2302 TO david.marye@enron.com
## 5973 12546 2302 TO sarabeth.smith@enron.com
## 5974 12548 2302 TO allen.cohrs@enron.com
## 5975 12549 2302 TO john.fiscus@enron.com
## 5976 12550 2302 TO steve.gilbert@enron.com
## 5977 12551 2302 TO dana.jones@enron.com
## 5978 12552 2302 TO stephanie.korbelik@enron.com
## 5979 12553 2302 TO don.powell@enron.com
## 5980 12554 2302 TO ken.powers@enron.com
## 5981 12557 2302 TO pallavi.goradia@enron.com
## 5982 12558 2302 TO lorraine.lindberg@enron.com
## 5983 12559 2302 TO tk.lohman@enron.com
## 5984 12561 2302 TO jan.moore@enron.com
## 5985 12562 2302 TO kimberly.watson@enron.com
## 5986 12565 2303 TO kimberly.watson@enron.com
## 5987 12566 2303 TO tk.lohman@enron.com
## 5988 12567 2303 TO ramona.betancourt@enron.com
## 5989 12568 2304 TO courtney.barker@enron.com
## 5990 12569 2304 TO josie.call@enron.com
## 5991 12570 2304 TO bret.fritch@enron.com
## 5992 12571 2304 TO donna.martens@enron.com
## 5993 12572 2304 TO keith.petersen@enron.com
## 5994 12573 2304 TO donald.vignaroli@enron.com
## 5995 12574 2304 TO michele.winckowski@enron.com
## 5996 12575 2304 TO ken.anderson@enron.com
## 5997 12576 2304 TO doug.aschwege@enron.com
## 5998 12577 2304 TO judy.beck@enron.com
## 5999 12578 2304 TO gary.choquette@enron.com
## 6000 12579 2304 TO carolyn.descoteaux@enron.com
## 6001 12580 2304 TO l..johnson@enron.com
## 6002 12581 2304 TO bryan.reinecke@enron.com
## 6003 12582 2304 TO becki.sans@enron.com
## 6004 12583 2304 TO roger.westfall@enron.com
## 6005 12584 2304 TO gabriel.chavez@enron.com
## 6006 12585 2304 TO eric.gadd@enron.com
## 6007 12587 2304 TO john.millar@enron.com
## 6008 12588 2304 TO michael.ratner@enron.com
## 6009 12589 2304 TO glen.hass@enron.com
## 6010 12590 2304 TO michael.loeffler@enron.com
## 6011 12591 2304 TO lon.stanton@enron.com
## 6012 12592 2304 TO rob.wilson@enron.com
## 6013 12593 2304 TO john.dushinske@enron.com
## 6014 12594 2304 TO bill.fowler@enron.com
## 6015 12595 2304 TO kent.miller@enron.com
## 6016 12596 2304 TO dave.neubauer@enron.com
## 6017 12597 2304 TO sue.neville@enron.com
## 6018 12598 2304 TO jo.williams@enron.com
## 6019 12599 2304 TO mike.barry@enron.com
## 6020 12600 2304 TO vicki.berg@enron.com
## 6021 12601 2304 TO sean.bolks@enron.com
## 6022 12602 2304 TO joni.bollinger@enron.com
## 6023 12603 2304 TO janet.bowers@enron.com
## 6024 12604 2304 TO theresa.branney@enron.com
## 6025 12605 2304 TO craig.buehler@enron.com
## 6026 12606 2304 TO bob.burleson@enron.com
## 6027 12607 2304 TO reyna.cabrera@enron.com
## 6028 12608 2304 TO lee.ferrell@enron.com
## 6029 12609 2304 TO tom.halpin@enron.com
## 6030 12610 2304 TO stephen.herber@enron.com
## 6031 12611 2304 TO martha.janousek@enron.com
## 6032 12612 2304 TO tim.johanson@enron.com
## 6033 12613 2304 TO jane.joyce@enron.com
## 6034 12614 2304 TO karen.lagerstrom@enron.com
## 6035 12615 2304 TO laura.lantefield@enron.com
## 6036 12616 2304 TO robert.mason@enron.com
## 6037 12617 2304 TO penny.mccarran@enron.com
## 6038 12618 2304 TO vernon.mercaldo@enron.com
## 6039 12619 2304 TO jeff.nielsen@enron.com
## 6040 12620 2304 TO frank.oldenhuis@enron.com
## 6041 12621 2304 TO larry.pavlou@enron.com
## 6042 12622 2304 TO loren.penkava@enron.com
## 6043 12623 2304 TO john.pritchard@enron.com
## 6044 12624 2304 TO preston.roobaert@enron.com
## 6045 12625 2304 TO chris.sebesta@enron.com
## 6046 12626 2304 TO frank.semin@enron.com
## 6047 12627 2304 TO g..stage@enron.com
## 6048 12628 2304 TO bob.stevens@enron.com
## 6049 12629 2304 TO larry.swett@enron.com
## 6050 12630 2304 TO steve.thomas@enron.com
## 6051 12631 2304 TO kay.threet@enron.com
## 6052 12632 2304 TO lisa.valley@enron.com
## 6053 12633 2304 TO steve.weller@enron.com
## 6054 12634 2304 TO chuck.wilkinson@enron.com
## 6055 12636 2304 TO rick.dietz@enron.com
## 6056 12637 2304 TO steven.january@enron.com
## 6057 12638 2304 TO sheila.nacey@enron.com
## 6058 12639 2304 TO donna.scott@enron.com
## 6059 12640 2304 TO dari.dornan@enron.com
## 6060 12641 2304 TO maria.pavlou@enron.com
## 6061 12642 2304 TO j..porter@enron.com
## 6062 12643 2304 TO jim.talcott@enron.com
## 6063 12647 2304 TO w..mcgowan@enron.com
## 6064 12648 2304 TO kay.miller@enron.com
## 6065 12649 2304 TO michel.nelson@enron.com
## 6066 12650 2304 TO rita.bianchi@enron.com
## 6067 12651 2304 TO patrick.brennan@enron.com
## 6068 12652 2304 TO mary.darveaux@enron.com
## 6069 12653 2304 TO steve.kirk@enron.com
## 6070 12654 2304 TO tim.kissner@enron.com
## 6071 12655 2304 TO ranelle.paladino@enron.com
## 6072 12656 2304 TO david.marye@enron.com
## 6073 12657 2304 TO sarabeth.smith@enron.com
## 6074 12658 2304 TO allen.cohrs@enron.com
## 6075 12659 2304 TO john.fiscus@enron.com
## 6076 12660 2304 TO steve.gilbert@enron.com
## 6077 12661 2304 TO dana.jones@enron.com
## 6078 12662 2304 TO stephanie.korbelik@enron.com
## 6079 12663 2304 TO don.powell@enron.com
## 6080 12664 2304 TO ken.powers@enron.com
## 6081 12667 2304 TO pallavi.goradia@enron.com
## 6082 12668 2304 TO lorraine.lindberg@enron.com
## 6083 12669 2304 TO tk.lohman@enron.com
## 6084 12671 2304 TO jan.moore@enron.com
## 6085 12672 2304 TO kimberly.watson@enron.com
## 6086 12673 2304 TO lee.huber@enron.com
## 6087 12674 2304 TO tony.pryor@enron.com
## 6088 12675 2305 TO courtney.barker@enron.com
## 6089 12676 2305 TO eric.gadd@enron.com
## 6090 12678 2305 TO john.millar@enron.com
## 6091 12679 2305 TO michael.ratner@enron.com
## 6092 12680 2305 TO glen.hass@enron.com
## 6093 12681 2305 TO michael.loeffler@enron.com
## 6094 12682 2305 TO lon.stanton@enron.com
## 6095 12683 2305 TO rob.wilson@enron.com
## 6096 12684 2305 TO john.dushinske@enron.com
## 6097 12685 2305 TO bill.fowler@enron.com
## 6098 12686 2305 TO kent.miller@enron.com
## 6099 12687 2305 TO dave.neubauer@enron.com
## 6100 12688 2305 TO sue.neville@enron.com
## 6101 12689 2305 TO jo.williams@enron.com
## 6102 12690 2305 TO mike.barry@enron.com
## 6103 12691 2305 TO vicki.berg@enron.com
## 6104 12692 2305 TO sean.bolks@enron.com
## 6105 12693 2305 TO joni.bollinger@enron.com
## 6106 12694 2305 TO janet.bowers@enron.com
## 6107 12695 2305 TO theresa.branney@enron.com
## 6108 12696 2305 TO craig.buehler@enron.com
## 6109 12697 2305 TO bob.burleson@enron.com
## 6110 12698 2305 TO reyna.cabrera@enron.com
## 6111 12699 2305 TO lee.ferrell@enron.com
## 6112 12700 2305 TO tom.halpin@enron.com
## 6113 12701 2305 TO stephen.herber@enron.com
## 6114 12702 2305 TO martha.janousek@enron.com
## 6115 12703 2305 TO tim.johanson@enron.com
## 6116 12704 2305 TO jane.joyce@enron.com
## 6117 12705 2305 TO karen.lagerstrom@enron.com
## 6118 12706 2305 TO laura.lantefield@enron.com
## 6119 12707 2305 TO robert.mason@enron.com
## 6120 12708 2305 TO penny.mccarran@enron.com
## 6121 12709 2305 TO vernon.mercaldo@enron.com
## 6122 12710 2305 TO jeff.nielsen@enron.com
## 6123 12711 2305 TO frank.oldenhuis@enron.com
## 6124 12712 2305 TO larry.pavlou@enron.com
## 6125 12713 2305 TO loren.penkava@enron.com
## 6126 12714 2305 TO john.pritchard@enron.com
## 6127 12715 2305 TO preston.roobaert@enron.com
## 6128 12716 2305 TO chris.sebesta@enron.com
## 6129 12717 2305 TO frank.semin@enron.com
## 6130 12718 2305 TO g..stage@enron.com
## 6131 12719 2305 TO bob.stevens@enron.com
## 6132 12720 2305 TO larry.swett@enron.com
## 6133 12721 2305 TO steve.thomas@enron.com
## 6134 12722 2305 TO kay.threet@enron.com
## 6135 12723 2305 TO lisa.valley@enron.com
## 6136 12724 2305 TO steve.weller@enron.com
## 6137 12725 2305 TO chuck.wilkinson@enron.com
## 6138 12726 2305 TO w..mcgowan@enron.com
## 6139 12728 2305 TO rick.dietz@enron.com
## 6140 12729 2305 TO steven.january@enron.com
## 6141 12730 2305 TO sheila.nacey@enron.com
## 6142 12731 2305 TO donna.scott@enron.com
## 6143 12732 2305 TO david.marye@enron.com
## 6144 12733 2305 TO sarabeth.smith@enron.com
## 6145 12735 2305 TO allen.cohrs@enron.com
## 6146 12736 2305 TO john.fiscus@enron.com
## 6147 12737 2305 TO steve.gilbert@enron.com
## 6148 12738 2305 TO dana.jones@enron.com
## 6149 12739 2305 TO stephanie.korbelik@enron.com
## 6150 12740 2305 TO don.powell@enron.com
## 6151 12741 2305 TO ken.powers@enron.com
## 6152 12744 2305 TO pallavi.goradia@enron.com
## 6153 12745 2305 TO lorraine.lindberg@enron.com
## 6154 12746 2305 TO tk.lohman@enron.com
## 6155 12748 2305 TO jan.moore@enron.com
## 6156 12749 2305 TO kimberly.watson@enron.com
## 6157 12750 2305 TO lee.huber@enron.com
## 6158 12751 2305 TO susan.scott@enron.com
## 6159 12754 2306 TO tk.lohman@enron.com
## 6160 12755 2307 TO courtney.barker@enron.com
## 6161 12756 2307 TO ken.anderson@enron.com
## 6162 12757 2307 TO doug.aschwege@enron.com
## 6163 12758 2307 TO judy.beck@enron.com
## 6164 12759 2307 TO gary.choquette@enron.com
## 6165 12760 2307 TO carolyn.descoteaux@enron.com
## 6166 12761 2307 TO l..johnson@enron.com
## 6167 12762 2307 TO bryan.reinecke@enron.com
## 6168 12763 2307 TO becki.sans@enron.com
## 6169 12764 2307 TO roger.westfall@enron.com
## 6170 12765 2307 TO gabriel.chavez@enron.com
## 6171 12766 2307 TO eric.gadd@enron.com
## 6172 12768 2307 TO john.millar@enron.com
## 6173 12769 2307 TO michael.ratner@enron.com
## 6174 12770 2307 TO glen.hass@enron.com
## 6175 12771 2307 TO michael.loeffler@enron.com
## 6176 12772 2307 TO lon.stanton@enron.com
## 6177 12773 2307 TO rob.wilson@enron.com
## 6178 12774 2307 TO john.dushinske@enron.com
## 6179 12775 2307 TO bill.fowler@enron.com
## 6180 12776 2307 TO kent.miller@enron.com
## 6181 12777 2307 TO dave.neubauer@enron.com
## 6182 12778 2307 TO sue.neville@enron.com
## 6183 12779 2307 TO jo.williams@enron.com
## 6184 12780 2307 TO mike.barry@enron.com
## 6185 12781 2307 TO vicki.berg@enron.com
## 6186 12782 2307 TO sean.bolks@enron.com
## 6187 12783 2307 TO joni.bollinger@enron.com
## 6188 12784 2307 TO janet.bowers@enron.com
## 6189 12785 2307 TO theresa.branney@enron.com
## 6190 12786 2307 TO craig.buehler@enron.com
## 6191 12787 2307 TO bob.burleson@enron.com
## 6192 12788 2307 TO reyna.cabrera@enron.com
## 6193 12789 2307 TO lee.ferrell@enron.com
## 6194 12790 2307 TO tom.halpin@enron.com
## 6195 12791 2307 TO stephen.herber@enron.com
## 6196 12792 2307 TO martha.janousek@enron.com
## 6197 12793 2307 TO tim.johanson@enron.com
## 6198 12794 2307 TO jane.joyce@enron.com
## 6199 12795 2307 TO karen.lagerstrom@enron.com
## 6200 12796 2307 TO laura.lantefield@enron.com
## 6201 12797 2307 TO robert.mason@enron.com
## 6202 12798 2307 TO penny.mccarran@enron.com
## 6203 12799 2307 TO vernon.mercaldo@enron.com
## 6204 12800 2307 TO jeff.nielsen@enron.com
## 6205 12801 2307 TO frank.oldenhuis@enron.com
## 6206 12802 2307 TO larry.pavlou@enron.com
## 6207 12803 2307 TO loren.penkava@enron.com
## 6208 12804 2307 TO john.pritchard@enron.com
## 6209 12805 2307 TO preston.roobaert@enron.com
## 6210 12806 2307 TO chris.sebesta@enron.com
## 6211 12807 2307 TO frank.semin@enron.com
## 6212 12808 2307 TO g..stage@enron.com
## 6213 12809 2307 TO bob.stevens@enron.com
## 6214 12810 2307 TO larry.swett@enron.com
## 6215 12811 2307 TO steve.thomas@enron.com
## 6216 12812 2307 TO kay.threet@enron.com
## 6217 12813 2307 TO lisa.valley@enron.com
## 6218 12814 2307 TO steve.weller@enron.com
## 6219 12815 2307 TO chuck.wilkinson@enron.com
## 6220 12816 2307 TO w..mcgowan@enron.com
## 6221 12818 2307 TO rick.dietz@enron.com
## 6222 12819 2307 TO steven.january@enron.com
## 6223 12820 2307 TO sheila.nacey@enron.com
## 6224 12821 2307 TO donna.scott@enron.com
## 6225 12822 2307 TO david.marye@enron.com
## 6226 12823 2307 TO sarabeth.smith@enron.com
## 6227 12824 2307 TO allen.cohrs@enron.com
## 6228 12825 2307 TO john.fiscus@enron.com
## 6229 12826 2307 TO steve.gilbert@enron.com
## 6230 12827 2307 TO dana.jones@enron.com
## 6231 12828 2307 TO stephanie.korbelik@enron.com
## 6232 12829 2307 TO don.powell@enron.com
## 6233 12830 2307 TO ken.powers@enron.com
## 6234 12832 2307 TO pallavi.goradia@enron.com
## 6235 12833 2307 TO lorraine.lindberg@enron.com
## 6236 12834 2307 TO tk.lohman@enron.com
## 6237 12836 2307 TO jan.moore@enron.com
## 6238 12837 2307 TO kimberly.watson@enron.com
## 6239 12839 2307 TO lee.huber@enron.com
## 6240 12840 2307 TO susan.scott@enron.com
## 6241 12843 2310 TO john.dushinske@enron.com
## 6242 12844 2310 TO bill.fowler@enron.com
## 6243 12845 2310 TO kent.miller@enron.com
## 6244 12846 2310 TO dave.neubauer@enron.com
## 6245 12847 2310 TO sue.neville@enron.com
## 6246 12848 2310 TO jo.williams@enron.com
## 6247 12849 2310 TO mike.barry@enron.com
## 6248 12850 2310 TO vicki.berg@enron.com
## 6249 12851 2310 TO sean.bolks@enron.com
## 6250 12852 2310 TO joni.bollinger@enron.com
## 6251 12853 2310 TO janet.bowers@enron.com
## 6252 12854 2310 TO theresa.branney@enron.com
## 6253 12855 2310 TO craig.buehler@enron.com
## 6254 12856 2310 TO bob.burleson@enron.com
## 6255 12857 2310 TO reyna.cabrera@enron.com
## 6256 12858 2310 TO lee.ferrell@enron.com
## 6257 12859 2310 TO tom.halpin@enron.com
## 6258 12860 2310 TO stephen.herber@enron.com
## 6259 12861 2310 TO martha.janousek@enron.com
## 6260 12862 2310 TO tim.johanson@enron.com
## 6261 12863 2310 TO jane.joyce@enron.com
## 6262 12864 2310 TO karen.lagerstrom@enron.com
## 6263 12865 2310 TO laura.lantefield@enron.com
## 6264 12866 2310 TO robert.mason@enron.com
## 6265 12867 2310 TO penny.mccarran@enron.com
## 6266 12868 2310 TO vernon.mercaldo@enron.com
## 6267 12869 2310 TO jeff.nielsen@enron.com
## 6268 12870 2310 TO frank.oldenhuis@enron.com
## 6269 12871 2310 TO larry.pavlou@enron.com
## 6270 12872 2310 TO loren.penkava@enron.com
## 6271 12873 2310 TO john.pritchard@enron.com
## 6272 12874 2310 TO preston.roobaert@enron.com
## 6273 12875 2310 TO chris.sebesta@enron.com
## 6274 12876 2310 TO frank.semin@enron.com
## 6275 12877 2310 TO g..stage@enron.com
## 6276 12878 2310 TO bob.stevens@enron.com
## 6277 12879 2310 TO larry.swett@enron.com
## 6278 12880 2310 TO steve.thomas@enron.com
## 6279 12881 2310 TO kay.threet@enron.com
## 6280 12882 2310 TO lisa.valley@enron.com
## 6281 12883 2310 TO steve.weller@enron.com
## 6282 12884 2310 TO chuck.wilkinson@enron.com
## 6283 12885 2310 TO w..mcgowan@enron.com
## 6284 12886 2310 TO david.marye@enron.com
## 6285 12887 2310 TO sarabeth.smith@enron.com
## 6286 12888 2310 TO allen.cohrs@enron.com
## 6287 12889 2310 TO john.fiscus@enron.com
## 6288 12890 2310 TO steve.gilbert@enron.com
## 6289 12891 2310 TO dana.jones@enron.com
## 6290 12892 2310 TO stephanie.korbelik@enron.com
## 6291 12893 2310 TO don.powell@enron.com
## 6292 12894 2310 TO ken.powers@enron.com
## 6293 12897 2310 TO pallavi.goradia@enron.com
## 6294 12898 2310 TO lorraine.lindberg@enron.com
## 6295 12899 2310 TO tk.lohman@enron.com
## 6296 12901 2310 TO jan.moore@enron.com
## 6297 12902 2310 TO kimberly.watson@enron.com
## 6298 12903 2310 TO lee.huber@enron.com
## 6299 12904 2310 TO susan.scott@enron.com
## 6300 12905 2310 TO eric.gadd@enron.com
## 6301 12907 2310 TO john.millar@enron.com
## 6302 12908 2310 TO michael.ratner@enron.com
## 6303 12909 2310 TO courtney.barker@enron.com
## 6304 12911 2312 TO courtney.barker@enron.com
## 6305 12912 2312 TO ken.anderson@enron.com
## 6306 12913 2312 TO doug.aschwege@enron.com
## 6307 12914 2312 TO judy.beck@enron.com
## 6308 12915 2312 TO gary.choquette@enron.com
## 6309 12916 2312 TO carolyn.descoteaux@enron.com
## 6310 12917 2312 TO l..johnson@enron.com
## 6311 12918 2312 TO bryan.reinecke@enron.com
## 6312 12919 2312 TO becki.sans@enron.com
## 6313 12920 2312 TO roger.westfall@enron.com
## 6314 12921 2312 TO eric.gadd@enron.com
## 6315 12923 2312 TO john.millar@enron.com
## 6316 12924 2312 TO michael.ratner@enron.com
## 6317 12925 2312 TO glen.hass@enron.com
## 6318 12926 2312 TO michael.loeffler@enron.com
## 6319 12927 2312 TO lon.stanton@enron.com
## 6320 12928 2312 TO rob.wilson@enron.com
## 6321 12929 2312 TO john.dushinske@enron.com
## 6322 12930 2312 TO bill.fowler@enron.com
## 6323 12931 2312 TO kent.miller@enron.com
## 6324 12932 2312 TO dave.neubauer@enron.com
## 6325 12933 2312 TO sue.neville@enron.com
## 6326 12934 2312 TO jo.williams@enron.com
## 6327 12935 2312 TO mike.barry@enron.com
## 6328 12936 2312 TO vicki.berg@enron.com
## 6329 12937 2312 TO sean.bolks@enron.com
## 6330 12938 2312 TO joni.bollinger@enron.com
## 6331 12939 2312 TO janet.bowers@enron.com
## 6332 12940 2312 TO theresa.branney@enron.com
## 6333 12941 2312 TO craig.buehler@enron.com
## 6334 12942 2312 TO bob.burleson@enron.com
## 6335 12943 2312 TO reyna.cabrera@enron.com
## 6336 12944 2312 TO lee.ferrell@enron.com
## 6337 12945 2312 TO tom.halpin@enron.com
## 6338 12946 2312 TO stephen.herber@enron.com
## 6339 12947 2312 TO martha.janousek@enron.com
## 6340 12948 2312 TO tim.johanson@enron.com
## 6341 12949 2312 TO jane.joyce@enron.com
## 6342 12950 2312 TO karen.lagerstrom@enron.com
## 6343 12951 2312 TO laura.lantefield@enron.com
## 6344 12952 2312 TO robert.mason@enron.com
## 6345 12953 2312 TO penny.mccarran@enron.com
## 6346 12954 2312 TO vernon.mercaldo@enron.com
## 6347 12955 2312 TO jeff.nielsen@enron.com
## 6348 12956 2312 TO frank.oldenhuis@enron.com
## 6349 12957 2312 TO larry.pavlou@enron.com
## 6350 12958 2312 TO loren.penkava@enron.com
## 6351 12959 2312 TO john.pritchard@enron.com
## 6352 12960 2312 TO preston.roobaert@enron.com
## 6353 12961 2312 TO chris.sebesta@enron.com
## 6354 12962 2312 TO frank.semin@enron.com
## 6355 12963 2312 TO g..stage@enron.com
## 6356 12964 2312 TO bob.stevens@enron.com
## 6357 12965 2312 TO larry.swett@enron.com
## 6358 12966 2312 TO steve.thomas@enron.com
## 6359 12967 2312 TO kay.threet@enron.com
## 6360 12968 2312 TO lisa.valley@enron.com
## 6361 12969 2312 TO steve.weller@enron.com
## 6362 12970 2312 TO chuck.wilkinson@enron.com
## 6363 12971 2312 TO w..mcgowan@enron.com
## 6364 12972 2312 TO david.marye@enron.com
## 6365 12973 2312 TO sarabeth.smith@enron.com
## 6366 12974 2312 TO allen.cohrs@enron.com
## 6367 12975 2312 TO john.fiscus@enron.com
## 6368 12976 2312 TO steve.gilbert@enron.com
## 6369 12977 2312 TO dana.jones@enron.com
## 6370 12978 2312 TO stephanie.korbelik@enron.com
## 6371 12979 2312 TO don.powell@enron.com
## 6372 12980 2312 TO ken.powers@enron.com
## 6373 12983 2312 TO pallavi.goradia@enron.com
## 6374 12984 2312 TO lorraine.lindberg@enron.com
## 6375 12985 2312 TO tk.lohman@enron.com
## 6376 12987 2312 TO jan.moore@enron.com
## 6377 12988 2312 TO kimberly.watson@enron.com
## 6378 12991 2313 TO darrell.schoolcraft@enron.com
## 6379 12992 2313 TO morgan.gottsponer@enron.com
## 6380 12994 2314 TO sue.neville@enron.com
## 6381 12997 2316 TO morgan.gottsponer@enron.com
## 6382 13000 2317 TO courtney.barker@enron.com
## 6383 13001 2317 TO mike.barry@enron.com
## 6384 13002 2317 TO joni.bollinger@enron.com
## 6385 13003 2317 TO laura.lantefield@enron.com
## 6386 13004 2317 TO loren.penkava@enron.com
## 6387 13005 2317 TO chris.sebesta@enron.com
## 6388 13006 2317 TO lisa.valley@enron.com
## 6389 13007 2317 TO josie.call@enron.com
## 6390 13008 2317 TO bret.fritch@enron.com
## 6391 13009 2317 TO donna.martens@enron.com
## 6392 13010 2317 TO keith.petersen@enron.com
## 6393 13011 2317 TO donald.vignaroli@enron.com
## 6394 13012 2317 TO michele.winckowski@enron.com
## 6395 13013 2317 TO sebastian.corbacho@enron.com
## 6396 13014 2317 TO eric.gadd@enron.com
## 6397 13015 2317 TO john.goodpasture@enron.com
## 6398 13016 2317 TO michael.ratner@enron.com
## 6399 13017 2317 TO yuan.tian@enron.com
## 6400 13018 2317 TO ken.anderson@enron.com
## 6401 13019 2317 TO doug.aschwege@enron.com
## 6402 13020 2317 TO judy.beck@enron.com
## 6403 13021 2317 TO gary.choquette@enron.com
## 6404 13022 2317 TO carolyn.descoteaux@enron.com
## 6405 13023 2317 TO l..johnson@enron.com
## 6406 13024 2317 TO bryan.reinecke@enron.com
## 6407 13025 2317 TO becki.sans@enron.com
## 6408 13026 2317 TO steve.thomas@enron.com
## 6409 13027 2317 TO roger.westfall@enron.com
## 6410 13028 2317 TO lon.stanton@enron.com
## 6411 13029 2317 TO rob.wilson@enron.com
## 6412 13030 2317 TO john.dushinske@enron.com
## 6413 13031 2317 TO bill.fowler@enron.com
## 6414 13032 2317 TO kent.miller@enron.com
## 6415 13033 2317 TO dave.neubauer@enron.com
## 6416 13034 2317 TO jo.williams@enron.com
## 6417 13035 2317 TO vicki.berg@enron.com
## 6418 13036 2317 TO sean.bolks@enron.com
## 6419 13037 2317 TO janet.bowers@enron.com
## 6420 13038 2317 TO theresa.branney@enron.com
## 6421 13039 2317 TO craig.buehler@enron.com
## 6422 13040 2317 TO bob.burleson@enron.com
## 6423 13041 2317 TO reyna.cabrera@enron.com
## 6424 13042 2317 TO lee.ferrell@enron.com
## 6425 13043 2317 TO morgan.gottsponer@enron.com
## 6426 13044 2317 TO stephen.herber@enron.com
## 6427 13045 2317 TO martha.janousek@enron.com
## 6428 13046 2317 TO tim.johanson@enron.com
## 6429 13047 2317 TO karen.lagerstrom@enron.com
## 6430 13048 2317 TO penny.mccarran@enron.com
## 6431 13049 2317 TO vernon.mercaldo@enron.com
## 6432 13050 2317 TO jan.moore@enron.com
## 6433 13051 2317 TO sue.neville@enron.com
## 6434 13052 2317 TO jeff.nielsen@enron.com
## 6435 13053 2317 TO frank.oldenhuis@enron.com
## 6436 13054 2317 TO larry.pavlou@enron.com
## 6437 13055 2317 TO frank.semin@enron.com
## 6438 13056 2317 TO g..stage@enron.com
## 6439 13057 2317 TO ld.stephens@enron.com
## 6440 13058 2317 TO bob.stevens@enron.com
## 6441 13059 2317 TO larry.swett@enron.com
## 6442 13060 2317 TO kay.threet@enron.com
## 6443 13061 2317 TO kimberly.watson@enron.com
## 6444 13062 2317 TO steve.weller@enron.com
## 6445 13063 2317 TO chuck.wilkinson@enron.com
## 6446 13064 2317 TO w..mcgowan@enron.com
## 6447 13065 2317 TO rita.bianchi@enron.com
## 6448 13066 2317 TO patrick.brennan@enron.com
## 6449 13067 2317 TO mary.darveaux@enron.com
## 6450 13068 2317 TO glen.hass@enron.com
## 6451 13069 2317 TO tim.kissner@enron.com
## 6452 13070 2317 TO ranelle.paladino@enron.com
## 6453 13071 2317 TO david.marye@enron.com
## 6454 13072 2317 TO sarabeth.smith@enron.com
## 6455 13074 2317 TO allen.cohrs@enron.com
## 6456 13075 2317 TO john.fiscus@enron.com
## 6457 13076 2317 TO steve.gilbert@enron.com
## 6458 13077 2317 TO dana.jones@enron.com
## 6459 13078 2317 TO stephanie.korbelik@enron.com
## 6460 13079 2317 TO don.powell@enron.com
## 6461 13080 2317 TO ken.powers@enron.com
## 6462 13083 2317 TO jeffery.fawcett@enron.com
## 6463 13085 2317 TO lorraine.lindberg@enron.com
## 6464 13086 2317 TO tk.lohman@enron.com
## 6465 13088 2317 TO lee.huber@enron.com
## 6466 13089 2317 TO susan.scott@enron.com
## 6467 13092 2318 TO jeffery.fawcett@enron.com
## 6468 13094 2318 TO lorraine.lindberg@enron.com
## 6469 13095 2318 TO tk.lohman@enron.com
## 6470 13097 2318 TO lee.huber@enron.com
## 6471 13098 2318 TO susan.scott@enron.com
## 6472 13099 2319 TO courtney.barker@enron.com
## 6473 13100 2319 TO mike.barry@enron.com
## 6474 13101 2319 TO joni.bollinger@enron.com
## 6475 13102 2319 TO laura.lantefield@enron.com
## 6476 13103 2319 TO loren.penkava@enron.com
## 6477 13104 2319 TO chris.sebesta@enron.com
## 6478 13105 2319 TO lisa.valley@enron.com
## 6479 13106 2319 TO sebastian.corbacho@enron.com
## 6480 13107 2319 TO eric.gadd@enron.com
## 6481 13108 2319 TO john.goodpasture@enron.com
## 6482 13109 2319 TO michael.ratner@enron.com
## 6483 13110 2319 TO yuan.tian@enron.com
## 6484 13111 2319 TO lon.stanton@enron.com
## 6485 13112 2319 TO rob.wilson@enron.com
## 6486 13113 2319 TO john.dushinske@enron.com
## 6487 13114 2319 TO bill.fowler@enron.com
## 6488 13115 2319 TO kent.miller@enron.com
## 6489 13116 2319 TO dave.neubauer@enron.com
## 6490 13117 2319 TO jo.williams@enron.com
## 6491 13118 2319 TO deborah.cappiello@enron.com
## 6492 13119 2319 TO rosemary.gracey@enron.com
## 6493 13120 2319 TO connie.hook@enron.com
## 6494 13121 2319 TO pilar.ramirez@enron.com
## 6495 13122 2319 TO audrey.robertson@enron.com
## 6496 13123 2319 TO linda.wehring@enron.com
## 6497 13124 2319 TO vicki.berg@enron.com
## 6498 13125 2319 TO sean.bolks@enron.com
## 6499 13126 2319 TO janet.bowers@enron.com
## 6500 13127 2319 TO theresa.branney@enron.com
## 6501 13128 2319 TO craig.buehler@enron.com
## 6502 13129 2319 TO bob.burleson@enron.com
## 6503 13130 2319 TO reyna.cabrera@enron.com
## 6504 13131 2319 TO lee.ferrell@enron.com
## 6505 13132 2319 TO morgan.gottsponer@enron.com
## 6506 13133 2319 TO stephen.herber@enron.com
## 6507 13134 2319 TO martha.janousek@enron.com
## 6508 13135 2319 TO tim.johanson@enron.com
## 6509 13136 2319 TO karen.lagerstrom@enron.com
## 6510 13137 2319 TO penny.mccarran@enron.com
## 6511 13138 2319 TO vernon.mercaldo@enron.com
## 6512 13139 2319 TO jan.moore@enron.com
## 6513 13140 2319 TO sue.neville@enron.com
## 6514 13141 2319 TO jeff.nielsen@enron.com
## 6515 13142 2319 TO frank.oldenhuis@enron.com
## 6516 13143 2319 TO larry.pavlou@enron.com
## 6517 13144 2319 TO frank.semin@enron.com
## 6518 13145 2319 TO g..stage@enron.com
## 6519 13146 2319 TO ld.stephens@enron.com
## 6520 13147 2319 TO bob.stevens@enron.com
## 6521 13148 2319 TO larry.swett@enron.com
## 6522 13149 2319 TO kay.threet@enron.com
## 6523 13150 2319 TO kimberly.watson@enron.com
## 6524 13151 2319 TO steve.weller@enron.com
## 6525 13152 2319 TO chuck.wilkinson@enron.com
## 6526 13153 2319 TO w..mcgowan@enron.com
## 6527 13155 2319 TO rick.dietz@enron.com
## 6528 13156 2319 TO steven.january@enron.com
## 6529 13157 2319 TO sheila.nacey@enron.com
## 6530 13158 2319 TO donna.scott@enron.com
## 6531 13159 2319 TO david.marye@enron.com
## 6532 13160 2319 TO sarabeth.smith@enron.com
## 6533 13164 2319 TO jeffery.fawcett@enron.com
## 6534 13166 2319 TO lorraine.lindberg@enron.com
## 6535 13167 2319 TO tk.lohman@enron.com
## 6536 13169 2319 TO lee.huber@enron.com
## 6537 13170 2319 TO susan.scott@enron.com
## 6538 13171 2320 TO glen.hass@enron.com
## 6539 13172 2320 TO sebastian.corbacho@enron.com
## 6540 13173 2320 TO eric.gadd@enron.com
## 6541 13174 2320 TO john.goodpasture@enron.com
## 6542 13175 2320 TO michael.ratner@enron.com
## 6543 13176 2320 TO yuan.tian@enron.com
## 6544 13177 2320 TO lon.stanton@enron.com
## 6545 13178 2320 TO rob.wilson@enron.com
## 6546 13181 2320 TO jeffery.fawcett@enron.com
## 6547 13183 2320 TO lorraine.lindberg@enron.com
## 6548 13184 2320 TO tk.lohman@enron.com
## 6549 13188 2321 TO tk.lohman@enron.com
## 6550 13190 2321 TO lorraine.lindberg@enron.com
## 6551 13191 2321 TO lorna.brennan@enron.com
## 6552 13194 2322 TO susan.scott@enron.com
## 6553 13196 2322 CC tk.lohman@enron.com
## 6554 13197 2322 CC lorraine.lindberg@enron.com
## 6555 13199 2322 CC lorna.brennan@enron.com
## 6556 13200 2322 BCC tk.lohman@enron.com
## 6557 13201 2322 BCC lorraine.lindberg@enron.com
## 6558 13203 2322 BCC lorna.brennan@enron.com
## 6559 13204 2323 TO jeffery.fawcett@enron.com
## 6560 13206 2324 TO lorna.brennan@enron.com
## 6561 13210 2324 TO lorraine.lindberg@enron.com
## 6562 13211 2324 TO tk.lohman@enron.com
## 6563 13213 2324 TO susan.scott@enron.com
## 6564 13220 2326 TO lorraine.lindberg@enron.com
## 6565 13222 2326 TO k.lohman@enron.com
## 6566 13223 2327 TO sebastian.corbacho@enron.com
## 6567 13224 2327 TO john.goodpasture@enron.com
## 6568 13225 2327 TO michael.ratner@enron.com
## 6569 13226 2327 TO yuan.tian@enron.com
## 6570 13227 2327 TO john.dushinske@enron.com
## 6571 13228 2327 TO bill.fowler@enron.com
## 6572 13229 2327 TO kent.miller@enron.com
## 6573 13230 2327 TO dave.neubauer@enron.com
## 6574 13231 2327 TO vicki.berg@enron.com
## 6575 13232 2327 TO sean.bolks@enron.com
## 6576 13233 2327 TO janet.bowers@enron.com
## 6577 13234 2327 TO theresa.branney@enron.com
## 6578 13235 2327 TO craig.buehler@enron.com
## 6579 13236 2327 TO bob.burleson@enron.com
## 6580 13237 2327 TO reyna.cabrera@enron.com
## 6581 13238 2327 TO lee.ferrell@enron.com
## 6582 13239 2327 TO morgan.gottsponer@enron.com
## 6583 13240 2327 TO stephen.herber@enron.com
## 6584 13241 2327 TO martha.janousek@enron.com
## 6585 13242 2327 TO tim.johanson@enron.com
## 6586 13243 2327 TO karen.lagerstrom@enron.com
## 6587 13244 2327 TO penny.mccarran@enron.com
## 6588 13245 2327 TO vernon.mercaldo@enron.com
## 6589 13246 2327 TO jan.moore@enron.com
## 6590 13247 2327 TO sue.neville@enron.com
## 6591 13248 2327 TO jeff.nielsen@enron.com
## 6592 13249 2327 TO frank.oldenhuis@enron.com
## 6593 13250 2327 TO larry.pavlou@enron.com
## 6594 13251 2327 TO eileen.peebles@enron.com
## 6595 13252 2327 TO frank.semin@enron.com
## 6596 13253 2327 TO g..stage@enron.com
## 6597 13254 2327 TO ld.stephens@enron.com
## 6598 13255 2327 TO bob.stevens@enron.com
## 6599 13256 2327 TO larry.swett@enron.com
## 6600 13257 2327 TO kay.threet@enron.com
## 6601 13258 2327 TO kimberly.watson@enron.com
## 6602 13259 2327 TO steve.weller@enron.com
## 6603 13260 2327 TO chuck.wilkinson@enron.com
## 6604 13261 2327 TO jo.williams@enron.com
## 6605 13262 2327 TO jim.wiltfong@enron.com
## 6606 13263 2327 TO dari.dornan@enron.com
## 6607 13264 2327 TO maria.pavlou@enron.com
## 6608 13265 2327 TO jim.talcott@enron.com
## 6609 13267 2327 TO w..mcgowan@enron.com
## 6610 13268 2327 TO kay.miller@enron.com
## 6611 13269 2327 TO michel.nelson@enron.com
## 6612 13270 2327 TO julia.white@enron.com
## 6613 13273 2327 TO jeffery.fawcett@enron.com
## 6614 13275 2327 TO lorraine.lindberg@enron.com
## 6615 13276 2327 TO k.lohman@enron.com
## 6616 13278 2327 TO lee.huber@enron.com
## 6617 13279 2327 TO susan.scott@enron.com
## 6618 13281 2328 TO john.dushinske@enron.com
## 6619 13282 2328 TO bill.fowler@enron.com
## 6620 13283 2328 TO kent.miller@enron.com
## 6621 13284 2328 TO dave.neubauer@enron.com
## 6622 13285 2328 TO vicki.berg@enron.com
## 6623 13286 2328 TO sean.bolks@enron.com
## 6624 13287 2328 TO janet.bowers@enron.com
## 6625 13288 2328 TO theresa.branney@enron.com
## 6626 13289 2328 TO craig.buehler@enron.com
## 6627 13290 2328 TO bob.burleson@enron.com
## 6628 13291 2328 TO reyna.cabrera@enron.com
## 6629 13292 2328 TO lee.ferrell@enron.com
## 6630 13293 2328 TO morgan.gottsponer@enron.com
## 6631 13294 2328 TO stephen.herber@enron.com
## 6632 13295 2328 TO martha.janousek@enron.com
## 6633 13296 2328 TO tim.johanson@enron.com
## 6634 13297 2328 TO karen.lagerstrom@enron.com
## 6635 13298 2328 TO penny.mccarran@enron.com
## 6636 13299 2328 TO vernon.mercaldo@enron.com
## 6637 13300 2328 TO jan.moore@enron.com
## 6638 13301 2328 TO sue.neville@enron.com
## 6639 13302 2328 TO jeff.nielsen@enron.com
## 6640 13303 2328 TO frank.oldenhuis@enron.com
## 6641 13304 2328 TO larry.pavlou@enron.com
## 6642 13305 2328 TO eileen.peebles@enron.com
## 6643 13306 2328 TO frank.semin@enron.com
## 6644 13307 2328 TO g..stage@enron.com
## 6645 13308 2328 TO ld.stephens@enron.com
## 6646 13309 2328 TO bob.stevens@enron.com
## 6647 13310 2328 TO larry.swett@enron.com
## 6648 13311 2328 TO kay.threet@enron.com
## 6649 13312 2328 TO kimberly.watson@enron.com
## 6650 13313 2328 TO steve.weller@enron.com
## 6651 13314 2328 TO chuck.wilkinson@enron.com
## 6652 13315 2328 TO jo.williams@enron.com
## 6653 13316 2328 TO jim.wiltfong@enron.com
## 6654 13317 2328 TO julia.white@enron.com
## 6655 13318 2328 TO w..mcgowan@enron.com
## 6656 13322 2328 TO jeffery.fawcett@enron.com
## 6657 13324 2328 TO lorraine.lindberg@enron.com
## 6658 13325 2328 TO k.lohman@enron.com
## 6659 13327 2328 TO lee.huber@enron.com
## 6660 13328 2328 TO susan.scott@enron.com
## 6661 13331 2329 TO lorna.brennan@enron.com
## 6662 13333 2329 TO lorraine.lindberg@enron.com
## 6663 13334 2329 TO tk.lohman@enron.com
## 6664 13340 2333 TO All Enron Worldwide@ENRON
## 6665 13343 2336 TO dana.jones@enron.com
## 6666 13344 2336 TO sean.bolks@enron.com
## 6667 13345 2336 TO vernon.mercaldo@enron.com
## 6668 13346 2336 TO robert.mason@enron.com
## 6669 13347 2336 TO martha.janousek@enron.com
## 6670 13348 2336 TO theresa.branney@enron.com
## 6671 13349 2336 TO sue.neville@enron.com
## 6672 13350 2336 TO preston.roobaert@enron.com
## 6673 13351 2336 TO kay.threet@enron.com
## 6674 13352 2336 TO reyna.cabrera@enron.com
## 6675 13353 2336 TO john.millar@enron.com
## 6676 13354 2336 TO joan.collins@enron.com
## 6677 13355 2336 TO penny.mccarran@enron.com
## 6678 13356 2336 TO bob.burleson@enron.com
## 6679 13357 2336 TO steve.weller@enron.com
## 6680 13358 2336 TO g..stage@enron.com
## 6681 13359 2336 TO linda.wehring@enron.com
## 6682 13360 2336 TO india.torres@enron.com
## 6683 13362 2336 TO jan.moore@enron.com
## 6684 13363 2336 TO tk.lohman@enron.com
## 6685 13365 2336 TO kimberly.watson@enron.com
## 6686 13366 2336 TO stephen.herber@enron.com
## 6687 13367 2336 TO lorraine.lindberg@enron.com
## 6688 13369 2336 TO julie.armstrong@enron.com
## 6689 13370 2336 TO craig.buehler@enron.com
## 6690 13371 2336 TO alma.carrillo@enron.com
## 6691 13372 2336 TO lia.halstead@enron.com
## 6692 13375 2339 TO no.address@enron.com
## 6693 13384 2348 TO tk.lohman@enron.com
## 6694 13385 2348 TO lorraine.lindberg@enron.com
## 6695 13387 2348 TO jeffery.fawcett@enron.com
## 6696 13395 2353 TO husky1@enron.com
## 6697 13396 2353 TO huntley.robert@enron.com
## 6698 13397 2353 TO hunter.scott@enron.com
## 6699 13398 2353 TO hunter.geoff@enron.com
## 6700 13399 2353 TO david.hunter@enron.com
## 6701 13400 2353 TO hunt.j@enron.com
## 6702 13401 2353 TO humphrey.cindy@enron.com
## 6703 13402 2353 TO humes.dave@enron.com
## 6704 13403 2353 TO hume.christy@enron.com
## 6705 13404 2353 TO huge.joe@enron.com
## 6706 13405 2353 TO huff.leo@enron.com
## 6707 13406 2353 TO hudson.caleb@enron.com
## 6708 13407 2353 TO hoyt.ann@enron.com
## 6709 13408 2353 TO howe.daniel@enron.com
## 6710 13409 2353 TO hoser2112@enron.com
## 6711 13410 2353 TO horner.carol@enron.com
## 6712 13411 2353 TO horn.les@enron.com
## 6713 13412 2353 TO hopple.steve@enron.com
## 6714 13413 2353 TO hopper.michael@enron.com
## 6715 13414 2353 TO hooton.mark@enron.com
## 6716 13415 2353 TO k..r.@enron.com
## 6717 13416 2353 TO homer.carlos@enron.com
## 6718 13417 2353 TO holtkamp.sue@enron.com
## 6719 13418 2353 TO holman.brian@enron.com
## 6720 13419 2353 TO holm.steve@enron.com
## 6721 13420 2353 TO holland.pieter@enron.com
## 6722 13421 2353 TO holdridge.john@enron.com
## 6723 13422 2353 TO hohensheldt.joshua@enron.com
## 6724 13423 2353 TO hoffman.nathan@enron.com
## 6725 13424 2353 TO hl3jsotown@enron.com
## 6726 13425 2353 TO hilton.russ@enron.com
## 6727 13426 2353 TO hills.russ@enron.com
## 6728 13427 2353 TO hester.barry@enron.com
## 6729 13428 2353 TO hess.liz@enron.com
## 6730 13429 2353 TO hess.forrest@enron.com
## 6731 13430 2353 TO hess.forrest@enron.com
## 6732 13431 2353 TO herring.mike@enron.com
## 6733 13432 2353 TO herrick.todd@enron.com
## 6734 13433 2353 TO herr.bob@enron.com
## 6735 13434 2353 TO heronimo.elio@enron.com
## 6736 13435 2353 TO heron.will@enron.com
## 6737 13436 2353 TO henry.joel@enron.com
## 6738 13437 2353 TO hendry.scott@enron.com
## 6739 13438 2353 TO henderson.rick@enron.com
## 6740 13439 2353 TO hemwall.jim@enron.com
## 6741 13440 2353 TO helloms.steven@enron.com
## 6742 13441 2353 TO helgerson.michael@enron.com
## 6743 13442 2353 TO hayes.terry@enron.com
## 6744 13443 2353 TO hayden.roy@enron.com
## 6745 13444 2353 TO hassard.mark@enron.com
## 6746 13445 2353 TO harwood.vince@enron.com
## 6747 13446 2353 TO hartzler.jeff@enron.com
## 6748 13447 2353 TO hartog.e.@enron.com
## 6749 13448 2353 TO hartley.jo@enron.com
## 6750 13449 2353 TO hart.phillip@enron.com
## 6751 13450 2353 TO harshberger.carol@enron.com
## 6752 13451 2353 TO harris.michael@enron.com
## 6753 13452 2353 TO no.address@enron.com
## 6754 13453 2353 TO harper.roger@enron.com
## 6755 13454 2353 TO harland.brent@enron.com
## 6756 13455 2353 TO hardin.taylor@enron.com
## 6757 13456 2353 TO harbison.chris@enron.com
## 6758 13457 2353 TO hapl.joan@enron.com
## 6759 13458 2353 TO hansen.dan@enron.com
## 6760 13459 2353 TO hamilton.jesse@enron.com
## 6761 13460 2353 TO hall.renae@enron.com
## 6762 13461 2353 TO hall.laurence@enron.com
## 6763 13462 2353 TO hale.doug@enron.com
## 6764 13463 2353 TO hairbl23@enron.com
## 6765 13464 2353 TO hagerott.zane@enron.com
## 6766 13465 2353 TO hagen.mike@enron.com
## 6767 13466 2353 TO hagelin.kenneth@enron.com
## 6768 13467 2353 TO hadfield.michael@enron.com
## 6769 13468 2353 TO h..costa@enron.com
## 6770 13469 2353 TO h.mark@enron.com
## 6771 13470 2353 TO h.dave@enron.com
## 6772 13486 2367 TO dl-ga-all_ets@enron.com
## 6773 13490 2371 TO dl-ga-all_ets@enron.com
## 6774 13491 2372 TO eric.gadd@enron.com
## 6775 13493 2372 TO steve.dowd@enron.com
## 6776 13496 2374 TO no.address@enron.com
## 6777 13497 2375 TO steve.dowd@enron.com
## 6778 13499 2375 CC eric.gadd@enron.com
## 6779 13500 2375 BCC eric.gadd@enron.com
## 6780 13501 2376 TO aberdy@aol.com
## 6781 13502 2376 TO arthur.goldsmith@att.net
## 6782 13503 2376 TO acooper2@columbus.rr.com
## 6783 13504 2376 TO txsnyder@houston.rr.com
## 6784 13505 2376 TO darango@houston.rr.com
## 6785 13506 2376 TO djoraholmen@houston.rr.com
## 6786 13507 2376 TO bapidutt@aol.com
## 6787 13508 2376 TO jdyess@houston.rr.com
## 6788 13509 2376 TO pamedwards@academicplanet.com
## 6789 13510 2376 TO eufard.cooper@att.net
## 6790 13511 2376 TO hmathews@houston.rr.com
## 6791 13512 2376 TO bobhurt66@hotmail.com
## 6792 13514 2376 TO indyandy06@msn.com
## 6793 13515 2376 TO irongator@aol.com
## 6794 13516 2376 TO johnstonp@houston.rr.com
## 6795 13517 2376 TO kwangenheim@houston.rr.com
## 6796 13518 2376 TO jlewis4@msn.com
## 6797 13519 2376 TO massey.r@worldnet.att.net
## 6798 13520 2376 TO ronmichalski@msn.com
## 6799 13521 2376 TO themiller@charter.net
## 6800 13522 2376 TO jpoxer@houston.rr.com
## 6801 13523 2376 TO pdalessandro64@hotmail.com
## 6802 13524 2376 TO dsaucier@columbus.rr.com
## 6803 13525 2376 TO m_b_rosen@yahoo.com
## 6804 13526 2376 TO fshort@houston.rr.com
## 6805 13527 2376 TO steveswerd@aol.com
## 6806 13528 2376 TO wtruxillo@hotmail.com
## 6807 13529 2376 TO tsundel@houston.rr.com
## 6808 13530 2376 TO gaylen_kari@msn.com
## 6809 13531 2376 TO jwright3@sbcglobal.net
## 6810 13533 2377 TO william.gehle@enron.com
## 6811 13534 2377 TO michael.crump@enron.com
## 6812 13535 2377 TO jason.ruckle@enron.com
## 6813 13536 2378 TO dl-ga-all_enron_worldwide2@enron.com
## 6814 13538 2380 TO paula.corey@enron.com
## 6815 13540 2380 CC eric.gadd@enron.com
## 6816 13542 2380 BCC eric.gadd@enron.com
## 6817 13546 2384 TO no.address@enron.com
## 6818 13547 2385 TO diane.becker@enron.com
## 6819 13548 2385 TO mark.begley@enron.com
## 6820 13549 2385 TO alan.behrens@enron.com
## 6821 13550 2385 TO jack.boatman@enron.com
## 6822 13551 2385 TO michael.bodnar@enron.com
## 6823 13552 2385 TO jerry.boston@enron.com
## 6824 13553 2385 TO john.buchanan@enron.com
## 6825 13554 2385 TO craig.buehler@enron.com
## 6826 13555 2385 TO christopher.burns@enron.com
## 6827 13556 2385 TO rachel.cady@enron.com
## 6828 13557 2385 TO james.centilli@enron.com
## 6829 13558 2385 TO dori.cooper@enron.com
## 6830 13559 2385 TO esther.dasilva@enron.com
## 6831 13560 2385 TO don.daze@enron.com
## 6832 13561 2385 TO jeanette.doll@enron.com
## 6833 13563 2385 TO stephen.dowd@enron.com
## 6834 13564 2385 TO rudy.elizondo@delinea.com
## 6835 13565 2385 TO sharon.farrell@enron.com
## 6836 13566 2385 TO anne.fogarty@enron.com
## 6837 13567 2385 TO john.freeman@enron.com
## 6838 13568 2385 TO eric.gadd@enron.com
## 6839 13569 2385 TO mara.gonzalez@enron.com
## 6840 13570 2385 TO pallavi.goradia@enron.com
## 6841 13571 2385 TO billi.harrill@enron.com
## 6842 13573 2385 TO robert.hayes@enron.com
## 6843 13575 2385 TO martha.janousek@enron.com
## 6844 13576 2385 TO robert.johnson@enron.com
## 6845 13577 2385 TO tammy.kovalcik@enron.com
## 6846 13578 2385 TO terry.kowalke@enron.com
## 6847 13579 2385 TO lorraine.lindberg@enron.com
## 6848 13580 2385 TO tk.lohman@enron.com
## 6849 13582 2385 TO robert.mason@enron.com
## 6850 13583 2385 TO mark.mcconnell@enron.com
## 6851 13584 2385 TO jean.mcfarland@enron.com
## 6852 13585 2385 TO john.millar@enron.com
## 6853 13586 2385 TO jan.moore@enron.com
## 6854 13587 2385 TO jeff.nielsen@enron.com
## 6855 13588 2385 TO audrey.robertson@enron.com
## 6856 13589 2385 TO marian.salinas@enron.com
## 6857 13590 2385 TO ronnie.sims@enron.com
## 6858 13591 2385 TO sue.sova@enron.com
## 6859 13592 2385 TO patricia.steele@enron.com
## 6860 13593 2385 TO vincent.strohmeyer@enron.com
## 6861 13594 2385 TO colin.strom@enron.com
## 6862 13595 2385 TO david.tran@enron.com
## 6863 13596 2385 TO susan.wadle@enron.com
## 6864 13597 2385 TO kimberly.watson@enron.com
## 6865 13598 2385 TO david.weber@enron.com
## 6866 13599 2385 TO john.williams@enron.com
## 6867 13600 2385 TO ted.willimon@enron.com
## 6868 13602 2385 CC lupita.cantu@enron.com
## 6869 13603 2385 CC patti.dennis@enron.com
## 6870 13604 2385 CC roger.radda@enron.com
## 6871 13605 2385 CC patrick.ryan@enron.com
## 6872 13606 2385 CC a..smith@enron.com
## 6873 13607 2385 CC thomas.sroka@enron.com
## 6874 13608 2385 CC james.sumpter@enron.com
## 6875 13609 2385 CC management.ets@enron.com
## 6876 13610 2385 CC center.ets@enron.com
## 6877 13611 2385 BCC lupita.cantu@enron.com
## 6878 13612 2385 BCC patti.dennis@enron.com
## 6879 13613 2385 BCC roger.radda@enron.com
## 6880 13614 2385 BCC patrick.ryan@enron.com
## 6881 13615 2385 BCC a..smith@enron.com
## 6882 13616 2385 BCC thomas.sroka@enron.com
## 6883 13617 2385 BCC james.sumpter@enron.com
## 6884 13618 2385 BCC management.ets@enron.com
## 6885 13619 2385 BCC center.ets@enron.com
## 6886 13621 2387 TO dl-ga-all_enron_worldwide1@enron.com
## 6887 13622 2388 TO lorraine.lindberg@enron.com
## 6888 13624 2389 TO no.address@enron.com
## 6889 13626 2391 TO michalski.ron@enron.com
## 6890 13627 2391 TO cynthia.wishert@enron.com
## 6891 13628 2392 TO dl-ga-all_ets@enron.com
## 6892 13629 2393 TO dalbritton@cox.rr.com
## 6893 13630 2393 TO rda2c@unix.mail.virginia.edu
## 6894 13631 2393 TO bandrews257@aol.com
## 6895 13632 2393 TO mbock@kgo.csc.com
## 6896 13633 2393 TO maanbr@hotmail.com
## 6897 13634 2393 TO mandmranch@ev1.net
## 6898 13635 2393 TO kcarrlcsw@aol.com
## 6899 13636 2393 TO elena_carver@yahoo.com
## 6900 13637 2393 TO pita651@aol.com
## 6901 13638 2393 TO sjplus5@hotmail.com
## 6902 13639 2393 TO sweetie05291983@msn.com
## 6903 13640 2393 TO kravenoriole5610@msn.com
## 6904 13641 2393 TO mdockens79@msn.com
## 6905 13642 2393 TO nncymorgan@msn.com
## 6906 13643 2393 TO m011602@yahoo.com
## 6907 13646 2395 TO dl-ga-all_enron_houston@enron.com
## 6908 13648 2397 TO dl-ga-all_enron_worldwide1@enron.com
## 6909 13651 2400 TO dl-ga-all_enron_north_america@enron.com
## 6910 13654 2403 TO dl-ga-all_enron_houston_employees@enron.com
## 6911 13655 2404 TO hyatt.jeff@enron.com
## 6912 13656 2404 TO m.zebo@enron.com
## 6913 13657 2404 TO saighman.jayne@enron.com
## 6914 13658 2404 TO shogi.tyler@enron.com
## 6915 13659 2404 TO carr.kim@enron.com
## 6916 13661 2404 TO dockens.keith@enron.com
## 6917 13662 2404 TO w.michelle@enron.com
## 6918 13663 2404 TO leavy.michael@enron.com
## 6919 13664 2404 TO leavy.steve@enron.com
## 6920 13665 2404 TO majak.lydia@enron.com
## 6921 13666 2404 TO brasch.mark@enron.com
## 6922 13667 2405 TO dl-ga-all_enron_houston@enron.com
## 6923 13668 2406 TO no.address@enron.com
## 6924 13669 2406 TO no.address@enron.com
## 6925 13670 2406 TO no.address@enron.com
## 6926 13671 2406 TO no.address@enron.com
## 6927 13672 2406 TO no.address@enron.com
## 6928 13673 2406 TO marion.sczykutowicz@enron.com
## 6929 13674 2406 TO j.harris@enron.com
## 6930 13675 2406 TO miriam.brabham@enron.com
## 6931 13677 2406 TO john.millar@enron.com
## 6932 13678 2406 TO don.powell@enron.com
## 6933 13679 2406 TO lora.sullivan@enron.com
## 6934 13680 2406 TO j..heinitz@enron.com
## 6935 13682 2408 TO All ETS Employees@ENRON
## 6936 13683 2409 TO Enron Everyone_ET&S_Houston@ENRON
## 6937 13684 2409 CC diane.becker@enron.com
## 6938 13685 2409 BCC diane.becker@enron.com
## 6939 13686 2410 TO no.address@enron.com
## 6940 13687 2411 TO All US DOMESTIC & EXPAT EMPLOYEES@ENRON
## 6941 13688 2412 TO All Enron Employees United States Group@ENRON
## 6942 13690 2414 TO Enron Payroll group@ENRON
## 6943 13691 2415 TO jean.mcfarland@enron.com
## 6944 13692 2415 TO sean.bolks@enron.com
## 6945 13693 2415 TO theresa.branney@enron.com
## 6946 13694 2415 TO craig.buehler@enron.com
## 6947 13695 2415 TO bob.burleson@enron.com
## 6948 13696 2415 TO reyna.cabrera@enron.com
## 6949 13698 2415 TO jeffery . fawcett@enron.com
## 6950 13699 2415 TO lee . ferrell@enron.com
## 6951 13700 2415 TO pallavi.goradia@enron.com
## 6952 13701 2415 TO morgan.gottsponer@enron.com
## 6953 13703 2415 TO stephen.herber@enron.com
## 6954 13705 2415 TO martha.janousek@enron.com
## 6955 13706 2415 TO dana.jones@enron.com
## 6956 13707 2415 TO lorraine.lindberg@enron.com
## 6957 13708 2415 TO tk.lohman@enron.com
## 6958 13710 2415 TO robert.mason@enron.com
## 6959 13711 2415 TO penny.mccarran@enron.com
## 6960 13712 2415 TO vernon.mercaldo@enron.com
## 6961 13713 2415 TO jan.moore@enron.com
## 6962 13714 2415 TO sue.neville@enron.com
## 6963 13715 2415 TO don.powell@enron.com
## 6964 13716 2415 TO pilar.ramirez@enron.com
## 6965 13717 2415 TO audrey.robertson@enron.com
## 6966 13718 2415 TO g..stage@enron.com
## 6967 13719 2415 TO kay.threet@enron.com
## 6968 13720 2415 TO india.torres@enron.com
## 6969 13721 2415 TO kimberly.watson@enron.com
## 6970 13722 2415 TO linda.wehring@enron.com
## 6971 13723 2415 TO steve.weller@enron.com
## 6972 13724 2415 TO bill.wirt@enron.com
## 6973 13725 2416 TO rick.becker@enron.com
## 6974 13726 2416 TO john.tickell@enron.com
## 6975 13727 2417 TO brasch.marvin@enron.com
## 6976 13728 2417 TO pfeiffer.c@enron.com
## 6977 13729 2417 TO euston.dan@enron.com
## 6978 13730 2417 TO drake.david@enron.com
## 6979 13731 2417 TO saighman.jayne@enron.com
## 6980 13732 2417 TO morgan.nancy@enron.com
## 6981 13733 2417 TO leavy.tina@enron.com
## 6982 13734 2417 TO brasch.mark@enron.com
## 6983 13735 2417 TO pech.tammie@enron.com
## 6984 13738 2419 TO williams . brian@enron.com
## 6985 13739 2419 TO jansen . eric@enron.com
## 6986 13740 2419 TO chrisenbery . gene@enron.com
## 6987 13741 2419 TO jaques . george@enron.com
## 6988 13742 2419 TO marcarelli . greg@enron.com
## 6989 13743 2419 TO vaughn . greg@enron.com
## 6990 13744 2419 TO davison . jerry@enron.com
## 6991 13745 2419 TO ragusa . joe@enron.com
## 6992 13746 2419 TO tomaselli . john@enron.com
## 6993 13747 2419 TO stuckey . karl@enron.com
## 6994 13748 2419 TO schmidt . karl@enron.com
## 6995 13749 2419 TO muhlbauer . kent@enron.com
## 6996 13750 2419 TO hyatt . kevin@enron.com
## 6997 13751 2419 TO cook . larry@enron.com
## 6998 13752 2419 TO mark.brand@enron.com
## 6999 13753 2419 TO alan . mcelhaney@enron.com
## 7000 13754 2419 TO culotta . mike@enron.com
## 7001 13755 2419 TO dodson . mike@enron.com
## 7002 13756 2419 TO gilson . mike@enron.com
## 7003 13757 2419 TO norm.spalding@enron.com
## 7004 13758 2419 TO cootes . ronnie@enron.com
## 7005 13759 2419 TO bugh . stan@enron.com
## 7006 13760 2419 TO veedell . steve@enron.com
## 7007 13761 2419 TO maccallum . stewart@enron.com
## 7008 13762 2420 TO dickerson.bill@enron.com
## 7009 13763 2420 TO george.bob@enron.com
## 7010 13764 2420 TO plechaty.bob@enron.com
## 7011 13765 2420 TO tidquist.eric@enron.com
## 7012 13767 2420 TO madrigal.larry@enron.com
## 7013 13768 2420 TO stauske.scott@enron.com
## 7014 13770 2422 TO ken.powers@enron.com
## 7015 13772 2422 TO steve.gilbert@enron.com
## 7016 13773 2423 TO no.address@enron.com
## 7017 13774 2424 TO george.bob@enron.com
## 7018 13775 2424 TO plechaty.bob@enron.com
## 7019 13776 2424 TO olson.gordon@enron.com
## 7020 13778 2424 TO madrigal.larry@enron.com
## 7021 13779 2424 TO brasch.marvin@enron.com
## 7022 13780 2424 TO stauske.scott@enron.com
## 7023 13781 2425 TO Undisclosed-Recipient
## 7024 13783 2427 TO Stock Option Grant List@ENRON
## 7025 13786 2430 TO All Enron Houston@ENRON
## 7026 13788 2432 TO tkruse@bracepatt.com
## 7027 13789 2432 TO jdimitroff@marcusmillichap.com
## 7028 13790 2432 TO swright@energy-solutions.com
## 7029 13793 2434 TO dkmc@airmail.net
## 7030 13794 2434 TO kimiani@aol.com
## 7031 13795 2434 TO bpars97@aol.com
## 7032 13796 2434 TO gurimyboat@aol.com
## 7033 13797 2434 TO kbonedoc@kingwoodcable.com
## 7034 13799 2434 TO kinatrp@aol.com
## 7035 13800 2434 TO larpad@flash.net
## 7036 13801 2434 TO mark@kirchgessner.com
## 7037 13802 2434 TO rbarnett@cbotx.com
## 7038 13803 2434 TO rfreemanj@pclient.ml.com
## 7039 13805 2435 CC sbarnett@plnrs.com
## 7040 13806 2435 BCC sbarnett@plnrs.com
## 7041 13807 2436 TO plechaty.bob@enron.com
## 7042 13808 2436 TO peck.jerry@enron.com
## 7043 13809 2436 TO madrigal.larry@enron.com
## 7044 13811 2436 TO stauske.scott@enron.com
## 7045 13812 2437 TO gbrector@mindspring.com
## 7046 13813 2438 TO Enron Everyone_ET&S_Houston@ENRON
## 7047 13814 2438 CC susan.wadle@enron.com
## 7048 13815 2438 BCC susan.wadle@enron.com
## 7049 13816 2439 TO All Enron Employees N America@ENRON
## 7050 13818 2441 TO kimberly.watson@enron.com
## 7051 13820 2442 TO nan.whatley@enron.com
## 7052 13821 2442 TO rhonda.short@enron.com
## 7053 13822 2443 TO All Enron Houston@ENRON
## 7054 13823 2444 TO jebong.lee@enron.com
## 7055 13824 2444 TO martin.gonzalez@enron.com
## 7056 13825 2444 TO gabriel.chavez@enron.com
## 7057 13826 2444 TO michael.ratner@enron.com
## 7058 13827 2444 TO david.junus@enron.com
## 7059 13828 2444 TO elberg.gelin@enron.com
## 7060 13829 2444 TO john.millar@enron.com
## 7061 13831 2444 TO stephen.dowd@enron.com
## 7062 13832 2444 TO eric.gadd@enron.com
## 7063 13834 2446 TO no.address@enron.com
## 7064 13835 2447 TO no.address@enron.com
## 7065 13836 2447 CC davidj@tradefairgroup.com
## 7066 13837 2447 CC caseym@tradefairgroup.com
## 7067 13838 2447 CC nicoled@tradefairgroup.com
## 7068 13839 2447 CC seang@tradefairgroup.com
## 7069 13840 2447 CC craigm@tradefairgroup.com
## 7070 13841 2447 BCC davidj@tradefairgroup.com
## 7071 13842 2447 BCC caseym@tradefairgroup.com
## 7072 13843 2447 BCC nicoled@tradefairgroup.com
## 7073 13844 2447 BCC seang@tradefairgroup.com
## 7074 13845 2447 BCC craigm@tradefairgroup.com
## 7075 13846 2448 TO no.address@enron.com
## 7076 13848 2450 TO sweller@enron.com
## 7077 13854 2454 TO no.address@enron.com
## 7078 13858 2458 TO kevin.hyatt@carsmart.com
## 7079 13861 2461 TO no.address@enron.com
## 7080 13864 2464 TO eric.gadd@enron.com
## 7081 13869 2467 TO All Enron Houston@ENRON
## 7082 13870 2468 TO no.address@enron.com
## 7083 13872 2470 TO All Enron Employees United States@ENRON
## 7084 13876 2474 TO All Enron Employees United States@ENRON
## 7085 13877 2475 TO All Enron Houston@ENRON
## 7086 13878 2476 TO no.address@enron.com
## 7087 13880 2478 TO jeff.jones@enron.com
## 7088 13884 2480 TO Enron Transportation Services Everyone@ENRON
## 7089 13889 2485 TO Enron Transportation Services Everyone@ENRON
## 7090 13890 2486 TO willthurmond@emerging-markets.com
## 7091 13891 2487 TO no.address@enron.com
## 7092 13892 2488 TO no.address@enron.com
## 7093 13893 2489 TO no.address@enron.com
## 7094 13894 2490 TO All Enron Employees United States@ENRON
## 7095 13898 2494 TO eric.gadd@enron.com
## 7096 13899 2494 TO robert.hayes@enron.com
## 7097 13901 2494 TO robert.kilmer@enron.com
## 7098 13902 2494 TO kay.miller@enron.com
## 7099 13903 2494 TO dave.neubauer@enron.com
## 7100 13904 2494 TO john.millar@enron.com
## 7101 13906 2494 CC cindy.stark@enron.com
## 7102 13907 2494 CC susan.wadle@enron.com
## 7103 13908 2494 CC tammy.kovalcik@enron.com
## 7104 13909 2494 CC marian.salinas@enron.com
## 7105 13910 2494 CC audrey.robertson@enron.com
## 7106 13911 2494 CC zelda.paschal@enron.com
## 7107 13912 2494 CC sharon.solon@enron.com
## 7108 13913 2494 CC deborah.cappiello@enron.com
## 7109 13914 2494 CC connie.hook@enron.com
## 7110 13915 2494 BCC cindy.stark@enron.com
## 7111 13916 2494 BCC susan.wadle@enron.com
## 7112 13917 2494 BCC tammy.kovalcik@enron.com
## 7113 13918 2494 BCC marian.salinas@enron.com
## 7114 13919 2494 BCC audrey.robertson@enron.com
## 7115 13920 2494 BCC zelda.paschal@enron.com
## 7116 13921 2494 BCC sharon.solon@enron.com
## 7117 13922 2494 BCC deborah.cappiello@enron.com
## 7118 13923 2494 BCC connie.hook@enron.com
## 7119 13924 2495 TO adam.dushinske@enron.com
## 7120 13925 2495 TO albert.hernandez@enron.com
## 7121 13926 2495 TO alice.johnson@enron.com
## 7122 13927 2495 TO allen.joe@enron.com
## 7123 13928 2495 TO allison.millan@enron.com
## 7124 13929 2495 TO alma.carrillo@enron.com
## 7125 13930 2495 TO amy.mulligan@enron.com
## 7126 13931 2495 TO ankur.laroia@enron.com
## 7127 13932 2495 TO ann.carethers@enron.com
## 7128 13933 2495 TO ann.dodge@enron.com
## 7129 13934 2495 TO apollo.gonzalez@enron.com
## 7130 13935 2495 TO audrey.robertson@enron.com
## 7131 13936 2495 TO ava.garcia@enron.com
## 7132 13937 2495 TO bart.monden@enron.com
## 7133 13938 2495 TO ben.asante@enron.com
## 7134 13939 2495 TO ben.herman@enron.com
## 7135 13940 2495 TO benito.resendez@enron.com
## 7136 13941 2495 TO beverly.miller@enron.com
## 7137 13942 2495 TO beverly.toussi@enron.com
## 7138 13943 2495 TO bill.bell@enron.com
## 7139 13944 2495 TO bill.swarthout@enron.com
## 7140 13945 2495 TO bob.burleson@enron.com
## 7141 13946 2495 TO bob.chandler@enron.com
## 7142 13947 2495 TO bob.martinez@enron.com
## 7143 13948 2495 TO brenda.harris@enron.com
## 7144 13949 2495 TO brian.hensley@enron.com
## 7145 13950 2495 TO camille.gerard@enron.com
## 7146 13951 2495 TO candace.kyle@enron.com
## 7147 13952 2495 TO carolyn.henry@enron.com
## 7148 13953 2495 TO cassandra.fogle@enron.com
## 7149 13954 2495 TO celestine.hollan@enron.com
## 7150 13955 2495 TO chris.greaney@enron.com
## 7151 13956 2495 TO christina.rivera@enron.com
## 7152 13957 2495 TO christine.mcevoy@enron.com
## 7153 13958 2495 TO colleen.raker@enron.com
## 7154 13959 2495 TO craig.buehler@enron.com
## 7155 13960 2495 TO crandal.hardy@enron.com
## 7156 13961 2495 TO cynthia.rivers@enron.com
## 7157 13962 2495 TO dale.eldridge@enron.com
## 7158 13963 2495 TO dale.ratliff@enron.com
## 7159 13964 2495 TO dan.fancler@enron.com
## 7160 13965 2495 TO dan.santellan@enron.com
## 7161 13966 2495 TO dana.jones@enron.com
## 7162 13968 2495 TO darrell.schoolcraft@enron.com
## 7163 13969 2495 TO david.duff@enron.com
## 7164 13970 2495 TO david.tran@enron.com
## 7165 13971 2495 TO dawn.clennon@enron.com
## 7166 13972 2495 TO dayna.landers@enron.com
## 7167 13973 2495 TO debbie.moseley@enron.com
## 7168 13974 2495 TO deborah.dunten@enron.com
## 7169 13975 2495 TO debra.garcia@enron.com
## 7170 13976 2495 TO debra.scurlock@enron.com
## 7171 13977 2495 TO dennis.lee@enron.com
## 7172 13978 2495 TO diana.porter@enron.com
## 7173 13979 2495 TO diane.eckels@enron.com
## 7174 13980 2495 TO don.daze@enron.com
## 7175 13981 2495 TO don.powell@enron.com
## 7176 13982 2495 TO don.stacy@enron.com
## 7177 13983 2495 TO dori.cooper@enron.com
## 7178 13984 2495 TO earl.chanley@enron.com
## 7179 13985 2495 TO edward.brown@enron.com
## 7180 13986 2495 TO edward.welsh@enron.com
## 7181 13987 2495 TO elaine.concklin@enron.com
## 7182 13988 2495 TO elizabeth.brown@enron.com
## 7183 13989 2495 TO emily.sellers@enron.com
## 7184 13990 2495 TO eric.faucheaux@enron.com
## 7185 13991 2495 TO esther.dasilva@enron.com
## 7186 13992 2495 TO houston_tpc.ets@enron.com
## 7187 13993 2495 TO ets.test1@enron.com
## 7188 13994 2495 TO ets.test2@enron.com
## 7189 13995 2495 TO gale.ramsaran@enron.com
## 7190 13996 2495 TO gary.spraggins@enron.com
## 7191 13997 2495 TO gary.zahn@enron.com
## 7192 13998 2495 TO gaynel.henley@enron.com
## 7193 13999 2495 TO gene.maze@enron.com
## 7194 14000 2495 TO gerry.medeles@enron.com
## 7195 14001 2495 TO glenn.stovall@enron.com
## 7196 14002 2495 TO gwen.clemings@enron.com
## 7197 14003 2495 TO harry.walters@enron.com
## 7198 14004 2495 TO harry.woodson@enron.com
## 7199 14005 2495 TO hasan.kedwaii@enron.com
## 7200 14006 2495 TO helen.cummings@enron.com
## 7201 14007 2495 TO hendra.kurniawan@enron.com
## 7202 14008 2495 TO henry.baker@enron.com
## 7203 14009 2495 TO hottap.helpdesk@enron.com
## 7204 14010 2495 TO hoyt.ivey@enron.com
## 7205 14011 2495 TO james.carr@enron.com
## 7206 14012 2495 TO james.centilli@enron.com
## 7207 14013 2495 TO james.moore@enron.com
## 7208 14014 2495 TO jamie.lynn@enron.com
## 7209 14015 2495 TO jan.cobden@enron.com
## 7210 14016 2495 TO jan.moore@enron.com
## 7211 14017 2495 TO janet.butler@enron.com
## 7212 14018 2495 TO janet.mcdaniel@enron.com
## 7213 14019 2495 TO je.chang@enron.com
## 7214 14020 2495 TO jean.adams@enron.com
## 7215 14021 2495 TO jean.blair@enron.com
## 7216 14022 2495 TO jeanette.doll@enron.com
## 7217 14023 2495 TO jeanne.licciardo@enron.com
## 7218 14024 2495 TO jeff.durst@enron.com
## 7219 14025 2495 TO jeffery.fawcett@enron.com
## 7220 14026 2495 TO jeffrey.cochran@enron.com
## 7221 14027 2495 TO jennifer.lowry@enron.com
## 7222 14028 2495 TO jerry.wilkens@enron.com
## 7223 14029 2495 TO jerry.wu@enron.com
## 7224 14030 2495 TO jesse.alvarado@enron.com
## 7225 14031 2495 TO jill.setera@enron.com
## 7226 14032 2495 TO joann.garcia@enron.com
## 7227 14033 2495 TO joanne.bisbee@enron.com
## 7228 14034 2495 TO jodie.floyd@enron.com
## 7229 14035 2495 TO joe.garza@enron.com
## 7230 14036 2495 TO joe.hellsten@enron.com
## 7231 14037 2495 TO joe.hoang@enron.com
## 7232 14038 2495 TO joe.jeffers@enron.com
## 7233 14039 2495 TO joe.linhart@enron.com
## 7234 14040 2495 TO john.buchanan@enron.com
## 7235 14041 2495 TO john.pavetto@enron.com
## 7236 14042 2495 TO john.sylvester@enron.com
## 7237 14043 2495 TO john.tsucalas@enron.com
## 7238 14044 2495 TO john.williams@enron.com
## 7239 14045 2495 TO josue.vasquez@enron.com
## 7240 14046 2495 TO judy.fierman@enron.com
## 7241 14047 2495 TO julie.armstrong@enron.com
## 7242 14048 2495 TO karen.brostad@enron.com
## 7243 14049 2495 TO karen.leslie@enron.com
## 7244 14050 2495 TO kasey.davis@enron.com
## 7245 14051 2495 TO katherine.gibson@enron.com
## 7246 14052 2495 TO katherine.perry@enron.com
## 7247 14053 2495 TO kathy.sturr@enron.com
## 7248 14054 2495 TO kathy.washington@enron.com
## 7249 14055 2495 TO kay.threet@enron.com
## 7250 14056 2495 TO kelly.moody@enron.com
## 7251 14057 2495 TO kelly.strader@enron.com
## 7252 14058 2495 TO kenneth.chow@enron.com
## 7253 14060 2495 TO kim.kouri@enron.com
## 7254 14061 2495 TO kim.perez@enron.com
## 7255 14062 2495 TO kim.wilkie@enron.com
## 7256 14063 2495 TO kimberly.watson@enron.com
## 7257 14064 2495 TO kramer.vakil@enron.com
## 7258 14065 2495 TO kristina.chism@enron.com
## 7259 14066 2495 TO lachandra.fenceroy@enron.com
## 7260 14067 2495 TO larry.berger@enron.com
## 7261 14068 2495 TO larry.davis@enron.com
## 7262 14069 2495 TO lee.huber@enron.com
## 7263 14070 2495 TO legale.black@enron.com
## 7264 14071 2495 TO leonard.daily@enron.com
## 7265 14072 2495 TO li.tsai@enron.com
## 7266 14073 2495 TO lillian.villarreal@enron.com
## 7267 14074 2495 TO linda.trevino@enron.com
## 7268 14075 2495 TO linda.ward@enron.com
## 7269 14076 2495 TO linda.wehring@enron.com
## 7270 14078 2495 TO lisa.gilchrist@enron.com
## 7271 14079 2495 TO lisa.sawyer@enron.com
## 7272 14080 2495 TO lisa.schandua@enron.com
## 7273 14081 2495 TO lorna.pennicooke@enron.com
## 7274 14082 2495 TO lorraine.lindberg@enron.com
## 7275 14083 2495 TO louis.soldano@enron.com
## 7276 14085 2495 TO maggie.matheson@enron.com
## 7277 14086 2495 TO mansoor.abdmoulaie@enron.com
## 7278 14087 2495 TO mara.gonzalez@enron.com
## 7279 14088 2495 TO margaret.hall@enron.com
## 7280 14089 2495 TO margaret.waters@enron.com
## 7281 14090 2495 TO maria.perales@enron.com
## 7282 14091 2495 TO y..gonzalez@enron.com
## 7283 14092 2495 TO mark.gigliotti@enron.com
## 7284 14093 2495 TO martha.cormier@enron.com
## 7285 14094 2495 TO martha.janousek@enron.com
## 7286 14095 2495 TO martin.wang@enron.com
## 7287 14096 2495 TO mary.draemer@enron.com
## 7288 14097 2495 TO mary.hubbard@enron.com
## 7289 14098 2495 TO maryann.fogarty@enron.com
## 7290 14099 2495 TO maryann.locknar@enron.com
## 7291 14100 2495 TO matt.hughes@enron.com
## 7292 14101 2495 TO maxine.smith@enron.com
## 7293 14102 2495 TO michael.bodnar@enron.com
## 7294 14103 2495 TO michael.ellington@enron.com
## 7295 14104 2495 TO g..stage@enron.com
## 7296 14105 2495 TO p..moran@enron.com
## 7297 14107 2495 TO morgan.gottsponer@enron.com
## 7298 14108 2495 TO nancy.callans@enron.com
## 7299 14109 2495 TO naresh.phadte@enron.com
## 7300 14110 2495 TO pallavi.goradia@enron.com
## 7301 14111 2495 TO pamela.culpepper@enron.com
## 7302 14112 2495 TO patricia.steele@enron.com
## 7303 14113 2495 TO patti.dennis@enron.com
## 7304 14114 2495 TO patti.rumler@enron.com
## 7305 14115 2495 TO paul.timberlake@enron.com
## 7306 14116 2495 TO penny.mccarran@enron.com
## 7307 14117 2495 TO perry.frazier@enron.com
## 7308 14118 2495 TO peter.lu@enron.com
## 7309 14119 2495 TO philip.crowley@enron.com
## 7310 14120 2495 TO phylis.karas@enron.com
## 7311 14121 2495 TO pilar.ramirez@enron.com
## 7312 14122 2495 TO rachel.sparks@enron.com
## 7313 14123 2495 TO raetta.zadow@enron.com
## 7314 14124 2495 TO ramona.betancourt@enron.com
## 7315 14125 2495 TO randy.bryan@enron.com
## 7316 14126 2495 TO randy.janzen@enron.com
## 7317 14127 2495 TO rene.bickerstaff@enron.com
## 7318 14128 2495 TO richard.abramowicz@enron.com
## 7319 14129 2495 TO richard.barry@enron.com
## 7320 14130 2495 TO richard.hanagriff@enron.com
## 7321 14131 2495 TO richard.macwithey@enron.com
## 7322 14132 2495 TO rick.dietz@enron.com
## 7323 14133 2495 TO ricki.winters@enron.com
## 7324 14134 2495 TO robert.benningfield@enron.com
## 7325 14135 2495 TO robert.fugel@enron.com
## 7326 14136 2495 TO robert.miller@enron.com
## 7327 14137 2495 TO robert.munson@enron.com
## 7328 14138 2495 TO rod.dittberner@enron.com
## 7329 14139 2495 TO rodney.barnes@enron.com
## 7330 14140 2495 TO ron.spain@enron.com
## 7331 14141 2495 TO ronald.matthews@enron.com
## 7332 14142 2495 TO ronnie.sims@enron.com
## 7333 14143 2495 TO ross.maddox@enron.com
## 7334 14144 2495 TO roy.armitage@enron.com
## 7335 14145 2495 TO rudolph.elizondo@enron.com
## 7336 14146 2495 TO ruth.mann@enron.com
## 7337 14147 2495 TO ruthe.newman@enron.com
## 7338 14148 2495 TO sandy.mccary@enron.com
## 7339 14149 2495 TO sarabeth.smith@enron.com
## 7340 14150 2495 TO sean.bolks@enron.com
## 7341 14151 2495 TO sharon.brown@enron.com
## 7342 14152 2495 TO sheila.nacey@enron.com
## 7343 14154 2495 TO shelly.keller@enron.com
## 7344 14155 2495 TO sherry.forbish@enron.com
## 7345 14156 2495 TO shirley.walden@enron.com
## 7346 14157 2495 TO sophie.patel@enron.com
## 7347 14158 2495 TO stephen.herber@enron.com
## 7348 14159 2495 TO steve.coash@enron.com
## 7349 14160 2495 TO steve.kleb@enron.com
## 7350 14161 2495 TO steve.klimesh@enron.com
## 7351 14162 2495 TO steve.plant@enron.com
## 7352 14163 2495 TO steve.stachey@enron.com
## 7353 14164 2495 TO steve.weller@enron.com
## 7354 14166 2495 TO steven.january@enron.com
## 7355 14167 2495 TO sue.neville@enron.com
## 7356 14168 2495 TO sumesh.krishnan@enron.com
## 7357 14169 2495 TO susan.brower@enron.com
## 7358 14170 2495 TO susan.scott@enron.com
## 7359 14171 2495 TO susan.stephens@enron.com
## 7360 14172 2495 TO tamara.hopkins@enron.com
## 7361 14173 2495 TO tammy.jaquet@enron.com
## 7362 14174 2495 TO tangie.dykes@enron.com
## 7363 14175 2495 TO terry.galassini@enron.com
## 7364 14176 2495 TO terry.kowalke@enron.com
## 7365 14177 2495 TO theresa.hess@enron.com
## 7366 14178 2495 TO thomas.sroka@enron.com
## 7367 14179 2495 TO tk.lohman@enron.com
## 7368 14180 2495 TO toby.kuehl@enron.com
## 7369 14181 2495 TO tony.pryor@enron.com
## 7370 14182 2495 TO tracy.minter@enron.com
## 7371 14183 2495 TO vera.apodaca@enron.com
## 7372 14184 2495 TO vera.jones@enron.com
## 7373 14185 2495 TO vernon.mercaldo@enron.com
## 7374 14186 2495 TO victor.negrete@enron.com
## 7375 14187 2495 TO victoria.martinez@enron.com
## 7376 14188 2495 TO vincent.strohmeyer@enron.com
## 7377 14189 2495 TO virgie.johnson@enron.com
## 7378 14190 2495 TO virginia.long@enron.com
## 7379 14191 2495 TO wayne.feng@enron.com
## 7380 14192 2495 TO wendy.koh@enron.com
## 7381 14193 2495 TO william.kohl@enron.com
## 7382 14194 2495 TO yuan.tian@enron.com
## 7383 14195 2495 TO zachariah.sulak@enron.com
## 7384 14196 2495 TO zuela.carter@enron.com
## 7385 14197 2495 TO steve.wood@enron.com
## 7386 14198 2495 TO e..brown@enron.com
## 7387 14199 2495 TO marcia.littledale@enron.com
## 7388 14200 2495 TO steven.swanson@enron.com
## 7389 14201 2495 TO andy.brady@enron.com
## 7390 14202 2495 TO jeff.huo@enron.com
## 7391 14203 2495 CC allen.cohrs@enron.com
## 7392 14204 2495 CC andrea.woody@enron.com
## 7393 14205 2495 CC andrew.williams@enron.com
## 7394 14206 2495 CC ann.smith@enron.com
## 7395 14207 2495 CC barbara.bischoff@enron.com
## 7396 14208 2495 CC bart.fillbach@enron.com
## 7397 14209 2495 CC becki.sans@enron.com
## 7398 14210 2495 CC bill.fowler@enron.com
## 7399 14211 2495 CC bill.mattox@enron.com
## 7400 14212 2495 CC bob.thurber@enron.com
## 7401 14213 2495 CC bret.fritch@enron.com
## 7402 14214 2495 CC bryan.reinecke@enron.com
## 7403 14215 2495 CC carol.armstrong@enron.com
## 7404 14216 2495 CC carol.carroll@enron.com
## 7405 14217 2495 CC carol.clements@enron.com
## 7406 14218 2495 CC carolyn.descoteaux@enron.com
## 7407 14219 2495 CC charlie.graham@enron.com
## 7408 14220 2495 CC cheryl.bryl@enron.com
## 7409 14221 2495 CC chris.sebesta@enron.com
## 7410 14222 2495 CC chuck.wagner@enron.com
## 7411 14223 2495 CC chuck.wilkinson@enron.com
## 7412 14224 2495 CC colleen.finochiaro@enron.com
## 7413 14225 2495 CC colleen.hood@enron.com
## 7414 14226 2495 CC connie.hook@enron.com
## 7415 14227 2495 CC courtney.barker@enron.com
## 7416 14228 2495 CC dan.bunch@enron.com
## 7417 14229 2495 CC danny.russell@enron.com
## 7418 14230 2495 CC darcy.meeker@enron.com
## 7419 14231 2495 CC dari.dornan@enron.com
## 7420 14232 2495 CC dave.neubauer@enron.com
## 7421 14233 2495 CC dave.waymire@enron.com
## 7422 14234 2495 CC david.abraham@enron.com
## 7423 14235 2495 CC david.clements@enron.com
## 7424 14236 2495 CC david.griffiths@enron.com
## 7425 14237 2495 CC david.kolarik@enron.com
## 7426 14238 2495 CC dea.crum@enron.com
## 7427 14239 2495 CC deaun.trayer@enron.com
## 7428 14240 2495 CC deborah.cappiello@enron.com
## 7429 14241 2495 CC denny.cooney@enron.com
## 7430 14242 2495 CC derek.drew@enron.com
## 7431 14243 2495 CC diane.becker@enron.com
## 7432 14244 2495 CC diane.gotto@enron.com
## 7433 14245 2495 CC don.nelson@enron.com
## 7434 14246 2495 CC donald.reed@enron.com
## 7435 14247 2495 CC donald.vignaroli@enron.com
## 7436 14248 2495 CC donna.martens@enron.com
## 7437 14249 2495 CC doug.aschwege@enron.com
## 7438 14251 2495 CC dwayne.luzum@enron.com
## 7439 14252 2495 CC elizabeth.jones@enron.com
## 7440 14253 2495 CC omaha_tpc.ets@enron.com
## 7441 14254 2495 CC frances.balderas@enron.com
## 7442 14255 2495 CC frank.cotto@enron.com
## 7443 14256 2495 CC frank.oldenhuis@enron.com
## 7444 14257 2495 CC front.desk@enron.com
## 7445 14258 2495 CC gary.choquette@enron.com
## 7446 14259 2495 CC gary.sova@enron.com
## 7447 14260 2495 CC glen.hass@enron.com
## 7448 14261 2495 CC greg.bierman@enron.com
## 7449 14262 2495 CC jack.o connell@enron.com
## 7450 14263 2495 CC janet.bowers@enron.com
## 7451 14264 2495 CC jean.mcfarland@enron.com
## 7452 14265 2495 CC jeff.beaudoin@enron.com
## 7453 14266 2495 CC jeff.nielsen@enron.com
## 7454 14267 2495 CC jim.sanford@enron.com
## 7455 14268 2495 CC jim.talcott@enron.com
## 7456 14269 2495 CC jo.williams@enron.com
## 7457 14270 2495 CC joan.cotter@enron.com
## 7458 14271 2495 CC john.dushinske@enron.com
## 7459 14272 2495 CC john.fiscus@enron.com
## 7460 14273 2495 CC john.toews@enron.com
## 7461 14274 2495 CC joni.bollinger@enron.com
## 7462 14275 2495 CC josie.call@enron.com
## 7463 14276 2495 CC judy.beck@enron.com
## 7464 14277 2495 CC judy.kudym@enron.com
## 7465 14278 2495 CC julie.mccoy@enron.com
## 7466 14279 2495 CC karen.lagerstrom@enron.com
## 7467 14280 2495 CC kathy.jameson@enron.com
## 7468 14281 2495 CC keith.petersen@enron.com
## 7469 14282 2495 CC kelly.glenn@enron.com
## 7470 14283 2495 CC kelly.schnack@enron.com
## 7471 14284 2495 CC ken.anderson@enron.com
## 7472 14285 2495 CC ken.powers@enron.com
## 7473 14286 2495 CC kenneth.samson@enron.com
## 7474 14287 2495 CC kent.miller@enron.com
## 7475 14288 2495 CC kerry.zuegner@enron.com
## 7476 14289 2495 CC kris.douglas@enron.com
## 7477 14290 2495 CC kurt.brubaker@enron.com
## 7478 14291 2495 CC j..anderson@enron.com
## 7479 14292 2495 CC larry.pavlou@enron.com
## 7480 14293 2495 CC larry.swett@enron.com
## 7481 14294 2495 CC laura.lantefield@enron.com
## 7482 14295 2495 CC ld.stephens@enron.com
## 7483 14296 2495 CC lee.ferrell@enron.com
## 7484 14297 2495 CC linda.nordhues@enron.com
## 7485 14298 2495 CC lisa.choquette@enron.com
## 7486 14299 2495 CC loren.penkava@enron.com
## 7487 14300 2495 CC lorna.brennan@enron.com
## 7488 14301 2495 CC lou.geiler@enron.com
## 7489 14302 2495 CC lynn.schomerus@enron.com
## 7490 14303 2495 CC maria.pavlou@enron.com
## 7491 14304 2495 CC marilyn.goetzinger@enron.com
## 7492 14305 2495 CC marlene.mccoy@enron.com
## 7493 14306 2495 CC marsha.dorris@enron.com
## 7494 14307 2495 CC martha.benner@enron.com
## 7495 14308 2495 CC mary.darveaux@enron.com
## 7496 14309 2495 CC mary.johnson@enron.com
## 7497 14310 2495 CC kay.miller@enron.com
## 7498 14311 2495 CC michael.o toole@enron.com
## 7499 14312 2495 CC michel.nelson@enron.com
## 7500 14313 2495 CC michele.winckowski@enron.com
## 7501 14314 2495 CC mike.barry@enron.com
## 7502 14315 2495 CC mike.bonnstetter@enron.com
## 7503 14316 2495 CC mike.guinane@enron.com
## 7504 14317 2495 CC mike.guzman@enron.com
## 7505 14318 2495 CC w..mcgowan@enron.com
## 7506 14319 2495 CC mike.rankin@enron.com
## 7507 14320 2495 CC mike.zabawa@enron.com
## 7508 14321 2495 CC mikel.schmidt@enron.com
## 7509 14322 2495 CC morrie.naumann@enron.com
## 7510 14323 2495 CC myrna.coleman@enron.com
## 7511 14324 2495 CC nancy.wood@enron.com
## 7512 14325 2495 CC naomi.bourg@enron.com
## 7513 14326 2495 CC neta.zitnik@enron.com
## 7514 14327 2495 CC norm.ruiz@enron.com
## 7515 14328 2495 CC norma.hasenjager@enron.com
## 7516 14329 2495 CC center.omaha@enron.com
## 7517 14330 2495 CC patrick.brennan@enron.com
## 7518 14331 2495 CC patty.prigmore@enron.com
## 7519 14332 2495 CC ralph.forbes@enron.com
## 7520 14333 2495 CC ralph.smith@enron.com
## 7521 14334 2495 CC ranelle.paladino@enron.com
## 7522 14335 2495 CC ray.smith@enron.com
## 7523 14336 2495 CC regina.stotts@enron.com
## 7524 14337 2495 CC reyna.cabrera@enron.com
## 7525 14338 2495 CC rich.holly@enron.com
## 7526 14339 2495 CC rick.cates@enron.com
## 7527 14340 2495 CC rick.lester@enron.com
## 7528 14341 2495 CC rik.forbes@enron.com
## 7529 14342 2495 CC rita.bianchi@enron.com
## 7530 14343 2495 CC rob.wilson@enron.com
## 7531 14344 2495 CC robert.heimerman@enron.com
## 7532 14345 2495 CC robert.heimerman@enron.com
## 7533 14346 2495 CC l..johnson@enron.com
## 7534 14347 2495 CC robin.sauser@enron.com
## 7535 14348 2495 CC roger.westfall@enron.com
## 7536 14349 2495 CC rosemary.gracey@enron.com
## 7537 14350 2495 CC ryan.choquette@enron.com
## 7538 14351 2495 CC scott.dunlap@enron.com
## 7539 14352 2495 CC sharon.solon@enron.com
## 7540 14353 2495 CC sherry.fox@enron.com
## 7541 14354 2495 CC steph.bertch@enron.com
## 7542 14355 2495 CC stephanie.korbelik@enron.com
## 7543 14356 2495 CC steve.gilbert@enron.com
## 7544 14357 2495 CC steve.kirk@enron.com
## 7545 14358 2495 CC steve.thomas@enron.com
## 7546 14359 2495 CC steve.wilson@enron.com
## 7547 14360 2495 CC steve.haug@enron.com
## 7548 14361 2495 CC sue.rich@enron.com
## 7549 14362 2495 CC tammy.anderson@enron.com
## 7550 14363 2495 CC ted.ritchey@enron.com
## 7551 14364 2495 CC tim.kissner@enron.com
## 7552 14365 2495 CC todd.vacek@enron.com
## 7553 14366 2495 CC tom.halpin@enron.com
## 7554 14367 2495 CC tony.mayer@enron.com
## 7555 14368 2495 CC tyler.theobald@enron.com
## 7556 14369 2495 CC vanessa.whybra@enron.com
## 7557 14370 2495 CC victoria.thomas@enron.com
## 7558 14371 2495 CC rik.forbes@enron.com
## 7559 14372 2495 CC jane.joyce@enron.com
## 7560 14373 2495 CC m..allen@enron.com
## 7561 14374 2495 CC seth.sarakaitis@enron.com
## 7562 14375 2495 BCC allen.cohrs@enron.com
## 7563 14376 2495 BCC andrea.woody@enron.com
## 7564 14377 2495 BCC andrew.williams@enron.com
## 7565 14378 2495 BCC ann.smith@enron.com
## 7566 14379 2495 BCC barbara.bischoff@enron.com
## 7567 14380 2495 BCC bart.fillbach@enron.com
## 7568 14381 2495 BCC becki.sans@enron.com
## 7569 14382 2495 BCC bill.fowler@enron.com
## 7570 14383 2495 BCC bill.mattox@enron.com
## 7571 14384 2495 BCC bob.thurber@enron.com
## 7572 14385 2495 BCC bret.fritch@enron.com
## 7573 14386 2495 BCC bryan.reinecke@enron.com
## 7574 14387 2495 BCC carol.armstrong@enron.com
## 7575 14388 2495 BCC carol.carroll@enron.com
## 7576 14389 2495 BCC carol.clements@enron.com
## 7577 14390 2495 BCC carolyn.descoteaux@enron.com
## 7578 14391 2495 BCC charlie.graham@enron.com
## 7579 14392 2495 BCC cheryl.bryl@enron.com
## 7580 14393 2495 BCC chris.sebesta@enron.com
## 7581 14394 2495 BCC chuck.wagner@enron.com
## 7582 14395 2495 BCC chuck.wilkinson@enron.com
## 7583 14396 2495 BCC colleen.finochiaro@enron.com
## 7584 14397 2495 BCC colleen.hood@enron.com
## 7585 14398 2495 BCC connie.hook@enron.com
## 7586 14399 2495 BCC courtney.barker@enron.com
## 7587 14400 2495 BCC dan.bunch@enron.com
## 7588 14401 2495 BCC danny.russell@enron.com
## 7589 14402 2495 BCC darcy.meeker@enron.com
## 7590 14403 2495 BCC dari.dornan@enron.com
## 7591 14404 2495 BCC dave.neubauer@enron.com
## 7592 14405 2495 BCC dave.waymire@enron.com
## 7593 14406 2495 BCC david.abraham@enron.com
## 7594 14407 2495 BCC david.clements@enron.com
## 7595 14408 2495 BCC david.griffiths@enron.com
## 7596 14409 2495 BCC david.kolarik@enron.com
## 7597 14410 2495 BCC dea.crum@enron.com
## 7598 14411 2495 BCC deaun.trayer@enron.com
## 7599 14412 2495 BCC deborah.cappiello@enron.com
## 7600 14413 2495 BCC denny.cooney@enron.com
## 7601 14414 2495 BCC derek.drew@enron.com
## 7602 14415 2495 BCC diane.becker@enron.com
## 7603 14416 2495 BCC diane.gotto@enron.com
## 7604 14417 2495 BCC don.nelson@enron.com
## 7605 14418 2495 BCC donald.reed@enron.com
## 7606 14419 2495 BCC donald.vignaroli@enron.com
## 7607 14420 2495 BCC donna.martens@enron.com
## 7608 14421 2495 BCC doug.aschwege@enron.com
## 7609 14423 2495 BCC dwayne.luzum@enron.com
## 7610 14424 2495 BCC elizabeth.jones@enron.com
## 7611 14425 2495 BCC omaha_tpc.ets@enron.com
## 7612 14426 2495 BCC frances.balderas@enron.com
## 7613 14427 2495 BCC frank.cotto@enron.com
## 7614 14428 2495 BCC frank.oldenhuis@enron.com
## 7615 14429 2495 BCC front.desk@enron.com
## 7616 14430 2495 BCC gary.choquette@enron.com
## 7617 14431 2495 BCC gary.sova@enron.com
## 7618 14432 2495 BCC glen.hass@enron.com
## 7619 14433 2495 BCC greg.bierman@enron.com
## 7620 14434 2495 BCC jack.o connell@enron.com
## 7621 14435 2495 BCC janet.bowers@enron.com
## 7622 14436 2495 BCC jean.mcfarland@enron.com
## 7623 14437 2495 BCC jeff.beaudoin@enron.com
## 7624 14438 2495 BCC jeff.nielsen@enron.com
## 7625 14439 2495 BCC jim.sanford@enron.com
## 7626 14440 2495 BCC jim.talcott@enron.com
## 7627 14441 2495 BCC jo.williams@enron.com
## 7628 14442 2495 BCC joan.cotter@enron.com
## 7629 14443 2495 BCC john.dushinske@enron.com
## 7630 14444 2495 BCC john.fiscus@enron.com
## 7631 14445 2495 BCC john.toews@enron.com
## 7632 14446 2495 BCC joni.bollinger@enron.com
## 7633 14447 2495 BCC josie.call@enron.com
## 7634 14448 2495 BCC judy.beck@enron.com
## 7635 14449 2495 BCC judy.kudym@enron.com
## 7636 14450 2495 BCC julie.mccoy@enron.com
## 7637 14451 2495 BCC karen.lagerstrom@enron.com
## 7638 14452 2495 BCC kathy.jameson@enron.com
## 7639 14453 2495 BCC keith.petersen@enron.com
## 7640 14454 2495 BCC kelly.glenn@enron.com
## 7641 14455 2495 BCC kelly.schnack@enron.com
## 7642 14456 2495 BCC ken.anderson@enron.com
## 7643 14457 2495 BCC ken.powers@enron.com
## 7644 14458 2495 BCC kenneth.samson@enron.com
## 7645 14459 2495 BCC kent.miller@enron.com
## 7646 14460 2495 BCC kerry.zuegner@enron.com
## 7647 14461 2495 BCC kris.douglas@enron.com
## 7648 14462 2495 BCC kurt.brubaker@enron.com
## 7649 14463 2495 BCC j..anderson@enron.com
## 7650 14464 2495 BCC larry.pavlou@enron.com
## 7651 14465 2495 BCC larry.swett@enron.com
## 7652 14466 2495 BCC laura.lantefield@enron.com
## 7653 14467 2495 BCC ld.stephens@enron.com
## 7654 14468 2495 BCC lee.ferrell@enron.com
## 7655 14469 2495 BCC linda.nordhues@enron.com
## 7656 14470 2495 BCC lisa.choquette@enron.com
## 7657 14471 2495 BCC loren.penkava@enron.com
## 7658 14472 2495 BCC lorna.brennan@enron.com
## 7659 14473 2495 BCC lou.geiler@enron.com
## 7660 14474 2495 BCC lynn.schomerus@enron.com
## 7661 14475 2495 BCC maria.pavlou@enron.com
## 7662 14476 2495 BCC marilyn.goetzinger@enron.com
## 7663 14477 2495 BCC marlene.mccoy@enron.com
## 7664 14478 2495 BCC marsha.dorris@enron.com
## 7665 14479 2495 BCC martha.benner@enron.com
## 7666 14480 2495 BCC mary.darveaux@enron.com
## 7667 14481 2495 BCC mary.johnson@enron.com
## 7668 14482 2495 BCC kay.miller@enron.com
## 7669 14483 2495 BCC michael.o toole@enron.com
## 7670 14484 2495 BCC michel.nelson@enron.com
## 7671 14485 2495 BCC michele.winckowski@enron.com
## 7672 14486 2495 BCC mike.barry@enron.com
## 7673 14487 2495 BCC mike.bonnstetter@enron.com
## 7674 14488 2495 BCC mike.guinane@enron.com
## 7675 14489 2495 BCC mike.guzman@enron.com
## 7676 14490 2495 BCC w..mcgowan@enron.com
## 7677 14491 2495 BCC mike.rankin@enron.com
## 7678 14492 2495 BCC mike.zabawa@enron.com
## 7679 14493 2495 BCC mikel.schmidt@enron.com
## 7680 14494 2495 BCC morrie.naumann@enron.com
## 7681 14495 2495 BCC myrna.coleman@enron.com
## 7682 14496 2495 BCC nancy.wood@enron.com
## 7683 14497 2495 BCC naomi.bourg@enron.com
## 7684 14498 2495 BCC neta.zitnik@enron.com
## 7685 14499 2495 BCC norm.ruiz@enron.com
## 7686 14500 2495 BCC norma.hasenjager@enron.com
## 7687 14501 2495 BCC center.omaha@enron.com
## 7688 14502 2495 BCC patrick.brennan@enron.com
## 7689 14503 2495 BCC patty.prigmore@enron.com
## 7690 14504 2495 BCC ralph.forbes@enron.com
## 7691 14505 2495 BCC ralph.smith@enron.com
## 7692 14506 2495 BCC ranelle.paladino@enron.com
## 7693 14507 2495 BCC ray.smith@enron.com
## 7694 14508 2495 BCC regina.stotts@enron.com
## 7695 14509 2495 BCC reyna.cabrera@enron.com
## 7696 14510 2495 BCC rich.holly@enron.com
## 7697 14511 2495 BCC rick.cates@enron.com
## 7698 14512 2495 BCC rick.lester@enron.com
## 7699 14513 2495 BCC rik.forbes@enron.com
## 7700 14514 2495 BCC rita.bianchi@enron.com
## 7701 14515 2495 BCC rob.wilson@enron.com
## 7702 14516 2495 BCC robert.heimerman@enron.com
## 7703 14517 2495 BCC robert.heimerman@enron.com
## 7704 14518 2495 BCC l..johnson@enron.com
## 7705 14519 2495 BCC robin.sauser@enron.com
## 7706 14520 2495 BCC roger.westfall@enron.com
## 7707 14521 2495 BCC rosemary.gracey@enron.com
## 7708 14522 2495 BCC ryan.choquette@enron.com
## 7709 14523 2495 BCC scott.dunlap@enron.com
## 7710 14524 2495 BCC sharon.solon@enron.com
## 7711 14525 2495 BCC sherry.fox@enron.com
## 7712 14526 2495 BCC steph.bertch@enron.com
## 7713 14527 2495 BCC stephanie.korbelik@enron.com
## 7714 14528 2495 BCC steve.gilbert@enron.com
## 7715 14529 2495 BCC steve.kirk@enron.com
## 7716 14530 2495 BCC steve.thomas@enron.com
## 7717 14531 2495 BCC steve.wilson@enron.com
## 7718 14532 2495 BCC steve.haug@enron.com
## 7719 14533 2495 BCC sue.rich@enron.com
## 7720 14534 2495 BCC tammy.anderson@enron.com
## 7721 14535 2495 BCC ted.ritchey@enron.com
## 7722 14536 2495 BCC tim.kissner@enron.com
## 7723 14537 2495 BCC todd.vacek@enron.com
## 7724 14538 2495 BCC tom.halpin@enron.com
## 7725 14539 2495 BCC tony.mayer@enron.com
## 7726 14540 2495 BCC tyler.theobald@enron.com
## 7727 14541 2495 BCC vanessa.whybra@enron.com
## 7728 14542 2495 BCC victoria.thomas@enron.com
## 7729 14543 2495 BCC rik.forbes@enron.com
## 7730 14544 2495 BCC jane.joyce@enron.com
## 7731 14545 2495 BCC m..allen@enron.com
## 7732 14546 2495 BCC seth.sarakaitis@enron.com
## 7733 14547 2496 TO no.address@enron.com
## 7734 14548 2497 TO lorna.brennan@enron.com
## 7735 14550 2497 TO tk.lohman@enron.com
## 7736 14552 2497 TO lorraine.lindberg@enron.com
## 7737 14553 2497 TO lisa.fawcett@enron.com
## 7738 14555 2497 TO susan.scott@enron.com
## 7739 14556 2498 TO Enron Everyone_ET&S_Houston@ENRON
## 7740 14557 2499 TO All Enron Houston@ENRON
## 7741 14558 2500 TO All Enron Employees North America@ENRON
## 7742 14560 2502 TO All Enron Employees United States@ENRON
## 7743 14561 2503 TO Enron Everyone_ET&S_Houston@ENRON
## 7744 14562 2504 TO Enron Everyone_ET&S_Houston@ENRON
## 7745 14563 2505 TO no.address@enron.com
## 7746 14564 2506 TO vicki.berg@enron.com
## 7747 14565 2506 TO tim.johanson@enron.com
## 7748 14566 2506 TO bob.stevens@enron.com
## 7749 14567 2506 TO lisa.valley@enron.com
## 7750 14568 2506 TO courtney.barker@enron.com
## 7751 14569 2506 TO mike.barry@enron.com
## 7752 14570 2506 TO joni.bollinger@enron.com
## 7753 14571 2506 TO janet.bowers@enron.com
## 7754 14572 2506 TO lorna.brennan@enron.com
## 7755 14573 2506 TO deborah.cappiello@enron.com
## 7756 14574 2506 TO allen.cohrs@enron.com
## 7757 14575 2506 TO john.dushinske@enron.com
## 7758 14576 2506 TO john.fiscus@enron.com
## 7759 14577 2506 TO bill.fowler@enron.com
## 7760 14578 2506 TO steve.gilbert@enron.com
## 7761 14579 2506 TO rosemary.gracey@enron.com
## 7762 14580 2506 TO connie.hook@enron.com
## 7763 14581 2506 TO jane.joyce@enron.com
## 7764 14582 2506 TO steve.kirk@enron.com
## 7765 14583 2506 TO stephanie.korbelik@enron.com
## 7766 14584 2506 TO karen.lagerstrom@enron.com
## 7767 14585 2506 TO laura.lantefield@enron.com
## 7768 14586 2506 TO julie.mccoy@enron.com
## 7769 14587 2506 TO w..mcgowan@enron.com
## 7770 14588 2506 TO kent.miller@enron.com
## 7771 14589 2506 TO dave.neubauer@enron.com
## 7772 14590 2506 TO jeff.nielsen@enron.com
## 7773 14591 2506 TO frank.oldenhuis@enron.com
## 7774 14592 2506 TO larry.pavlou@enron.com
## 7775 14593 2506 TO eileen.peebles@enron.com
## 7776 14594 2506 TO loren.penkava@enron.com
## 7777 14595 2506 TO ken.powers@enron.com
## 7778 14596 2506 TO john.pritchard@enron.com
## 7779 14597 2506 TO chris.sebesta@enron.com
## 7780 14598 2506 TO frank.semin@enron.com
## 7781 14599 2506 TO ld.stephens@enron.com
## 7782 14600 2506 TO larry.swett@enron.com
## 7783 14601 2506 TO roger.westfall@enron.com
## 7784 14602 2506 TO chuck.wilkinson@enron.com
## 7785 14603 2506 TO jo.williams@enron.com
## 7786 14604 2506 TO john.williams@enron.com
## 7787 14605 2506 TO sean.bolks@enron.com
## 7788 14606 2506 TO theresa.branney@enron.com
## 7789 14607 2506 TO craig.buehler@enron.com
## 7790 14608 2506 TO bob.burleson@enron.com
## 7791 14609 2506 TO reyna.cabrera@enron.com
## 7792 14611 2506 TO jeffery.fawcett@enron.com
## 7793 14612 2506 TO lee.ferrell@enron.com
## 7794 14613 2506 TO pallavi.goradia@enron.com
## 7795 14614 2506 TO morgan.gottsponer@enron.com
## 7796 14616 2506 TO stephen.herber@enron.com
## 7797 14618 2506 TO martha.janousek@enron.com
## 7798 14619 2506 TO dana.jones@enron.com
## 7799 14620 2506 TO lorraine.lindberg@enron.com
## 7800 14621 2506 TO tk.lohman@enron.com
## 7801 14623 2506 TO robert.mason@enron.com
## 7802 14624 2506 TO penny.mccarran@enron.com
## 7803 14625 2506 TO vernon.mercaldo@enron.com
## 7804 14626 2506 TO jan.moore@enron.com
## 7805 14627 2506 TO sue.neville@enron.com
## 7806 14628 2506 TO don.powell@enron.com
## 7807 14629 2506 TO pilar.ramirez@enron.com
## 7808 14630 2506 TO audrey.robertson@enron.com
## 7809 14631 2506 TO g..stage@enron.com
## 7810 14632 2506 TO kay.threet@enron.com
## 7811 14633 2506 TO india.torres@enron.com
## 7812 14634 2506 TO kimberly.watson@enron.com
## 7813 14635 2506 TO linda.wehring@enron.com
## 7814 14636 2506 TO steve.weller@enron.com
## 7815 14637 2506 TO bill.wirt@enron.com
## 7816 14638 2506 CC jean.mcfarland@enron.com
## 7817 14639 2506 BCC jean.mcfarland@enron.com
## 7818 14640 2507 TO no.address@enron.com
## 7819 14642 2509 TO All Enron Houston@ENRON
## 7820 14644 2510 TO jeffery.fawcett@enron.com
## 7821 14645 2511 TO All Enron Worldwide@ENRON
## 7822 18120 2874 TO rjhickok@duke-energy.com
## 7823 18121 2874 TO jdne@dynegy.com
## 7824 18122 2874 TO mary.hain@enron.com
## 7825 18123 2874 TO george.radan@neg.pge.com
## 7826 18124 2874 TO curtis_l_kebler@reliantenergy.com
## 7827 18125 2874 TO mike.mcclenahan@southernenergy.com
## 7828 18126 2874 TO alex.goldberg@williams.com
## 7829 18127 2875 TO mary.hain@enron.com
## 7830 18128 2875 TO mary.hain@enron.com
## 7831 18129 2876 TO mary.hain@enron.com
## 7832 18130 2876 TO chris.stokley@enron.com
## 7833 18131 2876 CC greg.wolfe@enron.com
## 7834 18132 2876 BCC greg.wolfe@enron.com
## 7835 18133 2877 TO greg.wolfe@enron.com
## 7836 18134 2877 TO mary.hain@enron.com
## 7837 18135 2878 TO mary.hain@enron.com
## 7838 18136 2878 TO greg.wolfe@enron.com
## 7839 18137 2879 TO brian.harrington@ferc.fed.us
## 7840 18138 2879 TO michelle.veloso@ferc.fed.us
## 7841 18139 2879 CC mary.hain@enron.com
## 7842 18140 2879 BCC mary.hain@enron.com
## 7843 18141 2880 TO chris.stokley@enron.com
## 7844 18142 2880 TO mary.hain@enron.com
## 7845 18143 2881 TO mary.hain@enron.com
## 7846 18144 2882 TO mary.hain@enron.com
## 7847 18145 2883 TO mary.hain@enron.com
## 7848 18146 2884 TO mary.hain@enron.com
## 7849 18147 2885 TO mary.hain@enron.com
## 7850 18148 2886 TO mary.hain@enron.com
## 7851 18149 2887 TO mary.hain@enron.com
## 7852 18150 2887 CC christi.nicolay@enron.com
## 7853 18151 2887 BCC christi.nicolay@enron.com
## 7854 18152 2888 TO mary.hain@enron.com
## 7855 18153 2889 TO mary.hain@enron.com
## 7856 18154 2890 TO duong.luu@enron.com
## 7857 18156 2890 TO monica.lande@enron.com
## 7858 18157 2890 TO mary.hain@enron.com
## 7859 18158 2890 TO kristin.albrecht@enron.com
## 7860 18159 2890 TO stacey.w.white@enron.com
## 7861 18160 2890 TO tim.belden@enron.com
## 7862 18161 2890 TO christi.nicolay@enron.com
## 7863 18162 2890 TO leslie.reeves@enron.com
## 7864 18163 2890 TO valarie.sabo@enron.com
## 7865 18164 2891 TO mary.hain@enron.com
## 7866 18165 2891 CC linda.lawrence@enron.com
## 7867 18166 2891 CC duong.luu@enron.com
## 7868 18167 2891 CC leslie.reeves@enron.com
## 7869 18168 2891 CC monica.lande@enron.com
## 7870 18169 2891 CC tim.belden@enron.com
## 7871 18170 2891 CC christi.nicolay@enron.com
## 7872 18171 2891 CC stacey.w.white@enron.com
## 7873 18173 2891 BCC linda.lawrence@enron.com
## 7874 18174 2891 BCC duong.luu@enron.com
## 7875 18175 2891 BCC leslie.reeves@enron.com
## 7876 18176 2891 BCC monica.lande@enron.com
## 7877 18177 2891 BCC tim.belden@enron.com
## 7878 18178 2891 BCC christi.nicolay@enron.com
## 7879 18179 2891 BCC stacey.w.white@enron.com
## 7880 18181 2892 TO mary.hain@enron.com
## 7881 18182 2892 CC greg.wolfe@enron.com
## 7882 18183 2892 BCC greg.wolfe@enron.com
## 7883 18184 2893 TO mary.hain@enron.com
## 7884 18190 2895 TO chris.foster@enron.com
## 7885 18191 2895 TO greg.wolfe@enron.com
## 7886 18192 2895 TO tim.belden@enron.com
## 7887 18193 2895 TO mary.hain@enron.com
## 7888 18194 2896 TO mwood@stoel.com
## 7889 18195 2896 TO tedwill@mtpower.com
## 7890 18196 2896 TO kewh@dynegy.com
## 7891 18197 2896 TO judywelchrtow@earthlink.net
## 7892 18198 2896 TO steve@nwenergy.org
## 7893 18199 2896 TO swaples@avistacorp.com
## 7894 18200 2896 TO kristiwallis@sprintmail.com
## 7895 18201 2896 TO votapka@libby.org
## 7896 18202 2896 TO lvollmer@pwrteam.com
## 7897 18203 2896 TO lstuntz@sdsatty.com
## 7898 18204 2896 TO bmspeckman@aol.com
## 7899 18205 2896 TO tshuba@sheagardner.com
## 7900 18206 2896 TO jsalisbury@state.nm.us
## 7901 18207 2896 TO sabet@wapa.gov
## 7902 18208 2896 TO wrosquist@state.mt.us
## 7903 18209 2896 TO reinhold@primenet.com
## 7904 18210 2896 TO dreilly@idahopower.com
## 7905 18211 2896 TO dquander@hollandhart.com
## 7906 18212 2896 TO rpomeroy@hollandhart.com
## 7907 18213 2896 TO mpetroch@enron.com
## 7908 18214 2896 TO ranckoil@aol.com
## 7909 18215 2896 TO dean.perry@nwpp.org
## 7910 18216 2896 TO aperez@caiso.com
## 7911 18217 2896 TO bpascoe@mtpower.com
## 7912 18218 2896 TO nunnalrd@sce.com
## 7913 18219 2896 TO douglas_nichols@pgn.com
## 7914 18220 2896 TO dave.nevius@nerc.com
## 7915 18221 2896 TO rich.nassief@nwpp.org
## 7916 18222 2896 TO denise.mullendalmer@gems1.gov.bc.ca
## 7917 18223 2896 TO skmorr@aol.com
## 7918 18224 2896 TO jemorin@ewst.com
## 7919 18225 2896 TO melanieminesinger@naseo.org
## 7920 18226 2896 TO jimmiller@idahopower.com
## 7921 18227 2896 TO mwmaher@bpa.gov
## 7922 18228 2896 TO doug.little@powerex.com
## 7923 18229 2896 TO dlarson@westgov.org
## 7924 18230 2896 TO ekrogh@serv.net
## 7925 18231 2896 TO kristi@wscc.com
## 7926 18232 2896 TO snkripalani@stoel.com
## 7927 18233 2896 TO paul.kaufman@enron.com
## 7928 18234 2896 TO jamison@ixi.net
## 7929 18235 2896 TO baidnvr@aol.com
## 7930 18236 2896 TO jhines@nwppc.org
## 7931 18237 2896 TO rhardy@hardyenergy.com
## 7932 18238 2896 TO mary.hain@enron.com
## 7933 18239 2896 TO sgutting@energystrat.com
## 7934 18240 2896 TO cdgrimm@pplmt.com
## 7935 18241 2896 TO dgribble@idahopower.com
## 7936 18242 2896 TO jgoroski@digisys.net
## 7937 18243 2896 TO jcg@dwgp.com
## 7938 18244 2896 TO dennis@wscc.com
## 7939 18245 2896 TO marshall@uamps.com
## 7940 18246 2896 TO chrisrtowest@earthlink.net
## 7941 18247 2896 TO alan.edwards@nreca.org
## 7942 18248 2896 TO cdurick@idahopower.com
## 7943 18249 2896 TO sdleonard@earthlink.net
## 7944 18250 2896 TO edemeo@earthlink.net
## 7945 18251 2896 TO dcook@nerc.com
## 7946 18252 2896 TO acompton@state.mt.us
## 7947 18253 2896 TO jcollingwood@idahopower.com
## 7948 18254 2896 TO rcloward@avistacorp.com
## 7949 18255 2896 TO jim@wrta.net
## 7950 18256 2896 TO jeffburks@aol.com
## 7951 18257 2896 TO nroerp.jburks@state.ut.us
## 7952 18258 2896 TO matthew.brown@ncsl.org
## 7953 18259 2896 TO frankbishop@naseo.org
## 7954 18260 2896 TO pbarber@edisonmission.com
## 7955 18261 2896 TO randerson@energystrat.com
## 7956 18262 2896 TO baanderson@state.mt.us
## 7957 18263 2896 TO frank_afranji@pgn.com
## 7958 18264 2896 TO bernie@amc-hln.com
## 7959 18265 2897 TO mary.hain@enron.com
## 7960 18266 2898 TO mhain@ect.enron.com
## 7961 18267 2898 TO hkrebs@enron.com
## 7962 18268 2899 TO tom.chapman@enron.com
## 7963 18269 2899 TO ben.jacoby@enron.com
## 7964 18270 2899 TO ozzie.pagan@enron.com
## 7965 18271 2899 TO heather.kroll@enron.com
## 7966 18272 2899 TO rogers.herndon@enron.com
## 7967 18273 2899 TO joe.connor@enron.com
## 7968 18274 2899 TO steve.montovano@enron.com
## 7969 18275 2899 TO jeffrey.keenan@enron.com
## 7970 18276 2899 TO reagan.rorschach@enron.com
## 7971 18277 2899 TO bill.rust@enron.com
## 7972 18278 2899 TO john.moore@enron.com
## 7973 18279 2899 TO debbie.chance@enron.com
## 7974 18280 2899 TO ben.jacoby@enron.com
## 7975 18281 2899 TO dave.kellermeyer@enron.com
## 7976 18282 2899 TO jeffrey.keenan@enron.com
## 7977 18283 2899 TO debbie.chance@enron.com
## 7978 18284 2899 TO rusty.stevens@enron.com
## 7979 18285 2899 TO rebecca.walker@enron.com
## 7980 18286 2899 TO john.moore@enron.com
## 7981 18287 2899 TO fred.mitro@enron.com
## 7982 18288 2899 TO raimund.grube@enron.com
## 7983 18289 2899 TO chris.booth@enron.com
## 7984 18290 2899 TO greg.krause@enron.com
## 7985 18291 2899 TO mathew.gimble@enron.com
## 7986 18292 2899 TO steven.krimsky@enron.com
## 7987 18293 2899 TO reagan.rorschach@enron.com
## 7988 18294 2899 TO michelle.zhang@enron.com
## 7989 18295 2899 TO ron.tapscott@enron.com
## 7990 18296 2899 TO mary.hain@enron.com
## 7991 18298 2899 CC joe.hartsoe@enron.com
## 7992 18300 2899 BCC joe.hartsoe@enron.com
## 7993 18301 2900 TO mary.hain@enron.com
## 7994 18313 2902 TO mary.hain@enron.com
## 7995 18314 2902 TO valarie.sabo@enron.com
## 7996 18315 2902 TO christi.nicolay@enron.com
## 7997 18317 2902 TO leslie.reeves@enron.com
## 7998 18318 2902 CC monica.lande@enron.com
## 7999 18319 2902 CC kristin.albrecht@enron.com
## 8000 18320 2902 CC stacey.w.white@enron.com
## 8001 18321 2902 CC tim.belden@enron.com
## 8002 18322 2902 BCC monica.lande@enron.com
## 8003 18323 2902 BCC kristin.albrecht@enron.com
## 8004 18324 2902 BCC stacey.w.white@enron.com
## 8005 18325 2902 BCC tim.belden@enron.com
## 8006 18331 2904 TO mary.hain@enron.com
## 8007 18332 2904 TO christi.nicolay@enron.com
## 8008 18343 2906 CC mary.hain@enron.com
## 8009 18344 2906 CC tim.belden@enron.com
## 8010 18345 2906 CC linda.lawrence@enron.com
## 8011 18346 2906 CC valarie.sabo@enron.com
## 8012 18347 2906 CC thresa.allen@enron.com
## 8013 18348 2906 CC leslie.reeves@enron.com
## 8014 18349 2906 BCC mary.hain@enron.com
## 8015 18350 2906 BCC tim.belden@enron.com
## 8016 18351 2906 BCC linda.lawrence@enron.com
## 8017 18352 2906 BCC valarie.sabo@enron.com
## 8018 18353 2906 BCC thresa.allen@enron.com
## 8019 18354 2906 BCC leslie.reeves@enron.com
## 8020 18364 2908 TO ben.jacoby@enron.com
## 8021 18365 2908 TO dave.kellermeyer@enron.com
## 8022 18366 2908 TO jeffrey.keenan@enron.com
## 8023 18367 2908 TO debbie.chance@enron.com
## 8024 18368 2908 TO rusty.stevens@enron.com
## 8025 18369 2908 TO rebecca.walker@enron.com
## 8026 18370 2908 TO john.moore@enron.com
## 8027 18371 2908 TO fred.mitro@enron.com
## 8028 18372 2908 TO raimund.grube@enron.com
## 8029 18373 2908 TO chris.booth@enron.com
## 8030 18374 2908 TO greg.krause@enron.com
## 8031 18375 2908 TO mathew.gimble@enron.com
## 8032 18376 2908 TO steven.krimsky@enron.com
## 8033 18377 2908 TO reagan.rorschach@enron.com
## 8034 18378 2908 TO michelle.zhang@enron.com
## 8035 18379 2908 TO ron.tapscott@enron.com
## 8036 18380 2908 TO jeff.williams@enron.com
## 8037 18381 2908 TO w.duran@enron.com
## 8038 18383 2908 TO robert.frank@enron.com
## 8039 18384 2908 TO sarah.novosel@enron.com
## 8040 18385 2908 TO joe.hartsoe@enron.com
## 8041 18386 2908 TO jeff.brown@enron.com
## 8042 18388 2908 TO bill.rust@enron.com
## 8043 18389 2908 TO ben.jacoby@enron.com
## 8044 18391 2908 TO john.moore@enron.com
## 8045 18392 2908 TO debbie.chance@enron.com
## 8046 18393 2908 TO patrick.hanse@enron.com
## 8047 18395 2908 TO rogers.herndon@enron.com
## 8048 18396 2908 TO edward.baughman@enron.com
## 8049 18397 2908 TO tom.dutta@enron.com
## 8050 18398 2908 TO ozzie.pagan@enron.com
## 8051 18399 2908 TO tom.hoatson@enron.com
## 8052 18400 2908 TO janine.migden@enron.com
## 8053 18401 2908 TO marchris.robinson@enron.com
## 8054 18402 2908 TO john.moore@enron.com
## 8055 18403 2908 TO bill.moore@enron.com
## 8056 18404 2908 TO robin.kittel@enron.com
## 8057 18405 2908 TO jeffrey.keenan@enron.com
## 8058 18406 2908 TO mary.hain@enron.com
## 8059 18407 2908 TO charles.yeung@enron.com
## 8060 18409 2908 TO rogers.herndon@enron.com
## 8061 18410 2908 TO lloyd.will@enron.com
## 8062 18411 2908 TO barbara.gray@enron.com
## 8063 18412 2908 TO jeffrey.hodge@enron.com
## 8064 18414 2908 TO harry.kingerski@enron.com
## 8065 18415 2908 TO bob.carter@enron.com
## 8066 18416 2908 TO chris.gaffney@enron.com
## 8067 18417 2908 TO barton.clark@enron.com
## 8068 18418 2908 TO sheila.tweed@enron.com
## 8069 18419 2908 TO oscar.dalton@enron.com
## 8070 18420 2908 TO dave.mangskau@enron.com
## 8071 18421 2908 TO kerry.stroup@enron.com
## 8072 18422 2908 TO greg.krause@enron.com
## 8073 18423 2908 TO raimund.grube@enron.com
## 8074 18424 2908 TO david.fairley@enron.com
## 8075 18425 2908 TO janet.dietrich@enron.com
## 8076 18426 2908 TO steve.krimsky@enron.com
## 8077 18427 2908 TO richard.lydecker@enron.com
## 8078 18428 2908 TO mary.hain@enron.com
## 8079 18429 2908 TO fred.mitro@enron.com
## 8080 18430 2908 TO janet.dietrich@enron.com
## 8081 18431 2908 TO richard.lydecker@enron.com
## 8082 18432 2908 TO tom.chapman@enron.com
## 8083 18433 2908 TO steve.walton@enron.com
## 8084 18435 2908 TO rebecca.walker@enron.com
## 8085 18436 2908 TO reagan.rorschach@enron.com
## 8086 18437 2908 TO john.berger@enron.com
## 8087 18438 2908 TO alan.larsen@enron.com
## 8088 18439 2908 TO rusty.stevens@enron.com
## 8089 18440 2908 TO dave.kellermeyer@enron.com
## 8090 18441 2908 TO mathew.gimble@enron.com
## 8091 18442 2908 TO ron.tapscott@enron.com
## 8092 18443 2908 TO susan.landwehr@enron.com
## 8093 18444 2908 TO roy.boston@enron.com
## 8094 18445 2908 TO aleck.dadson@enron.com
## 8095 18446 2908 TO joe.connor@enron.com
## 8096 18447 2908 TO ron.mcnamara@enron.com
## 8097 18448 2908 TO robin.kittel@enron.com
## 8098 18449 2908 TO karen.carter@enron.com
## 8099 18450 2908 TO chris.booth@enron.com
## 8100 18451 2908 TO steve.montovano@enron.com
## 8101 18452 2908 TO marc.ulrich@enron.com
## 8102 18453 2908 TO mitch.robinson@enron.com
## 8103 18454 2909 TO all.states@enron.com
## 8104 18455 2910 TO all.states@enron.com
## 8105 18456 2911 TO mary.hain@enron.com
## 8106 18457 2912 TO mary.hain@enron.com
## 8107 18458 2912 CC christi.nicolay@enron.com
## 8108 18460 2912 BCC christi.nicolay@enron.com
## 8109 18462 2913 TO 20participants@caiso.com
## 8110 18463 2913 CC 20directors@caiso.com
## 8111 18464 2913 BCC 20directors@caiso.com
## 8112 18465 2914 TO joe.connor@enron.com
## 8113 18466 2914 TO tom.chapman@enron.com
## 8114 18467 2914 TO steve.montovano@enron.com
## 8115 18468 2914 TO bill.rust@enron.com
## 8116 18469 2914 TO ben.jacoby@enron.com
## 8117 18470 2914 TO ron.tapscott@enron.com
## 8118 18471 2914 TO walter.coffer@enron.com
## 8119 18472 2914 TO rogers.herndon@enron.com
## 8120 18473 2914 TO ozzie.pagan@enron.com
## 8121 18474 2914 TO heather.kroll@enron.com
## 8122 18475 2914 TO lloyd.will@enron.com
## 8123 18476 2914 TO mitch.robinson@enron.com
## 8124 18478 2914 TO janet.dietrich@enron.com
## 8125 18479 2914 TO ben.jacoby@enron.com
## 8126 18480 2914 TO dave.kellermeyer@enron.com
## 8127 18481 2914 TO jeffrey.keenan@enron.com
## 8128 18482 2914 TO debbie.chance@enron.com
## 8129 18483 2914 TO rusty.stevens@enron.com
## 8130 18484 2914 TO rebecca.walker@enron.com
## 8131 18485 2914 TO john.moore@enron.com
## 8132 18486 2914 TO fred.mitro@enron.com
## 8133 18487 2914 TO raimund.grube@enron.com
## 8134 18488 2914 TO chris.booth@enron.com
## 8135 18489 2914 TO greg.krause@enron.com
## 8136 18490 2914 TO mathew.gimble@enron.com
## 8137 18491 2914 TO steven.krimsky@enron.com
## 8138 18492 2914 TO reagan.rorschach@enron.com
## 8139 18493 2914 TO michelle.zhang@enron.com
## 8140 18494 2914 TO ron.tapscott@enron.com
## 8141 18495 2914 TO jeff.williams@enron.com
## 8142 18496 2914 TO w.duran@enron.com
## 8143 18498 2914 CC joe.hartsoe@enron.com
## 8144 18499 2914 CC mary.hain@enron.com
## 8145 18500 2914 CC steve.walton@enron.com
## 8146 18503 2914 BCC joe.hartsoe@enron.com
## 8147 18504 2914 BCC mary.hain@enron.com
## 8148 18505 2914 BCC steve.walton@enron.com
## 8149 18507 2915 TO nolan.steiner@avistacorp.com
## 8150 18508 2915 TO dvermillion@avistaenergy.com
## 8151 18509 2915 TO rmcmanus@bakerbotts.com
## 8152 18510 2915 TO cgunter@bracepatt.com
## 8153 18511 2915 TO dwatkiss@bracepatt.com
## 8154 18512 2915 TO pfox@bracepatt.com
## 8155 18513 2915 TO rcarroll@bracepatt.com
## 8156 18514 2915 TO gfergus@brobeck.com
## 8157 18515 2915 TO dmbutz@butzdunn.com
## 8158 18516 2915 TO andrzej_kabarowski@cargill.com
## 8159 18517 2915 TO phillip_fantle@cargill.com
## 8160 18518 2915 TO psteele@coral-energy.com
## 8161 18519 2915 TO kjohan@dwp.ci.la.ca.us
## 8162 18520 2915 TO jdne@dynegy.com
## 8163 18521 2915 TO jmpa@dynegy.com
## 8164 18523 2915 TO mary.hain@enron.com
## 8165 18525 2915 TO sstack@enron.com
## 8166 18526 2915 TO jheath@fulbright.com
## 8167 18527 2915 TO jfrizzell@gibbs-bruns.com
## 8168 18528 2915 TO sbishop@gibbs-bruns.com
## 8169 18529 2915 TO gkeltner@jsslaw.com
## 8170 18530 2915 TO mghelms@jsslaw.com
## 8171 18531 2915 TO dpickett@mdbe.com
## 8172 18532 2915 TO gerspamer@mofo.com
## 8173 18533 2915 TO kirvin@mofo.com
## 8174 18534 2915 TO rloeffler@mofo.com
## 8175 18535 2915 TO bcurrey@omm.com
## 8176 18536 2915 TO jstamper@omm.com
## 8177 18537 2915 TO john.fryer@pacificorp.com
## 8178 18538 2915 TO rbstrong@painehamblen.com
## 8179 18539 2915 TO thord@perkinscoie.com
## 8180 18540 2915 TO jtiffany@pillsburywinthrop.com
## 8181 18541 2915 TO nancy.loftin@pinnaclewest.com
## 8182 18542 2915 TO timothy.bolden@pinnaclewest.com
## 8183 18543 2915 TO awu@qeuo.com
## 8184 18544 2915 TO hao@quinnemanuel.com
## 8185 18545 2915 TO mderstine@rhd-law.com
## 8186 18546 2915 TO rheyman@rhd-law.com
## 8187 18547 2915 TO wdsmith@sempra.com
## 8188 18548 2915 TO rbeitler@sempratrading.com
## 8189 18549 2915 TO aorchar@smud.org
## 8190 18550 2915 TO jdalfano@srpnet.com
## 8191 18551 2915 TO paramfjord@stoel.com
## 8192 18552 2915 TO mbrosterman@stroock.com
## 8193 18553 2915 TO mgoldstein@stroock.com
## 8194 18554 2915 TO pjazayeri@stroock.com
## 8195 18555 2915 TO theftler@stroock.com
## 8196 18556 2915 TO ayudkowsky@strook.com
## 8197 18557 2915 TO cfr@vnf.com
## 8198 18558 2915 TO gdb@vnf.com
## 8199 18559 2915 TO hes@vnf.com
## 8200 18560 2916 TO nolan.steiner@avistacorp.com
## 8201 18561 2916 TO dvermillion@avistaenergy.com
## 8202 18562 2916 TO rmcmanus@bakerbotts.com
## 8203 18563 2916 TO asettanni@bracepatt.com
## 8204 18564 2916 TO cgunter@bracepatt.com
## 8205 18565 2916 TO dwatkiss@bracepatt.com
## 8206 18566 2916 TO pfox@bracepatt.com
## 8207 18567 2916 TO rcarroll@bracepatt.com
## 8208 18568 2916 TO jchen@brobeck.com
## 8209 18569 2916 TO dmbutz@butzdunn.com
## 8210 18570 2916 TO andrzej_kabarowski@cargill.com
## 8211 18571 2916 TO phillip_fantle@cargill.com
## 8212 18572 2916 TO psteele@coral-energy.com
## 8213 18573 2916 TO kjohan@dwp.ci.la.ca.us
## 8214 18574 2916 TO jmpa@dynegy.com
## 8215 18575 2916 TO joel.newton@dynegy.com
## 8216 18577 2916 TO mary.hain@enron.com
## 8217 18579 2916 TO sstack@enron.com
## 8218 18580 2916 TO jheath@fulbright.com
## 8219 18581 2916 TO jfrizzell@gibbs-bruns.com
## 8220 18582 2916 TO sbishop@gibbs-bruns.com
## 8221 18583 2916 TO gkeltner@jsslaw.com
## 8222 18584 2916 TO mghelms@jsslaw.com
## 8223 18585 2916 TO dpickett@mdbe.com
## 8224 18586 2916 TO gerspamer@mofo.com
## 8225 18587 2916 TO kirvin@mofo.com
## 8226 18588 2916 TO rloeffler@mofo.com
## 8227 18589 2916 TO bcurrey@omm.com
## 8228 18590 2916 TO jstamper@omm.com
## 8229 18591 2916 TO john.fryer@pacificorp.com
## 8230 18592 2916 TO rbstrong@painehamblen.com
## 8231 18593 2916 TO thord@perkinscoie.com
## 8232 18594 2916 TO jtiffany@pillsburywinthrop.com
## 8233 18595 2916 TO nancy.loftin@pinnaclewest.com
## 8234 18596 2916 TO timothy.bolden@pinnaclewest.com
## 8235 18597 2916 TO dmperlman@poersrcc.com
## 8236 18598 2916 TO rosteen@powersrc.com
## 8237 18599 2916 TO awu@qeuo.com
## 8238 18600 2916 TO hao@quinnemanuel.com
## 8239 18601 2916 TO drusso@reliantenergy.com
## 8240 18602 2916 TO mderstine@rhd-law.com
## 8241 18603 2916 TO rheyman@rhd-law.com
## 8242 18604 2916 TO dgarber@sempra.com
## 8243 18605 2916 TO wdsmith@sempra.com
## 8244 18606 2916 TO rbeitler@sempratrading.com
## 8245 18607 2916 TO aorchar@smud.org
## 8246 18608 2916 TO jdalfano@srpnet.com
## 8247 18609 2916 TO paramfjord@stoel.com
## 8248 18610 2916 TO rcjosephson@stoel.com
## 8249 18611 2916 TO mbrosterman@stroock.com
## 8250 18612 2916 TO mgoldstein@stroock.com
## 8251 18613 2916 TO pjazayeri@stroock.com
## 8252 18614 2916 TO theftler@stroock.com
## 8253 18615 2916 TO antoine.cobb@troutmansanders.com
## 8254 18616 2916 TO cfr@vnf.com
## 8255 18617 2916 TO gdb@vnf.com
## 8256 18618 2916 TO hes@vnf.com
## 8257 18619 2917 TO mary.hain@enron.com
## 8258 18620 2918 TO jim.gilbert@enron.com
## 8259 18621 2918 CC don.hammond@enron.com
## 8260 18622 2918 CC mary.hain@enron.com
## 8261 18623 2918 CC ed.clark@enron.com
## 8262 18624 2918 CC dale.rasmussen@enron.com
## 8263 18625 2918 BCC don.hammond@enron.com
## 8264 18626 2918 BCC mary.hain@enron.com
## 8265 18627 2918 BCC ed.clark@enron.com
## 8266 18628 2918 BCC dale.rasmussen@enron.com
## 8267 18629 2919 TO mary.hain@enron.com
## 8268 18630 2919 CC mcm@vnf.com
## 8269 18631 2919 BCC mcm@vnf.com
## 8270 18632 2920 TO jeff.brown@enron.com
## 8271 18633 2920 TO ron.mcnamara@enron.com
## 8272 18635 2920 TO sarah.novosel@enron.com
## 8273 18636 2920 TO aleck.dadson@enron.com
## 8274 18637 2920 TO daniel.allegretti@enron.com
## 8275 18638 2920 TO howard.fromer@enron.com
## 8276 18639 2920 TO joe.hartsoe@enron.com
## 8277 18640 2920 TO donna.fulton@enron.com
## 8278 18641 2920 TO tom.hoatson@enron.com
## 8279 18642 2920 TO steve.montovano@enron.com
## 8280 18643 2920 TO robin.kittel@enron.com
## 8281 18644 2920 TO jean.ryall@enron.com
## 8282 18645 2920 TO tom.chapman@enron.com
## 8283 18646 2920 TO janine.migden@enron.com
## 8284 18647 2920 TO dave.mangskau@enron.com
## 8285 18648 2920 TO dan.staines@enron.com
## 8286 18649 2920 TO mike.roan@enron.com
## 8287 18650 2920 TO joe.connor@enron.com
## 8288 18651 2920 TO kerry.stroup@enron.com
## 8289 18652 2920 TO steve.walton@enron.com
## 8290 18653 2920 TO mary.hain@enron.com
## 8291 18654 2920 TO ozzie.pagan@enron.com
## 8292 18655 2920 TO heather.kroll@enron.com
## 8293 18656 2920 TO david.fairley@enron.com
## 8294 18657 2920 TO ray.hoppe@enron.com
## 8295 18658 2920 TO george.mccormick@enron.com
## 8296 18659 2920 TO wjennin@enron.com
## 8297 18660 2920 TO joseph.wagner@enron.com
## 8298 18661 2920 TO elizabeth.johnston@enron.com
## 8299 18662 2920 TO bill.rust@enron.com
## 8300 18663 2920 TO kyle.schultz@enron.com
## 8301 18664 2920 TO ben.jacoby@enron.com
## 8302 18665 2920 TO dave.kellermeyer@enron.com
## 8303 18666 2920 TO jeffrey.keenan@enron.com
## 8304 18667 2920 TO debbie.chance@enron.com
## 8305 18668 2920 TO rusty.stevens@enron.com
## 8306 18669 2920 TO rebecca.walker@enron.com
## 8307 18670 2920 TO john.moore@enron.com
## 8308 18671 2920 TO fred.mitro@enron.com
## 8309 18672 2920 TO raimund.grube@enron.com
## 8310 18673 2920 TO chris.booth@enron.com
## 8311 18674 2920 TO greg.krause@enron.com
## 8312 18675 2920 TO mathew.gimble@enron.com
## 8313 18676 2920 TO steven.krimsky@enron.com
## 8314 18677 2920 TO reagan.rorschach@enron.com
## 8315 18678 2920 TO michelle.zhang@enron.com
## 8316 18679 2920 TO ron.tapscott@enron.com
## 8317 18680 2920 TO jeff.williams@enron.com
## 8318 18681 2920 TO w.duran@enron.com
## 8319 18682 2920 TO john.lavorato@enron.com
## 8320 18684 2920 TO marchris.robinson@enron.com
## 8321 18685 2920 TO robin.kittel@enron.com
## 8322 18687 2920 TO robert.kilmer@enron.com
## 8323 18689 2920 TO kyle.schultz@enron.com
## 8324 18692 2920 TO rogers.herndon@enron.com
## 8325 18693 2920 TO bill.moore@enron.com
## 8326 18694 2921 TO mary.hain@enron.com
## 8327 18695 2922 TO don.hammond@enron.com
## 8328 18696 2922 TO jody.blackburn@enron.com
## 8329 18697 2922 TO ed.clark@enron.com
## 8330 18698 2922 CC mary.hain@enron.com
## 8331 18699 2922 BCC mary.hain@enron.com
## 8332 18700 2923 TO vicki.sharp@enron.com
## 8333 18701 2923 TO don.black@enron.com
## 8334 18702 2923 TO christian.yoder@enron.com
## 8335 18703 2923 TO susan.mara@enron.com
## 8336 18704 2923 TO neil.bresnan@enron.com
## 8337 18705 2923 TO alan.comnes@enron.com
## 8338 18706 2923 TO mary.hain@enron.com
## 8339 18707 2923 TO mike.smith@enron.com
## 8340 18708 2923 TO harry.kingerski@enron.com
## 8341 18710 2923 TO rcarroll@bracepatt.com
## 8342 18712 2923 CC leasa.lopez@enron.com
## 8343 18713 2923 CC lysa.akin@enron.com
## 8344 18714 2923 CC rubena.buerger@enron.com
## 8345 18716 2923 BCC leasa.lopez@enron.com
## 8346 18717 2923 BCC lysa.akin@enron.com
## 8347 18718 2923 BCC rubena.buerger@enron.com
## 8348 18719 2924 TO jeff.brown@enron.com
## 8349 18720 2924 TO ron.mcnamara@enron.com
## 8350 18722 2924 TO sarah.novosel@enron.com
## 8351 18723 2924 TO aleck.dadson@enron.com
## 8352 18724 2924 TO daniel.allegretti@enron.com
## 8353 18725 2924 TO howard.fromer@enron.com
## 8354 18726 2924 TO joe.hartsoe@enron.com
## 8355 18727 2924 TO donna.fulton@enron.com
## 8356 18728 2924 TO tom.hoatson@enron.com
## 8357 18729 2924 TO steve.montovano@enron.com
## 8358 18730 2924 TO robin.kittel@enron.com
## 8359 18731 2924 TO jean.ryall@enron.com
## 8360 18732 2924 TO tom.chapman@enron.com
## 8361 18733 2924 TO janine.migden@enron.com
## 8362 18734 2924 TO dave.mangskau@enron.com
## 8363 18735 2924 TO dan.staines@enron.com
## 8364 18736 2924 TO mike.roan@enron.com
## 8365 18737 2924 TO joe.connor@enron.com
## 8366 18738 2924 TO kerry.stroup@enron.com
## 8367 18739 2924 TO steve.walton@enron.com
## 8368 18740 2924 TO mary.hain@enron.com
## 8369 18741 2924 TO alan.comnes@enron.com
## 8370 18742 2924 TO susan.mara@enron.com
## 8371 18743 2924 TO thane.twiggs@enron.com
## 8372 18744 2924 TO lloyd.will@enron.com
## 8373 18746 2925 TO jack.speer@alcoa.com
## 8374 18747 2925 TO crow@millernash.com
## 8375 18748 2925 TO michaelearly@earthlink.net
## 8376 18749 2925 TO sonyamt@premier1.net
## 8377 18750 2925 TO jefschlect@avistacorp.com
## 8378 18751 2925 TO tdeboer@painehamblen.com
## 8379 18752 2925 TO rbstrong@painehamblen.com
## 8380 18753 2925 TO rpierce@avistaenergy.com
## 8381 18754 2925 TO lhamilton@avistaenergy.com
## 8382 18755 2925 TO pete@ashland.or.us
## 8383 18756 2925 TO mike.macdougall@powerex.com
## 8384 18757 2925 TO pfox@bracepatt.com
## 8385 18758 2925 TO pjburger@bpa.gov
## 8386 18759 2925 TO jdwright@bpa.gov
## 8387 18760 2925 TO jpw@duncanallen.com
## 8388 18761 2925 TO tstevenson@ci.burbank.ca.us
## 8389 18762 2925 TO seligman@teleport.com
## 8390 18763 2925 TO kmoxness@cencoast.com
## 8391 18764 2925 TO ghuhta@cowlitzpud.org
## 8392 18765 2925 TO bessex@cowlitzpud.org
## 8393 18766 2925 TO rkindley@schwabe.com
## 8394 18767 2925 TO gregb@clatskanie.com
## 8395 18768 2925 TO johk@critfc.org
## 8396 18769 2925 TO cub@teleport.com
## 8397 18770 2925 TO cwagers@dcpud.org
## 8398 18771 2925 TO dws@keywaycorp.com
## 8399 18772 2925 TO pmurphy@mbllp.com
## 8400 18773 2925 TO bferranti@mbllp.com
## 8401 18774 2925 TO pete.forsyth@kaiseral.com
## 8402 18775 2925 TO alan@epud.org
## 8403 18776 2925 TO mhain@ect.enron.com
## 8404 18777 2925 TO jhartso@enron.com
## 8405 18778 2925 TO john.yanov@eweb.eugene.or.us
## 8406 18779 2925 TO tgrim@chbh.com
## 8407 18780 2925 TO townsend@chbh.com
## 8408 18781 2925 TO dbouchard@ci.forest-grove.or.us
## 8409 18782 2925 TO joynnr@mresearch.com
## 8410 18783 2925 TO lyn_williams@pgn.com
## 8411 18784 2925 TO aw_turner@pgn.com
## 8412 18785 2925 TO darcy@tonkon.com
## 8413 18786 2925 TO joynnr@mresearch.com
## 8414 18787 2925 TO rfoiani@gcpud.org
## 8415 18788 2925 TO kknitte@gcpud.org
## 8416 18789 2925 TO jdeason@chbh.com
## 8417 18790 2925 TO rle@givenspursley.com
## 8418 18791 2925 TO pspi@dynegy.com
## 8419 18792 2925 TO ias@dvclaw.com
## 8420 18793 2925 TO lwolv@worldaccessnet.com
## 8421 18794 2925 TO pnichols@idahopower.com
## 8422 18795 2925 TO pobenchain@idahopower.com
## 8423 18796 2925 TO elisackf@aol.com
## 8424 18797 2925 TO johncameron@dwt.com
## 8425 18798 2925 TO tracigrundon@dwt.com
## 8426 18799 2925 TO dparrish@prmllp.com
## 8427 18800 2925 TO jlh@mc-power.com
## 8428 18801 2925 TO mthomas@mtpower.com
## 8429 18802 2925 TO mstauffer@mtpower.com
## 8430 18803 2925 TO lawyer@teleport.com
## 8431 18804 2925 TO steve@nwenergy.org
## 8432 18805 2925 TO bpadiscovery@merkellaw.com
## 8433 18806 2925 TO jsaven@pacifier.com
## 8434 18807 2925 TO janet.prewitt@state.or.us
## 8435 18808 2925 TO marc.hellman@state.or.us
## 8436 18809 2925 TO eric.larson@ormetwahchang.com
## 8437 18810 2925 TO efinklea@energyadvocates.com
## 8438 18811 2925 TO tgrim@chbh.com
## 8439 18812 2925 TO townsend@chbh.com
## 8440 18813 2925 TO lpeters@pacifier.com
## 8441 18814 2925 TO pljacklin@stoel.com
## 8442 18815 2925 TO schall@stoel.com
## 8443 18816 2925 TO scott.brattebo@pacificorp.com
## 8444 18817 2925 TO dbkinnard@ppmt.com
## 8445 18818 2925 TO dmacgregor@morganlewis.com
## 8446 18819 2925 TO erick_johnson@pgnc.com
## 8447 18820 2925 TO doug_brawley@pngc.com
## 8448 18821 2925 TO darkills@popud.com
## 8449 18822 2925 TO kyle@ppcpdx.org
## 8450 18823 2925 TO peter@richardsonandoleary.com
## 8451 18824 2925 TO marss@perkinscoie.com
## 8452 18825 2925 TO dfaulk@puget.com
## 8453 18826 2925 TO stephens@eslerstephens.com
## 8454 18827 2925 TO rachel@rnp.org
## 8455 18828 2925 TO lawyer@teleport.com
## 8456 18829 2925 TO jacksonc@ida.net
## 8457 18830 2925 TO kevin.clark@ci.seattle.wa.us
## 8458 18831 2925 TO ali.rodol@ci.seattle.wa.us
## 8459 18832 2925 TO energlaw@aol.com
## 8460 18833 2925 TO bassl@sce.com
## 8461 18834 2925 TO jeffn@subutil.com
## 8462 18835 2925 TO mershanlaw@aol.com
## 8463 18836 2925 TO pvickery@tpud.org
## 8464 18837 2925 TO skaravit@ci.tacoma.wa.us
## 8465 18838 2925 TO mmetzler@ci.tacoma.wa.us
## 8466 18839 2925 TO jrb_ora@televar.com
## 8467 18840 2925 TO dan.meek@usa.net
## 8468 18841 2925 TO kevinbell@cvresearch.com
## 8469 18842 2925 TO creali@vanalco.com
## 8470 18843 2925 TO doney@ixi.net
## 8471 18844 2925 TO terrym@millcreeklaw.com
## 8472 18845 2925 TO huse@eesconsulting.com
## 8473 18846 2925 TO simonf@atg.wa.gov
## 8474 18847 2925 TO mattsl@atg.wa.gov
## 8475 18848 2925 TO wmgt3@montana.com
## 8476 18849 2925 TO ccopatrny@e-z.net
## 8477 18850 2925 TO abuckley@wutc.wa.gov
## 8478 18851 2925 TO sjohnsto@wutc.wa.gov
## 8479 18852 2925 TO weaver@yakima.wa.com
## 8480 18853 2925 TO archive-power-ratecase@bpa.gov
## 8481 18854 2925 TO discoveryparalegal@bpa.gov
## 8482 18855 2926 TO daniel.allegretti@enron.com
## 8483 18856 2926 TO joe.allen@enron.com
## 8484 18857 2926 TO scott.bolton@enron.com
## 8485 18858 2926 TO stacey.bolton@enron.com
## 8486 18859 2926 TO roy.boston@enron.com
## 8487 18860 2926 TO hap.boyd@enron.com
## 8488 18861 2926 TO rob.bradley@enron.com
## 8489 18862 2926 TO jeff.brown@enron.com
## 8490 18863 2926 TO margaret.carson@enron.com
## 8491 18864 2926 TO wiley.cauthen@enron.com
## 8492 18865 2926 TO tom.chapman@enron.com
## 8493 18866 2926 TO carolyn.cooney@enron.com
## 8494 18869 2926 TO tom.delaney@enron.com
## 8495 18870 2926 TO linda.fitzgerrell@enron.com
## 8496 18871 2926 TO howard.fromer@enron.com
## 8497 18872 2926 TO janel.guerrero@enron.com
## 8498 18873 2926 TO mary.hain@enron.com
## 8499 18874 2926 TO john.hardy@enron.com
## 8500 18875 2926 TO joe.hartsoe@enron.com
## 8501 18876 2926 TO nancy.hetrick@enron.com
## 8502 18877 2926 TO jean.ryall@enron.com
## 8503 18878 2926 TO aleck.dadson@enron.com
## 8504 18879 2926 TO robert.hemstock@enron.com
## 8505 18880 2926 TO alberto.levy@enron.com
## 8506 18881 2926 TO ron.mcnamara@enron.com
## 8507 18882 2926 TO mike.roan@enron.com
## 8508 18883 2926 TO thane.twiggs@enron.com
## 8509 18884 2926 TO steve.walton@enron.com
## 8510 18885 2926 TO ricardo.charvel@enron.com
## 8511 18886 2926 TO kikumi.kishigami@enron.com
## 8512 18887 2926 TO harry.kingerski@enron.com
## 8513 18888 2926 TO stella.chan@enron.com
## 8514 18889 2926 TO vinio.floris@enron.com
## 8515 18890 2926 TO xi.xi@enron.com
## 8516 18891 2926 TO tracy.cooper@enron.com
## 8517 18892 2926 TO dan.staines@enron.com
## 8518 18893 2926 TO kathleen.sullivan@enron.com
## 8519 18894 2926 TO kerry.stroup@enron.com
## 8520 18895 2926 TO alan.comnes@enron.com
## 8521 18896 2926 TO marcie.milner@enron.com
## 8522 18897 2926 TO donna.fulton@enron.com
## 8523 18898 2926 TO allison.navin@enron.com
## 8524 18899 2926 TO lora.sullivan@enron.com
## 8525 18900 2926 TO stephen.burns@enron.com
## 8526 18901 2926 TO tom.briggs@enron.com
## 8527 18902 2926 TO linda.robertson@enron.com
## 8528 18903 2926 TO robert.neustaedter@enron.com
## 8529 18904 2926 TO gloria.ogenyi@enron.com
## 8530 18905 2926 TO patrick.keene@enron.com
## 8531 18906 2926 TO robert.frank@enron.com
## 8532 18907 2926 TO joe.hillings@enron.com
## 8533 18908 2926 TO tom.hoatson@enron.com
## 8534 18909 2926 TO stan.horton@enron.com
## 8535 18910 2926 TO barbara.hueter@enron.com
## 8536 18911 2926 TO richard.ingersoll@enron.com
## 8537 18912 2926 TO paul.kaufman@enron.com
## 8538 18914 2926 TO jeffrey.keeler@enron.com
## 8539 18915 2926 TO robin.kittel@enron.com
## 8540 18916 2926 TO susan.landwehr@enron.com
## 8541 18917 2926 TO leslie.lawner@enron.com
## 8542 18918 2926 TO donald.lassere@enron.com
## 8543 18919 2926 TO lara.leibman@enron.com
## 8544 18920 2926 TO rochelle.lessner@enron.com
## 8545 18921 2926 TO chris.long@enron.com
## 8546 18922 2926 TO dave.mangskau@enron.com
## 8547 18923 2926 TO kathleen.magruder@enron.com
## 8548 18924 2926 TO susan.mara@enron.com
## 8549 18925 2926 TO sandra.mccubbin@enron.com
## 8550 18926 2926 TO becky.merola@enron.com
## 8551 18927 2926 TO janine.migden@enron.com
## 8552 18928 2926 TO fred.miller@enron.com
## 8553 18929 2926 TO mary.miller@enron.com
## 8554 18930 2926 TO steve.montovano@enron.com
## 8555 18931 2926 TO bill.moore@enron.com
## 8556 18932 2926 TO sue.nord@enron.com
## 8557 18933 2926 TO christi.nicolay@enron.com
## 8558 18934 2926 TO lou.pai@enron.com
## 8559 18935 2926 TO sarah.novosel@enron.com
## 8560 18936 2926 TO christie.patrick@enron.com
## 8561 18937 2926 TO mona.petrochko@enron.com
## 8562 18938 2926 TO scott.reblitz@enron.com
## 8563 18939 2926 TO marchris.robinson@enron.com
## 8564 18940 2926 TO thomas.reichelderfer@enron.com
## 8565 18941 2926 TO fred.rimington@enron.com
## 8566 18942 2926 TO frank.rishe@enron.com
## 8567 18943 2926 TO cynthia.sandherr@enron.com
## 8568 18944 2926 TO gavin.russo@enron.com
## 8569 18945 2926 TO dave.schafer@enron.com
## 8570 18947 2926 TO tom.shelton@enron.com
## 8571 18948 2926 TO richard.shepherd@enron.com
## 8572 18950 2926 TO lon.stanton@enron.com
## 8573 18952 2926 TO michael.terraso@enron.com
## 8574 18953 2926 TO henry.van@enron.com
## 8575 18954 2926 TO terence.thorn@enron.com
## 8576 18955 2926 TO kathleen.wagner@enron.com
## 8577 18956 2926 TO susan.worthen@enron.com
## 8578 18957 2926 TO charles.yeung@enron.com
## 8579 18958 2926 TO robert.wilson@enron.com
## 8580 18959 2926 TO lisa.yoho@enron.com
## 8581 18960 2926 CC james.sandt@enron.com
## 8582 18961 2926 BCC james.sandt@enron.com
## 8583 18977 2928 TO 20participants@caiso.com
## 8584 18980 2929 TO linda.robertson@enron.com
## 8585 18982 2929 TO susan.mara@enron.com
## 8586 18983 2929 TO mary.hain@enron.com
## 8587 18985 2929 TO mark.palmer@enron.com
## 8588 18986 2930 TO 20participants@caiso.com
## 8589 18987 2931 TO mhain@ect.enron.com
## 8590 18988 2931 TO hkrebs@enron.com
## 8591 18989 2932 TO multi8@wscc.com
## 8592 18991 2934 TO jeff.brown@enron.com
## 8593 18992 2934 TO ron.mcnamara@enron.com
## 8594 18994 2934 TO sarah.novosel@enron.com
## 8595 18995 2934 TO aleck.dadson@enron.com
## 8596 18996 2934 TO daniel.allegretti@enron.com
## 8597 18997 2934 TO howard.fromer@enron.com
## 8598 18998 2934 TO joe.hartsoe@enron.com
## 8599 18999 2934 TO donna.fulton@enron.com
## 8600 19000 2934 TO tom.hoatson@enron.com
## 8601 19001 2934 TO steve.montovano@enron.com
## 8602 19002 2934 TO robin.kittel@enron.com
## 8603 19003 2934 TO jean.ryall@enron.com
## 8604 19004 2934 TO tom.chapman@enron.com
## 8605 19005 2934 TO janine.migden@enron.com
## 8606 19006 2934 TO dave.mangskau@enron.com
## 8607 19007 2934 TO dan.staines@enron.com
## 8608 19008 2934 TO mike.roan@enron.com
## 8609 19009 2934 TO joe.connor@enron.com
## 8610 19010 2934 TO kerry.stroup@enron.com
## 8611 19011 2934 TO steve.walton@enron.com
## 8612 19012 2934 TO mary.hain@enron.com
## 8613 19013 2934 TO alan.comnes@enron.com
## 8614 19014 2934 TO susan.mara@enron.com
## 8615 19015 2934 TO thane.twiggs@enron.com
## 8616 19016 2934 TO rogers.herndon@enron.com
## 8617 19018 2934 TO ozzie.pagan@enron.com
## 8618 19019 2934 TO heather.kroll@enron.com
## 8619 19020 2934 TO david.fairley@enron.com
## 8620 19021 2934 TO george.mccormick@enron.com
## 8621 19022 2934 TO wjennin@enron.com
## 8622 19023 2934 TO joseph.wagner@enron.com
## 8623 19024 2934 TO elizabeth.johnston@enron.com
## 8624 19025 2934 TO bill.rust@enron.com
## 8625 19026 2934 TO reagan.rorschach@enron.com
## 8626 19027 2934 TO edith.cross@enron.com
## 8627 19028 2934 TO berney.aucoin@enron.com
## 8628 19032 2934 TO laura.podurgiel@enron.com
## 8629 19035 2935 TO mhain@ect.enron.com
## 8630 19036 2936 TO The eThink Team@ENRON
## 8631 19037 2937 TO cruane@quinngillespie.com
## 8632 19038 2937 TO robert.bruce@enron.com
## 8633 19039 2937 TO donna.lowry@enron.com
## 8634 19040 2937 TO elliot.mainzer@enron.com
## 8635 19041 2937 TO assad@elektro.com.br
## 8636 19042 2937 TO alan.comnes@enron.com
## 8637 19043 2937 TO alberto.levy@enron.com
## 8638 19044 2937 TO aleck.dadson@enron.com
## 8639 19045 2937 TO allison.navin@enron.com
## 8640 19046 2937 TO amy.fabian@enron.com
## 8641 19047 2937 TO barbara.hueter@enron.com
## 8642 19048 2937 TO bernadette.hawkins@enron.com
## 8643 19049 2937 TO bill.moore@enron.com
## 8644 19050 2937 TO cristinah@elektro.com.br
## 8645 19051 2937 TO carlos.azevedo@enron.com
## 8646 19052 2937 TO carmen.perez@enron.com
## 8647 19053 2937 TO carolyn.cooney@enron.com
## 8648 19054 2937 TO charles.yeung@enron.com
## 8649 19055 2937 TO chauncey.hood@enron.com
## 8650 19056 2937 TO chris.long@enron.com
## 8651 19057 2937 TO christi.nicolay@enron.com
## 8652 19058 2937 TO dan.staines@enron.com
## 8653 19059 2937 TO daniel.allegretti@enron.com
## 8654 19060 2937 TO dave.mangskau@enron.com
## 8655 19061 2937 TO donald.lassere@enron.com
## 8656 19062 2937 TO donna.fulton@enron.com
## 8657 19063 2937 TO eidy.catala@enron.com
## 8658 19064 2937 TO elizabeth.linnell@enron.com
## 8659 19065 2937 TO eric.benson@enron.com
## 8660 19066 2937 TO frank.rishe@enron.com
## 8661 19067 2937 TO geriann.warner@enron.com
## 8662 19068 2937 TO germain.palmer@enron.com
## 8663 19069 2937 TO ginger.dernehl@enron.com
## 8664 19070 2937 TO gisele.braz@enron.com
## 8665 19071 2937 TO gloria.ogenyi@enron.com
## 8666 19072 2937 TO guillermo.canovas@enron.com
## 8667 19073 2937 TO harry.kingerski@enron.com
## 8668 19074 2937 TO howard.fromer@enron.com
## 8669 19075 2937 TO jpr@ceibo.entelnet.bo
## 8670 19077 2937 TO janel.guerrero@enron.com
## 8671 19078 2937 TO janine.migden@enron.com
## 8672 19079 2937 TO javier.pantoja@enron.com
## 8673 19080 2937 TO jean.dressler@enron.com
## 8674 19081 2937 TO jean.ryall@enron.com
## 8675 19082 2937 TO jeff.brown@enron.com
## 8676 19084 2937 TO jeffrey.keeler@enron.com
## 8677 19085 2937 TO joao.paixao@enron.com
## 8678 19086 2937 TO joe.allen@enron.com
## 8679 19087 2937 TO joe.connor@enron.com
## 8680 19088 2937 TO joe.hartsoe@enron.com
## 8681 19089 2937 TO joe.hillings@enron.com
## 8682 19090 2937 TO jose.bestard@enron.com
## 8683 19091 2937 TO joseph.alamo@enron.com
## 8684 19092 2937 TO kathleen.sullivan@enron.com
## 8685 19093 2937 TO kerry.stroup@enron.com
## 8686 19094 2937 TO kikumi.kishigami@enron.com
## 8687 19095 2937 TO kirsten.bellas@enron.com
## 8688 19096 2937 TO lara.leibman@enron.com
## 8689 19097 2937 TO laurie.knight@enron.com
## 8690 19098 2937 TO leslie.lawner@enron.com
## 8691 19099 2937 TO linda.noske@enron.com
## 8692 19100 2937 TO linda.robertson@enron.com
## 8693 19101 2937 TO lindsay.meade@enron.com
## 8694 19102 2937 TO lisa.yoho@enron.com
## 8695 19103 2937 TO lora.sullivan@enron.com
## 8696 19104 2937 TO luiz.maurer@enron.com
## 8697 19105 2937 TO lysa.akin@enron.com
## 8698 19106 2937 TO marchris.robinson@enron.com
## 8699 19107 2937 TO marcia.linton@enron.com
## 8700 19108 2937 TO mary.hain@enron.com
## 8701 19109 2937 TO maureen.mcvicker@enron.com
## 8702 19110 2937 TO melinda.pharms@enron.com
## 8703 19111 2937 TO mike.roan@enron.com
## 8704 19112 2937 TO mona.petrochko@enron.com
## 8705 19113 2937 TO nancy.hetrick@enron.com
## 8706 19114 2937 TO patrick.keene@enron.com
## 8707 19115 2937 TO paul.kaufman@enron.com
## 8708 19116 2937 TO ray.alvarez@enron.com
## 8709 19117 2937 TO rebecca.cantrell@enron.com
## 8710 19118 2937 TO ricardo.charvel@enron.com
## 8711 19119 2937 TO richard.ingersoll@enron.com
## 8712 19121 2937 TO robert.frank@enron.com
## 8713 19122 2937 TO robert.hemstock@enron.com
## 8714 19123 2937 TO robert.neustaedter@enron.com
## 8715 19124 2937 TO robin.kittel@enron.com
## 8716 19125 2937 TO ron.mcnamara@enron.com
## 8717 19126 2937 TO roy.boston@enron.com
## 8718 19127 2937 TO rubena.buerger@enron.com
## 8719 19128 2937 TO sandra.mccubbin@enron.com
## 8720 19129 2937 TO sarah.novosel@enron.com
## 8721 19130 2937 TO scott.bolton@enron.com
## 8722 19131 2937 TO sergio.assad@enron.com
## 8723 19132 2937 TO stella.chan@enron.com
## 8724 19133 2937 TO stephen.burns@enron.com
## 8725 19134 2937 TO steve.montovano@enron.com
## 8726 19135 2937 TO steve.walton@enron.com
## 8727 19137 2937 TO sue.nord@enron.com
## 8728 19138 2937 TO susan.mara@enron.com
## 8729 19139 2937 TO susan.landwehr@enron.com
## 8730 19140 2937 TO terri.miller@enron.com
## 8731 19141 2937 TO thane.twiggs@enron.com
## 8732 19142 2937 TO tom.briggs@enron.com
## 8733 19143 2937 TO tom.chapman@enron.com
## 8734 19144 2937 TO tom.hoatson@enron.com
## 8735 19145 2937 TO valeria.lima@enron.com
## 8736 19146 2937 TO vinio.floris@enron.com
## 8737 19147 2937 TO xi.xi@enron.com
## 8738 19148 2937 TO jeffrey.keeler@enron.com
## 8739 19149 2937 TO stacey.bolton@enron.com
## 8740 19150 2937 TO mary.schoen@enron.com
## 8741 19151 2937 TO miyung.buster@enron.com
## 8742 19152 2937 TO elizabeth.linnell@enron.com
## 8743 19153 2937 TO lynnette.barnes@enron.com
## 8744 19154 2937 TO linda.lawrence@enron.com
## 8745 19155 2937 TO earlene.o connell@enron.com
## 8746 19156 2937 TO margo.reyna@enron.com
## 8747 19157 2937 TO gus.perez@enron.com
## 8748 19158 2937 TO angela.wilson@enron.com
## 8749 19159 2937 TO sharonda.stephens@enron.com
## 8750 19160 2937 TO eric.benson@enron.com
## 8751 19161 2937 TO john.neslage@enron.com
## 8752 19163 2937 TO marcia.linton@enron.com
## 8753 19164 2937 TO margaret.carson@enron.com
## 8754 19165 2937 TO joan.stransky@enron.com
## 8755 19166 2938 TO gdahlke@painehamblen.com
## 8756 19167 2938 TO mary.hain@enron.com
## 8757 19168 2938 TO deb@aelaw.com
## 8758 19169 2938 TO shellyr@teleport.com
## 8759 19170 2938 TO cfi1@tca-us.com
## 8760 19171 2938 CC sdleonard@earthlink.net
## 8761 19172 2938 CC pmohler@hewm.com
## 8762 19173 2938 CC cwestadt@sppc.com
## 8763 19174 2938 CC sberman@hewm.com
## 8764 19175 2938 BCC sdleonard@earthlink.net
## 8765 19176 2938 BCC pmohler@hewm.com
## 8766 19177 2938 BCC cwestadt@sppc.com
## 8767 19178 2938 BCC sberman@hewm.com
## 8768 19179 2939 TO kcurry@bracepatt.com
## 8769 19180 2939 TO dwatkiss@bracepatt.com
## 8770 19181 2939 CC james.keller@enron.com
## 8771 19182 2939 CC mary.hain@enron.com
## 8772 19183 2939 BCC james.keller@enron.com
## 8773 19184 2939 BCC mary.hain@enron.com
## 8774 19185 2940 TO shari.stack@enron.com
## 8775 19186 2940 CC john.malowney@enron.com
## 8776 19187 2940 CC mary.hain@enron.com
## 8777 19189 2940 BCC john.malowney@enron.com
## 8778 19190 2940 BCC mary.hain@enron.com
## 8779 19192 2941 TO mary.hain@enron.com
## 8780 19193 2941 CC gporter@sppc.com
## 8781 19194 2941 BCC gporter@sppc.com
## 8782 19195 2942 TO mary.hain@enron.com
## 8783 19196 2942 CC marc.pana@enron.com
## 8784 19197 2942 BCC marc.pana@enron.com
## 8785 19198 2943 TO 20participants@caiso.com
## 8786 19199 2944 TO linda.noske@enron.com
## 8787 19200 2944 CC mary.hain@enron.com
## 8788 19201 2944 BCC mary.hain@enron.com
## 8789 19202 2945 TO portland.desk@enron.com
## 8790 19203 2945 CC duong.luu@enron.com
## 8791 19204 2945 CC will.smith@enron.com
## 8792 19205 2945 CC steve.nat@enron.com
## 8793 19206 2945 CC dan.dietrich@enron.com
## 8794 19207 2945 CC david.steiner@enron.com
## 8795 19208 2945 BCC duong.luu@enron.com
## 8796 19209 2945 BCC will.smith@enron.com
## 8797 19210 2945 BCC steve.nat@enron.com
## 8798 19211 2945 BCC dan.dietrich@enron.com
## 8799 19212 2945 BCC david.steiner@enron.com
## 8800 19213 2946 TO bill@beachheadmusic.com
## 8801 19224 2948 TO jeff.brown@enron.com
## 8802 19225 2948 TO ron.mcnamara@enron.com
## 8803 19227 2948 TO sarah.novosel@enron.com
## 8804 19228 2948 TO aleck.dadson@enron.com
## 8805 19229 2948 TO daniel.allegretti@enron.com
## 8806 19230 2948 TO howard.fromer@enron.com
## 8807 19231 2948 TO joe.hartsoe@enron.com
## 8808 19232 2948 TO donna.fulton@enron.com
## 8809 19233 2948 TO tom.hoatson@enron.com
## 8810 19234 2948 TO steve.montovano@enron.com
## 8811 19235 2948 TO robin.kittel@enron.com
## 8812 19236 2948 TO jean.ryall@enron.com
## 8813 19237 2948 TO tom.chapman@enron.com
## 8814 19238 2948 TO janine.migden@enron.com
## 8815 19239 2948 TO dave.mangskau@enron.com
## 8816 19240 2948 TO dan.staines@enron.com
## 8817 19241 2948 TO mike.roan@enron.com
## 8818 19242 2948 TO joe.connor@enron.com
## 8819 19243 2948 TO kerry.stroup@enron.com
## 8820 19244 2948 TO steve.walton@enron.com
## 8821 19245 2948 TO mary.hain@enron.com
## 8822 19246 2948 CC berney.aucoin@enron.com
## 8823 19247 2948 BCC berney.aucoin@enron.com
## 8824 19249 2949 CC alan.comnes@enron.com
## 8825 19250 2949 CC chris.calger@enron.com
## 8826 19251 2949 CC mary.hain@enron.com
## 8827 19252 2949 CC paul.kaufman@enron.com
## 8828 19253 2949 CC richard.ingersoll@enron.com
## 8829 19254 2949 CC robert.frank@enron.com
## 8830 19255 2949 CC steve.walton@enron.com
## 8831 19256 2949 CC tim.belden@enron.com
## 8832 19257 2949 BCC alan.comnes@enron.com
## 8833 19258 2949 BCC chris.calger@enron.com
## 8834 19259 2949 BCC mary.hain@enron.com
## 8835 19260 2949 BCC paul.kaufman@enron.com
## 8836 19261 2949 BCC richard.ingersoll@enron.com
## 8837 19262 2949 BCC robert.frank@enron.com
## 8838 19263 2949 BCC steve.walton@enron.com
## 8839 19264 2949 BCC tim.belden@enron.com
## 8840 19265 2950 TO jeff.brown@enron.com
## 8841 19266 2950 TO ron.mcnamara@enron.com
## 8842 19268 2950 TO sarah.novosel@enron.com
## 8843 19269 2950 TO aleck.dadson@enron.com
## 8844 19270 2950 TO daniel.allegretti@enron.com
## 8845 19271 2950 TO howard.fromer@enron.com
## 8846 19272 2950 TO joe.hartsoe@enron.com
## 8847 19273 2950 TO donna.fulton@enron.com
## 8848 19274 2950 TO tom.hoatson@enron.com
## 8849 19275 2950 TO steve.montovano@enron.com
## 8850 19276 2950 TO jean.ryall@enron.com
## 8851 19277 2950 TO tom.chapman@enron.com
## 8852 19278 2950 TO janine.migden@enron.com
## 8853 19279 2950 TO dave.mangskau@enron.com
## 8854 19280 2950 TO dan.staines@enron.com
## 8855 19281 2950 TO mike.roan@enron.com
## 8856 19282 2950 TO joe.connor@enron.com
## 8857 19283 2950 TO kerry.stroup@enron.com
## 8858 19284 2950 TO steve.walton@enron.com
## 8859 19285 2950 TO mary.hain@enron.com
## 8860 19286 2950 TO alan.comnes@enron.com
## 8861 19287 2950 TO susan.mara@enron.com
## 8862 19288 2950 TO thane.twiggs@enron.com
## 8863 19289 2950 TO jader@enron.com
## 8864 19290 2950 TO michael.brown@enron.com
## 8865 19291 2950 TO mark.bernstein@enron.com
## 8866 19292 2950 TO scott.healy@enron.com
## 8867 19293 2950 TO john.llodra@enron.com
## 8868 19294 2950 TO janelle.scheuer@enron.com
## 8869 19295 2950 TO george.wood@enron.com
## 8870 19296 2950 TO david.guillaume@enron.com
## 8871 19297 2950 TO joe.gordon@enron.com
## 8872 19298 2950 TO splauch@enron.com
## 8873 19299 2950 TO jennifer.n.stewart@enron.com
## 8874 19300 2950 TO tom.dutta@enron.com
## 8875 19301 2950 TO posey.martinez@enron.com
## 8876 19302 2950 TO jim.meyn@enron.com
## 8877 19303 2950 TO berney.aucoin@enron.com
## 8878 19304 2950 TO pearce.hammond@enron.com
## 8879 19305 2950 TO ozzie.pagan@enron.com
## 8880 19306 2950 TO heather.kroll@enron.com
## 8881 19307 2950 TO david.fairley@enron.com
## 8882 19308 2950 TO george.mccormick@enron.com
## 8883 19309 2950 TO wjennin@enron.com
## 8884 19310 2950 TO joseph.wagner@enron.com
## 8885 19311 2950 TO elizabeth.johnston@enron.com
## 8886 19312 2950 TO bill.rust@enron.com
## 8887 19313 2950 TO reagan.rorschach@enron.com
## 8888 19314 2950 TO edith.cross@enron.com
## 8889 19315 2950 TO berney.aucoin@enron.com
## 8890 19316 2950 TO steve.wang@enron.com
## 8891 19317 2950 TO ebaughm@enron.com
## 8892 19318 2950 TO terri.clynes@enron.com
## 8893 19319 2950 TO oscar.dalton@enron.com
## 8894 19320 2950 TO doug.sewell@enron.com
## 8895 19321 2950 TO kcompea@enron.com
## 8896 19322 2950 TO mike.e.kelly@enron.com
## 8897 19323 2950 TO gary.justice@enron.com
## 8898 19324 2950 TO patrick.hanse@enron.com
## 8899 19325 2950 TO brad.morse@enron.com
## 8900 19326 2950 TO berney.aucoin@enron.com
## 8901 19327 2950 TO bill.rust@enron.com
## 8902 19328 2950 TO bruce.sukaly@enron.com
## 8903 19329 2950 TO mike.curry@enron.com
## 8904 19330 2950 TO jducote@enron.com
## 8905 19331 2950 TO drew.tingleaf@enron.com
## 8906 19332 2950 TO cahn@enron.com
## 8907 19333 2950 TO russ.porter@enron.com
## 8908 19334 2950 TO jason.wiesepape@enron.com
## 8909 19335 2950 TO berney.aucoin@enron.com
## 8910 19336 2950 TO ben.jacoby@enron.com
## 8911 19337 2950 TO dave.kellermeyer@enron.com
## 8912 19338 2950 TO jeffrey.keenan@enron.com
## 8913 19339 2950 TO rusty.stevens@enron.com
## 8914 19340 2950 TO rebecca.walker@enron.com
## 8915 19341 2950 TO john.moore@enron.com
## 8916 19342 2950 TO fred.mitro@enron.com
## 8917 19343 2950 TO raimund.grube@enron.com
## 8918 19344 2950 TO chris.booth@enron.com
## 8919 19345 2950 TO greg.krause@enron.com
## 8920 19346 2950 TO mathew.gimble@enron.com
## 8921 19347 2950 TO steven.krimsky@enron.com
## 8922 19348 2950 TO michelle.zhang@enron.com
## 8923 19349 2950 TO ron.tapscott@enron.com
## 8924 19350 2950 TO jeff.williams@enron.com
## 8925 19351 2950 TO w.duran@enron.com
## 8926 19354 2950 TO dennis.benevides@enron.com
## 8927 19355 2950 TO suneet.sharma@enron.com
## 8928 19356 2950 TO john.zurita@enron.com
## 8929 19358 2950 TO tim.belden@enron.com
## 8930 19359 2950 TO w.duran@enron.com
## 8931 19360 2950 TO mitch.robinson@enron.com
## 8932 19361 2950 TO lloyd.will@enron.com
## 8933 19362 2951 TO joe.allen@enron.com
## 8934 19363 2951 TO scott.bolton@enron.com
## 8935 19364 2951 TO stacey.bolton@enron.com
## 8936 19365 2951 TO roy.boston@enron.com
## 8937 19366 2951 TO hap.boyd@enron.com
## 8938 19367 2951 TO jeff.brown@enron.com
## 8939 19368 2951 TO margaret.carson@enron.com
## 8940 19369 2951 TO wiley.cauthen@enron.com
## 8941 19370 2951 TO carolyn.cooney@enron.com
## 8942 19373 2951 TO tom.delaney@enron.com
## 8943 19374 2951 TO linda.fitzgerrell@enron.com
## 8944 19375 2951 TO howard.fromer@enron.com
## 8945 19376 2951 TO janel.guerrero@enron.com
## 8946 19377 2951 TO mary.hain@enron.com
## 8947 19378 2951 TO john.hardy@enron.com
## 8948 19379 2951 TO joe.hartsoe@enron.com
## 8949 19380 2951 TO nancy.hetrick@enron.com
## 8950 19381 2951 TO jean.ryall@enron.com
## 8951 19382 2951 TO robert.hemstock@enron.com
## 8952 19383 2951 TO alberto.levy@enron.com
## 8953 19384 2951 TO ron.mcnamara@enron.com
## 8954 19385 2951 TO mike.roan@enron.com
## 8955 19386 2951 TO thane.twiggs@enron.com
## 8956 19387 2951 TO steve.walton@enron.com
## 8957 19388 2951 TO ricardo.charvel@enron.com
## 8958 19389 2951 TO harry.kingerski@enron.com
## 8959 19390 2951 TO stella.chan@enron.com
## 8960 19391 2951 TO vinio.floris@enron.com
## 8961 19392 2951 TO xi.xi@enron.com
## 8962 19393 2951 TO tracy.cooper@enron.com
## 8963 19394 2951 TO dan.staines@enron.com
## 8964 19395 2951 TO kathleen.sullivan@enron.com
## 8965 19396 2951 TO kerry.stroup@enron.com
## 8966 19397 2951 TO alan.comnes@enron.com
## 8967 19398 2951 TO marcie.milner@enron.com
## 8968 19399 2951 TO donna.fulton@enron.com
## 8969 19400 2951 TO allison.navin@enron.com
## 8970 19401 2951 TO lora.sullivan@enron.com
## 8971 19402 2951 TO stephen.burns@enron.com
## 8972 19403 2951 TO tom.briggs@enron.com
## 8973 19404 2951 TO linda.robertson@enron.com
## 8974 19405 2951 TO robert.neustaedter@enron.com
## 8975 19406 2951 TO gloria.ogenyi@enron.com
## 8976 19407 2951 TO patrick.keene@enron.com
## 8977 19408 2951 TO robert.frank@enron.com
## 8978 19409 2951 TO joe.hillings@enron.com
## 8979 19410 2951 TO barbara.hueter@enron.com
## 8980 19411 2951 TO richard.ingersoll@enron.com
## 8981 19412 2951 TO paul.kaufman@enron.com
## 8982 19414 2951 TO jeffrey.keeler@enron.com
## 8983 19415 2951 TO robin.kittel@enron.com
## 8984 19416 2951 TO susan.landwehr@enron.com
## 8985 19417 2951 TO donald.lassere@enron.com
## 8986 19418 2951 TO rochelle.lessner@enron.com
## 8987 19419 2951 TO chris.long@enron.com
## 8988 19420 2951 TO dave.mangskau@enron.com
## 8989 19421 2951 TO kathleen.magruder@enron.com
## 8990 19422 2951 TO susan.mara@enron.com
## 8991 19423 2951 TO sandra.mccubbin@enron.com
## 8992 19424 2951 TO becky.merola@enron.com
## 8993 19425 2951 TO fred.miller@enron.com
## 8994 19426 2951 TO mary.miller@enron.com
## 8995 19427 2951 TO steve.montovano@enron.com
## 8996 19428 2951 TO bill.moore@enron.com
## 8997 19429 2951 TO sue.nord@enron.com
## 8998 19430 2951 TO christi.nicolay@enron.com
## 8999 19431 2951 TO lou.pai@enron.com
## 9000 19432 2951 TO sarah.novosel@enron.com
## 9001 19433 2951 TO christie.patrick@enron.com
## 9002 19434 2951 TO mona.petrochko@enron.com
## 9003 19435 2951 TO scott.reblitz@enron.com
## 9004 19436 2951 TO marchris.robinson@enron.com
## 9005 19437 2951 TO thomas.reichelderfer@enron.com
## 9006 19438 2951 TO fred.rimington@enron.com
## 9007 19439 2951 TO frank.rishe@enron.com
## 9008 19440 2951 TO cynthia.sandherr@enron.com
## 9009 19441 2951 TO gavin.russo@enron.com
## 9010 19442 2951 TO dave.schafer@enron.com
## 9011 19443 2951 TO richard.scarborough@enron.com
## 9012 19445 2951 TO lon.stanton@enron.com
## 9013 19447 2951 TO terence.thorn@enron.com
## 9014 19448 2951 TO kathleen.wagner@enron.com
## 9015 19449 2951 TO susan.worthen@enron.com
## 9016 19450 2951 TO charles.yeung@enron.com
## 9017 19451 2951 TO lisa.yoho@enron.com
## 9018 19452 2952 TO sdleonard@earthlink.net
## 9019 19453 2952 CC gdahlke@painehamblen.com
## 9020 19454 2952 CC mary.hain@enron.com
## 9021 19455 2952 CC deb@aelaw.com
## 9022 19456 2952 CC shellyr@teleport.com
## 9023 19457 2952 CC cfi1@tca-us.com
## 9024 19458 2952 CC pmohler@hewm.com
## 9025 19459 2952 CC cwestadt@sppc.com
## 9026 19460 2952 CC sberman@hewm.com
## 9027 19461 2952 BCC gdahlke@painehamblen.com
## 9028 19462 2952 BCC mary.hain@enron.com
## 9029 19463 2952 BCC deb@aelaw.com
## 9030 19464 2952 BCC shellyr@teleport.com
## 9031 19465 2952 BCC cfi1@tca-us.com
## 9032 19466 2952 BCC pmohler@hewm.com
## 9033 19467 2952 BCC cwestadt@sppc.com
## 9034 19468 2952 BCC sberman@hewm.com
## 9035 19469 2953 TO foothill@lmi.net
## 9036 19470 2953 CC susan.j.mara@enron.com
## 9037 19471 2953 CC barbara_klemstine@apses.com
## 9038 19472 2953 CC berry@apx.com
## 9039 19473 2953 CC billr@calpine.com
## 9040 19474 2953 CC cabaker@duke-energy.com
## 9041 19475 2953 CC camiessn@newwestenergy.com
## 9042 19476 2953 CC carol_clawson@fpl.com
## 9043 19477 2953 CC counihan@greenmountain.com
## 9044 19478 2953 CC curtis_l_kebler@reliantenergy.com
## 9045 19479 2953 CC curt.hatton@neg.pge.com
## 9046 19480 2953 CC douglass@arterhadden.com
## 9047 19481 2953 CC dpurdum@apx.com
## 9048 19482 2953 CC dudris@smud.org
## 9049 19483 2953 CC efmosey@bpa.gov
## 9050 19484 2953 CC gavaughn@duke-energy.com
## 9051 19485 2953 CC gtbl@dynegy.com
## 9052 19486 2953 CC jackp@calpine.com
## 9053 19487 2953 CC jan.mitchell@pacificorp.com
## 9054 19488 2953 CC jcgardin@newwestenergy.com
## 9055 19489 2953 CC jcrowe@apx.com
## 9056 19490 2953 CC joer@calpine.com
## 9057 19491 2953 CC johnf@ncpa.com
## 9058 19492 2953 CC joso@dynegy.com
## 9059 19493 2953 CC jsmollon@newwestenergy.com
## 9060 19494 2953 CC julie.gentz@williams.com
## 9061 19495 2953 CC kdenne@enron.com
## 9062 19496 2953 CC kelly.swan@williams.com
## 9063 19497 2953 CC lale@dynegy.com
## 9064 19498 2953 CC lfisher@apx.com
## 9065 19499 2953 CC mark.stutz@xcelenergy.com
## 9066 19500 2953 CC mozart@pwrteam.com
## 9067 19501 2953 CC mshansen@bpa.gov
## 9068 19502 2953 CC nam.nguyen@powersrc.com
## 9069 19503 2953 CC paula.hall-collins@williams.com
## 9070 19504 2953 CC richard_n_wheatley@reliantenergy.com
## 9071 19505 2953 CC rjhickok@duke-energy.com
## 9072 19506 2953 CC rllamkin@seiworldwide.com
## 9073 19507 2953 CC robert_anderson@apses.com
## 9074 19508 2953 CC roger.pelote@williams.com
## 9075 19509 2953 CC rsnichol@newwestenergy.com
## 9076 19510 2953 CC sandra.mcdonough@neg.pge.com
## 9077 19511 2953 CC smara@enron.com
## 9078 19512 2953 CC steve.roalstad@xcelenergy.com
## 9079 19513 2953 CC tcwillia@duke-energy.com
## 9080 19514 2953 CC mary.hain@enron.com
## 9081 19515 2953 BCC susan.j.mara@enron.com
## 9082 19516 2953 BCC barbara_klemstine@apses.com
## 9083 19517 2953 BCC berry@apx.com
## 9084 19518 2953 BCC billr@calpine.com
## 9085 19519 2953 BCC cabaker@duke-energy.com
## 9086 19520 2953 BCC camiessn@newwestenergy.com
## 9087 19521 2953 BCC carol_clawson@fpl.com
## 9088 19522 2953 BCC counihan@greenmountain.com
## 9089 19523 2953 BCC curtis_l_kebler@reliantenergy.com
## 9090 19524 2953 BCC curt.hatton@neg.pge.com
## 9091 19525 2953 BCC douglass@arterhadden.com
## 9092 19526 2953 BCC dpurdum@apx.com
## 9093 19527 2953 BCC dudris@smud.org
## 9094 19528 2953 BCC efmosey@bpa.gov
## 9095 19529 2953 BCC gavaughn@duke-energy.com
## 9096 19530 2953 BCC gtbl@dynegy.com
## 9097 19531 2953 BCC jackp@calpine.com
## 9098 19532 2953 BCC jan.mitchell@pacificorp.com
## 9099 19533 2953 BCC jcgardin@newwestenergy.com
## 9100 19534 2953 BCC jcrowe@apx.com
## 9101 19535 2953 BCC joer@calpine.com
## 9102 19536 2953 BCC johnf@ncpa.com
## 9103 19537 2953 BCC joso@dynegy.com
## 9104 19538 2953 BCC jsmollon@newwestenergy.com
## 9105 19539 2953 BCC julie.gentz@williams.com
## 9106 19540 2953 BCC kdenne@enron.com
## 9107 19541 2953 BCC kelly.swan@williams.com
## 9108 19542 2953 BCC lale@dynegy.com
## 9109 19543 2953 BCC lfisher@apx.com
## 9110 19544 2953 BCC mark.stutz@xcelenergy.com
## 9111 19545 2953 BCC mozart@pwrteam.com
## 9112 19546 2953 BCC mshansen@bpa.gov
## 9113 19547 2953 BCC nam.nguyen@powersrc.com
## 9114 19548 2953 BCC paula.hall-collins@williams.com
## 9115 19549 2953 BCC richard_n_wheatley@reliantenergy.com
## 9116 19550 2953 BCC rjhickok@duke-energy.com
## 9117 19551 2953 BCC rllamkin@seiworldwide.com
## 9118 19552 2953 BCC robert_anderson@apses.com
## 9119 19553 2953 BCC roger.pelote@williams.com
## 9120 19554 2953 BCC rsnichol@newwestenergy.com
## 9121 19555 2953 BCC sandra.mcdonough@neg.pge.com
## 9122 19556 2953 BCC smara@enron.com
## 9123 19557 2953 BCC steve.roalstad@xcelenergy.com
## 9124 19558 2953 BCC tcwillia@duke-energy.com
## 9125 19559 2953 BCC mary.hain@enron.com
## 9126 19560 2954 TO jeff.brown@enron.com
## 9127 19561 2954 TO ron.mcnamara@enron.com
## 9128 19563 2954 TO sarah.novosel@enron.com
## 9129 19564 2954 TO aleck.dadson@enron.com
## 9130 19565 2954 TO daniel.allegretti@enron.com
## 9131 19566 2954 TO howard.fromer@enron.com
## 9132 19567 2954 TO joe.hartsoe@enron.com
## 9133 19568 2954 TO donna.fulton@enron.com
## 9134 19569 2954 TO tom.hoatson@enron.com
## 9135 19570 2954 TO steve.montovano@enron.com
## 9136 19571 2954 TO jean.ryall@enron.com
## 9137 19572 2954 TO tom.chapman@enron.com
## 9138 19573 2954 TO janine.migden@enron.com
## 9139 19574 2954 TO dave.mangskau@enron.com
## 9140 19575 2954 TO dan.staines@enron.com
## 9141 19576 2954 TO mike.roan@enron.com
## 9142 19577 2954 TO joe.connor@enron.com
## 9143 19578 2954 TO kerry.stroup@enron.com
## 9144 19579 2954 TO steve.walton@enron.com
## 9145 19580 2954 TO mary.hain@enron.com
## 9146 19581 2954 TO alan.comnes@enron.com
## 9147 19582 2954 TO susan.mara@enron.com
## 9148 19583 2954 TO thane.twiggs@enron.com
## 9149 19584 2955 TO susan.j.mara@enron.com
## 9150 19585 2955 TO foothill@lmi.net
## 9151 19586 2955 CC barbara_klemstine@apses.com
## 9152 19587 2955 CC robert_anderson@apses.com
## 9153 19588 2955 CC berry@apx.com
## 9154 19589 2955 CC dpurdum@apx.com
## 9155 19590 2955 CC jcrowe@apx.com
## 9156 19591 2955 CC lfisher@apx.com
## 9157 19592 2955 CC efmosey@bpa.gov
## 9158 19593 2955 CC mshansen@bpa.gov
## 9159 19594 2955 CC billr@calpine.com
## 9160 19595 2955 CC jackp@calpine.com
## 9161 19596 2955 CC joer@calpine.com
## 9162 19597 2955 CC cabaker@duke-energy.com
## 9163 19598 2955 CC gavaughn@duke-energy.com
## 9164 19599 2955 CC rjhickok@duke-energy.com
## 9165 19600 2955 CC tcwillia@duke-energy.com
## 9166 19601 2955 CC gtbl@dynegy.com
## 9167 19602 2955 CC joso@dynegy.com
## 9168 19603 2955 CC lale@dynegy.com
## 9169 19604 2955 CC kdenne@enron.com
## 9170 19605 2955 CC mary.hain@enron.com
## 9171 19606 2955 CC smara@enron.com
## 9172 19607 2955 CC carol_clawson@fpl.com
## 9173 19608 2955 CC counihan@greenmountain.com
## 9174 19609 2955 CC johnf@ncpa.com
## 9175 19610 2955 CC curt.hatton@neg.pge.com
## 9176 19611 2955 CC sandra.mcdonough@neg.pge.com
## 9177 19612 2955 CC camiessn@newwestenergy.com
## 9178 19613 2955 CC jcgardin@newwestenergy.com
## 9179 19614 2955 CC jsmollon@newwestenergy.com
## 9180 19615 2955 CC rsnichol@newwestenergy.com
## 9181 19616 2955 CC jan.mitchell@pacificorp.com
## 9182 19617 2955 CC nam.nguyen@powersrc.com
## 9183 19618 2955 CC mozart@pwrteam.com
## 9184 19619 2955 CC curtis_l_kebler@reliantenergy.com
## 9185 19620 2955 CC richard_n_wheatley@reliantenergy.com
## 9186 19621 2955 CC rllamkin@seiworldwide.com
## 9187 19622 2955 CC dudris@smud.org
## 9188 19623 2955 CC dan_pigeon@transalta.com
## 9189 19624 2955 CC julie.gentz@williams.com
## 9190 19625 2955 CC kelly.swan@williams.com
## 9191 19626 2955 CC paula.hall-collins@williams.com
## 9192 19627 2955 CC roger.pelote@williams.com
## 9193 19628 2955 CC mark.stutz@xcelenergy.com
## 9194 19629 2955 CC steve.roalstad@xcelenergy.com
## 9195 19630 2955 BCC barbara_klemstine@apses.com
## 9196 19631 2955 BCC robert_anderson@apses.com
## 9197 19632 2955 BCC berry@apx.com
## 9198 19633 2955 BCC dpurdum@apx.com
## 9199 19634 2955 BCC jcrowe@apx.com
## 9200 19635 2955 BCC lfisher@apx.com
## 9201 19636 2955 BCC efmosey@bpa.gov
## 9202 19637 2955 BCC mshansen@bpa.gov
## 9203 19638 2955 BCC billr@calpine.com
## 9204 19639 2955 BCC jackp@calpine.com
## 9205 19640 2955 BCC joer@calpine.com
## 9206 19641 2955 BCC cabaker@duke-energy.com
## 9207 19642 2955 BCC gavaughn@duke-energy.com
## 9208 19643 2955 BCC rjhickok@duke-energy.com
## 9209 19644 2955 BCC tcwillia@duke-energy.com
## 9210 19645 2955 BCC gtbl@dynegy.com
## 9211 19646 2955 BCC joso@dynegy.com
## 9212 19647 2955 BCC lale@dynegy.com
## 9213 19648 2955 BCC kdenne@enron.com
## 9214 19649 2955 BCC mary.hain@enron.com
## 9215 19650 2955 BCC smara@enron.com
## 9216 19651 2955 BCC carol_clawson@fpl.com
## 9217 19652 2955 BCC counihan@greenmountain.com
## 9218 19653 2955 BCC johnf@ncpa.com
## 9219 19654 2955 BCC curt.hatton@neg.pge.com
## 9220 19655 2955 BCC sandra.mcdonough@neg.pge.com
## 9221 19656 2955 BCC camiessn@newwestenergy.com
## 9222 19657 2955 BCC jcgardin@newwestenergy.com
## 9223 19658 2955 BCC jsmollon@newwestenergy.com
## 9224 19659 2955 BCC rsnichol@newwestenergy.com
## 9225 19660 2955 BCC jan.mitchell@pacificorp.com
## 9226 19661 2955 BCC nam.nguyen@powersrc.com
## 9227 19662 2955 BCC mozart@pwrteam.com
## 9228 19663 2955 BCC curtis_l_kebler@reliantenergy.com
## 9229 19664 2955 BCC richard_n_wheatley@reliantenergy.com
## 9230 19665 2955 BCC rllamkin@seiworldwide.com
## 9231 19666 2955 BCC dudris@smud.org
## 9232 19667 2955 BCC dan_pigeon@transalta.com
## 9233 19668 2955 BCC julie.gentz@williams.com
## 9234 19669 2955 BCC kelly.swan@williams.com
## 9235 19670 2955 BCC paula.hall-collins@williams.com
## 9236 19671 2955 BCC roger.pelote@williams.com
## 9237 19672 2955 BCC mark.stutz@xcelenergy.com
## 9238 19673 2955 BCC steve.roalstad@xcelenergy.com
## 9239 19674 2956 TO 20participants@caiso.com
## 9240 19675 2957 TO sdleonard@earthlink.net
## 9241 19676 2957 CC gdahlke@painehamblen.com
## 9242 19677 2957 CC mary.hain@enron.com
## 9243 19678 2957 CC deb@aelaw.com
## 9244 19679 2957 CC shellyr@teleport.com
## 9245 19680 2957 CC cfi1@tca-us.com
## 9246 19681 2957 CC pmohler@hewm.com
## 9247 19682 2957 CC cwestadt@sppc.com
## 9248 19683 2957 CC sberman@hewm.com
## 9249 19684 2957 BCC gdahlke@painehamblen.com
## 9250 19685 2957 BCC mary.hain@enron.com
## 9251 19686 2957 BCC deb@aelaw.com
## 9252 19687 2957 BCC shellyr@teleport.com
## 9253 19688 2957 BCC cfi1@tca-us.com
## 9254 19689 2957 BCC pmohler@hewm.com
## 9255 19690 2957 BCC cwestadt@sppc.com
## 9256 19691 2957 BCC sberman@hewm.com
## 9257 19692 2958 TO tim.belden@enron.com
## 9258 19693 2958 TO bill.williams.iii@enron.com
## 9259 19694 2958 TO mary.hain@enron.com
## 9260 19695 2958 TO cyoder@enron.com
## 9261 19697 2958 CC jeff.richter@enron.com
## 9262 19698 2958 BCC jeff.richter@enron.com
## 9263 19699 2959 TO mary.hain@enron.com
## 9264 19700 2960 TO 20participants@caiso.com
## 9265 19701 2960 CC isoclientrelations@caiso.com
## 9266 19702 2960 CC slines@caiso.com
## 9267 19703 2960 BCC isoclientrelations@caiso.com
## 9268 19704 2960 BCC slines@caiso.com
## 9269 19705 2961 TO all.states@enron.com
## 9270 19706 2962 TO enronoptions.mailing@enron.com
## 9271 19707 2963 TO Undisclosed-Recipient
## 9272 19708 2964 TO mary.hain@enron.com
## 9273 19709 2964 TO alan.comnes@enron.com
## 9274 19710 2964 TO smara@enron.com
## 9275 19712 2966 TO 20participants@caiso.com
## 9276 19713 2967 TO mary.hain@enron.com
## 9277 19714 2967 CC richard.ingersoll@enron.com
## 9278 19715 2967 CC steve.walton@enron.com
## 9279 19716 2967 BCC richard.ingersoll@enron.com
## 9280 19717 2967 BCC steve.walton@enron.com
## 9281 19718 2968 TO 20participants@caiso.com
## 9282 19719 2969 TO jeff.brown@enron.com
## 9283 19720 2969 TO ron.mcnamara@enron.com
## 9284 19722 2969 TO sarah.novosel@enron.com
## 9285 19723 2969 TO aleck.dadson@enron.com
## 9286 19724 2969 TO daniel.allegretti@enron.com
## 9287 19725 2969 TO howard.fromer@enron.com
## 9288 19726 2969 TO joe.hartsoe@enron.com
## 9289 19727 2969 TO donna.fulton@enron.com
## 9290 19728 2969 TO tom.hoatson@enron.com
## 9291 19729 2969 TO steve.montovano@enron.com
## 9292 19730 2969 TO jean.ryall@enron.com
## 9293 19731 2969 TO tom.chapman@enron.com
## 9294 19732 2969 TO janine.migden@enron.com
## 9295 19733 2969 TO dave.mangskau@enron.com
## 9296 19734 2969 TO dan.staines@enron.com
## 9297 19735 2969 TO mike.roan@enron.com
## 9298 19736 2969 TO joe.connor@enron.com
## 9299 19737 2969 TO kerry.stroup@enron.com
## 9300 19738 2969 TO steve.walton@enron.com
## 9301 19739 2969 TO mary.hain@enron.com
## 9302 19740 2969 TO alan.comnes@enron.com
## 9303 19741 2969 TO susan.mara@enron.com
## 9304 19742 2969 TO thane.twiggs@enron.com
## 9305 19743 2969 TO kerry.stroup@enron.com
## 9306 19744 2969 TO susan.landwehr@enron.com
## 9307 19745 2969 TO roy.boston@enron.com
## 9308 19746 2969 TO steve.montovano@enron.com
## 9309 19747 2970 TO rreiley@coral-energy.com
## 9310 19748 2970 TO mhain@ect.enron.com
## 9311 19749 2970 TO cnicola@enron.com
## 9312 19750 2970 TO smara@enron.com
## 9313 19751 2970 TO snovose@enron.com
## 9314 19752 2970 CC asettanni@bracepatt.com
## 9315 19753 2970 BCC asettanni@bracepatt.com
## 9316 19754 2971 TO 20participants@caiso.com
## 9317 19755 2972 TO 20participants@caiso.com
## 9318 19765 2974 TO bhueter@enron.com
## 9319 19766 2974 TO elizabeth.linnell@enron.com
## 9320 19767 2974 TO harry.kingerski@enron.com
## 9321 19769 2974 TO jmigden@enron.com
## 9322 19770 2974 TO marchris.robinson@enron.com
## 9323 19771 2974 TO mary.hain@enron.com
## 9324 19772 2974 TO mona.l.petrochko@enron.com
## 9325 19773 2974 TO paul.kaufman@enron.com
## 9326 19774 2974 TO rboston@enron.com
## 9327 19775 2974 TO rshapiro@enron.com
## 9328 19776 2974 TO snord@enron.com
## 9329 19777 2974 TO tom.chapman@enron.com
## 9330 19778 2975 TO alan.comnes@enron.com
## 9331 19779 2975 TO alan.larsen@enron.com
## 9332 19780 2975 TO amy.fitzpatrick@enron.com
## 9333 19781 2975 TO andy.chen@enron.com
## 9334 19782 2975 TO angela.cadena@enron.com
## 9335 19783 2975 TO anna.mehrer@enron.com
## 9336 19784 2975 TO ashok.gurusamy@enron.com
## 9337 19785 2975 TO bert.meyers@enron.com
## 9338 19786 2975 TO bill.iii@enron.com
## 9339 19787 2975 TO bill.williams@enron.com
## 9340 19789 2975 TO carla.hoffman@enron.com
## 9341 19790 2975 TO caroline.emmert@enron.com
## 9342 19791 2975 TO chip.cox@enron.com
## 9343 19792 2975 TO chris.foster@enron.com
## 9344 19793 2975 TO chris.lackey@enron.com
## 9345 19794 2975 TO chris.mallory@enron.com
## 9346 19795 2975 TO chris.stokley@enron.com
## 9347 19796 2975 TO christian.yoder@enron.com
## 9348 19797 2975 TO christopher.calger@enron.com
## 9349 19798 2975 TO collin.whitehead@enron.com
## 9350 19799 2975 TO crystal.hyde@enron.com
## 9351 19800 2975 TO d.hunsucker@enron.com
## 9352 19801 2975 TO dale.rasmussen@enron.com
## 9353 19802 2975 TO dan.maxwell@enron.com
## 9354 19803 2975 TO dave.fuller@enron.com
## 9355 19804 2975 TO david.poston@enron.com
## 9356 19805 2975 TO david.steiner@enron.com
## 9357 19806 2975 TO david.porter@enron.com
## 9358 19807 2975 TO debra.davidson@enron.com
## 9359 19809 2975 TO diana.willigerod@enron.com
## 9360 19810 2975 TO don.hammond@enron.com
## 9361 19811 2975 TO donald.robinson@enron.com
## 9362 19812 2975 TO donna.johnson@enron.com
## 9363 19813 2975 TO ed.clark@enron.com
## 9364 19814 2975 TO elliot.mainzer@enron.com
## 9365 19815 2975 TO emily.butler@enron.com
## 9366 19816 2975 TO erin.hall@enron.com
## 9367 19817 2975 TO fran.chang@enron.com
## 9368 19818 2975 TO fredrik.eriksson@enron.com
## 9369 19820 2975 TO grace.rodriguez@enron.com
## 9370 19821 2975 TO greg.wolfe@enron.com
## 9371 19822 2975 TO heather.dunton@enron.com
## 9372 19824 2975 TO holli.krebs@enron.com
## 9373 19825 2975 TO jake.thomas@enron.com
## 9374 19826 2975 TO jan.king@enron.com
## 9375 19827 2975 TO jeff.slaughter@enron.com
## 9376 19828 2975 TO jeff.richter@enron.com
## 9377 19829 2975 TO jeff.shields@enron.com
## 9378 19830 2975 TO jeffrey.oh@enron.com
## 9379 19831 2975 TO jeremy.morris@enron.com
## 9380 19832 2975 TO jesse.bryson@enron.com
## 9381 19833 2975 TO jessica.burry@enron.com
## 9382 19834 2975 TO jim.buerkle@enron.com
## 9383 19835 2975 TO jim.gilbert@enron.com
## 9384 19836 2975 TO jody.blackburn@enron.com
## 9385 19837 2975 TO john.malowney@enron.com
## 9386 19838 2975 TO jonalan.page@enron.com
## 9387 19839 2975 TO julie.sarnowski@enron.com
## 9388 19840 2975 TO karen.jones@enron.com
## 9389 19842 2975 TO kathryn.sheppard@enron.com
## 9390 19843 2975 TO kathy.axford@enron.com
## 9391 19844 2975 TO kourtney.nelson@enron.com
## 9392 19845 2975 TO larry.soderquist@enron.com
## 9393 19846 2975 TO laura.wente@enron.com
## 9394 19847 2975 TO leaf.harasin@enron.com
## 9395 19848 2975 TO lei.chen@enron.com
## 9396 19849 2975 TO lester.rawson@enron.com
## 9397 19850 2975 TO lisa.gang@enron.com
## 9398 19851 2975 TO lysa.akin@enron.com
## 9399 19852 2975 TO maria.houten@enron.com
## 9400 19853 2975 TO mark.fischer@enron.com
## 9401 19855 2975 TO mark.mullen@enron.com
## 9402 19856 2975 TO mark.rathbun@enron.com
## 9403 19857 2975 TO mary.hain@enron.com
## 9404 19859 2975 TO michael.etringer@enron.com
## 9405 19860 2975 TO michael.driscoll@enron.com
## 9406 19861 2975 TO michael.tully@enron.com
## 9407 19862 2975 TO mike.purcell@enron.com
## 9408 19864 2975 TO mollie.gustafson@enron.com
## 9409 19866 2975 TO murray.o neil@enron.com
## 9410 19867 2975 TO paul.choi@enron.com
## 9411 19868 2975 TO paul.kane@enron.com
## 9412 19869 2975 TO paul.kaufman@enron.com
## 9413 19871 2975 TO richard.schweiger@enron.com
## 9414 19872 2975 TO rick.johnson@enron.com
## 9415 19873 2975 TO robert.anderson@enron.com
## 9416 19876 2975 TO samantha.law@enron.com
## 9417 19878 2975 TO stacy.runswick@enron.com
## 9418 19879 2975 TO stan.gray@enron.com
## 9419 19880 2975 TO stanley.cocke@enron.com
## 9420 19881 2975 TO stephen.swain@enron.com
## 9421 19882 2975 TO stephen.thome@enron.com
## 9422 19883 2975 TO steve.hall@enron.com
## 9423 19884 2975 TO stewart.rosman@enron.com
## 9424 19885 2975 TO susmitha.nalluri@enron.com
## 9425 19886 2975 TO teri.whitcomb@enron.com
## 9426 19887 2975 TO terry.donovan@enron.com
## 9427 19888 2975 TO theresa.villeggiante@enron.com
## 9428 19889 2975 TO tim.belden@enron.com
## 9429 19890 2975 TO tim.heizenrader@enron.com
## 9430 19891 2975 TO todd.perry@enron.com
## 9431 19892 2975 TO tom.alonso@enron.com
## 9432 19893 2975 TO tracy.ngo@enron.com
## 9433 19894 2975 TO valarie.sabo@enron.com
## 9434 19895 2975 TO virginia.thompson@enron.com
## 9435 19896 2975 TO wayne.mays@enron.com
## 9436 19897 2975 CC duong.luu@enron.com
## 9437 19898 2975 BCC duong.luu@enron.com
## 9438 19899 2976 TO 20participants@caiso.com
## 9439 19900 2976 TO 1marcfioravanti@netzero.net
## 9440 19901 2976 TO adew@sempra-slns.com
## 9441 19902 2976 TO aja6@pge.com
## 9442 19903 2976 TO anne@plurimi.com
## 9443 19904 2976 TO annedavidson@ca.slr.com
## 9444 19905 2976 TO arosenthal@urmgroup.com
## 9445 19906 2976 TO ashok.kamra@intel.com
## 9446 19907 2976 TO asw@ix.netcom.com
## 9447 19908 2976 TO bcolston@chengpower.com
## 9448 19909 2976 TO bergeron@svg.com
## 9449 19910 2976 TO bill.guernsey@trw.com
## 9450 19911 2976 TO bill@fresnomail.com
## 9451 19912 2976 TO bnspeckman@aol.com
## 9452 19913 2976 TO bobfernandes@ca.slr.com
## 9453 19914 2976 TO btollerson@otpco.com
## 9454 19915 2976 TO calelectro@aol.com
## 9455 19916 2976 TO carl_hanes@udlp.com
## 9456 19917 2976 TO chrisls@tallassee.rms.slb.com
## 9457 19918 2976 TO cinta@abacusenergy.com
## 9458 19919 2976 TO cjohannesen@roseville.ca.us
## 9459 19920 2976 TO cmanning@cisco.com
## 9460 19921 2976 TO cmurley@gralegal.com
## 9461 19922 2976 TO crtoca@earthlink.net
## 9462 19923 2976 TO cunningh@sjsu.edu
## 9463 19924 2976 TO curth@calpine.com
## 9464 19925 2976 TO cynthia.sheals@sce.com
## 9465 19926 2976 TO dviolette@summitblue.com
## 9466 19927 2976 TO dans@acwanet.com
## 9467 19928 2976 TO dslifer@planergyservices.com
## 9468 19929 2976 TO david.c.base@emasters.com
## 9469 19930 2976 TO dbase@planergy.com
## 9470 19931 2976 TO dbeck@siliconvalleypower.com
## 9471 19932 2976 TO dick@davis.com
## 9472 19933 2976 TO djh5@pge.com
## 9473 19934 2976 TO dlawrence@nyiso.com
## 9474 19935 2976 TO dmorse@asco.com
## 9475 19936 2976 TO don.mcintosh@amd.com
## 9476 19937 2976 TO dug@cpuc.ca.gov
## 9477 19938 2976 TO drowan@aswengineering.com
## 9478 19939 2976 TO dsc2@pge.com
## 9479 19940 2976 TO dmoody@youngco.com
## 9480 19941 2976 TO ebouse@hansonaggwest.com
## 9481 19942 2976 TO ed@clfp.com
## 9482 19943 2976 TO ehernandez@c3com.com
## 9483 19944 2976 TO ejmorley@mhginc.com
## 9484 19945 2976 TO erasmus@uclink4.berkeley.edu
## 9485 19946 2976 TO exm0@pge.com
## 9486 19947 2976 TO erin@plurimi.com
## 9487 19948 2976 TO evos@sierrapine.com
## 9488 19949 2976 TO fivestarenergy@earthlink.net
## 9489 19950 2976 TO fja1@pge.com
## 9490 19951 2976 TO magnotti@comverge-tech.com
## 9491 19952 2976 TO gbarkalo@energy.state.ca.us
## 9492 19953 2976 TO gerd@stonewatersoftware.com
## 9493 19954 2976 TO gilbert.shaw@accenture.com
## 9494 19955 2976 TO glizak@invensysmeters.com
## 9495 19956 2976 TO gmarmion@ix.netcom.com
## 9496 19957 2976 TO gregory.chambers@quantum.com
## 9497 19958 2976 TO hcann@planergyservices.com
## 9498 19959 2976 TO henson@tis4000.com
## 9499 19960 2976 TO hirstea@home.com
## 9500 19961 2976 TO hkessler@siebenergy.com
## 9501 19962 2976 TO hlsmtz@aol.com
## 9502 19963 2976 TO jcmartin@sdge.com
## 9503 19964 2976 TO jcochran@mail.sandi.net
## 9504 19965 2976 TO jcrowe@apx.com
## 9505 19966 2976 TO jdesmond@elinet.com
## 9506 19967 2976 TO jbyron@calpine.com
## 9507 19968 2976 TO jeh@cpuc.ca.gov
## 9508 19969 2976 TO jfm7@pge.com
## 9509 19970 2976 TO jgiovanola@hansonaggwest.com
## 9510 19971 2976 TO jgreen@gralegal.com
## 9511 19972 2976 TO jheto@lbl.gov
## 9512 19973 2976 TO jim.stoddart@exodus.net
## 9513 19974 2976 TO jim@cannontech.com
## 9514 19975 2976 TO jimwill@socrates.berkeley.edu
## 9515 19976 2976 TO jlauth@siliconvalleypower.com
## 9516 19977 2976 TO jungvari@rcsis.com
## 9517 19978 2976 TO joe@infotility.com
## 9518 19979 2976 TO john.janzen@ti.com
## 9519 19980 2976 TO john.malowney@enron.com
## 9520 19981 2976 TO john.flaherty@mail.house.gov
## 9521 19982 2976 TO john.g.buchanan@ac.com
## 9522 19983 2976 TO john.martin@amd.com
## 9523 19984 2976 TO john.redding@gene.ge.com
## 9524 19985 2976 TO jroosevelt@anaheim.net
## 9525 19986 2976 TO jsait@smud.org
## 9526 19987 2976 TO jtorralv@guidant.com
## 9527 19988 2976 TO jskillman@prodigy.net
## 9528 19989 2976 TO jwilson@energy.state.ca.us
## 9529 19990 2976 TO karen-grace@apses.com
## 9530 19991 2976 TO kc.mares@sun.com
## 9531 19992 2976 TO kdesilva@us.ibm.com
## 9532 19993 2976 TO keith.dias@compaq.com
## 9533 19994 2976 TO kena@calpine.com
## 9534 19995 2976 TO kenny.yamamoto@sun.com
## 9535 19996 2976 TO kevin.bryan@ci.sj.ca.us
## 9536 19997 2976 TO kfantz@ppeng.com
## 9537 19998 2976 TO kpatterson@hesinet.com
## 9538 19999 2976 TO kon.mcquiston@californiapowel.com
## 9539 20000 2976 TO kpp1@ccnet.com
## 9540 20001 2976 TO kskinner@haglerbailly.com
## 9541 20002 2976 TO ksmith@camfg.com
## 9542 20003 2976 TO ksmith@planergy.com
## 9543 20004 2976 TO ku5@ornl.gov
## 9544 20005 2976 TO colwella@sce.com
## 9545 20006 2976 TO lboward@aol.com
## 9546 20007 2976 TO lc8@pge.com
## 9547 20008 2976 TO lee@delmarfoods.com
## 9548 20009 2976 TO lesleecoleman@ca.slr.com
## 9549 20010 2976 TO lfrigo@siliconenergy.com
## 9550 20011 2976 TO lys@aelaw.com
## 9551 20012 2976 TO lisap@calpine.com
## 9552 20013 2976 TO lwhouse@el-dorado.ca.us
## 9553 20014 2976 TO manmohan_sehgal@agilent.com
## 9554 20015 2976 TO marceline_otondo@apses.com
## 9555 20016 2976 TO mark.grady@amd.com
## 9556 20017 2976 TO mark_nelson@hp.com
## 9557 20018 2976 TO mjurosek@puc.sf.ca.us
## 9558 20019 2976 TO mbailey@roseville.ca.us
## 9559 20020 2976 TO marvin.clark@sce.com
## 9560 20021 2976 TO matttennis@msn.com
## 9561 20022 2976 TO mbruce@splasers.com
## 9562 20023 2976 TO mczopek@hesinet.com
## 9563 20024 2976 TO mgby@dynegy.com
## 9564 20025 2976 TO mghoffman@bpa.gov
## 9565 20026 2976 TO mhavens-cook@graniterock.com
## 9566 20027 2976 TO mace@ncpa.com
## 9567 20028 2976 TO michael.kintner-meyer@pnl.gov
## 9568 20029 2976 TO michael.peters@us.gases.boc.com
## 9569 20030 2976 TO mike.anderson@checkone.com
## 9570 20031 2976 TO mkessler@asco.com
## 9571 20032 2976 TO mkhattar@epri.com
## 9572 20033 2976 TO mlavazza@cisco.com
## 9573 20034 2976 TO mmce@dynegy.com
## 9574 20035 2976 TO mmedeiros@siliconenergy.com
## 9575 20036 2976 TO nelson.meeks@clorox.com
## 9576 20037 2976 TO nsheikh@cisco.com
## 9577 20038 2976 TO nsteo@enetics.com
## 9578 20039 2976 TO oliverd@sce.com
## 9579 20040 2976 TO paul_stephens@hp.com
## 9580 20041 2976 TO peter.bemnet@target.com
## 9581 20042 2976 TO peterevans@newpowertech.com
## 9582 20043 2976 TO prem_util_co@earthlink.net
## 9583 20044 2976 TO pschleifer@planergyservices.com
## 9584 20045 2976 TO quevedo_el@pillsburylaw.com
## 9585 20046 2976 TO r_j_prakash@yahoo.com
## 9586 20047 2976 TO randerson@idahopower.com
## 9587 20048 2976 TO randy.mcfarland@novellus.com
## 9588 20049 2976 TO richard.seguin@kp.org
## 9589 20050 2976 TO rbucking@energy.state.ca.us
## 9590 20051 2976 TO rwurlitz@enron.com
## 9591 20052 2976 TO rick_noger@praxair.com
## 9592 20053 2976 TO rita.norton@ci.sj.ca.us
## 9593 20054 2976 TO rredlinger@viron.com
## 9594 20055 2976 TO roland.allred@uaecorp.com
## 9595 20056 2976 TO roylhays@aol.com
## 9596 20057 2976 TO rsoutner@aol.com
## 9597 20058 2976 TO rstarr@planergyservices.com
## 9598 20059 2976 TO rxt@pacbell.net
## 9599 20060 2976 TO sieben1@slb.com
## 9600 20061 2976 TO sjo@mv.catalytica-inc.com
## 9601 20062 2976 TO slane@sdli.com
## 9602 20063 2976 TO smartin@smud.org
## 9603 20064 2976 TO ssharan@echelon.com
## 9604 20065 2976 TO starkey@lightspeed.net
## 9605 20066 2976 TO stevemotzko@ca.slr.com
## 9606 20067 2976 TO sgreenberg@intergypower.com
## 9607 20068 2976 TO taa7@pge.com
## 9608 20069 2976 TO tammykempton@hotmail.com
## 9609 20070 2976 TO tdoughty@planergy.com
## 9610 20071 2976 TO terry.bredek@am.sony.com
## 9611 20072 2976 TO terry.g.thomas@lmco.com
## 9612 20073 2976 TO tshaw@tis4000.com
## 9613 20074 2976 TO twu@caiso.com
## 9614 20075 2976 TO tra@sdcity.sannet.gov
## 9615 20076 2976 TO tracy.egeness@icn.siemens.com
## 9616 20077 2976 TO videobro@speedsite.com
## 9617 20078 2976 TO vrabl@epri.com
## 9618 20079 2976 TO wdale@utiliware.com
## 9619 20080 2976 TO wmsmith@epri.com
## 9620 20081 2976 TO wprice@planergy.com
## 9621 20082 2976 TO wwashburn@home.com
## 9622 20083 2976 TO zimmerme@us.ibm.com
## 9623 20084 2977 TO 20participants@caiso.com
## 9624 20085 2977 CC isoclientrelations@caiso.com
## 9625 20086 2977 BCC isoclientrelations@caiso.com
## 9626 20087 2978 TO cruane@quinngillespie.com
## 9627 20088 2978 TO robert.bruce@enron.com
## 9628 20089 2978 TO donna.lowry@enron.com
## 9629 20090 2978 TO elliot.mainzer@enron.com
## 9630 20091 2978 TO assad@elektro.com.br
## 9631 20092 2978 TO alan.comnes@enron.com
## 9632 20093 2978 TO alberto.levy@enron.com
## 9633 20094 2978 TO aleck.dadson@enron.com
## 9634 20095 2978 TO allison.navin@enron.com
## 9635 20096 2978 TO amy.fabian@enron.com
## 9636 20097 2978 TO barbara.hueter@enron.com
## 9637 20098 2978 TO bernadette.hawkins@enron.com
## 9638 20099 2978 TO bill.moore@enron.com
## 9639 20100 2978 TO cristinah@elektro.com.br
## 9640 20101 2978 TO carlos.azevedo@enron.com
## 9641 20102 2978 TO carmen.perez@enron.com
## 9642 20103 2978 TO carolyn.cooney@enron.com
## 9643 20104 2978 TO charles.yeung@enron.com
## 9644 20105 2978 TO chauncey.hood@enron.com
## 9645 20106 2978 TO chris.long@enron.com
## 9646 20107 2978 TO christi.nicolay@enron.com
## 9647 20108 2978 TO dan.staines@enron.com
## 9648 20109 2978 TO daniel.allegretti@enron.com
## 9649 20110 2978 TO dave.mangskau@enron.com
## 9650 20111 2978 TO donald.lassere@enron.com
## 9651 20112 2978 TO donna.fulton@enron.com
## 9652 20113 2978 TO eidy.catala@enron.com
## 9653 20114 2978 TO elizabeth.linnell@enron.com
## 9654 20115 2978 TO eric.benson@enron.com
## 9655 20116 2978 TO frank.rishe@enron.com
## 9656 20117 2978 TO geriann.warner@enron.com
## 9657 20118 2978 TO germain.palmer@enron.com
## 9658 20119 2978 TO ginger.dernehl@enron.com
## 9659 20120 2978 TO gisele.braz@enron.com
## 9660 20121 2978 TO gloria.ogenyi@enron.com
## 9661 20122 2978 TO guillermo.canovas@enron.com
## 9662 20123 2978 TO harry.kingerski@enron.com
## 9663 20124 2978 TO howard.fromer@enron.com
## 9664 20125 2978 TO jpr@ceibo.entelnet.bo
## 9665 20127 2978 TO janel.guerrero@enron.com
## 9666 20128 2978 TO janine.migden@enron.com
## 9667 20129 2978 TO javier.pantoja@enron.com
## 9668 20130 2978 TO jean.dressler@enron.com
## 9669 20131 2978 TO jean.ryall@enron.com
## 9670 20132 2978 TO jeff.brown@enron.com
## 9671 20134 2978 TO jeffrey.keeler@enron.com
## 9672 20135 2978 TO joao.paixao@enron.com
## 9673 20136 2978 TO joe.allen@enron.com
## 9674 20137 2978 TO joe.connor@enron.com
## 9675 20138 2978 TO joe.hartsoe@enron.com
## 9676 20139 2978 TO joe.hillings@enron.com
## 9677 20140 2978 TO jose.bestard@enron.com
## 9678 20141 2978 TO joseph.alamo@enron.com
## 9679 20142 2978 TO kathleen.sullivan@enron.com
## 9680 20143 2978 TO kerry.stroup@enron.com
## 9681 20144 2978 TO kikumi.kishigami@enron.com
## 9682 20145 2978 TO kirsten.bellas@enron.com
## 9683 20146 2978 TO lara.leibman@enron.com
## 9684 20147 2978 TO laurie.knight@enron.com
## 9685 20148 2978 TO leslie.lawner@enron.com
## 9686 20149 2978 TO linda.noske@enron.com
## 9687 20150 2978 TO linda.robertson@enron.com
## 9688 20151 2978 TO lindsay.meade@enron.com
## 9689 20152 2978 TO lisa.yoho@enron.com
## 9690 20153 2978 TO lora.sullivan@enron.com
## 9691 20154 2978 TO luiz.maurer@enron.com
## 9692 20155 2978 TO lysa.akin@enron.com
## 9693 20156 2978 TO marchris.robinson@enron.com
## 9694 20157 2978 TO marcia.linton@enron.com
## 9695 20158 2978 TO mary.hain@enron.com
## 9696 20159 2978 TO maureen.mcvicker@enron.com
## 9697 20160 2978 TO melinda.pharms@enron.com
## 9698 20161 2978 TO mike.roan@enron.com
## 9699 20162 2978 TO mona.petrochko@enron.com
## 9700 20163 2978 TO nancy.hetrick@enron.com
## 9701 20164 2978 TO patrick.keene@enron.com
## 9702 20165 2978 TO paul.kaufman@enron.com
## 9703 20166 2978 TO ray.alvarez@enron.com
## 9704 20167 2978 TO rebecca.cantrell@enron.com
## 9705 20168 2978 TO ricardo.charvel@enron.com
## 9706 20169 2978 TO richard.ingersoll@enron.com
## 9707 20171 2978 TO robert.frank@enron.com
## 9708 20172 2978 TO robert.hemstock@enron.com
## 9709 20173 2978 TO robert.neustaedter@enron.com
## 9710 20174 2978 TO robin.kittel@enron.com
## 9711 20175 2978 TO ron.mcnamara@enron.com
## 9712 20176 2978 TO roy.boston@enron.com
## 9713 20177 2978 TO rubena.buerger@enron.com
## 9714 20178 2978 TO sandra.mccubbin@enron.com
## 9715 20179 2978 TO sarah.novosel@enron.com
## 9716 20180 2978 TO scott.bolton@enron.com
## 9717 20181 2978 TO sergio.assad@enron.com
## 9718 20182 2978 TO stella.chan@enron.com
## 9719 20183 2978 TO stephen.burns@enron.com
## 9720 20184 2978 TO steve.montovano@enron.com
## 9721 20185 2978 TO steve.walton@enron.com
## 9722 20187 2978 TO sue.nord@enron.com
## 9723 20188 2978 TO susan.mara@enron.com
## 9724 20189 2978 TO susan.landwehr@enron.com
## 9725 20190 2978 TO terri.miller@enron.com
## 9726 20191 2978 TO thane.twiggs@enron.com
## 9727 20192 2978 TO tom.briggs@enron.com
## 9728 20193 2978 TO tom.chapman@enron.com
## 9729 20194 2978 TO tom.hoatson@enron.com
## 9730 20195 2978 TO valeria.lima@enron.com
## 9731 20196 2978 TO vinio.floris@enron.com
## 9732 20197 2978 TO xi.xi@enron.com
## 9733 20198 2978 TO jeffrey.keeler@enron.com
## 9734 20199 2978 TO stacey.bolton@enron.com
## 9735 20200 2978 TO mary.schoen@enron.com
## 9736 20201 2978 TO miyung.buster@enron.com
## 9737 20202 2978 TO elizabeth.linnell@enron.com
## 9738 20203 2978 TO lynnette.barnes@enron.com
## 9739 20204 2978 TO linda.lawrence@enron.com
## 9740 20205 2978 TO earlene.o connell@enron.com
## 9741 20206 2978 TO margo.reyna@enron.com
## 9742 20207 2978 TO gus.perez@enron.com
## 9743 20208 2978 TO angela.wilson@enron.com
## 9744 20209 2978 TO sharonda.stephens@enron.com
## 9745 20210 2978 TO eric.benson@enron.com
## 9746 20211 2978 TO john.neslage@enron.com
## 9747 20213 2978 TO marcia.linton@enron.com
## 9748 20214 2978 TO margaret.carson@enron.com
## 9749 20215 2978 TO joan.stransky@enron.com
## 9750 20217 2978 CC rob.bradley@enron.com
## 9751 20218 2978 CC margaret.carson@enron.com
## 9752 20219 2978 CC john.neslage@enron.com
## 9753 20220 2978 CC ray.alvarez@enron.com
## 9754 20221 2978 CC amr.ibrahim@enron.com
## 9755 20222 2978 CC germain.palmer@enron.com
## 9756 20224 2978 BCC rob.bradley@enron.com
## 9757 20225 2978 BCC margaret.carson@enron.com
## 9758 20226 2978 BCC john.neslage@enron.com
## 9759 20227 2978 BCC ray.alvarez@enron.com
## 9760 20228 2978 BCC amr.ibrahim@enron.com
## 9761 20229 2978 BCC germain.palmer@enron.com
## 9762 20230 2979 TO mary.hain@enron.com
## 9763 20231 2979 TO steve.walton@enron.com
## 9764 20232 2979 TO alan.comnes@enron.com
## 9765 20233 2980 TO 20participants@caiso.com
## 9766 20234 2980 TO scsettlecontacts@caiso.com
## 9767 20235 2980 CC tswg@caiso.com
## 9768 20236 2980 BCC tswg@caiso.com
## 9769 20237 2981 TO jeff.brown@enron.com
## 9770 20238 2981 TO ron.mcnamara@enron.com
## 9771 20240 2981 TO sarah.novosel@enron.com
## 9772 20241 2981 TO aleck.dadson@enron.com
## 9773 20242 2981 TO daniel.allegretti@enron.com
## 9774 20243 2981 TO howard.fromer@enron.com
## 9775 20244 2981 TO joe.hartsoe@enron.com
## 9776 20245 2981 TO donna.fulton@enron.com
## 9777 20246 2981 TO tom.hoatson@enron.com
## 9778 20247 2981 TO steve.montovano@enron.com
## 9779 20248 2981 TO jean.ryall@enron.com
## 9780 20249 2981 TO tom.chapman@enron.com
## 9781 20250 2981 TO janine.migden@enron.com
## 9782 20251 2981 TO dave.mangskau@enron.com
## 9783 20252 2981 TO dan.staines@enron.com
## 9784 20253 2981 TO mike.roan@enron.com
## 9785 20254 2981 TO joe.connor@enron.com
## 9786 20255 2981 TO kerry.stroup@enron.com
## 9787 20256 2981 TO steve.walton@enron.com
## 9788 20257 2981 TO mary.hain@enron.com
## 9789 20258 2981 TO alan.comnes@enron.com
## 9790 20259 2981 TO susan.mara@enron.com
## 9791 20260 2981 TO thane.twiggs@enron.com
## 9792 20261 2981 TO jader@enron.com
## 9793 20262 2981 TO michael.brown@enron.com
## 9794 20263 2981 TO mark.bernstein@enron.com
## 9795 20264 2981 TO john.llodra@enron.com
## 9796 20265 2981 TO janelle.scheuer@enron.com
## 9797 20266 2981 TO george.wood@enron.com
## 9798 20267 2981 TO david.guillaume@enron.com
## 9799 20268 2981 TO joe.gordon@enron.com
## 9800 20269 2981 TO splauch@enron.com
## 9801 20270 2981 TO jennifer.n.stewart@enron.com
## 9802 20271 2981 TO tom.dutta@enron.com
## 9803 20272 2981 TO posey.martinez@enron.com
## 9804 20273 2981 TO jim.meyn@enron.com
## 9805 20274 2981 TO berney.aucoin@enron.com
## 9806 20275 2981 TO pearce.hammond@enron.com
## 9807 20276 2981 TO garrett.tripp@enron.com
## 9808 20277 2981 TO ozzie.pagan@enron.com
## 9809 20278 2981 TO heather.kroll@enron.com
## 9810 20279 2981 TO david.fairley@enron.com
## 9811 20280 2981 TO george.mccormick@enron.com
## 9812 20281 2981 TO wjennin@enron.com
## 9813 20282 2981 TO joseph.wagner@enron.com
## 9814 20283 2981 TO elizabeth.johnston@enron.com
## 9815 20284 2981 TO bill.rust@enron.com
## 9816 20285 2981 TO reagan.rorschach@enron.com
## 9817 20286 2981 TO edith.cross@enron.com
## 9818 20287 2981 TO berney.aucoin@enron.com
## 9819 20288 2981 TO jennifer.bagwell@enron.com
## 9820 20289 2981 TO billy.braddock@enron.com
## 9821 20290 2981 TO bruce.sukaly@enron.com
## 9822 20291 2981 TO mike.curry@enron.com
## 9823 20292 2981 TO jducote@enron.com
## 9824 20293 2981 TO drew.tingleaf@enron.com
## 9825 20294 2981 TO cahn@enron.com
## 9826 20295 2981 TO jason.wiesepape@enron.com
## 9827 20296 2981 TO berney.aucoin@enron.com
## 9828 20297 2981 TO michelle.parks@enron.com
## 9829 20298 2981 TO steve.wang@enron.com
## 9830 20299 2981 TO ebaughm@enron.com
## 9831 20300 2981 TO terri.clynes@enron.com
## 9832 20301 2981 TO oscar.dalton@enron.com
## 9833 20302 2981 TO doug.sewell@enron.com
## 9834 20303 2981 TO kcompea@enron.com
## 9835 20304 2981 TO mike.e.kelly@enron.com
## 9836 20305 2981 TO gary.justice@enron.com
## 9837 20306 2981 TO patrick.hanse@enron.com
## 9838 20307 2981 TO brad.morse@enron.com
## 9839 20308 2981 TO berney.aucoin@enron.com
## 9840 20309 2981 TO bill.rust@enron.com
## 9841 20311 2981 TO w.duran@enron.com
## 9842 20314 2981 TO janet.dietrich@enron.com
## 9843 20315 2981 TO james.keller@enron.com
## 9844 20316 2982 TO 20participants@caiso.com
## 9845 20317 2983 TO 20participants@caiso.com
## 9846 20338 2985 TO cruane@quinngillespie.com
## 9847 20339 2985 TO robert.bruce@enron.com
## 9848 20340 2985 TO donna.lowry@enron.com
## 9849 20341 2985 TO elliot.mainzer@enron.com
## 9850 20342 2985 TO assad@elektro.com.br
## 9851 20343 2985 TO alan.comnes@enron.com
## 9852 20344 2985 TO alberto.levy@enron.com
## 9853 20345 2985 TO aleck.dadson@enron.com
## 9854 20346 2985 TO allison.navin@enron.com
## 9855 20347 2985 TO amy.fabian@enron.com
## 9856 20348 2985 TO barbara.hueter@enron.com
## 9857 20349 2985 TO bernadette.hawkins@enron.com
## 9858 20350 2985 TO bill.moore@enron.com
## 9859 20351 2985 TO cristinah@elektro.com.br
## 9860 20352 2985 TO carlos.azevedo@enron.com
## 9861 20353 2985 TO carmen.perez@enron.com
## 9862 20354 2985 TO carolyn.cooney@enron.com
## 9863 20355 2985 TO charles.yeung@enron.com
## 9864 20356 2985 TO chauncey.hood@enron.com
## 9865 20357 2985 TO chris.long@enron.com
## 9866 20358 2985 TO christi.nicolay@enron.com
## 9867 20359 2985 TO dan.staines@enron.com
## 9868 20360 2985 TO daniel.allegretti@enron.com
## 9869 20361 2985 TO dave.mangskau@enron.com
## 9870 20362 2985 TO donald.lassere@enron.com
## 9871 20363 2985 TO donna.fulton@enron.com
## 9872 20364 2985 TO eidy.catala@enron.com
## 9873 20365 2985 TO elizabeth.linnell@enron.com
## 9874 20366 2985 TO eric.benson@enron.com
## 9875 20367 2985 TO frank.rishe@enron.com
## 9876 20368 2985 TO geriann.warner@enron.com
## 9877 20369 2985 TO germain.palmer@enron.com
## 9878 20370 2985 TO ginger.dernehl@enron.com
## 9879 20371 2985 TO gisele.braz@enron.com
## 9880 20372 2985 TO gloria.ogenyi@enron.com
## 9881 20373 2985 TO guillermo.canovas@enron.com
## 9882 20374 2985 TO harry.kingerski@enron.com
## 9883 20375 2985 TO howard.fromer@enron.com
## 9884 20376 2985 TO jpr@ceibo.entelnet.bo
## 9885 20378 2985 TO janel.guerrero@enron.com
## 9886 20379 2985 TO janine.migden@enron.com
## 9887 20380 2985 TO javier.pantoja@enron.com
## 9888 20381 2985 TO jean.dressler@enron.com
## 9889 20382 2985 TO jean.ryall@enron.com
## 9890 20383 2985 TO jeff.brown@enron.com
## 9891 20385 2985 TO jeffrey.keeler@enron.com
## 9892 20386 2985 TO joao.paixao@enron.com
## 9893 20387 2985 TO joe.allen@enron.com
## 9894 20388 2985 TO joe.connor@enron.com
## 9895 20389 2985 TO joe.hartsoe@enron.com
## 9896 20390 2985 TO joe.hillings@enron.com
## 9897 20391 2985 TO jose.bestard@enron.com
## 9898 20392 2985 TO joseph.alamo@enron.com
## 9899 20393 2985 TO kathleen.sullivan@enron.com
## 9900 20394 2985 TO kerry.stroup@enron.com
## 9901 20395 2985 TO kikumi.kishigami@enron.com
## 9902 20396 2985 TO kirsten.bellas@enron.com
## 9903 20397 2985 TO lara.leibman@enron.com
## 9904 20398 2985 TO laurie.knight@enron.com
## 9905 20399 2985 TO leslie.lawner@enron.com
## 9906 20400 2985 TO linda.noske@enron.com
## 9907 20401 2985 TO linda.robertson@enron.com
## 9908 20402 2985 TO lindsay.meade@enron.com
## 9909 20403 2985 TO lisa.yoho@enron.com
## 9910 20404 2985 TO lora.sullivan@enron.com
## 9911 20405 2985 TO luiz.maurer@enron.com
## 9912 20406 2985 TO lysa.akin@enron.com
## 9913 20407 2985 TO marchris.robinson@enron.com
## 9914 20408 2985 TO marcia.linton@enron.com
## 9915 20409 2985 TO mary.hain@enron.com
## 9916 20410 2985 TO maureen.mcvicker@enron.com
## 9917 20411 2985 TO melinda.pharms@enron.com
## 9918 20412 2985 TO mike.roan@enron.com
## 9919 20413 2985 TO mona.petrochko@enron.com
## 9920 20414 2985 TO nancy.hetrick@enron.com
## 9921 20415 2985 TO patrick.keene@enron.com
## 9922 20416 2985 TO paul.kaufman@enron.com
## 9923 20417 2985 TO ray.alvarez@enron.com
## 9924 20418 2985 TO rebecca.cantrell@enron.com
## 9925 20419 2985 TO ricardo.charvel@enron.com
## 9926 20420 2985 TO richard.ingersoll@enron.com
## 9927 20422 2985 TO robert.frank@enron.com
## 9928 20423 2985 TO robert.hemstock@enron.com
## 9929 20424 2985 TO robert.neustaedter@enron.com
## 9930 20425 2985 TO robin.kittel@enron.com
## 9931 20426 2985 TO ron.mcnamara@enron.com
## 9932 20427 2985 TO roy.boston@enron.com
## 9933 20428 2985 TO rubena.buerger@enron.com
## 9934 20429 2985 TO sandra.mccubbin@enron.com
## 9935 20430 2985 TO sarah.novosel@enron.com
## 9936 20431 2985 TO scott.bolton@enron.com
## 9937 20432 2985 TO sergio.assad@enron.com
## 9938 20433 2985 TO stella.chan@enron.com
## 9939 20434 2985 TO stephen.burns@enron.com
## 9940 20435 2985 TO steve.montovano@enron.com
## 9941 20436 2985 TO steve.walton@enron.com
## 9942 20438 2985 TO sue.nord@enron.com
## 9943 20439 2985 TO susan.mara@enron.com
## 9944 20440 2985 TO susan.landwehr@enron.com
## 9945 20441 2985 TO terri.miller@enron.com
## 9946 20442 2985 TO thane.twiggs@enron.com
## 9947 20443 2985 TO tom.briggs@enron.com
## 9948 20444 2985 TO tom.chapman@enron.com
## 9949 20445 2985 TO tom.hoatson@enron.com
## 9950 20446 2985 TO valeria.lima@enron.com
## 9951 20447 2985 TO vinio.floris@enron.com
## 9952 20448 2985 TO xi.xi@enron.com
## 9953 20449 2985 TO jeffrey.keeler@enron.com
## 9954 20450 2985 TO stacey.bolton@enron.com
## 9955 20451 2985 TO mary.schoen@enron.com
## 9956 20452 2985 TO miyung.buster@enron.com
## 9957 20453 2985 TO elizabeth.linnell@enron.com
## 9958 20454 2985 TO lynnette.barnes@enron.com
## 9959 20455 2985 TO linda.lawrence@enron.com
## 9960 20456 2985 TO earlene.o connell@enron.com
## 9961 20457 2985 TO margo.reyna@enron.com
## 9962 20458 2985 TO gus.perez@enron.com
## 9963 20459 2985 TO angela.wilson@enron.com
## 9964 20460 2985 TO sharonda.stephens@enron.com
## 9965 20461 2985 TO eric.benson@enron.com
## 9966 20462 2985 TO john.neslage@enron.com
## 9967 20464 2985 TO marcia.linton@enron.com
## 9968 20465 2985 TO margaret.carson@enron.com
## 9969 20466 2985 TO joan.stransky@enron.com
## 9970 20468 2985 CC rob.bradley@enron.com
## 9971 20469 2985 CC margaret.carson@enron.com
## 9972 20470 2985 CC john.neslage@enron.com
## 9973 20471 2985 CC ray.alvarez@enron.com
## 9974 20472 2985 CC amr.ibrahim@enron.com
## 9975 20473 2985 CC germain.palmer@enron.com
## 9976 20475 2985 BCC rob.bradley@enron.com
## 9977 20476 2985 BCC margaret.carson@enron.com
## 9978 20477 2985 BCC john.neslage@enron.com
## 9979 20478 2985 BCC ray.alvarez@enron.com
## 9980 20479 2985 BCC amr.ibrahim@enron.com
## 9981 20480 2985 BCC germain.palmer@enron.com
## 9982 20481 2986 TO susan.mara@enron.com
## 9983 20483 2986 TO mary.hain@enron.com
## 9984 20484 2986 TO alan.comnes@enron.com
## 9985 20485 2986 TO steve.walton@enron.com
## 9986 20486 2986 TO ron.mcnamara@enron.com
## 9987 20487 2986 TO mike.roan@enron.com
## 9988 20488 2986 CC jeff.brown@enron.com
## 9989 20489 2986 BCC jeff.brown@enron.com
## 9990 20490 2987 TO enron.users@enron.com
## 9991 20491 2988 TO 20participants@caiso.com
## 9992 20492 2989 TO jeff.brown@enron.com
## 9993 20493 2989 TO ron.mcnamara@enron.com
## 9994 20495 2989 TO sarah.novosel@enron.com
## 9995 20496 2989 TO aleck.dadson@enron.com
## 9996 20497 2989 TO daniel.allegretti@enron.com
## 9997 20498 2989 TO howard.fromer@enron.com
## 9998 20499 2989 TO joe.hartsoe@enron.com
## 9999 20500 2989 TO donna.fulton@enron.com
## 10000 20501 2989 TO tom.hoatson@enron.com
## 10001 20502 2989 TO steve.montovano@enron.com
## 10002 20503 2989 TO jean.ryall@enron.com
## 10003 20504 2989 TO tom.chapman@enron.com
## 10004 20505 2989 TO janine.migden@enron.com
## 10005 20506 2989 TO dave.mangskau@enron.com
## 10006 20507 2989 TO dan.staines@enron.com
## 10007 20508 2989 TO mike.roan@enron.com
## 10008 20509 2989 TO joe.connor@enron.com
## 10009 20510 2989 TO kerry.stroup@enron.com
## 10010 20511 2989 TO steve.walton@enron.com
## 10011 20512 2989 TO mary.hain@enron.com
## 10012 20513 2989 TO alan.comnes@enron.com
## 10013 20514 2989 TO susan.mara@enron.com
## 10014 20515 2989 TO thane.twiggs@enron.com
## 10015 20517 2989 TO rogers.herndon@enron.com
## 10016 20518 2989 TO ozzie.pagan@enron.com
## 10017 20519 2990 TO ed.clark@enron.com
## 10018 20520 2990 TO jim.gilbert@enron.com
## 10019 20521 2990 CC jody.blackburn@enron.com
## 10020 20522 2990 CC mary.hain@enron.com
## 10021 20523 2990 BCC jody.blackburn@enron.com
## 10022 20524 2990 BCC mary.hain@enron.com
## 10023 20525 2991 TO 20participants@caiso.com
## 10024 20526 2991 CC scsettlecontacts@caiso.com
## 10025 20527 2991 CC pleiber@caiso.com
## 10026 20528 2991 BCC scsettlecontacts@caiso.com
## 10027 20529 2991 BCC pleiber@caiso.com
## 10028 20530 2992 TO 20participants@caiso.com
## 10029 20531 2992 TO oasismktparticipants@caiso.com
## 10030 20532 2993 TO robert.hermann@enron.com
## 10031 20533 2993 TO leesa.white@enron.com
## 10032 20534 2993 TO lynn.aven@enron.com
## 10033 20535 2993 TO donette.dewar@enron.com
## 10034 20536 2993 TO annette.glod@enron.com
## 10035 20537 2993 TO rick.hopkinson@enron.com
## 10036 20538 2993 TO james.maccallon@enron.com
## 10037 20539 2993 TO dub.morris@enron.com
## 10038 20540 2993 TO victor.nieto@enron.com
## 10039 20541 2993 TO bill.bowes@enron.com
## 10040 20542 2993 TO trey.cash@enron.com
## 10041 20543 2993 TO alicia.goodrow@enron.com
## 10042 20544 2993 TO tony.jarrett@enron.com
## 10043 20545 2993 TO lina.jimenez@enron.com
## 10044 20546 2993 TO tina.livingston@enron.com
## 10045 20547 2993 TO davis.maxey@enron.com
## 10046 20548 2993 TO tara.rafter@enron.com
## 10047 20549 2993 TO annmarie.tiller@enron.com
## 10048 20550 2993 TO brent.vasconcellos@enron.com
## 10049 20551 2993 TO ronald.adzgery@enron.com
## 10050 20552 2993 TO jeffrey.fischer@enron.com
## 10051 20553 2993 TO margaret.maddox@enron.com
## 10052 20554 2993 TO charles.walther@enron.com
## 10053 20555 2993 TO reynaldo.garcia@enron.com
## 10054 20556 2993 TO jeff.blumenthal@enron.com
## 10055 20557 2993 TO morris.clark@enron.com
## 10056 20558 2993 TO stephen.douglas@enron.com
## 10057 20559 2993 TO stacy.dunegan@enron.com
## 10058 20560 2993 TO matthew.gockerman@enron.com
## 10059 20561 2993 TO rhett.jackson@enron.com
## 10060 20562 2993 TO kenneth.krasny@enron.com
## 10061 20563 2993 TO kevin.liss@enron.com
## 10062 20564 2993 TO preston.mcglory@enron.com
## 10063 20565 2993 TO susan.musch@enron.com
## 10064 20566 2993 TO jerry.seade@enron.com
## 10065 20568 2993 TO jeffrey.keeler@enron.com
## 10066 20569 2993 TO mary.hain@enron.com
## 10067 20570 2993 TO christi.nicolay@enron.com
## 10068 20571 2993 TO sarah.novosel@enron.com
## 10069 20572 2993 TO robert.frank@enron.com
## 10070 20573 2993 TO lara.leibman@enron.com
## 10071 20574 2993 TO gloria.ogenyi@enron.com
## 10072 20576 2993 TO leslie.lawner@enron.com
## 10073 20577 2993 TO paul.kaufman@enron.com
## 10074 20578 2993 TO aleck.dadson@enron.com
## 10075 20579 2993 TO daniel.allegretti@enron.com
## 10076 20580 2993 TO howard.fromer@enron.com
## 10077 20581 2993 TO joe.hartsoe@enron.com
## 10078 20582 2993 TO roy.boston@enron.com
## 10079 20583 2993 TO janine.migden@enron.com
## 10080 20584 2993 TO christie.patrick@enron.com
## 10081 20585 2993 TO thane.twiggs@enron.com
## 10082 20586 2993 TO mark.metts@enron.com
## 10083 20587 2993 TO jane.wilson@enron.com
## 10084 20588 2993 TO brian.schaffer@enron.com
## 10085 20589 2993 TO jan.johnson@enron.com
## 10086 20590 2993 TO tod.lindholm@enron.com
## 10087 20591 2993 TO james.hughes@enron.com
## 10088 20592 2993 TO anthony.duenner@enron.com
## 10089 20593 2993 TO sean.long@enron.com
## 10090 20594 2993 TO richard.dimichele@enron.com
## 10091 20595 2993 TO kim.monk@enron.com
## 10092 20596 2993 TO robert.gresch@enron.com
## 10093 20597 2993 TO michael.brown@enron.com
## 10094 20598 2993 TO michael.smalling@enron.com
## 10095 20599 2993 TO wade.cline@enron.com
## 10096 20600 2993 TO phil.patman@enron.com
## 10097 20601 2993 TO rhonda.denton@enron.com
## 10098 20602 2993 TO steve.weller@enron.com
## 10099 20603 2993 TO cristina.juvier@enron.com
## 10100 20604 2993 TO ray.alvarez@enron.com
## 10101 20605 2993 TO annette.vogel@enron.com
## 10102 20606 2993 TO rockford.meyer@enron.com
## 10103 20607 2993 TO tom.shelton@enron.com
## 10104 20608 2993 TO kathleen.magruder@enron.com
## 10105 20609 2993 TO susan.covino@enron.com
## 10106 20610 2993 TO rebecca.carter@enron.com
## 10107 20611 2993 TO teresa.callahan@enron.com
## 10108 20612 2993 TO kate.cole@enron.com
## 10109 20613 2993 TO denise.ernest@enron.com
## 10110 20614 2993 TO geneva.holland@enron.com
## 10111 20615 2993 TO sylvia.hu@enron.com
## 10112 20616 2993 TO peggy.menchaca@enron.com
## 10113 20617 2993 TO elaine.overturf@enron.com
## 10114 20618 2993 TO lori.pinder@enron.com
## 10115 20619 2993 TO tanya.sanford@enron.com
## 10116 20620 2993 TO hardie.davis@enron.com
## 10117 20621 2993 TO georgene.moore@enron.com
## 10118 20622 2993 TO eric.benson@enron.com
## 10119 20623 2993 TO fberg@swbell.net
## 10120 20624 2994 TO jmaas@llgm.com
## 10121 20625 2994 CC dale.rasmussen@enron.com
## 10122 20626 2994 CC don.hammond@enron.com
## 10123 20627 2994 CC ajchambe@llgm.com
## 10124 20628 2994 CC jklauber@llgm.com
## 10125 20629 2994 CC moveson@llgm.com
## 10126 20630 2994 CC tmoore@llgm.com
## 10127 20631 2994 CC mary.hain@enron.com
## 10128 20632 2994 BCC dale.rasmussen@enron.com
## 10129 20633 2994 BCC don.hammond@enron.com
## 10130 20634 2994 BCC ajchambe@llgm.com
## 10131 20635 2994 BCC jklauber@llgm.com
## 10132 20636 2994 BCC moveson@llgm.com
## 10133 20637 2994 BCC tmoore@llgm.com
## 10134 20638 2994 BCC mary.hain@enron.com
## 10135 20639 2995 TO ericf@prestongates.com
## 10136 20640 2995 TO ambarnes@bpa.gov
## 10137 20641 2995 TO sberman@hewm.com
## 10138 20642 2995 TO deb@aelaw.com
## 10139 20643 2995 TO rbrush@mtpower.com
## 10140 20644 2995 TO kcarr@pn.usbr.gov
## 10141 20645 2995 TO elchristensen@snopud.com
## 10142 20646 2995 TO wclark@avistacorp.com
## 10143 20647 2995 TO gdahlke@paine-hamblen.com
## 10144 20648 2995 TO sdleonard@earthlink.net
## 10145 20649 2995 TO michaelearly@earthlink.net
## 10146 20650 2995 TO jim_eden@pgn.com
## 10147 20651 2995 TO marshall@uamps.com
## 10148 20652 2995 TO pfeldberg@lawsonlundell.com
## 10149 20653 2995 TO gerry.garnett@bchydro.bc.ca
## 10150 20654 2995 TO briang@gdsassoc.com
## 10151 20655 2995 TO richard_goddard@pgn.com
## 10152 20656 2995 TO mhain@ect.enron.com
## 10153 20657 2995 TO jmhaner@bpa.gov
## 10154 20658 2995 TO jhockberger@pn.usbr.gov
## 10155 20659 2995 TO marlene_huntsinger@pgn.com
## 10156 20660 2995 TO cfi1@tca-us.com
## 10157 20661 2995 TO jon.kaake@pacificorp.com
## 10158 20662 2995 TO ekrogh@serv.net
## 10159 20663 2995 TO dave_lamb@pgn.com
## 10160 20664 2995 TO srlarson@bpa.gov
## 10161 20665 2995 TO mcm@vnf.com
## 10162 20666 2995 TO terrym@millcreeklaw.com
## 10163 20667 2995 TO pmurphy@mbllp.com
## 10164 20668 2995 TO douglas_nichols@pgn.com
## 10165 20669 2995 TO dosborn@gcpud.org
## 10166 20670 2995 TO lpatter@mtpower.com
## 10167 20671 2995 TO will.patton@ci.seattle.wa.us
## 10168 20672 2995 TO dmphillips@bpa.gov
## 10169 20673 2995 TO rebecca.b.ransom@usace.army.mil
## 10170 20674 2995 TO creese@puget.com
## 10171 20675 2995 TO shellyr@teleport.com
## 10172 20676 2995 TO wrobin@puget.com
## 10173 20677 2995 TO mschaff@worldnet.att.net
## 10174 20678 2995 TO tshuba@sheagardner.com
## 10175 20679 2995 TO bmspeckman@aol.com
## 10176 20680 2995 TO jtucker@deseretgt.com
## 10177 20681 2995 TO kristiwallis@sprintmail.com
## 10178 20682 2995 TO sawatson@bpa.gov
## 10179 20683 2995 TO cwestadt@sppc.com
## 10180 20684 2995 TO ckwinter@deseretgt.com
## 10181 20685 2995 TO chrisrtowest@earthlink.net
## 10182 20686 2995 TO snkripalani@stoel.com
## 10183 20687 2995 TO lnichols@bpa.gov
## 10184 20688 2995 TO dswatkins@bpa.gov
## 10185 20689 2995 TO gfhull@bpa.gov
## 10186 20690 2995 TO eamonn.duggan@eal.ab.ca
## 10187 20691 2995 TO vporter@idahopower.com
## 10188 20692 2995 TO rneate@puget.com
## 10189 20693 2995 TO kcarlson@do.usbr.gov
## 10190 20694 2995 TO alan@enventure.com
## 10191 20695 2995 TO rkrodewald@bpa.gov
## 10192 20696 2995 TO bdaltman@bpa.gov
## 10193 20697 2995 TO gestemler@bpa.gov
## 10194 20698 2995 TO rarogers@bpa.gov
## 10195 20699 2995 TO marogers@bpa.gov
## 10196 20700 2995 TO sksmith@bpa.gov
## 10197 20701 2995 TO donangell@idahopower.com
## 10198 20702 2995 TO brhoads@mtpower.com
## 10199 20703 2995 TO tom_kingston@pgn.com
## 10200 20704 2995 TO mike_ryan@pgn.com
## 10201 20705 2995 TO dan_m_woodfin@reliantenergy.com
## 10202 20706 2995 TO mshank@nevp.com
## 10203 20707 2995 TO sparks2@sppc.com
## 10204 20708 2995 TO bellows@wapa.gov
## 10205 20709 2995 TO rbowersock@wapa.gov
## 10206 20710 2995 TO dsauter@idahopower.com
## 10207 20711 2995 TO nwrto@pplmt.com
## 10208 20712 2995 TO susan@wapa.gov
## 10209 20713 2995 TO rhardy@hardyenergy.com
## 10210 20714 2995 TO teresabrown@duke-energy.com
## 10211 20715 2995 TO rbspence@bpa.gov
## 10212 20716 2995 TO tdeboer@painehamblen.com
## 10213 20717 2996 TO mary.hain@enron.com
## 10214 20718 2997 TO roy.boston@enron.com
## 10215 20719 2997 TO jeff.brown@enron.com
## 10216 20720 2997 TO margaret.carson@enron.com
## 10217 20721 2997 TO carolyn.cooney@enron.com
## 10218 20724 2997 TO tom.delaney@enron.com
## 10219 20725 2997 TO linda.fitzgerrell@enron.com
## 10220 20726 2997 TO howard.fromer@enron.com
## 10221 20727 2997 TO janel.guerrero@enron.com
## 10222 20728 2997 TO mary.hain@enron.com
## 10223 20729 2997 TO john.hardy@enron.com
## 10224 20730 2997 TO joe.hartsoe@enron.com
## 10225 20731 2997 TO nancy.hetrick@enron.com
## 10226 20732 2997 TO jean.ryall@enron.com
## 10227 20733 2997 TO robert.hemstock@enron.com
## 10228 20734 2997 TO alberto.levy@enron.com
## 10229 20735 2997 TO ron.mcnamara@enron.com
## 10230 20736 2997 TO mike.roan@enron.com
## 10231 20737 2997 TO thane.twiggs@enron.com
## 10232 20738 2997 TO steve.walton@enron.com
## 10233 20739 2997 TO ricardo.charvel@enron.com
## 10234 20740 2997 TO harry.kingerski@enron.com
## 10235 20741 2997 TO stella.chan@enron.com
## 10236 20742 2997 TO vinio.floris@enron.com
## 10237 20743 2997 TO xi.xi@enron.com
## 10238 20744 2997 TO tracy.cooper@enron.com
## 10239 20745 2997 TO dan.staines@enron.com
## 10240 20746 2997 TO kathleen.sullivan@enron.com
## 10241 20747 2997 TO alan.comnes@enron.com
## 10242 20748 2997 TO marcie.milner@enron.com
## 10243 20749 2997 TO donna.fulton@enron.com
## 10244 20750 2997 TO allison.navin@enron.com
## 10245 20751 2997 TO stephen.burns@enron.com
## 10246 20752 2997 TO tom.briggs@enron.com
## 10247 20753 2997 TO linda.robertson@enron.com
## 10248 20754 2997 TO robert.neustaedter@enron.com
## 10249 20755 2997 TO gloria.ogenyi@enron.com
## 10250 20756 2997 TO robert.frank@enron.com
## 10251 20757 2997 TO patrick.keene@enron.com
## 10252 20758 2997 TO joe.hillings@enron.com
## 10253 20759 2997 TO barbara.hueter@enron.com
## 10254 20760 2997 TO richard.ingersoll@enron.com
## 10255 20761 2997 TO paul.kaufman@enron.com
## 10256 20762 2997 TO jeffrey.keeler@enron.com
## 10257 20763 2997 TO robin.kittel@enron.com
## 10258 20764 2997 TO susan.landwehr@enron.com
## 10259 20765 2997 TO donald.lassere@enron.com
## 10260 20766 2997 TO rochelle.lessner@enron.com
## 10261 20767 2997 TO chris.long@enron.com
## 10262 20768 2997 TO susan.mara@enron.com
## 10263 20769 2997 TO sandra.mccubbin@enron.com
## 10264 20770 2997 TO becky.merola@enron.com
## 10265 20771 2997 TO fred.miller@enron.com
## 10266 20772 2997 TO mary.miller@enron.com
## 10267 20773 2997 TO steve.montovano@enron.com
## 10268 20774 2997 TO christi.nicolay@enron.com
## 10269 20775 2997 TO lou.pai@enron.com
## 10270 20776 2997 TO sarah.novosel@enron.com
## 10271 20777 2997 TO christie.patrick@enron.com
## 10272 20778 2997 TO mona.petrochko@enron.com
## 10273 20779 2997 TO scott.reblitz@enron.com
## 10274 20780 2997 TO thomas.reichelderfer@enron.com
## 10275 20781 2997 TO frank.rishe@enron.com
## 10276 20782 2997 TO dave.schafer@enron.com
## 10277 20783 2997 TO richard.shepherd@enron.com
## 10278 20784 2997 TO terence.thorn@enron.com
## 10279 20785 2997 TO kathleen.wagner@enron.com
## 10280 20786 2997 TO charles.yeung@enron.com
## 10281 20787 2997 TO lisa.yoho@enron.com
## 10282 20789 2997 CC kathleen.sullivan@enron.com
## 10283 20790 2997 BCC kathleen.sullivan@enron.com
## 10284 20791 2998 TO 20participants@caiso.com
## 10285 20793 3000 TO jabbott@entrix.com
## 10286 20794 3000 TO gackerman@wptf.org
## 10287 20795 3000 TO mpa@aelaw.com
## 10288 20796 3000 TO tanderson@lighthouse-energy.com
## 10289 20797 3000 TO dapplebaum@sithe.com
## 10290 20798 3000 TO brad.ashton@coastalcorp.com
## 10291 20799 3000 TO mayres@lighthouse-energy.com
## 10292 20800 3000 TO sarah.barishstraus@pseg.com
## 10293 20801 3000 TO jbarnett@coral-energy.com
## 10294 20802 3000 TO sarah.barpoulis@neg.pge.com
## 10295 20803 3000 TO lebarrett@duke-energy.com
## 10296 20804 3000 TO michael.barrett04@ey.com
## 10297 20805 3000 TO mbennett@epsa.org
## 10298 20806 3000 TO joe.bizzano@nrgenergy.com
## 10299 20807 3000 TO frayblay@aol.com
## 10300 20808 3000 TO bruce_i_bleiweis@reliantenergy.com
## 10301 20809 3000 TO mboyd@duke-energy.com
## 10302 20810 3000 TO marv.bradshaw@dynegy.com
## 10303 20811 3000 TO michael-briggs@reliantenergy.com
## 10304 20812 3000 TO jfbrodbeck@pplweb.com
## 10305 20813 3000 TO gbrown@sithe.com
## 10306 20814 3000 TO jef_brown@enron.com
## 10307 20815 3000 TO rbrown@exeloncorp.com
## 10308 20816 3000 TO teresabrown@duke-energy.com
## 10309 20817 3000 TO jjb@vnf.com
## 10310 20818 3000 TO bbuchynsky@aol.com
## 10311 20819 3000 TO rburke@pplglobal.com
## 10312 20820 3000 TO kent_burton@ogden-energy.com
## 10313 20821 3000 TO sbyrd@epsa.org
## 10314 20822 3000 TO manuel.canalita@williams.com
## 10315 20823 3000 TO cody.carter@williams.com
## 10316 20824 3000 TO gchandler@edisonmission.com
## 10317 20825 3000 TO achau@tractebelpowerinc.com
## 10318 20826 3000 TO john.a.cohen@bakernet.com
## 10319 20827 3000 TO bruce.a.connell@usa.conoco.com
## 10320 20828 3000 TO rick.counihan@greenmountain.com
## 10321 20829 3000 TO jhunter3@cox.rr.com
## 10322 20830 3000 TO dlcr@dynegy.com
## 10323 20831 3000 TO jim.czepiel@ref-fuel.com
## 10324 20832 3000 TO mapsa1@aol.com
## 10325 20833 3000 TO priyad@calpine.com
## 10326 20834 3000 TO joe.devito@nrgenergy.com
## 10327 20835 3000 TO jadillon@pplweb.com
## 10328 20836 3000 TO terrie.donahue@williams.com
## 10329 20837 3000 TO jmdonnell@duke-energy.com
## 10330 20838 3000 TO mary.doyle@dynegy.com
## 10331 20839 3000 TO mduggan@hess.com
## 10332 20840 3000 TO mdupre@entergy.com
## 10333 20841 3000 TO eisenstatl@dsmo.com
## 10334 20842 3000 TO dennis.elliott@williams.com
## 10335 20843 3000 TO cte@eslawfirm.com
## 10336 20844 3000 TO peter.esposito@dynegy.com
## 10337 20845 3000 TO chip.estes@williams.com
## 10338 20846 3000 TO gret@dynegy.com
## 10339 20847 3000 TO rfahey@mwgen.com
## 10340 20848 3000 TO diane.featherstone@powersrc.com
## 10341 20849 3000 TO feldmanr@bingham.com
## 10342 20850 3000 TO zori_ferkin@deweyballantine.com
## 10343 20851 3000 TO afontana@tenaska.com
## 10344 20852 3000 TO mforeman@tnsk.com
## 10345 20853 3000 TO efriedlander@edisonmission.com
## 10346 20854 3000 TO pete.frost@usa.conoco.com
## 10347 20855 3000 TO donna.fulton@enron.com
## 10348 20856 3000 TO jgallagher@epsa.org
## 10349 20857 3000 TO croach@bostonpacific.com
## 10350 20858 3000 TO peter.gaw@abnamro.com
## 10351 20859 3000 TO simon.r.gerlin@us.pwcglobal.com
## 10352 20860 3000 TO lealp@aol.com
## 10353 20861 3000 TO roger.m.gibian@bakernet.com
## 10354 20862 3000 TO mfgildea@duke-energy.com
## 10355 20863 3000 TO jimmyg@calpine.com
## 10356 20864 3000 TO agold@coral-energy.com
## 10357 20865 3000 TO david.goodman@uaecorp.com
## 10358 20866 3000 TO alycial@calpine.com
## 10359 20867 3000 TO jonathan.w.gottlieb@bakernet.com
## 10360 20868 3000 TO kgough@calpine.com
## 10361 20869 3000 TO barry.green@ontariopowergeneration.com
## 10362 20870 3000 TO steve.greene@neg.pge.com
## 10363 20871 3000 TO kerwin.grider@williams.com
## 10364 20872 3000 TO mike.grim@williams.com
## 10365 20873 3000 TO mary.hain@enron.com
## 10366 20874 3000 TO lynn.hargis@chadbourne.com
## 10367 20875 3000 TO tharper@tnsk.com
## 10368 20876 3000 TO jhartso@enron.com
## 10369 20877 3000 TO bhawkin@enron.com
## 10370 20878 3000 TO jack.hawks@neg.pge.com
## 10371 20879 3000 TO jolly.hayden@dynegy.com
## 10372 20880 3000 TO james.hebson@pseg.com
## 10373 20881 3000 TO shelyer@tnsk.com
## 10374 20882 3000 TO steve.herman@neg.pge.com
## 10375 20883 3000 TO pamela.hill@mirant.com
## 10376 20884 3000 TO tom.hoatson@enron.com
## 10377 20885 3000 TO david.goodman@uaecorp.com
## 10378 20886 3000 TO steve.huntoon@dynegy.com
## 10379 20887 3000 TO villi.iltchev@us.pwcglobal.com
## 10380 20888 3000 TO rjanssen@bostonpacific.com
## 10381 20889 3000 TO djohns@enstarenergy.com
## 10382 20890 3000 TO sami.kabbani@ref-fuel.com
## 10383 20891 3000 TO tom.kaslow@neg.pge.com
## 10384 20892 3000 TO akaufman@cpanj.com
## 10385 20893 3000 TO curtis_l_kebler@reliantenergy.com
## 10386 20894 3000 TO dennis.keener@williams.com
## 10387 20895 3000 TO lealp@aol.com
## 10388 20896 3000 TO steven@iepa.com
## 10389 20897 3000 TO dan.king@dynegy.com
## 10390 20898 3000 TO garson.knapp@williams.com
## 10391 20899 3000 TO eileenk@calpine.com
## 10392 20900 3000 TO samuel.kwong@williams.com
## 10393 20901 3000 TO klackey@edisonmission.com
## 10394 20902 3000 TO joe.lane@abnamro.com
## 10395 20903 3000 TO terry.lane@dynegy.com
## 10396 20904 3000 TO laudienl@epenergy.com
## 10397 20905 3000 TO sslavigne@duke-energy.com
## 10398 20906 3000 TO melissa.lavinson@neg.pge.com
## 10399 20907 3000 TO ilewis@epsa.org
## 10400 20908 3000 TO tamara.linde@pseg.com
## 10401 20909 3000 TO kristen.ludecke@pseg.com
## 10402 20910 3000 TO alexm@calpine.com
## 10403 20911 3000 TO bill.marks@mirant.com
## 10404 20912 3000 TO jmartin@tenaska.com
## 10405 20913 3000 TO marzmj@bp.com
## 10406 20914 3000 TO gmathews@edisonmission.com
## 10407 20915 3000 TO jmathis@edisonmission.com
## 10408 20916 3000 TO rjmatlock@duke-energy.com
## 10409 20917 3000 TO john.mcconomy@us.pwcglobal.com
## 10410 20918 3000 TO bmerola@enron.com
## 10411 20919 3000 TO john-meyer@reliantenergy.com
## 10412 20920 3000 TO jtmiller@thermoecotek.com
## 10413 20921 3000 TO kimontag@dttus.com
## 10414 20922 3000 TO ermooney@micron.net
## 10415 20923 3000 TO robert.moore@coastalcorp.com
## 10416 20924 3000 TO margaret.m.morgan@us.pwcglobal.com
## 10417 20925 3000 TO jane.mudgett@williams.com
## 10418 20926 3000 TO ngmuller@aol.com
## 10419 20927 3000 TO tim.muller@williams.com
## 10420 20928 3000 TO kam@eslawfirm.com
## 10421 20929 3000 TO bnagusky@iepm.org
## 10422 20930 3000 TO rnaill@aesc.com
## 10423 20931 3000 TO steven.naumann@exeloncorp.com
## 10424 20932 3000 TO judy.neason@williams.com
## 10425 20933 3000 TO cneedham@edisonmission.com
## 10426 20934 3000 TO netemeah@bp.com
## 10427 20935 3000 TO joel.newton@dynegy.com
## 10428 20936 3000 TO christi.l.nicolay@enron.com
## 10429 20937 3000 TO mark.niehaus@us.pwcglobal.com
## 10430 20938 3000 TO sarah.novosel@enron.com
## 10431 20939 3000 TO jobrien@sithe.com
## 10432 20940 3000 TO connell@williams.com
## 10433 20941 3000 TO eodonnell@deweyballantine.com
## 10434 20942 3000 TO oneill@greenmountain.com
## 10435 20943 3000 TO john_r_orr@reliantenergy.com
## 10436 20944 3000 TO dlostrow@fortistar.com
## 10437 20945 3000 TO roger.pelote@williams.com
## 10438 20946 3000 TO perlism@dsmo.com
## 10439 20947 3000 TO dmperlman@pwowersrc.com
## 10440 20948 3000 TO eperrigo@epsa.org
## 10441 20949 3000 TO bpeters@entrix.com
## 10442 20950 3000 TO tony.petrella@ontariopowergeneration.com
## 10443 20951 3000 TO mphilips@pwrteam.com
## 10444 20952 3000 TO jphill8@entergy.com
## 10445 20953 3000 TO mphillips@ridgewoodpower.com
## 10446 20954 3000 TO matthew.picardi@dynegy.com
## 10447 20955 3000 TO jackp@calpine.com
## 10448 20956 3000 TO stratergy@mediaone.net
## 10449 20957 3000 TO vann.prater@dynegy.com
## 10450 20958 3000 TO dan_predpall@urscorp.com
## 10451 20959 3000 TO prescorw@bp.com
## 10452 20960 3000 TO mquinn@ridgewoodpower.com
## 10453 20961 3000 TO billieramsey@paonline.com
## 10454 20962 3000 TO hjreed@powersrc.com
## 10455 20963 3000 TO rreilley@coral-energy.com
## 10456 20964 3000 TO croach@bostonpacific.com
## 10457 20965 3000 TO jeffrey.roark@mirant.com
## 10458 20966 3000 TO wroberts@edisonmission.com
## 10459 20967 3000 TO joer@calpine.com
## 10460 20968 3000 TO elliot.roseman@us.pwcglobal.com
## 10461 20969 3000 TO dave.ross@nrgenergy.com
## 10462 20970 3000 TO ellen@i-group.com
## 10463 20971 3000 TO hydro@smdhydro.com
## 10464 20972 3000 TO jruggirello@aesc.com
## 10465 20973 3000 TO rustumm@dsmo.com
## 10466 20974 3000 TO pschaub@entergy.com
## 10467 20975 3000 TO masc@dynegy.com
## 10468 20976 3000 TO janelle.scheuer@enron.com
## 10469 20977 3000 TO ejschneidewind@vrsh.com
## 10470 20978 3000 TO rshapiro@enron.com
## 10471 20979 3000 TO jsimon@epsa.org
## 10472 20980 3000 TO david.sims@coastalcorp.com
## 10473 20981 3000 TO sslater@epsa.org
## 10474 20982 3000 TO gail.smallwood@williams.com
## 10475 20983 3000 TO smutny@iepa.com
## 10476 20984 3000 TO paula_soos@ogden-energy.com
## 10477 20985 3000 TO jstanton@calpine.com
## 10478 20986 3000 TO sarah.stashak@mirant.com
## 10479 20987 3000 TO john.stauffacher@dynegy.com
## 10480 20988 3000 TO jsteffes@enron.com
## 10481 20989 3000 TO dick.stone@westmoreland.com
## 10482 20990 3000 TO john_h_stout@reliantenergy.com
## 10483 20991 3000 TO jim.w.summers@usa.conoco.com
## 10484 20992 3000 TO gtakvorian@thermoecotek.com
## 10485 20993 3000 TO wtaylor@calpine.com
## 10486 20994 3000 TO patricia.thompson@pseg.com
## 10487 20995 3000 TO tim.thuston@williams.com
## 10488 20996 3000 TO mtighe@hess.com
## 10489 20997 3000 TO karen.tomcala@pge-corp.com
## 10490 20998 3000 TO ltun@tractebelusa.com
## 10491 20999 3000 TO svandenberg@hess.com
## 10492 21000 3000 TO lvollmer@pwrteam.com
## 10493 21001 3000 TO awallmey@richmond.infi.net
## 10494 21002 3000 TO ewalsh@edisonmission.com
## 10495 21003 3000 TO aldie-warnock@reliantenergy.com
## 10496 21004 3000 TO sweiner@sithe.com
## 10497 21005 3000 TO awenner@velaw.com
## 10498 21006 3000 TO cwentlent@aesc.com
## 10499 21007 3000 TO wwerner@bostonpacific.com
## 10500 21008 3000 TO reed.wills@nrgenergy.com
## 10501 21009 3000 TO lwisniewski@sithe.com
## 10502 21010 3000 TO zaiontj@bp.com
## 10503 21011 3000 TO richzambo@aol.com
## 10504 21012 3000 TO michael.j.zimmer@bakernet.com
## 10505 21013 3001 TO alan.comnes@enron.com
## 10506 21014 3001 TO andre.cangucu@enron.com
## 10507 21015 3001 TO andrew.fastow@enron.com
## 10508 21016 3001 TO cbone@wyattfirm.com
## 10509 21017 3001 TO ceklund@llgm.com
## 10510 21018 3001 TO christian.yoder@enron.com
## 10511 21019 3001 TO christopher.calger@enron.com
## 10512 21020 3001 TO cliff.baxter@enron.com
## 10513 21021 3001 TO dan.leff@enron.com
## 10514 21023 3001 TO donald.black@enron.com
## 10515 21024 3001 TO elizabeth.tilney@enron.com
## 10516 21025 3001 TO eric.letke@enron.com
## 10517 21026 3001 TO gordon.savage@enron.com
## 10518 21027 3001 TO greg.wolfe@enron.com
## 10519 21028 3001 TO harold.buchanan@enron.com
## 10520 21029 3001 TO harry.kingerski@enron.com
## 10521 21030 3001 TO jklauber@llgm.com
## 10522 21034 3001 TO jennifer.rudolph@enron.com
## 10523 21035 3001 TO jeremy.blachman@enron.com
## 10524 21036 3001 TO joe.hartsoe@enron.com
## 10525 21037 3001 TO john.lavorato@enron.com
## 10526 21038 3001 TO karen.denne@enron.com
## 10527 21040 3001 TO linda.robertson@enron.com
## 10528 21042 3001 TO mark.koenig@enron.com
## 10529 21043 3001 TO mark.metts@enron.com
## 10530 21044 3001 TO mark.palmer@enron.com
## 10531 21045 3001 TO mark.muller@enron.com
## 10532 21046 3001 TO marty.sunde@enron.com
## 10533 21047 3001 TO marty.sunde@enron.com
## 10534 21048 3001 TO mary.hain@enron.com
## 10535 21049 3001 TO michael.moran@enron.com
## 10536 21050 3001 TO michael.tribolet@enron.com
## 10537 21051 3001 TO mike.smith@enron.com
## 10538 21053 3001 TO mitchell.taylor@enron.com
## 10539 21054 3001 TO paul.kaufman@enron.com
## 10540 21057 3001 TO richard.causey@enron.com
## 10541 21061 3001 TO robert.johnston@enron.com
## 10542 21062 3001 TO robert.williams@enron.com
## 10543 21063 3001 TO roger.yang@enron.com
## 10544 21064 3001 TO sandra.mccubbin@enron.com
## 10545 21065 3001 TO sarah.novosel@enron.com
## 10546 21066 3001 TO scott.stoness@enron.com
## 10547 21067 3001 TO shari.stack@enron.com
## 10548 21068 3001 TO shelia.benke@enron.com
## 10549 21070 3001 TO stephen.swain@enron.com
## 10550 21071 3001 TO steve.hall@enron.com
## 10551 21073 3001 TO susan.mara@enron.com
## 10552 21074 3001 TO thomas.white@enron.com
## 10553 21075 3001 TO tim.belden@enron.com
## 10554 21076 3001 TO travis.mccullough@enron.com
## 10555 21077 3001 TO vicki.sharp@enron.com
## 10556 21078 3001 TO wanda.curry@enron.com
## 10557 21079 3001 TO william.bradford@enron.com
## 10558 21080 3001 CC anna.mehrer@enron.com
## 10559 21081 3001 CC bernadette.hawkins@enron.com
## 10560 21082 3001 CC beverly.aden@enron.com
## 10561 21083 3001 CC binky.davidson@enron.com
## 10562 21084 3001 CC bridget.maronge@enron.com
## 10563 21085 3001 CC carol.moffett@enron.com
## 10564 21086 3001 CC cindy.derecskey@enron.com
## 10565 21087 3001 CC debra.davidson@enron.com
## 10566 21088 3001 CC dolores.fisher@enron.com
## 10567 21089 3001 CC emy.geraldo@enron.com
## 10568 21090 3001 CC esmeralda.hinojosa@enron.com
## 10569 21091 3001 CC ginger.dernehl@enron.com
## 10570 21092 3001 CC jan.king@enron.com
## 10571 21093 3001 CC janette.elbertson@enron.com
## 10572 21094 3001 CC joseph.alamo@enron.com
## 10573 21095 3001 CC karen.heathman@enron.com
## 10574 21096 3001 CC kathryn.sheppard@enron.com
## 10575 21097 3001 CC kay.chapman@enron.com
## 10576 21098 3001 CC kimberly.hillis@enron.com
## 10577 21099 3001 CC leasa.lopez@enron.com
## 10578 21100 3001 CC leticia.botello@enron.com
## 10579 21101 3001 CC lora.sullivan@enron.com
## 10580 21102 3001 CC lysa.akin@enron.com
## 10581 21103 3001 CC marcia.linton@enron.com
## 10582 21104 3001 CC maureen.mcvicker@enron.com
## 10583 21105 3001 CC mercy.gil@enron.com
## 10584 21106 3001 CC mollie.gustafson@enron.com
## 10585 21107 3001 CC paula.warren@enron.com
## 10586 21108 3001 CC robert.hermann@enron.com
## 10587 21109 3001 CC rosalinda.tijerina@enron.com
## 10588 21110 3001 CC rosario.boling@enron.com
## 10589 21111 3001 CC rubena.buerger@enron.com
## 10590 21112 3001 CC ruth.brown@enron.com
## 10591 21113 3001 CC ruth.mann@enron.com
## 10592 21114 3001 CC sharon.purswell@enron.com
## 10593 21115 3001 CC sharron.westbrook@enron.com
## 10594 21116 3001 CC stephanie.harris@enron.com
## 10595 21117 3001 CC stephanie.truss@enron.com
## 10596 21118 3001 CC susan.skarness@enron.com
## 10597 21119 3001 CC twanda.sweet@enron.com
## 10598 21120 3001 CC vscruggs@wyattfirm.com
## 10599 21121 3001 BCC anna.mehrer@enron.com
## 10600 21122 3001 BCC bernadette.hawkins@enron.com
## 10601 21123 3001 BCC beverly.aden@enron.com
## 10602 21124 3001 BCC binky.davidson@enron.com
## 10603 21125 3001 BCC bridget.maronge@enron.com
## 10604 21126 3001 BCC carol.moffett@enron.com
## 10605 21127 3001 BCC cindy.derecskey@enron.com
## 10606 21128 3001 BCC debra.davidson@enron.com
## 10607 21129 3001 BCC dolores.fisher@enron.com
## 10608 21130 3001 BCC emy.geraldo@enron.com
## 10609 21131 3001 BCC esmeralda.hinojosa@enron.com
## 10610 21132 3001 BCC ginger.dernehl@enron.com
## 10611 21133 3001 BCC jan.king@enron.com
## 10612 21134 3001 BCC janette.elbertson@enron.com
## 10613 21135 3001 BCC joseph.alamo@enron.com
## 10614 21136 3001 BCC karen.heathman@enron.com
## 10615 21137 3001 BCC kathryn.sheppard@enron.com
## 10616 21138 3001 BCC kay.chapman@enron.com
## 10617 21139 3001 BCC kimberly.hillis@enron.com
## 10618 21140 3001 BCC leasa.lopez@enron.com
## 10619 21141 3001 BCC leticia.botello@enron.com
## 10620 21142 3001 BCC lora.sullivan@enron.com
## 10621 21143 3001 BCC lysa.akin@enron.com
## 10622 21144 3001 BCC marcia.linton@enron.com
## 10623 21145 3001 BCC maureen.mcvicker@enron.com
## 10624 21146 3001 BCC mercy.gil@enron.com
## 10625 21147 3001 BCC mollie.gustafson@enron.com
## 10626 21148 3001 BCC paula.warren@enron.com
## 10627 21149 3001 BCC robert.hermann@enron.com
## 10628 21150 3001 BCC rosalinda.tijerina@enron.com
## 10629 21151 3001 BCC rosario.boling@enron.com
## 10630 21152 3001 BCC rubena.buerger@enron.com
## 10631 21153 3001 BCC ruth.brown@enron.com
## 10632 21154 3001 BCC ruth.mann@enron.com
## 10633 21155 3001 BCC sharon.purswell@enron.com
## 10634 21156 3001 BCC sharron.westbrook@enron.com
## 10635 21157 3001 BCC stephanie.harris@enron.com
## 10636 21158 3001 BCC stephanie.truss@enron.com
## 10637 21159 3001 BCC susan.skarness@enron.com
## 10638 21160 3001 BCC twanda.sweet@enron.com
## 10639 21161 3001 BCC vscruggs@wyattfirm.com
## 10640 21162 3002 TO nolan.steiner@avistacorp.com
## 10641 21163 3002 TO dvermillion@avistaenergy.com
## 10642 21164 3002 TO asettanni@bracepatt.com
## 10643 21165 3002 TO dwatkiss@bracepatt.com
## 10644 21166 3002 TO kcurry@bracepatt.com
## 10645 21167 3002 TO rcarroll@bracepatt.com
## 10646 21168 3002 TO gfergus@brobeck.com
## 10647 21169 3002 TO andrzej_kabarowski@cargill.com
## 10648 21170 3002 TO phillip_fantle@cargill.com
## 10649 21171 3002 TO psteel@coral-energy.com
## 10650 21172 3002 TO psteele@coral-energy.com
## 10651 21173 3002 TO rreilley@coral-energy.com
## 10652 21175 3002 TO mary.hain@enron.com
## 10653 21177 3002 TO smara@enron.com
## 10654 21178 3002 TO snovose@enron.com
## 10655 21179 3002 TO sstack@enron.com
## 10656 21180 3002 TO jfrizzell@gibbs-bruns.com
## 10657 21181 3002 TO sbishop@gibbs-bruns.com
## 10658 21182 3002 TO gerspamer@mofo.com
## 10659 21183 3002 TO kirvin@mofo.com
## 10660 21184 3002 TO kzeitlin@mofo.com
## 10661 21185 3002 TO rloeffler@mofo.com
## 10662 21186 3002 TO jmcgrane@morganlewis.com
## 10663 21187 3002 TO mgriffen@morganlewis.com
## 10664 21188 3002 TO bcurrey@omm.com
## 10665 21189 3002 TO jstamper@omm.com
## 10666 21190 3002 TO mawilliams@omm.com
## 10667 21191 3002 TO john.fryer@pacificorp.com
## 10668 21192 3002 TO nancy.loftin@pinnaclewest.com
## 10669 21193 3002 TO timothy.bolden@pinnaclewest.com
## 10670 21194 3002 TO dmperlman@powersrc.com
## 10671 21195 3002 TO rosteen@powersrc.com
## 10672 21196 3002 TO hao@quinnemanuel.com
## 10673 21197 3002 TO dgarber@sempra.com
## 10674 21198 3002 TO wdsmith@sempra.com
## 10675 21199 3002 TO rbeitler@sempratrading.com
## 10676 21200 3002 TO paramfjord@stoel.com
## 10677 21201 3002 TO rcjosephson@stoel.com
## 10678 21202 3002 TO sjkaplan@stoel.com
## 10679 21203 3002 TO mbrosterman@stroock.com
## 10680 21204 3002 TO mgoldstein@stroock.com
## 10681 21205 3002 TO pjazayeri@stroock.com
## 10682 21206 3002 TO theftler@stroock.com
## 10683 21207 3002 TO ayudkowsky@strook.com
## 10684 21208 3002 TO cfr@vnf.com
## 10685 21209 3002 TO gdb@vnf.com
## 10686 21210 3002 TO jrr@vnf.com
## 10687 21211 3003 TO nolan.steiner@avistacorp.com
## 10688 21212 3003 TO dvermillion@avistaenergy.com
## 10689 21213 3003 TO asettanni@bracepatt.com
## 10690 21214 3003 TO dwatkiss@bracepatt.com
## 10691 21215 3003 TO kcurry@bracepatt.com
## 10692 21216 3003 TO rcarroll@bracepatt.com
## 10693 21217 3003 TO gfergus@brobeck.com
## 10694 21218 3003 TO andrzej_kabarowski@cargill.com
## 10695 21219 3003 TO phillip_fantle@cargill.com
## 10696 21220 3003 TO psteel@coral-energy.com
## 10697 21221 3003 TO psteele@coral-energy.com
## 10698 21222 3003 TO rreilley@coral-energy.com
## 10699 21224 3003 TO mary.hain@enron.com
## 10700 21226 3003 TO smara@enron.com
## 10701 21227 3003 TO snovose@enron.com
## 10702 21228 3003 TO sstack@enron.com
## 10703 21229 3003 TO jfrizzell@gibbs-bruns.com
## 10704 21230 3003 TO sbishop@gibbs-bruns.com
## 10705 21231 3003 TO gerspamer@mofo.com
## 10706 21232 3003 TO kirvin@mofo.com
## 10707 21233 3003 TO kzeitlin@mofo.com
## 10708 21234 3003 TO rloeffler@mofo.com
## 10709 21235 3003 TO jmcgrane@morganlewis.com
## 10710 21236 3003 TO mgriffen@morganlewis.com
## 10711 21237 3003 TO bcurrey@omm.com
## 10712 21238 3003 TO jstamper@omm.com
## 10713 21239 3003 TO mawilliams@omm.com
## 10714 21240 3003 TO john.fryer@pacificorp.com
## 10715 21241 3003 TO nancy.loftin@pinnaclewest.com
## 10716 21242 3003 TO timothy.bolden@pinnaclewest.com
## 10717 21243 3003 TO dmperlman@powersrc.com
## 10718 21244 3003 TO rosteen@powersrc.com
## 10719 21245 3003 TO hao@quinnemanuel.com
## 10720 21246 3003 TO dgarber@sempra.com
## 10721 21247 3003 TO wdsmith@sempra.com
## 10722 21248 3003 TO rbeitler@sempratrading.com
## 10723 21249 3003 TO paramfjord@stoel.com
## 10724 21250 3003 TO sjkaplan@stoel.com
## 10725 21251 3003 TO mbrosterman@stroock.com
## 10726 21252 3003 TO mgoldstein@stroock.com
## 10727 21253 3003 TO pjazayeri@stroock.com
## 10728 21254 3003 TO theftler@stroock.com
## 10729 21255 3003 TO ayudkowsky@strook.com
## 10730 21256 3003 TO cfr@vnf.com
## 10731 21257 3003 TO gdb@vnf.com
## 10732 21258 3003 TO hes@vnf.com
## 10733 21259 3003 TO jrr@vnf.com
## 10734 21260 3003 CC andrew.haller@pacificorp.com
## 10735 21261 3003 BCC andrew.haller@pacificorp.com
## 10736 21263 3005 TO jim.buerkle@enron.com
## 10737 21264 3005 TO christopher.calger@enron.com
## 10738 21265 3005 TO ed.clark@enron.com
## 10739 21266 3005 TO michael.danielson@enron.com
## 10740 21267 3005 TO dave.fuller@enron.com
## 10741 21268 3005 TO mary.hain@enron.com
## 10742 21269 3005 TO elliot.mainzer@enron.com
## 10743 21270 3005 TO michael.mcdonald@enron.com
## 10744 21271 3005 TO laura.wente@enron.com
## 10745 21272 3005 TO jake.thomas@enron.com
## 10746 21273 3005 TO don.hammond@enron.com
## 10747 21274 3005 TO wayne.mays@enron.com
## 10748 21275 3006 TO hes@vnf.com
## 10749 21276 3006 TO nolan.steiner@avistacorp.com
## 10750 21277 3006 TO dvermillion@avistaenergy.com
## 10751 21278 3006 TO asettanni@bracepatt.com
## 10752 21279 3006 TO dwatkiss@bracepatt.com
## 10753 21280 3006 TO kcurry@bracepatt.com
## 10754 21281 3006 TO rcarroll@bracepatt.com
## 10755 21282 3006 TO gfergus@brobeck.com
## 10756 21283 3006 TO andrzej_kabarowski@cargill.com
## 10757 21284 3006 TO phillip_fantle@cargill.com
## 10758 21285 3006 TO psteel@coral-energy.com
## 10759 21286 3006 TO psteele@coral-energy.com
## 10760 21287 3006 TO rreilley@coral-energy.com
## 10761 21289 3006 TO mary.hain@enron.com
## 10762 21291 3006 TO smara@enron.com
## 10763 21292 3006 TO snovose@enron.com
## 10764 21293 3006 TO sstack@enron.com
## 10765 21294 3006 TO jfrizzell@gibbs-bruns.com
## 10766 21295 3006 TO sbishop@gibbs-bruns.com
## 10767 21296 3006 TO gerspamer@mofo.com
## 10768 21297 3006 TO kirvin@mofo.com
## 10769 21298 3006 TO kzeitlin@mofo.com
## 10770 21299 3006 TO rloeffler@mofo.com
## 10771 21300 3006 TO jmcgrane@morganlewis.com
## 10772 21301 3006 TO mgriffen@morganlewis.com
## 10773 21302 3006 TO bcurrey@omm.com
## 10774 21303 3006 TO jstamper@omm.com
## 10775 21304 3006 TO mawilliams@omm.com
## 10776 21305 3006 TO john.fryer@pacificorp.com
## 10777 21306 3006 TO nancy.loftin@pinnaclewest.com
## 10778 21307 3006 TO timothy.bolden@pinnaclewest.com
## 10779 21308 3006 TO dmperlman@powersrc.com
## 10780 21309 3006 TO rosteen@powersrc.com
## 10781 21310 3006 TO hao@quinnemanuel.com
## 10782 21311 3006 TO dgarber@sempra.com
## 10783 21312 3006 TO wdsmith@sempra.com
## 10784 21313 3006 TO rbeitler@sempratrading.com
## 10785 21314 3006 TO paramfjord@stoel.com
## 10786 21315 3006 TO rcjosephson@stoel.com
## 10787 21316 3006 TO sjkaplan@stoel.com
## 10788 21317 3006 TO mbrosterman@stroock.com
## 10789 21318 3006 TO mgoldstein@stroock.com
## 10790 21319 3006 TO pjazayeri@stroock.com
## 10791 21320 3006 TO theftler@stroock.com
## 10792 21321 3006 TO ayudkowsky@strook.com
## 10793 21322 3006 TO cfr@vnf.com
## 10794 21323 3006 TO gdb@vnf.com
## 10795 21324 3006 TO jrr@vnf.com
## 10796 21325 3007 TO kcurry@bracepatt.com
## 10797 21326 3007 TO rreilley@coral-energy.com
## 10798 21327 3007 TO mhain@ect.enron.com
## 10799 21328 3007 TO smara@enron.com
## 10800 21329 3007 TO snovose@enron.com
## 10801 21330 3007 TO david.perlman@powersrc.com
## 10802 21331 3007 TO rcjosephson@stoel.com
## 10803 21332 3007 TO hes@vnf.com
## 10804 21333 3007 CC jdwatkiss@aol.com
## 10805 21334 3007 BCC jdwatkiss@aol.com
## 10806 21335 3008 TO Undisclosed-Recipient
## 10807 21336 3009 TO kcurry@bracepatt.com
## 10808 21337 3009 TO jmcgrane@morganlewis.com
## 10809 21338 3009 CC nolan.steiner@avistacorp.com
## 10810 21339 3009 CC dvermillion@avistaenergy.com
## 10811 21340 3009 CC asettanni@bracepatt.com
## 10812 21341 3009 CC dwatkiss@bracepatt.com
## 10813 21342 3009 CC rcarroll@bracepatt.com
## 10814 21343 3009 CC gfergus@brobeck.com
## 10815 21344 3009 CC andrzej_kabarowski@cargill.com
## 10816 21345 3009 CC phillip_fantle@cargill.com
## 10817 21346 3009 CC psteel@coral-energy.com
## 10818 21347 3009 CC psteele@coral-energy.com
## 10819 21348 3009 CC rreilley@coral-energy.com
## 10820 21350 3009 CC mary.hain@enron.com
## 10821 21352 3009 CC smara@enron.com
## 10822 21353 3009 CC snovose@enron.com
## 10823 21354 3009 CC sstack@enron.com
## 10824 21355 3009 CC jfrizzell@gibbs-bruns.com
## 10825 21356 3009 CC sbishop@gibbs-bruns.com
## 10826 21357 3009 CC gerspamer@mofo.com
## 10827 21358 3009 CC kirvin@mofo.com
## 10828 21359 3009 CC kzeitlin@mofo.com
## 10829 21360 3009 CC rloeffler@mofo.com
## 10830 21361 3009 CC mgriffen@morganlewis.com
## 10831 21362 3009 CC bcurrey@omm.com
## 10832 21363 3009 CC jstamper@omm.com
## 10833 21364 3009 CC mawilliams@omm.com
## 10834 21365 3009 CC john.fryer@pacificorp.com
## 10835 21366 3009 CC nancy.loftin@pinnaclewest.com
## 10836 21367 3009 CC timothy.bolden@pinnaclewest.com
## 10837 21368 3009 CC dmperlman@powersrc.com
## 10838 21369 3009 CC rosteen@powersrc.com
## 10839 21370 3009 CC hao@quinnemanuel.com
## 10840 21371 3009 CC dgarber@sempra.com
## 10841 21372 3009 CC wdsmith@sempra.com
## 10842 21373 3009 CC rbeitler@sempratrading.com
## 10843 21374 3009 CC rcjosephson@stoel.com
## 10844 21375 3009 CC sjkaplan@stoel.com
## 10845 21376 3009 CC mbrosterman@stroock.com
## 10846 21377 3009 CC mgoldstein@stroock.com
## 10847 21378 3009 CC pjazayeri@stroock.com
## 10848 21379 3009 CC theftler@stroock.com
## 10849 21380 3009 CC ayudkowsky@strook.com
## 10850 21381 3009 CC cfr@vnf.com
## 10851 21382 3009 CC gdb@vnf.com
## 10852 21383 3009 CC hes@vnf.com
## 10853 21384 3009 CC jrr@vnf.com
## 10854 21385 3009 BCC nolan.steiner@avistacorp.com
## 10855 21386 3009 BCC dvermillion@avistaenergy.com
## 10856 21387 3009 BCC asettanni@bracepatt.com
## 10857 21388 3009 BCC dwatkiss@bracepatt.com
## 10858 21389 3009 BCC rcarroll@bracepatt.com
## 10859 21390 3009 BCC gfergus@brobeck.com
## 10860 21391 3009 BCC andrzej_kabarowski@cargill.com
## 10861 21392 3009 BCC phillip_fantle@cargill.com
## 10862 21393 3009 BCC psteel@coral-energy.com
## 10863 21394 3009 BCC psteele@coral-energy.com
## 10864 21395 3009 BCC rreilley@coral-energy.com
## 10865 21397 3009 BCC mary.hain@enron.com
## 10866 21399 3009 BCC smara@enron.com
## 10867 21400 3009 BCC snovose@enron.com
## 10868 21401 3009 BCC sstack@enron.com
## 10869 21402 3009 BCC jfrizzell@gibbs-bruns.com
## 10870 21403 3009 BCC sbishop@gibbs-bruns.com
## 10871 21404 3009 BCC gerspamer@mofo.com
## 10872 21405 3009 BCC kirvin@mofo.com
## 10873 21406 3009 BCC kzeitlin@mofo.com
## 10874 21407 3009 BCC rloeffler@mofo.com
## 10875 21408 3009 BCC mgriffen@morganlewis.com
## 10876 21409 3009 BCC bcurrey@omm.com
## 10877 21410 3009 BCC jstamper@omm.com
## 10878 21411 3009 BCC mawilliams@omm.com
## 10879 21412 3009 BCC john.fryer@pacificorp.com
## 10880 21413 3009 BCC nancy.loftin@pinnaclewest.com
## 10881 21414 3009 BCC timothy.bolden@pinnaclewest.com
## 10882 21415 3009 BCC dmperlman@powersrc.com
## 10883 21416 3009 BCC rosteen@powersrc.com
## 10884 21417 3009 BCC hao@quinnemanuel.com
## 10885 21418 3009 BCC dgarber@sempra.com
## 10886 21419 3009 BCC wdsmith@sempra.com
## 10887 21420 3009 BCC rbeitler@sempratrading.com
## 10888 21421 3009 BCC rcjosephson@stoel.com
## 10889 21422 3009 BCC sjkaplan@stoel.com
## 10890 21423 3009 BCC mbrosterman@stroock.com
## 10891 21424 3009 BCC mgoldstein@stroock.com
## 10892 21425 3009 BCC pjazayeri@stroock.com
## 10893 21426 3009 BCC theftler@stroock.com
## 10894 21427 3009 BCC ayudkowsky@strook.com
## 10895 21428 3009 BCC cfr@vnf.com
## 10896 21429 3009 BCC gdb@vnf.com
## 10897 21430 3009 BCC hes@vnf.com
## 10898 21431 3009 BCC jrr@vnf.com
## 10899 21432 3010 TO rcarroll@bracepatt.com
## 10900 21433 3010 TO nolan.steiner@avistacorp.com
## 10901 21434 3010 TO dvermillion@avistaenergy.com
## 10902 21435 3010 TO asettanni@bracepatt.com
## 10903 21436 3010 TO dwatkiss@bracepatt.com
## 10904 21437 3010 TO kcurry@bracepatt.com
## 10905 21438 3010 TO gfergus@brobeck.com
## 10906 21439 3010 TO andrzej_kabarowski@cargill.com
## 10907 21440 3010 TO phillip_fantle@cargill.com
## 10908 21441 3010 TO psteel@coral-energy.com
## 10909 21442 3010 TO psteele@coral-energy.com
## 10910 21443 3010 TO rreilley@coral-energy.com
## 10911 21445 3010 TO mary.hain@enron.com
## 10912 21447 3010 TO smara@enron.com
## 10913 21448 3010 TO snovose@enron.com
## 10914 21449 3010 TO sstack@enron.com
## 10915 21450 3010 TO jfrizzell@gibbs-bruns.com
## 10916 21451 3010 TO sbishop@gibbs-bruns.com
## 10917 21452 3010 TO gerspamer@mofo.com
## 10918 21453 3010 TO kirvin@mofo.com
## 10919 21454 3010 TO kzeitlin@mofo.com
## 10920 21455 3010 TO rloeffler@mofo.com
## 10921 21456 3010 TO jmcgrane@morganlewis.com
## 10922 21457 3010 TO mgriffen@morganlewis.com
## 10923 21458 3010 TO bcurrey@omm.com
## 10924 21459 3010 TO jstamper@omm.com
## 10925 21460 3010 TO mawilliams@omm.com
## 10926 21461 3010 TO john.fryer@pacificorp.com
## 10927 21462 3010 TO nancy.loftin@pinnaclewest.com
## 10928 21463 3010 TO timothy.bolden@pinnaclewest.com
## 10929 21464 3010 TO dmperlman@powersrc.com
## 10930 21465 3010 TO rosteen@powersrc.com
## 10931 21466 3010 TO hao@quinnemanuel.com
## 10932 21467 3010 TO dgarber@sempra.com
## 10933 21468 3010 TO wdsmith@sempra.com
## 10934 21469 3010 TO rbeitler@sempratrading.com
## 10935 21470 3010 TO paramfjord@stoel.com
## 10936 21471 3010 TO rcjosephson@stoel.com
## 10937 21472 3010 TO sjkaplan@stoel.com
## 10938 21473 3010 TO mbrosterman@stroock.com
## 10939 21474 3010 TO mgoldstein@stroock.com
## 10940 21475 3010 TO pjazayeri@stroock.com
## 10941 21476 3010 TO theftler@stroock.com
## 10942 21477 3010 TO ayudkowsky@strook.com
## 10943 21478 3010 TO cfr@vnf.com
## 10944 21479 3010 TO gdb@vnf.com
## 10945 21480 3010 TO hes@vnf.com
## 10946 21481 3010 TO jrr@vnf.com
## 10947 21482 3011 TO mary.hain@enron.com
## 10948 21483 3012 TO portland.desk@enron.com
## 10949 21485 3014 TO portland.desk@enron.com
## 10950 21486 3015 TO christopher.calger@enron.com
## 10951 21487 3015 TO jim.buerkle@enron.com
## 10952 21488 3015 TO dave.fuller@enron.com
## 10953 21489 3015 TO mary.hain@enron.com
## 10954 21490 3015 TO paul.kaufman@enron.com
## 10955 21491 3015 TO michael.mcdonald@enron.com
## 10956 21492 3015 TO greg.wolfe@enron.com
## 10957 21493 3015 TO laura.wente@enron.com
## 10958 21494 3015 TO alan.comnes@enron.com
## 10959 21507 3017 TO mary.hain@enron.com
## 10960 21508 3017 CC frank.afranji@enron.com
## 10961 21509 3017 CC michele.farrell@enron.com
## 10962 21510 3017 BCC frank.afranji@enron.com
## 10963 21511 3017 BCC michele.farrell@enron.com
## 10964 21519 3021 TO 20participants@caiso.com
## 10965 21520 3022 TO alan.comnes@enron.com
## 10966 21521 3022 TO aleck.dadson@enron.com
## 10967 21522 3022 TO allison.navin@enron.com
## 10968 21523 3022 TO amy.fabian@enron.com
## 10969 21524 3022 TO barbara.hueter@enron.com
## 10970 21525 3022 TO bernadette.hawkins@enron.com
## 10971 21526 3022 TO bill.moore@enron.com
## 10972 21527 3022 TO carolyn.cooney@enron.com
## 10973 21528 3022 TO charles.yeung@enron.com
## 10974 21529 3022 TO chauncey.hood@enron.com
## 10975 21530 3022 TO chris.long@enron.com
## 10976 21531 3022 TO christi.nicolay@enron.com
## 10977 21532 3022 TO damon.harvey@enron.com
## 10978 21533 3022 TO dan.staines@enron.com
## 10979 21534 3022 TO daniel.allegretti@enron.com
## 10980 21535 3022 TO dave.mangskau@enron.com
## 10981 21536 3022 TO donald.lassere@enron.com
## 10982 21537 3022 TO elizabeth.linnell@enron.com
## 10983 21538 3022 TO eric.benson@enron.com
## 10984 21539 3022 TO frank.rishe@enron.com
## 10985 21540 3022 TO geriann.warner@enron.com
## 10986 21541 3022 TO germain.palmer@enron.com
## 10987 21542 3022 TO ginger.dernehl@enron.com
## 10988 21543 3022 TO gloria.ogenyi@enron.com
## 10989 21544 3022 TO harry.kingerski@enron.com
## 10990 21545 3022 TO howard.fromer@enron.com
## 10991 21547 3022 TO janel.guerrero@enron.com
## 10992 21548 3022 TO janine.migden@enron.com
## 10993 21549 3022 TO jean.dressler@enron.com
## 10994 21550 3022 TO jean.ryall@enron.com
## 10995 21551 3022 TO jeff.brown@enron.com
## 10996 21553 3022 TO jeffrey.keeler@enron.com
## 10997 21554 3022 TO joe.allen@enron.com
## 10998 21555 3022 TO joe.connor@enron.com
## 10999 21556 3022 TO joe.hartsoe@enron.com
## 11000 21557 3022 TO joe.hillings@enron.com
## 11001 21558 3022 TO joseph.alamo@enron.com
## 11002 21559 3022 TO kathleen.sullivan@enron.com
## 11003 21560 3022 TO kathy.mongeon@enron.com
## 11004 21561 3022 TO kerry.stroup@enron.com
## 11005 21562 3022 TO kirsten.bellas@enron.com
## 11006 21563 3022 TO lara.leibman@enron.com
## 11007 21564 3022 TO laurie.knight@enron.com
## 11008 21565 3022 TO leslie.lawner@enron.com
## 11009 21566 3022 TO linda.noske@enron.com
## 11010 21567 3022 TO linda.robertson@enron.com
## 11011 21568 3022 TO lindsay.meade@enron.com
## 11012 21569 3022 TO lisa.yoho@enron.com
## 11013 21570 3022 TO lora.sullivan@enron.com
## 11014 21571 3022 TO lysa.akin@enron.com
## 11015 21572 3022 TO marchris.robinson@enron.com
## 11016 21573 3022 TO marcia.linton@enron.com
## 11017 21574 3022 TO mary.hain@enron.com
## 11018 21575 3022 TO maureen.mcvicker@enron.com
## 11019 21576 3022 TO melinda.pharms@enron.com
## 11020 21577 3022 TO michelle.belzak@enron.com
## 11021 21578 3022 TO mike.roan@enron.com
## 11022 21579 3022 TO mona.petrochko@enron.com
## 11023 21580 3022 TO nancy.hetrick@enron.com
## 11024 21581 3022 TO patrick.keene@enron.com
## 11025 21582 3022 TO paul.kaufman@enron.com
## 11026 21583 3022 TO rebecca.cantrell@enron.com
## 11027 21584 3022 TO richard.ingersoll@enron.com
## 11028 21586 3022 TO robert.frank@enron.com
## 11029 21587 3022 TO robert.hemstock@enron.com
## 11030 21588 3022 TO robert.neustaedter@enron.com
## 11031 21589 3022 TO robin.kittel@enron.com
## 11032 21590 3022 TO ron.mcnamara@enron.com
## 11033 21591 3022 TO roy.boston@enron.com
## 11034 21592 3022 TO rubena.buerger@enron.com
## 11035 21593 3022 TO sandra.mccubbin@enron.com
## 11036 21594 3022 TO sarah.novosel@enron.com
## 11037 21595 3022 TO scott.bolton@enron.com
## 11038 21596 3022 TO stella.chan@enron.com
## 11039 21597 3022 TO stephen.burns@enron.com
## 11040 21598 3022 TO steve.montovano@enron.com
## 11041 21599 3022 TO steve.walton@enron.com
## 11042 21601 3022 TO sue.nord@enron.com
## 11043 21602 3022 TO susan.mara@enron.com
## 11044 21603 3022 TO susan.landwehr@enron.com
## 11045 21604 3022 TO terri.miller@enron.com
## 11046 21605 3022 TO thane.twiggs@enron.com
## 11047 21606 3022 TO tom.briggs@enron.com
## 11048 21607 3022 TO tom.chapman@enron.com
## 11049 21608 3022 TO tom.delaney@enron.com
## 11050 21609 3022 TO tom.hoatson@enron.com
## 11051 21610 3022 TO tracy.cooper@enron.com
## 11052 21611 3022 TO vinio.floris@enron.com
## 11053 21612 3022 TO xi.xi@enron.com
## 11054 21613 3023 TO jack.speer@alcoa.com
## 11055 21614 3023 TO crow@millernash.com
## 11056 21615 3023 TO michaelearly@earthlink.net
## 11057 21616 3023 TO eauverde@hotmail.com
## 11058 21617 3023 TO jefschlect@avistacorp.com
## 11059 21618 3023 TO tdeboer@painehamblen.com
## 11060 21619 3023 TO rbstrong@painehamblen.com
## 11061 21620 3023 TO rpierce@avistaenergy.com
## 11062 21621 3023 TO lhamilton@avistaenergy.com
## 11063 21622 3023 TO pete@ashland.or.us
## 11064 21623 3023 TO mike.macdougall@powerex.com
## 11065 21624 3023 TO pfox@bracepatt.com
## 11066 21625 3023 TO pjburger@bpa.gov
## 11067 21626 3023 TO jdwright@bpa.gov
## 11068 21627 3023 TO jpw@duncanallen.com
## 11069 21628 3023 TO tstevenson@ci.burbank.ca.us
## 11070 21629 3023 TO seligman@teleport.com
## 11071 21630 3023 TO kmoxness@cencoast.com
## 11072 21631 3023 TO ghuhta@cowlitzpud.org
## 11073 21632 3023 TO bessex@cowlitzpud.org
## 11074 21633 3023 TO rkindley@schwabe.com
## 11075 21634 3023 TO gregb@clatskanie.com
## 11076 21635 3023 TO johk@critfc.org
## 11077 21636 3023 TO cub@teleport.com
## 11078 21637 3023 TO cwagers@dcpud.org
## 11079 21638 3023 TO dws@keywaycorp.com
## 11080 21639 3023 TO pmurphy@mbllp.com
## 11081 21640 3023 TO bferranti@mbllp.com
## 11082 21641 3023 TO pete.forsyth@kaiseral.com
## 11083 21642 3023 TO alan@epud.org
## 11084 21643 3023 TO mhain@ect.enron.com
## 11085 21644 3023 TO jhartso@enron.com
## 11086 21645 3023 TO john.yanov@eweb.eugene.or.us
## 11087 21646 3023 TO tgrim@chbh.com
## 11088 21647 3023 TO townsend@chbh.com
## 11089 21648 3023 TO dbouchard@ci.forest-grove.or.us
## 11090 21649 3023 TO joynnr@mresearch.com
## 11091 21650 3023 TO lyn_williams@pgn.com
## 11092 21651 3023 TO aw_turner@pgn.com
## 11093 21652 3023 TO darcy@tonkon.com
## 11094 21653 3023 TO joynnr@mresearch.com
## 11095 21654 3023 TO rfoiani@gcpud.org
## 11096 21655 3023 TO kknitte@gcpud.org
## 11097 21656 3023 TO jdeason@chbh.com
## 11098 21657 3023 TO rle@givenspursley.com
## 11099 21658 3023 TO pspi@dynegy.com
## 11100 21659 3023 TO ias@dvclaw.com
## 11101 21660 3023 TO lwolv@worldaccessnet.com
## 11102 21661 3023 TO pnichols@idahopower.com
## 11103 21662 3023 TO pobenchain@idahopower.com
## 11104 21663 3023 TO elisackf@aol.com
## 11105 21664 3023 TO johncameron@dwt.com
## 11106 21665 3023 TO tracigrundon@dwt.com
## 11107 21666 3023 TO dparrish@prmllp.com
## 11108 21667 3023 TO jlh@mc-power.com
## 11109 21668 3023 TO mthomas@mtpower.com
## 11110 21669 3023 TO mstauffer@mtpower.com
## 11111 21670 3023 TO lawyer@teleport.com
## sender date
## 1 press.release@enron.com 2000-01-21
## 2 office.chairman@enron.com 2000-01-24
## 3 office.chairman@enron.com 2000-01-24
## 4 press.release@enron.com 2000-02-02
## 5 office.chairman@enron.com 2000-02-07
## 6 office.chairman@enron.com 2000-02-07
## 7 foothi19@idt.net 2000-08-25
## 8 enron.announcements@enron.com 2000-06-21
## 9 christian.yoder@enron.com 2000-07-25
## 10 christian.yoder@enron.com 2000-07-25
## 11 christian.yoder@enron.com 2000-07-25
## 12 christian.yoder@enron.com 2000-07-25
## 13 christian.yoder@enron.com 2000-07-25
## 14 christian.yoder@enron.com 2000-07-25
## 15 carla.hoffman@enron.com 2000-07-27
## 16 carla.hoffman@enron.com 2000-07-27
## 17 carla.hoffman@enron.com 2000-07-27
## 18 carla.hoffman@enron.com 2000-07-27
## 19 carla.hoffman@enron.com 2000-07-27
## 20 carla.hoffman@enron.com 2000-07-27
## 21 carla.hoffman@enron.com 2000-07-27
## 22 carla.hoffman@enron.com 2000-07-27
## 23 shari.stack@enron.com 2000-07-31
## 24 shari.stack@enron.com 2000-07-31
## 25 shari.stack@enron.com 2000-07-31
## 26 shari.stack@enron.com 2000-07-31
## 27 shari.stack@enron.com 2000-07-31
## 28 shari.stack@enron.com 2000-07-31
## 29 shari.stack@enron.com 2000-07-31
## 30 shari.stack@enron.com 2000-07-31
## 31 shari.stack@enron.com 2000-07-31
## 32 shari.stack@enron.com 2000-07-31
## 33 shari.stack@enron.com 2000-08-02
## 34 shari.stack@enron.com 2000-08-02
## 35 shari.stack@enron.com 2000-08-02
## 36 shari.stack@enron.com 2000-08-02
## 37 shari.stack@enron.com 2000-08-02
## 38 joseph.alamo@enron.com 2000-08-02
## 39 joseph.alamo@enron.com 2000-08-02
## 40 joseph.alamo@enron.com 2000-08-02
## 41 joseph.alamo@enron.com 2000-08-02
## 42 joseph.alamo@enron.com 2000-08-02
## 43 joseph.alamo@enron.com 2000-08-02
## 44 joseph.alamo@enron.com 2000-08-02
## 45 joseph.alamo@enron.com 2000-08-02
## 46 joseph.alamo@enron.com 2000-08-02
## 47 joseph.alamo@enron.com 2000-08-02
## 48 joseph.alamo@enron.com 2000-08-02
## 49 joseph.alamo@enron.com 2000-08-02
## 50 joseph.alamo@enron.com 2000-08-02
## 51 joseph.alamo@enron.com 2000-08-02
## 52 joseph.alamo@enron.com 2000-08-02
## 53 bwoertz@caiso.com 2000-08-03
## 54 heather.dunton@enron.com 2000-08-03
## 55 heather.dunton@enron.com 2000-08-03
## 56 heather.dunton@enron.com 2000-08-03
## 57 heather.dunton@enron.com 2000-08-03
## 58 heather.dunton@enron.com 2000-08-03
## 59 heather.dunton@enron.com 2000-08-03
## 60 heather.dunton@enron.com 2000-08-03
## 61 heather.dunton@enron.com 2000-08-03
## 62 heather.dunton@enron.com 2000-08-03
## 63 heather.dunton@enron.com 2000-08-03
## 64 heather.dunton@enron.com 2000-08-03
## 65 heather.dunton@enron.com 2000-08-03
## 66 heather.dunton@enron.com 2000-08-03
## 67 heather.dunton@enron.com 2000-08-03
## 68 heather.dunton@enron.com 2000-08-03
## 69 bruno.gaillard@enron.com 2000-08-03
## 70 bruno.gaillard@enron.com 2000-08-03
## 71 bruno.gaillard@enron.com 2000-08-03
## 72 bruno.gaillard@enron.com 2000-08-03
## 73 bruno.gaillard@enron.com 2000-08-03
## 74 bruno.gaillard@enron.com 2000-08-03
## 75 bruno.gaillard@enron.com 2000-08-03
## 76 bruno.gaillard@enron.com 2000-08-03
## 77 bruno.gaillard@enron.com 2000-08-03
## 78 bruno.gaillard@enron.com 2000-08-03
## 79 bruno.gaillard@enron.com 2000-08-03
## 80 foothi19@idt.net 2000-08-04
## 81 mona.petrochko@enron.com 2000-08-04
## 82 mona.petrochko@enron.com 2000-08-04
## 83 mona.petrochko@enron.com 2000-08-04
## 84 mona.petrochko@enron.com 2000-08-04
## 85 mona.petrochko@enron.com 2000-08-04
## 86 mona.petrochko@enron.com 2000-08-04
## 87 mona.petrochko@enron.com 2000-08-04
## 88 mona.petrochko@enron.com 2000-08-04
## 89 mona.petrochko@enron.com 2000-08-04
## 90 mona.petrochko@enron.com 2000-08-04
## 91 mona.petrochko@enron.com 2000-08-04
## 92 mona.petrochko@enron.com 2000-08-04
## 93 mona.petrochko@enron.com 2000-08-04
## 94 mona.petrochko@enron.com 2000-08-04
## 95 mona.petrochko@enron.com 2000-08-04
## 96 bruno.gaillard@enron.com 2000-08-04
## 97 bruno.gaillard@enron.com 2000-08-04
## 98 bruno.gaillard@enron.com 2000-08-04
## 99 bruno.gaillard@enron.com 2000-08-04
## 100 bruno.gaillard@enron.com 2000-08-04
## 101 bruno.gaillard@enron.com 2000-08-04
## 102 bruno.gaillard@enron.com 2000-08-04
## 103 bruno.gaillard@enron.com 2000-08-04
## 104 bruno.gaillard@enron.com 2000-08-04
## 105 bruno.gaillard@enron.com 2000-08-04
## 106 bruno.gaillard@enron.com 2000-08-04
## 107 carla.hoffman@enron.com 2000-08-07
## 108 carla.hoffman@enron.com 2000-08-07
## 109 carla.hoffman@enron.com 2000-08-07
## 110 carla.hoffman@enron.com 2000-08-07
## 111 carla.hoffman@enron.com 2000-08-07
## 112 carla.hoffman@enron.com 2000-08-07
## 113 carla.hoffman@enron.com 2000-08-07
## 114 carla.hoffman@enron.com 2000-08-07
## 115 carla.hoffman@enron.com 2000-08-07
## 116 carla.hoffman@enron.com 2000-08-07
## 117 shari.stack@enron.com 2000-08-07
## 118 shari.stack@enron.com 2000-08-07
## 119 shari.stack@enron.com 2000-08-07
## 120 shari.stack@enron.com 2000-08-07
## 121 shari.stack@enron.com 2000-08-07
## 122 shari.stack@enron.com 2000-08-07
## 123 shari.stack@enron.com 2000-08-07
## 124 shari.stack@enron.com 2000-08-07
## 125 shari.stack@enron.com 2000-08-07
## 126 shari.stack@enron.com 2000-08-07
## 127 shari.stack@enron.com 2000-08-07
## 128 shari.stack@enron.com 2000-08-07
## 129 shari.stack@enron.com 2000-08-07
## 130 shari.stack@enron.com 2000-08-07
## 131 shari.stack@enron.com 2000-08-07
## 132 janel.guerrero@enron.com 2000-08-15
## 133 janel.guerrero@enron.com 2000-08-15
## 134 janel.guerrero@enron.com 2000-08-15
## 135 mary.hain@enron.com 2000-08-17
## 136 dlevine@caiso.com 2000-08-17
## 137 tim.belden@enron.com 2000-08-20
## 138 paul.kane@enron.com 2000-08-20
## 139 paul.kane@enron.com 2000-08-20
## 140 paul.kane@enron.com 2000-08-20
## 141 christian.yoder@enron.com 2000-08-22
## 142 christian.yoder@enron.com 2000-08-22
## 143 christian.yoder@enron.com 2000-08-22
## 144 enron.announcements@enron.com 2000-08-22
## 145 dfuller@caiso.com 2000-08-22
## 146 shapp@caiso.com 2000-08-22
## 147 khoffman@caiso.com 2000-08-22
## 148 khoffman@caiso.com 2000-08-22
## 149 khoffman@caiso.com 2000-08-22
## 150 khoffman@caiso.com 2000-08-22
## 151 khoffman@caiso.com 2000-08-22
## 152 khoffman@caiso.com 2000-08-22
## 153 khoffman@caiso.com 2000-08-22
## 154 khoffman@caiso.com 2000-08-22
## 155 khoffman@caiso.com 2000-08-22
## 156 khoffman@caiso.com 2000-08-22
## 157 khoffman@caiso.com 2000-08-22
## 158 debra.davidson@enron.com 2000-08-23
## 159 jblatchford@caiso.com 2000-08-23
## 160 jblatchford@caiso.com 2000-08-23
## 161 carla.hoffman@enron.com 2000-08-23
## 162 carla.hoffman@enron.com 2000-08-23
## 163 carla.hoffman@enron.com 2000-08-23
## 164 carla.hoffman@enron.com 2000-08-23
## 165 carla.hoffman@enron.com 2000-08-23
## 166 carla.hoffman@enron.com 2000-08-23
## 167 crcommunications@caiso.com 2000-08-23
## 168 crcommunications@caiso.com 2000-08-23
## 169 crcommunications@caiso.com 2000-08-23
## 170 crcommunications@caiso.com 2000-08-23
## 171 crcommunications@caiso.com 2000-08-23
## 172 crcommunications@caiso.com 2000-08-23
## 173 crcommunications@caiso.com 2000-08-23
## 174 crcommunications@caiso.com 2000-08-23
## 175 crcommunications@caiso.com 2000-08-23
## 176 crcommunications@caiso.com 2000-08-23
## 177 crcommunications@caiso.com 2000-08-23
## 178 crcommunications@caiso.com 2000-08-23
## 179 crcommunications@caiso.com 2000-08-23
## 180 crcommunications@caiso.com 2000-08-23
## 181 crcommunications@caiso.com 2000-08-23
## 182 crcommunications@caiso.com 2000-08-23
## 183 crcommunications@caiso.com 2000-08-23
## 184 crcommunications@caiso.com 2000-08-23
## 185 crcommunications@caiso.com 2000-08-23
## 186 crcommunications@caiso.com 2000-08-23
## 187 crcommunications@caiso.com 2000-08-23
## 188 crcommunications@caiso.com 2000-08-23
## 189 crcommunications@caiso.com 2000-08-23
## 190 crcommunications@caiso.com 2000-08-23
## 191 crcommunications@caiso.com 2000-08-23
## 192 caisomktops@caiso.com 2000-08-23
## 193 crcommunications@caiso.com 2000-08-23
## 194 crcommunications@caiso.com 2000-08-23
## 195 crcommunications@caiso.com 2000-08-23
## 196 crcommunications@caiso.com 2000-08-23
## 197 crcommunications@caiso.com 2000-08-23
## 198 crcommunications@caiso.com 2000-08-23
## 199 crcommunications@caiso.com 2000-08-23
## 200 crcommunications@caiso.com 2000-08-23
## 201 crcommunications@caiso.com 2000-08-23
## 202 crcommunications@caiso.com 2000-08-23
## 203 crcommunications@caiso.com 2000-08-23
## 204 crcommunications@caiso.com 2000-08-23
## 205 crcommunications@caiso.com 2000-08-23
## 206 crcommunications@caiso.com 2000-08-23
## 207 crcommunications@caiso.com 2000-08-23
## 208 crcommunications@caiso.com 2000-08-23
## 209 crcommunications@caiso.com 2000-08-23
## 210 crcommunications@caiso.com 2000-08-23
## 211 crcommunications@caiso.com 2000-08-23
## 212 crcommunications@caiso.com 2000-08-23
## 213 crcommunications@caiso.com 2000-08-23
## 214 crcommunications@caiso.com 2000-08-23
## 215 crcommunications@caiso.com 2000-08-23
## 216 crcommunications@caiso.com 2000-08-23
## 217 crcommunications@caiso.com 2000-08-23
## 218 crcommunications@caiso.com 2000-08-23
## 219 crcommunications@caiso.com 2000-08-23
## 220 carla.hoffman@enron.com 2000-08-23
## 221 carla.hoffman@enron.com 2000-08-23
## 222 carla.hoffman@enron.com 2000-08-23
## 223 carla.hoffman@enron.com 2000-08-23
## 224 carla.hoffman@enron.com 2000-08-23
## 225 carla.hoffman@enron.com 2000-08-23
## 226 cgrant@caiso.com 2000-08-24
## 227 carla.hoffman@enron.com 2000-08-24
## 228 carla.hoffman@enron.com 2000-08-24
## 229 carla.hoffman@enron.com 2000-08-24
## 230 carla.hoffman@enron.com 2000-08-24
## 231 carla.hoffman@enron.com 2000-08-24
## 232 carla.hoffman@enron.com 2000-08-24
## 233 carla.hoffman@enron.com 2000-08-24
## 234 shari.stack@enron.com 2000-08-24
## 235 shari.stack@enron.com 2000-08-24
## 236 shari.stack@enron.com 2000-08-24
## 237 carla.hoffman@enron.com 2000-08-24
## 238 carla.hoffman@enron.com 2000-08-24
## 239 carla.hoffman@enron.com 2000-08-24
## 240 carla.hoffman@enron.com 2000-08-24
## 241 carla.hoffman@enron.com 2000-08-24
## 242 carla.hoffman@enron.com 2000-08-24
## 243 carla.hoffman@enron.com 2000-08-24
## 244 crcommunications@caiso.com 2000-08-24
## 245 crcommunications@caiso.com 2000-08-24
## 246 crcommunications@caiso.com 2000-08-24
## 247 crcommunications@caiso.com 2000-08-24
## 248 crcommunications@caiso.com 2000-08-24
## 249 jblatchford@caiso.com 2000-08-24
## 250 jblatchford@caiso.com 2000-08-24
## 251 kristian.lande@enron.com 2000-08-24
## 252 kristian.lande@enron.com 2000-08-24
## 253 kristian.lande@enron.com 2000-08-24
## 254 kristian.lande@enron.com 2000-08-24
## 255 kristian.lande@enron.com 2000-08-24
## 256 kristian.lande@enron.com 2000-08-24
## 257 kristian.lande@enron.com 2000-08-24
## 258 kristian.lande@enron.com 2000-08-24
## 259 kristian.lande@enron.com 2000-08-24
## 260 kristian.lande@enron.com 2000-08-24
## 261 kristian.lande@enron.com 2000-08-24
## 262 kristian.lande@enron.com 2000-08-24
## 263 kristian.lande@enron.com 2000-08-24
## 264 kristian.lande@enron.com 2000-08-24
## 265 david.forster@enron.com 2000-08-24
## 266 david.forster@enron.com 2000-08-24
## 267 david.forster@enron.com 2000-08-24
## 268 diana.willigerod@enron.com 2000-08-24
## 269 shapp@caiso.com 2000-08-24
## 270 mneeley@caiso.com 2000-08-24
## 271 mneeley@caiso.com 2000-08-24
## 272 mneeley@caiso.com 2000-08-24
## 273 mneeley@caiso.com 2000-08-24
## 274 mneeley@caiso.com 2000-08-24
## 275 mneeley@caiso.com 2000-08-24
## 276 mneeley@caiso.com 2000-08-24
## 277 mneeley@caiso.com 2000-08-24
## 278 enron.announcements@enron.com 2000-08-24
## 279 enron.announcements@enron.com 2000-08-24
## 280 bwoertz@caiso.com 2000-08-24
## 281 bwoertz@caiso.com 2000-08-24
## 282 bwoertz@caiso.com 2000-08-24
## 283 bwoertz@caiso.com 2000-08-24
## 284 bwoertz@caiso.com 2000-08-24
## 285 bwoertz@caiso.com 2000-08-24
## 286 bwoertz@caiso.com 2000-08-24
## 287 bwoertz@caiso.com 2000-08-24
## 288 bwoertz@caiso.com 2000-08-24
## 289 bwoertz@caiso.com 2000-08-24
## 290 bwoertz@caiso.com 2000-08-24
## 291 bwoertz@caiso.com 2000-08-24
## 292 bwoertz@caiso.com 2000-08-24
## 293 bwoertz@caiso.com 2000-08-24
## 294 bwoertz@caiso.com 2000-08-24
## 295 bwoertz@caiso.com 2000-08-24
## 296 bwoertz@caiso.com 2000-08-24
## 297 bwoertz@caiso.com 2000-08-24
## 298 bwoertz@caiso.com 2000-08-24
## 299 bwoertz@caiso.com 2000-08-24
## 300 bwoertz@caiso.com 2000-08-24
## 301 bwoertz@caiso.com 2000-08-24
## 302 bwoertz@caiso.com 2000-08-24
## 303 bwoertz@caiso.com 2000-08-24
## 304 bwoertz@caiso.com 2000-08-24
## 305 bwoertz@caiso.com 2000-08-24
## 306 bwoertz@caiso.com 2000-08-24
## 307 bwoertz@caiso.com 2000-08-24
## 308 bwoertz@caiso.com 2000-08-24
## 309 bwoertz@caiso.com 2000-08-24
## 310 bwoertz@caiso.com 2000-08-24
## 311 bwoertz@caiso.com 2000-08-24
## 312 bwoertz@caiso.com 2000-08-24
## 313 bwoertz@caiso.com 2000-08-24
## 314 bwoertz@caiso.com 2000-08-24
## 315 bwoertz@caiso.com 2000-08-24
## 316 bwoertz@caiso.com 2000-08-24
## 317 bwoertz@caiso.com 2000-08-24
## 318 bwoertz@caiso.com 2000-08-24
## 319 bwoertz@caiso.com 2000-08-24
## 320 bwoertz@caiso.com 2000-08-24
## 321 bwoertz@caiso.com 2000-08-24
## 322 bwoertz@caiso.com 2000-08-24
## 323 bwoertz@caiso.com 2000-08-24
## 324 bwoertz@caiso.com 2000-08-24
## 325 bwoertz@caiso.com 2000-08-24
## 326 bwoertz@caiso.com 2000-08-24
## 327 bwoertz@caiso.com 2000-08-24
## 328 bwoertz@caiso.com 2000-08-24
## 329 bwoertz@caiso.com 2000-08-24
## 330 bwoertz@caiso.com 2000-08-24
## 331 bwoertz@caiso.com 2000-08-24
## 332 bwoertz@caiso.com 2000-08-24
## 333 bwoertz@caiso.com 2000-08-24
## 334 bwoertz@caiso.com 2000-08-24
## 335 bwoertz@caiso.com 2000-08-24
## 336 bwoertz@caiso.com 2000-08-24
## 337 bwoertz@caiso.com 2000-08-24
## 338 bwoertz@caiso.com 2000-08-24
## 339 bwoertz@caiso.com 2000-08-24
## 340 bwoertz@caiso.com 2000-08-24
## 341 awe@caiso.com 2000-08-24
## 342 rebecca.phillips@enron.com 2000-08-25
## 343 rebecca.phillips@enron.com 2000-08-25
## 344 rebecca.phillips@enron.com 2000-08-25
## 345 rebecca.phillips@enron.com 2000-08-25
## 346 rebecca.phillips@enron.com 2000-08-25
## 347 rebecca.phillips@enron.com 2000-08-25
## 348 rebecca.phillips@enron.com 2000-08-25
## 349 rebecca.phillips@enron.com 2000-08-25
## 350 rebecca.phillips@enron.com 2000-08-25
## 351 rebecca.phillips@enron.com 2000-08-25
## 352 rebecca.phillips@enron.com 2000-08-25
## 353 rebecca.phillips@enron.com 2000-08-25
## 354 rebecca.phillips@enron.com 2000-08-25
## 355 mrice@ftenergy.com 2000-08-25
## 356 awe@caiso.com 2000-08-25
## 357 kalmeida@caiso.com 2000-08-25
## 358 kalmeida@caiso.com 2000-08-25
## 359 kalmeida@caiso.com 2000-08-25
## 360 kalmeida@caiso.com 2000-08-25
## 361 kalmeida@caiso.com 2000-08-25
## 362 kalmeida@caiso.com 2000-08-25
## 363 kalmeida@caiso.com 2000-08-25
## 364 kalmeida@caiso.com 2000-08-25
## 365 kalmeida@caiso.com 2000-08-25
## 366 kalmeida@caiso.com 2000-08-25
## 367 kalmeida@caiso.com 2000-08-25
## 368 kalmeida@caiso.com 2000-08-25
## 369 kalmeida@caiso.com 2000-08-25
## 370 kalmeida@caiso.com 2000-08-25
## 371 kalmeida@caiso.com 2000-08-25
## 372 kalmeida@caiso.com 2000-08-25
## 373 kalmeida@caiso.com 2000-08-25
## 374 kalmeida@caiso.com 2000-08-25
## 375 kalmeida@caiso.com 2000-08-25
## 376 kalmeida@caiso.com 2000-08-25
## 377 kalmeida@caiso.com 2000-08-25
## 378 kalmeida@caiso.com 2000-08-25
## 379 kalmeida@caiso.com 2000-08-25
## 380 kalmeida@caiso.com 2000-08-25
## 381 kalmeida@caiso.com 2000-08-25
## 382 kalmeida@caiso.com 2000-08-25
## 383 kalmeida@caiso.com 2000-08-25
## 384 kalmeida@caiso.com 2000-08-25
## 385 kalmeida@caiso.com 2000-08-25
## 386 kalmeida@caiso.com 2000-08-25
## 387 kalmeida@caiso.com 2000-08-25
## 388 kalmeida@caiso.com 2000-08-25
## 389 kalmeida@caiso.com 2000-08-25
## 390 kalmeida@caiso.com 2000-08-25
## 391 kalmeida@caiso.com 2000-08-25
## 392 kalmeida@caiso.com 2000-08-25
## 393 kalmeida@caiso.com 2000-08-25
## 394 kalmeida@caiso.com 2000-08-25
## 395 kalmeida@caiso.com 2000-08-25
## 396 kalmeida@caiso.com 2000-08-25
## 397 kalmeida@caiso.com 2000-08-25
## 398 kalmeida@caiso.com 2000-08-25
## 399 kalmeida@caiso.com 2000-08-25
## 400 kalmeida@caiso.com 2000-08-25
## 401 kalmeida@caiso.com 2000-08-25
## 402 kalmeida@caiso.com 2000-08-25
## 403 kalmeida@caiso.com 2000-08-25
## 404 kalmeida@caiso.com 2000-08-25
## 405 kalmeida@caiso.com 2000-08-25
## 406 kalmeida@caiso.com 2000-08-25
## 407 kalmeida@caiso.com 2000-08-25
## 408 kalmeida@caiso.com 2000-08-25
## 409 kalmeida@caiso.com 2000-08-25
## 410 kalmeida@caiso.com 2000-08-25
## 411 kalmeida@caiso.com 2000-08-25
## 412 kalmeida@caiso.com 2000-08-25
## 413 kalmeida@caiso.com 2000-08-25
## 414 kalmeida@caiso.com 2000-08-25
## 415 kalmeida@caiso.com 2000-08-25
## 416 kalmeida@caiso.com 2000-08-25
## 417 kalmeida@caiso.com 2000-08-25
## 418 kalmeida@caiso.com 2000-08-25
## 419 kalmeida@caiso.com 2000-08-25
## 420 kalmeida@caiso.com 2000-08-25
## 421 kalmeida@caiso.com 2000-08-25
## 422 kalmeida@caiso.com 2000-08-25
## 423 kalmeida@caiso.com 2000-08-25
## 424 kalmeida@caiso.com 2000-08-25
## 425 kalmeida@caiso.com 2000-08-25
## 426 kalmeida@caiso.com 2000-08-25
## 427 kalmeida@caiso.com 2000-08-25
## 428 kalmeida@caiso.com 2000-08-25
## 429 kalmeida@caiso.com 2000-08-25
## 430 kalmeida@caiso.com 2000-08-25
## 431 kalmeida@caiso.com 2000-08-25
## 432 kalmeida@caiso.com 2000-08-25
## 433 kalmeida@caiso.com 2000-08-25
## 434 kalmeida@caiso.com 2000-08-25
## 435 kalmeida@caiso.com 2000-08-25
## 436 kalmeida@caiso.com 2000-08-25
## 437 kalmeida@caiso.com 2000-08-25
## 438 kalmeida@caiso.com 2000-08-25
## 439 kalmeida@caiso.com 2000-08-25
## 440 kalmeida@caiso.com 2000-08-25
## 441 kalmeida@caiso.com 2000-08-25
## 442 kalmeida@caiso.com 2000-08-25
## 443 kalmeida@caiso.com 2000-08-25
## 444 kalmeida@caiso.com 2000-08-25
## 445 office.chairman@enron.com 2000-08-25
## 446 enron.announcements@enron.com 2000-08-25
## 447 debra.davidson@enron.com 2000-08-25
## 448 debra.davidson@enron.com 2000-08-25
## 449 debra.davidson@enron.com 2000-08-25
## 450 debra.davidson@enron.com 2000-08-25
## 451 debra.davidson@enron.com 2000-08-25
## 452 debra.davidson@enron.com 2000-08-25
## 453 debra.davidson@enron.com 2000-08-25
## 454 debra.davidson@enron.com 2000-08-25
## 455 debra.davidson@enron.com 2000-08-25
## 456 debra.davidson@enron.com 2000-08-25
## 457 debra.davidson@enron.com 2000-08-25
## 458 rhonda.denton@enron.com 2000-08-25
## 459 rhonda.denton@enron.com 2000-08-25
## 460 rhonda.denton@enron.com 2000-08-25
## 461 rhonda.denton@enron.com 2000-08-25
## 462 rhonda.denton@enron.com 2000-08-25
## 463 rhonda.denton@enron.com 2000-08-25
## 464 rhonda.denton@enron.com 2000-08-25
## 465 rhonda.denton@enron.com 2000-08-25
## 466 rhonda.denton@enron.com 2000-08-25
## 467 rhonda.denton@enron.com 2000-08-25
## 468 rhonda.denton@enron.com 2000-08-25
## 469 rhonda.denton@enron.com 2000-08-25
## 470 rhonda.denton@enron.com 2000-08-25
## 471 rhonda.denton@enron.com 2000-08-25
## 472 rhonda.denton@enron.com 2000-08-25
## 473 rhonda.denton@enron.com 2000-08-25
## 474 rhonda.denton@enron.com 2000-08-25
## 475 rhonda.denton@enron.com 2000-08-25
## 476 rhonda.denton@enron.com 2000-08-25
## 477 rhonda.denton@enron.com 2000-08-25
## 478 rhonda.denton@enron.com 2000-08-25
## 479 rhonda.denton@enron.com 2000-08-25
## 480 rhonda.denton@enron.com 2000-08-25
## 481 rhonda.denton@enron.com 2000-08-25
## 482 rhonda.denton@enron.com 2000-08-25
## 483 rhonda.denton@enron.com 2000-08-25
## 484 rhonda.denton@enron.com 2000-08-25
## 485 rhonda.denton@enron.com 2000-08-25
## 486 rhonda.denton@enron.com 2000-08-25
## 487 rhonda.denton@enron.com 2000-08-25
## 488 rhonda.denton@enron.com 2000-08-25
## 489 rhonda.denton@enron.com 2000-08-25
## 490 rhonda.denton@enron.com 2000-08-25
## 491 rhonda.denton@enron.com 2000-08-25
## 492 rhonda.denton@enron.com 2000-08-25
## 493 rhonda.denton@enron.com 2000-08-25
## 494 rhonda.denton@enron.com 2000-08-25
## 495 rhonda.denton@enron.com 2000-08-25
## 496 rhonda.denton@enron.com 2000-08-25
## 497 rhonda.denton@enron.com 2000-08-25
## 498 rhonda.denton@enron.com 2000-08-25
## 499 rhonda.denton@enron.com 2000-08-25
## 500 rhonda.denton@enron.com 2000-08-25
## 501 rhonda.denton@enron.com 2000-08-25
## 502 rhonda.denton@enron.com 2000-08-25
## 503 rhonda.denton@enron.com 2000-08-25
## 504 rhonda.denton@enron.com 2000-08-25
## 505 rhonda.denton@enron.com 2000-08-25
## 506 rhonda.denton@enron.com 2000-08-25
## 507 rhonda.denton@enron.com 2000-08-25
## 508 rhonda.denton@enron.com 2000-08-25
## 509 rhonda.denton@enron.com 2000-08-25
## 510 rhonda.denton@enron.com 2000-08-25
## 511 rhonda.denton@enron.com 2000-08-25
## 512 rhonda.denton@enron.com 2000-08-25
## 513 rhonda.denton@enron.com 2000-08-25
## 514 rhonda.denton@enron.com 2000-08-25
## 515 rhonda.denton@enron.com 2000-08-25
## 516 rhonda.denton@enron.com 2000-08-25
## 517 rhonda.denton@enron.com 2000-08-25
## 518 rhonda.denton@enron.com 2000-08-25
## 519 rhonda.denton@enron.com 2000-08-25
## 520 rhonda.denton@enron.com 2000-08-25
## 521 rhonda.denton@enron.com 2000-08-25
## 522 rhonda.denton@enron.com 2000-08-25
## 523 rhonda.denton@enron.com 2000-08-25
## 524 rhonda.denton@enron.com 2000-08-25
## 525 rhonda.denton@enron.com 2000-08-25
## 526 rhonda.denton@enron.com 2000-08-25
## 527 rhonda.denton@enron.com 2000-08-25
## 528 rhonda.denton@enron.com 2000-08-25
## 529 awe@caiso.com 2000-08-25
## 530 cgrant@caiso.com 2000-08-25
## 531 mneeley@caiso.com 2000-08-25
## 532 mneeley@caiso.com 2000-08-25
## 533 mneeley@caiso.com 2000-08-25
## 534 mneeley@caiso.com 2000-08-25
## 535 mneeley@caiso.com 2000-08-25
## 536 mneeley@caiso.com 2000-08-25
## 537 mneeley@caiso.com 2000-08-25
## 538 mneeley@caiso.com 2000-08-25
## 539 enron.announcements@enron.com 2000-08-25
## 540 enron.announcements@enron.com 2000-08-25
## 541 carla.hoffman@enron.com 2000-08-25
## 542 carla.hoffman@enron.com 2000-08-25
## 543 carla.hoffman@enron.com 2000-08-25
## 544 carla.hoffman@enron.com 2000-08-25
## 545 awe@caiso.com 2000-08-26
## 546 awe@caiso.com 2000-08-26
## 547 awe@caiso.com 2000-08-26
## 548 awe@caiso.com 2000-08-26
## 549 tim.belden@enron.com 2000-08-27
## 550 tim.belden@enron.com 2000-08-27
## 551 tim.belden@enron.com 2000-08-27
## 552 dwagman@ftenergy.com 2000-08-28
## 553 office.chairman@enron.com 2000-08-28
## 554 debra.davidson@enron.com 2000-08-28
## 555 tim.belden@enron.com 2000-08-28
## 556 tim.belden@enron.com 2000-08-28
## 557 tim.belden@enron.com 2000-08-28
## 558 tim.belden@enron.com 2000-08-28
## 559 mollie.gustafson@enron.com 2000-08-28
## 560 ddavids@caiso.com 2000-08-28
## 561 shapp@caiso.com 2000-08-28
## 562 diana.willigerod@enron.com 2000-08-28
## 563 shapp@caiso.com 2000-08-28
## 564 crcommunications@caiso.com 2000-08-28
## 565 crcommunications@caiso.com 2000-08-28
## 566 tim.belden@enron.com 2000-08-28
## 567 tim.belden@enron.com 2000-08-28
## 568 tim.belden@enron.com 2000-08-28
## 569 tim.belden@enron.com 2000-08-28
## 570 tim.belden@enron.com 2000-08-28
## 571 tim.belden@enron.com 2000-08-28
## 572 tim.belden@enron.com 2000-08-28
## 573 tim.belden@enron.com 2000-08-28
## 574 tim.belden@enron.com 2000-08-28
## 575 fwinston@caiso.com 2000-08-28
## 576 fwinston@caiso.com 2000-08-28
## 577 fwinston@caiso.com 2000-08-28
## 578 fwinston@caiso.com 2000-08-28
## 579 fwinston@caiso.com 2000-08-28
## 580 fwinston@caiso.com 2000-08-28
## 581 fwinston@caiso.com 2000-08-28
## 582 fwinston@caiso.com 2000-08-28
## 583 fwinston@caiso.com 2000-08-28
## 584 fwinston@caiso.com 2000-08-28
## 585 mona.petrochko@enron.com 2000-08-28
## 586 mona.petrochko@enron.com 2000-08-28
## 587 mona.petrochko@enron.com 2000-08-28
## 588 mona.petrochko@enron.com 2000-08-28
## 589 mona.petrochko@enron.com 2000-08-28
## 590 mona.petrochko@enron.com 2000-08-28
## 591 mona.petrochko@enron.com 2000-08-28
## 592 mona.petrochko@enron.com 2000-08-28
## 593 mona.petrochko@enron.com 2000-08-28
## 594 mona.petrochko@enron.com 2000-08-28
## 595 mona.petrochko@enron.com 2000-08-28
## 596 mona.petrochko@enron.com 2000-08-28
## 597 mona.petrochko@enron.com 2000-08-28
## 598 crcommunications@caiso.com 2000-08-28
## 599 crcommunications@caiso.com 2000-08-28
## 600 crcommunications@caiso.com 2000-08-28
## 601 crcommunications@caiso.com 2000-08-28
## 602 bwoertz@caiso.com 2000-08-28
## 603 bwoertz@caiso.com 2000-08-28
## 604 dwagman@ftenergy.com 2000-08-29
## 605 mike.mcclain@enron.com 2000-08-29
## 606 cgrant@caiso.com 2000-08-29
## 607 cgrant@caiso.com 2000-08-29
## 608 crcommunications@caiso.com 2000-08-29
## 609 crcommunications@caiso.com 2000-08-29
## 610 crcommunications@caiso.com 2000-08-29
## 611 crcommunications@caiso.com 2000-08-29
## 612 crcommunications@caiso.com 2000-08-29
## 613 jennifer_ballas@pgn.com 2000-08-29
## 614 jennifer_ballas@pgn.com 2000-08-29
## 615 jennifer_ballas@pgn.com 2000-08-29
## 616 jennifer_ballas@pgn.com 2000-08-29
## 617 jennifer_ballas@pgn.com 2000-08-29
## 618 jennifer_ballas@pgn.com 2000-08-29
## 619 jennifer_ballas@pgn.com 2000-08-29
## 620 jennifer_ballas@pgn.com 2000-08-29
## 621 jennifer_ballas@pgn.com 2000-08-29
## 622 jennifer_ballas@pgn.com 2000-08-29
## 623 jennifer_ballas@pgn.com 2000-08-29
## 624 jennifer_ballas@pgn.com 2000-08-29
## 625 jennifer_ballas@pgn.com 2000-08-29
## 626 jennifer_ballas@pgn.com 2000-08-29
## 627 jennifer_ballas@pgn.com 2000-08-29
## 628 jennifer_ballas@pgn.com 2000-08-29
## 629 jennifer_ballas@pgn.com 2000-08-29
## 630 jennifer_ballas@pgn.com 2000-08-29
## 631 mona.petrochko@enron.com 2000-08-29
## 632 crcommunications@caiso.com 2000-08-29
## 633 crcommunications@caiso.com 2000-08-29
## 634 crcommunications@caiso.com 2000-08-29
## 635 crcommunications@caiso.com 2000-08-29
## 636 crcommunications@caiso.com 2000-08-29
## 637 crcommunications@caiso.com 2000-08-29
## 638 crcommunications@caiso.com 2000-08-29
## 639 crcommunications@caiso.com 2000-08-29
## 640 crcommunications@caiso.com 2000-08-29
## 641 crcommunications@caiso.com 2000-08-29
## 642 crcommunications@caiso.com 2000-08-29
## 643 crcommunications@caiso.com 2000-08-29
## 644 crcommunications@caiso.com 2000-08-29
## 645 crcommunications@caiso.com 2000-08-29
## 646 crcommunications@caiso.com 2000-08-29
## 647 crcommunications@caiso.com 2000-08-29
## 648 crcommunications@caiso.com 2000-08-29
## 649 crcommunications@caiso.com 2000-08-29
## 650 crcommunications@caiso.com 2000-08-29
## 651 crcommunications@caiso.com 2000-08-29
## 652 crcommunications@caiso.com 2000-08-29
## 653 crcommunications@caiso.com 2000-08-29
## 654 crcommunications@caiso.com 2000-08-29
## 655 crcommunications@caiso.com 2000-08-29
## 656 crcommunications@caiso.com 2000-08-29
## 657 crcommunications@caiso.com 2000-08-29
## 658 crcommunications@caiso.com 2000-08-29
## 659 crcommunications@caiso.com 2000-08-29
## 660 crcommunications@caiso.com 2000-08-29
## 661 crcommunications@caiso.com 2000-08-29
## 662 crcommunications@caiso.com 2000-08-29
## 663 crcommunications@caiso.com 2000-08-29
## 664 crcommunications@caiso.com 2000-08-29
## 665 crcommunications@caiso.com 2000-08-29
## 666 crcommunications@caiso.com 2000-08-29
## 667 crcommunications@caiso.com 2000-08-29
## 668 crcommunications@caiso.com 2000-08-29
## 669 crcommunications@caiso.com 2000-08-29
## 670 crcommunications@caiso.com 2000-08-29
## 671 crcommunications@caiso.com 2000-08-29
## 672 crcommunications@caiso.com 2000-08-29
## 673 crcommunications@caiso.com 2000-08-29
## 674 crcommunications@caiso.com 2000-08-29
## 675 crcommunications@caiso.com 2000-08-29
## 676 crcommunications@caiso.com 2000-08-29
## 677 crcommunications@caiso.com 2000-08-29
## 678 crcommunications@caiso.com 2000-08-29
## 679 crcommunications@caiso.com 2000-08-29
## 680 crcommunications@caiso.com 2000-08-29
## 681 crcommunications@caiso.com 2000-08-29
## 682 crcommunications@caiso.com 2000-08-29
## 683 crcommunications@caiso.com 2000-08-29
## 684 crcommunications@caiso.com 2000-08-29
## 685 crcommunications@caiso.com 2000-08-29
## 686 crcommunications@caiso.com 2000-08-29
## 687 crcommunications@caiso.com 2000-08-29
## 688 crcommunications@caiso.com 2000-08-29
## 689 crcommunications@caiso.com 2000-08-29
## 690 crcommunications@caiso.com 2000-08-29
## 691 crcommunications@caiso.com 2000-08-29
## 692 crcommunications@caiso.com 2000-08-29
## 693 crcommunications@caiso.com 2000-08-29
## 694 crcommunications@caiso.com 2000-08-29
## 695 crcommunications@caiso.com 2000-08-29
## 696 crcommunications@caiso.com 2000-08-29
## 697 crcommunications@caiso.com 2000-08-29
## 698 crcommunications@caiso.com 2000-08-29
## 699 crcommunications@caiso.com 2000-08-29
## 700 crcommunications@caiso.com 2000-08-29
## 701 crcommunications@caiso.com 2000-08-29
## 702 crcommunications@caiso.com 2000-08-29
## 703 crcommunications@caiso.com 2000-08-29
## 704 crcommunications@caiso.com 2000-08-29
## 705 crcommunications@caiso.com 2000-08-29
## 706 crcommunications@caiso.com 2000-08-29
## 707 crcommunications@caiso.com 2000-08-29
## 708 crcommunications@caiso.com 2000-08-29
## 709 crcommunications@caiso.com 2000-08-29
## 710 crcommunications@caiso.com 2000-08-29
## 711 crcommunications@caiso.com 2000-08-29
## 712 crcommunications@caiso.com 2000-08-29
## 713 crcommunications@caiso.com 2000-08-29
## 714 crcommunications@caiso.com 2000-08-29
## 715 crcommunications@caiso.com 2000-08-29
## 716 crcommunications@caiso.com 2000-08-29
## 717 crcommunications@caiso.com 2000-08-29
## 718 crcommunications@caiso.com 2000-08-29
## 719 crcommunications@caiso.com 2000-08-29
## 720 crcommunications@caiso.com 2000-08-29
## 721 crcommunications@caiso.com 2000-08-29
## 722 crcommunications@caiso.com 2000-08-29
## 723 crcommunications@caiso.com 2000-08-29
## 724 crcommunications@caiso.com 2000-08-29
## 725 crcommunications@caiso.com 2000-08-29
## 726 crcommunications@caiso.com 2000-08-29
## 727 crcommunications@caiso.com 2000-08-29
## 728 crcommunications@caiso.com 2000-08-29
## 729 crcommunications@caiso.com 2000-08-29
## 730 crcommunications@caiso.com 2000-08-29
## 731 crcommunications@caiso.com 2000-08-29
## 732 crcommunications@caiso.com 2000-08-29
## 733 crcommunications@caiso.com 2000-08-29
## 734 crcommunications@caiso.com 2000-08-29
## 735 crcommunications@caiso.com 2000-08-29
## 736 crcommunications@caiso.com 2000-08-29
## 737 crcommunications@caiso.com 2000-08-29
## 738 crcommunications@caiso.com 2000-08-29
## 739 crcommunications@caiso.com 2000-08-29
## 740 crcommunications@caiso.com 2000-08-29
## 741 crcommunications@caiso.com 2000-08-29
## 742 crcommunications@caiso.com 2000-08-29
## 743 crcommunications@caiso.com 2000-08-29
## 744 crcommunications@caiso.com 2000-08-29
## 745 crcommunications@caiso.com 2000-08-29
## 746 crcommunications@caiso.com 2000-08-29
## 747 crcommunications@caiso.com 2000-08-29
## 748 crcommunications@caiso.com 2000-08-29
## 749 crcommunications@caiso.com 2000-08-29
## 750 crcommunications@caiso.com 2000-08-29
## 751 crcommunications@caiso.com 2000-08-29
## 752 crcommunications@caiso.com 2000-08-29
## 753 crcommunications@caiso.com 2000-08-29
## 754 crcommunications@caiso.com 2000-08-29
## 755 crcommunications@caiso.com 2000-08-29
## 756 crcommunications@caiso.com 2000-08-29
## 757 crcommunications@caiso.com 2000-08-29
## 758 crcommunications@caiso.com 2000-08-29
## 759 crcommunications@caiso.com 2000-08-29
## 760 crcommunications@caiso.com 2000-08-29
## 761 crcommunications@caiso.com 2000-08-29
## 762 crcommunications@caiso.com 2000-08-29
## 763 crcommunications@caiso.com 2000-08-29
## 764 crcommunications@caiso.com 2000-08-29
## 765 crcommunications@caiso.com 2000-08-29
## 766 crcommunications@caiso.com 2000-08-29
## 767 crcommunications@caiso.com 2000-08-29
## 768 crcommunications@caiso.com 2000-08-29
## 769 crcommunications@caiso.com 2000-08-29
## 770 crcommunications@caiso.com 2000-08-29
## 771 crcommunications@caiso.com 2000-08-29
## 772 crcommunications@caiso.com 2000-08-29
## 773 crcommunications@caiso.com 2000-08-29
## 774 crcommunications@caiso.com 2000-08-29
## 775 crcommunications@caiso.com 2000-08-29
## 776 crcommunications@caiso.com 2000-08-29
## 777 crcommunications@caiso.com 2000-08-29
## 778 crcommunications@caiso.com 2000-08-29
## 779 crcommunications@caiso.com 2000-08-29
## 780 crcommunications@caiso.com 2000-08-29
## 781 crcommunications@caiso.com 2000-08-29
## 782 crcommunications@caiso.com 2000-08-29
## 783 crcommunications@caiso.com 2000-08-29
## 784 crcommunications@caiso.com 2000-08-29
## 785 crcommunications@caiso.com 2000-08-29
## 786 crcommunications@caiso.com 2000-08-29
## 787 cgrant@caiso.com 2000-08-29
## 788 mary.hain@enron.com 2000-08-29
## 789 mary.hain@enron.com 2000-08-29
## 790 cgrant@caiso.com 2000-08-29
## 791 carla.hoffman@enron.com 2000-08-29
## 792 carla.hoffman@enron.com 2000-08-29
## 793 carla.hoffman@enron.com 2000-08-29
## 794 carla.hoffman@enron.com 2000-08-29
## 795 carla.hoffman@enron.com 2000-08-29
## 796 carla.hoffman@enron.com 2000-08-29
## 797 carla.hoffman@enron.com 2000-08-29
## 798 carla.hoffman@enron.com 2000-08-29
## 799 fwinston@caiso.com 2000-08-29
## 800 fwinston@caiso.com 2000-08-29
## 801 fwinston@caiso.com 2000-08-29
## 802 fwinston@caiso.com 2000-08-29
## 803 fwinston@caiso.com 2000-08-29
## 804 fwinston@caiso.com 2000-08-29
## 805 fwinston@caiso.com 2000-08-29
## 806 fwinston@caiso.com 2000-08-29
## 807 fwinston@caiso.com 2000-08-29
## 808 fwinston@caiso.com 2000-08-29
## 809 mike.mcclain@enron.com 2000-08-29
## 810 crcommunications@caiso.com 2000-08-29
## 811 crcommunications@caiso.com 2000-08-29
## 812 jblatchford@caiso.com 2000-08-29
## 813 jblatchford@caiso.com 2000-08-29
## 814 david.forster@enron.com 2000-08-29
## 815 david.forster@enron.com 2000-08-29
## 816 david.forster@enron.com 2000-08-29
## 817 david.forster@enron.com 2000-08-29
## 818 david.forster@enron.com 2000-08-29
## 819 david.forster@enron.com 2000-08-29
## 820 david.forster@enron.com 2000-08-29
## 821 david.forster@enron.com 2000-08-29
## 822 david.forster@enron.com 2000-08-29
## 823 david.forster@enron.com 2000-08-29
## 824 david.forster@enron.com 2000-08-29
## 825 david.forster@enron.com 2000-08-29
## 826 david.forster@enron.com 2000-08-29
## 827 david.forster@enron.com 2000-08-29
## 828 david.forster@enron.com 2000-08-29
## 829 david.forster@enron.com 2000-08-29
## 830 david.forster@enron.com 2000-08-29
## 831 david.forster@enron.com 2000-08-29
## 832 david.forster@enron.com 2000-08-29
## 833 david.forster@enron.com 2000-08-29
## 834 david.forster@enron.com 2000-08-29
## 835 david.forster@enron.com 2000-08-29
## 836 david.forster@enron.com 2000-08-29
## 837 david.forster@enron.com 2000-08-29
## 838 david.forster@enron.com 2000-08-29
## 839 david.forster@enron.com 2000-08-29
## 840 david.forster@enron.com 2000-08-29
## 841 david.forster@enron.com 2000-08-29
## 842 david.forster@enron.com 2000-08-29
## 843 david.forster@enron.com 2000-08-29
## 844 david.forster@enron.com 2000-08-29
## 845 david.forster@enron.com 2000-08-29
## 846 david.forster@enron.com 2000-08-29
## 847 david.forster@enron.com 2000-08-29
## 848 david.forster@enron.com 2000-08-29
## 849 david.forster@enron.com 2000-08-29
## 850 david.forster@enron.com 2000-08-29
## 851 david.forster@enron.com 2000-08-29
## 852 david.forster@enron.com 2000-08-29
## 853 david.forster@enron.com 2000-08-29
## 854 david.forster@enron.com 2000-08-29
## 855 david.forster@enron.com 2000-08-29
## 856 david.forster@enron.com 2000-08-29
## 857 david.forster@enron.com 2000-08-29
## 858 david.forster@enron.com 2000-08-29
## 859 david.forster@enron.com 2000-08-29
## 860 david.forster@enron.com 2000-08-29
## 861 david.forster@enron.com 2000-08-29
## 862 david.forster@enron.com 2000-08-29
## 863 david.forster@enron.com 2000-08-29
## 864 david.forster@enron.com 2000-08-29
## 865 david.forster@enron.com 2000-08-29
## 866 david.forster@enron.com 2000-08-29
## 867 david.forster@enron.com 2000-08-29
## 868 david.forster@enron.com 2000-08-29
## 869 david.forster@enron.com 2000-08-29
## 870 david.forster@enron.com 2000-08-29
## 871 david.forster@enron.com 2000-08-29
## 872 david.forster@enron.com 2000-08-29
## 873 david.forster@enron.com 2000-08-29
## 874 david.forster@enron.com 2000-08-29
## 875 david.forster@enron.com 2000-08-29
## 876 david.forster@enron.com 2000-08-29
## 877 david.forster@enron.com 2000-08-29
## 878 david.forster@enron.com 2000-08-29
## 879 david.forster@enron.com 2000-08-29
## 880 david.forster@enron.com 2000-08-29
## 881 david.forster@enron.com 2000-08-29
## 882 david.forster@enron.com 2000-08-29
## 883 david.forster@enron.com 2000-08-29
## 884 david.forster@enron.com 2000-08-29
## 885 david.forster@enron.com 2000-08-29
## 886 david.forster@enron.com 2000-08-29
## 887 david.forster@enron.com 2000-08-29
## 888 david.forster@enron.com 2000-08-29
## 889 david.forster@enron.com 2000-08-29
## 890 david.forster@enron.com 2000-08-29
## 891 david.forster@enron.com 2000-08-29
## 892 david.forster@enron.com 2000-08-29
## 893 david.forster@enron.com 2000-08-29
## 894 david.forster@enron.com 2000-08-29
## 895 david.forster@enron.com 2000-08-29
## 896 david.forster@enron.com 2000-08-29
## 897 david.forster@enron.com 2000-08-29
## 898 david.forster@enron.com 2000-08-29
## 899 david.forster@enron.com 2000-08-29
## 900 david.forster@enron.com 2000-08-29
## 901 david.forster@enron.com 2000-08-29
## 902 david.forster@enron.com 2000-08-29
## 903 david.forster@enron.com 2000-08-29
## 904 david.forster@enron.com 2000-08-29
## 905 david.forster@enron.com 2000-08-29
## 906 david.forster@enron.com 2000-08-29
## 907 david.forster@enron.com 2000-08-29
## 908 david.forster@enron.com 2000-08-29
## 909 david.forster@enron.com 2000-08-29
## 910 david.forster@enron.com 2000-08-29
## 911 david.forster@enron.com 2000-08-29
## 912 david.forster@enron.com 2000-08-29
## 913 david.forster@enron.com 2000-08-29
## 914 david.forster@enron.com 2000-08-29
## 915 david.forster@enron.com 2000-08-29
## 916 david.forster@enron.com 2000-08-29
## 917 david.forster@enron.com 2000-08-29
## 918 david.forster@enron.com 2000-08-29
## 919 david.forster@enron.com 2000-08-29
## 920 david.forster@enron.com 2000-08-29
## 921 david.forster@enron.com 2000-08-29
## 922 david.forster@enron.com 2000-08-29
## 923 david.forster@enron.com 2000-08-29
## 924 david.forster@enron.com 2000-08-29
## 925 david.forster@enron.com 2000-08-29
## 926 david.forster@enron.com 2000-08-29
## 927 david.forster@enron.com 2000-08-29
## 928 david.forster@enron.com 2000-08-29
## 929 david.forster@enron.com 2000-08-29
## 930 david.forster@enron.com 2000-08-29
## 931 david.forster@enron.com 2000-08-29
## 932 david.forster@enron.com 2000-08-29
## 933 david.forster@enron.com 2000-08-29
## 934 david.forster@enron.com 2000-08-29
## 935 david.forster@enron.com 2000-08-29
## 936 david.forster@enron.com 2000-08-29
## 937 david.forster@enron.com 2000-08-29
## 938 david.forster@enron.com 2000-08-29
## 939 david.forster@enron.com 2000-08-29
## 940 david.forster@enron.com 2000-08-29
## 941 david.forster@enron.com 2000-08-29
## 942 david.forster@enron.com 2000-08-29
## 943 david.forster@enron.com 2000-08-29
## 944 david.forster@enron.com 2000-08-29
## 945 david.forster@enron.com 2000-08-29
## 946 david.forster@enron.com 2000-08-29
## 947 david.forster@enron.com 2000-08-29
## 948 david.forster@enron.com 2000-08-29
## 949 david.forster@enron.com 2000-08-29
## 950 david.forster@enron.com 2000-08-29
## 951 david.forster@enron.com 2000-08-29
## 952 david.forster@enron.com 2000-08-29
## 953 david.forster@enron.com 2000-08-29
## 954 david.forster@enron.com 2000-08-29
## 955 david.forster@enron.com 2000-08-29
## 956 david.forster@enron.com 2000-08-29
## 957 david.forster@enron.com 2000-08-29
## 958 david.forster@enron.com 2000-08-29
## 959 david.forster@enron.com 2000-08-29
## 960 david.forster@enron.com 2000-08-29
## 961 david.forster@enron.com 2000-08-29
## 962 david.forster@enron.com 2000-08-29
## 963 david.forster@enron.com 2000-08-29
## 964 david.forster@enron.com 2000-08-29
## 965 david.forster@enron.com 2000-08-29
## 966 david.forster@enron.com 2000-08-29
## 967 david.forster@enron.com 2000-08-29
## 968 david.forster@enron.com 2000-08-29
## 969 david.forster@enron.com 2000-08-29
## 970 david.forster@enron.com 2000-08-29
## 971 david.forster@enron.com 2000-08-29
## 972 david.forster@enron.com 2000-08-29
## 973 david.forster@enron.com 2000-08-29
## 974 david.forster@enron.com 2000-08-29
## 975 david.forster@enron.com 2000-08-29
## 976 david.forster@enron.com 2000-08-29
## 977 david.forster@enron.com 2000-08-29
## 978 david.forster@enron.com 2000-08-29
## 979 david.forster@enron.com 2000-08-29
## 980 enron.announcements@enron.com 2000-08-29
## 981 jblatchford@caiso.com 2000-08-29
## 982 jblatchford@caiso.com 2000-08-29
## 983 jblatchford@caiso.com 2000-08-29
## 984 bwoertz@caiso.com 2000-08-29
## 985 bwoertz@caiso.com 2000-08-29
## 986 bwoertz@caiso.com 2000-08-29
## 987 bwoertz@caiso.com 2000-08-29
## 988 bwoertz@caiso.com 2000-08-29
## 989 bwoertz@caiso.com 2000-08-29
## 990 bwoertz@caiso.com 2000-08-29
## 991 bwoertz@caiso.com 2000-08-29
## 992 bwoertz@caiso.com 2000-08-29
## 993 bwoertz@caiso.com 2000-08-29
## 994 bwoertz@caiso.com 2000-08-29
## 995 bwoertz@caiso.com 2000-08-29
## 996 bwoertz@caiso.com 2000-08-29
## 997 bwoertz@caiso.com 2000-08-29
## 998 bwoertz@caiso.com 2000-08-29
## 999 bwoertz@caiso.com 2000-08-29
## 1000 bwoertz@caiso.com 2000-08-29
## 1001 bwoertz@caiso.com 2000-08-29
## 1002 bwoertz@caiso.com 2000-08-29
## 1003 bwoertz@caiso.com 2000-08-29
## 1004 bwoertz@caiso.com 2000-08-29
## 1005 bwoertz@caiso.com 2000-08-29
## 1006 bwoertz@caiso.com 2000-08-29
## 1007 bwoertz@caiso.com 2000-08-29
## 1008 bwoertz@caiso.com 2000-08-29
## 1009 bwoertz@caiso.com 2000-08-29
## 1010 bwoertz@caiso.com 2000-08-29
## 1011 bwoertz@caiso.com 2000-08-29
## 1012 bwoertz@caiso.com 2000-08-29
## 1013 bwoertz@caiso.com 2000-08-29
## 1014 bwoertz@caiso.com 2000-08-29
## 1015 bwoertz@caiso.com 2000-08-29
## 1016 bwoertz@caiso.com 2000-08-29
## 1017 bwoertz@caiso.com 2000-08-29
## 1018 bwoertz@caiso.com 2000-08-29
## 1019 bwoertz@caiso.com 2000-08-29
## 1020 bwoertz@caiso.com 2000-08-29
## 1021 bwoertz@caiso.com 2000-08-29
## 1022 bwoertz@caiso.com 2000-08-29
## 1023 bwoertz@caiso.com 2000-08-29
## 1024 bwoertz@caiso.com 2000-08-29
## 1025 bwoertz@caiso.com 2000-08-29
## 1026 bwoertz@caiso.com 2000-08-29
## 1027 bwoertz@caiso.com 2000-08-29
## 1028 bwoertz@caiso.com 2000-08-29
## 1029 bwoertz@caiso.com 2000-08-29
## 1030 bwoertz@caiso.com 2000-08-29
## 1031 bwoertz@caiso.com 2000-08-29
## 1032 bwoertz@caiso.com 2000-08-29
## 1033 bwoertz@caiso.com 2000-08-29
## 1034 bwoertz@caiso.com 2000-08-29
## 1035 bwoertz@caiso.com 2000-08-29
## 1036 bwoertz@caiso.com 2000-08-29
## 1037 bwoertz@caiso.com 2000-08-29
## 1038 bwoertz@caiso.com 2000-08-29
## 1039 bwoertz@caiso.com 2000-08-29
## 1040 bwoertz@caiso.com 2000-08-29
## 1041 bwoertz@caiso.com 2000-08-29
## 1042 bwoertz@caiso.com 2000-08-29
## 1043 bwoertz@caiso.com 2000-08-29
## 1044 bwoertz@caiso.com 2000-08-29
## 1045 bwoertz@caiso.com 2000-08-29
## 1046 bwoertz@caiso.com 2000-08-29
## 1047 office.chairman@enron.com 2000-05-17
## 1048 office.chairman@enron.com 2000-05-21
## 1049 casey@mercatorpartners.com 2000-06-07
## 1050 casey@mercatorpartners.com 2000-06-07
## 1051 casey@mercatorpartners.com 2000-06-07
## 1052 casey@mercatorpartners.com 2000-06-07
## 1053 casey@mercatorpartners.com 2000-06-07
## 1054 casey@mercatorpartners.com 2000-06-07
## 1055 casey@mercatorpartners.com 2000-06-07
## 1056 casey@mercatorpartners.com 2000-06-07
## 1057 casey@mercatorpartners.com 2000-06-07
## 1058 casey@mercatorpartners.com 2000-06-07
## 1059 casey@mercatorpartners.com 2000-06-07
## 1060 casey@mercatorpartners.com 2000-06-07
## 1061 casey@mercatorpartners.com 2000-06-07
## 1062 casey@mercatorpartners.com 2000-06-07
## 1063 casey@mercatorpartners.com 2000-06-07
## 1064 casey@mercatorpartners.com 2000-06-07
## 1065 casey@mercatorpartners.com 2000-06-07
## 1066 casey@mercatorpartners.com 2000-06-07
## 1067 casey@mercatorpartners.com 2000-06-07
## 1068 casey@mercatorpartners.com 2000-06-07
## 1069 casey@mercatorpartners.com 2000-06-07
## 1070 casey@mercatorpartners.com 2000-06-07
## 1071 casey@mercatorpartners.com 2000-06-07
## 1072 casey@mercatorpartners.com 2000-06-07
## 1073 casey@mercatorpartners.com 2000-06-07
## 1074 casey@mercatorpartners.com 2000-06-07
## 1075 casey@mercatorpartners.com 2000-06-07
## 1076 casey@mercatorpartners.com 2000-06-07
## 1077 casey@mercatorpartners.com 2000-06-07
## 1078 casey@mercatorpartners.com 2000-06-07
## 1079 casey@mercatorpartners.com 2000-06-07
## 1080 casey@mercatorpartners.com 2000-06-07
## 1081 casey@mercatorpartners.com 2000-06-07
## 1082 casey@mercatorpartners.com 2000-06-07
## 1083 casey@mercatorpartners.com 2000-06-07
## 1084 casey@mercatorpartners.com 2000-06-07
## 1085 casey@mercatorpartners.com 2000-06-07
## 1086 casey@mercatorpartners.com 2000-06-07
## 1087 casey@mercatorpartners.com 2000-06-07
## 1088 casey@mercatorpartners.com 2000-06-07
## 1089 casey@mercatorpartners.com 2000-06-07
## 1090 casey@mercatorpartners.com 2000-06-07
## 1091 casey@mercatorpartners.com 2000-06-07
## 1092 casey@mercatorpartners.com 2000-06-07
## 1093 casey@mercatorpartners.com 2000-06-07
## 1094 casey@mercatorpartners.com 2000-06-07
## 1095 casey@mercatorpartners.com 2000-06-07
## 1096 casey@mercatorpartners.com 2000-06-07
## 1097 casey@mercatorpartners.com 2000-06-07
## 1098 casey@mercatorpartners.com 2000-06-07
## 1099 casey@mercatorpartners.com 2000-06-07
## 1100 enron.chairman@enron.com 2000-07-10
## 1101 office.chairman@enron.com 2000-07-31
## 1102 office.chairman@enron.com 2000-08-09
## 1103 enron.announcements@enron.com 2000-08-11
## 1104 office.chairman@enron.com 2000-08-14
## 1105 amy.fitzpatrick@enron.com 2000-08-22
## 1106 carla.hoffman@enron.com 2000-08-08
## 1107 carla.hoffman@enron.com 2000-08-08
## 1108 carla.hoffman@enron.com 2000-08-08
## 1109 carla.hoffman@enron.com 2000-08-08
## 1110 carla.hoffman@enron.com 2000-08-08
## 1111 carla.hoffman@enron.com 2000-08-08
## 1112 carla.hoffman@enron.com 2000-08-08
## 1113 carla.hoffman@enron.com 2000-08-08
## 1114 carla.hoffman@enron.com 2000-08-08
## 1115 carla.hoffman@enron.com 2000-08-11
## 1116 carla.hoffman@enron.com 2000-08-11
## 1117 carla.hoffman@enron.com 2000-08-11
## 1118 carla.hoffman@enron.com 2000-08-11
## 1119 carla.hoffman@enron.com 2000-08-11
## 1120 carla.hoffman@enron.com 2000-08-11
## 1121 carla.hoffman@enron.com 2000-08-11
## 1122 carla.hoffman@enron.com 2000-08-11
## 1123 carla.hoffman@enron.com 2000-08-11
## 1124 carla.hoffman@enron.com 2000-08-14
## 1125 carla.hoffman@enron.com 2000-08-14
## 1126 carla.hoffman@enron.com 2000-08-14
## 1127 carla.hoffman@enron.com 2000-08-14
## 1128 carla.hoffman@enron.com 2000-08-14
## 1129 carla.hoffman@enron.com 2000-08-14
## 1130 carla.hoffman@enron.com 2000-08-14
## 1131 carla.hoffman@enron.com 2000-08-14
## 1132 carla.hoffman@enron.com 2000-08-15
## 1133 carla.hoffman@enron.com 2000-08-15
## 1134 carla.hoffman@enron.com 2000-08-15
## 1135 carla.hoffman@enron.com 2000-08-15
## 1136 carla.hoffman@enron.com 2000-08-15
## 1137 carla.hoffman@enron.com 2000-08-15
## 1138 carla.hoffman@enron.com 2000-08-15
## 1139 carla.hoffman@enron.com 2000-08-15
## 1140 carla.hoffman@enron.com 2000-08-16
## 1141 carla.hoffman@enron.com 2000-08-16
## 1142 carla.hoffman@enron.com 2000-08-16
## 1143 carla.hoffman@enron.com 2000-08-16
## 1144 carla.hoffman@enron.com 2000-08-16
## 1145 carla.hoffman@enron.com 2000-08-16
## 1146 carla.hoffman@enron.com 2000-08-16
## 1147 carla.hoffman@enron.com 2000-08-16
## 1148 carla.hoffman@enron.com 2000-08-16
## 1149 carla.hoffman@enron.com 2000-08-16
## 1150 carla.hoffman@enron.com 2000-08-16
## 1151 carla.hoffman@enron.com 2000-08-16
## 1152 drew_a_brabb@calpx.com 2000-07-28
## 1153 drew_a_brabb@calpx.com 2000-07-28
## 1154 drew_a_brabb@calpx.com 2000-07-28
## 1155 drew_a_brabb@calpx.com 2000-07-28
## 1156 drew_a_brabb@calpx.com 2000-07-28
## 1157 drew_a_brabb@calpx.com 2000-07-28
## 1158 drew_a_brabb@calpx.com 2000-07-28
## 1159 drew_a_brabb@calpx.com 2000-07-28
## 1160 drew_a_brabb@calpx.com 2000-07-28
## 1161 drew_a_brabb@calpx.com 2000-07-28
## 1162 valarie.sabo@enron.com 2000-08-07
## 1163 valarie.sabo@enron.com 2000-08-07
## 1164 valarie.sabo@enron.com 2000-08-07
## 1165 valarie.sabo@enron.com 2000-08-07
## 1166 valarie.sabo@enron.com 2000-08-07
## 1167 valarie.sabo@enron.com 2000-08-07
## 1168 valarie.sabo@enron.com 2000-08-07
## 1169 valarie.sabo@enron.com 2000-08-07
## 1170 valarie.sabo@enron.com 2000-08-07
## 1171 valarie.sabo@enron.com 2000-08-07
## 1172 tim.belden@enron.com 2000-08-14
## 1173 crcommunications@caiso.com 2000-05-30
## 1174 crcommunications@caiso.com 2000-05-30
## 1175 crcommunications@caiso.com 2000-05-30
## 1176 crcommunications@caiso.com 2000-05-30
## 1177 crcommunications@caiso.com 2000-05-30
## 1178 aleonard@caiso.com 2000-05-30
## 1179 aleonard@caiso.com 2000-05-30
## 1180 aleonard@caiso.com 2000-05-30
## 1181 aleonard@caiso.com 2000-05-30
## 1182 aleonard@caiso.com 2000-05-30
## 1183 aleonard@caiso.com 2000-05-30
## 1184 aleonard@caiso.com 2000-05-30
## 1185 aleonard@caiso.com 2000-05-30
## 1186 aleonard@caiso.com 2000-05-30
## 1187 aleonard@caiso.com 2000-05-30
## 1188 aleonard@caiso.com 2000-05-30
## 1189 aleonard@caiso.com 2000-05-30
## 1190 aleonard@caiso.com 2000-05-30
## 1191 aleonard@caiso.com 2000-05-30
## 1192 aleonard@caiso.com 2000-05-30
## 1193 aleonard@caiso.com 2000-06-01
## 1194 aleonard@caiso.com 2000-06-05
## 1195 aleonard@caiso.com 2000-06-06
## 1196 dfuller@caiso.com 2000-06-08
## 1197 tom.delaney@enron.com 2000-06-12
## 1198 tom.delaney@enron.com 2000-06-12
## 1199 tom.delaney@enron.com 2000-06-12
## 1200 bwoertz@caiso.com 2000-06-13
## 1201 eleuze@caiso.com 2000-06-14
## 1202 crcommunications@caiso.com 2000-06-15
## 1203 crcommunications@caiso.com 2000-06-15
## 1204 crcommunications@caiso.com 2000-06-15
## 1205 crcommunications@caiso.com 2000-06-15
## 1206 crcommunications@caiso.com 2000-06-15
## 1207 crcommunications@caiso.com 2000-06-15
## 1208 crcommunications@caiso.com 2000-06-15
## 1209 crcommunications@caiso.com 2000-06-15
## 1210 crcommunications@caiso.com 2000-06-15
## 1211 crcommunications@caiso.com 2000-06-15
## 1212 crcommunications@caiso.com 2000-06-15
## 1213 crcommunications@caiso.com 2000-06-15
## 1214 crcommunications@caiso.com 2000-06-15
## 1215 crcommunications@caiso.com 2000-06-15
## 1216 crcommunications@caiso.com 2000-06-15
## 1217 crcommunications@caiso.com 2000-06-15
## 1218 susan.mara@enron.com 2000-06-15
## 1219 susan.mara@enron.com 2000-06-15
## 1220 susan.mara@enron.com 2000-06-15
## 1221 susan.mara@enron.com 2000-06-15
## 1222 susan.mara@enron.com 2000-06-15
## 1223 susan.mara@enron.com 2000-06-15
## 1224 susan.mara@enron.com 2000-06-15
## 1225 susan.mara@enron.com 2000-06-15
## 1226 susan.mara@enron.com 2000-06-15
## 1227 susan.mara@enron.com 2000-06-15
## 1228 susan.mara@enron.com 2000-06-15
## 1229 susan.mara@enron.com 2000-06-15
## 1230 susan.mara@enron.com 2000-06-15
## 1231 susan.mara@enron.com 2000-06-15
## 1232 susan.mara@enron.com 2000-06-15
## 1233 susan.mara@enron.com 2000-06-15
## 1234 susan.mara@enron.com 2000-06-15
## 1235 susan.mara@enron.com 2000-06-15
## 1236 susan.mara@enron.com 2000-06-15
## 1237 susan.mara@enron.com 2000-06-15
## 1238 susan.mara@enron.com 2000-06-15
## 1239 crcommunications@caiso.com 2000-06-15
## 1240 crcommunications@caiso.com 2000-06-15
## 1241 crcommunications@caiso.com 2000-06-15
## 1242 crcommunications@caiso.com 2000-06-15
## 1243 crcommunications@caiso.com 2000-06-15
## 1244 crcommunications@caiso.com 2000-06-16
## 1245 mona.petrochko@enron.com 2000-06-16
## 1246 mona.petrochko@enron.com 2000-06-16
## 1247 mona.petrochko@enron.com 2000-06-16
## 1248 mona.petrochko@enron.com 2000-06-16
## 1249 mona.petrochko@enron.com 2000-06-16
## 1250 mona.petrochko@enron.com 2000-06-16
## 1251 mona.petrochko@enron.com 2000-06-16
## 1252 mona.petrochko@enron.com 2000-06-16
## 1253 jblatchford@caiso.com 2000-06-19
## 1254 jblatchford@caiso.com 2000-06-19
## 1255 jblatchford@caiso.com 2000-06-19
## 1256 jblatchford@caiso.com 2000-06-19
## 1257 jblatchford@caiso.com 2000-06-19
## 1258 jblatchford@caiso.com 2000-06-19
## 1259 jblatchford@caiso.com 2000-06-19
## 1260 jblatchford@caiso.com 2000-06-19
## 1261 dfuller@caiso.com 2000-06-20
## 1262 bwoertz@caiso.com 2000-06-20
## 1263 bwoertz@caiso.com 2000-06-20
## 1264 crcommunications@caiso.com 2000-06-21
## 1265 crcommunications@caiso.com 2000-06-21
## 1266 crcommunications@caiso.com 2000-06-21
## 1267 crcommunications@caiso.com 2000-06-21
## 1268 crcommunications@caiso.com 2000-06-21
## 1269 crcommunications@caiso.com 2000-06-21
## 1270 crcommunications@caiso.com 2000-06-21
## 1271 crcommunications@caiso.com 2000-06-21
## 1272 crcommunications@caiso.com 2000-06-21
## 1273 crcommunications@caiso.com 2000-06-21
## 1274 crcommunications@caiso.com 2000-06-21
## 1275 crcommunications@caiso.com 2000-06-21
## 1276 crcommunications@caiso.com 2000-06-21
## 1277 crcommunications@caiso.com 2000-06-21
## 1278 crcommunications@caiso.com 2000-06-21
## 1279 crcommunications@caiso.com 2000-06-21
## 1280 crcommunications@caiso.com 2000-06-21
## 1281 crcommunications@caiso.com 2000-06-21
## 1282 crcommunications@caiso.com 2000-06-21
## 1283 crcommunications@caiso.com 2000-06-21
## 1284 crcommunications@caiso.com 2000-06-21
## 1285 crcommunications@caiso.com 2000-06-21
## 1286 crcommunications@caiso.com 2000-06-21
## 1287 crcommunications@caiso.com 2000-06-21
## 1288 crcommunications@caiso.com 2000-06-21
## 1289 crcommunications@caiso.com 2000-06-21
## 1290 crcommunications@caiso.com 2000-06-21
## 1291 crcommunications@caiso.com 2000-06-21
## 1292 crcommunications@caiso.com 2000-06-21
## 1293 crcommunications@caiso.com 2000-06-21
## 1294 crcommunications@caiso.com 2000-06-21
## 1295 crcommunications@caiso.com 2000-06-21
## 1296 crcommunications@caiso.com 2000-06-21
## 1297 crcommunications@caiso.com 2000-06-21
## 1298 crcommunications@caiso.com 2000-06-21
## 1299 crcommunications@caiso.com 2000-06-21
## 1300 crcommunications@caiso.com 2000-06-21
## 1301 crcommunications@caiso.com 2000-06-21
## 1302 crcommunications@caiso.com 2000-06-21
## 1303 crcommunications@caiso.com 2000-06-21
## 1304 crcommunications@caiso.com 2000-06-21
## 1305 tom.delaney@enron.com 2000-06-21
## 1306 tom.delaney@enron.com 2000-06-21
## 1307 tom.delaney@enron.com 2000-06-21
## 1308 tom.delaney@enron.com 2000-06-21
## 1309 tom.delaney@enron.com 2000-06-21
## 1310 tom.delaney@enron.com 2000-06-21
## 1311 tom.delaney@enron.com 2000-06-21
## 1312 bwoertz@caiso.com 2000-06-21
## 1313 crcommunications@caiso.com 2000-06-29
## 1314 crcommunications@caiso.com 2000-06-29
## 1315 cgrant@caiso.com 2000-06-29
## 1316 shapp@caiso.com 2000-07-11
## 1317 shapp@caiso.com 2000-07-11
## 1318 bwoertz@caiso.com 2000-07-11
## 1319 bwoertz@caiso.com 2000-07-12
## 1320 bwoertz@caiso.com 2000-07-12
## 1321 bwoertz@caiso.com 2000-07-12
## 1322 bwoertz@caiso.com 2000-07-12
## 1323 bwoertz@caiso.com 2000-07-12
## 1324 bwoertz@caiso.com 2000-07-12
## 1325 bwoertz@caiso.com 2000-07-12
## 1326 bwoertz@caiso.com 2000-07-12
## 1327 bwoertz@caiso.com 2000-07-12
## 1328 bwoertz@caiso.com 2000-07-12
## 1329 bwoertz@caiso.com 2000-07-12
## 1330 bwoertz@caiso.com 2000-07-12
## 1331 bwoertz@caiso.com 2000-07-12
## 1332 bwoertz@caiso.com 2000-07-12
## 1333 bwoertz@caiso.com 2000-07-12
## 1334 bwoertz@caiso.com 2000-07-12
## 1335 bwoertz@caiso.com 2000-07-12
## 1336 bwoertz@caiso.com 2000-07-12
## 1337 bwoertz@caiso.com 2000-07-12
## 1338 bwoertz@caiso.com 2000-07-12
## 1339 bwoertz@caiso.com 2000-07-12
## 1340 bwoertz@caiso.com 2000-07-12
## 1341 bwoertz@caiso.com 2000-07-12
## 1342 bwoertz@caiso.com 2000-07-12
## 1343 bwoertz@caiso.com 2000-07-12
## 1344 bwoertz@caiso.com 2000-07-12
## 1345 bwoertz@caiso.com 2000-07-12
## 1346 bwoertz@caiso.com 2000-07-12
## 1347 bwoertz@caiso.com 2000-07-12
## 1348 bwoertz@caiso.com 2000-07-12
## 1349 bwoertz@caiso.com 2000-07-12
## 1350 bwoertz@caiso.com 2000-07-12
## 1351 bwoertz@caiso.com 2000-07-12
## 1352 bwoertz@caiso.com 2000-07-12
## 1353 bwoertz@caiso.com 2000-07-12
## 1354 bwoertz@caiso.com 2000-07-12
## 1355 bwoertz@caiso.com 2000-07-12
## 1356 bwoertz@caiso.com 2000-07-12
## 1357 bwoertz@caiso.com 2000-07-12
## 1358 bwoertz@caiso.com 2000-07-12
## 1359 bwoertz@caiso.com 2000-07-12
## 1360 bwoertz@caiso.com 2000-07-12
## 1361 bwoertz@caiso.com 2000-07-12
## 1362 bwoertz@caiso.com 2000-07-12
## 1363 bwoertz@caiso.com 2000-07-12
## 1364 bwoertz@caiso.com 2000-07-12
## 1365 bwoertz@caiso.com 2000-07-12
## 1366 bwoertz@caiso.com 2000-07-12
## 1367 bwoertz@caiso.com 2000-07-12
## 1368 bwoertz@caiso.com 2000-07-12
## 1369 bwoertz@caiso.com 2000-07-12
## 1370 bwoertz@caiso.com 2000-07-12
## 1371 bwoertz@caiso.com 2000-07-12
## 1372 bwoertz@caiso.com 2000-07-12
## 1373 bwoertz@caiso.com 2000-07-12
## 1374 bwoertz@caiso.com 2000-07-12
## 1375 bwoertz@caiso.com 2000-07-12
## 1376 bwoertz@caiso.com 2000-07-12
## 1377 bwoertz@caiso.com 2000-07-12
## 1378 bwoertz@caiso.com 2000-07-12
## 1379 bwoertz@caiso.com 2000-07-14
## 1380 bwoertz@caiso.com 2000-07-14
## 1381 bwoertz@caiso.com 2000-07-14
## 1382 bwoertz@caiso.com 2000-07-14
## 1383 bwoertz@caiso.com 2000-07-14
## 1384 bwoertz@caiso.com 2000-07-14
## 1385 bwoertz@caiso.com 2000-07-14
## 1386 cgrant@caiso.com 2000-07-20
## 1387 bwoertz@caiso.com 2000-07-21
## 1388 bwoertz@caiso.com 2000-07-21
## 1389 bwoertz@caiso.com 2000-07-21
## 1390 bwoertz@caiso.com 2000-07-21
## 1391 bwoertz@caiso.com 2000-07-21
## 1392 bwoertz@caiso.com 2000-07-21
## 1393 bwoertz@caiso.com 2000-07-21
## 1394 crcommunications@caiso.com 2000-07-21
## 1395 bwoertz@caiso.com 2000-07-24
## 1396 bwoertz@caiso.com 2000-07-24
## 1397 bwoertz@caiso.com 2000-07-24
## 1398 bwoertz@caiso.com 2000-07-24
## 1399 bwoertz@caiso.com 2000-07-24
## 1400 bwoertz@caiso.com 2000-07-24
## 1401 bwoertz@caiso.com 2000-07-24
## 1402 crcommunications@caiso.com 2000-07-25
## 1403 crcommunications@caiso.com 2000-07-25
## 1404 crcommunications@caiso.com 2000-07-25
## 1405 crcommunications@caiso.com 2000-07-25
## 1406 crcommunications@caiso.com 2000-07-25
## 1407 crcommunications@caiso.com 2000-07-25
## 1408 crcommunications@caiso.com 2000-07-25
## 1409 crcommunications@caiso.com 2000-07-25
## 1410 crcommunications@caiso.com 2000-07-25
## 1411 crcommunications@caiso.com 2000-07-25
## 1412 crcommunications@caiso.com 2000-07-25
## 1413 crcommunications@caiso.com 2000-07-25
## 1414 crcommunications@caiso.com 2000-07-25
## 1415 crcommunications@caiso.com 2000-07-25
## 1416 crcommunications@caiso.com 2000-07-25
## 1417 crcommunications@caiso.com 2000-07-25
## 1418 crcommunications@caiso.com 2000-07-25
## 1419 crcommunications@caiso.com 2000-07-25
## 1420 crcommunications@caiso.com 2000-07-25
## 1421 crcommunications@caiso.com 2000-07-25
## 1422 crcommunications@caiso.com 2000-07-25
## 1423 crcommunications@caiso.com 2000-07-25
## 1424 crcommunications@caiso.com 2000-07-25
## 1425 crcommunications@caiso.com 2000-07-25
## 1426 crcommunications@caiso.com 2000-07-25
## 1427 crcommunications@caiso.com 2000-07-25
## 1428 crcommunications@caiso.com 2000-07-25
## 1429 crcommunications@caiso.com 2000-07-25
## 1430 crcommunications@caiso.com 2000-07-25
## 1431 crcommunications@caiso.com 2000-07-25
## 1432 crcommunications@caiso.com 2000-07-25
## 1433 crcommunications@caiso.com 2000-07-25
## 1434 crcommunications@caiso.com 2000-07-25
## 1435 crcommunications@caiso.com 2000-07-25
## 1436 crcommunications@caiso.com 2000-07-25
## 1437 crcommunications@caiso.com 2000-07-25
## 1438 crcommunications@caiso.com 2000-07-25
## 1439 crcommunications@caiso.com 2000-07-25
## 1440 crcommunications@caiso.com 2000-07-25
## 1441 crcommunications@caiso.com 2000-07-25
## 1442 crcommunications@caiso.com 2000-07-25
## 1443 crcommunications@caiso.com 2000-07-25
## 1444 crcommunications@caiso.com 2000-07-25
## 1445 crcommunications@caiso.com 2000-07-25
## 1446 crcommunications@caiso.com 2000-07-25
## 1447 crcommunications@caiso.com 2000-07-25
## 1448 crcommunications@caiso.com 2000-07-25
## 1449 crcommunications@caiso.com 2000-07-25
## 1450 crcommunications@caiso.com 2000-07-25
## 1451 crcommunications@caiso.com 2000-07-25
## 1452 crcommunications@caiso.com 2000-07-25
## 1453 crcommunications@caiso.com 2000-07-25
## 1454 crcommunications@caiso.com 2000-07-25
## 1455 crcommunications@caiso.com 2000-07-25
## 1456 crcommunications@caiso.com 2000-07-25
## 1457 crcommunications@caiso.com 2000-07-25
## 1458 crcommunications@caiso.com 2000-07-25
## 1459 crcommunications@caiso.com 2000-07-25
## 1460 crcommunications@caiso.com 2000-07-25
## 1461 crcommunications@caiso.com 2000-07-25
## 1462 crcommunications@caiso.com 2000-07-25
## 1463 crcommunications@caiso.com 2000-07-25
## 1464 crcommunications@caiso.com 2000-07-25
## 1465 crcommunications@caiso.com 2000-07-25
## 1466 crcommunications@caiso.com 2000-07-25
## 1467 crcommunications@caiso.com 2000-07-25
## 1468 crcommunications@caiso.com 2000-07-25
## 1469 bwoertz@caiso.com 2000-07-25
## 1470 shapp@caiso.com 2000-07-26
## 1471 shapp@caiso.com 2000-07-26
## 1472 bwoertz@caiso.com 2000-07-27
## 1473 cgrant@caiso.com 2000-07-27
## 1474 bwoertz@caiso.com 2000-07-28
## 1475 bwoertz@caiso.com 2000-07-28
## 1476 bwoertz@caiso.com 2000-07-28
## 1477 bwoertz@caiso.com 2000-07-28
## 1478 bwoertz@caiso.com 2000-07-28
## 1479 bwoertz@caiso.com 2000-07-28
## 1480 bwoertz@caiso.com 2000-07-28
## 1481 cgrant@caiso.com 2000-07-28
## 1482 cgrant@caiso.com 2000-07-28
## 1483 cgrant@caiso.com 2000-07-28
## 1484 cgrant@caiso.com 2000-07-28
## 1485 cgrant@caiso.com 2000-07-28
## 1486 cgrant@caiso.com 2000-07-28
## 1487 cgrant@caiso.com 2000-07-28
## 1488 susan.mara@enron.com 2000-07-31
## 1489 susan.mara@enron.com 2000-07-31
## 1490 susan.mara@enron.com 2000-07-31
## 1491 susan.mara@enron.com 2000-07-31
## 1492 susan.mara@enron.com 2000-07-31
## 1493 susan.mara@enron.com 2000-07-31
## 1494 susan.mara@enron.com 2000-07-31
## 1495 susan.mara@enron.com 2000-07-31
## 1496 susan.mara@enron.com 2000-07-31
## 1497 susan.mara@enron.com 2000-07-31
## 1498 susan.mara@enron.com 2000-07-31
## 1499 susan.mara@enron.com 2000-07-31
## 1500 tim.belden@enron.com 2000-07-31
## 1501 tim.belden@enron.com 2000-07-31
## 1502 bwoertz@caiso.com 2000-08-01
## 1503 cgrant@caiso.com 2000-08-01
## 1504 shapp@caiso.com 2000-08-08
## 1505 cgrant@caiso.com 2000-08-08
## 1506 crcommunications@caiso.com 2000-08-09
## 1507 crcommunications@caiso.com 2000-08-09
## 1508 crcommunications@caiso.com 2000-08-09
## 1509 dfuller@caiso.com 2000-08-10
## 1510 shapp@caiso.com 2000-08-10
## 1511 dfuller@caiso.com 2000-08-10
## 1512 dfuller@caiso.com 2000-08-10
## 1513 cgrant@caiso.com 2000-08-11
## 1514 shapp@caiso.com 2000-08-15
## 1515 shapp@caiso.com 2000-08-15
## 1516 shapp@caiso.com 2000-08-16
## 1517 crcommunications@caiso.com 2000-08-16
## 1518 crcommunications@caiso.com 2000-08-16
## 1519 khoffman@caiso.com 2000-08-17
## 1520 khoffman@caiso.com 2000-08-17
## 1521 khoffman@caiso.com 2000-08-17
## 1522 khoffman@caiso.com 2000-08-17
## 1523 khoffman@caiso.com 2000-08-17
## 1524 khoffman@caiso.com 2000-08-17
## 1525 khoffman@caiso.com 2000-08-17
## 1526 khoffman@caiso.com 2000-08-17
## 1527 khoffman@caiso.com 2000-08-17
## 1528 khoffman@caiso.com 2000-08-17
## 1529 khoffman@caiso.com 2000-08-17
## 1530 khoffman@caiso.com 2000-08-17
## 1531 khoffman@caiso.com 2000-08-17
## 1532 cgrant@caiso.com 2000-08-18
## 1533 crcommunications@caiso.com 2000-08-18
## 1534 crcommunications@caiso.com 2000-08-18
## 1535 cgrant@caiso.com 2000-08-18
## 1536 shapp@caiso.com 2000-08-18
## 1537 dfuller@caiso.com 2000-08-22
## 1538 bwoertz@caiso.com 2000-08-23
## 1539 foothi19@idt.net 2000-08-11
## 1540 bruno.gaillard@enron.com 2000-08-08
## 1541 bruno.gaillard@enron.com 2000-08-08
## 1542 bruno.gaillard@enron.com 2000-08-08
## 1543 bruno.gaillard@enron.com 2000-08-08
## 1544 bruno.gaillard@enron.com 2000-08-08
## 1545 bruno.gaillard@enron.com 2000-08-08
## 1546 bruno.gaillard@enron.com 2000-08-08
## 1547 bruno.gaillard@enron.com 2000-08-08
## 1548 bruno.gaillard@enron.com 2000-08-08
## 1549 bruno.gaillard@enron.com 2000-08-08
## 1550 bruno.gaillard@enron.com 2000-08-08
## 1551 bruno.gaillard@enron.com 2000-08-08
## 1552 bruno.gaillard@enron.com 2000-08-08
## 1553 bruno.gaillard@enron.com 2000-08-08
## 1554 bruno.gaillard@enron.com 2000-08-08
## 1555 bruno.gaillard@enron.com 2000-08-08
## 1556 bruno.gaillard@enron.com 2000-08-08
## 1557 bruno.gaillard@enron.com 2000-08-08
## 1558 bruno.gaillard@enron.com 2000-08-08
## 1559 bruno.gaillard@enron.com 2000-08-08
## 1560 mona.petrochko@enron.com 2000-08-09
## 1561 mona.petrochko@enron.com 2000-08-09
## 1562 mona.petrochko@enron.com 2000-08-09
## 1563 mona.petrochko@enron.com 2000-08-09
## 1564 mona.petrochko@enron.com 2000-08-09
## 1565 bruno.gaillard@enron.com 2000-08-09
## 1566 bruno.gaillard@enron.com 2000-08-09
## 1567 bruno.gaillard@enron.com 2000-08-09
## 1568 bruno.gaillard@enron.com 2000-08-09
## 1569 bruno.gaillard@enron.com 2000-08-09
## 1570 bruno.gaillard@enron.com 2000-08-09
## 1571 bruno.gaillard@enron.com 2000-08-09
## 1572 bruno.gaillard@enron.com 2000-08-09
## 1573 bruno.gaillard@enron.com 2000-08-09
## 1574 bruno.gaillard@enron.com 2000-08-09
## 1575 bruno.gaillard@enron.com 2000-08-09
## 1576 bruno.gaillard@enron.com 2000-08-09
## 1577 bruno.gaillard@enron.com 2000-08-09
## 1578 bruno.gaillard@enron.com 2000-08-09
## 1579 bruno.gaillard@enron.com 2000-08-09
## 1580 bruno.gaillard@enron.com 2000-08-09
## 1581 bruno.gaillard@enron.com 2000-08-09
## 1582 bruno.gaillard@enron.com 2000-08-09
## 1583 bruno.gaillard@enron.com 2000-08-09
## 1584 bruno.gaillard@enron.com 2000-08-09
## 1585 eric.gadd@enron.com 2001-09-28
## 1586 eric.gadd@enron.com 2001-09-28
## 1587 eric.gadd@enron.com 2001-09-28
## 1588 eric.gadd@enron.com 2001-09-28
## 1589 eric.gadd@enron.com 2001-09-28
## 1590 eric.gadd@enron.com 2001-09-28
## 1591 eric.gadd@enron.com 2001-09-28
## 1592 eric.gadd@enron.com 2001-09-28
## 1593 eric.gadd@enron.com 2001-09-28
## 1594 eric.gadd@enron.com 2001-09-28
## 1595 eric.gadd@enron.com 2001-09-28
## 1596 eric.gadd@enron.com 2001-09-28
## 1597 jeff.nielsen@enron.com 2001-07-27
## 1598 jeff.nielsen@enron.com 2001-07-27
## 1599 jeff.nielsen@enron.com 2001-07-27
## 1600 jeff.nielsen@enron.com 2001-07-27
## 1601 john.kiani-aslani@enron.com 2001-07-25
## 1602 john.kiani-aslani@enron.com 2001-07-25
## 1603 john.kiani-aslani@enron.com 2001-07-25
## 1604 john.kiani-aslani@enron.com 2001-07-25
## 1605 john.kiani-aslani@enron.com 2001-07-25
## 1606 john.kiani-aslani@enron.com 2001-07-25
## 1607 john.kiani-aslani@enron.com 2001-07-25
## 1608 john.kiani-aslani@enron.com 2001-07-25
## 1609 diane_corbett@eott.com 2001-02-01
## 1610 larry.garrett@enron.com 2001-02-21
## 1611 larry.garrett@enron.com 2001-02-21
## 1612 larry.garrett@enron.com 2001-02-21
## 1613 larry.garrett@enron.com 2001-02-21
## 1614 larry.garrett@enron.com 2001-02-21
## 1615 larry.garrett@enron.com 2001-02-21
## 1616 larry.garrett@enron.com 2001-02-21
## 1617 larry.garrett@enron.com 2001-02-21
## 1618 larry.garrett@enron.com 2001-02-21
## 1619 larry.garrett@enron.com 2001-02-21
## 1620 larry.garrett@enron.com 2001-02-21
## 1621 larry.garrett@enron.com 2001-02-21
## 1622 larry.garrett@enron.com 2001-02-21
## 1623 larry.garrett@enron.com 2001-02-21
## 1624 larry.garrett@enron.com 2001-02-21
## 1625 larry.garrett@enron.com 2001-02-21
## 1626 larry.garrett@enron.com 2001-02-21
## 1627 larry.garrett@enron.com 2001-02-21
## 1628 larry.garrett@enron.com 2001-02-21
## 1629 larry.garrett@enron.com 2001-02-21
## 1630 larry.garrett@enron.com 2001-02-21
## 1631 larry.garrett@enron.com 2001-02-21
## 1632 larry.garrett@enron.com 2001-02-21
## 1633 rich.jolly@enron.com 2001-01-23
## 1634 rich.jolly@enron.com 2001-01-23
## 1635 rich.jolly@enron.com 2001-01-23
## 1636 rich.jolly@enron.com 2001-01-23
## 1637 rich.jolly@enron.com 2001-01-23
## 1638 rich.jolly@enron.com 2001-01-23
## 1639 rich.jolly@enron.com 2001-01-23
## 1640 rich.jolly@enron.com 2001-01-23
## 1641 rich.jolly@enron.com 2001-01-23
## 1642 rich.jolly@enron.com 2001-01-23
## 1643 rich.jolly@enron.com 2001-01-23
## 1644 rich.jolly@enron.com 2001-01-23
## 1645 rich.jolly@enron.com 2001-01-23
## 1646 rich.jolly@enron.com 2001-01-23
## 1647 rich.jolly@enron.com 2001-01-23
## 1648 rich.jolly@enron.com 2001-01-23
## 1649 rich.jolly@enron.com 2001-01-23
## 1650 rich.jolly@enron.com 2001-01-23
## 1651 rich.jolly@enron.com 2001-01-23
## 1652 rich.jolly@enron.com 2001-01-23
## 1653 rich.jolly@enron.com 2001-01-23
## 1654 rich.jolly@enron.com 2001-01-23
## 1655 rich.jolly@enron.com 2001-01-23
## 1656 rich.jolly@enron.com 2001-01-23
## 1657 rich.jolly@enron.com 2001-01-23
## 1658 rich.jolly@enron.com 2001-01-23
## 1659 rick.suderman@enron.com 2001-01-23
## 1660 rick.suderman@enron.com 2001-01-23
## 1661 rick.suderman@enron.com 2001-01-23
## 1662 rick.suderman@enron.com 2001-01-23
## 1663 rick.suderman@enron.com 2001-01-23
## 1664 rick.suderman@enron.com 2001-01-23
## 1665 rick.suderman@enron.com 2001-01-23
## 1666 rick.suderman@enron.com 2001-01-23
## 1667 rick.suderman@enron.com 2001-01-23
## 1668 rick.suderman@enron.com 2001-01-23
## 1669 rick.suderman@enron.com 2001-01-23
## 1670 rick.suderman@enron.com 2001-01-23
## 1671 rick.suderman@enron.com 2001-01-23
## 1672 rick_suderman@eott.com 2001-01-25
## 1673 rick_suderman@eott.com 2001-01-25
## 1674 rick_suderman@eott.com 2001-01-25
## 1675 rick_suderman@eott.com 2001-01-25
## 1676 rick_suderman@eott.com 2001-01-25
## 1677 rick_suderman@eott.com 2001-01-25
## 1678 rick_suderman@eott.com 2001-01-25
## 1679 rick_suderman@eott.com 2001-01-25
## 1680 rick_suderman@eott.com 2001-01-25
## 1681 rick_suderman@eott.com 2001-01-25
## 1682 rick_suderman@eott.com 2001-01-25
## 1683 kenneth.chow@enron.com 2001-01-26
## 1684 kenneth.chow@enron.com 2001-01-26
## 1685 kenneth.chow@enron.com 2001-01-26
## 1686 kenneth.chow@enron.com 2001-01-26
## 1687 kenneth.chow@enron.com 2001-01-26
## 1688 kenneth.chow@enron.com 2001-01-26
## 1689 kenneth.chow@enron.com 2001-01-26
## 1690 kenneth.chow@enron.com 2001-01-26
## 1691 kenneth.chow@enron.com 2001-01-26
## 1692 kenneth.chow@enron.com 2001-01-26
## 1693 kenneth.chow@enron.com 2001-01-26
## 1694 kenneth.chow@enron.com 2001-01-26
## 1695 kenneth.chow@enron.com 2001-01-26
## 1696 kenneth.chow@enron.com 2001-01-26
## 1697 kenneth.chow@enron.com 2001-01-26
## 1698 kenneth.chow@enron.com 2001-01-26
## 1699 kenneth.chow@enron.com 2001-01-26
## 1700 kenneth.chow@enron.com 2001-01-26
## 1701 kenneth.chow@enron.com 2001-01-26
## 1702 kenneth.chow@enron.com 2001-01-26
## 1703 kenneth.chow@enron.com 2001-01-26
## 1704 kenneth.chow@enron.com 2001-01-26
## 1705 kenneth.chow@enron.com 2001-01-26
## 1706 bob.burleson@enron.com 2001-01-26
## 1707 bob.burleson@enron.com 2001-01-26
## 1708 bob.burleson@enron.com 2001-01-26
## 1709 bob.burleson@enron.com 2001-01-26
## 1710 bob.burleson@enron.com 2001-01-26
## 1711 bob.burleson@enron.com 2001-01-26
## 1712 bob.burleson@enron.com 2001-01-26
## 1713 bob.burleson@enron.com 2001-01-26
## 1714 bob.burleson@enron.com 2001-01-26
## 1715 bob.burleson@enron.com 2001-01-26
## 1716 bob.burleson@enron.com 2001-01-26
## 1717 bob.burleson@enron.com 2001-01-26
## 1718 bob.burleson@enron.com 2001-01-26
## 1719 bob.burleson@enron.com 2001-01-26
## 1720 bob.burleson@enron.com 2001-01-26
## 1721 bob.burleson@enron.com 2001-01-26
## 1722 bob.burleson@enron.com 2001-01-26
## 1723 bob.burleson@enron.com 2001-01-26
## 1724 bob.burleson@enron.com 2001-01-26
## 1725 bob.burleson@enron.com 2001-01-26
## 1726 bob.burleson@enron.com 2001-01-26
## 1727 bob.burleson@enron.com 2001-01-26
## 1728 bob.burleson@enron.com 2001-01-26
## 1729 bob.burleson@enron.com 2001-01-26
## 1730 rich.jolly@enron.com 2001-01-29
## 1731 rich.jolly@enron.com 2001-01-29
## 1732 rich.jolly@enron.com 2001-01-29
## 1733 rich.jolly@enron.com 2001-01-29
## 1734 rich.jolly@enron.com 2001-01-29
## 1735 rich.jolly@enron.com 2001-01-29
## 1736 rich.jolly@enron.com 2001-01-29
## 1737 rich.jolly@enron.com 2001-01-29
## 1738 rich.jolly@enron.com 2001-01-29
## 1739 rich.jolly@enron.com 2001-01-29
## 1740 rich.jolly@enron.com 2001-01-29
## 1741 rich.jolly@enron.com 2001-01-29
## 1742 rich.jolly@enron.com 2001-01-29
## 1743 rich.jolly@enron.com 2001-01-29
## 1744 rich.jolly@enron.com 2001-01-29
## 1745 rich.jolly@enron.com 2001-01-29
## 1746 rich.jolly@enron.com 2001-01-29
## 1747 rich.jolly@enron.com 2001-01-29
## 1748 rich.jolly@enron.com 2001-01-29
## 1749 rich.jolly@enron.com 2001-01-29
## 1750 rich.jolly@enron.com 2001-01-29
## 1751 rich.jolly@enron.com 2001-01-29
## 1752 rich.jolly@enron.com 2001-01-29
## 1753 rich.jolly@enron.com 2001-01-29
## 1754 rich.jolly@enron.com 2001-01-29
## 1755 rich.jolly@enron.com 2001-01-29
## 1756 rich.jolly@enron.com 2001-01-29
## 1757 bob.jacobs@enron.com 2001-02-01
## 1758 bob.jacobs@enron.com 2001-02-01
## 1759 bob.jacobs@enron.com 2001-02-01
## 1760 bob.jacobs@enron.com 2001-02-01
## 1761 bob.jacobs@enron.com 2001-02-01
## 1762 bob.jacobs@enron.com 2001-02-01
## 1763 bob.jacobs@enron.com 2001-02-01
## 1764 bob.jacobs@enron.com 2001-02-01
## 1765 bob.jacobs@enron.com 2001-02-01
## 1766 bob.jacobs@enron.com 2001-02-01
## 1767 bob.jacobs@enron.com 2001-02-01
## 1768 bob.jacobs@enron.com 2001-02-01
## 1769 bob.jacobs@enron.com 2001-02-01
## 1770 bob.jacobs@enron.com 2001-02-01
## 1771 bob.jacobs@enron.com 2001-02-01
## 1772 bob.jacobs@enron.com 2001-02-01
## 1773 bob.jacobs@enron.com 2001-02-01
## 1774 bob.jacobs@enron.com 2001-02-01
## 1775 bob.jacobs@enron.com 2001-02-01
## 1776 bob.jacobs@enron.com 2001-02-01
## 1777 bob.jacobs@enron.com 2001-02-01
## 1778 bob.jacobs@enron.com 2001-02-01
## 1779 bob.jacobs@enron.com 2001-02-01
## 1780 david.roensch@enron.com 2001-02-02
## 1781 david.roensch@enron.com 2001-02-02
## 1782 david.roensch@enron.com 2001-02-02
## 1783 david.roensch@enron.com 2001-02-02
## 1784 david.roensch@enron.com 2001-02-02
## 1785 david.roensch@enron.com 2001-02-02
## 1786 david.roensch@enron.com 2001-02-02
## 1787 david.roensch@enron.com 2001-02-02
## 1788 david.roensch@enron.com 2001-02-02
## 1789 david.roensch@enron.com 2001-02-02
## 1790 david.roensch@enron.com 2001-02-02
## 1791 david.roensch@enron.com 2001-02-02
## 1792 david.roensch@enron.com 2001-02-02
## 1793 david.roensch@enron.com 2001-02-02
## 1794 larry.garrett@enron.com 2001-02-16
## 1795 larry.garrett@enron.com 2001-02-16
## 1796 larry.garrett@enron.com 2001-02-16
## 1797 larry.garrett@enron.com 2001-02-16
## 1798 larry.garrett@enron.com 2001-02-16
## 1799 larry.garrett@enron.com 2001-02-16
## 1800 larry.garrett@enron.com 2001-02-16
## 1801 larry.garrett@enron.com 2001-02-16
## 1802 larry.garrett@enron.com 2001-02-16
## 1803 larry.garrett@enron.com 2001-02-16
## 1804 larry.garrett@enron.com 2001-02-16
## 1805 larry.garrett@enron.com 2001-02-16
## 1806 larry.garrett@enron.com 2001-02-16
## 1807 larry.garrett@enron.com 2001-02-16
## 1808 larry.garrett@enron.com 2001-02-16
## 1809 larry.garrett@enron.com 2001-02-16
## 1810 larry.garrett@enron.com 2001-02-16
## 1811 larry.garrett@enron.com 2001-02-16
## 1812 larry.garrett@enron.com 2001-02-16
## 1813 larry.garrett@enron.com 2001-02-16
## 1814 larry.garrett@enron.com 2001-02-16
## 1815 larry.garrett@enron.com 2001-02-16
## 1816 larry.garrett@enron.com 2001-02-16
## 1817 bob.bandel@enron.com 2002-02-27
## 1818 bob.bandel@enron.com 2002-02-27
## 1819 bob.bandel@enron.com 2002-02-27
## 1820 bob.bandel@enron.com 2002-02-27
## 1821 roger.westbrook@enron.com 2002-02-27
## 1822 roger.westbrook@enron.com 2002-02-27
## 1823 roger.westbrook@enron.com 2002-02-27
## 1824 roger.westbrook@enron.com 2002-02-27
## 1825 roger.westbrook@enron.com 2002-02-27
## 1826 james.centilli@enron.com 2002-02-20
## 1827 james.centilli@enron.com 2002-02-20
## 1828 james.centilli@enron.com 2002-02-20
## 1829 frank.carriere@enron.com 2002-02-20
## 1830 frank.carriere@enron.com 2002-02-20
## 1831 frank.carriere@enron.com 2002-02-20
## 1832 frank.carriere@enron.com 2002-02-20
## 1833 frank.carriere@enron.com 2002-02-20
## 1834 frank.carriere@enron.com 2002-02-20
## 1835 ei_editor@platts.com 2002-01-02
## 1836 judy.lin@enron.com 2001-10-15
## 1837 judy.lin@enron.com 2001-10-15
## 1838 lorna.brennan@enron.com 2001-09-28
## 1839 lorna.brennan@enron.com 2001-09-28
## 1840 lorna.brennan@enron.com 2001-09-28
## 1841 lorna.brennan@enron.com 2001-09-28
## 1842 lorna.brennan@enron.com 2001-09-28
## 1843 lorna.brennan@enron.com 2001-09-28
## 1844 lorna.brennan@enron.com 2001-09-28
## 1845 lorna.brennan@enron.com 2001-09-28
## 1846 lorna.brennan@enron.com 2001-09-28
## 1847 lorna.brennan@enron.com 2001-07-27
## 1848 lorna.brennan@enron.com 2001-07-27
## 1849 lorna.brennan@enron.com 2001-07-27
## 1850 lorna.brennan@enron.com 2001-07-27
## 1851 lorna.brennan@enron.com 2001-07-27
## 1852 lorna.brennan@enron.com 2001-07-27
## 1853 lorna.brennan@enron.com 2001-07-27
## 1854 lorna.brennan@enron.com 2001-07-27
## 1855 lorna.brennan@enron.com 2001-07-27
## 1856 lorna.brennan@enron.com 2001-07-27
## 1857 lorna.brennan@enron.com 2001-07-27
## 1858 lorna.brennan@enron.com 2001-07-27
## 1859 lorna.brennan@enron.com 2001-07-20
## 1860 lorna.brennan@enron.com 2001-07-20
## 1861 lorna.brennan@enron.com 2001-07-20
## 1862 lorna.brennan@enron.com 2001-07-20
## 1863 lorna.brennan@enron.com 2001-07-20
## 1864 lorna.brennan@enron.com 2001-07-20
## 1865 lorna.brennan@enron.com 2001-07-20
## 1866 lorna.brennan@enron.com 2001-07-20
## 1867 lorna.brennan@enron.com 2001-07-20
## 1868 lorna.brennan@enron.com 2001-07-20
## 1869 lorna.brennan@enron.com 2001-07-20
## 1870 lorna.brennan@enron.com 2001-07-20
## 1871 lorna.brennan@enron.com 2001-07-20
## 1872 lorna.brennan@enron.com 2001-07-20
## 1873 lorna.brennan@enron.com 2001-07-20
## 1874 lorna.brennan@enron.com 2001-07-20
## 1875 lorna.brennan@enron.com 2001-07-13
## 1876 lorna.brennan@enron.com 2001-07-13
## 1877 lorna.brennan@enron.com 2001-07-13
## 1878 lorna.brennan@enron.com 2001-07-13
## 1879 lorna.brennan@enron.com 2001-07-13
## 1880 lorna.brennan@enron.com 2001-07-13
## 1881 lorna.brennan@enron.com 2001-07-13
## 1882 lorna.brennan@enron.com 2001-07-13
## 1883 lorna.brennan@enron.com 2001-07-13
## 1884 lorna.brennan@enron.com 2001-07-13
## 1885 lorna.brennan@enron.com 2001-07-13
## 1886 lorna.brennan@enron.com 2001-07-13
## 1887 lorna.brennan@enron.com 2001-07-13
## 1888 lorna.brennan@enron.com 2001-07-13
## 1889 lorna.brennan@enron.com 2001-07-13
## 1890 lorna.brennan@enron.com 2001-07-13
## 1891 lorna.brennan@enron.com 2001-07-13
## 1892 lorna.brennan@enron.com 2001-07-16
## 1893 lorna.brennan@enron.com 2001-07-16
## 1894 lorna.brennan@enron.com 2001-07-16
## 1895 lorna.brennan@enron.com 2001-07-16
## 1896 lorna.brennan@enron.com 2001-07-16
## 1897 lorna.brennan@enron.com 2001-07-16
## 1898 lorna.brennan@enron.com 2001-07-12
## 1899 lorna.brennan@enron.com 2001-07-12
## 1900 lorna.brennan@enron.com 2001-07-12
## 1901 lorna.brennan@enron.com 2001-07-12
## 1902 john.goodpasture@enron.com 2001-07-02
## 1903 lorna.brennan@enron.com 2001-07-02
## 1904 lorna.brennan@enron.com 2001-07-02
## 1905 lorna.brennan@enron.com 2001-07-02
## 1906 lorna.brennan@enron.com 2001-07-02
## 1907 ei_editor@ftenergy.com 2001-06-20
## 1908 eric.gadd@enron.com 2001-05-21
## 1909 john.shafer@enron.com 2001-10-15
## 1910 john.shafer@enron.com 2001-10-15
## 1911 john.shafer@enron.com 2001-10-15
## 1912 john.shafer@enron.com 2001-10-15
## 1913 john.shafer@enron.com 2001-10-15
## 1914 john.shafer@enron.com 2001-10-15
## 1915 john.shafer@enron.com 2001-10-15
## 1916 john.shafer@enron.com 2001-10-15
## 1917 john.shafer@enron.com 2001-10-15
## 1918 john.shafer@enron.com 2001-10-15
## 1919 spatti@ensr.com 2001-09-20
## 1920 spatti@ensr.com 2001-09-20
## 1921 spatti@ensr.com 2001-09-20
## 1922 spatti@ensr.com 2001-09-20
## 1923 spatti@ensr.com 2001-09-20
## 1924 spatti@ensr.com 2001-09-20
## 1925 spatti@ensr.com 2001-09-20
## 1926 spatti@ensr.com 2001-09-20
## 1927 ron.matthews@enron.com 2002-03-11
## 1928 ron.matthews@enron.com 2002-03-11
## 1929 ron.matthews@enron.com 2002-03-11
## 1930 ron.matthews@enron.com 2002-03-11
## 1931 ron.matthews@enron.com 2002-03-11
## 1932 ron.matthews@enron.com 2002-03-11
## 1933 ron.matthews@enron.com 2002-03-11
## 1934 ron.matthews@enron.com 2002-03-11
## 1935 ron.matthews@enron.com 2002-03-11
## 1936 ron.matthews@enron.com 2002-03-11
## 1937 ron.matthews@enron.com 2002-03-11
## 1938 ron.matthews@enron.com 2002-03-08
## 1939 ron.matthews@enron.com 2002-03-08
## 1940 ron.matthews@enron.com 2002-03-08
## 1941 ron.matthews@enron.com 2002-03-08
## 1942 ron.matthews@enron.com 2002-03-08
## 1943 ron.matthews@enron.com 2002-03-08
## 1944 ron.matthews@enron.com 2002-03-08
## 1945 eric.gadd@enron.com 2002-03-18
## 1946 eric.gadd@enron.com 2002-03-18
## 1947 eric.gadd@enron.com 2002-03-18
## 1948 eric.gadd@enron.com 2002-03-18
## 1949 eric.gadd@enron.com 2002-03-18
## 1950 janet.butler@enron.com 2002-03-15
## 1951 e..rosenberg@enron.com 2002-03-06
## 1952 eric.gadd@enron.com 2002-02-19
## 1953 eric.gadd@enron.com 2002-02-19
## 1954 eric.gadd@enron.com 2002-02-19
## 1955 eric.gadd@enron.com 2002-02-19
## 1956 nancy.bagot@dynegy.com 2002-03-14
## 1957 nancy.bagot@dynegy.com 2002-03-14
## 1958 nancy.bagot@dynegy.com 2002-03-14
## 1959 nancy.bagot@dynegy.com 2002-03-14
## 1960 nancy.bagot@dynegy.com 2002-03-14
## 1961 nancy.bagot@dynegy.com 2002-03-14
## 1962 nancy.bagot@dynegy.com 2002-03-14
## 1963 nancy.bagot@dynegy.com 2002-03-14
## 1964 nancy.bagot@dynegy.com 2002-03-14
## 1965 nancy.bagot@dynegy.com 2002-03-14
## 1966 nancy.bagot@dynegy.com 2002-03-14
## 1967 nancy.bagot@dynegy.com 2002-03-14
## 1968 nancy.bagot@dynegy.com 2002-03-14
## 1969 nancy.bagot@dynegy.com 2002-03-14
## 1970 nancy.bagot@dynegy.com 2002-03-14
## 1971 nancy.bagot@dynegy.com 2002-03-14
## 1972 nancy.bagot@dynegy.com 2002-03-14
## 1973 nancy.bagot@dynegy.com 2002-03-14
## 1974 nancy.bagot@dynegy.com 2002-03-14
## 1975 nancy.bagot@dynegy.com 2002-03-14
## 1976 nancy.bagot@dynegy.com 2002-03-14
## 1977 nancy.bagot@dynegy.com 2002-03-14
## 1978 nancy.bagot@dynegy.com 2002-03-14
## 1979 nancy.bagot@dynegy.com 2002-03-14
## 1980 nancy.bagot@dynegy.com 2002-03-14
## 1981 nancy.bagot@dynegy.com 2002-03-14
## 1982 nancy.bagot@dynegy.com 2002-03-14
## 1983 nancy.bagot@dynegy.com 2002-03-14
## 1984 nancy.bagot@dynegy.com 2002-03-14
## 1985 nancy.bagot@dynegy.com 2002-03-14
## 1986 nancy.bagot@dynegy.com 2002-03-14
## 1987 nancy.bagot@dynegy.com 2002-03-14
## 1988 nancy.bagot@dynegy.com 2002-03-14
## 1989 e..rosenberg@enron.com 2002-03-08
## 1990 e..rosenberg@enron.com 2002-03-08
## 1991 e..rosenberg@enron.com 2002-03-08
## 1992 eric.gadd@enron.com 2002-03-08
## 1993 ron.matthews@enron.com 2002-03-01
## 1994 l..eisenstein@enron.com 2002-02-25
## 1995 l..eisenstein@enron.com 2002-02-25
## 1996 l..eisenstein@enron.com 2002-02-25
## 1997 l..eisenstein@enron.com 2002-02-25
## 1998 l..eisenstein@enron.com 2002-02-25
## 1999 james.centilli@enron.com 2002-02-20
## 2000 james.centilli@enron.com 2002-02-20
## 2001 james.centilli@enron.com 2002-02-20
## 2002 james.centilli@enron.com 2002-02-20
## 2003 eric.gadd@enron.com 2002-02-11
## 2004 eric.gadd@enron.com 2002-02-11
## 2005 ron.matthews@enron.com 2002-01-31
## 2006 ron.matthews@enron.com 2002-01-31
## 2007 ron.matthews@enron.com 2002-01-07
## 2008 ron.matthews@enron.com 2002-01-07
## 2009 ron.matthews@enron.com 2002-01-07
## 2010 ron.matthews@enron.com 2002-01-07
## 2011 ron.matthews@enron.com 2002-01-07
## 2012 ron.matthews@enron.com 2002-01-07
## 2013 ron.matthews@enron.com 2002-01-07
## 2014 gina.taylor@enron.com 2002-01-31
## 2015 ron.matthews@enron.com 2002-01-29
## 2016 ron.matthews@enron.com 2002-01-29
## 2017 ron.matthews@enron.com 2002-01-29
## 2018 ron.matthews@enron.com 2002-01-29
## 2019 ron.matthews@enron.com 2002-01-29
## 2020 doug.cebryk@enron.com 2002-01-23
## 2021 doug.cebryk@enron.com 2002-01-23
## 2022 a..howard@enron.com 2001-11-19
## 2023 a..howard@enron.com 2001-11-19
## 2024 stevenc@pandaenergy.com 2001-12-03
## 2025 stevenc@pandaenergy.com 2001-12-03
## 2026 stevenc@pandaenergy.com 2001-12-03
## 2027 stevenc@pandaenergy.com 2001-12-03
## 2028 ron.matthews@enron.com 2001-11-08
## 2029 lorraine.lindberg@enron.com 2001-11-27
## 2030 buzz.smith@enron.com 2001-11-01
## 2031 buzz.smith@enron.com 2001-11-01
## 2032 ron.matthews@enron.com 2001-10-03
## 2033 ron.matthews@enron.com 2001-10-03
## 2034 ron.matthews@enron.com 2001-10-03
## 2035 ron.matthews@enron.com 2001-10-03
## 2036 ron.matthews@enron.com 2001-10-03
## 2037 ron.matthews@enron.com 2001-10-03
## 2038 ron.matthews@enron.com 2001-10-03
## 2039 ron.matthews@enron.com 2001-10-03
## 2040 jalstad@ensr.com 2001-09-27
## 2041 jalstad@ensr.com 2001-09-27
## 2042 jalstad@ensr.com 2001-09-27
## 2043 jalstad@ensr.com 2001-09-27
## 2044 jalstad@ensr.com 2001-09-27
## 2045 jalstad@ensr.com 2001-09-27
## 2046 jalstad@ensr.com 2001-09-27
## 2047 jalstad@ensr.com 2001-09-27
## 2048 maurice.gilbert@enron.com 2001-09-26
## 2049 maurice.gilbert@enron.com 2001-09-26
## 2050 maurice.gilbert@enron.com 2001-09-26
## 2051 maurice.gilbert@enron.com 2001-09-26
## 2052 maurice.gilbert@enron.com 2001-09-26
## 2053 maurice.gilbert@enron.com 2001-09-26
## 2054 spatti@ensr.com 2001-09-25
## 2055 spatti@ensr.com 2001-09-25
## 2056 spatti@ensr.com 2001-09-25
## 2057 spatti@ensr.com 2001-09-25
## 2058 spatti@ensr.com 2001-09-25
## 2059 spatti@ensr.com 2001-09-25
## 2060 spatti@ensr.com 2001-09-25
## 2061 spatti@ensr.com 2001-09-25
## 2062 spatti@ensr.com 2001-09-25
## 2063 spatti@ensr.com 2001-09-25
## 2064 spatti@ensr.com 2001-09-25
## 2065 spatti@ensr.com 2001-09-25
## 2066 spatti@ensr.com 2001-09-25
## 2067 spatti@ensr.com 2001-09-25
## 2068 spatti@ensr.com 2001-09-25
## 2069 spatti@ensr.com 2001-09-25
## 2070 spatti@ensr.com 2001-09-25
## 2071 spatti@ensr.com 2001-09-25
## 2072 spatti@ensr.com 2001-09-25
## 2073 spatti@ensr.com 2001-09-25
## 2074 spatti@ensr.com 2001-09-25
## 2075 spatti@ensr.com 2001-09-25
## 2076 spatti@ensr.com 2001-09-25
## 2077 spatti@ensr.com 2001-09-25
## 2078 spatti@ensr.com 2001-09-25
## 2079 spatti@ensr.com 2001-09-25
## 2080 spatti@ensr.com 2001-09-25
## 2081 spatti@ensr.com 2001-09-25
## 2082 spatti@ensr.com 2001-09-25
## 2083 spatti@ensr.com 2001-09-25
## 2084 spatti@ensr.com 2001-09-25
## 2085 spatti@ensr.com 2001-09-25
## 2086 spatti@ensr.com 2001-09-25
## 2087 spatti@ensr.com 2001-09-25
## 2088 doug.cebryk@enron.com 2001-09-25
## 2089 doug.cebryk@enron.com 2001-09-25
## 2090 spatti@ensr.com 2001-09-24
## 2091 spatti@ensr.com 2001-09-24
## 2092 spatti@ensr.com 2001-09-24
## 2093 spatti@ensr.com 2001-09-24
## 2094 spatti@ensr.com 2001-09-24
## 2095 spatti@ensr.com 2001-09-24
## 2096 spatti@ensr.com 2001-09-24
## 2097 spatti@ensr.com 2001-09-24
## 2098 spatti@ensr.com 2001-09-24
## 2099 spatti@ensr.com 2001-09-24
## 2100 spatti@ensr.com 2001-09-24
## 2101 spatti@ensr.com 2001-09-24
## 2102 spatti@ensr.com 2001-09-24
## 2103 spatti@ensr.com 2001-09-24
## 2104 spatti@ensr.com 2001-09-24
## 2105 spatti@ensr.com 2001-09-24
## 2106 spatti@ensr.com 2001-09-24
## 2107 spatti@ensr.com 2001-09-24
## 2108 spatti@ensr.com 2001-09-24
## 2109 spatti@ensr.com 2001-09-24
## 2110 spatti@ensr.com 2001-09-24
## 2111 spatti@ensr.com 2001-09-24
## 2112 spatti@ensr.com 2001-09-24
## 2113 spatti@ensr.com 2001-09-24
## 2114 spatti@ensr.com 2001-09-24
## 2115 spatti@ensr.com 2001-09-24
## 2116 spatti@ensr.com 2001-09-24
## 2117 doug.cebryk@enron.com 2001-09-21
## 2118 doug.cebryk@enron.com 2001-09-21
## 2119 doug.cebryk@enron.com 2001-09-21
## 2120 doug.cebryk@enron.com 2001-09-21
## 2121 doug.cebryk@enron.com 2001-09-21
## 2122 doug.cebryk@enron.com 2001-09-21
## 2123 doug.cebryk@enron.com 2001-09-21
## 2124 doug.cebryk@enron.com 2001-09-21
## 2125 doug.cebryk@enron.com 2001-09-21
## 2126 doug.cebryk@enron.com 2001-09-21
## 2127 doug.cebryk@enron.com 2001-09-21
## 2128 doug.cebryk@enron.com 2001-09-21
## 2129 doug.cebryk@enron.com 2001-09-21
## 2130 jschmidt@ensr.com 2001-09-24
## 2131 jschmidt@ensr.com 2001-09-24
## 2132 jschmidt@ensr.com 2001-09-24
## 2133 jschmidt@ensr.com 2001-09-24
## 2134 jschmidt@ensr.com 2001-09-24
## 2135 jschmidt@ensr.com 2001-09-24
## 2136 jschmidt@ensr.com 2001-09-24
## 2137 jschmidt@ensr.com 2001-09-24
## 2138 spatti@ensr.com 2001-09-21
## 2139 spatti@ensr.com 2001-09-21
## 2140 spatti@ensr.com 2001-09-21
## 2141 spatti@ensr.com 2001-09-21
## 2142 spatti@ensr.com 2001-09-21
## 2143 spatti@ensr.com 2001-09-21
## 2144 spatti@ensr.com 2001-09-21
## 2145 spatti@ensr.com 2001-09-21
## 2146 spatti@ensr.com 2001-09-21
## 2147 spatti@ensr.com 2001-09-21
## 2148 doug.cebryk@enron.com 2001-09-21
## 2149 doug.cebryk@enron.com 2001-09-21
## 2150 doug.cebryk@enron.com 2001-09-21
## 2151 doug.cebryk@enron.com 2001-09-21
## 2152 spatti@ensr.com 2001-09-21
## 2153 spatti@ensr.com 2001-09-21
## 2154 spatti@ensr.com 2001-09-21
## 2155 spatti@ensr.com 2001-09-21
## 2156 spatti@ensr.com 2001-09-21
## 2157 spatti@ensr.com 2001-09-21
## 2158 spatti@ensr.com 2001-09-21
## 2159 spatti@ensr.com 2001-09-21
## 2160 spatti@ensr.com 2001-09-21
## 2161 spatti@ensr.com 2001-09-21
## 2162 spatti@ensr.com 2001-09-21
## 2163 spatti@ensr.com 2001-09-21
## 2164 spatti@ensr.com 2001-09-21
## 2165 spatti@ensr.com 2001-09-21
## 2166 spatti@ensr.com 2001-09-21
## 2167 spatti@ensr.com 2001-09-21
## 2168 spatti@ensr.com 2001-09-21
## 2169 spatti@ensr.com 2001-09-21
## 2170 spatti@ensr.com 2001-09-21
## 2171 spatti@ensr.com 2001-09-21
## 2172 john.shafer@enron.com 2001-09-06
## 2173 john.shafer@enron.com 2001-09-06
## 2174 john.shafer@enron.com 2001-09-06
## 2175 john.shafer@enron.com 2001-09-06
## 2176 john.shafer@enron.com 2001-09-06
## 2177 john.shafer@enron.com 2001-09-06
## 2178 john.shafer@enron.com 2001-09-06
## 2179 john.shafer@enron.com 2001-09-06
## 2180 john.shafer@enron.com 2001-09-06
## 2181 john.shafer@enron.com 2001-09-06
## 2182 john.shafer@enron.com 2001-09-06
## 2183 eric.gadd@enron.com 2001-09-07
## 2184 eric.gadd@enron.com 2001-09-07
## 2185 eric.gadd@enron.com 2001-09-07
## 2186 eric.gadd@enron.com 2001-09-07
## 2187 ron.matthews@enron.com 2001-09-20
## 2188 john.shafer@enron.com 2001-09-20
## 2189 john.shafer@enron.com 2001-09-20
## 2190 john.shafer@enron.com 2001-09-20
## 2191 john.shafer@enron.com 2001-09-19
## 2192 john.shafer@enron.com 2001-09-19
## 2193 john.shafer@enron.com 2001-09-19
## 2194 doug.cebryk@enron.com 2001-09-18
## 2195 doug.cebryk@enron.com 2001-09-18
## 2196 doug.cebryk@enron.com 2001-09-18
## 2197 doug.cebryk@enron.com 2001-09-18
## 2198 doug.cebryk@enron.com 2001-09-18
## 2199 doug.cebryk@enron.com 2001-09-18
## 2200 doug.cebryk@enron.com 2001-09-18
## 2201 eric.gadd@enron.com 2001-09-18
## 2202 john.shafer@enron.com 2001-09-18
## 2203 john.shafer@enron.com 2001-09-18
## 2204 john.shafer@enron.com 2001-09-18
## 2205 john.shafer@enron.com 2001-09-18
## 2206 john.shafer@enron.com 2001-09-18
## 2207 doug.cebryk@enron.com 2001-09-18
## 2208 doug.cebryk@enron.com 2001-09-18
## 2209 doug.cebryk@enron.com 2001-09-18
## 2210 doug.cebryk@enron.com 2001-09-13
## 2211 doug.cebryk@enron.com 2001-09-13
## 2212 doug.cebryk@enron.com 2001-09-13
## 2213 doug.cebryk@enron.com 2001-09-13
## 2214 doug.cebryk@enron.com 2001-09-13
## 2215 doug.cebryk@enron.com 2001-09-13
## 2216 doug.cebryk@enron.com 2001-09-13
## 2217 doug.cebryk@enron.com 2001-09-13
## 2218 doug.cebryk@enron.com 2001-09-13
## 2219 doug.cebryk@enron.com 2001-09-13
## 2220 doug.cebryk@enron.com 2001-09-13
## 2221 doug.cebryk@enron.com 2001-09-13
## 2222 doug.cebryk@enron.com 2001-09-13
## 2223 ron.matthews@enron.com 2001-09-07
## 2224 ron.matthews@enron.com 2001-09-07
## 2225 ron.matthews@enron.com 2001-09-07
## 2226 ron.matthews@enron.com 2001-09-07
## 2227 eric.gadd@enron.com 2001-09-10
## 2228 tony.pryor@enron.com 2001-08-30
## 2229 tony.pryor@enron.com 2001-08-29
## 2230 tony.pryor@enron.com 2001-08-30
## 2231 doug.cebryk@enron.com 2001-09-07
## 2232 bryan.reinecke@enron.com 2001-08-31
## 2233 bryan.reinecke@enron.com 2001-08-31
## 2234 bryan.reinecke@enron.com 2001-08-31
## 2235 bryan.reinecke@enron.com 2001-08-31
## 2236 bryan.reinecke@enron.com 2001-08-31
## 2237 bryan.reinecke@enron.com 2001-09-05
## 2238 gina.taylor@enron.com 2001-09-06
## 2239 gina.taylor@enron.com 2001-09-06
## 2240 gina.taylor@enron.com 2001-09-06
## 2241 gina.taylor@enron.com 2001-09-06
## 2242 gina.taylor@enron.com 2001-09-06
## 2243 gina.taylor@enron.com 2001-09-06
## 2244 gina.taylor@enron.com 2001-09-06
## 2245 gina.taylor@enron.com 2001-09-06
## 2246 gina.taylor@enron.com 2001-09-06
## 2247 gina.taylor@enron.com 2001-09-06
## 2248 gina.taylor@enron.com 2001-09-06
## 2249 gina.taylor@enron.com 2001-09-06
## 2250 gina.taylor@enron.com 2001-09-06
## 2251 gina.taylor@enron.com 2001-09-06
## 2252 gina.taylor@enron.com 2001-09-06
## 2253 gina.taylor@enron.com 2001-09-06
## 2254 gina.taylor@enron.com 2001-09-06
## 2255 gina.taylor@enron.com 2001-09-06
## 2256 gina.taylor@enron.com 2001-09-06
## 2257 gina.taylor@enron.com 2001-09-06
## 2258 gina.taylor@enron.com 2001-09-06
## 2259 gina.taylor@enron.com 2001-09-06
## 2260 gina.taylor@enron.com 2001-09-06
## 2261 gina.taylor@enron.com 2001-09-06
## 2262 gina.taylor@enron.com 2001-09-06
## 2263 gina.taylor@enron.com 2001-09-06
## 2264 gina.taylor@enron.com 2001-09-06
## 2265 gina.taylor@enron.com 2001-09-06
## 2266 john.shafer@enron.com 2001-09-04
## 2267 john.shafer@enron.com 2001-09-04
## 2268 john.shafer@enron.com 2001-09-04
## 2269 john.shafer@enron.com 2001-09-04
## 2270 john.shafer@enron.com 2001-09-04
## 2271 john.shafer@enron.com 2001-09-04
## 2272 john.shafer@enron.com 2001-09-04
## 2273 john.shafer@enron.com 2001-09-04
## 2274 john.shafer@enron.com 2001-09-04
## 2275 john.shafer@enron.com 2001-09-04
## 2276 john.shafer@enron.com 2001-08-31
## 2277 john.shafer@enron.com 2001-08-31
## 2278 john.shafer@enron.com 2001-08-31
## 2279 john.shafer@enron.com 2001-08-31
## 2280 john.shafer@enron.com 2001-08-31
## 2281 john.shafer@enron.com 2001-08-31
## 2282 john.shafer@enron.com 2001-08-31
## 2283 john.shafer@enron.com 2001-08-31
## 2284 john.shafer@enron.com 2001-08-31
## 2285 john.shafer@enron.com 2001-08-31
## 2286 john.shafer@enron.com 2001-08-31
## 2287 john.shafer@enron.com 2001-08-31
## 2288 john.shafer@enron.com 2001-08-31
## 2289 john.shafer@enron.com 2001-08-31
## 2290 john.shafer@enron.com 2001-08-31
## 2291 john.shafer@enron.com 2001-08-31
## 2292 doug.cebryk@enron.com 2001-08-29
## 2293 doug.cebryk@enron.com 2001-08-29
## 2294 doug.cebryk@enron.com 2001-08-29
## 2295 doug.cebryk@enron.com 2001-08-29
## 2296 doug.cebryk@enron.com 2001-08-29
## 2297 paul.cherry@enron.com 2001-08-29
## 2298 paul.cherry@enron.com 2001-08-29
## 2299 paul.cherry@enron.com 2001-08-29
## 2300 paul.cherry@enron.com 2001-08-29
## 2301 louis.soldano@enron.com 2001-08-31
## 2302 louis.soldano@enron.com 2001-08-31
## 2303 louis.soldano@enron.com 2001-08-31
## 2304 carries@tradefairgroup.com 2001-08-31
## 2305 carries@tradefairgroup.com 2001-08-31
## 2306 carries@tradefairgroup.com 2001-08-31
## 2307 carries@tradefairgroup.com 2001-08-31
## 2308 carries@tradefairgroup.com 2001-08-31
## 2309 carries@tradefairgroup.com 2001-08-31
## 2310 carries@tradefairgroup.com 2001-08-31
## 2311 carries@tradefairgroup.com 2001-08-31
## 2312 carries@tradefairgroup.com 2001-08-31
## 2313 carries@tradefairgroup.com 2001-08-31
## 2314 carries@tradefairgroup.com 2001-08-31
## 2315 eric.gadd@enron.com 2001-08-08
## 2316 eric.gadd@enron.com 2001-08-08
## 2317 eric.gadd@enron.com 2001-08-08
## 2318 jane.scelzo@enron.com 2001-08-30
## 2319 jane.scelzo@enron.com 2001-08-30
## 2320 jane.scelzo@enron.com 2001-08-30
## 2321 jane.scelzo@enron.com 2001-08-30
## 2322 jane.scelzo@enron.com 2001-08-30
## 2323 bethc@pandaenergy.com 2001-08-14
## 2324 bethc@pandaenergy.com 2001-08-14
## 2325 bethc@pandaenergy.com 2001-08-14
## 2326 ron.matthews@enron.com 2001-08-22
## 2327 ron.matthews@enron.com 2001-08-22
## 2328 ron.matthews@enron.com 2001-08-22
## 2329 ron.matthews@enron.com 2001-08-22
## 2330 ron.matthews@enron.com 2001-08-22
## 2331 ron.matthews@enron.com 2001-08-22
## 2332 spatti@ensr.com 2001-08-27
## 2333 spatti@ensr.com 2001-08-27
## 2334 spatti@ensr.com 2001-08-27
## 2335 spatti@ensr.com 2001-08-27
## 2336 spatti@ensr.com 2001-08-27
## 2337 spatti@ensr.com 2001-08-27
## 2338 spatti@ensr.com 2001-08-27
## 2339 spatti@ensr.com 2001-08-27
## 2340 spatti@ensr.com 2001-08-27
## 2341 spatti@ensr.com 2001-08-27
## 2342 glen.hass@enron.com 2001-08-22
## 2343 john.shafer@enron.com 2001-08-22
## 2344 john.shafer@enron.com 2001-08-22
## 2345 john.shafer@enron.com 2001-08-22
## 2346 john.shafer@enron.com 2001-08-22
## 2347 john.shafer@enron.com 2001-08-22
## 2348 john.shafer@enron.com 2001-08-22
## 2349 john.shafer@enron.com 2001-08-22
## 2350 john.shafer@enron.com 2001-08-22
## 2351 john.shafer@enron.com 2001-08-22
## 2352 john.shafer@enron.com 2001-08-21
## 2353 john.shafer@enron.com 2001-08-21
## 2354 john.shafer@enron.com 2001-08-21
## 2355 john.shafer@enron.com 2001-08-21
## 2356 john.shafer@enron.com 2001-08-21
## 2357 john.shafer@enron.com 2001-08-21
## 2358 john.shafer@enron.com 2001-08-21
## 2359 john.shafer@enron.com 2001-08-21
## 2360 john.shafer@enron.com 2001-08-21
## 2361 john.shafer@enron.com 2001-08-21
## 2362 john.shafer@enron.com 2001-08-21
## 2363 john.shafer@enron.com 2001-08-05
## 2364 john.shafer@enron.com 2001-08-05
## 2365 john.shafer@enron.com 2001-08-05
## 2366 john.shafer@enron.com 2001-08-05
## 2367 john.shafer@enron.com 2001-08-05
## 2368 john.shafer@enron.com 2001-08-05
## 2369 john.shafer@enron.com 2001-08-02
## 2370 john.shafer@enron.com 2001-08-02
## 2371 john.shafer@enron.com 2001-08-02
## 2372 john.shafer@enron.com 2001-08-02
## 2373 john.shafer@enron.com 2001-07-25
## 2374 john.shafer@enron.com 2001-07-25
## 2375 john.shafer@enron.com 2001-07-25
## 2376 john.shafer@enron.com 2001-07-25
## 2377 john.shafer@enron.com 2001-08-22
## 2378 john.shafer@enron.com 2001-08-22
## 2379 ron.matthews@enron.com 2001-08-21
## 2380 ron.matthews@enron.com 2001-08-21
## 2381 ron.matthews@enron.com 2001-08-21
## 2382 eric.gadd@enron.com 2001-08-21
## 2383 eric.gadd@enron.com 2001-08-21
## 2384 ron.matthews@enron.com 2001-08-20
## 2385 ron.matthews@enron.com 2001-08-20
## 2386 jdoering@rcgroup.com 2001-08-14
## 2387 lorna.brennan@enron.com 2001-08-13
## 2388 lorna.brennan@enron.com 2001-08-13
## 2389 lorna.brennan@enron.com 2001-08-13
## 2390 lorna.brennan@enron.com 2001-08-13
## 2391 lorna.brennan@enron.com 2001-08-13
## 2392 lorna.brennan@enron.com 2001-08-13
## 2393 lorna.brennan@enron.com 2001-08-13
## 2394 lorna.brennan@enron.com 2001-08-13
## 2395 lorna.brennan@enron.com 2001-08-13
## 2396 lorna.brennan@enron.com 2001-08-13
## 2397 lorna.brennan@enron.com 2001-08-13
## 2398 lorna.brennan@enron.com 2001-08-13
## 2399 lorna.brennan@enron.com 2001-08-13
## 2400 lorna.brennan@enron.com 2001-08-13
## 2401 lorna.brennan@enron.com 2001-08-13
## 2402 keith.petersen@enron.com 2001-08-03
## 2403 ronald.matthews@enron.com 2001-07-18
## 2404 ronald.matthews@enron.com 2001-07-18
## 2405 ronald.matthews@enron.com 2001-07-18
## 2406 ronald.matthews@enron.com 2001-07-18
## 2407 ronald.matthews@enron.com 2001-07-18
## 2408 ronald.matthews@enron.com 2001-07-19
## 2409 ronald.matthews@enron.com 2001-07-19
## 2410 ronald.matthews@enron.com 2001-07-19
## 2411 ronald.matthews@enron.com 2001-07-19
## 2412 ronald.matthews@enron.com 2001-07-19
## 2413 ronald.matthews@enron.com 2001-07-19
## 2414 susan.wadle@enron.com 2002-03-06
## 2415 janet.butler@enron.com 2002-02-27
## 2416 ron.matthews@enron.com 2002-02-12
## 2417 ron.matthews@enron.com 2002-02-12
## 2418 ron.matthews@enron.com 2002-02-12
## 2419 ron.matthews@enron.com 2002-02-12
## 2420 ron.matthews@enron.com 2002-02-12
## 2421 maurice.gilbert@enron.com 2001-11-15
## 2422 maurice.gilbert@enron.com 2001-11-15
## 2423 maurice.gilbert@enron.com 2001-11-15
## 2424 michael.ratner@enron.com 2001-10-09
## 2425 michael.ratner@enron.com 2001-10-09
## 2426 michael.ratner@enron.com 2001-10-09
## 2427 michael.ratner@enron.com 2001-10-09
## 2428 michael.ratner@enron.com 2001-10-09
## 2429 michael.ratner@enron.com 2001-10-09
## 2430 michael.ratner@enron.com 2001-10-09
## 2431 michael.ratner@enron.com 2001-10-09
## 2432 michael.ratner@enron.com 2001-10-09
## 2433 michael.ratner@enron.com 2001-10-09
## 2434 kent.miller@enron.com 2001-08-21
## 2435 kent.miller@enron.com 2001-08-21
## 2436 elberg.gelin@enron.com 2001-08-22
## 2437 elberg.gelin@enron.com 2001-08-22
## 2438 elberg.gelin@enron.com 2001-08-22
## 2439 kimberly.watson@enron.com 2001-07-13
## 2440 mansoor.abdmoulaie@enron.com 2001-06-01
## 2441 paul.gregory@enron.com 2001-07-03
## 2442 paul.gregory@enron.com 2001-07-03
## 2443 paul.gregory@enron.com 2001-07-03
## 2444 paul.gregory@enron.com 2001-07-03
## 2445 eric.faucheaux@enron.com 2001-06-25
## 2446 eric.faucheaux@enron.com 2001-06-25
## 2447 eric.faucheaux@enron.com 2001-06-25
## 2448 chuck.wilkinson@enron.com 2001-05-29
## 2449 eugene.o gorman@enron.com 2001-03-26
## 2450 eugene.o gorman@enron.com 2001-03-26
## 2451 eugene.o gorman@enron.com 2001-03-26
## 2452 eugene.o gorman@enron.com 2001-03-26
## 2453 eugene.o gorman@enron.com 2001-03-26
## 2454 eugene.o gorman@enron.com 2001-03-26
## 2455 eugene.o gorman@enron.com 2001-03-26
## 2456 eugene.o gorman@enron.com 2001-03-26
## 2457 eugene.o gorman@enron.com 2001-03-26
## 2458 eugene.o gorman@enron.com 2001-03-26
## 2459 eugene.o gorman@enron.com 2001-03-26
## 2460 sarabeth.smith@enron.com 2001-02-27
## 2461 sarabeth.smith@enron.com 2001-02-27
## 2462 sarabeth.smith@enron.com 2001-02-27
## 2463 sarabeth.smith@enron.com 2001-02-27
## 2464 sarabeth.smith@enron.com 2001-02-27
## 2465 sarabeth.smith@enron.com 2001-02-27
## 2466 sarabeth.smith@enron.com 2001-02-27
## 2467 eric.gadd@enron.com 2001-05-14
## 2468 eric.gadd@enron.com 2001-05-11
## 2469 max.brown@enron.com 2001-05-07
## 2470 max.brown@enron.com 2001-05-07
## 2471 max.brown@enron.com 2001-05-07
## 2472 max.brown@enron.com 2001-05-07
## 2473 max.brown@enron.com 2001-05-07
## 2474 max.brown@enron.com 2001-05-07
## 2475 max.brown@enron.com 2001-05-07
## 2476 max.brown@enron.com 2001-05-07
## 2477 max.brown@enron.com 2001-05-07
## 2478 max.brown@enron.com 2001-05-07
## 2479 max.brown@enron.com 2001-05-07
## 2480 max.brown@enron.com 2001-05-07
## 2481 max.brown@enron.com 2001-05-07
## 2482 max.brown@enron.com 2001-05-07
## 2483 max.brown@enron.com 2001-05-07
## 2484 r..stark@enron.com 2001-05-15
## 2485 r..stark@enron.com 2001-05-15
## 2486 r..stark@enron.com 2001-05-15
## 2487 r..stark@enron.com 2001-05-15
## 2488 r..stark@enron.com 2001-05-15
## 2489 r..stark@enron.com 2001-05-15
## 2490 r..stark@enron.com 2001-05-15
## 2491 r..stark@enron.com 2001-05-15
## 2492 r..stark@enron.com 2001-05-15
## 2493 r..stark@enron.com 2001-05-15
## 2494 r..stark@enron.com 2001-05-15
## 2495 r..stark@enron.com 2001-05-15
## 2496 r..stark@enron.com 2001-05-15
## 2497 r..stark@enron.com 2001-05-15
## 2498 r..stark@enron.com 2001-05-15
## 2499 mansoor.abdmoulaie@enron.com 2001-05-10
## 2500 mansoor.abdmoulaie@enron.com 2001-05-10
## 2501 mansoor.abdmoulaie@enron.com 2001-05-10
## 2502 mansoor.abdmoulaie@enron.com 2001-05-10
## 2503 l..johnson@enron.com 2001-05-15
## 2504 l..johnson@enron.com 2001-05-15
## 2505 l..johnson@enron.com 2001-05-15
## 2506 l..johnson@enron.com 2001-05-15
## 2507 l..johnson@enron.com 2001-05-15
## 2508 l..johnson@enron.com 2001-05-15
## 2509 l..johnson@enron.com 2001-05-15
## 2510 l..johnson@enron.com 2001-05-15
## 2511 l..johnson@enron.com 2001-05-15
## 2512 l..johnson@enron.com 2001-05-15
## 2513 l..johnson@enron.com 2001-05-15
## 2514 l..johnson@enron.com 2001-05-15
## 2515 l..johnson@enron.com 2001-05-15
## 2516 l..johnson@enron.com 2001-05-15
## 2517 jeffery.fawcett@enron.com 2001-05-01
## 2518 jeffery.fawcett@enron.com 2001-05-01
## 2519 jeffery.fawcett@enron.com 2001-05-01
## 2520 jeffery.fawcett@enron.com 2001-05-01
## 2521 jeffery.fawcett@enron.com 2001-05-01
## 2522 jeffery.fawcett@enron.com 2001-05-01
## 2523 jeffery.fawcett@enron.com 2001-05-01
## 2524 jeffery.fawcett@enron.com 2001-05-01
## 2525 jeffery.fawcett@enron.com 2001-05-01
## 2526 jeffery.fawcett@enron.com 2001-05-01
## 2527 jeffery.fawcett@enron.com 2001-05-01
## 2528 eric.faucheaux@enron.com 2001-03-27
## 2529 eric.faucheaux@enron.com 2001-03-27
## 2530 eric.faucheaux@enron.com 2001-03-27
## 2531 eric.faucheaux@enron.com 2001-03-27
## 2532 eric.faucheaux@enron.com 2001-03-27
## 2533 eric.faucheaux@enron.com 2001-03-27
## 2534 eric.faucheaux@enron.com 2001-03-27
## 2535 eric.faucheaux@enron.com 2001-03-27
## 2536 eric.faucheaux@enron.com 2001-03-27
## 2537 eric.faucheaux@enron.com 2001-03-27
## 2538 eric.faucheaux@enron.com 2001-03-27
## 2539 eric.faucheaux@enron.com 2001-03-27
## 2540 eric.faucheaux@enron.com 2001-03-27
## 2541 eric.faucheaux@enron.com 2001-03-27
## 2542 eric.faucheaux@enron.com 2001-03-27
## 2543 eric.faucheaux@enron.com 2001-03-27
## 2544 eric.faucheaux@enron.com 2001-03-27
## 2545 eric.faucheaux@enron.com 2001-03-27
## 2546 eric.faucheaux@enron.com 2001-03-27
## 2547 eric.faucheaux@enron.com 2001-03-27
## 2548 jeffery.fawcett@enron.com 2001-04-26
## 2549 jeffery.fawcett@enron.com 2001-04-26
## 2550 jeffery.fawcett@enron.com 2001-04-26
## 2551 jeffery.fawcett@enron.com 2001-04-26
## 2552 jeffery.fawcett@enron.com 2001-04-26
## 2553 jeffery.fawcett@enron.com 2001-04-26
## 2554 jeffery.fawcett@enron.com 2001-04-26
## 2555 jeffery.fawcett@enron.com 2001-04-26
## 2556 jeffery.fawcett@enron.com 2001-04-26
## 2557 jeffery.fawcett@enron.com 2001-04-26
## 2558 max.brown@enron.com 2001-04-19
## 2559 max.brown@enron.com 2001-04-19
## 2560 max.brown@enron.com 2001-04-19
## 2561 max.brown@enron.com 2001-04-19
## 2562 max.brown@enron.com 2001-04-19
## 2563 max.brown@enron.com 2001-04-19
## 2564 l..johnson@enron.com 2001-04-19
## 2565 l..johnson@enron.com 2001-04-19
## 2566 l..johnson@enron.com 2001-04-19
## 2567 l..johnson@enron.com 2001-04-19
## 2568 l..johnson@enron.com 2001-04-19
## 2569 l..johnson@enron.com 2001-04-19
## 2570 l..johnson@enron.com 2001-04-19
## 2571 l..johnson@enron.com 2001-04-19
## 2572 l..johnson@enron.com 2001-04-19
## 2573 l..johnson@enron.com 2001-04-19
## 2574 sasselin@trigon-sheehan.com 2001-04-16
## 2575 sasselin@trigon-sheehan.com 2001-04-16
## 2576 sasselin@trigon-sheehan.com 2001-04-16
## 2577 sasselin@trigon-sheehan.com 2001-04-16
## 2578 sasselin@trigon-sheehan.com 2001-04-16
## 2579 sasselin@trigon-sheehan.com 2001-04-16
## 2580 sasselin@trigon-sheehan.com 2001-04-16
## 2581 sasselin@trigon-sheehan.com 2001-04-16
## 2582 sasselin@trigon-sheehan.com 2001-04-16
## 2583 sasselin@trigon-sheehan.com 2001-04-16
## 2584 sasselin@trigon-sheehan.com 2001-04-16
## 2585 sasselin@trigon-sheehan.com 2001-04-16
## 2586 sasselin@trigon-sheehan.com 2001-04-16
## 2587 mansoor.abdmoulaie@enron.com 2001-04-05
## 2588 mansoor.abdmoulaie@enron.com 2001-04-05
## 2589 mansoor.abdmoulaie@enron.com 2001-04-05
## 2590 mansoor.abdmoulaie@enron.com 2001-04-05
## 2591 mansoor.abdmoulaie@enron.com 2001-04-05
## 2592 mansoor.abdmoulaie@enron.com 2001-04-05
## 2593 mansoor.abdmoulaie@enron.com 2001-04-05
## 2594 mansoor.abdmoulaie@enron.com 2001-04-05
## 2595 mansoor.abdmoulaie@enron.com 2001-04-05
## 2596 mansoor.abdmoulaie@enron.com 2001-04-05
## 2597 mansoor.abdmoulaie@enron.com 2001-04-05
## 2598 mansoor.abdmoulaie@enron.com 2001-04-05
## 2599 mansoor.abdmoulaie@enron.com 2001-04-05
## 2600 mansoor.abdmoulaie@enron.com 2001-04-05
## 2601 mansoor.abdmoulaie@enron.com 2001-04-05
## 2602 mansoor.abdmoulaie@enron.com 2001-04-05
## 2603 mansoor.abdmoulaie@enron.com 2001-04-05
## 2604 mansoor.abdmoulaie@enron.com 2001-04-05
## 2605 mansoor.abdmoulaie@enron.com 2001-04-05
## 2606 mansoor.abdmoulaie@enron.com 2001-04-05
## 2607 mansoor.abdmoulaie@enron.com 2001-04-05
## 2608 mansoor.abdmoulaie@enron.com 2001-04-05
## 2609 mansoor.abdmoulaie@enron.com 2001-04-05
## 2610 mansoor.abdmoulaie@enron.com 2001-04-05
## 2611 mansoor.abdmoulaie@enron.com 2001-04-05
## 2612 mansoor.abdmoulaie@enron.com 2001-04-05
## 2613 mansoor.abdmoulaie@enron.com 2001-04-05
## 2614 jeffery.fawcett@enron.com 2001-03-07
## 2615 jeffery.fawcett@enron.com 2001-03-07
## 2616 jeffery.fawcett@enron.com 2001-03-07
## 2617 jeffery.fawcett@enron.com 2001-03-07
## 2618 gary.choquette@enron.com 2001-03-02
## 2619 gary.choquette@enron.com 2001-03-02
## 2620 gary.choquette@enron.com 2001-03-02
## 2621 gary.choquette@enron.com 2001-03-02
## 2622 gary.choquette@enron.com 2001-03-02
## 2623 gary.choquette@enron.com 2001-03-02
## 2624 gary.choquette@enron.com 2001-03-02
## 2625 gary.choquette@enron.com 2001-03-02
## 2626 gary.choquette@enron.com 2001-03-02
## 2627 gary.choquette@enron.com 2001-03-02
## 2628 gary.choquette@enron.com 2001-03-02
## 2629 gary.choquette@enron.com 2001-03-02
## 2630 gary.choquette@enron.com 2001-03-02
## 2631 gary.choquette@enron.com 2001-03-02
## 2632 ben.asante@enron.com 2001-03-02
## 2633 ben.asante@enron.com 2001-03-02
## 2634 ben.asante@enron.com 2001-03-02
## 2635 ben.asante@enron.com 2001-03-02
## 2636 ben.asante@enron.com 2001-03-02
## 2637 ben.asante@enron.com 2001-03-02
## 2638 ben.asante@enron.com 2001-03-02
## 2639 ben.asante@enron.com 2001-03-02
## 2640 ben.asante@enron.com 2001-03-02
## 2641 ben.asante@enron.com 2001-03-02
## 2642 ben.asante@enron.com 2001-03-02
## 2643 ben.asante@enron.com 2001-03-02
## 2644 ben.asante@enron.com 2001-03-02
## 2645 ben.asante@enron.com 2001-03-02
## 2646 ben.asante@enron.com 2001-03-02
## 2647 ben.asante@enron.com 2001-03-02
## 2648 ben.asante@enron.com 2001-03-02
## 2649 ben.asante@enron.com 2001-03-02
## 2650 ben.asante@enron.com 2001-03-02
## 2651 ben.asante@enron.com 2001-03-02
## 2652 ben.asante@enron.com 2001-03-02
## 2653 ben.asante@enron.com 2001-03-02
## 2654 ben.asante@enron.com 2001-03-02
## 2655 ben.asante@enron.com 2001-03-02
## 2656 ben.asante@enron.com 2001-03-02
## 2657 ben.asante@enron.com 2001-03-02
## 2658 ben.asante@enron.com 2001-03-02
## 2659 ben.asante@enron.com 2001-03-02
## 2660 ben.asante@enron.com 2001-03-02
## 2661 rmoore@ameramex.com 2001-02-26
## 2662 rmoore@ameramex.com 2001-02-26
## 2663 rmoore@ameramex.com 2001-02-26
## 2664 rmoore@ameramex.com 2001-02-26
## 2665 rmoore@ameramex.com 2001-02-26
## 2666 rmoore@ameramex.com 2001-02-26
## 2667 rmoore@ameramex.com 2001-02-26
## 2668 cashel@whc.net 2001-02-26
## 2669 cashel@whc.net 2001-02-26
## 2670 cashel@whc.net 2001-02-26
## 2671 cashel@whc.net 2001-02-26
## 2672 cashel@whc.net 2001-02-26
## 2673 cashel@whc.net 2001-02-26
## 2674 cashel@whc.net 2001-02-26
## 2675 cashel@whc.net 2001-02-26
## 2676 cashel@whc.net 2001-02-26
## 2677 susan.scott@enron.com 2001-02-23
## 2678 susan.scott@enron.com 2001-02-23
## 2679 susan.scott@enron.com 2001-02-23
## 2680 darrell.schoolcraft@enron.com 2001-02-22
## 2681 darrell.schoolcraft@enron.com 2001-02-22
## 2682 darrell.schoolcraft@enron.com 2001-02-22
## 2683 darrell.schoolcraft@enron.com 2001-02-22
## 2684 darrell.schoolcraft@enron.com 2001-02-22
## 2685 jeffery.fawcett@enron.com 2001-01-24
## 2686 jeffery.fawcett@enron.com 2001-01-24
## 2687 jeffery.fawcett@enron.com 2001-01-24
## 2688 jeffery.fawcett@enron.com 2001-01-24
## 2689 jeffery.fawcett@enron.com 2001-01-24
## 2690 ronald.matthews@enron.com 2001-01-25
## 2691 ronald.matthews@enron.com 2001-01-25
## 2692 ronald.matthews@enron.com 2001-01-25
## 2693 ronald.matthews@enron.com 2001-01-25
## 2694 ronald.matthews@enron.com 2001-01-25
## 2695 ronald.matthews@enron.com 2001-01-25
## 2696 ronald.matthews@enron.com 2001-01-25
## 2697 ronald.matthews@enron.com 2001-01-25
## 2698 ronald.matthews@enron.com 2001-01-25
## 2699 ronald.matthews@enron.com 2001-01-25
## 2700 ronald.matthews@enron.com 2001-01-25
## 2701 ronald.matthews@enron.com 2001-01-25
## 2702 ronald.matthews@enron.com 2001-01-25
## 2703 ronald.matthews@enron.com 2001-01-25
## 2704 ronald.matthews@enron.com 2001-01-25
## 2705 jeffery.fawcett@enron.com 2001-01-25
## 2706 jeffery.fawcett@enron.com 2001-01-25
## 2707 jeffery.fawcett@enron.com 2001-01-25
## 2708 jeffery.fawcett@enron.com 2001-01-25
## 2709 jeffery.fawcett@enron.com 2001-01-25
## 2710 jeffery.fawcett@enron.com 2001-01-25
## 2711 jeffery.fawcett@enron.com 2001-01-25
## 2712 jeffery.fawcett@enron.com 2001-01-25
## 2713 jeffery.fawcett@enron.com 2001-01-25
## 2714 jeffery.fawcett@enron.com 2001-01-25
## 2715 jeffery.fawcett@enron.com 2001-01-25
## 2716 jeffery.fawcett@enron.com 2001-01-25
## 2717 jeffery.fawcett@enron.com 2001-01-25
## 2718 jeffery.fawcett@enron.com 2001-01-25
## 2719 james.centilli@enron.com 2001-01-30
## 2720 james.centilli@enron.com 2001-01-30
## 2721 james.centilli@enron.com 2001-01-30
## 2722 james.centilli@enron.com 2001-01-30
## 2723 james.centilli@enron.com 2001-01-30
## 2724 james.centilli@enron.com 2001-01-30
## 2725 james.centilli@enron.com 2001-01-30
## 2726 james.centilli@enron.com 2001-01-30
## 2727 james.centilli@enron.com 2001-01-30
## 2728 james.centilli@enron.com 2001-01-30
## 2729 james.centilli@enron.com 2001-01-30
## 2730 james.centilli@enron.com 2001-01-30
## 2731 james.centilli@enron.com 2001-01-30
## 2732 jeffery.fawcett@enron.com 2001-02-02
## 2733 jeffery.fawcett@enron.com 2001-02-02
## 2734 jeffery.fawcett@enron.com 2001-02-02
## 2735 jeffery.fawcett@enron.com 2001-02-02
## 2736 jeffery.fawcett@enron.com 2001-02-02
## 2737 jeffery.fawcett@enron.com 2001-02-02
## 2738 jeffery.fawcett@enron.com 2001-02-02
## 2739 jeffery.fawcett@enron.com 2001-02-02
## 2740 jeffery.fawcett@enron.com 2001-02-02
## 2741 jeffery.fawcett@enron.com 2001-02-02
## 2742 jeffery.fawcett@enron.com 2001-02-02
## 2743 jeffery.fawcett@enron.com 2001-02-02
## 2744 jeffery.fawcett@enron.com 2001-02-05
## 2745 jeffery.fawcett@enron.com 2001-02-05
## 2746 ben.asante@enron.com 2001-02-06
## 2747 ben.asante@enron.com 2001-02-06
## 2748 ben.asante@enron.com 2001-02-06
## 2749 ben.asante@enron.com 2001-02-06
## 2750 ben.asante@enron.com 2001-02-06
## 2751 ben.asante@enron.com 2001-02-06
## 2752 ben.asante@enron.com 2001-02-06
## 2753 ben.asante@enron.com 2001-02-06
## 2754 ben.asante@enron.com 2001-02-06
## 2755 ben.asante@enron.com 2001-02-06
## 2756 ben.asante@enron.com 2001-02-06
## 2757 ben.asante@enron.com 2001-02-06
## 2758 ben.asante@enron.com 2001-02-06
## 2759 ben.asante@enron.com 2001-02-06
## 2760 ben.asante@enron.com 2001-02-06
## 2761 ben.asante@enron.com 2001-02-06
## 2762 ben.asante@enron.com 2001-02-06
## 2763 ben.asante@enron.com 2001-02-06
## 2764 ben.asante@enron.com 2001-02-06
## 2765 ben.asante@enron.com 2001-02-06
## 2766 ben.asante@enron.com 2001-02-06
## 2767 ben.asante@enron.com 2001-02-06
## 2768 ben.asante@enron.com 2001-02-06
## 2769 ben.asante@enron.com 2001-02-06
## 2770 ben.asante@enron.com 2001-02-06
## 2771 ben.asante@enron.com 2001-02-06
## 2772 ben.asante@enron.com 2001-02-06
## 2773 ben.asante@enron.com 2001-02-06
## 2774 ben.asante@enron.com 2001-02-06
## 2775 ben.asante@enron.com 2001-02-06
## 2776 ben.asante@enron.com 2001-02-06
## 2777 ben.asante@enron.com 2001-02-06
## 2778 ben.asante@enron.com 2001-02-06
## 2779 ben.asante@enron.com 2001-02-06
## 2780 ben.asante@enron.com 2001-02-06
## 2781 ben.asante@enron.com 2001-02-06
## 2782 ben.asante@enron.com 2001-02-06
## 2783 james.centilli@enron.com 2001-02-14
## 2784 wayne.sartore@cnpl.enbridge.com 2001-11-02
## 2785 wayne.sartore@cnpl.enbridge.com 2001-11-02
## 2786 carries@tradefairgroup.com 2001-10-26
## 2787 carries@tradefairgroup.com 2001-10-26
## 2788 carries@tradefairgroup.com 2001-10-26
## 2789 carries@tradefairgroup.com 2001-10-26
## 2790 carries@tradefairgroup.com 2001-10-26
## 2791 carries@tradefairgroup.com 2001-10-26
## 2792 carries@tradefairgroup.com 2001-10-15
## 2793 carries@tradefairgroup.com 2001-10-03
## 2794 carries@tradefairgroup.com 2001-10-03
## 2795 carries@tradefairgroup.com 2001-10-03
## 2796 carries@tradefairgroup.com 2001-10-03
## 2797 carries@tradefairgroup.com 2001-10-03
## 2798 carries@tradefairgroup.com 2001-10-03
## 2799 carries@tradefairgroup.com 2001-10-03
## 2800 carries@tradefairgroup.com 2001-10-03
## 2801 carries@tradefairgroup.com 2001-10-03
## 2802 wdulle@amerenenergy.com 2001-10-04
## 2803 wdulle@amerenenergy.com 2001-10-04
## 2804 wdulle@amerenenergy.com 2001-10-04
## 2805 wdulle@amerenenergy.com 2001-09-18
## 2806 wdulle@amerenenergy.com 2001-09-18
## 2807 wdulle@amerenenergy.com 2001-09-18
## 2808 wdulle@amerenenergy.com 2001-09-18
## 2809 wdulle@amerenenergy.com 2001-08-30
## 2810 carries@tradefairgroup.com 2002-03-14
## 2811 carries@tradefairgroup.com 2002-03-14
## 2812 carries@tradefairgroup.com 2002-03-14
## 2813 craigm@tradefairgroup.com 2002-03-13
## 2814 ljnorwood@calpine.com 2002-02-27
## 2815 carries@tradefairgroup.com 2001-12-26
## 2816 ei_editor@platts.com 2001-11-27
## 2817 webmaster@cera.com 2001-11-27
## 2818 ksumey@ftenergy.com 2001-10-19
## 2819 ksumey@ftenergy.com 2001-10-19
## 2820 announcements.enron@enron.com 2001-11-27
## 2821 eric.gadd@enron.com 2001-11-27
## 2822 eric.gadd@enron.com 2001-11-27
## 2823 susan.wadle@enron.com 2001-11-20
## 2824 susan.wadle@enron.com 2001-11-20
## 2825 susan.wadle@enron.com 2001-11-20
## 2826 susan.wadle@enron.com 2001-11-20
## 2827 susan.wadle@enron.com 2001-11-20
## 2828 susan.wadle@enron.com 2001-11-20
## 2829 susan.wadle@enron.com 2001-11-20
## 2830 susan.wadle@enron.com 2001-11-20
## 2831 susan.wadle@enron.com 2001-11-20
## 2832 a..howard@enron.com 2001-11-19
## 2833 a..howard@enron.com 2001-11-19
## 2834 no.address@enron.com 2001-11-19
## 2835 eric.gadd@enron.com 2001-11-16
## 2836 ron.matthews@enron.com 2001-11-13
## 2837 ron.matthews@enron.com 2001-11-13
## 2838 ron.matthews@enron.com 2001-11-13
## 2839 ron.matthews@enron.com 2001-11-13
## 2840 eric.gadd@enron.com 2001-10-30
## 2841 eric.gadd@enron.com 2001-10-30
## 2842 eric.gadd@enron.com 2001-10-30
## 2843 eric.gadd@enron.com 2001-10-30
## 2844 eric.gadd@enron.com 2001-10-30
## 2845 eric.gadd@enron.com 2001-10-30
## 2846 eric.gadd@enron.com 2001-10-30
## 2847 eric.gadd@enron.com 2001-10-30
## 2848 eric.gadd@enron.com 2001-10-30
## 2849 blair.lichtenwalter@enron.com 2001-10-17
## 2850 blair.lichtenwalter@enron.com 2001-10-17
## 2851 kimberley.nelson@enron.com 2002-02-25
## 2852 sarah.haden@enron.com 2002-02-22
## 2853 announcements.egs@enron.com 2002-02-14
## 2854 kimberley.nelson@enron.com 2002-02-12
## 2855 kimberley.nelson@enron.com 2002-02-07
## 2856 tandj@worldpath.net 2002-03-24
## 2857 tandj@worldpath.net 2002-03-24
## 2858 tandj@worldpath.net 2002-03-24
## 2859 tandj@worldpath.net 2002-03-24
## 2860 tandj@worldpath.net 2002-03-24
## 2861 tandj@worldpath.net 2002-03-24
## 2862 tandj@worldpath.net 2002-03-24
## 2863 tandj@worldpath.net 2002-03-24
## 2864 tandj@worldpath.net 2002-03-24
## 2865 tandj@worldpath.net 2002-03-24
## 2866 tandj@worldpath.net 2002-03-24
## 2867 janet.butler@enron.com 2002-03-22
## 2868 janet.butler@enron.com 2002-03-22
## 2869 janet.butler@enron.com 2002-03-22
## 2870 janet.butler@enron.com 2002-03-22
## 2871 janet.butler@enron.com 2002-03-22
## 2872 nancy.bagot@dynegy.com 2002-03-22
## 2873 susan.wadle@enron.com 2002-03-19
## 2874 susan.wadle@enron.com 2002-03-19
## 2875 susan.wadle@enron.com 2002-03-19
## 2876 susan.wadle@enron.com 2002-03-19
## 2877 rick_krejci@kindermorgan.com 2002-03-14
## 2878 rick_krejci@kindermorgan.com 2002-03-14
## 2879 rick_krejci@kindermorgan.com 2002-03-14
## 2880 rick_krejci@kindermorgan.com 2002-03-14
## 2881 rick_krejci@kindermorgan.com 2002-03-14
## 2882 rick_krejci@kindermorgan.com 2002-03-14
## 2883 rick_krejci@kindermorgan.com 2002-03-14
## 2884 rick_krejci@kindermorgan.com 2002-03-14
## 2885 rick_krejci@kindermorgan.com 2002-03-14
## 2886 rick_krejci@kindermorgan.com 2002-03-14
## 2887 rick_krejci@kindermorgan.com 2002-03-14
## 2888 rick_krejci@kindermorgan.com 2002-03-14
## 2889 rick_krejci@kindermorgan.com 2002-03-14
## 2890 rick_krejci@kindermorgan.com 2002-03-14
## 2891 rick_krejci@kindermorgan.com 2002-03-14
## 2892 rick_krejci@kindermorgan.com 2002-03-14
## 2893 rick_krejci@kindermorgan.com 2002-03-14
## 2894 rick_krejci@kindermorgan.com 2002-03-14
## 2895 rick_krejci@kindermorgan.com 2002-03-14
## 2896 rick_krejci@kindermorgan.com 2002-03-14
## 2897 rick_krejci@kindermorgan.com 2002-03-14
## 2898 rick_krejci@kindermorgan.com 2002-03-14
## 2899 rick_krejci@kindermorgan.com 2002-03-14
## 2900 rick_krejci@kindermorgan.com 2002-03-14
## 2901 rick_krejci@kindermorgan.com 2002-03-14
## 2902 rick_krejci@kindermorgan.com 2002-03-14
## 2903 rick_krejci@kindermorgan.com 2002-03-14
## 2904 rick_krejci@kindermorgan.com 2002-03-14
## 2905 rick_krejci@kindermorgan.com 2002-03-14
## 2906 ron.matthews@enron.com 2002-03-08
## 2907 newgen@platts.com 2002-02-20
## 2908 bcarlton@elwoodbox.com 2002-02-18
## 2909 bcarlton@elwoodbox.com 2002-02-18
## 2910 bcarlton@elwoodbox.com 2002-02-18
## 2911 bcarlton@elwoodbox.com 2002-02-18
## 2912 bcarlton@elwoodbox.com 2002-02-18
## 2913 bcarlton@elwoodbox.com 2002-02-18
## 2914 bcarlton@elwoodbox.com 2002-02-18
## 2915 bcarlton@elwoodbox.com 2002-02-18
## 2916 bcarlton@elwoodbox.com 2002-02-18
## 2917 bcarlton@elwoodbox.com 2002-02-18
## 2918 bcarlton@elwoodbox.com 2002-02-18
## 2919 bcarlton@elwoodbox.com 2002-02-18
## 2920 bcarlton@elwoodbox.com 2002-02-18
## 2921 bcarlton@elwoodbox.com 2002-02-18
## 2922 bcarlton@elwoodbox.com 2002-02-18
## 2923 bcarlton@elwoodbox.com 2002-02-18
## 2924 bcarlton@elwoodbox.com 2002-02-18
## 2925 bcarlton@elwoodbox.com 2002-02-18
## 2926 bcarlton@elwoodbox.com 2002-02-18
## 2927 bcarlton@elwoodbox.com 2002-02-18
## 2928 bcarlton@elwoodbox.com 2002-02-18
## 2929 bcarlton@elwoodbox.com 2002-02-18
## 2930 announcements.enron@enron.com 2002-02-08
## 2931 pjohara@netzero.net 2001-12-11
## 2932 tina_leavy@msn.com 2001-11-19
## 2933 tina_leavy@msn.com 2001-11-19
## 2934 webmaster@cera.com 2001-11-19
## 2935 feedback@intcx.com 2001-11-19
## 2936 feedback@intcx.com 2001-11-19
## 2937 lorna.brennan@enron.com 2001-11-19
## 2938 lorna.brennan@enron.com 2001-11-19
## 2939 lorna.brennan@enron.com 2001-11-19
## 2940 lorna.brennan@enron.com 2001-11-19
## 2941 lorna.brennan@enron.com 2001-11-19
## 2942 lorna.brennan@enron.com 2001-11-19
## 2943 lorna.brennan@enron.com 2001-11-19
## 2944 lorna.brennan@enron.com 2001-11-19
## 2945 lorna.brennan@enron.com 2001-11-19
## 2946 lorna.brennan@enron.com 2001-11-19
## 2947 lorna.brennan@enron.com 2001-11-19
## 2948 lorna.brennan@enron.com 2001-11-19
## 2949 lorna.brennan@enron.com 2001-11-19
## 2950 lorna.brennan@enron.com 2001-11-19
## 2951 lorna.brennan@enron.com 2001-11-19
## 2952 lorna.brennan@enron.com 2001-11-19
## 2953 lorna.brennan@enron.com 2001-11-19
## 2954 lorna.brennan@enron.com 2001-11-19
## 2955 lorna.brennan@enron.com 2001-11-19
## 2956 lorna.brennan@enron.com 2001-11-19
## 2957 lorna.brennan@enron.com 2001-11-19
## 2958 lorna.brennan@enron.com 2001-11-19
## 2959 lorna.brennan@enron.com 2001-11-19
## 2960 lorna.brennan@enron.com 2001-11-19
## 2961 lorna.brennan@enron.com 2001-11-19
## 2962 lorna.brennan@enron.com 2001-11-19
## 2963 lorna.brennan@enron.com 2001-11-19
## 2964 lorna.brennan@enron.com 2001-11-19
## 2965 lorna.brennan@enron.com 2001-11-19
## 2966 lorna.brennan@enron.com 2001-11-19
## 2967 lorna.brennan@enron.com 2001-11-19
## 2968 lorna.brennan@enron.com 2001-11-19
## 2969 lorna.brennan@enron.com 2001-11-19
## 2970 lorna.brennan@enron.com 2001-11-19
## 2971 lorna.brennan@enron.com 2001-11-19
## 2972 lorna.brennan@enron.com 2001-11-19
## 2973 lorna.brennan@enron.com 2001-11-19
## 2974 lorna.brennan@enron.com 2001-11-19
## 2975 lorna.brennan@enron.com 2001-11-19
## 2976 lorna.brennan@enron.com 2001-11-19
## 2977 lorna.brennan@enron.com 2001-11-19
## 2978 lorna.brennan@enron.com 2001-11-19
## 2979 lorna.brennan@enron.com 2001-11-19
## 2980 lorna.brennan@enron.com 2001-11-19
## 2981 lorna.brennan@enron.com 2001-11-19
## 2982 lorna.brennan@enron.com 2001-11-19
## 2983 lorna.brennan@enron.com 2001-11-19
## 2984 lorna.brennan@enron.com 2001-11-19
## 2985 lorna.brennan@enron.com 2001-11-19
## 2986 lorna.brennan@enron.com 2001-11-19
## 2987 lorna.brennan@enron.com 2001-11-19
## 2988 lorna.brennan@enron.com 2001-11-19
## 2989 lorna.brennan@enron.com 2001-11-19
## 2990 lorna.brennan@enron.com 2001-11-19
## 2991 lorna.brennan@enron.com 2001-11-19
## 2992 lorna.brennan@enron.com 2001-11-19
## 2993 lorna.brennan@enron.com 2001-11-19
## 2994 lorna.brennan@enron.com 2001-11-19
## 2995 lorna.brennan@enron.com 2001-11-19
## 2996 lorna.brennan@enron.com 2001-11-19
## 2997 lorna.brennan@enron.com 2001-11-19
## 2998 lorna.brennan@enron.com 2001-11-19
## 2999 lorna.brennan@enron.com 2001-11-19
## 3000 lorna.brennan@enron.com 2001-11-19
## 3001 lorna.brennan@enron.com 2001-11-19
## 3002 lorna.brennan@enron.com 2001-11-19
## 3003 lorna.brennan@enron.com 2001-11-19
## 3004 lorna.brennan@enron.com 2001-11-19
## 3005 lorna.brennan@enron.com 2001-11-19
## 3006 lorna.brennan@enron.com 2001-11-19
## 3007 lillian.villarreal@enron.com 2001-11-19
## 3008 lillian.villarreal@enron.com 2001-11-19
## 3009 lorna.brennan@enron.com 2001-11-14
## 3010 lorna.brennan@enron.com 2001-11-14
## 3011 lorna.brennan@enron.com 2001-11-14
## 3012 lorna.brennan@enron.com 2001-11-14
## 3013 lorna.brennan@enron.com 2001-11-14
## 3014 lorna.brennan@enron.com 2001-11-14
## 3015 lorna.brennan@enron.com 2001-11-14
## 3016 lorna.brennan@enron.com 2001-11-14
## 3017 lorna.brennan@enron.com 2001-11-14
## 3018 lorna.brennan@enron.com 2001-11-14
## 3019 lorna.brennan@enron.com 2001-11-14
## 3020 lorna.brennan@enron.com 2001-11-14
## 3021 lorna.brennan@enron.com 2001-11-14
## 3022 lorna.brennan@enron.com 2001-11-14
## 3023 lorna.brennan@enron.com 2001-11-14
## 3024 lorna.brennan@enron.com 2001-11-14
## 3025 lorna.brennan@enron.com 2001-11-14
## 3026 lorna.brennan@enron.com 2001-11-14
## 3027 ei_editor@platts.com 2001-11-16
## 3028 center.ets@enron.com 2001-11-16
## 3029 newsletter_text@chron-news.com 2001-11-18
## 3030 no.address@enron.com 2001-11-19
## 3031 design.masterful.templates@mailman.enron.com 2001-11-16
## 3032 webmaster@cera.com 2001-11-16
## 3033 feedback@intcx.com 2001-11-16
## 3034 mansoor.abdmoulaie@enron.com 2001-04-10
## 3035 mansoor.abdmoulaie@enron.com 2001-04-10
## 3036 mansoor.abdmoulaie@enron.com 2001-04-10
## 3037 mansoor.abdmoulaie@enron.com 2001-04-10
## 3038 mansoor.abdmoulaie@enron.com 2001-04-10
## 3039 mansoor.abdmoulaie@enron.com 2001-04-10
## 3040 mansoor.abdmoulaie@enron.com 2001-04-10
## 3041 mansoor.abdmoulaie@enron.com 2001-04-10
## 3042 mansoor.abdmoulaie@enron.com 2001-03-27
## 3043 mansoor.abdmoulaie@enron.com 2001-03-27
## 3044 mansoor.abdmoulaie@enron.com 2001-03-27
## 3045 mansoor.abdmoulaie@enron.com 2001-03-27
## 3046 mansoor.abdmoulaie@enron.com 2001-03-27
## 3047 mansoor.abdmoulaie@enron.com 2001-03-27
## 3048 mansoor.abdmoulaie@enron.com 2001-02-22
## 3049 mansoor.abdmoulaie@enron.com 2001-02-22
## 3050 mansoor.abdmoulaie@enron.com 2001-02-22
## 3051 mansoor.abdmoulaie@enron.com 2001-02-22
## 3052 mansoor.abdmoulaie@enron.com 2001-02-22
## 3053 mansoor.abdmoulaie@enron.com 2001-02-22
## 3054 mansoor.abdmoulaie@enron.com 2001-02-22
## 3055 mansoor.abdmoulaie@enron.com 2001-02-22
## 3056 mansoor.abdmoulaie@enron.com 2001-02-22
## 3057 mansoor.abdmoulaie@enron.com 2001-02-22
## 3058 mansoor.abdmoulaie@enron.com 2001-02-22
## 3059 mansoor.abdmoulaie@enron.com 2001-02-22
## 3060 mansoor.abdmoulaie@enron.com 2001-02-22
## 3061 mansoor.abdmoulaie@enron.com 2001-02-22
## 3062 mansoor.abdmoulaie@enron.com 2001-02-22
## 3063 mansoor.abdmoulaie@enron.com 2001-02-22
## 3064 mansoor.abdmoulaie@enron.com 2001-02-22
## 3065 mansoor.abdmoulaie@enron.com 2001-02-22
## 3066 rich.jolly@enron.com 2001-02-23
## 3067 rich.jolly@enron.com 2001-02-23
## 3068 rich.jolly@enron.com 2001-02-23
## 3069 rich.jolly@enron.com 2001-02-23
## 3070 rich.jolly@enron.com 2001-02-23
## 3071 rich.jolly@enron.com 2001-02-23
## 3072 rich.jolly@enron.com 2001-02-23
## 3073 rich.jolly@enron.com 2001-02-23
## 3074 rich.jolly@enron.com 2001-02-23
## 3075 rich.jolly@enron.com 2001-02-23
## 3076 rich.jolly@enron.com 2001-02-23
## 3077 rich.jolly@enron.com 2001-01-29
## 3078 rich.jolly@enron.com 2001-01-29
## 3079 rich.jolly@enron.com 2001-01-29
## 3080 rich.jolly@enron.com 2001-01-29
## 3081 glen.hass@enron.com 2001-08-09
## 3082 glen.hass@enron.com 2001-08-09
## 3083 glen.hass@enron.com 2001-08-09
## 3084 glen.hass@enron.com 2001-08-09
## 3085 glen.hass@enron.com 2001-08-09
## 3086 glen.hass@enron.com 2001-08-09
## 3087 glen.hass@enron.com 2001-08-09
## 3088 glen.hass@enron.com 2001-08-09
## 3089 lorna.brennan@enron.com 2001-08-08
## 3090 lorna.brennan@enron.com 2001-08-08
## 3091 lorna.brennan@enron.com 2001-08-08
## 3092 lorna.brennan@enron.com 2001-08-08
## 3093 lorna.brennan@enron.com 2001-08-08
## 3094 lorna.brennan@enron.com 2001-08-08
## 3095 lorna.brennan@enron.com 2001-08-08
## 3096 lorna.brennan@enron.com 2001-08-08
## 3097 lorna.brennan@enron.com 2001-08-08
## 3098 igsinc@ix.netcom.com 2001-08-03
## 3099 igsinc@ix.netcom.com 2001-08-03
## 3100 lorna.brennan@enron.com 2001-08-03
## 3101 lorna.brennan@enron.com 2001-08-03
## 3102 lorna.brennan@enron.com 2001-08-03
## 3103 lorna.brennan@enron.com 2001-08-03
## 3104 lorna.brennan@enron.com 2001-08-03
## 3105 lorna.brennan@enron.com 2001-08-03
## 3106 lorna.brennan@enron.com 2001-08-03
## 3107 lorna.brennan@enron.com 2001-08-03
## 3108 lorna.brennan@enron.com 2001-08-03
## 3109 lorna.brennan@enron.com 2001-08-03
## 3110 lorna.brennan@enron.com 2001-08-03
## 3111 lorna.brennan@enron.com 2001-08-03
## 3112 lorna.brennan@enron.com 2001-08-03
## 3113 lorna.brennan@enron.com 2001-08-03
## 3114 lorna.brennan@enron.com 2001-08-03
## 3115 lorna.brennan@enron.com 2001-08-03
## 3116 lorna.brennan@enron.com 2001-08-03
## 3117 lorna.brennan@enron.com 2001-06-06
## 3118 lorna.brennan@enron.com 2001-06-06
## 3119 lorna.brennan@enron.com 2001-06-06
## 3120 lorna.brennan@enron.com 2001-06-06
## 3121 lorna.brennan@enron.com 2001-06-06
## 3122 lorna.brennan@enron.com 2001-06-06
## 3123 lorna.brennan@enron.com 2001-06-06
## 3124 lorna.brennan@enron.com 2001-06-06
## 3125 lorna.brennan@enron.com 2001-06-06
## 3126 lorna.brennan@enron.com 2001-06-06
## 3127 lorna.brennan@enron.com 2001-06-06
## 3128 lorna.brennan@enron.com 2001-06-06
## 3129 lorna.brennan@enron.com 2001-06-06
## 3130 lorna.brennan@enron.com 2001-06-06
## 3131 lorna.brennan@enron.com 2001-06-06
## 3132 lorna.brennan@enron.com 2001-06-06
## 3133 lorna.brennan@enron.com 2001-06-06
## 3134 jeffery.fawcett@enron.com 2001-06-04
## 3135 webmaster@cera.com 2001-11-27
## 3136 ei_editor@platts.com 2001-11-27
## 3137 geneva.davis@enron.com 2001-11-16
## 3138 geneva.davis@enron.com 2001-11-16
## 3139 susan.wadle@enron.com 2001-11-27
## 3140 susan.wadle@enron.com 2001-11-27
## 3141 susan.wadle@enron.com 2001-11-27
## 3142 susan.wadle@enron.com 2001-11-27
## 3143 susan.wadle@enron.com 2001-11-27
## 3144 susan.wadle@enron.com 2001-11-27
## 3145 susan.wadle@enron.com 2001-11-27
## 3146 susan.wadle@enron.com 2001-11-27
## 3147 susan.wadle@enron.com 2001-11-27
## 3148 susan.wadle@enron.com 2001-11-27
## 3149 lippmanc@aol.com 2001-11-27
## 3150 feedback@intcx.com 2001-11-27
## 3151 feedback@intcx.com 2001-11-27
## 3152 john.millar@enron.com 2001-05-24
## 3153 john.millar@enron.com 2001-05-24
## 3154 john.millar@enron.com 2001-05-24
## 3155 eric.faucheaux@enron.com 2001-04-09
## 3156 eric.faucheaux@enron.com 2001-04-09
## 3157 eric.faucheaux@enron.com 2001-04-09
## 3158 eric.faucheaux@enron.com 2001-04-09
## 3159 mansoor.abdmoulaie@enron.com 2001-04-03
## 3160 mansoor.abdmoulaie@enron.com 2001-04-03
## 3161 mansoor.abdmoulaie@enron.com 2001-04-03
## 3162 mansoor.abdmoulaie@enron.com 2001-04-03
## 3163 mansoor.abdmoulaie@enron.com 2001-04-03
## 3164 mansoor.abdmoulaie@enron.com 2001-04-03
## 3165 mansoor.abdmoulaie@enron.com 2001-04-03
## 3166 mansoor.abdmoulaie@enron.com 2001-04-03
## 3167 jeffery.fawcett@enron.com 2001-03-30
## 3168 jeffery.fawcett@enron.com 2001-03-30
## 3169 jeffery.fawcett@enron.com 2001-03-30
## 3170 jeffery.fawcett@enron.com 2001-03-30
## 3171 jeffery.fawcett@enron.com 2001-03-30
## 3172 jeffery.fawcett@enron.com 2001-03-30
## 3173 jeffery.fawcett@enron.com 2001-03-30
## 3174 jeffery.fawcett@enron.com 2001-03-30
## 3175 jeffery.fawcett@enron.com 2001-03-30
## 3176 jeffery.fawcett@enron.com 2001-03-30
## 3177 jeffery.fawcett@enron.com 2001-03-30
## 3178 arnie.bailey@enron.com 2001-03-09
## 3179 arnie.bailey@enron.com 2001-03-09
## 3180 arnie.bailey@enron.com 2001-03-09
## 3181 arnie.bailey@enron.com 2001-03-09
## 3182 arnie.bailey@enron.com 2001-03-09
## 3183 arnie.bailey@enron.com 2001-03-09
## 3184 arnie.bailey@enron.com 2001-03-09
## 3185 arnie.bailey@enron.com 2001-03-09
## 3186 arnie.bailey@enron.com 2001-03-09
## 3187 arnie.bailey@enron.com 2001-03-09
## 3188 arnie.bailey@enron.com 2001-03-09
## 3189 arnie.bailey@enron.com 2001-03-09
## 3190 arnie.bailey@enron.com 2001-03-09
## 3191 arnie.bailey@enron.com 2001-03-09
## 3192 arnie.bailey@enron.com 2001-03-09
## 3193 arnie.bailey@enron.com 2001-03-09
## 3194 arnie.bailey@enron.com 2001-03-09
## 3195 marc.pana@enron.com 2001-03-20
## 3196 marc.pana@enron.com 2001-03-20
## 3197 jeffery.fawcett@enron.com 2001-02-06
## 3198 jeffery.fawcett@enron.com 2001-02-06
## 3199 jeffery.fawcett@enron.com 2001-02-06
## 3200 jeffery.fawcett@enron.com 2001-02-06
## 3201 jeffery.fawcett@enron.com 2001-02-06
## 3202 jeffery.fawcett@enron.com 2001-02-06
## 3203 jeffery.fawcett@enron.com 2001-02-06
## 3204 gary.spraggins@enron.com 2001-01-26
## 3205 lorraine.lindberg@enron.com 2001-03-05
## 3206 lorraine.lindberg@enron.com 2001-03-07
## 3207 lorraine.lindberg@enron.com 2001-03-07
## 3208 lorraine.lindberg@enron.com 2001-03-07
## 3209 lorraine.lindberg@enron.com 2001-03-07
## 3210 lorraine.lindberg@enron.com 2001-03-07
## 3211 lorraine.lindberg@enron.com 2001-03-07
## 3212 lorraine.lindberg@enron.com 2001-03-07
## 3213 lorraine.lindberg@enron.com 2001-03-07
## 3214 lorraine.lindberg@enron.com 2001-03-07
## 3215 lorraine.lindberg@enron.com 2001-03-07
## 3216 lorraine.lindberg@enron.com 2001-03-07
## 3217 lorraine.lindberg@enron.com 2001-03-07
## 3218 lorraine.lindberg@enron.com 2001-03-07
## 3219 lorraine.lindberg@enron.com 2001-03-07
## 3220 lorraine.lindberg@enron.com 2001-03-07
## 3221 lorraine.lindberg@enron.com 2001-03-07
## 3222 perry.frazier@enron.com 2001-03-08
## 3223 perry.frazier@enron.com 2001-03-08
## 3224 perry.frazier@enron.com 2001-03-08
## 3225 perry.frazier@enron.com 2001-03-08
## 3226 perry.frazier@enron.com 2001-03-08
## 3227 perry.frazier@enron.com 2001-03-08
## 3228 perry.frazier@enron.com 2001-03-08
## 3229 perry.frazier@enron.com 2001-03-08
## 3230 perry.frazier@enron.com 2001-03-08
## 3231 perry.frazier@enron.com 2001-03-08
## 3232 perry.frazier@enron.com 2001-03-08
## 3233 perry.frazier@enron.com 2001-03-08
## 3234 perry.frazier@enron.com 2001-03-08
## 3235 perry.frazier@enron.com 2001-03-08
## 3236 perry.frazier@enron.com 2001-03-08
## 3237 perry.frazier@enron.com 2001-03-08
## 3238 perry.frazier@enron.com 2001-03-08
## 3239 lorraine.lindberg@enron.com 2001-03-08
## 3240 lorraine.lindberg@enron.com 2001-03-08
## 3241 lorraine.lindberg@enron.com 2001-03-08
## 3242 lorraine.lindberg@enron.com 2001-03-08
## 3243 lorraine.lindberg@enron.com 2001-03-08
## 3244 lorraine.lindberg@enron.com 2001-03-08
## 3245 lorraine.lindberg@enron.com 2001-03-08
## 3246 lorraine.lindberg@enron.com 2001-03-08
## 3247 lorraine.lindberg@enron.com 2001-03-08
## 3248 lorraine.lindberg@enron.com 2001-03-08
## 3249 lorraine.lindberg@enron.com 2001-03-08
## 3250 lorraine.lindberg@enron.com 2001-03-08
## 3251 lorraine.lindberg@enron.com 2001-03-08
## 3252 lorraine.lindberg@enron.com 2001-03-08
## 3253 lorraine.lindberg@enron.com 2001-03-08
## 3254 lorraine.lindberg@enron.com 2001-03-08
## 3255 lorraine.lindberg@enron.com 2001-03-08
## 3256 eric.faucheaux@enron.com 2001-04-04
## 3257 eric.faucheaux@enron.com 2001-04-04
## 3258 eric.faucheaux@enron.com 2001-04-04
## 3259 eric.faucheaux@enron.com 2001-04-04
## 3260 eric.faucheaux@enron.com 2001-04-04
## 3261 eric.faucheaux@enron.com 2001-04-04
## 3262 eric.faucheaux@enron.com 2001-04-04
## 3263 eric.faucheaux@enron.com 2001-04-04
## 3264 eric.faucheaux@enron.com 2001-04-04
## 3265 eric.faucheaux@enron.com 2001-04-04
## 3266 eric.faucheaux@enron.com 2001-04-04
## 3267 eric.faucheaux@enron.com 2001-04-04
## 3268 eric.faucheaux@enron.com 2001-04-04
## 3269 eric.faucheaux@enron.com 2001-04-04
## 3270 eric.faucheaux@enron.com 2001-04-04
## 3271 eric.faucheaux@enron.com 2001-04-04
## 3272 eric.faucheaux@enron.com 2001-04-04
## 3273 eric.faucheaux@enron.com 2001-04-04
## 3274 eric.faucheaux@enron.com 2001-04-04
## 3275 eric.faucheaux@enron.com 2001-04-04
## 3276 lorna.brennan@enron.com 2001-06-06
## 3277 lorna.brennan@enron.com 2001-06-06
## 3278 lorna.brennan@enron.com 2001-06-06
## 3279 lorna.brennan@enron.com 2001-06-06
## 3280 susan.wadle@enron.com 2001-11-27
## 3281 susan.wadle@enron.com 2001-11-27
## 3282 susan.wadle@enron.com 2001-11-27
## 3283 susan.wadle@enron.com 2001-11-27
## 3284 susan.wadle@enron.com 2001-11-27
## 3285 susan.wadle@enron.com 2001-11-27
## 3286 susan.wadle@enron.com 2001-11-27
## 3287 susan.wadle@enron.com 2001-11-27
## 3288 susan.wadle@enron.com 2001-11-27
## 3289 susan.wadle@enron.com 2001-11-27
## 3290 v.dickerson@enron.com 2001-11-27
## 3291 lorna.brennan@enron.com 2001-11-27
## 3292 lorna.brennan@enron.com 2001-11-27
## 3293 lorna.brennan@enron.com 2001-11-27
## 3294 lorna.brennan@enron.com 2001-11-27
## 3295 lorna.brennan@enron.com 2001-11-27
## 3296 lorna.brennan@enron.com 2001-11-27
## 3297 lorna.brennan@enron.com 2001-11-27
## 3298 lorna.brennan@enron.com 2001-11-27
## 3299 lorna.brennan@enron.com 2001-11-27
## 3300 lorna.brennan@enron.com 2001-11-27
## 3301 rick_krejci@kindermorgan.com 2001-11-27
## 3302 rick_krejci@kindermorgan.com 2001-11-27
## 3303 center.ets@enron.com 2001-11-27
## 3304 newgen@platts.com 2001-11-16
## 3305 mark.brand@enron.com 2001-11-27
## 3306 webmaster@cera.com 2001-11-26
## 3307 no.address@enron.com 2001-11-26
## 3308 ei_editor@platts.com 2001-11-26
## 3309 feedback@intcx.com 2001-11-26
## 3310 feedback@intcx.com 2001-11-26
## 3311 michelle.foust@enron.com 2001-11-26
## 3312 michelle.foust@enron.com 2001-11-26
## 3313 michelle.foust@enron.com 2001-11-26
## 3314 lippmanc@aol.com 2001-11-26
## 3315 morgan.gottsponer@enron.com 2001-11-19
## 3316 morgan.gottsponer@enron.com 2001-11-19
## 3317 morgan.gottsponer@enron.com 2001-11-19
## 3318 morgan.gottsponer@enron.com 2001-11-19
## 3319 morgan.gottsponer@enron.com 2001-11-19
## 3320 morgan.gottsponer@enron.com 2001-11-19
## 3321 morgan.gottsponer@enron.com 2001-11-19
## 3322 morgan.gottsponer@enron.com 2001-11-19
## 3323 morgan.gottsponer@enron.com 2001-11-19
## 3324 morgan.gottsponer@enron.com 2001-11-19
## 3325 morgan.gottsponer@enron.com 2001-11-19
## 3326 morgan.gottsponer@enron.com 2001-11-19
## 3327 morgan.gottsponer@enron.com 2001-11-19
## 3328 morgan.gottsponer@enron.com 2001-11-19
## 3329 morgan.gottsponer@enron.com 2001-11-19
## 3330 morgan.gottsponer@enron.com 2001-11-19
## 3331 morgan.gottsponer@enron.com 2001-11-19
## 3332 morgan.gottsponer@enron.com 2001-11-19
## 3333 morgan.gottsponer@enron.com 2001-11-19
## 3334 morgan.gottsponer@enron.com 2001-11-19
## 3335 morgan.gottsponer@enron.com 2001-11-19
## 3336 morgan.gottsponer@enron.com 2001-11-19
## 3337 morgan.gottsponer@enron.com 2001-11-19
## 3338 morgan.gottsponer@enron.com 2001-11-19
## 3339 morgan.gottsponer@enron.com 2001-11-19
## 3340 morgan.gottsponer@enron.com 2001-11-19
## 3341 morgan.gottsponer@enron.com 2001-11-19
## 3342 morgan.gottsponer@enron.com 2001-11-19
## 3343 morgan.gottsponer@enron.com 2001-11-19
## 3344 morgan.gottsponer@enron.com 2001-11-19
## 3345 morgan.gottsponer@enron.com 2001-11-19
## 3346 morgan.gottsponer@enron.com 2001-11-19
## 3347 morgan.gottsponer@enron.com 2001-11-19
## 3348 morgan.gottsponer@enron.com 2001-11-19
## 3349 morgan.gottsponer@enron.com 2001-11-19
## 3350 morgan.gottsponer@enron.com 2001-11-19
## 3351 morgan.gottsponer@enron.com 2001-11-19
## 3352 morgan.gottsponer@enron.com 2001-11-19
## 3353 morgan.gottsponer@enron.com 2001-11-19
## 3354 morgan.gottsponer@enron.com 2001-11-19
## 3355 morgan.gottsponer@enron.com 2001-11-19
## 3356 morgan.gottsponer@enron.com 2001-11-19
## 3357 morgan.gottsponer@enron.com 2001-11-19
## 3358 morgan.gottsponer@enron.com 2001-11-19
## 3359 morgan.gottsponer@enron.com 2001-11-19
## 3360 morgan.gottsponer@enron.com 2001-11-19
## 3361 morgan.gottsponer@enron.com 2001-11-19
## 3362 morgan.gottsponer@enron.com 2001-11-19
## 3363 morgan.gottsponer@enron.com 2001-11-19
## 3364 morgan.gottsponer@enron.com 2001-11-19
## 3365 morgan.gottsponer@enron.com 2001-11-19
## 3366 morgan.gottsponer@enron.com 2001-11-19
## 3367 morgan.gottsponer@enron.com 2001-11-19
## 3368 morgan.gottsponer@enron.com 2001-11-19
## 3369 no.address@enron.com 2001-11-14
## 3370 tina_leavy@msn.com 2001-11-23
## 3371 lillian.villarreal@enron.com 2001-11-20
## 3372 resources.human@enron.com 2001-11-25
## 3373 jfawcett@sempra.com 2001-11-26
## 3374 jfawcett@sempra.com 2001-11-26
## 3375 lippmanc@aol.com 2001-11-07
## 3376 lorna.brennan@enron.com 2001-11-02
## 3377 lorna.brennan@enron.com 2001-11-02
## 3378 lorna.brennan@enron.com 2001-11-02
## 3379 lorna.brennan@enron.com 2001-11-02
## 3380 lorna.brennan@enron.com 2001-11-02
## 3381 lorna.brennan@enron.com 2001-11-02
## 3382 lorna.brennan@enron.com 2001-11-02
## 3383 lorna.brennan@enron.com 2001-11-02
## 3384 lorna.brennan@enron.com 2001-11-02
## 3385 lorna.brennan@enron.com 2001-11-02
## 3386 rosemary.gracey@enron.com 2001-11-26
## 3387 rosemary.gracey@enron.com 2001-11-26
## 3388 rosemary.gracey@enron.com 2001-11-26
## 3389 rosemary.gracey@enron.com 2001-11-26
## 3390 rosemary.gracey@enron.com 2001-11-26
## 3391 rosemary.gracey@enron.com 2001-11-26
## 3392 rosemary.gracey@enron.com 2001-11-26
## 3393 rosemary.gracey@enron.com 2001-11-26
## 3394 rosemary.gracey@enron.com 2001-11-26
## 3395 rosemary.gracey@enron.com 2001-11-26
## 3396 rosemary.gracey@enron.com 2001-11-26
## 3397 rosemary.gracey@enron.com 2001-11-26
## 3398 rosemary.gracey@enron.com 2001-11-26
## 3399 rosemary.gracey@enron.com 2001-11-26
## 3400 rosemary.gracey@enron.com 2001-11-26
## 3401 rosemary.gracey@enron.com 2001-11-26
## 3402 rosemary.gracey@enron.com 2001-11-26
## 3403 rosemary.gracey@enron.com 2001-11-26
## 3404 rosemary.gracey@enron.com 2001-11-26
## 3405 rosemary.gracey@enron.com 2001-11-26
## 3406 rosemary.gracey@enron.com 2001-11-26
## 3407 rosemary.gracey@enron.com 2001-11-26
## 3408 rosemary.gracey@enron.com 2001-11-26
## 3409 rosemary.gracey@enron.com 2001-11-26
## 3410 rosemary.gracey@enron.com 2001-11-26
## 3411 rosemary.gracey@enron.com 2001-11-26
## 3412 rosemary.gracey@enron.com 2001-11-26
## 3413 rosemary.gracey@enron.com 2001-11-26
## 3414 rosemary.gracey@enron.com 2001-11-26
## 3415 rosemary.gracey@enron.com 2001-11-26
## 3416 rosemary.gracey@enron.com 2001-11-26
## 3417 rosemary.gracey@enron.com 2001-11-26
## 3418 rosemary.gracey@enron.com 2001-11-26
## 3419 rosemary.gracey@enron.com 2001-11-26
## 3420 rosemary.gracey@enron.com 2001-11-26
## 3421 rosemary.gracey@enron.com 2001-11-26
## 3422 rosemary.gracey@enron.com 2001-11-26
## 3423 rosemary.gracey@enron.com 2001-11-26
## 3424 rosemary.gracey@enron.com 2001-11-26
## 3425 rosemary.gracey@enron.com 2001-11-26
## 3426 rosemary.gracey@enron.com 2001-11-26
## 3427 rosemary.gracey@enron.com 2001-11-26
## 3428 rosemary.gracey@enron.com 2001-11-26
## 3429 rosemary.gracey@enron.com 2001-11-26
## 3430 rosemary.gracey@enron.com 2001-11-26
## 3431 rosemary.gracey@enron.com 2001-11-26
## 3432 rosemary.gracey@enron.com 2001-11-26
## 3433 rosemary.gracey@enron.com 2001-11-26
## 3434 rosemary.gracey@enron.com 2001-11-26
## 3435 rosemary.gracey@enron.com 2001-11-26
## 3436 rosemary.gracey@enron.com 2001-11-26
## 3437 rosemary.gracey@enron.com 2001-11-26
## 3438 rosemary.gracey@enron.com 2001-11-26
## 3439 rosemary.gracey@enron.com 2001-11-26
## 3440 rosemary.gracey@enron.com 2001-11-26
## 3441 rosemary.gracey@enron.com 2001-11-26
## 3442 rosemary.gracey@enron.com 2001-11-26
## 3443 rosemary.gracey@enron.com 2001-11-26
## 3444 rosemary.gracey@enron.com 2001-11-26
## 3445 rosemary.gracey@enron.com 2001-11-26
## 3446 rosemary.gracey@enron.com 2001-11-26
## 3447 rosemary.gracey@enron.com 2001-11-26
## 3448 center.ets@enron.com 2001-11-26
## 3449 newsletter_text@chron-news.com 2001-11-25
## 3450 tina_leavy@msn.com 2001-11-23
## 3451 webmaster@cera.com 2001-11-21
## 3452 ei_editor@platts.com 2001-11-21
## 3453 feedback@intcx.com 2001-11-21
## 3454 feedback@intcx.com 2001-11-21
## 3455 peitulsa@aol.com 2001-11-20
## 3456 peitulsa@aol.com 2001-11-20
## 3457 feedback@intcx.com 2001-11-20
## 3458 feedback@intcx.com 2001-11-20
## 3459 lippmanc@aol.com 2001-11-20
## 3460 no.address@enron.com 2001-11-19
## 3461 ei_editor@platts.com 2001-11-19
## 3462 no.address@enron.com 2001-11-19
## 3463 karen.brostad@enron.com 2002-03-08
## 3464 karen.brostad@enron.com 2002-03-08
## 3465 karen.brostad@enron.com 2002-03-08
## 3466 karen.brostad@enron.com 2002-03-08
## 3467 karen.brostad@enron.com 2002-03-08
## 3468 karen.brostad@enron.com 2002-03-08
## 3469 karen.brostad@enron.com 2002-03-08
## 3470 karen.brostad@enron.com 2002-03-08
## 3471 karen.brostad@enron.com 2002-03-08
## 3472 karen.brostad@enron.com 2002-03-08
## 3473 karen.brostad@enron.com 2002-03-08
## 3474 karen.brostad@enron.com 2002-03-08
## 3475 karen.brostad@enron.com 2002-03-08
## 3476 karen.brostad@enron.com 2002-03-08
## 3477 karen.brostad@enron.com 2002-03-08
## 3478 karen.brostad@enron.com 2002-03-08
## 3479 karen.brostad@enron.com 2002-03-08
## 3480 karen.brostad@enron.com 2002-03-08
## 3481 karen.brostad@enron.com 2002-03-08
## 3482 karen.brostad@enron.com 2002-03-08
## 3483 karen.brostad@enron.com 2002-03-08
## 3484 karen.brostad@enron.com 2002-03-08
## 3485 janet.butler@enron.com 2002-03-07
## 3486 grector@reliant.com 2002-03-07
## 3487 energybulletin@platts.com 2002-03-07
## 3488 morris.brassfield@enron.com 2002-03-06
## 3489 morris.brassfield@enron.com 2002-03-06
## 3490 morris.brassfield@enron.com 2002-03-06
## 3491 susan.wadle@enron.com 2002-03-06
## 3492 announcements.enron@enron.com 2002-03-06
## 3493 jfawcett@sempra.com 2002-03-06
## 3494 energybulletin@platts.com 2002-03-06
## 3495 lmfoust@aol.com 2002-03-05
## 3496 lmfoust@aol.com 2002-03-05
## 3497 lmfoust@aol.com 2002-03-05
## 3498 lmfoust@aol.com 2002-03-05
## 3499 lmfoust@aol.com 2002-03-05
## 3500 lmfoust@aol.com 2002-03-05
## 3501 lmfoust@aol.com 2002-03-05
## 3502 lmfoust@aol.com 2002-03-05
## 3503 lmfoust@aol.com 2002-03-05
## 3504 lmfoust@aol.com 2002-03-05
## 3505 lmfoust@aol.com 2002-03-05
## 3506 lmfoust@aol.com 2002-03-05
## 3507 lmfoust@aol.com 2002-03-05
## 3508 lmfoust@aol.com 2002-03-05
## 3509 lmfoust@aol.com 2002-03-05
## 3510 lmfoust@aol.com 2002-03-05
## 3511 lmfoust@aol.com 2002-03-05
## 3512 lmfoust@aol.com 2002-03-05
## 3513 lmfoust@aol.com 2002-03-05
## 3514 lmfoust@aol.com 2002-03-05
## 3515 lmfoust@aol.com 2002-03-05
## 3516 lmfoust@aol.com 2002-03-05
## 3517 lmfoust@aol.com 2002-03-05
## 3518 lmfoust@aol.com 2002-03-05
## 3519 lmfoust@aol.com 2002-03-05
## 3520 grector@reliant.com 2002-03-05
## 3521 grector@reliant.com 2002-03-05
## 3522 grector@reliant.com 2002-03-05
## 3523 grector@reliant.com 2002-03-05
## 3524 grector@reliant.com 2002-03-05
## 3525 grector@reliant.com 2002-03-05
## 3526 grector@reliant.com 2002-03-05
## 3527 grector@reliant.com 2002-03-05
## 3528 grector@reliant.com 2002-03-05
## 3529 grector@reliant.com 2002-03-05
## 3530 grector@reliant.com 2002-03-05
## 3531 grector@reliant.com 2002-03-05
## 3532 grector@reliant.com 2002-03-05
## 3533 grector@reliant.com 2002-03-05
## 3534 grector@reliant.com 2002-03-05
## 3535 grector@reliant.com 2002-03-05
## 3536 grector@reliant.com 2002-03-05
## 3537 grector@reliant.com 2002-03-05
## 3538 grector@reliant.com 2002-03-05
## 3539 grector@reliant.com 2002-03-05
## 3540 grector@reliant.com 2002-03-05
## 3541 grector@reliant.com 2002-03-05
## 3542 grector@reliant.com 2002-03-05
## 3543 grector@reliant.com 2002-03-05
## 3544 grector@reliant.com 2002-03-05
## 3545 grector@reliant.com 2002-03-05
## 3546 grector@reliant.com 2002-03-05
## 3547 grector@reliant.com 2002-03-05
## 3548 grector@reliant.com 2002-03-05
## 3549 grector@reliant.com 2002-03-05
## 3550 grector@reliant.com 2002-03-05
## 3551 grector@reliant.com 2002-03-05
## 3552 grector@reliant.com 2002-03-05
## 3553 grector@reliant.com 2002-03-05
## 3554 grector@reliant.com 2002-03-05
## 3555 grector@reliant.com 2002-03-05
## 3556 grector@reliant.com 2002-03-05
## 3557 julie.armstrong@enron.com 2002-03-05
## 3558 julie.armstrong@enron.com 2002-03-05
## 3559 julie.armstrong@enron.com 2002-03-05
## 3560 julie.armstrong@enron.com 2002-03-05
## 3561 julie.armstrong@enron.com 2002-03-05
## 3562 energybulletin@platts.com 2002-03-05
## 3563 tidwellgreer@bfusa.com 2002-03-04
## 3564 tidwellgreer@bfusa.com 2002-03-04
## 3565 tidwellgreer@bfusa.com 2002-03-04
## 3566 tidwellgreer@bfusa.com 2002-03-04
## 3567 tidwellgreer@bfusa.com 2002-03-04
## 3568 tidwellgreer@bfusa.com 2002-03-04
## 3569 tidwellgreer@bfusa.com 2002-03-04
## 3570 tidwellgreer@bfusa.com 2002-03-04
## 3571 tidwellgreer@bfusa.com 2002-03-04
## 3572 tidwellgreer@bfusa.com 2002-03-04
## 3573 tidwellgreer@bfusa.com 2002-03-04
## 3574 tidwellgreer@bfusa.com 2002-03-04
## 3575 tidwellgreer@bfusa.com 2002-03-04
## 3576 tidwellgreer@bfusa.com 2002-03-04
## 3577 tidwellgreer@bfusa.com 2002-03-04
## 3578 tidwellgreer@bfusa.com 2002-03-04
## 3579 tidwellgreer@bfusa.com 2002-03-04
## 3580 tidwellgreer@bfusa.com 2002-03-04
## 3581 tidwellgreer@bfusa.com 2002-03-04
## 3582 tidwellgreer@bfusa.com 2002-03-04
## 3583 tidwellgreer@bfusa.com 2002-03-04
## 3584 tidwellgreer@bfusa.com 2002-03-04
## 3585 tidwellgreer@bfusa.com 2002-03-04
## 3586 tidwellgreer@bfusa.com 2002-03-04
## 3587 tidwellgreer@bfusa.com 2002-03-04
## 3588 audrey.robertson@enron.com 2002-03-04
## 3589 audrey.robertson@enron.com 2002-03-04
## 3590 audrey.robertson@enron.com 2002-03-04
## 3591 audrey.robertson@enron.com 2002-03-04
## 3592 audrey.robertson@enron.com 2002-03-04
## 3593 mark.brand@enron.com 2002-03-04
## 3594 jokrejci@hotmail.com 2002-03-04
## 3595 jokrejci@hotmail.com 2002-03-04
## 3596 jokrejci@hotmail.com 2002-03-04
## 3597 rick_krejci@kindermorgan.com 2002-03-04
## 3598 rick_krejci@kindermorgan.com 2002-03-04
## 3599 rick_krejci@kindermorgan.com 2002-03-04
## 3600 rick_krejci@kindermorgan.com 2002-03-04
## 3601 rick_krejci@kindermorgan.com 2002-03-04
## 3602 rick_krejci@kindermorgan.com 2002-03-04
## 3603 rick_krejci@kindermorgan.com 2002-03-04
## 3604 rick_krejci@kindermorgan.com 2002-03-04
## 3605 rick_krejci@kindermorgan.com 2002-03-04
## 3606 energybulletin@platts.com 2002-03-04
## 3607 mark.mcconnell@enron.com 2002-03-04
## 3608 mark.mcconnell@enron.com 2002-03-04
## 3609 mark.mcconnell@enron.com 2002-03-04
## 3610 mark.mcconnell@enron.com 2002-03-04
## 3611 mark.mcconnell@enron.com 2002-03-04
## 3612 mark.mcconnell@enron.com 2002-03-04
## 3613 mark.mcconnell@enron.com 2002-03-04
## 3614 mark.mcconnell@enron.com 2002-03-04
## 3615 mark.mcconnell@enron.com 2002-03-04
## 3616 mark.mcconnell@enron.com 2002-03-04
## 3617 mark.mcconnell@enron.com 2002-03-04
## 3618 newsletter_text@chron-news.com 2002-03-03
## 3619 center.ets@enron.com 2002-03-01
## 3620 roger.westbrook@enron.com 2002-03-01
## 3621 roger.westbrook@enron.com 2002-03-01
## 3622 lmfoust@aol.com 2002-03-01
## 3623 lmfoust@aol.com 2002-03-01
## 3624 lmfoust@aol.com 2002-03-01
## 3625 lmfoust@aol.com 2002-03-01
## 3626 lmfoust@aol.com 2002-03-01
## 3627 lmfoust@aol.com 2002-03-01
## 3628 lmfoust@aol.com 2002-03-01
## 3629 communications@enron.com 2002-03-01
## 3630 energybulletin@platts.com 2002-03-01
## 3631 audrey.robertson@enron.com 2002-03-01
## 3632 audrey.robertson@enron.com 2002-03-01
## 3633 audrey.robertson@enron.com 2002-03-01
## 3634 audrey.robertson@enron.com 2002-03-01
## 3635 audrey.robertson@enron.com 2002-03-01
## 3636 audrey.robertson@enron.com 2002-03-01
## 3637 audrey.robertson@enron.com 2002-03-01
## 3638 audrey.robertson@enron.com 2002-03-01
## 3639 audrey.robertson@enron.com 2002-03-01
## 3640 paul.rehrig@harrisgroup.com 2002-02-28
## 3641 paul.rehrig@harrisgroup.com 2002-02-28
## 3642 paul.rehrig@harrisgroup.com 2002-02-28
## 3643 paul.rehrig@harrisgroup.com 2002-02-28
## 3644 audrey.robertson@enron.com 2002-02-28
## 3645 audrey.robertson@enron.com 2002-02-28
## 3646 audrey.robertson@enron.com 2002-02-28
## 3647 audrey.robertson@enron.com 2002-02-28
## 3648 audrey.robertson@enron.com 2002-02-28
## 3649 audrey.robertson@enron.com 2002-02-28
## 3650 audrey.robertson@enron.com 2002-02-28
## 3651 audrey.robertson@enron.com 2002-02-28
## 3652 audrey.robertson@enron.com 2002-02-28
## 3653 audrey.robertson@enron.com 2002-02-28
## 3654 energybulletin@platts.com 2002-02-28
## 3655 susan.wadle@enron.com 2002-02-28
## 3656 susan.wadle@enron.com 2002-02-28
## 3657 susan.wadle@enron.com 2002-02-28
## 3658 lmfoust@aol.com 2002-02-28
## 3659 lmfoust@aol.com 2002-02-28
## 3660 lmfoust@aol.com 2002-02-28
## 3661 lmfoust@aol.com 2002-02-28
## 3662 lmfoust@aol.com 2002-02-28
## 3663 lmfoust@aol.com 2002-02-28
## 3664 lmfoust@aol.com 2002-02-28
## 3665 lmfoust@aol.com 2002-02-28
## 3666 lmfoust@aol.com 2002-02-28
## 3667 lmfoust@aol.com 2002-02-28
## 3668 lmfoust@aol.com 2002-02-28
## 3669 lmfoust@aol.com 2002-02-28
## 3670 lmfoust@aol.com 2002-02-28
## 3671 lmfoust@aol.com 2002-02-28
## 3672 feedback@intcx.com 2002-02-27
## 3673 feedback@intcx.com 2002-02-27
## 3674 feedback@intcx.com 2002-02-27
## 3675 feedback@intcx.com 2002-02-27
## 3676 feedback@intcx.com 2002-02-27
## 3677 center.ets@enron.com 2002-02-27
## 3678 energybulletin@platts.com 2002-02-27
## 3679 eric.gadd@enron.com 2002-02-27
## 3680 susan.wadle@enron.com 2002-02-26
## 3681 tina_leavy@msn.com 2002-02-26
## 3682 tina_leavy@msn.com 2002-02-26
## 3683 tina_leavy@msn.com 2002-02-26
## 3684 tina_leavy@msn.com 2002-02-26
## 3685 tina_leavy@msn.com 2002-02-26
## 3686 tina_leavy@msn.com 2002-02-26
## 3687 tina_leavy@msn.com 2002-02-26
## 3688 tina_leavy@msn.com 2002-02-26
## 3689 tina_leavy@msn.com 2002-02-26
## 3690 tina_leavy@msn.com 2002-02-26
## 3691 tina_leavy@msn.com 2002-02-26
## 3692 tina_leavy@msn.com 2002-02-26
## 3693 tina_leavy@msn.com 2002-02-26
## 3694 tina_leavy@msn.com 2002-02-26
## 3695 tina_leavy@msn.com 2002-02-26
## 3696 tina_leavy@msn.com 2002-02-26
## 3697 tina_leavy@msn.com 2002-02-26
## 3698 tina_leavy@msn.com 2002-02-26
## 3699 tina_leavy@msn.com 2002-02-26
## 3700 tina_leavy@msn.com 2002-02-26
## 3701 tina_leavy@msn.com 2002-02-26
## 3702 tina_leavy@msn.com 2002-02-26
## 3703 tina_leavy@msn.com 2002-02-26
## 3704 tina_leavy@msn.com 2002-02-26
## 3705 tina_leavy@msn.com 2002-02-26
## 3706 tina_leavy@msn.com 2002-02-26
## 3707 tina_leavy@msn.com 2002-02-26
## 3708 tina_leavy@msn.com 2002-02-26
## 3709 tina_leavy@msn.com 2002-02-26
## 3710 tina_leavy@msn.com 2002-02-26
## 3711 tina_leavy@msn.com 2002-02-26
## 3712 tina_leavy@msn.com 2002-02-26
## 3713 tina_leavy@msn.com 2002-02-26
## 3714 tina_leavy@msn.com 2002-02-26
## 3715 tina_leavy@msn.com 2002-02-26
## 3716 tina_leavy@msn.com 2002-02-26
## 3717 tina_leavy@msn.com 2002-02-26
## 3718 tina_leavy@msn.com 2002-02-26
## 3719 tina_leavy@msn.com 2002-02-26
## 3720 tina_leavy@msn.com 2002-02-26
## 3721 tina_leavy@msn.com 2002-02-26
## 3722 tina_leavy@msn.com 2002-02-26
## 3723 tina_leavy@msn.com 2002-02-26
## 3724 tina_leavy@msn.com 2002-02-26
## 3725 tina_leavy@msn.com 2002-02-26
## 3726 tina_leavy@msn.com 2002-02-26
## 3727 tina_leavy@msn.com 2002-02-26
## 3728 tina_leavy@msn.com 2002-02-26
## 3729 tina_leavy@msn.com 2002-02-26
## 3730 tina_leavy@msn.com 2002-02-26
## 3731 tina_leavy@msn.com 2002-02-26
## 3732 tina_leavy@msn.com 2002-02-26
## 3733 tina_leavy@msn.com 2002-02-26
## 3734 tina_leavy@msn.com 2002-02-26
## 3735 tina_leavy@msn.com 2002-02-26
## 3736 tina_leavy@msn.com 2002-02-26
## 3737 tina_leavy@msn.com 2002-02-26
## 3738 tina_leavy@msn.com 2002-02-26
## 3739 tina_leavy@msn.com 2002-02-26
## 3740 tina_leavy@msn.com 2002-02-26
## 3741 tina_leavy@msn.com 2002-02-26
## 3742 tina_leavy@msn.com 2002-02-26
## 3743 tina_leavy@msn.com 2002-02-26
## 3744 tina_leavy@msn.com 2002-02-26
## 3745 tina_leavy@msn.com 2002-02-26
## 3746 tina_leavy@msn.com 2002-02-26
## 3747 tina_leavy@msn.com 2002-02-26
## 3748 tina_leavy@msn.com 2002-02-26
## 3749 tina_leavy@msn.com 2002-02-26
## 3750 tina_leavy@msn.com 2002-02-26
## 3751 tina_leavy@msn.com 2002-02-26
## 3752 tina_leavy@msn.com 2002-02-26
## 3753 tina_leavy@msn.com 2002-02-26
## 3754 tina_leavy@msn.com 2002-02-26
## 3755 tina_leavy@msn.com 2002-02-26
## 3756 tina_leavy@msn.com 2002-02-26
## 3757 tina_leavy@msn.com 2002-02-26
## 3758 tina_leavy@msn.com 2002-02-26
## 3759 tina_leavy@msn.com 2002-02-26
## 3760 tina_leavy@msn.com 2002-02-26
## 3761 tina_leavy@msn.com 2002-02-26
## 3762 tina_leavy@msn.com 2002-02-26
## 3763 tina_leavy@msn.com 2002-02-26
## 3764 tina_leavy@msn.com 2002-02-26
## 3765 tina_leavy@msn.com 2002-02-26
## 3766 tina_leavy@msn.com 2002-02-26
## 3767 tina_leavy@msn.com 2002-02-26
## 3768 tina_leavy@msn.com 2002-02-26
## 3769 tina_leavy@msn.com 2002-02-26
## 3770 tina_leavy@msn.com 2002-02-26
## 3771 tina_leavy@msn.com 2002-02-26
## 3772 tina_leavy@msn.com 2002-02-26
## 3773 tina_leavy@msn.com 2002-02-26
## 3774 tina_leavy@msn.com 2002-02-26
## 3775 tina_leavy@msn.com 2002-02-26
## 3776 tina_leavy@msn.com 2002-02-26
## 3777 tina_leavy@msn.com 2002-02-26
## 3778 tina_leavy@msn.com 2002-02-26
## 3779 tina_leavy@msn.com 2002-02-26
## 3780 tina_leavy@msn.com 2002-02-26
## 3781 tina_leavy@msn.com 2002-02-26
## 3782 tina_leavy@msn.com 2002-02-26
## 3783 tina_leavy@msn.com 2002-02-26
## 3784 tina_leavy@msn.com 2002-02-26
## 3785 tina_leavy@msn.com 2002-02-26
## 3786 tina_leavy@msn.com 2002-02-26
## 3787 tina_leavy@msn.com 2002-02-26
## 3788 tina_leavy@msn.com 2002-02-26
## 3789 tina_leavy@msn.com 2002-02-26
## 3790 tina_leavy@msn.com 2002-02-26
## 3791 tina_leavy@msn.com 2002-02-26
## 3792 tina_leavy@msn.com 2002-02-26
## 3793 tina_leavy@msn.com 2002-02-26
## 3794 tina_leavy@msn.com 2002-02-26
## 3795 tina_leavy@msn.com 2002-02-26
## 3796 tina_leavy@msn.com 2002-02-26
## 3797 tina_leavy@msn.com 2002-02-26
## 3798 tina_leavy@msn.com 2002-02-26
## 3799 tina_leavy@msn.com 2002-02-26
## 3800 tina_leavy@msn.com 2002-02-26
## 3801 tina_leavy@msn.com 2002-02-26
## 3802 tina_leavy@msn.com 2002-02-26
## 3803 tina_leavy@msn.com 2002-02-26
## 3804 tina_leavy@msn.com 2002-02-26
## 3805 tina_leavy@msn.com 2002-02-26
## 3806 tina_leavy@msn.com 2002-02-26
## 3807 tina_leavy@msn.com 2002-02-26
## 3808 tina_leavy@msn.com 2002-02-26
## 3809 tina_leavy@msn.com 2002-02-26
## 3810 tina_leavy@msn.com 2002-02-26
## 3811 tina_leavy@msn.com 2002-02-26
## 3812 tina_leavy@msn.com 2002-02-26
## 3813 tina_leavy@msn.com 2002-02-26
## 3814 tina_leavy@msn.com 2002-02-26
## 3815 tina_leavy@msn.com 2002-02-26
## 3816 tina_leavy@msn.com 2002-02-26
## 3817 tina_leavy@msn.com 2002-02-26
## 3818 tina_leavy@msn.com 2002-02-26
## 3819 tina_leavy@msn.com 2002-02-26
## 3820 tina_leavy@msn.com 2002-02-26
## 3821 tina_leavy@msn.com 2002-02-26
## 3822 tina_leavy@msn.com 2002-02-26
## 3823 tina_leavy@msn.com 2002-02-26
## 3824 tina_leavy@msn.com 2002-02-26
## 3825 tina_leavy@msn.com 2002-02-26
## 3826 tina_leavy@msn.com 2002-02-26
## 3827 tina_leavy@msn.com 2002-02-26
## 3828 tina_leavy@msn.com 2002-02-26
## 3829 tina_leavy@msn.com 2002-02-26
## 3830 tina_leavy@msn.com 2002-02-26
## 3831 tina_leavy@msn.com 2002-02-26
## 3832 tina_leavy@msn.com 2002-02-26
## 3833 tina_leavy@msn.com 2002-02-26
## 3834 tina_leavy@msn.com 2002-02-26
## 3835 tina_leavy@msn.com 2002-02-26
## 3836 tina_leavy@msn.com 2002-02-26
## 3837 tina_leavy@msn.com 2002-02-26
## 3838 tina_leavy@msn.com 2002-02-26
## 3839 tina_leavy@msn.com 2002-02-26
## 3840 tina_leavy@msn.com 2002-02-26
## 3841 tina_leavy@msn.com 2002-02-26
## 3842 tina_leavy@msn.com 2002-02-26
## 3843 tina_leavy@msn.com 2002-02-26
## 3844 tina_leavy@msn.com 2002-02-26
## 3845 tina_leavy@msn.com 2002-02-26
## 3846 tina_leavy@msn.com 2002-02-26
## 3847 tina_leavy@msn.com 2002-02-26
## 3848 tina_leavy@msn.com 2002-02-26
## 3849 tina_leavy@msn.com 2002-02-26
## 3850 tina_leavy@msn.com 2002-02-26
## 3851 tina_leavy@msn.com 2002-02-26
## 3852 tina_leavy@msn.com 2002-02-26
## 3853 tina_leavy@msn.com 2002-02-26
## 3854 tina_leavy@msn.com 2002-02-26
## 3855 tina_leavy@msn.com 2002-02-26
## 3856 tina_leavy@msn.com 2002-02-26
## 3857 tina_leavy@msn.com 2002-02-26
## 3858 tina_leavy@msn.com 2002-02-26
## 3859 tina_leavy@msn.com 2002-02-26
## 3860 tina_leavy@msn.com 2002-02-26
## 3861 tina_leavy@msn.com 2002-02-26
## 3862 tina_leavy@msn.com 2002-02-26
## 3863 tina_leavy@msn.com 2002-02-26
## 3864 tina_leavy@msn.com 2002-02-26
## 3865 tina_leavy@msn.com 2002-02-26
## 3866 tina_leavy@msn.com 2002-02-26
## 3867 tina_leavy@msn.com 2002-02-26
## 3868 tina_leavy@msn.com 2002-02-26
## 3869 tina_leavy@msn.com 2002-02-26
## 3870 tina_leavy@msn.com 2002-02-26
## 3871 tina_leavy@msn.com 2002-02-26
## 3872 tina_leavy@msn.com 2002-02-26
## 3873 tina_leavy@msn.com 2002-02-26
## 3874 tina_leavy@msn.com 2002-02-26
## 3875 tina_leavy@msn.com 2002-02-26
## 3876 tina_leavy@msn.com 2002-02-26
## 3877 tina_leavy@msn.com 2002-02-26
## 3878 tina_leavy@msn.com 2002-02-26
## 3879 tina_leavy@msn.com 2002-02-26
## 3880 tina_leavy@msn.com 2002-02-26
## 3881 tina_leavy@msn.com 2002-02-26
## 3882 tina_leavy@msn.com 2002-02-26
## 3883 tina_leavy@msn.com 2002-02-26
## 3884 tina_leavy@msn.com 2002-02-26
## 3885 tina_leavy@msn.com 2002-02-26
## 3886 tina_leavy@msn.com 2002-02-26
## 3887 tina_leavy@msn.com 2002-02-26
## 3888 tina_leavy@msn.com 2002-02-26
## 3889 tina_leavy@msn.com 2002-02-26
## 3890 tina_leavy@msn.com 2002-02-26
## 3891 tina_leavy@msn.com 2002-02-26
## 3892 announcements.egs@enron.com 2002-02-25
## 3893 energybulletin@platts.com 2002-02-26
## 3894 lmfoust@aol.com 2002-02-25
## 3895 lmfoust@aol.com 2002-02-25
## 3896 lmfoust@aol.com 2002-02-25
## 3897 lmfoust@aol.com 2002-02-25
## 3898 lmfoust@aol.com 2002-02-25
## 3899 lmfoust@aol.com 2002-02-25
## 3900 lmfoust@aol.com 2002-02-25
## 3901 lmfoust@aol.com 2002-02-25
## 3902 lmfoust@aol.com 2002-02-25
## 3903 lmfoust@aol.com 2002-02-25
## 3904 lmfoust@aol.com 2002-02-25
## 3905 lmfoust@aol.com 2002-02-25
## 3906 lmfoust@aol.com 2002-02-25
## 3907 lmfoust@aol.com 2002-02-25
## 3908 lmfoust@aol.com 2002-02-25
## 3909 lmfoust@aol.com 2002-02-25
## 3910 lmfoust@aol.com 2002-02-25
## 3911 lmfoust@aol.com 2002-02-25
## 3912 lmfoust@aol.com 2002-02-25
## 3913 lmfoust@aol.com 2002-02-25
## 3914 lmfoust@aol.com 2002-02-25
## 3915 newsletter_text@chron-news.com 2002-02-24
## 3916 announcements.enron@enron.com 2002-02-22
## 3917 energybulletin@platts.com 2002-02-22
## 3918 jfawcett@sempra.com 2002-02-23
## 3919 jfawcett@sempra.com 2002-02-23
## 3920 jfawcett@sempra.com 2002-02-23
## 3921 lmfoust@aol.com 2002-02-22
## 3922 lmfoust@aol.com 2002-02-22
## 3923 tina_leavy@msn.com 2002-02-24
## 3924 tina_leavy@msn.com 2002-02-24
## 3925 tina_leavy@msn.com 2002-02-24
## 3926 tina_leavy@msn.com 2002-02-24
## 3927 tina_leavy@msn.com 2002-02-24
## 3928 tina_leavy@msn.com 2002-02-24
## 3929 tina_leavy@msn.com 2002-02-24
## 3930 tina_leavy@msn.com 2002-02-24
## 3931 tina_leavy@msn.com 2002-02-24
## 3932 tina_leavy@msn.com 2002-02-24
## 3933 tina_leavy@msn.com 2002-02-24
## 3934 tina_leavy@msn.com 2002-02-24
## 3935 tina_leavy@msn.com 2002-02-24
## 3936 tina_leavy@msn.com 2002-02-24
## 3937 tina_leavy@msn.com 2002-02-24
## 3938 tina_leavy@msn.com 2002-02-24
## 3939 tina_leavy@msn.com 2002-02-24
## 3940 susan.wadle@enron.com 2002-02-21
## 3941 susan.wadle@enron.com 2002-02-21
## 3942 susan.wadle@enron.com 2002-02-21
## 3943 center.ets@enron.com 2002-02-21
## 3944 energybulletin@platts.com 2002-02-21
## 3945 susan.wadle@enron.com 2002-02-20
## 3946 susan.wadle@enron.com 2002-02-20
## 3947 susan.wadle@enron.com 2002-02-20
## 3948 susan.wadle@enron.com 2002-02-20
## 3949 management.ets@enron.com 2002-02-20
## 3950 management.ets@enron.com 2002-02-20
## 3951 management.ets@enron.com 2002-02-20
## 3952 management.ets@enron.com 2002-02-20
## 3953 management.ets@enron.com 2002-02-20
## 3954 management.ets@enron.com 2002-02-20
## 3955 management.ets@enron.com 2002-02-20
## 3956 management.ets@enron.com 2002-02-20
## 3957 management.ets@enron.com 2002-02-20
## 3958 management.ets@enron.com 2002-02-20
## 3959 management.ets@enron.com 2002-02-20
## 3960 management.ets@enron.com 2002-02-20
## 3961 management.ets@enron.com 2002-02-20
## 3962 management.ets@enron.com 2002-02-20
## 3963 management.ets@enron.com 2002-02-20
## 3964 management.ets@enron.com 2002-02-20
## 3965 management.ets@enron.com 2002-02-20
## 3966 management.ets@enron.com 2002-02-20
## 3967 management.ets@enron.com 2002-02-20
## 3968 management.ets@enron.com 2002-02-20
## 3969 management.ets@enron.com 2002-02-20
## 3970 management.ets@enron.com 2002-02-20
## 3971 management.ets@enron.com 2002-02-20
## 3972 management.ets@enron.com 2002-02-20
## 3973 management.ets@enron.com 2002-02-20
## 3974 management.ets@enron.com 2002-02-20
## 3975 management.ets@enron.com 2002-02-20
## 3976 management.ets@enron.com 2002-02-20
## 3977 management.ets@enron.com 2002-02-20
## 3978 management.ets@enron.com 2002-02-20
## 3979 management.ets@enron.com 2002-02-20
## 3980 management.ets@enron.com 2002-02-20
## 3981 management.ets@enron.com 2002-02-20
## 3982 management.ets@enron.com 2002-02-20
## 3983 management.ets@enron.com 2002-02-20
## 3984 management.ets@enron.com 2002-02-20
## 3985 management.ets@enron.com 2002-02-20
## 3986 management.ets@enron.com 2002-02-20
## 3987 management.ets@enron.com 2002-02-20
## 3988 management.ets@enron.com 2002-02-20
## 3989 management.ets@enron.com 2002-02-20
## 3990 management.ets@enron.com 2002-02-20
## 3991 management.ets@enron.com 2002-02-20
## 3992 management.ets@enron.com 2002-02-20
## 3993 management.ets@enron.com 2002-02-20
## 3994 management.ets@enron.com 2002-02-20
## 3995 management.ets@enron.com 2002-02-20
## 3996 management.ets@enron.com 2002-02-20
## 3997 management.ets@enron.com 2002-02-20
## 3998 management.ets@enron.com 2002-02-20
## 3999 management.ets@enron.com 2002-02-20
## 4000 management.ets@enron.com 2002-02-20
## 4001 management.ets@enron.com 2002-02-20
## 4002 management.ets@enron.com 2002-02-20
## 4003 management.ets@enron.com 2002-02-20
## 4004 management.ets@enron.com 2002-02-20
## 4005 management.ets@enron.com 2002-02-20
## 4006 management.ets@enron.com 2002-02-20
## 4007 management.ets@enron.com 2002-02-20
## 4008 management.ets@enron.com 2002-02-20
## 4009 management.ets@enron.com 2002-02-20
## 4010 management.ets@enron.com 2002-02-20
## 4011 management.ets@enron.com 2002-02-20
## 4012 management.ets@enron.com 2002-02-20
## 4013 management.ets@enron.com 2002-02-20
## 4014 management.ets@enron.com 2002-02-20
## 4015 management.ets@enron.com 2002-02-20
## 4016 management.ets@enron.com 2002-02-20
## 4017 houstonchronicle-ecrm@chron-news.com 2002-02-06
## 4018 frank.carriere@enron.com 2002-02-20
## 4019 frank.carriere@enron.com 2002-02-20
## 4020 frank.carriere@enron.com 2002-02-20
## 4021 mary.hubbard@enron.com 2002-02-20
## 4022 mary.hubbard@enron.com 2002-02-20
## 4023 susan.wadle@enron.com 2002-02-20
## 4024 susan.wadle@enron.com 2002-02-20
## 4025 energybulletin@platts.com 2002-02-20
## 4026 jean.mcfarland@enron.com 2002-02-15
## 4027 jean.mcfarland@enron.com 2002-02-15
## 4028 jean.mcfarland@enron.com 2002-02-15
## 4029 jean.mcfarland@enron.com 2002-02-15
## 4030 energybulletin@platts.com 2002-02-19
## 4031 lillian.villarreal@enron.com 2002-02-19
## 4032 lillian.villarreal@enron.com 2002-02-19
## 4033 lmfoust@aol.com 2002-02-17
## 4034 lmfoust@aol.com 2002-02-17
## 4035 lmfoust@aol.com 2002-02-17
## 4036 lmfoust@aol.com 2002-02-17
## 4037 lmfoust@aol.com 2002-02-17
## 4038 lmfoust@aol.com 2002-02-17
## 4039 lmfoust@aol.com 2002-02-17
## 4040 lmfoust@aol.com 2002-02-17
## 4041 lmfoust@aol.com 2002-02-17
## 4042 newsletter_text@chron-news.com 2002-02-17
## 4043 chairman.ets@enron.com 2002-02-15
## 4044 grector@reliant.com 2002-02-15
## 4045 susan.wadle@enron.com 2002-02-15
## 4046 exchange.administrator@enron.com 2002-02-15
## 4047 announcements.enron@enron.com 2002-02-15
## 4048 jean.mcfarland@enron.com 2002-02-12
## 4049 jean.mcfarland@enron.com 2002-02-12
## 4050 jean.mcfarland@enron.com 2002-02-12
## 4051 energybulletin@platts.com 2002-02-15
## 4052 julie.armstrong@enron.com 2002-02-13
## 4053 julie.armstrong@enron.com 2002-02-13
## 4054 julie.armstrong@enron.com 2002-02-13
## 4055 julie.armstrong@enron.com 2002-02-13
## 4056 lippmanc@aol.com 2002-02-14
## 4057 energybulletin@platts.com 2002-02-14
## 4058 susan.wadle@enron.com 2002-02-13
## 4059 susan.wadle@enron.com 2002-02-13
## 4060 susan.wadle@enron.com 2002-02-13
## 4061 susan.wadle@enron.com 2002-02-13
## 4062 energybulletin@platts.com 2002-02-13
## 4063 energybulletin@platts.com 2002-02-12
## 4064 announcements.enron@enron.com 2002-02-12
## 4065 rick_krejci@kindermorgan.com 2002-02-12
## 4066 rick_krejci@kindermorgan.com 2002-02-12
## 4067 rick_krejci@kindermorgan.com 2002-02-12
## 4068 rick_krejci@kindermorgan.com 2002-02-12
## 4069 lippmanc@aol.com 2002-02-08
## 4070 lippmanc@aol.com 2002-02-11
## 4071 energybulletin@platts.com 2002-02-11
## 4072 lmfoust@aol.com 2002-02-11
## 4073 lmfoust@aol.com 2002-02-11
## 4074 lmfoust@aol.com 2002-02-11
## 4075 lmfoust@aol.com 2002-02-11
## 4076 lmfoust@aol.com 2002-02-11
## 4077 lmfoust@aol.com 2002-02-11
## 4078 tina_leavy@msn.com 2002-02-09
## 4079 tina_leavy@msn.com 2002-02-09
## 4080 tina_leavy@msn.com 2002-02-09
## 4081 tina_leavy@msn.com 2002-02-11
## 4082 tina_leavy@msn.com 2002-02-11
## 4083 tina_leavy@msn.com 2002-02-11
## 4084 tina_leavy@msn.com 2002-02-11
## 4085 tina_leavy@msn.com 2002-02-11
## 4086 tina_leavy@msn.com 2002-02-11
## 4087 tina_leavy@msn.com 2002-02-11
## 4088 tina_leavy@msn.com 2002-02-11
## 4089 tina_leavy@msn.com 2002-02-11
## 4090 tina_leavy@msn.com 2002-02-11
## 4091 tina_leavy@msn.com 2002-02-11
## 4092 tina_leavy@msn.com 2002-02-11
## 4093 tina_leavy@msn.com 2002-02-11
## 4094 tina_leavy@msn.com 2002-02-11
## 4095 tina_leavy@msn.com 2002-02-11
## 4096 center.ets@enron.com 2002-02-08
## 4097 announcements.enron@enron.com 2002-02-08
## 4098 jfawcett@sempra.com 2002-02-08
## 4099 energybulletin@platts.com 2002-02-08
## 4100 energybulletin@platts.com 2002-02-07
## 4101 energybulletin@platts.com 2002-02-06
## 4102 announcements.ets@enron.com 2002-02-05
## 4103 announcements.ets@enron.com 2002-02-05
## 4104 susan.wadle@enron.com 2002-02-05
## 4105 susan.wadle@enron.com 2002-02-05
## 4106 susan.wadle@enron.com 2002-02-05
## 4107 susan.wadle@enron.com 2002-02-05
## 4108 energybulletin@platts.com 2002-02-05
## 4109 tina_leavy@msn.com 2002-02-04
## 4110 tina_leavy@msn.com 2002-02-04
## 4111 tina_leavy@msn.com 2002-02-04
## 4112 tina_leavy@msn.com 2002-02-04
## 4113 tina_leavy@msn.com 2002-02-04
## 4114 tina_leavy@msn.com 2002-02-04
## 4115 tina_leavy@msn.com 2002-02-04
## 4116 tina_leavy@msn.com 2002-02-04
## 4117 tina_leavy@msn.com 2002-02-04
## 4118 tina_leavy@msn.com 2002-02-04
## 4119 tina_leavy@msn.com 2002-02-04
## 4120 tina_leavy@msn.com 2002-02-04
## 4121 tina_leavy@msn.com 2002-02-04
## 4122 tina_leavy@msn.com 2002-02-04
## 4123 tina_leavy@msn.com 2002-02-04
## 4124 tina_leavy@msn.com 2002-02-04
## 4125 tina_leavy@msn.com 2002-02-04
## 4126 tina_leavy@msn.com 2002-02-04
## 4127 tina_leavy@msn.com 2002-02-04
## 4128 tina_leavy@msn.com 2002-02-04
## 4129 tina_leavy@msn.com 2002-02-04
## 4130 tina_leavy@msn.com 2002-02-04
## 4131 tina_leavy@msn.com 2002-02-04
## 4132 tina_leavy@msn.com 2002-02-04
## 4133 tina_leavy@msn.com 2002-02-04
## 4134 tina_leavy@msn.com 2002-02-04
## 4135 tina_leavy@msn.com 2002-02-04
## 4136 tina_leavy@msn.com 2002-02-04
## 4137 announcements.enron@enron.com 2002-02-04
## 4138 rfuturo@cera.com 2002-02-04
## 4139 energybulletin@platts.com 2002-02-04
## 4140 doug.cebryk@enron.com 2002-01-07
## 4141 doug.cebryk@enron.com 2002-01-07
## 4142 doug.cebryk@enron.com 2002-01-07
## 4143 doug.cebryk@enron.com 2002-01-07
## 4144 doug.cebryk@enron.com 2002-01-07
## 4145 doug.cebryk@enron.com 2002-01-07
## 4146 doug.cebryk@enron.com 2002-01-07
## 4147 doug.cebryk@enron.com 2002-01-07
## 4148 a..howard@enron.com 2002-02-01
## 4149 announcements.enron@enron.com 2002-01-30
## 4150 lmfoust@aol.com 2002-02-01
## 4151 lmfoust@aol.com 2002-02-01
## 4152 lmfoust@aol.com 2002-02-01
## 4153 lmfoust@aol.com 2002-02-01
## 4154 lmfoust@aol.com 2002-02-01
## 4155 lmfoust@aol.com 2002-02-01
## 4156 lmfoust@aol.com 2002-02-01
## 4157 lmfoust@aol.com 2002-02-01
## 4158 lmfoust@aol.com 2002-02-01
## 4159 lmfoust@aol.com 2002-02-01
## 4160 lmfoust@aol.com 2002-02-01
## 4161 lmfoust@aol.com 2002-02-01
## 4162 lmfoust@aol.com 2002-02-01
## 4163 lmfoust@aol.com 2002-02-01
## 4164 lmfoust@aol.com 2002-02-01
## 4165 lmfoust@aol.com 2002-02-01
## 4166 lmfoust@aol.com 2002-02-01
## 4167 newsletter_text@chron-news.com 2002-02-03
## 4168 announcements.ets@enron.com 2002-02-01
## 4169 center.ets@enron.com 2002-02-01
## 4170 announcements.enron@enron.com 2002-01-30
## 4171 center.ets@enron.com 2002-01-31
## 4172 a..howard@enron.com 2002-01-30
## 4173 a..howard@enron.com 2002-01-30
## 4174 energybulletin@platts.com 2002-01-31
## 4175 center.ets@enron.com 2002-01-30
## 4176 announcements.enron@enron.com 2002-01-30
## 4177 energybulletin@platts.com 2002-01-30
## 4178 tina_leavy@msn.com 2002-01-30
## 4179 tina_leavy@msn.com 2002-01-30
## 4180 tina_leavy@msn.com 2002-01-30
## 4181 tina_leavy@msn.com 2002-01-30
## 4182 tina_leavy@msn.com 2002-01-30
## 4183 tina_leavy@msn.com 2002-01-30
## 4184 tina_leavy@msn.com 2002-01-30
## 4185 tina_leavy@msn.com 2002-01-30
## 4186 tina_leavy@msn.com 2002-01-30
## 4187 tina_leavy@msn.com 2002-01-30
## 4188 tina_leavy@msn.com 2002-01-30
## 4189 tina_leavy@msn.com 2002-01-30
## 4190 tina_leavy@msn.com 2002-01-30
## 4191 tina_leavy@msn.com 2002-01-30
## 4192 tina_leavy@msn.com 2002-01-30
## 4193 tina_leavy@msn.com 2002-01-30
## 4194 tina_leavy@msn.com 2002-01-30
## 4195 tina_leavy@msn.com 2002-01-30
## 4196 tina_leavy@msn.com 2002-01-30
## 4197 tina_leavy@msn.com 2002-01-30
## 4198 tina_leavy@msn.com 2002-01-30
## 4199 tina_leavy@msn.com 2002-01-30
## 4200 tina_leavy@msn.com 2002-01-30
## 4201 tina_leavy@msn.com 2002-01-30
## 4202 tina_leavy@msn.com 2002-01-30
## 4203 tina_leavy@msn.com 2002-01-30
## 4204 tina_leavy@msn.com 2002-01-30
## 4205 tina_leavy@msn.com 2002-01-30
## 4206 tina_leavy@msn.com 2002-01-30
## 4207 tina_leavy@msn.com 2002-01-30
## 4208 tina_leavy@msn.com 2002-01-30
## 4209 tina_leavy@msn.com 2002-01-30
## 4210 tina_leavy@msn.com 2002-01-30
## 4211 tina_leavy@msn.com 2002-01-30
## 4212 tina_leavy@msn.com 2002-01-30
## 4213 tina_leavy@msn.com 2002-01-30
## 4214 tina_leavy@msn.com 2002-01-30
## 4215 tina_leavy@msn.com 2002-01-30
## 4216 tina_leavy@msn.com 2002-01-30
## 4217 tina_leavy@msn.com 2002-01-30
## 4218 tina_leavy@msn.com 2002-01-30
## 4219 tina_leavy@msn.com 2002-01-30
## 4220 tina_leavy@msn.com 2002-01-30
## 4221 tina_leavy@msn.com 2002-01-30
## 4222 tina_leavy@msn.com 2002-01-30
## 4223 tina_leavy@msn.com 2002-01-30
## 4224 tina_leavy@msn.com 2002-01-30
## 4225 tina_leavy@msn.com 2002-01-30
## 4226 tina_leavy@msn.com 2002-01-30
## 4227 tina_leavy@msn.com 2002-01-30
## 4228 tina_leavy@msn.com 2002-01-30
## 4229 tina_leavy@msn.com 2002-01-30
## 4230 tina_leavy@msn.com 2002-01-30
## 4231 tina_leavy@msn.com 2002-01-30
## 4232 tina_leavy@msn.com 2002-01-30
## 4233 tina_leavy@msn.com 2002-01-30
## 4234 tina_leavy@msn.com 2002-01-30
## 4235 tina_leavy@msn.com 2002-01-30
## 4236 tina_leavy@msn.com 2002-01-30
## 4237 tina_leavy@msn.com 2002-01-30
## 4238 tina_leavy@msn.com 2002-01-30
## 4239 tina_leavy@msn.com 2002-01-30
## 4240 tina_leavy@msn.com 2002-01-30
## 4241 tina_leavy@msn.com 2002-01-30
## 4242 tina_leavy@msn.com 2002-01-30
## 4243 tina_leavy@msn.com 2002-01-30
## 4244 tina_leavy@msn.com 2002-01-30
## 4245 tina_leavy@msn.com 2002-01-30
## 4246 tina_leavy@msn.com 2002-01-30
## 4247 tina_leavy@msn.com 2002-01-30
## 4248 tina_leavy@msn.com 2002-01-30
## 4249 tina_leavy@msn.com 2002-01-30
## 4250 tina_leavy@msn.com 2002-01-30
## 4251 tina_leavy@msn.com 2002-01-30
## 4252 tina_leavy@msn.com 2002-01-30
## 4253 tina_leavy@msn.com 2002-01-30
## 4254 tina_leavy@msn.com 2002-01-30
## 4255 tina_leavy@msn.com 2002-01-30
## 4256 tina_leavy@msn.com 2002-01-30
## 4257 tina_leavy@msn.com 2002-01-30
## 4258 tina_leavy@msn.com 2002-01-30
## 4259 tina_leavy@msn.com 2002-01-30
## 4260 tina_leavy@msn.com 2002-01-30
## 4261 tina_leavy@msn.com 2002-01-30
## 4262 tina_leavy@msn.com 2002-01-30
## 4263 tina_leavy@msn.com 2002-01-30
## 4264 tina_leavy@msn.com 2002-01-30
## 4265 tina_leavy@msn.com 2002-01-30
## 4266 tina_leavy@msn.com 2002-01-30
## 4267 tina_leavy@msn.com 2002-01-30
## 4268 tina_leavy@msn.com 2002-01-30
## 4269 tina_leavy@msn.com 2002-01-30
## 4270 tina_leavy@msn.com 2002-01-30
## 4271 tina_leavy@msn.com 2002-01-30
## 4272 tina_leavy@msn.com 2002-01-30
## 4273 tina_leavy@msn.com 2002-01-30
## 4274 tina_leavy@msn.com 2002-01-30
## 4275 tina_leavy@msn.com 2002-01-30
## 4276 tina_leavy@msn.com 2002-01-30
## 4277 tina_leavy@msn.com 2002-01-30
## 4278 tina_leavy@msn.com 2002-01-30
## 4279 tina_leavy@msn.com 2002-01-30
## 4280 tina_leavy@msn.com 2002-01-30
## 4281 tina_leavy@msn.com 2002-01-30
## 4282 tina_leavy@msn.com 2002-01-30
## 4283 tina_leavy@msn.com 2002-01-30
## 4284 tina_leavy@msn.com 2002-01-30
## 4285 tina_leavy@msn.com 2002-01-30
## 4286 tina_leavy@msn.com 2002-01-30
## 4287 tina_leavy@msn.com 2002-01-30
## 4288 tina_leavy@msn.com 2002-01-30
## 4289 tina_leavy@msn.com 2002-01-30
## 4290 tina_leavy@msn.com 2002-01-30
## 4291 tina_leavy@msn.com 2002-01-30
## 4292 tina_leavy@msn.com 2002-01-30
## 4293 tina_leavy@msn.com 2002-01-30
## 4294 tina_leavy@msn.com 2002-01-30
## 4295 tina_leavy@msn.com 2002-01-30
## 4296 tina_leavy@msn.com 2002-01-30
## 4297 tina_leavy@msn.com 2002-01-30
## 4298 tina_leavy@msn.com 2002-01-30
## 4299 tina_leavy@msn.com 2002-01-30
## 4300 tina_leavy@msn.com 2002-01-30
## 4301 tina_leavy@msn.com 2002-01-30
## 4302 tina_leavy@msn.com 2002-01-30
## 4303 tina_leavy@msn.com 2002-01-30
## 4304 tina_leavy@msn.com 2002-01-30
## 4305 tina_leavy@msn.com 2002-01-30
## 4306 tina_leavy@msn.com 2002-01-30
## 4307 tina_leavy@msn.com 2002-01-30
## 4308 tina_leavy@msn.com 2002-01-30
## 4309 tina_leavy@msn.com 2002-01-30
## 4310 kimberley.nelson@enron.com 2002-01-29
## 4311 energybulletin@platts.com 2002-01-29
## 4312 announcements.enron@enron.com 2002-01-25
## 4313 central.communication@enron.com 2002-01-25
## 4314 newsletter_text@chron-news.com 2002-01-27
## 4315 central.communication@enron.com 2002-01-25
## 4316 tina_leavy@msn.com 2002-01-25
## 4317 tina_leavy@msn.com 2002-01-25
## 4318 tina_leavy@msn.com 2002-01-25
## 4319 tina_leavy@msn.com 2002-01-25
## 4320 tina_leavy@msn.com 2002-01-25
## 4321 tina_leavy@msn.com 2002-01-25
## 4322 tina_leavy@msn.com 2002-01-25
## 4323 tina_leavy@msn.com 2002-01-25
## 4324 tina_leavy@msn.com 2002-01-25
## 4325 tina_leavy@msn.com 2002-01-25
## 4326 tina_leavy@msn.com 2002-01-25
## 4327 tina_leavy@msn.com 2002-01-25
## 4328 tina_leavy@msn.com 2002-01-25
## 4329 tina_leavy@msn.com 2002-01-25
## 4330 tina_leavy@msn.com 2002-01-25
## 4331 tina_leavy@msn.com 2002-01-25
## 4332 tina_leavy@msn.com 2002-01-25
## 4333 tina_leavy@msn.com 2002-01-25
## 4334 tina_leavy@msn.com 2002-01-25
## 4335 tina_leavy@msn.com 2002-01-25
## 4336 tina_leavy@msn.com 2002-01-25
## 4337 tina_leavy@msn.com 2002-01-25
## 4338 tina_leavy@msn.com 2002-01-25
## 4339 tina_leavy@msn.com 2002-01-25
## 4340 tina_leavy@msn.com 2002-01-25
## 4341 tina_leavy@msn.com 2002-01-25
## 4342 tina_leavy@msn.com 2002-01-25
## 4343 tina_leavy@msn.com 2002-01-25
## 4344 tina_leavy@msn.com 2002-01-25
## 4345 tina_leavy@msn.com 2002-01-25
## 4346 tina_leavy@msn.com 2002-01-25
## 4347 tina_leavy@msn.com 2002-01-25
## 4348 tina_leavy@msn.com 2002-01-25
## 4349 tina_leavy@msn.com 2002-01-25
## 4350 tina_leavy@msn.com 2002-01-25
## 4351 tina_leavy@msn.com 2002-01-25
## 4352 tina_leavy@msn.com 2002-01-25
## 4353 tina_leavy@msn.com 2002-01-25
## 4354 tina_leavy@msn.com 2002-01-25
## 4355 tina_leavy@msn.com 2002-01-25
## 4356 tina_leavy@msn.com 2002-01-25
## 4357 tina_leavy@msn.com 2002-01-25
## 4358 tina_leavy@msn.com 2002-01-25
## 4359 tina_leavy@msn.com 2002-01-25
## 4360 tina_leavy@msn.com 2002-01-25
## 4361 tina_leavy@msn.com 2002-01-25
## 4362 tina_leavy@msn.com 2002-01-25
## 4363 tina_leavy@msn.com 2002-01-25
## 4364 tina_leavy@msn.com 2002-01-25
## 4365 tina_leavy@msn.com 2002-01-25
## 4366 tina_leavy@msn.com 2002-01-25
## 4367 tina_leavy@msn.com 2002-01-25
## 4368 tina_leavy@msn.com 2002-01-25
## 4369 tina_leavy@msn.com 2002-01-25
## 4370 tina_leavy@msn.com 2002-01-25
## 4371 tina_leavy@msn.com 2002-01-25
## 4372 tina_leavy@msn.com 2002-01-25
## 4373 tina_leavy@msn.com 2002-01-25
## 4374 tina_leavy@msn.com 2002-01-25
## 4375 tina_leavy@msn.com 2002-01-25
## 4376 tina_leavy@msn.com 2002-01-25
## 4377 tina_leavy@msn.com 2002-01-25
## 4378 tina_leavy@msn.com 2002-01-25
## 4379 tina_leavy@msn.com 2002-01-25
## 4380 tina_leavy@msn.com 2002-01-25
## 4381 tina_leavy@msn.com 2002-01-25
## 4382 tina_leavy@msn.com 2002-01-25
## 4383 tina_leavy@msn.com 2002-01-25
## 4384 tina_leavy@msn.com 2002-01-25
## 4385 tina_leavy@msn.com 2002-01-25
## 4386 tina_leavy@msn.com 2002-01-25
## 4387 tina_leavy@msn.com 2002-01-25
## 4388 tina_leavy@msn.com 2002-01-25
## 4389 tina_leavy@msn.com 2002-01-25
## 4390 tina_leavy@msn.com 2002-01-25
## 4391 center.ets@enron.com 2002-01-25
## 4392 energybulletin@platts.com 2002-01-25
## 4393 center.ets@enron.com 2002-01-24
## 4394 john.kiani-aslani@enron.com 2001-07-25
## 4395 john.kiani-aslani@enron.com 2001-07-25
## 4396 john.kiani-aslani@enron.com 2001-07-25
## 4397 john.kiani-aslani@enron.com 2001-07-25
## 4398 john.kiani-aslani@enron.com 2001-07-25
## 4399 john.kiani-aslani@enron.com 2001-07-25
## 4400 john.kiani-aslani@enron.com 2001-07-25
## 4401 john.kiani-aslani@enron.com 2001-07-25
## 4402 jeff.nielsen@enron.com 2001-07-27
## 4403 jeff.nielsen@enron.com 2001-07-27
## 4404 jeff.nielsen@enron.com 2001-07-27
## 4405 jeff.nielsen@enron.com 2001-07-27
## 4406 eric.gadd@enron.com 2002-01-24
## 4407 eric.gadd@enron.com 2002-01-24
## 4408 energybulletin@platts.com 2002-01-24
## 4409 newgen@platts.com 2002-01-23
## 4410 announcements.enron@enron.com 2002-01-23
## 4411 no.address@enron.com 2002-01-23
## 4412 katrina_sumey@platts.com 2001-12-19
## 4413 katrina_sumey@platts.com 2001-12-19
## 4414 lmfoust@aol.com 2002-01-23
## 4415 energybulletin@platts.com 2002-01-23
## 4416 peitulsa@aol.com 2002-01-17
## 4417 peitulsa@aol.com 2002-01-17
## 4418 susan.wadle@enron.com 2002-01-22
## 4419 susan.wadle@enron.com 2002-01-22
## 4420 susan.wadle@enron.com 2002-01-22
## 4421 susan.wadle@enron.com 2002-01-22
## 4422 susan.wadle@enron.com 2002-01-22
## 4423 audrey.robertson@enron.com 2002-01-22
## 4424 audrey.robertson@enron.com 2002-01-22
## 4425 audrey.robertson@enron.com 2002-01-22
## 4426 audrey.robertson@enron.com 2002-01-22
## 4427 julie.armstrong@enron.com 2002-01-22
## 4428 julie.armstrong@enron.com 2002-01-22
## 4429 julie.armstrong@enron.com 2002-01-22
## 4430 susan.wadle@enron.com 2002-01-22
## 4431 susan.wadle@enron.com 2002-01-22
## 4432 susan.wadle@enron.com 2002-01-22
## 4433 rosemary.gracey@enron.com 2002-01-22
## 4434 rosemary.gracey@enron.com 2002-01-22
## 4435 rosemary.gracey@enron.com 2002-01-22
## 4436 rosemary.gracey@enron.com 2002-01-22
## 4437 rosemary.gracey@enron.com 2002-01-22
## 4438 rosemary.gracey@enron.com 2002-01-22
## 4439 rosemary.gracey@enron.com 2002-01-22
## 4440 rosemary.gracey@enron.com 2002-01-22
## 4441 rosemary.gracey@enron.com 2002-01-22
## 4442 rosemary.gracey@enron.com 2002-01-22
## 4443 rosemary.gracey@enron.com 2002-01-22
## 4444 rosemary.gracey@enron.com 2002-01-22
## 4445 rosemary.gracey@enron.com 2002-01-22
## 4446 rosemary.gracey@enron.com 2002-01-22
## 4447 rosemary.gracey@enron.com 2002-01-22
## 4448 rosemary.gracey@enron.com 2002-01-22
## 4449 rosemary.gracey@enron.com 2002-01-22
## 4450 rosemary.gracey@enron.com 2002-01-22
## 4451 rosemary.gracey@enron.com 2002-01-22
## 4452 rosemary.gracey@enron.com 2002-01-22
## 4453 rosemary.gracey@enron.com 2002-01-22
## 4454 rosemary.gracey@enron.com 2002-01-22
## 4455 rosemary.gracey@enron.com 2002-01-22
## 4456 rosemary.gracey@enron.com 2002-01-22
## 4457 rosemary.gracey@enron.com 2002-01-22
## 4458 rosemary.gracey@enron.com 2002-01-22
## 4459 rosemary.gracey@enron.com 2002-01-22
## 4460 rosemary.gracey@enron.com 2002-01-22
## 4461 rosemary.gracey@enron.com 2002-01-22
## 4462 rosemary.gracey@enron.com 2002-01-22
## 4463 rosemary.gracey@enron.com 2002-01-22
## 4464 rosemary.gracey@enron.com 2002-01-22
## 4465 rosemary.gracey@enron.com 2002-01-22
## 4466 rosemary.gracey@enron.com 2002-01-22
## 4467 rosemary.gracey@enron.com 2002-01-22
## 4468 rosemary.gracey@enron.com 2002-01-22
## 4469 rosemary.gracey@enron.com 2002-01-22
## 4470 rosemary.gracey@enron.com 2002-01-22
## 4471 rosemary.gracey@enron.com 2002-01-22
## 4472 rosemary.gracey@enron.com 2002-01-22
## 4473 rosemary.gracey@enron.com 2002-01-22
## 4474 rosemary.gracey@enron.com 2002-01-22
## 4475 rosemary.gracey@enron.com 2002-01-22
## 4476 rosemary.gracey@enron.com 2002-01-22
## 4477 rosemary.gracey@enron.com 2002-01-22
## 4478 rosemary.gracey@enron.com 2002-01-22
## 4479 rosemary.gracey@enron.com 2002-01-22
## 4480 rosemary.gracey@enron.com 2002-01-22
## 4481 rosemary.gracey@enron.com 2002-01-22
## 4482 rosemary.gracey@enron.com 2002-01-22
## 4483 rosemary.gracey@enron.com 2002-01-22
## 4484 rosemary.gracey@enron.com 2002-01-22
## 4485 rosemary.gracey@enron.com 2002-01-22
## 4486 rosemary.gracey@enron.com 2002-01-22
## 4487 rosemary.gracey@enron.com 2002-01-22
## 4488 rosemary.gracey@enron.com 2002-01-22
## 4489 rosemary.gracey@enron.com 2002-01-22
## 4490 rosemary.gracey@enron.com 2002-01-22
## 4491 rosemary.gracey@enron.com 2002-01-22
## 4492 rosemary.gracey@enron.com 2002-01-22
## 4493 rosemary.gracey@enron.com 2002-01-22
## 4494 rosemary.gracey@enron.com 2002-01-22
## 4495 rosemary.gracey@enron.com 2002-01-22
## 4496 rosemary.gracey@enron.com 2002-01-22
## 4497 rosemary.gracey@enron.com 2002-01-22
## 4498 eric.gadd@enron.com 2002-01-18
## 4499 susan.wadle@enron.com 2002-01-18
## 4500 steveswerd@aol.com 2002-01-22
## 4501 steveswerd@aol.com 2002-01-22
## 4502 steveswerd@aol.com 2002-01-22
## 4503 steveswerd@aol.com 2002-01-22
## 4504 steveswerd@aol.com 2002-01-22
## 4505 steveswerd@aol.com 2002-01-22
## 4506 steveswerd@aol.com 2002-01-22
## 4507 steveswerd@aol.com 2002-01-22
## 4508 steveswerd@aol.com 2002-01-22
## 4509 steveswerd@aol.com 2002-01-22
## 4510 steveswerd@aol.com 2002-01-22
## 4511 steveswerd@aol.com 2002-01-22
## 4512 steveswerd@aol.com 2002-01-22
## 4513 steveswerd@aol.com 2002-01-22
## 4514 steveswerd@aol.com 2002-01-22
## 4515 steveswerd@aol.com 2002-01-22
## 4516 steveswerd@aol.com 2002-01-22
## 4517 steveswerd@aol.com 2002-01-22
## 4518 steveswerd@aol.com 2002-01-22
## 4519 steveswerd@aol.com 2002-01-22
## 4520 steveswerd@aol.com 2002-01-22
## 4521 steveswerd@aol.com 2002-01-22
## 4522 steveswerd@aol.com 2002-01-22
## 4523 steveswerd@aol.com 2002-01-22
## 4524 lippmanc@aol.com 2002-01-22
## 4525 lmfoust@aol.com 2002-01-19
## 4526 lmfoust@aol.com 2002-01-19
## 4527 lmfoust@aol.com 2002-01-19
## 4528 lmfoust@aol.com 2002-01-19
## 4529 lmfoust@aol.com 2002-01-19
## 4530 lmfoust@aol.com 2002-01-19
## 4531 lmfoust@aol.com 2002-01-19
## 4532 lmfoust@aol.com 2002-01-19
## 4533 lmfoust@aol.com 2002-01-19
## 4534 lmfoust@aol.com 2002-01-19
## 4535 energybulletin@platts.com 2002-01-18
## 4536 tina_leavy@msn.com 2002-01-18
## 4537 tina_leavy@msn.com 2002-01-18
## 4538 tina_leavy@msn.com 2002-01-18
## 4539 lillian.villarreal@enron.com 2002-01-18
## 4540 lillian.villarreal@enron.com 2002-01-18
## 4541 lmfoust@aol.com 2002-01-18
## 4542 lmfoust@aol.com 2002-01-18
## 4543 lmfoust@aol.com 2002-01-18
## 4544 lmfoust@aol.com 2002-01-18
## 4545 lmfoust@aol.com 2002-01-18
## 4546 lmfoust@aol.com 2002-01-18
## 4547 announcements.enron@enron.com 2002-01-18
## 4548 jfawcett@sempra.com 2002-01-16
## 4549 jfawcett@sempra.com 2002-01-16
## 4550 jfawcett@sempra.com 2002-01-16
## 4551 jfawcett@sempra.com 2002-01-16
## 4552 platts_newsletters@resdata.com 2002-01-17
## 4553 announcements.enron@enron.com 2002-01-16
## 4554 announcements.enron@enron.com 2002-01-16
## 4555 announcements.enron@enron.com 2002-01-16
## 4556 energybulletin@platts.com 2002-01-16
## 4557 announcements.enron@enron.com 2002-01-15
## 4558 ei_editor@platts.com 2002-01-14
## 4559 david.roensch@enron.com 2002-01-14
## 4560 david.roensch@enron.com 2002-01-14
## 4561 david.roensch@enron.com 2002-01-14
## 4562 david.roensch@enron.com 2002-01-14
## 4563 david.roensch@enron.com 2002-01-14
## 4564 david.roensch@enron.com 2002-01-14
## 4565 david.roensch@enron.com 2002-01-14
## 4566 david.roensch@enron.com 2002-01-14
## 4567 david.roensch@enron.com 2002-01-14
## 4568 david.roensch@enron.com 2002-01-14
## 4569 david.roensch@enron.com 2002-01-14
## 4570 david.roensch@enron.com 2002-01-14
## 4571 david.roensch@enron.com 2002-01-14
## 4572 david.roensch@enron.com 2002-01-14
## 4573 david.roensch@enron.com 2002-01-14
## 4574 david.roensch@enron.com 2002-01-14
## 4575 david.roensch@enron.com 2002-01-14
## 4576 david.roensch@enron.com 2002-01-14
## 4577 david.roensch@enron.com 2002-01-14
## 4578 david.roensch@enron.com 2002-01-14
## 4579 david.roensch@enron.com 2002-01-14
## 4580 david.roensch@enron.com 2002-01-14
## 4581 david.roensch@enron.com 2002-01-14
## 4582 david.roensch@enron.com 2002-01-14
## 4583 david.roensch@enron.com 2002-01-14
## 4584 david.roensch@enron.com 2002-01-14
## 4585 david.roensch@enron.com 2002-01-14
## 4586 david.roensch@enron.com 2002-01-14
## 4587 david.roensch@enron.com 2002-01-14
## 4588 david.roensch@enron.com 2002-01-14
## 4589 david.roensch@enron.com 2002-01-14
## 4590 david.roensch@enron.com 2002-01-14
## 4591 david.roensch@enron.com 2002-01-14
## 4592 david.roensch@enron.com 2002-01-14
## 4593 david.roensch@enron.com 2002-01-14
## 4594 david.roensch@enron.com 2002-01-14
## 4595 david.roensch@enron.com 2002-01-14
## 4596 david.roensch@enron.com 2002-01-14
## 4597 david.roensch@enron.com 2002-01-14
## 4598 david.roensch@enron.com 2002-01-14
## 4599 david.roensch@enron.com 2002-01-14
## 4600 david.roensch@enron.com 2002-01-14
## 4601 david.roensch@enron.com 2002-01-14
## 4602 david.roensch@enron.com 2002-01-14
## 4603 david.roensch@enron.com 2002-01-14
## 4604 david.roensch@enron.com 2002-01-14
## 4605 david.roensch@enron.com 2002-01-14
## 4606 david.roensch@enron.com 2002-01-14
## 4607 david.roensch@enron.com 2002-01-14
## 4608 david.roensch@enron.com 2002-01-14
## 4609 david.roensch@enron.com 2002-01-14
## 4610 david.roensch@enron.com 2002-01-14
## 4611 david.roensch@enron.com 2002-01-14
## 4612 david.roensch@enron.com 2002-01-14
## 4613 david.roensch@enron.com 2002-01-14
## 4614 david.roensch@enron.com 2002-01-14
## 4615 david.roensch@enron.com 2002-01-14
## 4616 david.roensch@enron.com 2002-01-14
## 4617 david.roensch@enron.com 2002-01-14
## 4618 announcements.enron@enron.com 2002-01-04
## 4619 david.roensch@enron.com 2002-01-14
## 4620 david.roensch@enron.com 2002-01-14
## 4621 david.roensch@enron.com 2002-01-14
## 4622 administration.enron@enron.com 2002-01-14
## 4623 ei_editor@platts.com 2002-01-07
## 4624 ei_editor@platts.com 2002-01-11
## 4625 pjohara@netzero.net 2002-01-12
## 4626 pjohara@netzero.net 2002-01-12
## 4627 pjohara@netzero.net 2002-01-12
## 4628 pjohara@netzero.net 2002-01-12
## 4629 pjohara@netzero.net 2002-01-12
## 4630 pjohara@netzero.net 2002-01-12
## 4631 pjohara@netzero.net 2002-01-12
## 4632 pjohara@netzero.net 2002-01-12
## 4633 pjohara@netzero.net 2002-01-12
## 4634 pjohara@netzero.net 2002-01-12
## 4635 pjohara@netzero.net 2002-01-12
## 4636 pjohara@netzero.net 2002-01-12
## 4637 pjohara@netzero.net 2002-01-12
## 4638 pjohara@netzero.net 2002-01-12
## 4639 pjohara@netzero.net 2002-01-12
## 4640 pjohara@netzero.net 2002-01-12
## 4641 pjohara@netzero.net 2002-01-12
## 4642 pjohara@netzero.net 2002-01-12
## 4643 pjohara@netzero.net 2002-01-12
## 4644 pjohara@netzero.net 2002-01-12
## 4645 pjohara@netzero.net 2002-01-12
## 4646 susan.wadle@enron.com 2002-01-14
## 4647 susan.wadle@enron.com 2002-01-14
## 4648 susan.wadle@enron.com 2002-01-14
## 4649 susan.wadle@enron.com 2002-01-14
## 4650 susan.wadle@enron.com 2002-01-14
## 4651 wdulle@amerenenergy.com 2001-08-30
## 4652 wdulle@amerenenergy.com 2001-09-18
## 4653 wdulle@amerenenergy.com 2001-09-18
## 4654 wdulle@amerenenergy.com 2001-09-18
## 4655 wdulle@amerenenergy.com 2001-09-18
## 4656 carries@tradefairgroup.com 2001-10-03
## 4657 carries@tradefairgroup.com 2001-10-03
## 4658 carries@tradefairgroup.com 2001-10-03
## 4659 carries@tradefairgroup.com 2001-10-03
## 4660 carries@tradefairgroup.com 2001-10-03
## 4661 carries@tradefairgroup.com 2001-10-03
## 4662 carries@tradefairgroup.com 2001-10-03
## 4663 carries@tradefairgroup.com 2001-10-03
## 4664 carries@tradefairgroup.com 2001-10-03
## 4665 wdulle@amerenenergy.com 2001-10-04
## 4666 wdulle@amerenenergy.com 2001-10-04
## 4667 wdulle@amerenenergy.com 2001-10-04
## 4668 carries@tradefairgroup.com 2001-10-15
## 4669 40enron@enron.com 2001-07-31
## 4670 dennis.lee@enron.com 2001-01-22
## 4671 lorna.brennan@enron.com 2002-01-10
## 4672 lorna.brennan@enron.com 2002-01-10
## 4673 lorna.brennan@enron.com 2002-01-10
## 4674 lorna.brennan@enron.com 2002-01-10
## 4675 lorna.brennan@enron.com 2002-01-10
## 4676 lorna.brennan@enron.com 2002-01-10
## 4677 lorna.brennan@enron.com 2002-01-10
## 4678 lorna.brennan@enron.com 2002-01-10
## 4679 lorna.brennan@enron.com 2002-01-10
## 4680 lorna.brennan@enron.com 2002-01-10
## 4681 lorna.brennan@enron.com 2002-01-10
## 4682 lorna.brennan@enron.com 2002-01-10
## 4683 lorna.brennan@enron.com 2002-01-10
## 4684 lorna.brennan@enron.com 2002-01-10
## 4685 lorna.brennan@enron.com 2002-01-10
## 4686 lorna.brennan@enron.com 2002-01-10
## 4687 dbmcvick@srpnet.com 2002-01-10
## 4688 dbmcvick@srpnet.com 2002-01-10
## 4689 dbmcvick@srpnet.com 2002-01-10
## 4690 dbmcvick@srpnet.com 2002-01-10
## 4691 dbmcvick@srpnet.com 2002-01-10
## 4692 dbmcvick@srpnet.com 2002-01-10
## 4693 dbmcvick@srpnet.com 2002-01-10
## 4694 dbmcvick@srpnet.com 2002-01-10
## 4695 dbmcvick@srpnet.com 2002-01-10
## 4696 dbmcvick@srpnet.com 2002-01-10
## 4697 dbmcvick@srpnet.com 2002-01-10
## 4698 dbmcvick@srpnet.com 2002-01-10
## 4699 dbmcvick@srpnet.com 2002-01-10
## 4700 dbmcvick@srpnet.com 2002-01-10
## 4701 dbmcvick@srpnet.com 2002-01-10
## 4702 dbmcvick@srpnet.com 2002-01-10
## 4703 dbmcvick@srpnet.com 2002-01-10
## 4704 dbmcvick@srpnet.com 2002-01-10
## 4705 dbmcvick@srpnet.com 2002-01-10
## 4706 dbmcvick@srpnet.com 2002-01-10
## 4707 dbmcvick@srpnet.com 2002-01-10
## 4708 dbmcvick@srpnet.com 2002-01-10
## 4709 dbmcvick@srpnet.com 2002-01-10
## 4710 dbmcvick@srpnet.com 2002-01-10
## 4711 dbmcvick@srpnet.com 2002-01-10
## 4712 dbmcvick@srpnet.com 2002-01-10
## 4713 dbmcvick@srpnet.com 2002-01-10
## 4714 dbmcvick@srpnet.com 2002-01-10
## 4715 lorna.brennan@enron.com 2002-01-09
## 4716 lorna.brennan@enron.com 2002-01-09
## 4717 lorna.brennan@enron.com 2002-01-09
## 4718 lorna.brennan@enron.com 2002-01-09
## 4719 lorna.brennan@enron.com 2002-01-09
## 4720 lorna.brennan@enron.com 2002-01-09
## 4721 lorna.brennan@enron.com 2002-01-09
## 4722 lorna.brennan@enron.com 2002-01-09
## 4723 lorna.brennan@enron.com 2002-01-09
## 4724 lorna.brennan@enron.com 2002-01-09
## 4725 lorna.brennan@enron.com 2002-01-09
## 4726 lorna.brennan@enron.com 2002-01-09
## 4727 lorna.brennan@enron.com 2002-01-09
## 4728 lorna.brennan@enron.com 2002-01-09
## 4729 lorna.brennan@enron.com 2002-01-09
## 4730 lorna.brennan@enron.com 2002-01-09
## 4731 tidwellgreer@bfusa.com 2002-01-11
## 4732 tidwellgreer@bfusa.com 2002-01-11
## 4733 tidwellgreer@bfusa.com 2002-01-11
## 4734 tidwellgreer@bfusa.com 2002-01-11
## 4735 tidwellgreer@bfusa.com 2002-01-11
## 4736 tidwellgreer@bfusa.com 2002-01-11
## 4737 tidwellgreer@bfusa.com 2002-01-11
## 4738 tidwellgreer@bfusa.com 2002-01-11
## 4739 tidwellgreer@bfusa.com 2002-01-11
## 4740 tidwellgreer@bfusa.com 2002-01-11
## 4741 tidwellgreer@bfusa.com 2002-01-11
## 4742 tidwellgreer@bfusa.com 2002-01-11
## 4743 tidwellgreer@bfusa.com 2002-01-11
## 4744 tidwellgreer@bfusa.com 2002-01-11
## 4745 lmfoust@aol.com 2002-01-10
## 4746 lmfoust@aol.com 2002-01-10
## 4747 lmfoust@aol.com 2002-01-10
## 4748 lmfoust@aol.com 2002-01-10
## 4749 lmfoust@aol.com 2002-01-10
## 4750 tina_leavy@msn.com 2002-01-10
## 4751 tina_leavy@msn.com 2002-01-10
## 4752 tina_leavy@msn.com 2002-01-10
## 4753 tina_leavy@msn.com 2002-01-10
## 4754 tina_leavy@msn.com 2002-01-10
## 4755 tina_leavy@msn.com 2002-01-10
## 4756 tina_leavy@msn.com 2002-01-10
## 4757 tina_leavy@msn.com 2002-01-10
## 4758 tina_leavy@msn.com 2002-01-10
## 4759 tina_leavy@msn.com 2002-01-10
## 4760 tina_leavy@msn.com 2002-01-10
## 4761 tina_leavy@msn.com 2002-01-10
## 4762 tina_leavy@msn.com 2002-01-10
## 4763 tina_leavy@msn.com 2002-01-10
## 4764 tina_leavy@msn.com 2002-01-10
## 4765 tina_leavy@msn.com 2002-01-10
## 4766 tina_leavy@msn.com 2002-01-10
## 4767 tina_leavy@msn.com 2002-01-10
## 4768 tina_leavy@msn.com 2002-01-10
## 4769 tina_leavy@msn.com 2002-01-10
## 4770 tina_leavy@msn.com 2002-01-10
## 4771 tina_leavy@msn.com 2002-01-10
## 4772 tina_leavy@msn.com 2002-01-10
## 4773 chairman.enron@enron.com 2002-01-09
## 4774 ei_editor@platts.com 2002-01-10
## 4775 lippmanc@aol.com 2002-01-10
## 4776 center.ets@enron.com 2002-01-10
## 4777 ei_editor@platts.com 2002-01-08
## 4778 dennis.lee@enron.com 2002-01-08
## 4779 dennis.lee@enron.com 2002-01-08
## 4780 dennis.lee@enron.com 2002-01-08
## 4781 dennis.lee@enron.com 2002-01-08
## 4782 dennis.lee@enron.com 2002-01-08
## 4783 dennis.lee@enron.com 2002-01-08
## 4784 dennis.lee@enron.com 2002-01-08
## 4785 dennis.lee@enron.com 2002-01-08
## 4786 dennis.lee@enron.com 2002-01-08
## 4787 dennis.lee@enron.com 2002-01-08
## 4788 dennis.lee@enron.com 2002-01-08
## 4789 dennis.lee@enron.com 2002-01-08
## 4790 dennis.lee@enron.com 2002-01-08
## 4791 dennis.lee@enron.com 2002-01-08
## 4792 dennis.lee@enron.com 2002-01-08
## 4793 dennis.lee@enron.com 2002-01-08
## 4794 dennis.lee@enron.com 2002-01-08
## 4795 dennis.lee@enron.com 2002-01-08
## 4796 dennis.lee@enron.com 2002-01-08
## 4797 dennis.lee@enron.com 2002-01-08
## 4798 dennis.lee@enron.com 2002-01-08
## 4799 dennis.lee@enron.com 2002-01-08
## 4800 dennis.lee@enron.com 2002-01-08
## 4801 dennis.lee@enron.com 2002-01-08
## 4802 dennis.lee@enron.com 2002-01-08
## 4803 dennis.lee@enron.com 2002-01-08
## 4804 dennis.lee@enron.com 2002-01-08
## 4805 dennis.lee@enron.com 2002-01-08
## 4806 dennis.lee@enron.com 2002-01-08
## 4807 dennis.lee@enron.com 2002-01-08
## 4808 dennis.lee@enron.com 2002-01-08
## 4809 dennis.lee@enron.com 2002-01-08
## 4810 dennis.lee@enron.com 2002-01-08
## 4811 dennis.lee@enron.com 2002-01-08
## 4812 dennis.lee@enron.com 2002-01-08
## 4813 dennis.lee@enron.com 2002-01-08
## 4814 dennis.lee@enron.com 2002-01-08
## 4815 dennis.lee@enron.com 2002-01-08
## 4816 dennis.lee@enron.com 2002-01-08
## 4817 dennis.lee@enron.com 2002-01-08
## 4818 dennis.lee@enron.com 2002-01-08
## 4819 dennis.lee@enron.com 2002-01-08
## 4820 dennis.lee@enron.com 2002-01-08
## 4821 dennis.lee@enron.com 2002-01-08
## 4822 dennis.lee@enron.com 2002-01-08
## 4823 dennis.lee@enron.com 2002-01-08
## 4824 dennis.lee@enron.com 2002-01-08
## 4825 dennis.lee@enron.com 2002-01-08
## 4826 dennis.lee@enron.com 2002-01-08
## 4827 dennis.lee@enron.com 2002-01-08
## 4828 dennis.lee@enron.com 2002-01-08
## 4829 dennis.lee@enron.com 2002-01-08
## 4830 dennis.lee@enron.com 2002-01-08
## 4831 dennis.lee@enron.com 2002-01-08
## 4832 dennis.lee@enron.com 2002-01-08
## 4833 dennis.lee@enron.com 2002-01-08
## 4834 dennis.lee@enron.com 2002-01-08
## 4835 dennis.lee@enron.com 2002-01-08
## 4836 dennis.lee@enron.com 2002-01-08
## 4837 dennis.lee@enron.com 2002-01-08
## 4838 dennis.lee@enron.com 2002-01-08
## 4839 dennis.lee@enron.com 2002-01-08
## 4840 dennis.lee@enron.com 2002-01-08
## 4841 dennis.lee@enron.com 2002-01-08
## 4842 dennis.lee@enron.com 2002-01-08
## 4843 dennis.lee@enron.com 2002-01-08
## 4844 dennis.lee@enron.com 2002-01-08
## 4845 dennis.lee@enron.com 2002-01-08
## 4846 dennis.lee@enron.com 2002-01-08
## 4847 dennis.lee@enron.com 2002-01-08
## 4848 no.address@enron.com 2002-01-08
## 4849 no.address@enron.com 2001-12-11
## 4850 listserv@ablist.about.com 2002-01-07
## 4851 lorna.brennan@enron.com 2001-11-13
## 4852 lorna.brennan@enron.com 2001-11-13
## 4853 lorna.brennan@enron.com 2001-11-13
## 4854 lorna.brennan@enron.com 2001-11-13
## 4855 lorna.brennan@enron.com 2001-11-13
## 4856 lorna.brennan@enron.com 2001-11-13
## 4857 lorna.brennan@enron.com 2001-11-13
## 4858 lorna.brennan@enron.com 2001-11-13
## 4859 lorna.brennan@enron.com 2001-11-13
## 4860 lorna.brennan@enron.com 2001-11-13
## 4861 lorna.brennan@enron.com 2001-11-13
## 4862 lorna.brennan@enron.com 2001-11-13
## 4863 lorna.brennan@enron.com 2001-11-13
## 4864 lorna.brennan@enron.com 2001-11-13
## 4865 lorna.brennan@enron.com 2001-11-13
## 4866 lorna.brennan@enron.com 2001-11-13
## 4867 lorna.brennan@enron.com 2001-11-13
## 4868 lorna.brennan@enron.com 2001-11-13
## 4869 lorna.brennan@enron.com 2001-11-13
## 4870 lorna.brennan@enron.com 2001-11-13
## 4871 lorna.brennan@enron.com 2001-11-13
## 4872 lorna.brennan@enron.com 2001-11-13
## 4873 lorna.brennan@enron.com 2001-11-13
## 4874 lorna.brennan@enron.com 2001-11-13
## 4875 lorna.brennan@enron.com 2001-11-13
## 4876 lorna.brennan@enron.com 2001-11-13
## 4877 lorna.brennan@enron.com 2001-11-13
## 4878 lorna.brennan@enron.com 2001-11-13
## 4879 lorna.brennan@enron.com 2001-11-13
## 4880 lorna.brennan@enron.com 2001-11-13
## 4881 lorna.brennan@enron.com 2001-11-13
## 4882 lorna.brennan@enron.com 2001-11-13
## 4883 lorna.brennan@enron.com 2001-11-13
## 4884 lorna.brennan@enron.com 2001-11-13
## 4885 lorna.brennan@enron.com 2001-11-13
## 4886 lorna.brennan@enron.com 2001-11-13
## 4887 lorna.brennan@enron.com 2001-11-13
## 4888 lorna.brennan@enron.com 2001-11-13
## 4889 lorna.brennan@enron.com 2001-11-13
## 4890 lorna.brennan@enron.com 2001-11-13
## 4891 lorna.brennan@enron.com 2001-11-13
## 4892 lorna.brennan@enron.com 2001-11-13
## 4893 lorna.brennan@enron.com 2001-11-13
## 4894 lorna.brennan@enron.com 2001-11-13
## 4895 lorna.brennan@enron.com 2001-11-13
## 4896 lorna.brennan@enron.com 2001-11-13
## 4897 lorna.brennan@enron.com 2001-11-13
## 4898 lorna.brennan@enron.com 2001-11-13
## 4899 lorna.brennan@enron.com 2001-11-13
## 4900 lorna.brennan@enron.com 2001-11-13
## 4901 lorna.brennan@enron.com 2001-11-13
## 4902 lorna.brennan@enron.com 2001-11-13
## 4903 lorna.brennan@enron.com 2001-11-13
## 4904 lorna.brennan@enron.com 2001-11-13
## 4905 lorna.brennan@enron.com 2001-11-13
## 4906 lorna.brennan@enron.com 2001-11-13
## 4907 lorna.brennan@enron.com 2001-11-13
## 4908 lorna.brennan@enron.com 2001-11-13
## 4909 lorna.brennan@enron.com 2001-11-13
## 4910 lorna.brennan@enron.com 2001-11-13
## 4911 lorna.brennan@enron.com 2001-11-13
## 4912 lorna.brennan@enron.com 2001-11-13
## 4913 lorna.brennan@enron.com 2001-11-13
## 4914 lorna.brennan@enron.com 2001-11-13
## 4915 lorna.brennan@enron.com 2001-11-13
## 4916 lorna.brennan@enron.com 2001-11-13
## 4917 lorna.brennan@enron.com 2001-11-13
## 4918 lorna.brennan@enron.com 2001-11-13
## 4919 lorna.brennan@enron.com 2001-11-13
## 4920 lorna.brennan@enron.com 2001-11-13
## 4921 lorna.brennan@enron.com 2001-11-13
## 4922 lorna.brennan@enron.com 2001-11-13
## 4923 lorna.brennan@enron.com 2001-11-13
## 4924 lorna.brennan@enron.com 2001-11-13
## 4925 lorna.brennan@enron.com 2001-11-13
## 4926 lorna.brennan@enron.com 2001-11-13
## 4927 lorna.brennan@enron.com 2001-11-13
## 4928 lorna.brennan@enron.com 2001-11-13
## 4929 lorna.brennan@enron.com 2001-11-13
## 4930 lorna.brennan@enron.com 2001-11-13
## 4931 lorna.brennan@enron.com 2001-11-13
## 4932 lorna.brennan@enron.com 2001-11-13
## 4933 lorna.brennan@enron.com 2001-11-13
## 4934 lorna.brennan@enron.com 2001-11-13
## 4935 lorna.brennan@enron.com 2001-11-13
## 4936 lorna.brennan@enron.com 2001-11-13
## 4937 lorna.brennan@enron.com 2001-11-13
## 4938 lorna.brennan@enron.com 2001-11-13
## 4939 lorna.brennan@enron.com 2001-11-13
## 4940 lorna.brennan@enron.com 2001-11-13
## 4941 lorna.brennan@enron.com 2001-11-13
## 4942 lorna.brennan@enron.com 2001-11-13
## 4943 lorna.brennan@enron.com 2001-11-13
## 4944 lorna.brennan@enron.com 2001-11-13
## 4945 lorna.brennan@enron.com 2001-11-13
## 4946 lorna.brennan@enron.com 2001-11-13
## 4947 lorna.brennan@enron.com 2001-11-13
## 4948 lorna.brennan@enron.com 2001-11-13
## 4949 lorna.brennan@enron.com 2001-11-13
## 4950 lorna.brennan@enron.com 2001-11-13
## 4951 lorna.brennan@enron.com 2001-10-05
## 4952 lorna.brennan@enron.com 2001-10-05
## 4953 lorna.brennan@enron.com 2001-10-05
## 4954 lorna.brennan@enron.com 2001-10-05
## 4955 lorna.brennan@enron.com 2001-10-05
## 4956 lorna.brennan@enron.com 2001-10-05
## 4957 lorna.brennan@enron.com 2001-10-05
## 4958 lorna.brennan@enron.com 2001-10-05
## 4959 lorna.brennan@enron.com 2001-10-05
## 4960 lorna.brennan@enron.com 2001-10-05
## 4961 lorna.brennan@enron.com 2001-10-05
## 4962 lorna.brennan@enron.com 2001-10-05
## 4963 lorna.brennan@enron.com 2001-10-05
## 4964 lorna.brennan@enron.com 2001-10-05
## 4965 lorna.brennan@enron.com 2001-10-05
## 4966 lorna.brennan@enron.com 2001-10-05
## 4967 lorna.brennan@enron.com 2001-10-05
## 4968 lorna.brennan@enron.com 2001-10-05
## 4969 lorna.brennan@enron.com 2001-10-05
## 4970 lorna.brennan@enron.com 2001-10-05
## 4971 lorna.brennan@enron.com 2001-10-05
## 4972 lorna.brennan@enron.com 2001-10-05
## 4973 lorna.brennan@enron.com 2001-10-05
## 4974 lorna.brennan@enron.com 2001-10-05
## 4975 lorna.brennan@enron.com 2001-10-05
## 4976 lorna.brennan@enron.com 2001-10-05
## 4977 lorna.brennan@enron.com 2001-10-05
## 4978 lorna.brennan@enron.com 2001-10-05
## 4979 lorna.brennan@enron.com 2001-10-05
## 4980 lorna.brennan@enron.com 2001-10-05
## 4981 lorna.brennan@enron.com 2001-10-05
## 4982 lorna.brennan@enron.com 2001-10-05
## 4983 lorna.brennan@enron.com 2001-10-05
## 4984 lorna.brennan@enron.com 2001-10-05
## 4985 lorna.brennan@enron.com 2001-10-05
## 4986 lorna.brennan@enron.com 2001-10-05
## 4987 lorna.brennan@enron.com 2001-10-05
## 4988 lorna.brennan@enron.com 2001-10-05
## 4989 lorna.brennan@enron.com 2001-10-05
## 4990 lorna.brennan@enron.com 2001-10-05
## 4991 lorna.brennan@enron.com 2001-10-05
## 4992 lorna.brennan@enron.com 2001-10-05
## 4993 lorna.brennan@enron.com 2001-10-05
## 4994 lorna.brennan@enron.com 2001-10-05
## 4995 lorna.brennan@enron.com 2001-10-05
## 4996 lorna.brennan@enron.com 2001-10-05
## 4997 lorna.brennan@enron.com 2001-10-05
## 4998 lorna.brennan@enron.com 2001-10-05
## 4999 lorna.brennan@enron.com 2001-10-05
## 5000 lorna.brennan@enron.com 2001-10-05
## 5001 lorna.brennan@enron.com 2001-10-05
## 5002 lorna.brennan@enron.com 2001-10-05
## 5003 lorna.brennan@enron.com 2001-10-05
## 5004 lorna.brennan@enron.com 2001-10-05
## 5005 lorna.brennan@enron.com 2001-10-05
## 5006 lorna.brennan@enron.com 2001-10-05
## 5007 lorna.brennan@enron.com 2001-10-05
## 5008 lorna.brennan@enron.com 2001-10-05
## 5009 lorna.brennan@enron.com 2001-10-05
## 5010 lorna.brennan@enron.com 2001-10-05
## 5011 lorna.brennan@enron.com 2001-10-05
## 5012 lorna.brennan@enron.com 2001-10-05
## 5013 lorna.brennan@enron.com 2001-10-05
## 5014 lorna.brennan@enron.com 2001-10-05
## 5015 lorna.brennan@enron.com 2001-10-05
## 5016 lorna.brennan@enron.com 2001-10-05
## 5017 lorna.brennan@enron.com 2001-10-05
## 5018 lorna.brennan@enron.com 2001-10-05
## 5019 lorna.brennan@enron.com 2001-10-05
## 5020 lorna.brennan@enron.com 2001-10-05
## 5021 lorna.brennan@enron.com 2001-10-05
## 5022 lorna.brennan@enron.com 2001-10-05
## 5023 lorna.brennan@enron.com 2001-10-05
## 5024 lorna.brennan@enron.com 2001-10-05
## 5025 lorna.brennan@enron.com 2001-10-05
## 5026 lorna.brennan@enron.com 2001-10-05
## 5027 lorna.brennan@enron.com 2001-10-05
## 5028 lorna.brennan@enron.com 2001-10-05
## 5029 lorna.brennan@enron.com 2001-10-05
## 5030 lorna.brennan@enron.com 2001-10-05
## 5031 lorna.brennan@enron.com 2001-10-05
## 5032 lorna.brennan@enron.com 2001-10-05
## 5033 lorna.brennan@enron.com 2001-10-05
## 5034 lorna.brennan@enron.com 2001-10-05
## 5035 lorna.brennan@enron.com 2001-10-05
## 5036 lorna.brennan@enron.com 2001-10-05
## 5037 lorna.brennan@enron.com 2001-10-05
## 5038 lorna.brennan@enron.com 2001-10-05
## 5039 lorna.brennan@enron.com 2001-10-05
## 5040 lorna.brennan@enron.com 2001-10-05
## 5041 lorna.brennan@enron.com 2001-10-05
## 5042 lorna.brennan@enron.com 2001-10-05
## 5043 lorna.brennan@enron.com 2001-10-05
## 5044 lorna.brennan@enron.com 2001-10-05
## 5045 lorna.brennan@enron.com 2001-10-05
## 5046 lorna.brennan@enron.com 2001-10-05
## 5047 lorna.brennan@enron.com 2001-10-05
## 5048 lorna.brennan@enron.com 2001-10-05
## 5049 lorna.brennan@enron.com 2001-10-05
## 5050 lorna.brennan@enron.com 2001-10-05
## 5051 lorna.brennan@enron.com 2001-10-05
## 5052 lorna.brennan@enron.com 2001-10-05
## 5053 lorna.brennan@enron.com 2001-10-05
## 5054 lorna.brennan@enron.com 2001-10-05
## 5055 lorna.brennan@enron.com 2001-10-05
## 5056 lorna.brennan@enron.com 2001-10-05
## 5057 40enron@enron.com 2001-07-31
## 5058 announcements.egs@enron.com 2002-03-22
## 5059 announcements.egs@enron.com 2002-03-22
## 5060 announcements.enron@enron.com 2002-03-08
## 5061 announcements.egs@enron.com 2002-03-04
## 5062 executive.office@enron.com 2002-02-28
## 5063 announcements.egs@enron.com 2002-02-12
## 5064 chairman.ets@enron.com 2002-02-11
## 5065 coo.jeff@enron.com 2002-01-29
## 5066 chairman.enron@enron.com 2002-01-16
## 5067 iris.waser@enron.com 2001-11-30
## 5068 iris.waser@enron.com 2001-11-30
## 5069 no.address@enron.com 2001-11-30
## 5070 chairman.ken@enron.com 2001-11-14
## 5071 chairman.ken@enron.com 2001-11-09
## 5072 ei_editor@platts.com 2001-11-12
## 5073 chairman.ken@enron.com 2001-11-08
## 5074 no.address@enron.com 2001-11-05
## 5075 no.address@enron.com 2001-11-01
## 5076 no.address@enron.com 2001-10-24
## 5077 no.address@enron.com 2001-10-24
## 5078 40enron@enron.com 2001-08-23
## 5079 40enron@enron.com 2001-09-24
## 5080 40enron@enron.com 2001-09-20
## 5081 40enron@enron.com 2001-09-06
## 5082 kimberley.nelson@enron.com 2001-09-05
## 5083 kimberley.nelson@enron.com 2001-09-05
## 5084 kimberley.nelson@enron.com 2001-09-05
## 5085 kimberley.nelson@enron.com 2001-09-05
## 5086 kimberley.nelson@enron.com 2001-09-05
## 5087 kimberley.nelson@enron.com 2001-09-05
## 5088 kimberley.nelson@enron.com 2001-09-05
## 5089 kimberley.nelson@enron.com 2001-09-05
## 5090 kimberley.nelson@enron.com 2001-09-05
## 5091 kimberley.nelson@enron.com 2001-09-05
## 5092 kimberley.nelson@enron.com 2001-09-05
## 5093 kimberley.nelson@enron.com 2001-09-05
## 5094 kimberley.nelson@enron.com 2001-09-05
## 5095 kimberley.nelson@enron.com 2001-09-05
## 5096 kimberley.nelson@enron.com 2001-09-05
## 5097 kimberley.nelson@enron.com 2001-09-05
## 5098 kimberley.nelson@enron.com 2001-09-05
## 5099 kimberley.nelson@enron.com 2001-09-05
## 5100 kimberley.nelson@enron.com 2001-09-05
## 5101 kimberley.nelson@enron.com 2001-09-05
## 5102 kimberley.nelson@enron.com 2001-09-05
## 5103 kimberley.nelson@enron.com 2001-09-05
## 5104 kimberley.nelson@enron.com 2001-09-05
## 5105 kimberley.nelson@enron.com 2001-09-05
## 5106 kimberley.nelson@enron.com 2001-09-05
## 5107 kimberley.nelson@enron.com 2001-09-05
## 5108 kimberley.nelson@enron.com 2001-09-05
## 5109 kimberley.nelson@enron.com 2001-09-05
## 5110 kimberley.nelson@enron.com 2001-09-05
## 5111 kimberley.nelson@enron.com 2001-09-05
## 5112 kimberley.nelson@enron.com 2001-09-05
## 5113 kimberley.nelson@enron.com 2001-09-05
## 5114 kimberley.nelson@enron.com 2001-09-05
## 5115 kimberley.nelson@enron.com 2001-09-05
## 5116 kimberley.nelson@enron.com 2001-09-05
## 5117 kimberley.nelson@enron.com 2001-09-05
## 5118 kimberley.nelson@enron.com 2001-09-05
## 5119 kimberley.nelson@enron.com 2001-09-05
## 5120 40enron@enron.com 2001-08-21
## 5121 rich.jolly@enron.com 2001-07-11
## 5122 rich.jolly@enron.com 2001-07-11
## 5123 rich.jolly@enron.com 2001-07-11
## 5124 rich.jolly@enron.com 2001-07-11
## 5125 rich.jolly@enron.com 2001-07-11
## 5126 rich.jolly@enron.com 2001-07-11
## 5127 rich.jolly@enron.com 2001-07-11
## 5128 rich.jolly@enron.com 2001-07-11
## 5129 rich.jolly@enron.com 2001-07-11
## 5130 rich.jolly@enron.com 2001-07-11
## 5131 rich.jolly@enron.com 2001-07-11
## 5132 rich.jolly@enron.com 2001-07-11
## 5133 rich.jolly@enron.com 2001-07-11
## 5134 rich.jolly@enron.com 2001-07-11
## 5135 rich.jolly@enron.com 2001-07-11
## 5136 rich.jolly@enron.com 2001-07-11
## 5137 rich.jolly@enron.com 2001-07-11
## 5138 rich.jolly@enron.com 2001-07-11
## 5139 rich.jolly@enron.com 2001-07-11
## 5140 rich.jolly@enron.com 2001-07-11
## 5141 rich.jolly@enron.com 2001-07-11
## 5142 rich.jolly@enron.com 2001-07-11
## 5143 rich.jolly@enron.com 2001-07-11
## 5144 rich.jolly@enron.com 2001-07-11
## 5145 rich.jolly@enron.com 2001-07-11
## 5146 rich.jolly@enron.com 2001-07-11
## 5147 rich.jolly@enron.com 2001-07-11
## 5148 rich.jolly@enron.com 2001-07-11
## 5149 rich.jolly@enron.com 2001-07-11
## 5150 rich.jolly@enron.com 2001-07-11
## 5151 rich.jolly@enron.com 2001-07-11
## 5152 rich.jolly@enron.com 2001-07-11
## 5153 rich.jolly@enron.com 2001-07-11
## 5154 rich.jolly@enron.com 2001-07-11
## 5155 rich.jolly@enron.com 2001-07-11
## 5156 rich.jolly@enron.com 2001-07-11
## 5157 rich.jolly@enron.com 2001-07-11
## 5158 rich.jolly@enron.com 2001-07-11
## 5159 rich.jolly@enron.com 2001-07-11
## 5160 rich.jolly@enron.com 2001-07-11
## 5161 rich.jolly@enron.com 2001-07-11
## 5162 rich.jolly@enron.com 2001-07-11
## 5163 rich.jolly@enron.com 2001-07-11
## 5164 rich.jolly@enron.com 2001-07-11
## 5165 rich.jolly@enron.com 2001-07-11
## 5166 rich.jolly@enron.com 2001-07-11
## 5167 rich.jolly@enron.com 2001-07-11
## 5168 rich.jolly@enron.com 2001-07-11
## 5169 rich.jolly@enron.com 2001-07-11
## 5170 rich.jolly@enron.com 2001-07-11
## 5171 rich.jolly@enron.com 2001-07-11
## 5172 rich.jolly@enron.com 2001-07-11
## 5173 rich.jolly@enron.com 2001-07-11
## 5174 rich.jolly@enron.com 2001-07-11
## 5175 rich.jolly@enron.com 2001-07-11
## 5176 rich.jolly@enron.com 2001-07-11
## 5177 rich.jolly@enron.com 2001-07-11
## 5178 rich.jolly@enron.com 2001-07-11
## 5179 rich.jolly@enron.com 2001-07-11
## 5180 rich.jolly@enron.com 2001-07-11
## 5181 rich.jolly@enron.com 2001-07-11
## 5182 rich.jolly@enron.com 2001-07-11
## 5183 rich.jolly@enron.com 2001-07-11
## 5184 rich.jolly@enron.com 2001-07-11
## 5185 rich.jolly@enron.com 2001-07-11
## 5186 rich.jolly@enron.com 2001-07-11
## 5187 rich.jolly@enron.com 2001-07-11
## 5188 rich.jolly@enron.com 2001-07-11
## 5189 rich.jolly@enron.com 2001-07-11
## 5190 rich.jolly@enron.com 2001-07-11
## 5191 rich.jolly@enron.com 2001-07-11
## 5192 rich.jolly@enron.com 2001-07-11
## 5193 rich.jolly@enron.com 2001-07-11
## 5194 rich.jolly@enron.com 2001-07-11
## 5195 rich.jolly@enron.com 2001-07-11
## 5196 rich.jolly@enron.com 2001-07-11
## 5197 rich.jolly@enron.com 2001-07-11
## 5198 rich.jolly@enron.com 2001-07-11
## 5199 rich.jolly@enron.com 2001-07-11
## 5200 rich.jolly@enron.com 2001-07-11
## 5201 rich.jolly@enron.com 2001-07-11
## 5202 rich.jolly@enron.com 2001-07-11
## 5203 rich.jolly@enron.com 2001-07-11
## 5204 rich.jolly@enron.com 2001-07-11
## 5205 rich.jolly@enron.com 2001-07-11
## 5206 rich.jolly@enron.com 2001-07-11
## 5207 rich.jolly@enron.com 2001-07-11
## 5208 rich.jolly@enron.com 2001-07-11
## 5209 rich.jolly@enron.com 2001-07-11
## 5210 rich.jolly@enron.com 2001-07-11
## 5211 no.address@enron.com 2001-11-21
## 5212 misha.siegel@enron.com 2001-11-19
## 5213 misha.siegel@enron.com 2001-11-19
## 5214 misha.siegel@enron.com 2001-11-19
## 5215 misha.siegel@enron.com 2001-11-19
## 5216 misha.siegel@enron.com 2001-11-19
## 5217 jhyatt@email.msn.com 2001-12-19
## 5218 jhyatt@email.msn.com 2001-12-19
## 5219 jhyatt@email.msn.com 2001-12-19
## 5220 jhyatt@email.msn.com 2001-12-19
## 5221 jhyatt@email.msn.com 2001-12-19
## 5222 jhyatt@email.msn.com 2001-12-19
## 5223 jhyatt@email.msn.com 2001-12-19
## 5224 jhyatt@email.msn.com 2001-12-19
## 5225 jhyatt@email.msn.com 2001-12-19
## 5226 jhyatt@email.msn.com 2001-12-19
## 5227 jhyatt@email.msn.com 2001-12-19
## 5228 jhyatt@email.msn.com 2001-12-19
## 5229 jhyatt@email.msn.com 2001-12-19
## 5230 jhyatt@email.msn.com 2001-12-19
## 5231 jhyatt@email.msn.com 2001-12-19
## 5232 jhyatt@email.msn.com 2001-12-19
## 5233 jhyatt@email.msn.com 2001-12-19
## 5234 jhyatt@email.msn.com 2001-12-19
## 5235 jhyatt@email.msn.com 2001-12-19
## 5236 jhyatt@email.msn.com 2001-12-19
## 5237 jhyatt@email.msn.com 2001-12-19
## 5238 jhyatt@email.msn.com 2001-12-19
## 5239 jhyatt@email.msn.com 2001-12-19
## 5240 jhyatt@email.msn.com 2001-12-19
## 5241 jhyatt@email.msn.com 2001-12-19
## 5242 jhyatt@email.msn.com 2001-12-19
## 5243 jhyatt@email.msn.com 2001-12-19
## 5244 jhyatt@email.msn.com 2001-12-19
## 5245 jhyatt@email.msn.com 2001-12-19
## 5246 jhyatt@email.msn.com 2001-12-19
## 5247 jhyatt@email.msn.com 2001-12-19
## 5248 jhyatt@email.msn.com 2001-12-19
## 5249 jhyatt@email.msn.com 2001-12-19
## 5250 dominic.marshall@enron.com 2001-12-07
## 5251 dominic.marshall@enron.com 2001-12-07
## 5252 dominic.marshall@enron.com 2001-12-07
## 5253 dominic.marshall@enron.com 2001-12-07
## 5254 dominic.marshall@enron.com 2001-12-07
## 5255 jesse.morris@enron.com 2001-12-03
## 5256 jesse.morris@enron.com 2001-12-03
## 5257 geneva.davis@enron.com 2001-11-25
## 5258 geneva.davis@enron.com 2001-11-25
## 5259 geneva.davis@enron.com 2001-11-25
## 5260 geneva.davis@enron.com 2001-11-25
## 5261 geneva.davis@enron.com 2001-11-25
## 5262 geneva.davis@enron.com 2001-11-25
## 5263 geneva.davis@enron.com 2001-11-25
## 5264 geneva.davis@enron.com 2001-11-25
## 5265 geneva.davis@enron.com 2001-11-25
## 5266 geneva.davis@enron.com 2001-11-25
## 5267 geneva.davis@enron.com 2001-11-25
## 5268 geneva.davis@enron.com 2001-11-25
## 5269 geneva.davis@enron.com 2001-11-25
## 5270 geneva.davis@enron.com 2001-11-25
## 5271 geneva.davis@enron.com 2001-11-25
## 5272 geneva.davis@enron.com 2001-11-25
## 5273 geneva.davis@enron.com 2001-11-25
## 5274 geneva.davis@enron.com 2001-11-25
## 5275 geneva.davis@enron.com 2001-11-25
## 5276 geneva.davis@enron.com 2001-11-25
## 5277 geneva.davis@enron.com 2001-11-25
## 5278 geneva.davis@enron.com 2001-11-25
## 5279 geneva.davis@enron.com 2001-11-25
## 5280 geneva.davis@enron.com 2001-11-25
## 5281 geneva.davis@enron.com 2001-11-25
## 5282 geneva.davis@enron.com 2001-11-25
## 5283 geneva.davis@enron.com 2001-11-25
## 5284 geneva.davis@enron.com 2001-11-25
## 5285 geneva.davis@enron.com 2001-11-25
## 5286 geneva.davis@enron.com 2001-11-25
## 5287 geneva.davis@enron.com 2001-11-25
## 5288 geneva.davis@enron.com 2001-11-25
## 5289 geneva.davis@enron.com 2001-11-25
## 5290 geneva.davis@enron.com 2001-11-25
## 5291 geneva.davis@enron.com 2001-11-25
## 5292 geneva.davis@enron.com 2001-11-25
## 5293 geneva.davis@enron.com 2001-11-25
## 5294 geneva.davis@enron.com 2001-11-25
## 5295 geneva.davis@enron.com 2001-11-25
## 5296 geneva.davis@enron.com 2001-11-25
## 5297 geneva.davis@enron.com 2001-11-25
## 5298 geneva.davis@enron.com 2001-11-25
## 5299 geneva.davis@enron.com 2001-11-25
## 5300 geneva.davis@enron.com 2001-11-25
## 5301 geneva.davis@enron.com 2001-11-25
## 5302 geneva.davis@enron.com 2001-11-25
## 5303 geneva.davis@enron.com 2001-11-25
## 5304 geneva.davis@enron.com 2001-11-25
## 5305 geneva.davis@enron.com 2001-11-25
## 5306 lillian.villarreal@enron.com 2001-11-19
## 5307 lillian.villarreal@enron.com 2001-11-19
## 5308 lillian.villarreal@enron.com 2001-11-19
## 5309 geneva.davis@enron.com 2001-11-16
## 5310 geneva.davis@enron.com 2001-11-16
## 5311 geneva.davis@enron.com 2001-11-16
## 5312 geneva.davis@enron.com 2001-11-16
## 5313 geneva.davis@enron.com 2001-11-07
## 5314 geneva.davis@enron.com 2001-11-07
## 5315 geneva.davis@enron.com 2001-11-07
## 5316 geneva.davis@enron.com 2001-11-07
## 5317 geneva.davis@enron.com 2001-11-07
## 5318 geneva.davis@enron.com 2001-11-07
## 5319 geneva.davis@enron.com 2001-11-07
## 5320 geneva.davis@enron.com 2001-11-07
## 5321 geneva.davis@enron.com 2001-11-07
## 5322 geneva.davis@enron.com 2001-11-07
## 5323 geneva.davis@enron.com 2001-11-07
## 5324 geneva.davis@enron.com 2001-11-07
## 5325 geneva.davis@enron.com 2001-11-07
## 5326 geneva.davis@enron.com 2001-11-07
## 5327 geneva.davis@enron.com 2001-11-07
## 5328 geneva.davis@enron.com 2001-11-07
## 5329 geneva.davis@enron.com 2001-11-07
## 5330 geneva.davis@enron.com 2001-11-07
## 5331 geneva.davis@enron.com 2001-11-07
## 5332 geneva.davis@enron.com 2001-11-07
## 5333 geneva.davis@enron.com 2001-11-07
## 5334 geneva.davis@enron.com 2001-11-07
## 5335 geneva.davis@enron.com 2001-11-07
## 5336 geneva.davis@enron.com 2001-11-07
## 5337 geneva.davis@enron.com 2001-11-07
## 5338 geneva.davis@enron.com 2001-11-07
## 5339 geneva.davis@enron.com 2001-11-07
## 5340 geneva.davis@enron.com 2001-11-07
## 5341 geneva.davis@enron.com 2001-11-07
## 5342 geneva.davis@enron.com 2001-11-07
## 5343 geneva.davis@enron.com 2001-11-07
## 5344 geneva.davis@enron.com 2001-11-07
## 5345 geneva.davis@enron.com 2001-11-07
## 5346 geneva.davis@enron.com 2001-11-07
## 5347 geneva.davis@enron.com 2001-11-07
## 5348 geneva.davis@enron.com 2001-11-07
## 5349 geneva.davis@enron.com 2001-11-07
## 5350 geneva.davis@enron.com 2001-11-07
## 5351 geneva.davis@enron.com 2001-11-07
## 5352 geneva.davis@enron.com 2001-11-07
## 5353 geneva.davis@enron.com 2001-11-07
## 5354 geneva.davis@enron.com 2001-11-07
## 5355 geneva.davis@enron.com 2001-11-07
## 5356 geneva.davis@enron.com 2001-11-07
## 5357 geneva.davis@enron.com 2001-11-07
## 5358 geneva.davis@enron.com 2001-11-07
## 5359 geneva.davis@enron.com 2001-11-07
## 5360 geneva.davis@enron.com 2001-11-07
## 5361 geneva.davis@enron.com 2001-11-06
## 5362 geneva.davis@enron.com 2001-11-06
## 5363 geneva.davis@enron.com 2001-11-06
## 5364 lillian.villarreal@enron.com 2001-10-31
## 5365 lillian.villarreal@enron.com 2001-10-31
## 5366 lillian.villarreal@enron.com 2001-10-31
## 5367 lillian.villarreal@enron.com 2001-10-26
## 5368 lillian.villarreal@enron.com 2001-10-26
## 5369 lillian.villarreal@enron.com 2001-10-24
## 5370 lillian.villarreal@enron.com 2001-07-02
## 5371 lillian.villarreal@enron.com 2001-07-02
## 5372 lillian.villarreal@enron.com 2001-07-02
## 5373 lillian.villarreal@enron.com 2001-07-02
## 5374 lillian.villarreal@enron.com 2001-07-02
## 5375 lillian.villarreal@enron.com 2001-07-02
## 5376 lillian.villarreal@enron.com 2001-07-02
## 5377 lillian.villarreal@enron.com 2001-07-02
## 5378 lillian.villarreal@enron.com 2001-07-02
## 5379 lillian.villarreal@enron.com 2001-07-02
## 5380 lillian.villarreal@enron.com 2001-07-02
## 5381 lillian.villarreal@enron.com 2001-07-02
## 5382 lillian.villarreal@enron.com 2001-07-02
## 5383 lillian.villarreal@enron.com 2001-07-02
## 5384 lillian.villarreal@enron.com 2001-07-02
## 5385 lillian.villarreal@enron.com 2001-07-02
## 5386 lillian.villarreal@enron.com 2001-07-02
## 5387 lillian.villarreal@enron.com 2001-07-02
## 5388 lillian.villarreal@enron.com 2001-07-02
## 5389 lillian.villarreal@enron.com 2001-07-02
## 5390 lillian.villarreal@enron.com 2001-07-02
## 5391 lillian.villarreal@enron.com 2001-07-02
## 5392 lillian.villarreal@enron.com 2001-07-02
## 5393 lillian.villarreal@enron.com 2001-07-02
## 5394 lillian.villarreal@enron.com 2001-07-02
## 5395 lillian.villarreal@enron.com 2001-07-02
## 5396 lillian.villarreal@enron.com 2001-07-02
## 5397 lillian.villarreal@enron.com 2001-07-02
## 5398 lillian.villarreal@enron.com 2001-07-02
## 5399 lillian.villarreal@enron.com 2001-07-02
## 5400 lillian.villarreal@enron.com 2001-07-02
## 5401 lillian.villarreal@enron.com 2001-07-02
## 5402 lillian.villarreal@enron.com 2001-07-02
## 5403 lillian.villarreal@enron.com 2001-07-02
## 5404 lillian.villarreal@enron.com 2001-07-02
## 5405 lillian.villarreal@enron.com 2001-07-02
## 5406 lillian.villarreal@enron.com 2001-07-02
## 5407 lillian.villarreal@enron.com 2001-07-02
## 5408 lillian.villarreal@enron.com 2001-07-02
## 5409 lillian.villarreal@enron.com 2001-07-02
## 5410 lillian.villarreal@enron.com 2001-07-02
## 5411 lillian.villarreal@enron.com 2001-07-02
## 5412 lillian.villarreal@enron.com 2001-07-02
## 5413 lillian.villarreal@enron.com 2001-07-02
## 5414 lillian.villarreal@enron.com 2001-07-02
## 5415 lillian.villarreal@enron.com 2001-07-02
## 5416 lillian.villarreal@enron.com 2001-06-26
## 5417 lillian.villarreal@enron.com 2001-05-17
## 5418 lillian.villarreal@enron.com 2001-05-17
## 5419 lillian.villarreal@enron.com 2001-05-17
## 5420 lillian.villarreal@enron.com 2001-05-17
## 5421 lillian.villarreal@enron.com 2001-05-17
## 5422 lillian.villarreal@enron.com 2001-05-17
## 5423 lillian.villarreal@enron.com 2001-05-17
## 5424 lillian.villarreal@enron.com 2001-05-17
## 5425 lillian.villarreal@enron.com 2001-05-17
## 5426 lillian.villarreal@enron.com 2001-05-17
## 5427 lillian.villarreal@enron.com 2001-05-17
## 5428 lillian.villarreal@enron.com 2001-05-17
## 5429 lillian.villarreal@enron.com 2001-05-17
## 5430 lillian.villarreal@enron.com 2001-05-17
## 5431 lillian.villarreal@enron.com 2001-05-17
## 5432 lillian.villarreal@enron.com 2001-05-17
## 5433 lillian.villarreal@enron.com 2001-05-17
## 5434 lillian.villarreal@enron.com 2001-05-17
## 5435 lillian.villarreal@enron.com 2001-05-17
## 5436 lillian.villarreal@enron.com 2001-05-17
## 5437 lillian.villarreal@enron.com 2001-05-17
## 5438 lillian.villarreal@enron.com 2001-05-17
## 5439 lillian.villarreal@enron.com 2001-05-17
## 5440 lillian.villarreal@enron.com 2001-05-17
## 5441 lillian.villarreal@enron.com 2001-05-17
## 5442 lillian.villarreal@enron.com 2001-05-17
## 5443 lillian.villarreal@enron.com 2001-05-17
## 5444 lillian.villarreal@enron.com 2001-05-17
## 5445 lillian.villarreal@enron.com 2001-05-17
## 5446 lillian.villarreal@enron.com 2001-05-17
## 5447 lillian.villarreal@enron.com 2001-05-17
## 5448 lillian.villarreal@enron.com 2001-05-17
## 5449 pamela.rush@enron.com 2001-05-18
## 5450 pamela.rush@enron.com 2001-05-18
## 5451 pamela.rush@enron.com 2001-05-18
## 5452 pamela.rush@enron.com 2001-05-18
## 5453 pamela.rush@enron.com 2001-05-18
## 5454 geneva.davis@enron.com 2001-05-16
## 5455 geneva.davis@enron.com 2001-05-16
## 5456 lillian.villarreal@enron.com 2001-05-15
## 5457 lillian.villarreal@enron.com 2001-05-15
## 5458 lillian.villarreal@enron.com 2001-05-15
## 5459 lillian.villarreal@enron.com 2001-05-15
## 5460 lillian.villarreal@enron.com 2001-05-15
## 5461 lorna.brennan@enron.com 2001-10-01
## 5462 lorna.brennan@enron.com 2001-10-01
## 5463 lorna.brennan@enron.com 2001-10-01
## 5464 lorna.brennan@enron.com 2001-10-01
## 5465 lorna.brennan@enron.com 2001-10-01
## 5466 lorna.brennan@enron.com 2001-10-01
## 5467 lorna.brennan@enron.com 2001-10-01
## 5468 lorna.brennan@enron.com 2001-10-01
## 5469 lorna.brennan@enron.com 2001-10-01
## 5470 lorna.brennan@enron.com 2001-10-01
## 5471 lorna.brennan@enron.com 2001-10-01
## 5472 lorna.brennan@enron.com 2001-10-01
## 5473 lorna.brennan@enron.com 2001-10-01
## 5474 lorna.brennan@enron.com 2001-10-01
## 5475 lorna.brennan@enron.com 2001-10-01
## 5476 lorna.brennan@enron.com 2001-10-01
## 5477 lorna.brennan@enron.com 2001-10-01
## 5478 lorna.brennan@enron.com 2001-10-01
## 5479 lorna.brennan@enron.com 2001-10-01
## 5480 lorna.brennan@enron.com 2001-10-01
## 5481 lorna.brennan@enron.com 2001-10-01
## 5482 lorna.brennan@enron.com 2001-10-01
## 5483 lorna.brennan@enron.com 2001-10-01
## 5484 lorna.brennan@enron.com 2001-10-01
## 5485 lorna.brennan@enron.com 2001-10-01
## 5486 lorna.brennan@enron.com 2001-10-01
## 5487 lorna.brennan@enron.com 2001-10-01
## 5488 lorna.brennan@enron.com 2001-10-01
## 5489 lorna.brennan@enron.com 2001-10-01
## 5490 lorna.brennan@enron.com 2001-10-01
## 5491 lorna.brennan@enron.com 2001-10-01
## 5492 lorna.brennan@enron.com 2001-10-01
## 5493 lorna.brennan@enron.com 2001-10-01
## 5494 lorna.brennan@enron.com 2001-10-01
## 5495 lorna.brennan@enron.com 2001-10-01
## 5496 lorna.brennan@enron.com 2001-10-01
## 5497 lorna.brennan@enron.com 2001-10-01
## 5498 lorna.brennan@enron.com 2001-10-01
## 5499 lorna.brennan@enron.com 2001-10-01
## 5500 lorna.brennan@enron.com 2001-10-01
## 5501 lorna.brennan@enron.com 2001-10-01
## 5502 lorna.brennan@enron.com 2001-10-01
## 5503 lorna.brennan@enron.com 2001-10-01
## 5504 lorna.brennan@enron.com 2001-10-01
## 5505 lorna.brennan@enron.com 2001-10-01
## 5506 lorna.brennan@enron.com 2001-10-01
## 5507 lorna.brennan@enron.com 2001-10-01
## 5508 lorna.brennan@enron.com 2001-10-01
## 5509 lorna.brennan@enron.com 2001-10-01
## 5510 lorna.brennan@enron.com 2001-10-01
## 5511 lorna.brennan@enron.com 2001-10-01
## 5512 lorna.brennan@enron.com 2001-10-01
## 5513 lorna.brennan@enron.com 2001-10-01
## 5514 lorna.brennan@enron.com 2001-10-01
## 5515 lorna.brennan@enron.com 2001-10-01
## 5516 lorna.brennan@enron.com 2001-10-01
## 5517 lorna.brennan@enron.com 2001-10-01
## 5518 lorna.brennan@enron.com 2001-10-01
## 5519 lorna.brennan@enron.com 2001-10-01
## 5520 lorna.brennan@enron.com 2001-10-01
## 5521 lorna.brennan@enron.com 2001-10-01
## 5522 lorna.brennan@enron.com 2001-10-01
## 5523 lorna.brennan@enron.com 2001-10-01
## 5524 lorna.brennan@enron.com 2001-10-01
## 5525 lorna.brennan@enron.com 2001-10-01
## 5526 lorna.brennan@enron.com 2001-10-01
## 5527 lorna.brennan@enron.com 2001-10-01
## 5528 lorna.brennan@enron.com 2001-10-01
## 5529 lorna.brennan@enron.com 2001-10-01
## 5530 lorna.brennan@enron.com 2001-10-01
## 5531 lorna.brennan@enron.com 2001-10-01
## 5532 lorna.brennan@enron.com 2001-10-01
## 5533 lorna.brennan@enron.com 2001-10-01
## 5534 lorna.brennan@enron.com 2001-10-01
## 5535 lorna.brennan@enron.com 2001-10-01
## 5536 lorna.brennan@enron.com 2001-10-01
## 5537 lorna.brennan@enron.com 2001-10-01
## 5538 lorna.brennan@enron.com 2001-10-01
## 5539 lorna.brennan@enron.com 2001-10-01
## 5540 lorna.brennan@enron.com 2001-10-01
## 5541 lorna.brennan@enron.com 2001-10-01
## 5542 lorna.brennan@enron.com 2001-10-01
## 5543 lorna.brennan@enron.com 2001-10-01
## 5544 lorna.brennan@enron.com 2001-10-01
## 5545 lorna.brennan@enron.com 2001-10-01
## 5546 lorna.brennan@enron.com 2001-10-01
## 5547 lorna.brennan@enron.com 2001-10-01
## 5548 lorna.brennan@enron.com 2001-10-01
## 5549 lorna.brennan@enron.com 2001-10-01
## 5550 lorna.brennan@enron.com 2001-10-01
## 5551 lorna.brennan@enron.com 2001-10-01
## 5552 lorna.brennan@enron.com 2001-10-01
## 5553 lorna.brennan@enron.com 2001-10-01
## 5554 lorna.brennan@enron.com 2001-10-01
## 5555 lorna.brennan@enron.com 2001-10-01
## 5556 lorna.brennan@enron.com 2001-10-01
## 5557 lorna.brennan@enron.com 2001-10-01
## 5558 lorna.brennan@enron.com 2001-10-01
## 5559 lorna.brennan@enron.com 2001-10-01
## 5560 dguertin@sempratrading.com 2001-09-25
## 5561 dguertin@sempratrading.com 2001-09-17
## 5562 steve_irizarry@kindermorgan.com 2001-05-02
## 5563 steve_irizarry@kindermorgan.com 2001-05-02
## 5564 steve_irizarry@kindermorgan.com 2001-05-02
## 5565 steve_irizarry@kindermorgan.com 2001-05-02
## 5566 steve_irizarry@kindermorgan.com 2001-05-02
## 5567 steve_irizarry@kindermorgan.com 2001-05-02
## 5568 steve_irizarry@kindermorgan.com 2001-05-02
## 5569 steve_irizarry@kindermorgan.com 2001-05-02
## 5570 steve_irizarry@kindermorgan.com 2001-05-02
## 5571 steve_irizarry@kindermorgan.com 2001-05-02
## 5572 steve_irizarry@kindermorgan.com 2001-05-02
## 5573 steve_irizarry@kindermorgan.com 2001-05-02
## 5574 steve_irizarry@kindermorgan.com 2001-05-02
## 5575 steve_irizarry@kindermorgan.com 2001-05-02
## 5576 steve_irizarry@kindermorgan.com 2001-05-02
## 5577 steve_irizarry@kindermorgan.com 2001-05-02
## 5578 steve_irizarry@kindermorgan.com 2001-05-02
## 5579 steve_irizarry@kindermorgan.com 2001-05-02
## 5580 steve_irizarry@kindermorgan.com 2001-05-02
## 5581 steve_irizarry@kindermorgan.com 2001-05-02
## 5582 steve_irizarry@kindermorgan.com 2001-05-02
## 5583 steve_irizarry@kindermorgan.com 2001-05-02
## 5584 steve_irizarry@kindermorgan.com 2001-05-02
## 5585 steve_irizarry@kindermorgan.com 2001-05-02
## 5586 steve_irizarry@kindermorgan.com 2001-05-02
## 5587 steve_irizarry@kindermorgan.com 2001-05-02
## 5588 steve_irizarry@kindermorgan.com 2001-05-02
## 5589 steve_irizarry@kindermorgan.com 2001-05-02
## 5590 steve_irizarry@kindermorgan.com 2001-05-02
## 5591 steve_irizarry@kindermorgan.com 2001-05-02
## 5592 steve_irizarry@kindermorgan.com 2001-05-02
## 5593 steve_irizarry@kindermorgan.com 2001-05-02
## 5594 steve_irizarry@kindermorgan.com 2001-05-02
## 5595 steve_irizarry@kindermorgan.com 2001-05-02
## 5596 steve_irizarry@kindermorgan.com 2001-05-02
## 5597 steve_irizarry@kindermorgan.com 2001-05-02
## 5598 steve_irizarry@kindermorgan.com 2001-05-02
## 5599 steve_irizarry@kindermorgan.com 2001-05-02
## 5600 steve_irizarry@kindermorgan.com 2001-05-02
## 5601 steve_irizarry@kindermorgan.com 2001-05-02
## 5602 steve_irizarry@kindermorgan.com 2001-05-02
## 5603 steve_irizarry@kindermorgan.com 2001-05-02
## 5604 steve_irizarry@kindermorgan.com 2001-05-02
## 5605 steve_irizarry@kindermorgan.com 2001-05-02
## 5606 steve_irizarry@kindermorgan.com 2001-05-02
## 5607 paula.corey@enron.com 2002-02-25
## 5608 paula.corey@enron.com 2002-02-25
## 5609 paula.corey@enron.com 2002-02-25
## 5610 paula.corey@enron.com 2002-02-25
## 5611 paula.corey@enron.com 2002-02-25
## 5612 paula.corey@enron.com 2002-02-25
## 5613 paula.corey@enron.com 2002-02-25
## 5614 paula.corey@enron.com 2002-02-25
## 5615 paula.corey@enron.com 2002-02-25
## 5616 paula.corey@enron.com 2002-02-25
## 5617 paula.corey@enron.com 2002-02-25
## 5618 paula.corey@enron.com 2002-02-25
## 5619 paula.corey@enron.com 2002-02-25
## 5620 paula.corey@enron.com 2002-02-25
## 5621 paula.corey@enron.com 2002-02-25
## 5622 paula.corey@enron.com 2002-02-25
## 5623 paula.corey@enron.com 2002-02-25
## 5624 paula.corey@enron.com 2002-02-25
## 5625 paula.corey@enron.com 2002-02-25
## 5626 paula.corey@enron.com 2002-02-25
## 5627 paula.corey@enron.com 2002-02-25
## 5628 paula.corey@enron.com 2002-02-25
## 5629 paula.corey@enron.com 2002-02-25
## 5630 paula.corey@enron.com 2002-02-25
## 5631 paula.corey@enron.com 2002-02-25
## 5632 paula.corey@enron.com 2002-02-25
## 5633 paula.corey@enron.com 2002-02-25
## 5634 paula.corey@enron.com 2002-02-25
## 5635 paula.corey@enron.com 2002-02-25
## 5636 paula.corey@enron.com 2002-02-25
## 5637 paula.corey@enron.com 2002-02-25
## 5638 paula.corey@enron.com 2002-02-25
## 5639 paula.corey@enron.com 2002-02-25
## 5640 paula.corey@enron.com 2002-02-25
## 5641 paula.corey@enron.com 2002-02-25
## 5642 paula.corey@enron.com 2002-02-25
## 5643 paula.corey@enron.com 2002-02-25
## 5644 paula.corey@enron.com 2002-02-25
## 5645 paula.corey@enron.com 2002-02-25
## 5646 paula.corey@enron.com 2002-02-25
## 5647 paula.corey@enron.com 2002-02-25
## 5648 paula.corey@enron.com 2002-02-25
## 5649 paula.corey@enron.com 2002-02-25
## 5650 paula.corey@enron.com 2002-02-25
## 5651 paula.corey@enron.com 2002-02-25
## 5652 paula.corey@enron.com 2002-02-25
## 5653 paula.corey@enron.com 2002-02-25
## 5654 paula.corey@enron.com 2002-02-25
## 5655 paula.corey@enron.com 2002-02-25
## 5656 paula.corey@enron.com 2002-02-25
## 5657 paula.corey@enron.com 2002-02-25
## 5658 paula.corey@enron.com 2002-02-25
## 5659 paula.corey@enron.com 2002-02-25
## 5660 paula.corey@enron.com 2002-02-25
## 5661 paula.corey@enron.com 2002-02-25
## 5662 paula.corey@enron.com 2002-02-25
## 5663 paula.corey@enron.com 2002-02-25
## 5664 paula.corey@enron.com 2002-02-25
## 5665 paula.corey@enron.com 2002-02-25
## 5666 paula.corey@enron.com 2002-02-25
## 5667 paula.corey@enron.com 2002-02-25
## 5668 paula.corey@enron.com 2002-02-25
## 5669 paula.corey@enron.com 2002-02-25
## 5670 paula.corey@enron.com 2002-02-25
## 5671 paula.corey@enron.com 2002-02-25
## 5672 paula.corey@enron.com 2002-02-25
## 5673 paula.corey@enron.com 2002-02-25
## 5674 paula.corey@enron.com 2002-02-25
## 5675 paula.corey@enron.com 2002-02-25
## 5676 paula.corey@enron.com 2002-02-25
## 5677 paula.corey@enron.com 2002-02-25
## 5678 paula.corey@enron.com 2002-02-25
## 5679 paula.corey@enron.com 2002-02-25
## 5680 paula.corey@enron.com 2002-02-25
## 5681 paula.corey@enron.com 2002-02-25
## 5682 paula.corey@enron.com 2002-02-25
## 5683 paula.corey@enron.com 2002-02-25
## 5684 paula.corey@enron.com 2002-02-25
## 5685 paula.corey@enron.com 2002-02-25
## 5686 paula.corey@enron.com 2002-02-25
## 5687 paula.corey@enron.com 2002-02-25
## 5688 paula.corey@enron.com 2002-02-25
## 5689 paula.corey@enron.com 2002-02-25
## 5690 paula.corey@enron.com 2002-02-25
## 5691 paula.corey@enron.com 2002-02-25
## 5692 paula.corey@enron.com 2002-02-25
## 5693 paula.corey@enron.com 2002-02-25
## 5694 paula.corey@enron.com 2002-02-25
## 5695 paula.corey@enron.com 2002-02-25
## 5696 paula.corey@enron.com 2002-02-25
## 5697 paula.corey@enron.com 2002-02-25
## 5698 paula.corey@enron.com 2002-02-25
## 5699 paula.corey@enron.com 2002-02-25
## 5700 paula.corey@enron.com 2002-02-25
## 5701 paula.corey@enron.com 2002-02-25
## 5702 paula.corey@enron.com 2002-02-25
## 5703 paula.corey@enron.com 2002-02-25
## 5704 paula.corey@enron.com 2002-02-25
## 5705 paula.corey@enron.com 2002-02-25
## 5706 paula.corey@enron.com 2002-02-25
## 5707 paula.corey@enron.com 2002-02-25
## 5708 lippmanc@aol.com 2002-01-31
## 5709 lorna.brennan@enron.com 2002-01-16
## 5710 lorna.brennan@enron.com 2002-01-16
## 5711 lorna.brennan@enron.com 2002-01-16
## 5712 lorna.brennan@enron.com 2002-01-16
## 5713 lorna.brennan@enron.com 2002-01-16
## 5714 lorna.brennan@enron.com 2002-01-16
## 5715 lorna.brennan@enron.com 2002-01-16
## 5716 lorna.brennan@enron.com 2002-01-16
## 5717 lorna.brennan@enron.com 2002-01-16
## 5718 lorna.brennan@enron.com 2002-01-16
## 5719 lorna.brennan@enron.com 2002-01-16
## 5720 lorna.brennan@enron.com 2002-01-16
## 5721 lorna.brennan@enron.com 2002-01-11
## 5722 lorna.brennan@enron.com 2002-01-11
## 5723 lorna.brennan@enron.com 2002-01-11
## 5724 lorna.brennan@enron.com 2002-01-11
## 5725 lorna.brennan@enron.com 2002-01-11
## 5726 lorna.brennan@enron.com 2002-01-11
## 5727 lorna.brennan@enron.com 2002-01-11
## 5728 lorna.brennan@enron.com 2002-01-11
## 5729 lorna.brennan@enron.com 2002-01-11
## 5730 lorna.brennan@enron.com 2002-01-11
## 5731 lorna.brennan@enron.com 2002-01-11
## 5732 lorna.brennan@enron.com 2002-01-11
## 5733 lorna.brennan@enron.com 2002-01-11
## 5734 lorna.brennan@enron.com 2002-01-11
## 5735 lorna.brennan@enron.com 2002-01-11
## 5736 lorna.brennan@enron.com 2002-01-11
## 5737 lorna.brennan@enron.com 2002-01-11
## 5738 lorna.brennan@enron.com 2002-01-11
## 5739 lorna.brennan@enron.com 2002-01-11
## 5740 lorna.brennan@enron.com 2002-01-11
## 5741 lorna.brennan@enron.com 2002-01-11
## 5742 lorna.brennan@enron.com 2002-01-11
## 5743 lorna.brennan@enron.com 2002-01-11
## 5744 lorna.brennan@enron.com 2002-01-11
## 5745 lorna.brennan@enron.com 2002-01-11
## 5746 lorna.brennan@enron.com 2002-01-11
## 5747 lorna.brennan@enron.com 2002-01-11
## 5748 lorna.brennan@enron.com 2002-01-11
## 5749 lorna.brennan@enron.com 2002-01-11
## 5750 lorna.brennan@enron.com 2002-01-11
## 5751 lorna.brennan@enron.com 2002-01-11
## 5752 lorna.brennan@enron.com 2002-01-11
## 5753 lorna.brennan@enron.com 2002-01-11
## 5754 lorna.brennan@enron.com 2002-01-11
## 5755 lorna.brennan@enron.com 2002-01-11
## 5756 lorna.brennan@enron.com 2002-01-11
## 5757 lorna.brennan@enron.com 2002-01-11
## 5758 lorna.brennan@enron.com 2002-01-11
## 5759 lorna.brennan@enron.com 2002-01-11
## 5760 lorna.brennan@enron.com 2002-01-11
## 5761 lorna.brennan@enron.com 2002-01-11
## 5762 lorna.brennan@enron.com 2002-01-11
## 5763 lorna.brennan@enron.com 2002-01-11
## 5764 lorna.brennan@enron.com 2002-01-11
## 5765 lorna.brennan@enron.com 2002-01-11
## 5766 lorna.brennan@enron.com 2002-01-11
## 5767 lorna.brennan@enron.com 2002-01-11
## 5768 lorna.brennan@enron.com 2002-01-11
## 5769 lorna.brennan@enron.com 2002-01-11
## 5770 lorna.brennan@enron.com 2002-01-11
## 5771 lorna.brennan@enron.com 2002-01-11
## 5772 lorna.brennan@enron.com 2002-01-11
## 5773 lorna.brennan@enron.com 2002-01-11
## 5774 lorna.brennan@enron.com 2002-01-11
## 5775 lorna.brennan@enron.com 2002-01-11
## 5776 lorna.brennan@enron.com 2002-01-11
## 5777 lorna.brennan@enron.com 2002-01-11
## 5778 lorna.brennan@enron.com 2002-01-11
## 5779 lorna.brennan@enron.com 2002-01-11
## 5780 lorna.brennan@enron.com 2002-01-11
## 5781 lorna.brennan@enron.com 2002-01-11
## 5782 lorna.brennan@enron.com 2002-01-11
## 5783 lorna.brennan@enron.com 2002-01-11
## 5784 lorna.brennan@enron.com 2002-01-11
## 5785 lorna.brennan@enron.com 2002-01-11
## 5786 lorna.brennan@enron.com 2002-01-11
## 5787 lorna.brennan@enron.com 2002-01-11
## 5788 lorna.brennan@enron.com 2002-01-11
## 5789 lorna.brennan@enron.com 2002-01-11
## 5790 lorna.brennan@enron.com 2002-01-11
## 5791 lorna.brennan@enron.com 2002-01-11
## 5792 lorna.brennan@enron.com 2001-10-23
## 5793 lorna.brennan@enron.com 2001-10-23
## 5794 lorna.brennan@enron.com 2001-10-23
## 5795 lorna.brennan@enron.com 2001-10-23
## 5796 lorna.brennan@enron.com 2001-10-23
## 5797 lorna.brennan@enron.com 2001-10-23
## 5798 lorna.brennan@enron.com 2001-10-23
## 5799 lorna.brennan@enron.com 2001-10-23
## 5800 lorna.brennan@enron.com 2001-10-23
## 5801 lorna.brennan@enron.com 2001-10-23
## 5802 lorna.brennan@enron.com 2001-10-23
## 5803 lorna.brennan@enron.com 2001-10-23
## 5804 lorna.brennan@enron.com 2001-10-23
## 5805 lorna.brennan@enron.com 2001-10-23
## 5806 lorna.brennan@enron.com 2001-10-23
## 5807 lorna.brennan@enron.com 2001-10-23
## 5808 lorna.brennan@enron.com 2001-10-23
## 5809 lorna.brennan@enron.com 2001-10-23
## 5810 lorna.brennan@enron.com 2001-10-23
## 5811 lorna.brennan@enron.com 2001-10-23
## 5812 no.address@enron.com 2001-10-08
## 5813 lippmanc@aol.com 2001-09-21
## 5814 lorna.brennan@enron.com 2001-10-04
## 5815 lorna.brennan@enron.com 2001-10-04
## 5816 lorna.brennan@enron.com 2001-10-04
## 5817 lorna.brennan@enron.com 2001-10-04
## 5818 lorna.brennan@enron.com 2001-10-04
## 5819 lorna.brennan@enron.com 2001-10-04
## 5820 lorna.brennan@enron.com 2001-10-04
## 5821 lorna.brennan@enron.com 2001-10-04
## 5822 lorna.brennan@enron.com 2001-10-04
## 5823 lorna.brennan@enron.com 2001-10-04
## 5824 lorna.brennan@enron.com 2001-07-23
## 5825 lorna.brennan@enron.com 2001-07-23
## 5826 lorna.brennan@enron.com 2001-07-23
## 5827 lorna.brennan@enron.com 2001-07-23
## 5828 lorna.brennan@enron.com 2001-07-23
## 5829 lorna.brennan@enron.com 2001-07-23
## 5830 lorna.brennan@enron.com 2001-07-23
## 5831 lorna.brennan@enron.com 2001-07-23
## 5832 lorna.brennan@enron.com 2001-07-23
## 5833 lorna.brennan@enron.com 2001-07-23
## 5834 lorna.brennan@enron.com 2001-07-23
## 5835 lorna.brennan@enron.com 2001-07-23
## 5836 lorna.brennan@enron.com 2001-07-23
## 5837 lorna.brennan@enron.com 2001-07-23
## 5838 lorna.brennan@enron.com 2001-07-23
## 5839 lorna.brennan@enron.com 2001-07-23
## 5840 lorna.brennan@enron.com 2001-07-23
## 5841 lorna.brennan@enron.com 2001-07-23
## 5842 lorna.brennan@enron.com 2001-07-23
## 5843 lorna.brennan@enron.com 2001-07-23
## 5844 lorna.brennan@enron.com 2001-07-23
## 5845 lorna.brennan@enron.com 2001-07-23
## 5846 lorna.brennan@enron.com 2001-07-23
## 5847 lorna.brennan@enron.com 2001-07-23
## 5848 lorna.brennan@enron.com 2001-07-23
## 5849 lorna.brennan@enron.com 2001-07-23
## 5850 lorna.brennan@enron.com 2001-07-23
## 5851 lorna.brennan@enron.com 2001-07-23
## 5852 lorna.brennan@enron.com 2001-07-23
## 5853 lorna.brennan@enron.com 2001-07-23
## 5854 lorna.brennan@enron.com 2001-07-23
## 5855 lorna.brennan@enron.com 2001-07-23
## 5856 lorna.brennan@enron.com 2001-07-23
## 5857 lorna.brennan@enron.com 2001-07-23
## 5858 lorna.brennan@enron.com 2001-07-23
## 5859 lorna.brennan@enron.com 2001-07-23
## 5860 lorna.brennan@enron.com 2001-07-23
## 5861 lorna.brennan@enron.com 2001-07-23
## 5862 lorna.brennan@enron.com 2001-07-23
## 5863 lorna.brennan@enron.com 2001-07-23
## 5864 lorna.brennan@enron.com 2001-07-23
## 5865 lorna.brennan@enron.com 2001-07-23
## 5866 lorna.brennan@enron.com 2001-07-23
## 5867 lorna.brennan@enron.com 2001-07-23
## 5868 lorna.brennan@enron.com 2001-07-23
## 5869 lorna.brennan@enron.com 2001-07-23
## 5870 lorna.brennan@enron.com 2001-07-23
## 5871 lorna.brennan@enron.com 2001-07-23
## 5872 lorna.brennan@enron.com 2001-07-23
## 5873 lorna.brennan@enron.com 2001-07-23
## 5874 lorna.brennan@enron.com 2001-07-23
## 5875 lorna.brennan@enron.com 2001-07-23
## 5876 lorna.brennan@enron.com 2001-07-23
## 5877 lorna.brennan@enron.com 2001-07-23
## 5878 lorna.brennan@enron.com 2001-07-23
## 5879 lorna.brennan@enron.com 2001-07-23
## 5880 lorna.brennan@enron.com 2001-07-23
## 5881 lorna.brennan@enron.com 2001-07-23
## 5882 lorna.brennan@enron.com 2001-07-23
## 5883 lorna.brennan@enron.com 2001-07-23
## 5884 lorna.brennan@enron.com 2001-07-23
## 5885 lorna.brennan@enron.com 2001-07-23
## 5886 lorna.brennan@enron.com 2001-07-23
## 5887 lorna.brennan@enron.com 2001-07-23
## 5888 lorna.brennan@enron.com 2001-07-23
## 5889 lorna.brennan@enron.com 2001-07-23
## 5890 lorna.brennan@enron.com 2001-07-23
## 5891 lorna.brennan@enron.com 2001-07-23
## 5892 lorna.brennan@enron.com 2001-07-23
## 5893 lorna.brennan@enron.com 2001-07-23
## 5894 lorna.brennan@enron.com 2001-07-23
## 5895 lorna.brennan@enron.com 2001-07-23
## 5896 lorna.brennan@enron.com 2001-07-23
## 5897 lorna.brennan@enron.com 2001-07-23
## 5898 lorna.brennan@enron.com 2001-07-23
## 5899 glen.hass@enron.com 2001-08-07
## 5900 glen.hass@enron.com 2001-08-07
## 5901 glen.hass@enron.com 2001-08-07
## 5902 glen.hass@enron.com 2001-08-07
## 5903 glen.hass@enron.com 2001-08-07
## 5904 glen.hass@enron.com 2001-08-07
## 5905 lorna.brennan@enron.com 2001-08-09
## 5906 lorna.brennan@enron.com 2001-08-09
## 5907 lorna.brennan@enron.com 2001-08-09
## 5908 lorna.brennan@enron.com 2001-08-09
## 5909 lorna.brennan@enron.com 2001-08-09
## 5910 lorna.brennan@enron.com 2001-08-09
## 5911 lorna.brennan@enron.com 2001-08-09
## 5912 lorna.brennan@enron.com 2001-08-09
## 5913 lorna.brennan@enron.com 2001-08-09
## 5914 lorna.brennan@enron.com 2001-08-09
## 5915 lorna.brennan@enron.com 2001-08-09
## 5916 lorna.brennan@enron.com 2001-08-09
## 5917 lorna.brennan@enron.com 2001-08-09
## 5918 lorna.brennan@enron.com 2001-08-09
## 5919 lorna.brennan@enron.com 2001-08-09
## 5920 lorna.brennan@enron.com 2001-08-09
## 5921 lorna.brennan@enron.com 2001-08-09
## 5922 lorna.brennan@enron.com 2001-08-09
## 5923 lorna.brennan@enron.com 2001-08-09
## 5924 lorna.brennan@enron.com 2001-08-09
## 5925 lorna.brennan@enron.com 2001-08-09
## 5926 lorna.brennan@enron.com 2001-08-09
## 5927 lorna.brennan@enron.com 2001-08-09
## 5928 lorna.brennan@enron.com 2001-08-09
## 5929 lorna.brennan@enron.com 2001-08-09
## 5930 lorna.brennan@enron.com 2001-08-09
## 5931 lorna.brennan@enron.com 2001-08-09
## 5932 lorna.brennan@enron.com 2001-08-09
## 5933 lorna.brennan@enron.com 2001-08-09
## 5934 lorna.brennan@enron.com 2001-08-09
## 5935 lorna.brennan@enron.com 2001-08-09
## 5936 lorna.brennan@enron.com 2001-08-09
## 5937 lorna.brennan@enron.com 2001-08-09
## 5938 lorna.brennan@enron.com 2001-08-09
## 5939 lorna.brennan@enron.com 2001-08-09
## 5940 lorna.brennan@enron.com 2001-08-09
## 5941 lorna.brennan@enron.com 2001-08-09
## 5942 lorna.brennan@enron.com 2001-08-09
## 5943 lorna.brennan@enron.com 2001-08-09
## 5944 lorna.brennan@enron.com 2001-08-09
## 5945 lorna.brennan@enron.com 2001-08-09
## 5946 lorna.brennan@enron.com 2001-08-09
## 5947 lorna.brennan@enron.com 2001-08-09
## 5948 lorna.brennan@enron.com 2001-08-09
## 5949 lorna.brennan@enron.com 2001-08-09
## 5950 lorna.brennan@enron.com 2001-08-09
## 5951 lorna.brennan@enron.com 2001-08-09
## 5952 lorna.brennan@enron.com 2001-08-09
## 5953 lorna.brennan@enron.com 2001-08-09
## 5954 lorna.brennan@enron.com 2001-08-09
## 5955 lorna.brennan@enron.com 2001-08-09
## 5956 lorna.brennan@enron.com 2001-08-09
## 5957 lorna.brennan@enron.com 2001-08-09
## 5958 lorna.brennan@enron.com 2001-08-09
## 5959 lorna.brennan@enron.com 2001-08-09
## 5960 lorna.brennan@enron.com 2001-08-09
## 5961 lorna.brennan@enron.com 2001-08-09
## 5962 lorna.brennan@enron.com 2001-08-09
## 5963 lorna.brennan@enron.com 2001-08-09
## 5964 lorna.brennan@enron.com 2001-08-09
## 5965 lorna.brennan@enron.com 2001-08-09
## 5966 lorna.brennan@enron.com 2001-08-09
## 5967 lorna.brennan@enron.com 2001-08-09
## 5968 lorna.brennan@enron.com 2001-08-09
## 5969 lorna.brennan@enron.com 2001-08-09
## 5970 lorna.brennan@enron.com 2001-08-09
## 5971 lorna.brennan@enron.com 2001-08-09
## 5972 lorna.brennan@enron.com 2001-08-09
## 5973 lorna.brennan@enron.com 2001-08-09
## 5974 lorna.brennan@enron.com 2001-08-09
## 5975 lorna.brennan@enron.com 2001-08-09
## 5976 lorna.brennan@enron.com 2001-08-09
## 5977 lorna.brennan@enron.com 2001-08-09
## 5978 lorna.brennan@enron.com 2001-08-09
## 5979 lorna.brennan@enron.com 2001-08-09
## 5980 lorna.brennan@enron.com 2001-08-09
## 5981 lorna.brennan@enron.com 2001-08-09
## 5982 lorna.brennan@enron.com 2001-08-09
## 5983 lorna.brennan@enron.com 2001-08-09
## 5984 lorna.brennan@enron.com 2001-08-09
## 5985 lorna.brennan@enron.com 2001-08-09
## 5986 tammy.jaquet@enron.com 2001-07-27
## 5987 tammy.jaquet@enron.com 2001-07-27
## 5988 tammy.jaquet@enron.com 2001-07-27
## 5989 lorna.brennan@enron.com 2001-07-19
## 5990 lorna.brennan@enron.com 2001-07-19
## 5991 lorna.brennan@enron.com 2001-07-19
## 5992 lorna.brennan@enron.com 2001-07-19
## 5993 lorna.brennan@enron.com 2001-07-19
## 5994 lorna.brennan@enron.com 2001-07-19
## 5995 lorna.brennan@enron.com 2001-07-19
## 5996 lorna.brennan@enron.com 2001-07-19
## 5997 lorna.brennan@enron.com 2001-07-19
## 5998 lorna.brennan@enron.com 2001-07-19
## 5999 lorna.brennan@enron.com 2001-07-19
## 6000 lorna.brennan@enron.com 2001-07-19
## 6001 lorna.brennan@enron.com 2001-07-19
## 6002 lorna.brennan@enron.com 2001-07-19
## 6003 lorna.brennan@enron.com 2001-07-19
## 6004 lorna.brennan@enron.com 2001-07-19
## 6005 lorna.brennan@enron.com 2001-07-19
## 6006 lorna.brennan@enron.com 2001-07-19
## 6007 lorna.brennan@enron.com 2001-07-19
## 6008 lorna.brennan@enron.com 2001-07-19
## 6009 lorna.brennan@enron.com 2001-07-19
## 6010 lorna.brennan@enron.com 2001-07-19
## 6011 lorna.brennan@enron.com 2001-07-19
## 6012 lorna.brennan@enron.com 2001-07-19
## 6013 lorna.brennan@enron.com 2001-07-19
## 6014 lorna.brennan@enron.com 2001-07-19
## 6015 lorna.brennan@enron.com 2001-07-19
## 6016 lorna.brennan@enron.com 2001-07-19
## 6017 lorna.brennan@enron.com 2001-07-19
## 6018 lorna.brennan@enron.com 2001-07-19
## 6019 lorna.brennan@enron.com 2001-07-19
## 6020 lorna.brennan@enron.com 2001-07-19
## 6021 lorna.brennan@enron.com 2001-07-19
## 6022 lorna.brennan@enron.com 2001-07-19
## 6023 lorna.brennan@enron.com 2001-07-19
## 6024 lorna.brennan@enron.com 2001-07-19
## 6025 lorna.brennan@enron.com 2001-07-19
## 6026 lorna.brennan@enron.com 2001-07-19
## 6027 lorna.brennan@enron.com 2001-07-19
## 6028 lorna.brennan@enron.com 2001-07-19
## 6029 lorna.brennan@enron.com 2001-07-19
## 6030 lorna.brennan@enron.com 2001-07-19
## 6031 lorna.brennan@enron.com 2001-07-19
## 6032 lorna.brennan@enron.com 2001-07-19
## 6033 lorna.brennan@enron.com 2001-07-19
## 6034 lorna.brennan@enron.com 2001-07-19
## 6035 lorna.brennan@enron.com 2001-07-19
## 6036 lorna.brennan@enron.com 2001-07-19
## 6037 lorna.brennan@enron.com 2001-07-19
## 6038 lorna.brennan@enron.com 2001-07-19
## 6039 lorna.brennan@enron.com 2001-07-19
## 6040 lorna.brennan@enron.com 2001-07-19
## 6041 lorna.brennan@enron.com 2001-07-19
## 6042 lorna.brennan@enron.com 2001-07-19
## 6043 lorna.brennan@enron.com 2001-07-19
## 6044 lorna.brennan@enron.com 2001-07-19
## 6045 lorna.brennan@enron.com 2001-07-19
## 6046 lorna.brennan@enron.com 2001-07-19
## 6047 lorna.brennan@enron.com 2001-07-19
## 6048 lorna.brennan@enron.com 2001-07-19
## 6049 lorna.brennan@enron.com 2001-07-19
## 6050 lorna.brennan@enron.com 2001-07-19
## 6051 lorna.brennan@enron.com 2001-07-19
## 6052 lorna.brennan@enron.com 2001-07-19
## 6053 lorna.brennan@enron.com 2001-07-19
## 6054 lorna.brennan@enron.com 2001-07-19
## 6055 lorna.brennan@enron.com 2001-07-19
## 6056 lorna.brennan@enron.com 2001-07-19
## 6057 lorna.brennan@enron.com 2001-07-19
## 6058 lorna.brennan@enron.com 2001-07-19
## 6059 lorna.brennan@enron.com 2001-07-19
## 6060 lorna.brennan@enron.com 2001-07-19
## 6061 lorna.brennan@enron.com 2001-07-19
## 6062 lorna.brennan@enron.com 2001-07-19
## 6063 lorna.brennan@enron.com 2001-07-19
## 6064 lorna.brennan@enron.com 2001-07-19
## 6065 lorna.brennan@enron.com 2001-07-19
## 6066 lorna.brennan@enron.com 2001-07-19
## 6067 lorna.brennan@enron.com 2001-07-19
## 6068 lorna.brennan@enron.com 2001-07-19
## 6069 lorna.brennan@enron.com 2001-07-19
## 6070 lorna.brennan@enron.com 2001-07-19
## 6071 lorna.brennan@enron.com 2001-07-19
## 6072 lorna.brennan@enron.com 2001-07-19
## 6073 lorna.brennan@enron.com 2001-07-19
## 6074 lorna.brennan@enron.com 2001-07-19
## 6075 lorna.brennan@enron.com 2001-07-19
## 6076 lorna.brennan@enron.com 2001-07-19
## 6077 lorna.brennan@enron.com 2001-07-19
## 6078 lorna.brennan@enron.com 2001-07-19
## 6079 lorna.brennan@enron.com 2001-07-19
## 6080 lorna.brennan@enron.com 2001-07-19
## 6081 lorna.brennan@enron.com 2001-07-19
## 6082 lorna.brennan@enron.com 2001-07-19
## 6083 lorna.brennan@enron.com 2001-07-19
## 6084 lorna.brennan@enron.com 2001-07-19
## 6085 lorna.brennan@enron.com 2001-07-19
## 6086 lorna.brennan@enron.com 2001-07-19
## 6087 lorna.brennan@enron.com 2001-07-19
## 6088 lorna.brennan@enron.com 2001-07-02
## 6089 lorna.brennan@enron.com 2001-07-02
## 6090 lorna.brennan@enron.com 2001-07-02
## 6091 lorna.brennan@enron.com 2001-07-02
## 6092 lorna.brennan@enron.com 2001-07-02
## 6093 lorna.brennan@enron.com 2001-07-02
## 6094 lorna.brennan@enron.com 2001-07-02
## 6095 lorna.brennan@enron.com 2001-07-02
## 6096 lorna.brennan@enron.com 2001-07-02
## 6097 lorna.brennan@enron.com 2001-07-02
## 6098 lorna.brennan@enron.com 2001-07-02
## 6099 lorna.brennan@enron.com 2001-07-02
## 6100 lorna.brennan@enron.com 2001-07-02
## 6101 lorna.brennan@enron.com 2001-07-02
## 6102 lorna.brennan@enron.com 2001-07-02
## 6103 lorna.brennan@enron.com 2001-07-02
## 6104 lorna.brennan@enron.com 2001-07-02
## 6105 lorna.brennan@enron.com 2001-07-02
## 6106 lorna.brennan@enron.com 2001-07-02
## 6107 lorna.brennan@enron.com 2001-07-02
## 6108 lorna.brennan@enron.com 2001-07-02
## 6109 lorna.brennan@enron.com 2001-07-02
## 6110 lorna.brennan@enron.com 2001-07-02
## 6111 lorna.brennan@enron.com 2001-07-02
## 6112 lorna.brennan@enron.com 2001-07-02
## 6113 lorna.brennan@enron.com 2001-07-02
## 6114 lorna.brennan@enron.com 2001-07-02
## 6115 lorna.brennan@enron.com 2001-07-02
## 6116 lorna.brennan@enron.com 2001-07-02
## 6117 lorna.brennan@enron.com 2001-07-02
## 6118 lorna.brennan@enron.com 2001-07-02
## 6119 lorna.brennan@enron.com 2001-07-02
## 6120 lorna.brennan@enron.com 2001-07-02
## 6121 lorna.brennan@enron.com 2001-07-02
## 6122 lorna.brennan@enron.com 2001-07-02
## 6123 lorna.brennan@enron.com 2001-07-02
## 6124 lorna.brennan@enron.com 2001-07-02
## 6125 lorna.brennan@enron.com 2001-07-02
## 6126 lorna.brennan@enron.com 2001-07-02
## 6127 lorna.brennan@enron.com 2001-07-02
## 6128 lorna.brennan@enron.com 2001-07-02
## 6129 lorna.brennan@enron.com 2001-07-02
## 6130 lorna.brennan@enron.com 2001-07-02
## 6131 lorna.brennan@enron.com 2001-07-02
## 6132 lorna.brennan@enron.com 2001-07-02
## 6133 lorna.brennan@enron.com 2001-07-02
## 6134 lorna.brennan@enron.com 2001-07-02
## 6135 lorna.brennan@enron.com 2001-07-02
## 6136 lorna.brennan@enron.com 2001-07-02
## 6137 lorna.brennan@enron.com 2001-07-02
## 6138 lorna.brennan@enron.com 2001-07-02
## 6139 lorna.brennan@enron.com 2001-07-02
## 6140 lorna.brennan@enron.com 2001-07-02
## 6141 lorna.brennan@enron.com 2001-07-02
## 6142 lorna.brennan@enron.com 2001-07-02
## 6143 lorna.brennan@enron.com 2001-07-02
## 6144 lorna.brennan@enron.com 2001-07-02
## 6145 lorna.brennan@enron.com 2001-07-02
## 6146 lorna.brennan@enron.com 2001-07-02
## 6147 lorna.brennan@enron.com 2001-07-02
## 6148 lorna.brennan@enron.com 2001-07-02
## 6149 lorna.brennan@enron.com 2001-07-02
## 6150 lorna.brennan@enron.com 2001-07-02
## 6151 lorna.brennan@enron.com 2001-07-02
## 6152 lorna.brennan@enron.com 2001-07-02
## 6153 lorna.brennan@enron.com 2001-07-02
## 6154 lorna.brennan@enron.com 2001-07-02
## 6155 lorna.brennan@enron.com 2001-07-02
## 6156 lorna.brennan@enron.com 2001-07-02
## 6157 lorna.brennan@enron.com 2001-07-02
## 6158 lorna.brennan@enron.com 2001-07-02
## 6159 tammy.jaquet@enron.com 2001-07-11
## 6160 lorna.brennan@enron.com 2001-07-02
## 6161 lorna.brennan@enron.com 2001-07-02
## 6162 lorna.brennan@enron.com 2001-07-02
## 6163 lorna.brennan@enron.com 2001-07-02
## 6164 lorna.brennan@enron.com 2001-07-02
## 6165 lorna.brennan@enron.com 2001-07-02
## 6166 lorna.brennan@enron.com 2001-07-02
## 6167 lorna.brennan@enron.com 2001-07-02
## 6168 lorna.brennan@enron.com 2001-07-02
## 6169 lorna.brennan@enron.com 2001-07-02
## 6170 lorna.brennan@enron.com 2001-07-02
## 6171 lorna.brennan@enron.com 2001-07-02
## 6172 lorna.brennan@enron.com 2001-07-02
## 6173 lorna.brennan@enron.com 2001-07-02
## 6174 lorna.brennan@enron.com 2001-07-02
## 6175 lorna.brennan@enron.com 2001-07-02
## 6176 lorna.brennan@enron.com 2001-07-02
## 6177 lorna.brennan@enron.com 2001-07-02
## 6178 lorna.brennan@enron.com 2001-07-02
## 6179 lorna.brennan@enron.com 2001-07-02
## 6180 lorna.brennan@enron.com 2001-07-02
## 6181 lorna.brennan@enron.com 2001-07-02
## 6182 lorna.brennan@enron.com 2001-07-02
## 6183 lorna.brennan@enron.com 2001-07-02
## 6184 lorna.brennan@enron.com 2001-07-02
## 6185 lorna.brennan@enron.com 2001-07-02
## 6186 lorna.brennan@enron.com 2001-07-02
## 6187 lorna.brennan@enron.com 2001-07-02
## 6188 lorna.brennan@enron.com 2001-07-02
## 6189 lorna.brennan@enron.com 2001-07-02
## 6190 lorna.brennan@enron.com 2001-07-02
## 6191 lorna.brennan@enron.com 2001-07-02
## 6192 lorna.brennan@enron.com 2001-07-02
## 6193 lorna.brennan@enron.com 2001-07-02
## 6194 lorna.brennan@enron.com 2001-07-02
## 6195 lorna.brennan@enron.com 2001-07-02
## 6196 lorna.brennan@enron.com 2001-07-02
## 6197 lorna.brennan@enron.com 2001-07-02
## 6198 lorna.brennan@enron.com 2001-07-02
## 6199 lorna.brennan@enron.com 2001-07-02
## 6200 lorna.brennan@enron.com 2001-07-02
## 6201 lorna.brennan@enron.com 2001-07-02
## 6202 lorna.brennan@enron.com 2001-07-02
## 6203 lorna.brennan@enron.com 2001-07-02
## 6204 lorna.brennan@enron.com 2001-07-02
## 6205 lorna.brennan@enron.com 2001-07-02
## 6206 lorna.brennan@enron.com 2001-07-02
## 6207 lorna.brennan@enron.com 2001-07-02
## 6208 lorna.brennan@enron.com 2001-07-02
## 6209 lorna.brennan@enron.com 2001-07-02
## 6210 lorna.brennan@enron.com 2001-07-02
## 6211 lorna.brennan@enron.com 2001-07-02
## 6212 lorna.brennan@enron.com 2001-07-02
## 6213 lorna.brennan@enron.com 2001-07-02
## 6214 lorna.brennan@enron.com 2001-07-02
## 6215 lorna.brennan@enron.com 2001-07-02
## 6216 lorna.brennan@enron.com 2001-07-02
## 6217 lorna.brennan@enron.com 2001-07-02
## 6218 lorna.brennan@enron.com 2001-07-02
## 6219 lorna.brennan@enron.com 2001-07-02
## 6220 lorna.brennan@enron.com 2001-07-02
## 6221 lorna.brennan@enron.com 2001-07-02
## 6222 lorna.brennan@enron.com 2001-07-02
## 6223 lorna.brennan@enron.com 2001-07-02
## 6224 lorna.brennan@enron.com 2001-07-02
## 6225 lorna.brennan@enron.com 2001-07-02
## 6226 lorna.brennan@enron.com 2001-07-02
## 6227 lorna.brennan@enron.com 2001-07-02
## 6228 lorna.brennan@enron.com 2001-07-02
## 6229 lorna.brennan@enron.com 2001-07-02
## 6230 lorna.brennan@enron.com 2001-07-02
## 6231 lorna.brennan@enron.com 2001-07-02
## 6232 lorna.brennan@enron.com 2001-07-02
## 6233 lorna.brennan@enron.com 2001-07-02
## 6234 lorna.brennan@enron.com 2001-07-02
## 6235 lorna.brennan@enron.com 2001-07-02
## 6236 lorna.brennan@enron.com 2001-07-02
## 6237 lorna.brennan@enron.com 2001-07-02
## 6238 lorna.brennan@enron.com 2001-07-02
## 6239 lorna.brennan@enron.com 2001-07-02
## 6240 lorna.brennan@enron.com 2001-07-02
## 6241 lorna.brennan@enron.com 2001-06-29
## 6242 lorna.brennan@enron.com 2001-06-29
## 6243 lorna.brennan@enron.com 2001-06-29
## 6244 lorna.brennan@enron.com 2001-06-29
## 6245 lorna.brennan@enron.com 2001-06-29
## 6246 lorna.brennan@enron.com 2001-06-29
## 6247 lorna.brennan@enron.com 2001-06-29
## 6248 lorna.brennan@enron.com 2001-06-29
## 6249 lorna.brennan@enron.com 2001-06-29
## 6250 lorna.brennan@enron.com 2001-06-29
## 6251 lorna.brennan@enron.com 2001-06-29
## 6252 lorna.brennan@enron.com 2001-06-29
## 6253 lorna.brennan@enron.com 2001-06-29
## 6254 lorna.brennan@enron.com 2001-06-29
## 6255 lorna.brennan@enron.com 2001-06-29
## 6256 lorna.brennan@enron.com 2001-06-29
## 6257 lorna.brennan@enron.com 2001-06-29
## 6258 lorna.brennan@enron.com 2001-06-29
## 6259 lorna.brennan@enron.com 2001-06-29
## 6260 lorna.brennan@enron.com 2001-06-29
## 6261 lorna.brennan@enron.com 2001-06-29
## 6262 lorna.brennan@enron.com 2001-06-29
## 6263 lorna.brennan@enron.com 2001-06-29
## 6264 lorna.brennan@enron.com 2001-06-29
## 6265 lorna.brennan@enron.com 2001-06-29
## 6266 lorna.brennan@enron.com 2001-06-29
## 6267 lorna.brennan@enron.com 2001-06-29
## 6268 lorna.brennan@enron.com 2001-06-29
## 6269 lorna.brennan@enron.com 2001-06-29
## 6270 lorna.brennan@enron.com 2001-06-29
## 6271 lorna.brennan@enron.com 2001-06-29
## 6272 lorna.brennan@enron.com 2001-06-29
## 6273 lorna.brennan@enron.com 2001-06-29
## 6274 lorna.brennan@enron.com 2001-06-29
## 6275 lorna.brennan@enron.com 2001-06-29
## 6276 lorna.brennan@enron.com 2001-06-29
## 6277 lorna.brennan@enron.com 2001-06-29
## 6278 lorna.brennan@enron.com 2001-06-29
## 6279 lorna.brennan@enron.com 2001-06-29
## 6280 lorna.brennan@enron.com 2001-06-29
## 6281 lorna.brennan@enron.com 2001-06-29
## 6282 lorna.brennan@enron.com 2001-06-29
## 6283 lorna.brennan@enron.com 2001-06-29
## 6284 lorna.brennan@enron.com 2001-06-29
## 6285 lorna.brennan@enron.com 2001-06-29
## 6286 lorna.brennan@enron.com 2001-06-29
## 6287 lorna.brennan@enron.com 2001-06-29
## 6288 lorna.brennan@enron.com 2001-06-29
## 6289 lorna.brennan@enron.com 2001-06-29
## 6290 lorna.brennan@enron.com 2001-06-29
## 6291 lorna.brennan@enron.com 2001-06-29
## 6292 lorna.brennan@enron.com 2001-06-29
## 6293 lorna.brennan@enron.com 2001-06-29
## 6294 lorna.brennan@enron.com 2001-06-29
## 6295 lorna.brennan@enron.com 2001-06-29
## 6296 lorna.brennan@enron.com 2001-06-29
## 6297 lorna.brennan@enron.com 2001-06-29
## 6298 lorna.brennan@enron.com 2001-06-29
## 6299 lorna.brennan@enron.com 2001-06-29
## 6300 lorna.brennan@enron.com 2001-06-29
## 6301 lorna.brennan@enron.com 2001-06-29
## 6302 lorna.brennan@enron.com 2001-06-29
## 6303 lorna.brennan@enron.com 2001-06-29
## 6304 lorna.brennan@enron.com 2001-06-28
## 6305 lorna.brennan@enron.com 2001-06-28
## 6306 lorna.brennan@enron.com 2001-06-28
## 6307 lorna.brennan@enron.com 2001-06-28
## 6308 lorna.brennan@enron.com 2001-06-28
## 6309 lorna.brennan@enron.com 2001-06-28
## 6310 lorna.brennan@enron.com 2001-06-28
## 6311 lorna.brennan@enron.com 2001-06-28
## 6312 lorna.brennan@enron.com 2001-06-28
## 6313 lorna.brennan@enron.com 2001-06-28
## 6314 lorna.brennan@enron.com 2001-06-28
## 6315 lorna.brennan@enron.com 2001-06-28
## 6316 lorna.brennan@enron.com 2001-06-28
## 6317 lorna.brennan@enron.com 2001-06-28
## 6318 lorna.brennan@enron.com 2001-06-28
## 6319 lorna.brennan@enron.com 2001-06-28
## 6320 lorna.brennan@enron.com 2001-06-28
## 6321 lorna.brennan@enron.com 2001-06-28
## 6322 lorna.brennan@enron.com 2001-06-28
## 6323 lorna.brennan@enron.com 2001-06-28
## 6324 lorna.brennan@enron.com 2001-06-28
## 6325 lorna.brennan@enron.com 2001-06-28
## 6326 lorna.brennan@enron.com 2001-06-28
## 6327 lorna.brennan@enron.com 2001-06-28
## 6328 lorna.brennan@enron.com 2001-06-28
## 6329 lorna.brennan@enron.com 2001-06-28
## 6330 lorna.brennan@enron.com 2001-06-28
## 6331 lorna.brennan@enron.com 2001-06-28
## 6332 lorna.brennan@enron.com 2001-06-28
## 6333 lorna.brennan@enron.com 2001-06-28
## 6334 lorna.brennan@enron.com 2001-06-28
## 6335 lorna.brennan@enron.com 2001-06-28
## 6336 lorna.brennan@enron.com 2001-06-28
## 6337 lorna.brennan@enron.com 2001-06-28
## 6338 lorna.brennan@enron.com 2001-06-28
## 6339 lorna.brennan@enron.com 2001-06-28
## 6340 lorna.brennan@enron.com 2001-06-28
## 6341 lorna.brennan@enron.com 2001-06-28
## 6342 lorna.brennan@enron.com 2001-06-28
## 6343 lorna.brennan@enron.com 2001-06-28
## 6344 lorna.brennan@enron.com 2001-06-28
## 6345 lorna.brennan@enron.com 2001-06-28
## 6346 lorna.brennan@enron.com 2001-06-28
## 6347 lorna.brennan@enron.com 2001-06-28
## 6348 lorna.brennan@enron.com 2001-06-28
## 6349 lorna.brennan@enron.com 2001-06-28
## 6350 lorna.brennan@enron.com 2001-06-28
## 6351 lorna.brennan@enron.com 2001-06-28
## 6352 lorna.brennan@enron.com 2001-06-28
## 6353 lorna.brennan@enron.com 2001-06-28
## 6354 lorna.brennan@enron.com 2001-06-28
## 6355 lorna.brennan@enron.com 2001-06-28
## 6356 lorna.brennan@enron.com 2001-06-28
## 6357 lorna.brennan@enron.com 2001-06-28
## 6358 lorna.brennan@enron.com 2001-06-28
## 6359 lorna.brennan@enron.com 2001-06-28
## 6360 lorna.brennan@enron.com 2001-06-28
## 6361 lorna.brennan@enron.com 2001-06-28
## 6362 lorna.brennan@enron.com 2001-06-28
## 6363 lorna.brennan@enron.com 2001-06-28
## 6364 lorna.brennan@enron.com 2001-06-28
## 6365 lorna.brennan@enron.com 2001-06-28
## 6366 lorna.brennan@enron.com 2001-06-28
## 6367 lorna.brennan@enron.com 2001-06-28
## 6368 lorna.brennan@enron.com 2001-06-28
## 6369 lorna.brennan@enron.com 2001-06-28
## 6370 lorna.brennan@enron.com 2001-06-28
## 6371 lorna.brennan@enron.com 2001-06-28
## 6372 lorna.brennan@enron.com 2001-06-28
## 6373 lorna.brennan@enron.com 2001-06-28
## 6374 lorna.brennan@enron.com 2001-06-28
## 6375 lorna.brennan@enron.com 2001-06-28
## 6376 lorna.brennan@enron.com 2001-06-28
## 6377 lorna.brennan@enron.com 2001-06-28
## 6378 tammy.jaquet@enron.com 2001-06-20
## 6379 tammy.jaquet@enron.com 2001-06-20
## 6380 tammy.jaquet@enron.com 2001-05-29
## 6381 tammy.jaquet@enron.com 2001-05-17
## 6382 lorna.brennan@enron.com 2001-05-07
## 6383 lorna.brennan@enron.com 2001-05-07
## 6384 lorna.brennan@enron.com 2001-05-07
## 6385 lorna.brennan@enron.com 2001-05-07
## 6386 lorna.brennan@enron.com 2001-05-07
## 6387 lorna.brennan@enron.com 2001-05-07
## 6388 lorna.brennan@enron.com 2001-05-07
## 6389 lorna.brennan@enron.com 2001-05-07
## 6390 lorna.brennan@enron.com 2001-05-07
## 6391 lorna.brennan@enron.com 2001-05-07
## 6392 lorna.brennan@enron.com 2001-05-07
## 6393 lorna.brennan@enron.com 2001-05-07
## 6394 lorna.brennan@enron.com 2001-05-07
## 6395 lorna.brennan@enron.com 2001-05-07
## 6396 lorna.brennan@enron.com 2001-05-07
## 6397 lorna.brennan@enron.com 2001-05-07
## 6398 lorna.brennan@enron.com 2001-05-07
## 6399 lorna.brennan@enron.com 2001-05-07
## 6400 lorna.brennan@enron.com 2001-05-07
## 6401 lorna.brennan@enron.com 2001-05-07
## 6402 lorna.brennan@enron.com 2001-05-07
## 6403 lorna.brennan@enron.com 2001-05-07
## 6404 lorna.brennan@enron.com 2001-05-07
## 6405 lorna.brennan@enron.com 2001-05-07
## 6406 lorna.brennan@enron.com 2001-05-07
## 6407 lorna.brennan@enron.com 2001-05-07
## 6408 lorna.brennan@enron.com 2001-05-07
## 6409 lorna.brennan@enron.com 2001-05-07
## 6410 lorna.brennan@enron.com 2001-05-07
## 6411 lorna.brennan@enron.com 2001-05-07
## 6412 lorna.brennan@enron.com 2001-05-07
## 6413 lorna.brennan@enron.com 2001-05-07
## 6414 lorna.brennan@enron.com 2001-05-07
## 6415 lorna.brennan@enron.com 2001-05-07
## 6416 lorna.brennan@enron.com 2001-05-07
## 6417 lorna.brennan@enron.com 2001-05-07
## 6418 lorna.brennan@enron.com 2001-05-07
## 6419 lorna.brennan@enron.com 2001-05-07
## 6420 lorna.brennan@enron.com 2001-05-07
## 6421 lorna.brennan@enron.com 2001-05-07
## 6422 lorna.brennan@enron.com 2001-05-07
## 6423 lorna.brennan@enron.com 2001-05-07
## 6424 lorna.brennan@enron.com 2001-05-07
## 6425 lorna.brennan@enron.com 2001-05-07
## 6426 lorna.brennan@enron.com 2001-05-07
## 6427 lorna.brennan@enron.com 2001-05-07
## 6428 lorna.brennan@enron.com 2001-05-07
## 6429 lorna.brennan@enron.com 2001-05-07
## 6430 lorna.brennan@enron.com 2001-05-07
## 6431 lorna.brennan@enron.com 2001-05-07
## 6432 lorna.brennan@enron.com 2001-05-07
## 6433 lorna.brennan@enron.com 2001-05-07
## 6434 lorna.brennan@enron.com 2001-05-07
## 6435 lorna.brennan@enron.com 2001-05-07
## 6436 lorna.brennan@enron.com 2001-05-07
## 6437 lorna.brennan@enron.com 2001-05-07
## 6438 lorna.brennan@enron.com 2001-05-07
## 6439 lorna.brennan@enron.com 2001-05-07
## 6440 lorna.brennan@enron.com 2001-05-07
## 6441 lorna.brennan@enron.com 2001-05-07
## 6442 lorna.brennan@enron.com 2001-05-07
## 6443 lorna.brennan@enron.com 2001-05-07
## 6444 lorna.brennan@enron.com 2001-05-07
## 6445 lorna.brennan@enron.com 2001-05-07
## 6446 lorna.brennan@enron.com 2001-05-07
## 6447 lorna.brennan@enron.com 2001-05-07
## 6448 lorna.brennan@enron.com 2001-05-07
## 6449 lorna.brennan@enron.com 2001-05-07
## 6450 lorna.brennan@enron.com 2001-05-07
## 6451 lorna.brennan@enron.com 2001-05-07
## 6452 lorna.brennan@enron.com 2001-05-07
## 6453 lorna.brennan@enron.com 2001-05-07
## 6454 lorna.brennan@enron.com 2001-05-07
## 6455 lorna.brennan@enron.com 2001-05-07
## 6456 lorna.brennan@enron.com 2001-05-07
## 6457 lorna.brennan@enron.com 2001-05-07
## 6458 lorna.brennan@enron.com 2001-05-07
## 6459 lorna.brennan@enron.com 2001-05-07
## 6460 lorna.brennan@enron.com 2001-05-07
## 6461 lorna.brennan@enron.com 2001-05-07
## 6462 lorna.brennan@enron.com 2001-05-07
## 6463 lorna.brennan@enron.com 2001-05-07
## 6464 lorna.brennan@enron.com 2001-05-07
## 6465 lorna.brennan@enron.com 2001-05-07
## 6466 lorna.brennan@enron.com 2001-05-07
## 6467 lorna.brennan@enron.com 2001-05-07
## 6468 lorna.brennan@enron.com 2001-05-07
## 6469 lorna.brennan@enron.com 2001-05-07
## 6470 lorna.brennan@enron.com 2001-05-07
## 6471 lorna.brennan@enron.com 2001-05-07
## 6472 lorna.brennan@enron.com 2001-04-26
## 6473 lorna.brennan@enron.com 2001-04-26
## 6474 lorna.brennan@enron.com 2001-04-26
## 6475 lorna.brennan@enron.com 2001-04-26
## 6476 lorna.brennan@enron.com 2001-04-26
## 6477 lorna.brennan@enron.com 2001-04-26
## 6478 lorna.brennan@enron.com 2001-04-26
## 6479 lorna.brennan@enron.com 2001-04-26
## 6480 lorna.brennan@enron.com 2001-04-26
## 6481 lorna.brennan@enron.com 2001-04-26
## 6482 lorna.brennan@enron.com 2001-04-26
## 6483 lorna.brennan@enron.com 2001-04-26
## 6484 lorna.brennan@enron.com 2001-04-26
## 6485 lorna.brennan@enron.com 2001-04-26
## 6486 lorna.brennan@enron.com 2001-04-26
## 6487 lorna.brennan@enron.com 2001-04-26
## 6488 lorna.brennan@enron.com 2001-04-26
## 6489 lorna.brennan@enron.com 2001-04-26
## 6490 lorna.brennan@enron.com 2001-04-26
## 6491 lorna.brennan@enron.com 2001-04-26
## 6492 lorna.brennan@enron.com 2001-04-26
## 6493 lorna.brennan@enron.com 2001-04-26
## 6494 lorna.brennan@enron.com 2001-04-26
## 6495 lorna.brennan@enron.com 2001-04-26
## 6496 lorna.brennan@enron.com 2001-04-26
## 6497 lorna.brennan@enron.com 2001-04-26
## 6498 lorna.brennan@enron.com 2001-04-26
## 6499 lorna.brennan@enron.com 2001-04-26
## 6500 lorna.brennan@enron.com 2001-04-26
## 6501 lorna.brennan@enron.com 2001-04-26
## 6502 lorna.brennan@enron.com 2001-04-26
## 6503 lorna.brennan@enron.com 2001-04-26
## 6504 lorna.brennan@enron.com 2001-04-26
## 6505 lorna.brennan@enron.com 2001-04-26
## 6506 lorna.brennan@enron.com 2001-04-26
## 6507 lorna.brennan@enron.com 2001-04-26
## 6508 lorna.brennan@enron.com 2001-04-26
## 6509 lorna.brennan@enron.com 2001-04-26
## 6510 lorna.brennan@enron.com 2001-04-26
## 6511 lorna.brennan@enron.com 2001-04-26
## 6512 lorna.brennan@enron.com 2001-04-26
## 6513 lorna.brennan@enron.com 2001-04-26
## 6514 lorna.brennan@enron.com 2001-04-26
## 6515 lorna.brennan@enron.com 2001-04-26
## 6516 lorna.brennan@enron.com 2001-04-26
## 6517 lorna.brennan@enron.com 2001-04-26
## 6518 lorna.brennan@enron.com 2001-04-26
## 6519 lorna.brennan@enron.com 2001-04-26
## 6520 lorna.brennan@enron.com 2001-04-26
## 6521 lorna.brennan@enron.com 2001-04-26
## 6522 lorna.brennan@enron.com 2001-04-26
## 6523 lorna.brennan@enron.com 2001-04-26
## 6524 lorna.brennan@enron.com 2001-04-26
## 6525 lorna.brennan@enron.com 2001-04-26
## 6526 lorna.brennan@enron.com 2001-04-26
## 6527 lorna.brennan@enron.com 2001-04-26
## 6528 lorna.brennan@enron.com 2001-04-26
## 6529 lorna.brennan@enron.com 2001-04-26
## 6530 lorna.brennan@enron.com 2001-04-26
## 6531 lorna.brennan@enron.com 2001-04-26
## 6532 lorna.brennan@enron.com 2001-04-26
## 6533 lorna.brennan@enron.com 2001-04-26
## 6534 lorna.brennan@enron.com 2001-04-26
## 6535 lorna.brennan@enron.com 2001-04-26
## 6536 lorna.brennan@enron.com 2001-04-26
## 6537 lorna.brennan@enron.com 2001-04-26
## 6538 lorna.brennan@enron.com 2001-04-23
## 6539 lorna.brennan@enron.com 2001-04-23
## 6540 lorna.brennan@enron.com 2001-04-23
## 6541 lorna.brennan@enron.com 2001-04-23
## 6542 lorna.brennan@enron.com 2001-04-23
## 6543 lorna.brennan@enron.com 2001-04-23
## 6544 lorna.brennan@enron.com 2001-04-23
## 6545 lorna.brennan@enron.com 2001-04-23
## 6546 lorna.brennan@enron.com 2001-04-23
## 6547 lorna.brennan@enron.com 2001-04-23
## 6548 lorna.brennan@enron.com 2001-04-23
## 6549 jeffery.fawcett@enron.com 2001-04-13
## 6550 jeffery.fawcett@enron.com 2001-04-13
## 6551 jeffery.fawcett@enron.com 2001-04-13
## 6552 jeffery.fawcett@enron.com 2001-04-09
## 6553 jeffery.fawcett@enron.com 2001-04-09
## 6554 jeffery.fawcett@enron.com 2001-04-09
## 6555 jeffery.fawcett@enron.com 2001-04-09
## 6556 jeffery.fawcett@enron.com 2001-04-09
## 6557 jeffery.fawcett@enron.com 2001-04-09
## 6558 jeffery.fawcett@enron.com 2001-04-09
## 6559 tk.lohman@enron.com 2001-03-29
## 6560 jeffery.fawcett@enron.com 2001-03-21
## 6561 jeffery.fawcett@enron.com 2001-03-21
## 6562 jeffery.fawcett@enron.com 2001-03-21
## 6563 jeffery.fawcett@enron.com 2001-03-21
## 6564 jeffery.fawcett@enron.com 2001-03-06
## 6565 jeffery.fawcett@enron.com 2001-03-06
## 6566 lorna.brennan@enron.com 2001-03-02
## 6567 lorna.brennan@enron.com 2001-03-02
## 6568 lorna.brennan@enron.com 2001-03-02
## 6569 lorna.brennan@enron.com 2001-03-02
## 6570 lorna.brennan@enron.com 2001-03-02
## 6571 lorna.brennan@enron.com 2001-03-02
## 6572 lorna.brennan@enron.com 2001-03-02
## 6573 lorna.brennan@enron.com 2001-03-02
## 6574 lorna.brennan@enron.com 2001-03-02
## 6575 lorna.brennan@enron.com 2001-03-02
## 6576 lorna.brennan@enron.com 2001-03-02
## 6577 lorna.brennan@enron.com 2001-03-02
## 6578 lorna.brennan@enron.com 2001-03-02
## 6579 lorna.brennan@enron.com 2001-03-02
## 6580 lorna.brennan@enron.com 2001-03-02
## 6581 lorna.brennan@enron.com 2001-03-02
## 6582 lorna.brennan@enron.com 2001-03-02
## 6583 lorna.brennan@enron.com 2001-03-02
## 6584 lorna.brennan@enron.com 2001-03-02
## 6585 lorna.brennan@enron.com 2001-03-02
## 6586 lorna.brennan@enron.com 2001-03-02
## 6587 lorna.brennan@enron.com 2001-03-02
## 6588 lorna.brennan@enron.com 2001-03-02
## 6589 lorna.brennan@enron.com 2001-03-02
## 6590 lorna.brennan@enron.com 2001-03-02
## 6591 lorna.brennan@enron.com 2001-03-02
## 6592 lorna.brennan@enron.com 2001-03-02
## 6593 lorna.brennan@enron.com 2001-03-02
## 6594 lorna.brennan@enron.com 2001-03-02
## 6595 lorna.brennan@enron.com 2001-03-02
## 6596 lorna.brennan@enron.com 2001-03-02
## 6597 lorna.brennan@enron.com 2001-03-02
## 6598 lorna.brennan@enron.com 2001-03-02
## 6599 lorna.brennan@enron.com 2001-03-02
## 6600 lorna.brennan@enron.com 2001-03-02
## 6601 lorna.brennan@enron.com 2001-03-02
## 6602 lorna.brennan@enron.com 2001-03-02
## 6603 lorna.brennan@enron.com 2001-03-02
## 6604 lorna.brennan@enron.com 2001-03-02
## 6605 lorna.brennan@enron.com 2001-03-02
## 6606 lorna.brennan@enron.com 2001-03-02
## 6607 lorna.brennan@enron.com 2001-03-02
## 6608 lorna.brennan@enron.com 2001-03-02
## 6609 lorna.brennan@enron.com 2001-03-02
## 6610 lorna.brennan@enron.com 2001-03-02
## 6611 lorna.brennan@enron.com 2001-03-02
## 6612 lorna.brennan@enron.com 2001-03-02
## 6613 lorna.brennan@enron.com 2001-03-02
## 6614 lorna.brennan@enron.com 2001-03-02
## 6615 lorna.brennan@enron.com 2001-03-02
## 6616 lorna.brennan@enron.com 2001-03-02
## 6617 lorna.brennan@enron.com 2001-03-02
## 6618 lorna.brennan@enron.com 2001-02-28
## 6619 lorna.brennan@enron.com 2001-02-28
## 6620 lorna.brennan@enron.com 2001-02-28
## 6621 lorna.brennan@enron.com 2001-02-28
## 6622 lorna.brennan@enron.com 2001-02-28
## 6623 lorna.brennan@enron.com 2001-02-28
## 6624 lorna.brennan@enron.com 2001-02-28
## 6625 lorna.brennan@enron.com 2001-02-28
## 6626 lorna.brennan@enron.com 2001-02-28
## 6627 lorna.brennan@enron.com 2001-02-28
## 6628 lorna.brennan@enron.com 2001-02-28
## 6629 lorna.brennan@enron.com 2001-02-28
## 6630 lorna.brennan@enron.com 2001-02-28
## 6631 lorna.brennan@enron.com 2001-02-28
## 6632 lorna.brennan@enron.com 2001-02-28
## 6633 lorna.brennan@enron.com 2001-02-28
## 6634 lorna.brennan@enron.com 2001-02-28
## 6635 lorna.brennan@enron.com 2001-02-28
## 6636 lorna.brennan@enron.com 2001-02-28
## 6637 lorna.brennan@enron.com 2001-02-28
## 6638 lorna.brennan@enron.com 2001-02-28
## 6639 lorna.brennan@enron.com 2001-02-28
## 6640 lorna.brennan@enron.com 2001-02-28
## 6641 lorna.brennan@enron.com 2001-02-28
## 6642 lorna.brennan@enron.com 2001-02-28
## 6643 lorna.brennan@enron.com 2001-02-28
## 6644 lorna.brennan@enron.com 2001-02-28
## 6645 lorna.brennan@enron.com 2001-02-28
## 6646 lorna.brennan@enron.com 2001-02-28
## 6647 lorna.brennan@enron.com 2001-02-28
## 6648 lorna.brennan@enron.com 2001-02-28
## 6649 lorna.brennan@enron.com 2001-02-28
## 6650 lorna.brennan@enron.com 2001-02-28
## 6651 lorna.brennan@enron.com 2001-02-28
## 6652 lorna.brennan@enron.com 2001-02-28
## 6653 lorna.brennan@enron.com 2001-02-28
## 6654 lorna.brennan@enron.com 2001-02-28
## 6655 lorna.brennan@enron.com 2001-02-28
## 6656 lorna.brennan@enron.com 2001-02-28
## 6657 lorna.brennan@enron.com 2001-02-28
## 6658 lorna.brennan@enron.com 2001-02-28
## 6659 lorna.brennan@enron.com 2001-02-28
## 6660 lorna.brennan@enron.com 2001-02-28
## 6661 jeffery.fawcett@enron.com 2001-02-23
## 6662 jeffery.fawcett@enron.com 2001-02-23
## 6663 jeffery.fawcett@enron.com 2001-02-23
## 6664 no.address@enron.com 2001-10-02
## 6665 pilar.ramirez@enron.com 2001-09-26
## 6666 pilar.ramirez@enron.com 2001-09-26
## 6667 pilar.ramirez@enron.com 2001-09-26
## 6668 pilar.ramirez@enron.com 2001-09-26
## 6669 pilar.ramirez@enron.com 2001-09-26
## 6670 pilar.ramirez@enron.com 2001-09-26
## 6671 pilar.ramirez@enron.com 2001-09-26
## 6672 pilar.ramirez@enron.com 2001-09-26
## 6673 pilar.ramirez@enron.com 2001-09-26
## 6674 pilar.ramirez@enron.com 2001-09-26
## 6675 pilar.ramirez@enron.com 2001-09-26
## 6676 pilar.ramirez@enron.com 2001-09-26
## 6677 pilar.ramirez@enron.com 2001-09-26
## 6678 pilar.ramirez@enron.com 2001-09-26
## 6679 pilar.ramirez@enron.com 2001-09-26
## 6680 pilar.ramirez@enron.com 2001-09-26
## 6681 pilar.ramirez@enron.com 2001-09-26
## 6682 pilar.ramirez@enron.com 2001-09-26
## 6683 pilar.ramirez@enron.com 2001-09-26
## 6684 pilar.ramirez@enron.com 2001-09-26
## 6685 pilar.ramirez@enron.com 2001-09-26
## 6686 pilar.ramirez@enron.com 2001-09-26
## 6687 pilar.ramirez@enron.com 2001-09-26
## 6688 pilar.ramirez@enron.com 2001-09-26
## 6689 pilar.ramirez@enron.com 2001-09-26
## 6690 pilar.ramirez@enron.com 2001-09-26
## 6691 pilar.ramirez@enron.com 2001-09-26
## 6692 tyler.theobald@enron.com 2001-06-05
## 6693 carl.carter@enron.com 2001-01-29
## 6694 carl.carter@enron.com 2001-01-29
## 6695 carl.carter@enron.com 2001-01-29
## 6696 clarksr@bellsouth.net 2001-11-12
## 6697 clarksr@bellsouth.net 2001-11-12
## 6698 clarksr@bellsouth.net 2001-11-12
## 6699 clarksr@bellsouth.net 2001-11-12
## 6700 clarksr@bellsouth.net 2001-11-12
## 6701 clarksr@bellsouth.net 2001-11-12
## 6702 clarksr@bellsouth.net 2001-11-12
## 6703 clarksr@bellsouth.net 2001-11-12
## 6704 clarksr@bellsouth.net 2001-11-12
## 6705 clarksr@bellsouth.net 2001-11-12
## 6706 clarksr@bellsouth.net 2001-11-12
## 6707 clarksr@bellsouth.net 2001-11-12
## 6708 clarksr@bellsouth.net 2001-11-12
## 6709 clarksr@bellsouth.net 2001-11-12
## 6710 clarksr@bellsouth.net 2001-11-12
## 6711 clarksr@bellsouth.net 2001-11-12
## 6712 clarksr@bellsouth.net 2001-11-12
## 6713 clarksr@bellsouth.net 2001-11-12
## 6714 clarksr@bellsouth.net 2001-11-12
## 6715 clarksr@bellsouth.net 2001-11-12
## 6716 clarksr@bellsouth.net 2001-11-12
## 6717 clarksr@bellsouth.net 2001-11-12
## 6718 clarksr@bellsouth.net 2001-11-12
## 6719 clarksr@bellsouth.net 2001-11-12
## 6720 clarksr@bellsouth.net 2001-11-12
## 6721 clarksr@bellsouth.net 2001-11-12
## 6722 clarksr@bellsouth.net 2001-11-12
## 6723 clarksr@bellsouth.net 2001-11-12
## 6724 clarksr@bellsouth.net 2001-11-12
## 6725 clarksr@bellsouth.net 2001-11-12
## 6726 clarksr@bellsouth.net 2001-11-12
## 6727 clarksr@bellsouth.net 2001-11-12
## 6728 clarksr@bellsouth.net 2001-11-12
## 6729 clarksr@bellsouth.net 2001-11-12
## 6730 clarksr@bellsouth.net 2001-11-12
## 6731 clarksr@bellsouth.net 2001-11-12
## 6732 clarksr@bellsouth.net 2001-11-12
## 6733 clarksr@bellsouth.net 2001-11-12
## 6734 clarksr@bellsouth.net 2001-11-12
## 6735 clarksr@bellsouth.net 2001-11-12
## 6736 clarksr@bellsouth.net 2001-11-12
## 6737 clarksr@bellsouth.net 2001-11-12
## 6738 clarksr@bellsouth.net 2001-11-12
## 6739 clarksr@bellsouth.net 2001-11-12
## 6740 clarksr@bellsouth.net 2001-11-12
## 6741 clarksr@bellsouth.net 2001-11-12
## 6742 clarksr@bellsouth.net 2001-11-12
## 6743 clarksr@bellsouth.net 2001-11-12
## 6744 clarksr@bellsouth.net 2001-11-12
## 6745 clarksr@bellsouth.net 2001-11-12
## 6746 clarksr@bellsouth.net 2001-11-12
## 6747 clarksr@bellsouth.net 2001-11-12
## 6748 clarksr@bellsouth.net 2001-11-12
## 6749 clarksr@bellsouth.net 2001-11-12
## 6750 clarksr@bellsouth.net 2001-11-12
## 6751 clarksr@bellsouth.net 2001-11-12
## 6752 clarksr@bellsouth.net 2001-11-12
## 6753 clarksr@bellsouth.net 2001-11-12
## 6754 clarksr@bellsouth.net 2001-11-12
## 6755 clarksr@bellsouth.net 2001-11-12
## 6756 clarksr@bellsouth.net 2001-11-12
## 6757 clarksr@bellsouth.net 2001-11-12
## 6758 clarksr@bellsouth.net 2001-11-12
## 6759 clarksr@bellsouth.net 2001-11-12
## 6760 clarksr@bellsouth.net 2001-11-12
## 6761 clarksr@bellsouth.net 2001-11-12
## 6762 clarksr@bellsouth.net 2001-11-12
## 6763 clarksr@bellsouth.net 2001-11-12
## 6764 clarksr@bellsouth.net 2001-11-12
## 6765 clarksr@bellsouth.net 2001-11-12
## 6766 clarksr@bellsouth.net 2001-11-12
## 6767 clarksr@bellsouth.net 2001-11-12
## 6768 clarksr@bellsouth.net 2001-11-12
## 6769 clarksr@bellsouth.net 2001-11-12
## 6770 clarksr@bellsouth.net 2001-11-12
## 6771 clarksr@bellsouth.net 2001-11-12
## 6772 announcements.ets@enron.com 2002-01-22
## 6773 chairman.ets@enron.com 2002-03-11
## 6774 susan.wadle@enron.com 2002-03-12
## 6775 susan.wadle@enron.com 2002-03-12
## 6776 mark.mcconnell@enron.com 2002-03-04
## 6777 susan.wadle@enron.com 2002-03-06
## 6778 susan.wadle@enron.com 2002-03-06
## 6779 susan.wadle@enron.com 2002-03-06
## 6780 lmfoust@aol.com 2002-03-02
## 6781 lmfoust@aol.com 2002-03-02
## 6782 lmfoust@aol.com 2002-03-02
## 6783 lmfoust@aol.com 2002-03-02
## 6784 lmfoust@aol.com 2002-03-02
## 6785 lmfoust@aol.com 2002-03-02
## 6786 lmfoust@aol.com 2002-03-02
## 6787 lmfoust@aol.com 2002-03-02
## 6788 lmfoust@aol.com 2002-03-02
## 6789 lmfoust@aol.com 2002-03-02
## 6790 lmfoust@aol.com 2002-03-02
## 6791 lmfoust@aol.com 2002-03-02
## 6792 lmfoust@aol.com 2002-03-02
## 6793 lmfoust@aol.com 2002-03-02
## 6794 lmfoust@aol.com 2002-03-02
## 6795 lmfoust@aol.com 2002-03-02
## 6796 lmfoust@aol.com 2002-03-02
## 6797 lmfoust@aol.com 2002-03-02
## 6798 lmfoust@aol.com 2002-03-02
## 6799 lmfoust@aol.com 2002-03-02
## 6800 lmfoust@aol.com 2002-03-02
## 6801 lmfoust@aol.com 2002-03-02
## 6802 lmfoust@aol.com 2002-03-02
## 6803 lmfoust@aol.com 2002-03-02
## 6804 lmfoust@aol.com 2002-03-02
## 6805 lmfoust@aol.com 2002-03-02
## 6806 lmfoust@aol.com 2002-03-02
## 6807 lmfoust@aol.com 2002-03-02
## 6808 lmfoust@aol.com 2002-03-02
## 6809 lmfoust@aol.com 2002-03-02
## 6810 leticia.flores@enron.com 2002-03-01
## 6811 leticia.flores@enron.com 2002-03-01
## 6812 leticia.flores@enron.com 2002-03-01
## 6813 announcements.enron@enron.com 2002-02-28
## 6814 susan.wadle@enron.com 2002-02-27
## 6815 susan.wadle@enron.com 2002-02-27
## 6816 susan.wadle@enron.com 2002-02-27
## 6817 center.ets@enron.com 2002-02-21
## 6818 center.ets@enron.com 2002-02-19
## 6819 center.ets@enron.com 2002-02-19
## 6820 center.ets@enron.com 2002-02-19
## 6821 center.ets@enron.com 2002-02-19
## 6822 center.ets@enron.com 2002-02-19
## 6823 center.ets@enron.com 2002-02-19
## 6824 center.ets@enron.com 2002-02-19
## 6825 center.ets@enron.com 2002-02-19
## 6826 center.ets@enron.com 2002-02-19
## 6827 center.ets@enron.com 2002-02-19
## 6828 center.ets@enron.com 2002-02-19
## 6829 center.ets@enron.com 2002-02-19
## 6830 center.ets@enron.com 2002-02-19
## 6831 center.ets@enron.com 2002-02-19
## 6832 center.ets@enron.com 2002-02-19
## 6833 center.ets@enron.com 2002-02-19
## 6834 center.ets@enron.com 2002-02-19
## 6835 center.ets@enron.com 2002-02-19
## 6836 center.ets@enron.com 2002-02-19
## 6837 center.ets@enron.com 2002-02-19
## 6838 center.ets@enron.com 2002-02-19
## 6839 center.ets@enron.com 2002-02-19
## 6840 center.ets@enron.com 2002-02-19
## 6841 center.ets@enron.com 2002-02-19
## 6842 center.ets@enron.com 2002-02-19
## 6843 center.ets@enron.com 2002-02-19
## 6844 center.ets@enron.com 2002-02-19
## 6845 center.ets@enron.com 2002-02-19
## 6846 center.ets@enron.com 2002-02-19
## 6847 center.ets@enron.com 2002-02-19
## 6848 center.ets@enron.com 2002-02-19
## 6849 center.ets@enron.com 2002-02-19
## 6850 center.ets@enron.com 2002-02-19
## 6851 center.ets@enron.com 2002-02-19
## 6852 center.ets@enron.com 2002-02-19
## 6853 center.ets@enron.com 2002-02-19
## 6854 center.ets@enron.com 2002-02-19
## 6855 center.ets@enron.com 2002-02-19
## 6856 center.ets@enron.com 2002-02-19
## 6857 center.ets@enron.com 2002-02-19
## 6858 center.ets@enron.com 2002-02-19
## 6859 center.ets@enron.com 2002-02-19
## 6860 center.ets@enron.com 2002-02-19
## 6861 center.ets@enron.com 2002-02-19
## 6862 center.ets@enron.com 2002-02-19
## 6863 center.ets@enron.com 2002-02-19
## 6864 center.ets@enron.com 2002-02-19
## 6865 center.ets@enron.com 2002-02-19
## 6866 center.ets@enron.com 2002-02-19
## 6867 center.ets@enron.com 2002-02-19
## 6868 center.ets@enron.com 2002-02-19
## 6869 center.ets@enron.com 2002-02-19
## 6870 center.ets@enron.com 2002-02-19
## 6871 center.ets@enron.com 2002-02-19
## 6872 center.ets@enron.com 2002-02-19
## 6873 center.ets@enron.com 2002-02-19
## 6874 center.ets@enron.com 2002-02-19
## 6875 center.ets@enron.com 2002-02-19
## 6876 center.ets@enron.com 2002-02-19
## 6877 center.ets@enron.com 2002-02-19
## 6878 center.ets@enron.com 2002-02-19
## 6879 center.ets@enron.com 2002-02-19
## 6880 center.ets@enron.com 2002-02-19
## 6881 center.ets@enron.com 2002-02-19
## 6882 center.ets@enron.com 2002-02-19
## 6883 center.ets@enron.com 2002-02-19
## 6884 center.ets@enron.com 2002-02-19
## 6885 center.ets@enron.com 2002-02-19
## 6886 announcements.enron@enron.com 2002-02-11
## 6887 jfawcett@sempra.com 2002-02-11
## 6888 tina_leavy@msn.com 2002-02-09
## 6889 lmfoust@aol.com 2002-02-04
## 6890 lmfoust@aol.com 2002-02-04
## 6891 announcements.ets@enron.com 2002-01-30
## 6892 tina_leavy@msn.com 2002-01-30
## 6893 tina_leavy@msn.com 2002-01-30
## 6894 tina_leavy@msn.com 2002-01-30
## 6895 tina_leavy@msn.com 2002-01-30
## 6896 tina_leavy@msn.com 2002-01-30
## 6897 tina_leavy@msn.com 2002-01-30
## 6898 tina_leavy@msn.com 2002-01-30
## 6899 tina_leavy@msn.com 2002-01-30
## 6900 tina_leavy@msn.com 2002-01-30
## 6901 tina_leavy@msn.com 2002-01-30
## 6902 tina_leavy@msn.com 2002-01-30
## 6903 tina_leavy@msn.com 2002-01-30
## 6904 tina_leavy@msn.com 2002-01-30
## 6905 tina_leavy@msn.com 2002-01-30
## 6906 tina_leavy@msn.com 2002-01-30
## 6907 jr..legal@enron.com 2002-01-24
## 6908 chairman.enron@enron.com 2002-01-23
## 6909 announcements.enron@enron.com 2002-01-15
## 6910 announcements.enron@enron.com 2002-01-10
## 6911 tina_leavy@msn.com 2002-01-10
## 6912 tina_leavy@msn.com 2002-01-10
## 6913 tina_leavy@msn.com 2002-01-10
## 6914 tina_leavy@msn.com 2002-01-10
## 6915 tina_leavy@msn.com 2002-01-10
## 6916 tina_leavy@msn.com 2002-01-10
## 6917 tina_leavy@msn.com 2002-01-10
## 6918 tina_leavy@msn.com 2002-01-10
## 6919 tina_leavy@msn.com 2002-01-10
## 6920 tina_leavy@msn.com 2002-01-10
## 6921 tina_leavy@msn.com 2002-01-10
## 6922 announcements.enron@enron.com 2002-01-10
## 6923 susan.wadle@enron.com 2001-12-19
## 6924 susan.wadle@enron.com 2001-12-19
## 6925 susan.wadle@enron.com 2001-12-19
## 6926 susan.wadle@enron.com 2001-12-19
## 6927 susan.wadle@enron.com 2001-12-19
## 6928 susan.wadle@enron.com 2001-12-19
## 6929 susan.wadle@enron.com 2001-12-19
## 6930 susan.wadle@enron.com 2001-12-19
## 6931 susan.wadle@enron.com 2001-12-19
## 6932 susan.wadle@enron.com 2001-12-19
## 6933 susan.wadle@enron.com 2001-12-19
## 6934 susan.wadle@enron.com 2001-12-19
## 6935 no.address@enron.com 2001-12-13
## 6936 center.ets@enron.com 2001-12-07
## 6937 center.ets@enron.com 2001-12-07
## 6938 center.ets@enron.com 2001-12-07
## 6939 tina_leavy@msn.com 2001-12-10
## 6940 no.address@enron.com 2001-11-29
## 6941 no.address@enron.com 2001-11-21
## 6942 no.address@enron.com 2001-11-07
## 6943 tyler.theobald@enron.com 2001-10-30
## 6944 tyler.theobald@enron.com 2001-10-30
## 6945 tyler.theobald@enron.com 2001-10-30
## 6946 tyler.theobald@enron.com 2001-10-30
## 6947 tyler.theobald@enron.com 2001-10-30
## 6948 tyler.theobald@enron.com 2001-10-30
## 6949 tyler.theobald@enron.com 2001-10-30
## 6950 tyler.theobald@enron.com 2001-10-30
## 6951 tyler.theobald@enron.com 2001-10-30
## 6952 tyler.theobald@enron.com 2001-10-30
## 6953 tyler.theobald@enron.com 2001-10-30
## 6954 tyler.theobald@enron.com 2001-10-30
## 6955 tyler.theobald@enron.com 2001-10-30
## 6956 tyler.theobald@enron.com 2001-10-30
## 6957 tyler.theobald@enron.com 2001-10-30
## 6958 tyler.theobald@enron.com 2001-10-30
## 6959 tyler.theobald@enron.com 2001-10-30
## 6960 tyler.theobald@enron.com 2001-10-30
## 6961 tyler.theobald@enron.com 2001-10-30
## 6962 tyler.theobald@enron.com 2001-10-30
## 6963 tyler.theobald@enron.com 2001-10-30
## 6964 tyler.theobald@enron.com 2001-10-30
## 6965 tyler.theobald@enron.com 2001-10-30
## 6966 tyler.theobald@enron.com 2001-10-30
## 6967 tyler.theobald@enron.com 2001-10-30
## 6968 tyler.theobald@enron.com 2001-10-30
## 6969 tyler.theobald@enron.com 2001-10-30
## 6970 tyler.theobald@enron.com 2001-10-30
## 6971 tyler.theobald@enron.com 2001-10-30
## 6972 tyler.theobald@enron.com 2001-10-30
## 6973 michelle.foust@enron.com 2001-11-02
## 6974 michelle.foust@enron.com 2001-11-02
## 6975 mandmranch@ev1.net 2001-11-02
## 6976 mandmranch@ev1.net 2001-11-02
## 6977 mandmranch@ev1.net 2001-11-02
## 6978 mandmranch@ev1.net 2001-11-02
## 6979 mandmranch@ev1.net 2001-11-02
## 6980 mandmranch@ev1.net 2001-11-02
## 6981 mandmranch@ev1.net 2001-11-02
## 6982 mandmranch@ev1.net 2001-11-02
## 6983 mandmranch@ev1.net 2001-11-02
## 6984 rick_krejci@kindermorgan.com 2001-10-26
## 6985 rick_krejci@kindermorgan.com 2001-10-26
## 6986 rick_krejci@kindermorgan.com 2001-10-26
## 6987 rick_krejci@kindermorgan.com 2001-10-26
## 6988 rick_krejci@kindermorgan.com 2001-10-26
## 6989 rick_krejci@kindermorgan.com 2001-10-26
## 6990 rick_krejci@kindermorgan.com 2001-10-26
## 6991 rick_krejci@kindermorgan.com 2001-10-26
## 6992 rick_krejci@kindermorgan.com 2001-10-26
## 6993 rick_krejci@kindermorgan.com 2001-10-26
## 6994 rick_krejci@kindermorgan.com 2001-10-26
## 6995 rick_krejci@kindermorgan.com 2001-10-26
## 6996 rick_krejci@kindermorgan.com 2001-10-26
## 6997 rick_krejci@kindermorgan.com 2001-10-26
## 6998 rick_krejci@kindermorgan.com 2001-10-26
## 6999 rick_krejci@kindermorgan.com 2001-10-26
## 7000 rick_krejci@kindermorgan.com 2001-10-26
## 7001 rick_krejci@kindermorgan.com 2001-10-26
## 7002 rick_krejci@kindermorgan.com 2001-10-26
## 7003 rick_krejci@kindermorgan.com 2001-10-26
## 7004 rick_krejci@kindermorgan.com 2001-10-26
## 7005 rick_krejci@kindermorgan.com 2001-10-26
## 7006 rick_krejci@kindermorgan.com 2001-10-26
## 7007 rick_krejci@kindermorgan.com 2001-10-26
## 7008 bcarlton@elwoodbox.com 2001-10-23
## 7009 bcarlton@elwoodbox.com 2001-10-23
## 7010 bcarlton@elwoodbox.com 2001-10-23
## 7011 bcarlton@elwoodbox.com 2001-10-23
## 7012 bcarlton@elwoodbox.com 2001-10-23
## 7013 bcarlton@elwoodbox.com 2001-10-23
## 7014 don.powell@enron.com 2001-10-18
## 7015 don.powell@enron.com 2001-10-18
## 7016 no.address@enron.com 2001-10-05
## 7017 bcarlton@elwoodbox.com 2001-10-11
## 7018 bcarlton@elwoodbox.com 2001-10-11
## 7019 bcarlton@elwoodbox.com 2001-10-11
## 7020 bcarlton@elwoodbox.com 2001-10-11
## 7021 bcarlton@elwoodbox.com 2001-10-11
## 7022 bcarlton@elwoodbox.com 2001-10-11
## 7023 manngarza@ev1.net 2001-09-06
## 7024 no.address@enron.com 2001-09-25
## 7025 40enron@enron.com 2001-09-23
## 7026 sdimitroff@kslaw.com 2001-09-26
## 7027 sdimitroff@kslaw.com 2001-09-26
## 7028 sdimitroff@kslaw.com 2001-09-26
## 7029 bones4sale@aol.com 2001-09-14
## 7030 bones4sale@aol.com 2001-09-14
## 7031 bones4sale@aol.com 2001-09-14
## 7032 bones4sale@aol.com 2001-09-14
## 7033 bones4sale@aol.com 2001-09-14
## 7034 bones4sale@aol.com 2001-09-14
## 7035 bones4sale@aol.com 2001-09-14
## 7036 bones4sale@aol.com 2001-09-14
## 7037 bones4sale@aol.com 2001-09-14
## 7038 bones4sale@aol.com 2001-09-14
## 7039 automatedmail@mplanners.com 2001-09-25
## 7040 automatedmail@mplanners.com 2001-09-25
## 7041 bcarlton@elwoodbox.com 2001-09-24
## 7042 bcarlton@elwoodbox.com 2001-09-24
## 7043 bcarlton@elwoodbox.com 2001-09-24
## 7044 bcarlton@elwoodbox.com 2001-09-24
## 7045 gbrector@mindspring.com 2001-09-24
## 7046 center.ets@enron.com 2001-09-19
## 7047 center.ets@enron.com 2001-09-19
## 7048 center.ets@enron.com 2001-09-19
## 7049 40enron@enron.com 2001-09-19
## 7050 tk.lohman@enron.com 2001-09-18
## 7051 michelle.foust@enron.com 2001-09-14
## 7052 michelle.foust@enron.com 2001-09-14
## 7053 40enron@enron.com 2001-07-26
## 7054 susan.wadle@enron.com 2001-09-06
## 7055 susan.wadle@enron.com 2001-09-06
## 7056 susan.wadle@enron.com 2001-09-06
## 7057 susan.wadle@enron.com 2001-09-06
## 7058 susan.wadle@enron.com 2001-09-06
## 7059 susan.wadle@enron.com 2001-09-06
## 7060 susan.wadle@enron.com 2001-09-06
## 7061 susan.wadle@enron.com 2001-09-06
## 7062 susan.wadle@enron.com 2001-09-06
## 7063 carries@tradefairgroup.com 2001-08-27
## 7064 carries@tradefairgroup.com 2001-08-22
## 7065 carries@tradefairgroup.com 2001-08-22
## 7066 carries@tradefairgroup.com 2001-08-22
## 7067 carries@tradefairgroup.com 2001-08-22
## 7068 carries@tradefairgroup.com 2001-08-22
## 7069 carries@tradefairgroup.com 2001-08-22
## 7070 carries@tradefairgroup.com 2001-08-22
## 7071 carries@tradefairgroup.com 2001-08-22
## 7072 carries@tradefairgroup.com 2001-08-22
## 7073 carries@tradefairgroup.com 2001-08-22
## 7074 carries@tradefairgroup.com 2001-08-22
## 7075 caseym@tradefairgroup.com 2001-07-31
## 7076 cicorbin@aep.com 2001-08-13
## 7077 center.ets@enron.com 2001-08-24
## 7078 www.carsmart.com@carsmart.com 2001-08-27
## 7079 peggy.brasch@fmcti.com 2001-08-27
## 7080 uironworks@msn.com 2001-08-22
## 7081 40enron@enron.com 2001-08-15
## 7082 richard.deyoung@ubspainewebber.com 2001-07-25
## 7083 40enron@enron.com 2001-07-30
## 7084 40enron@enron.com 2001-07-16
## 7085 40enron@enron.com 2001-06-20
## 7086 enron@easymatch.com 2001-07-24
## 7087 kathy.mayfield@enron.com 2001-07-23
## 7088 40enron@enron.com 2001-07-12
## 7089 40enron@enron.com 2001-07-05
## 7090 willthurmond@emerging-markets.com 2001-06-25
## 7091 40enron@enron.com 2001-07-03
## 7092 40enron@enron.com 2001-07-01
## 7093 40enron@enron.com 2001-06-22
## 7094 ibuyit@enron.com 2001-03-22
## 7095 julie.armstrong@enron.com 2001-06-01
## 7096 julie.armstrong@enron.com 2001-06-01
## 7097 julie.armstrong@enron.com 2001-06-01
## 7098 julie.armstrong@enron.com 2001-06-01
## 7099 julie.armstrong@enron.com 2001-06-01
## 7100 julie.armstrong@enron.com 2001-06-01
## 7101 julie.armstrong@enron.com 2001-06-01
## 7102 julie.armstrong@enron.com 2001-06-01
## 7103 julie.armstrong@enron.com 2001-06-01
## 7104 julie.armstrong@enron.com 2001-06-01
## 7105 julie.armstrong@enron.com 2001-06-01
## 7106 julie.armstrong@enron.com 2001-06-01
## 7107 julie.armstrong@enron.com 2001-06-01
## 7108 julie.armstrong@enron.com 2001-06-01
## 7109 julie.armstrong@enron.com 2001-06-01
## 7110 julie.armstrong@enron.com 2001-06-01
## 7111 julie.armstrong@enron.com 2001-06-01
## 7112 julie.armstrong@enron.com 2001-06-01
## 7113 julie.armstrong@enron.com 2001-06-01
## 7114 julie.armstrong@enron.com 2001-06-01
## 7115 julie.armstrong@enron.com 2001-06-01
## 7116 julie.armstrong@enron.com 2001-06-01
## 7117 julie.armstrong@enron.com 2001-06-01
## 7118 julie.armstrong@enron.com 2001-06-01
## 7119 omaha.helpdesk@enron.com 2001-05-08
## 7120 omaha.helpdesk@enron.com 2001-05-08
## 7121 omaha.helpdesk@enron.com 2001-05-08
## 7122 omaha.helpdesk@enron.com 2001-05-08
## 7123 omaha.helpdesk@enron.com 2001-05-08
## 7124 omaha.helpdesk@enron.com 2001-05-08
## 7125 omaha.helpdesk@enron.com 2001-05-08
## 7126 omaha.helpdesk@enron.com 2001-05-08
## 7127 omaha.helpdesk@enron.com 2001-05-08
## 7128 omaha.helpdesk@enron.com 2001-05-08
## 7129 omaha.helpdesk@enron.com 2001-05-08
## 7130 omaha.helpdesk@enron.com 2001-05-08
## 7131 omaha.helpdesk@enron.com 2001-05-08
## 7132 omaha.helpdesk@enron.com 2001-05-08
## 7133 omaha.helpdesk@enron.com 2001-05-08
## 7134 omaha.helpdesk@enron.com 2001-05-08
## 7135 omaha.helpdesk@enron.com 2001-05-08
## 7136 omaha.helpdesk@enron.com 2001-05-08
## 7137 omaha.helpdesk@enron.com 2001-05-08
## 7138 omaha.helpdesk@enron.com 2001-05-08
## 7139 omaha.helpdesk@enron.com 2001-05-08
## 7140 omaha.helpdesk@enron.com 2001-05-08
## 7141 omaha.helpdesk@enron.com 2001-05-08
## 7142 omaha.helpdesk@enron.com 2001-05-08
## 7143 omaha.helpdesk@enron.com 2001-05-08
## 7144 omaha.helpdesk@enron.com 2001-05-08
## 7145 omaha.helpdesk@enron.com 2001-05-08
## 7146 omaha.helpdesk@enron.com 2001-05-08
## 7147 omaha.helpdesk@enron.com 2001-05-08
## 7148 omaha.helpdesk@enron.com 2001-05-08
## 7149 omaha.helpdesk@enron.com 2001-05-08
## 7150 omaha.helpdesk@enron.com 2001-05-08
## 7151 omaha.helpdesk@enron.com 2001-05-08
## 7152 omaha.helpdesk@enron.com 2001-05-08
## 7153 omaha.helpdesk@enron.com 2001-05-08
## 7154 omaha.helpdesk@enron.com 2001-05-08
## 7155 omaha.helpdesk@enron.com 2001-05-08
## 7156 omaha.helpdesk@enron.com 2001-05-08
## 7157 omaha.helpdesk@enron.com 2001-05-08
## 7158 omaha.helpdesk@enron.com 2001-05-08
## 7159 omaha.helpdesk@enron.com 2001-05-08
## 7160 omaha.helpdesk@enron.com 2001-05-08
## 7161 omaha.helpdesk@enron.com 2001-05-08
## 7162 omaha.helpdesk@enron.com 2001-05-08
## 7163 omaha.helpdesk@enron.com 2001-05-08
## 7164 omaha.helpdesk@enron.com 2001-05-08
## 7165 omaha.helpdesk@enron.com 2001-05-08
## 7166 omaha.helpdesk@enron.com 2001-05-08
## 7167 omaha.helpdesk@enron.com 2001-05-08
## 7168 omaha.helpdesk@enron.com 2001-05-08
## 7169 omaha.helpdesk@enron.com 2001-05-08
## 7170 omaha.helpdesk@enron.com 2001-05-08
## 7171 omaha.helpdesk@enron.com 2001-05-08
## 7172 omaha.helpdesk@enron.com 2001-05-08
## 7173 omaha.helpdesk@enron.com 2001-05-08
## 7174 omaha.helpdesk@enron.com 2001-05-08
## 7175 omaha.helpdesk@enron.com 2001-05-08
## 7176 omaha.helpdesk@enron.com 2001-05-08
## 7177 omaha.helpdesk@enron.com 2001-05-08
## 7178 omaha.helpdesk@enron.com 2001-05-08
## 7179 omaha.helpdesk@enron.com 2001-05-08
## 7180 omaha.helpdesk@enron.com 2001-05-08
## 7181 omaha.helpdesk@enron.com 2001-05-08
## 7182 omaha.helpdesk@enron.com 2001-05-08
## 7183 omaha.helpdesk@enron.com 2001-05-08
## 7184 omaha.helpdesk@enron.com 2001-05-08
## 7185 omaha.helpdesk@enron.com 2001-05-08
## 7186 omaha.helpdesk@enron.com 2001-05-08
## 7187 omaha.helpdesk@enron.com 2001-05-08
## 7188 omaha.helpdesk@enron.com 2001-05-08
## 7189 omaha.helpdesk@enron.com 2001-05-08
## 7190 omaha.helpdesk@enron.com 2001-05-08
## 7191 omaha.helpdesk@enron.com 2001-05-08
## 7192 omaha.helpdesk@enron.com 2001-05-08
## 7193 omaha.helpdesk@enron.com 2001-05-08
## 7194 omaha.helpdesk@enron.com 2001-05-08
## 7195 omaha.helpdesk@enron.com 2001-05-08
## 7196 omaha.helpdesk@enron.com 2001-05-08
## 7197 omaha.helpdesk@enron.com 2001-05-08
## 7198 omaha.helpdesk@enron.com 2001-05-08
## 7199 omaha.helpdesk@enron.com 2001-05-08
## 7200 omaha.helpdesk@enron.com 2001-05-08
## 7201 omaha.helpdesk@enron.com 2001-05-08
## 7202 omaha.helpdesk@enron.com 2001-05-08
## 7203 omaha.helpdesk@enron.com 2001-05-08
## 7204 omaha.helpdesk@enron.com 2001-05-08
## 7205 omaha.helpdesk@enron.com 2001-05-08
## 7206 omaha.helpdesk@enron.com 2001-05-08
## 7207 omaha.helpdesk@enron.com 2001-05-08
## 7208 omaha.helpdesk@enron.com 2001-05-08
## 7209 omaha.helpdesk@enron.com 2001-05-08
## 7210 omaha.helpdesk@enron.com 2001-05-08
## 7211 omaha.helpdesk@enron.com 2001-05-08
## 7212 omaha.helpdesk@enron.com 2001-05-08
## 7213 omaha.helpdesk@enron.com 2001-05-08
## 7214 omaha.helpdesk@enron.com 2001-05-08
## 7215 omaha.helpdesk@enron.com 2001-05-08
## 7216 omaha.helpdesk@enron.com 2001-05-08
## 7217 omaha.helpdesk@enron.com 2001-05-08
## 7218 omaha.helpdesk@enron.com 2001-05-08
## 7219 omaha.helpdesk@enron.com 2001-05-08
## 7220 omaha.helpdesk@enron.com 2001-05-08
## 7221 omaha.helpdesk@enron.com 2001-05-08
## 7222 omaha.helpdesk@enron.com 2001-05-08
## 7223 omaha.helpdesk@enron.com 2001-05-08
## 7224 omaha.helpdesk@enron.com 2001-05-08
## 7225 omaha.helpdesk@enron.com 2001-05-08
## 7226 omaha.helpdesk@enron.com 2001-05-08
## 7227 omaha.helpdesk@enron.com 2001-05-08
## 7228 omaha.helpdesk@enron.com 2001-05-08
## 7229 omaha.helpdesk@enron.com 2001-05-08
## 7230 omaha.helpdesk@enron.com 2001-05-08
## 7231 omaha.helpdesk@enron.com 2001-05-08
## 7232 omaha.helpdesk@enron.com 2001-05-08
## 7233 omaha.helpdesk@enron.com 2001-05-08
## 7234 omaha.helpdesk@enron.com 2001-05-08
## 7235 omaha.helpdesk@enron.com 2001-05-08
## 7236 omaha.helpdesk@enron.com 2001-05-08
## 7237 omaha.helpdesk@enron.com 2001-05-08
## 7238 omaha.helpdesk@enron.com 2001-05-08
## 7239 omaha.helpdesk@enron.com 2001-05-08
## 7240 omaha.helpdesk@enron.com 2001-05-08
## 7241 omaha.helpdesk@enron.com 2001-05-08
## 7242 omaha.helpdesk@enron.com 2001-05-08
## 7243 omaha.helpdesk@enron.com 2001-05-08
## 7244 omaha.helpdesk@enron.com 2001-05-08
## 7245 omaha.helpdesk@enron.com 2001-05-08
## 7246 omaha.helpdesk@enron.com 2001-05-08
## 7247 omaha.helpdesk@enron.com 2001-05-08
## 7248 omaha.helpdesk@enron.com 2001-05-08
## 7249 omaha.helpdesk@enron.com 2001-05-08
## 7250 omaha.helpdesk@enron.com 2001-05-08
## 7251 omaha.helpdesk@enron.com 2001-05-08
## 7252 omaha.helpdesk@enron.com 2001-05-08
## 7253 omaha.helpdesk@enron.com 2001-05-08
## 7254 omaha.helpdesk@enron.com 2001-05-08
## 7255 omaha.helpdesk@enron.com 2001-05-08
## 7256 omaha.helpdesk@enron.com 2001-05-08
## 7257 omaha.helpdesk@enron.com 2001-05-08
## 7258 omaha.helpdesk@enron.com 2001-05-08
## 7259 omaha.helpdesk@enron.com 2001-05-08
## 7260 omaha.helpdesk@enron.com 2001-05-08
## 7261 omaha.helpdesk@enron.com 2001-05-08
## 7262 omaha.helpdesk@enron.com 2001-05-08
## 7263 omaha.helpdesk@enron.com 2001-05-08
## 7264 omaha.helpdesk@enron.com 2001-05-08
## 7265 omaha.helpdesk@enron.com 2001-05-08
## 7266 omaha.helpdesk@enron.com 2001-05-08
## 7267 omaha.helpdesk@enron.com 2001-05-08
## 7268 omaha.helpdesk@enron.com 2001-05-08
## 7269 omaha.helpdesk@enron.com 2001-05-08
## 7270 omaha.helpdesk@enron.com 2001-05-08
## 7271 omaha.helpdesk@enron.com 2001-05-08
## 7272 omaha.helpdesk@enron.com 2001-05-08
## 7273 omaha.helpdesk@enron.com 2001-05-08
## 7274 omaha.helpdesk@enron.com 2001-05-08
## 7275 omaha.helpdesk@enron.com 2001-05-08
## 7276 omaha.helpdesk@enron.com 2001-05-08
## 7277 omaha.helpdesk@enron.com 2001-05-08
## 7278 omaha.helpdesk@enron.com 2001-05-08
## 7279 omaha.helpdesk@enron.com 2001-05-08
## 7280 omaha.helpdesk@enron.com 2001-05-08
## 7281 omaha.helpdesk@enron.com 2001-05-08
## 7282 omaha.helpdesk@enron.com 2001-05-08
## 7283 omaha.helpdesk@enron.com 2001-05-08
## 7284 omaha.helpdesk@enron.com 2001-05-08
## 7285 omaha.helpdesk@enron.com 2001-05-08
## 7286 omaha.helpdesk@enron.com 2001-05-08
## 7287 omaha.helpdesk@enron.com 2001-05-08
## 7288 omaha.helpdesk@enron.com 2001-05-08
## 7289 omaha.helpdesk@enron.com 2001-05-08
## 7290 omaha.helpdesk@enron.com 2001-05-08
## 7291 omaha.helpdesk@enron.com 2001-05-08
## 7292 omaha.helpdesk@enron.com 2001-05-08
## 7293 omaha.helpdesk@enron.com 2001-05-08
## 7294 omaha.helpdesk@enron.com 2001-05-08
## 7295 omaha.helpdesk@enron.com 2001-05-08
## 7296 omaha.helpdesk@enron.com 2001-05-08
## 7297 omaha.helpdesk@enron.com 2001-05-08
## 7298 omaha.helpdesk@enron.com 2001-05-08
## 7299 omaha.helpdesk@enron.com 2001-05-08
## 7300 omaha.helpdesk@enron.com 2001-05-08
## 7301 omaha.helpdesk@enron.com 2001-05-08
## 7302 omaha.helpdesk@enron.com 2001-05-08
## 7303 omaha.helpdesk@enron.com 2001-05-08
## 7304 omaha.helpdesk@enron.com 2001-05-08
## 7305 omaha.helpdesk@enron.com 2001-05-08
## 7306 omaha.helpdesk@enron.com 2001-05-08
## 7307 omaha.helpdesk@enron.com 2001-05-08
## 7308 omaha.helpdesk@enron.com 2001-05-08
## 7309 omaha.helpdesk@enron.com 2001-05-08
## 7310 omaha.helpdesk@enron.com 2001-05-08
## 7311 omaha.helpdesk@enron.com 2001-05-08
## 7312 omaha.helpdesk@enron.com 2001-05-08
## 7313 omaha.helpdesk@enron.com 2001-05-08
## 7314 omaha.helpdesk@enron.com 2001-05-08
## 7315 omaha.helpdesk@enron.com 2001-05-08
## 7316 omaha.helpdesk@enron.com 2001-05-08
## 7317 omaha.helpdesk@enron.com 2001-05-08
## 7318 omaha.helpdesk@enron.com 2001-05-08
## 7319 omaha.helpdesk@enron.com 2001-05-08
## 7320 omaha.helpdesk@enron.com 2001-05-08
## 7321 omaha.helpdesk@enron.com 2001-05-08
## 7322 omaha.helpdesk@enron.com 2001-05-08
## 7323 omaha.helpdesk@enron.com 2001-05-08
## 7324 omaha.helpdesk@enron.com 2001-05-08
## 7325 omaha.helpdesk@enron.com 2001-05-08
## 7326 omaha.helpdesk@enron.com 2001-05-08
## 7327 omaha.helpdesk@enron.com 2001-05-08
## 7328 omaha.helpdesk@enron.com 2001-05-08
## 7329 omaha.helpdesk@enron.com 2001-05-08
## 7330 omaha.helpdesk@enron.com 2001-05-08
## 7331 omaha.helpdesk@enron.com 2001-05-08
## 7332 omaha.helpdesk@enron.com 2001-05-08
## 7333 omaha.helpdesk@enron.com 2001-05-08
## 7334 omaha.helpdesk@enron.com 2001-05-08
## 7335 omaha.helpdesk@enron.com 2001-05-08
## 7336 omaha.helpdesk@enron.com 2001-05-08
## 7337 omaha.helpdesk@enron.com 2001-05-08
## 7338 omaha.helpdesk@enron.com 2001-05-08
## 7339 omaha.helpdesk@enron.com 2001-05-08
## 7340 omaha.helpdesk@enron.com 2001-05-08
## 7341 omaha.helpdesk@enron.com 2001-05-08
## 7342 omaha.helpdesk@enron.com 2001-05-08
## 7343 omaha.helpdesk@enron.com 2001-05-08
## 7344 omaha.helpdesk@enron.com 2001-05-08
## 7345 omaha.helpdesk@enron.com 2001-05-08
## 7346 omaha.helpdesk@enron.com 2001-05-08
## 7347 omaha.helpdesk@enron.com 2001-05-08
## 7348 omaha.helpdesk@enron.com 2001-05-08
## 7349 omaha.helpdesk@enron.com 2001-05-08
## 7350 omaha.helpdesk@enron.com 2001-05-08
## 7351 omaha.helpdesk@enron.com 2001-05-08
## 7352 omaha.helpdesk@enron.com 2001-05-08
## 7353 omaha.helpdesk@enron.com 2001-05-08
## 7354 omaha.helpdesk@enron.com 2001-05-08
## 7355 omaha.helpdesk@enron.com 2001-05-08
## 7356 omaha.helpdesk@enron.com 2001-05-08
## 7357 omaha.helpdesk@enron.com 2001-05-08
## 7358 omaha.helpdesk@enron.com 2001-05-08
## 7359 omaha.helpdesk@enron.com 2001-05-08
## 7360 omaha.helpdesk@enron.com 2001-05-08
## 7361 omaha.helpdesk@enron.com 2001-05-08
## 7362 omaha.helpdesk@enron.com 2001-05-08
## 7363 omaha.helpdesk@enron.com 2001-05-08
## 7364 omaha.helpdesk@enron.com 2001-05-08
## 7365 omaha.helpdesk@enron.com 2001-05-08
## 7366 omaha.helpdesk@enron.com 2001-05-08
## 7367 omaha.helpdesk@enron.com 2001-05-08
## 7368 omaha.helpdesk@enron.com 2001-05-08
## 7369 omaha.helpdesk@enron.com 2001-05-08
## 7370 omaha.helpdesk@enron.com 2001-05-08
## 7371 omaha.helpdesk@enron.com 2001-05-08
## 7372 omaha.helpdesk@enron.com 2001-05-08
## 7373 omaha.helpdesk@enron.com 2001-05-08
## 7374 omaha.helpdesk@enron.com 2001-05-08
## 7375 omaha.helpdesk@enron.com 2001-05-08
## 7376 omaha.helpdesk@enron.com 2001-05-08
## 7377 omaha.helpdesk@enron.com 2001-05-08
## 7378 omaha.helpdesk@enron.com 2001-05-08
## 7379 omaha.helpdesk@enron.com 2001-05-08
## 7380 omaha.helpdesk@enron.com 2001-05-08
## 7381 omaha.helpdesk@enron.com 2001-05-08
## 7382 omaha.helpdesk@enron.com 2001-05-08
## 7383 omaha.helpdesk@enron.com 2001-05-08
## 7384 omaha.helpdesk@enron.com 2001-05-08
## 7385 omaha.helpdesk@enron.com 2001-05-08
## 7386 omaha.helpdesk@enron.com 2001-05-08
## 7387 omaha.helpdesk@enron.com 2001-05-08
## 7388 omaha.helpdesk@enron.com 2001-05-08
## 7389 omaha.helpdesk@enron.com 2001-05-08
## 7390 omaha.helpdesk@enron.com 2001-05-08
## 7391 omaha.helpdesk@enron.com 2001-05-08
## 7392 omaha.helpdesk@enron.com 2001-05-08
## 7393 omaha.helpdesk@enron.com 2001-05-08
## 7394 omaha.helpdesk@enron.com 2001-05-08
## 7395 omaha.helpdesk@enron.com 2001-05-08
## 7396 omaha.helpdesk@enron.com 2001-05-08
## 7397 omaha.helpdesk@enron.com 2001-05-08
## 7398 omaha.helpdesk@enron.com 2001-05-08
## 7399 omaha.helpdesk@enron.com 2001-05-08
## 7400 omaha.helpdesk@enron.com 2001-05-08
## 7401 omaha.helpdesk@enron.com 2001-05-08
## 7402 omaha.helpdesk@enron.com 2001-05-08
## 7403 omaha.helpdesk@enron.com 2001-05-08
## 7404 omaha.helpdesk@enron.com 2001-05-08
## 7405 omaha.helpdesk@enron.com 2001-05-08
## 7406 omaha.helpdesk@enron.com 2001-05-08
## 7407 omaha.helpdesk@enron.com 2001-05-08
## 7408 omaha.helpdesk@enron.com 2001-05-08
## 7409 omaha.helpdesk@enron.com 2001-05-08
## 7410 omaha.helpdesk@enron.com 2001-05-08
## 7411 omaha.helpdesk@enron.com 2001-05-08
## 7412 omaha.helpdesk@enron.com 2001-05-08
## 7413 omaha.helpdesk@enron.com 2001-05-08
## 7414 omaha.helpdesk@enron.com 2001-05-08
## 7415 omaha.helpdesk@enron.com 2001-05-08
## 7416 omaha.helpdesk@enron.com 2001-05-08
## 7417 omaha.helpdesk@enron.com 2001-05-08
## 7418 omaha.helpdesk@enron.com 2001-05-08
## 7419 omaha.helpdesk@enron.com 2001-05-08
## 7420 omaha.helpdesk@enron.com 2001-05-08
## 7421 omaha.helpdesk@enron.com 2001-05-08
## 7422 omaha.helpdesk@enron.com 2001-05-08
## 7423 omaha.helpdesk@enron.com 2001-05-08
## 7424 omaha.helpdesk@enron.com 2001-05-08
## 7425 omaha.helpdesk@enron.com 2001-05-08
## 7426 omaha.helpdesk@enron.com 2001-05-08
## 7427 omaha.helpdesk@enron.com 2001-05-08
## 7428 omaha.helpdesk@enron.com 2001-05-08
## 7429 omaha.helpdesk@enron.com 2001-05-08
## 7430 omaha.helpdesk@enron.com 2001-05-08
## 7431 omaha.helpdesk@enron.com 2001-05-08
## 7432 omaha.helpdesk@enron.com 2001-05-08
## 7433 omaha.helpdesk@enron.com 2001-05-08
## 7434 omaha.helpdesk@enron.com 2001-05-08
## 7435 omaha.helpdesk@enron.com 2001-05-08
## 7436 omaha.helpdesk@enron.com 2001-05-08
## 7437 omaha.helpdesk@enron.com 2001-05-08
## 7438 omaha.helpdesk@enron.com 2001-05-08
## 7439 omaha.helpdesk@enron.com 2001-05-08
## 7440 omaha.helpdesk@enron.com 2001-05-08
## 7441 omaha.helpdesk@enron.com 2001-05-08
## 7442 omaha.helpdesk@enron.com 2001-05-08
## 7443 omaha.helpdesk@enron.com 2001-05-08
## 7444 omaha.helpdesk@enron.com 2001-05-08
## 7445 omaha.helpdesk@enron.com 2001-05-08
## 7446 omaha.helpdesk@enron.com 2001-05-08
## 7447 omaha.helpdesk@enron.com 2001-05-08
## 7448 omaha.helpdesk@enron.com 2001-05-08
## 7449 omaha.helpdesk@enron.com 2001-05-08
## 7450 omaha.helpdesk@enron.com 2001-05-08
## 7451 omaha.helpdesk@enron.com 2001-05-08
## 7452 omaha.helpdesk@enron.com 2001-05-08
## 7453 omaha.helpdesk@enron.com 2001-05-08
## 7454 omaha.helpdesk@enron.com 2001-05-08
## 7455 omaha.helpdesk@enron.com 2001-05-08
## 7456 omaha.helpdesk@enron.com 2001-05-08
## 7457 omaha.helpdesk@enron.com 2001-05-08
## 7458 omaha.helpdesk@enron.com 2001-05-08
## 7459 omaha.helpdesk@enron.com 2001-05-08
## 7460 omaha.helpdesk@enron.com 2001-05-08
## 7461 omaha.helpdesk@enron.com 2001-05-08
## 7462 omaha.helpdesk@enron.com 2001-05-08
## 7463 omaha.helpdesk@enron.com 2001-05-08
## 7464 omaha.helpdesk@enron.com 2001-05-08
## 7465 omaha.helpdesk@enron.com 2001-05-08
## 7466 omaha.helpdesk@enron.com 2001-05-08
## 7467 omaha.helpdesk@enron.com 2001-05-08
## 7468 omaha.helpdesk@enron.com 2001-05-08
## 7469 omaha.helpdesk@enron.com 2001-05-08
## 7470 omaha.helpdesk@enron.com 2001-05-08
## 7471 omaha.helpdesk@enron.com 2001-05-08
## 7472 omaha.helpdesk@enron.com 2001-05-08
## 7473 omaha.helpdesk@enron.com 2001-05-08
## 7474 omaha.helpdesk@enron.com 2001-05-08
## 7475 omaha.helpdesk@enron.com 2001-05-08
## 7476 omaha.helpdesk@enron.com 2001-05-08
## 7477 omaha.helpdesk@enron.com 2001-05-08
## 7478 omaha.helpdesk@enron.com 2001-05-08
## 7479 omaha.helpdesk@enron.com 2001-05-08
## 7480 omaha.helpdesk@enron.com 2001-05-08
## 7481 omaha.helpdesk@enron.com 2001-05-08
## 7482 omaha.helpdesk@enron.com 2001-05-08
## 7483 omaha.helpdesk@enron.com 2001-05-08
## 7484 omaha.helpdesk@enron.com 2001-05-08
## 7485 omaha.helpdesk@enron.com 2001-05-08
## 7486 omaha.helpdesk@enron.com 2001-05-08
## 7487 omaha.helpdesk@enron.com 2001-05-08
## 7488 omaha.helpdesk@enron.com 2001-05-08
## 7489 omaha.helpdesk@enron.com 2001-05-08
## 7490 omaha.helpdesk@enron.com 2001-05-08
## 7491 omaha.helpdesk@enron.com 2001-05-08
## 7492 omaha.helpdesk@enron.com 2001-05-08
## 7493 omaha.helpdesk@enron.com 2001-05-08
## 7494 omaha.helpdesk@enron.com 2001-05-08
## 7495 omaha.helpdesk@enron.com 2001-05-08
## 7496 omaha.helpdesk@enron.com 2001-05-08
## 7497 omaha.helpdesk@enron.com 2001-05-08
## 7498 omaha.helpdesk@enron.com 2001-05-08
## 7499 omaha.helpdesk@enron.com 2001-05-08
## 7500 omaha.helpdesk@enron.com 2001-05-08
## 7501 omaha.helpdesk@enron.com 2001-05-08
## 7502 omaha.helpdesk@enron.com 2001-05-08
## 7503 omaha.helpdesk@enron.com 2001-05-08
## 7504 omaha.helpdesk@enron.com 2001-05-08
## 7505 omaha.helpdesk@enron.com 2001-05-08
## 7506 omaha.helpdesk@enron.com 2001-05-08
## 7507 omaha.helpdesk@enron.com 2001-05-08
## 7508 omaha.helpdesk@enron.com 2001-05-08
## 7509 omaha.helpdesk@enron.com 2001-05-08
## 7510 omaha.helpdesk@enron.com 2001-05-08
## 7511 omaha.helpdesk@enron.com 2001-05-08
## 7512 omaha.helpdesk@enron.com 2001-05-08
## 7513 omaha.helpdesk@enron.com 2001-05-08
## 7514 omaha.helpdesk@enron.com 2001-05-08
## 7515 omaha.helpdesk@enron.com 2001-05-08
## 7516 omaha.helpdesk@enron.com 2001-05-08
## 7517 omaha.helpdesk@enron.com 2001-05-08
## 7518 omaha.helpdesk@enron.com 2001-05-08
## 7519 omaha.helpdesk@enron.com 2001-05-08
## 7520 omaha.helpdesk@enron.com 2001-05-08
## 7521 omaha.helpdesk@enron.com 2001-05-08
## 7522 omaha.helpdesk@enron.com 2001-05-08
## 7523 omaha.helpdesk@enron.com 2001-05-08
## 7524 omaha.helpdesk@enron.com 2001-05-08
## 7525 omaha.helpdesk@enron.com 2001-05-08
## 7526 omaha.helpdesk@enron.com 2001-05-08
## 7527 omaha.helpdesk@enron.com 2001-05-08
## 7528 omaha.helpdesk@enron.com 2001-05-08
## 7529 omaha.helpdesk@enron.com 2001-05-08
## 7530 omaha.helpdesk@enron.com 2001-05-08
## 7531 omaha.helpdesk@enron.com 2001-05-08
## 7532 omaha.helpdesk@enron.com 2001-05-08
## 7533 omaha.helpdesk@enron.com 2001-05-08
## 7534 omaha.helpdesk@enron.com 2001-05-08
## 7535 omaha.helpdesk@enron.com 2001-05-08
## 7536 omaha.helpdesk@enron.com 2001-05-08
## 7537 omaha.helpdesk@enron.com 2001-05-08
## 7538 omaha.helpdesk@enron.com 2001-05-08
## 7539 omaha.helpdesk@enron.com 2001-05-08
## 7540 omaha.helpdesk@enron.com 2001-05-08
## 7541 omaha.helpdesk@enron.com 2001-05-08
## 7542 omaha.helpdesk@enron.com 2001-05-08
## 7543 omaha.helpdesk@enron.com 2001-05-08
## 7544 omaha.helpdesk@enron.com 2001-05-08
## 7545 omaha.helpdesk@enron.com 2001-05-08
## 7546 omaha.helpdesk@enron.com 2001-05-08
## 7547 omaha.helpdesk@enron.com 2001-05-08
## 7548 omaha.helpdesk@enron.com 2001-05-08
## 7549 omaha.helpdesk@enron.com 2001-05-08
## 7550 omaha.helpdesk@enron.com 2001-05-08
## 7551 omaha.helpdesk@enron.com 2001-05-08
## 7552 omaha.helpdesk@enron.com 2001-05-08
## 7553 omaha.helpdesk@enron.com 2001-05-08
## 7554 omaha.helpdesk@enron.com 2001-05-08
## 7555 omaha.helpdesk@enron.com 2001-05-08
## 7556 omaha.helpdesk@enron.com 2001-05-08
## 7557 omaha.helpdesk@enron.com 2001-05-08
## 7558 omaha.helpdesk@enron.com 2001-05-08
## 7559 omaha.helpdesk@enron.com 2001-05-08
## 7560 omaha.helpdesk@enron.com 2001-05-08
## 7561 omaha.helpdesk@enron.com 2001-05-08
## 7562 omaha.helpdesk@enron.com 2001-05-08
## 7563 omaha.helpdesk@enron.com 2001-05-08
## 7564 omaha.helpdesk@enron.com 2001-05-08
## 7565 omaha.helpdesk@enron.com 2001-05-08
## 7566 omaha.helpdesk@enron.com 2001-05-08
## 7567 omaha.helpdesk@enron.com 2001-05-08
## 7568 omaha.helpdesk@enron.com 2001-05-08
## 7569 omaha.helpdesk@enron.com 2001-05-08
## 7570 omaha.helpdesk@enron.com 2001-05-08
## 7571 omaha.helpdesk@enron.com 2001-05-08
## 7572 omaha.helpdesk@enron.com 2001-05-08
## 7573 omaha.helpdesk@enron.com 2001-05-08
## 7574 omaha.helpdesk@enron.com 2001-05-08
## 7575 omaha.helpdesk@enron.com 2001-05-08
## 7576 omaha.helpdesk@enron.com 2001-05-08
## 7577 omaha.helpdesk@enron.com 2001-05-08
## 7578 omaha.helpdesk@enron.com 2001-05-08
## 7579 omaha.helpdesk@enron.com 2001-05-08
## 7580 omaha.helpdesk@enron.com 2001-05-08
## 7581 omaha.helpdesk@enron.com 2001-05-08
## 7582 omaha.helpdesk@enron.com 2001-05-08
## 7583 omaha.helpdesk@enron.com 2001-05-08
## 7584 omaha.helpdesk@enron.com 2001-05-08
## 7585 omaha.helpdesk@enron.com 2001-05-08
## 7586 omaha.helpdesk@enron.com 2001-05-08
## 7587 omaha.helpdesk@enron.com 2001-05-08
## 7588 omaha.helpdesk@enron.com 2001-05-08
## 7589 omaha.helpdesk@enron.com 2001-05-08
## 7590 omaha.helpdesk@enron.com 2001-05-08
## 7591 omaha.helpdesk@enron.com 2001-05-08
## 7592 omaha.helpdesk@enron.com 2001-05-08
## 7593 omaha.helpdesk@enron.com 2001-05-08
## 7594 omaha.helpdesk@enron.com 2001-05-08
## 7595 omaha.helpdesk@enron.com 2001-05-08
## 7596 omaha.helpdesk@enron.com 2001-05-08
## 7597 omaha.helpdesk@enron.com 2001-05-08
## 7598 omaha.helpdesk@enron.com 2001-05-08
## 7599 omaha.helpdesk@enron.com 2001-05-08
## 7600 omaha.helpdesk@enron.com 2001-05-08
## 7601 omaha.helpdesk@enron.com 2001-05-08
## 7602 omaha.helpdesk@enron.com 2001-05-08
## 7603 omaha.helpdesk@enron.com 2001-05-08
## 7604 omaha.helpdesk@enron.com 2001-05-08
## 7605 omaha.helpdesk@enron.com 2001-05-08
## 7606 omaha.helpdesk@enron.com 2001-05-08
## 7607 omaha.helpdesk@enron.com 2001-05-08
## 7608 omaha.helpdesk@enron.com 2001-05-08
## 7609 omaha.helpdesk@enron.com 2001-05-08
## 7610 omaha.helpdesk@enron.com 2001-05-08
## 7611 omaha.helpdesk@enron.com 2001-05-08
## 7612 omaha.helpdesk@enron.com 2001-05-08
## 7613 omaha.helpdesk@enron.com 2001-05-08
## 7614 omaha.helpdesk@enron.com 2001-05-08
## 7615 omaha.helpdesk@enron.com 2001-05-08
## 7616 omaha.helpdesk@enron.com 2001-05-08
## 7617 omaha.helpdesk@enron.com 2001-05-08
## 7618 omaha.helpdesk@enron.com 2001-05-08
## 7619 omaha.helpdesk@enron.com 2001-05-08
## 7620 omaha.helpdesk@enron.com 2001-05-08
## 7621 omaha.helpdesk@enron.com 2001-05-08
## 7622 omaha.helpdesk@enron.com 2001-05-08
## 7623 omaha.helpdesk@enron.com 2001-05-08
## 7624 omaha.helpdesk@enron.com 2001-05-08
## 7625 omaha.helpdesk@enron.com 2001-05-08
## 7626 omaha.helpdesk@enron.com 2001-05-08
## 7627 omaha.helpdesk@enron.com 2001-05-08
## 7628 omaha.helpdesk@enron.com 2001-05-08
## 7629 omaha.helpdesk@enron.com 2001-05-08
## 7630 omaha.helpdesk@enron.com 2001-05-08
## 7631 omaha.helpdesk@enron.com 2001-05-08
## 7632 omaha.helpdesk@enron.com 2001-05-08
## 7633 omaha.helpdesk@enron.com 2001-05-08
## 7634 omaha.helpdesk@enron.com 2001-05-08
## 7635 omaha.helpdesk@enron.com 2001-05-08
## 7636 omaha.helpdesk@enron.com 2001-05-08
## 7637 omaha.helpdesk@enron.com 2001-05-08
## 7638 omaha.helpdesk@enron.com 2001-05-08
## 7639 omaha.helpdesk@enron.com 2001-05-08
## 7640 omaha.helpdesk@enron.com 2001-05-08
## 7641 omaha.helpdesk@enron.com 2001-05-08
## 7642 omaha.helpdesk@enron.com 2001-05-08
## 7643 omaha.helpdesk@enron.com 2001-05-08
## 7644 omaha.helpdesk@enron.com 2001-05-08
## 7645 omaha.helpdesk@enron.com 2001-05-08
## 7646 omaha.helpdesk@enron.com 2001-05-08
## 7647 omaha.helpdesk@enron.com 2001-05-08
## 7648 omaha.helpdesk@enron.com 2001-05-08
## 7649 omaha.helpdesk@enron.com 2001-05-08
## 7650 omaha.helpdesk@enron.com 2001-05-08
## 7651 omaha.helpdesk@enron.com 2001-05-08
## 7652 omaha.helpdesk@enron.com 2001-05-08
## 7653 omaha.helpdesk@enron.com 2001-05-08
## 7654 omaha.helpdesk@enron.com 2001-05-08
## 7655 omaha.helpdesk@enron.com 2001-05-08
## 7656 omaha.helpdesk@enron.com 2001-05-08
## 7657 omaha.helpdesk@enron.com 2001-05-08
## 7658 omaha.helpdesk@enron.com 2001-05-08
## 7659 omaha.helpdesk@enron.com 2001-05-08
## 7660 omaha.helpdesk@enron.com 2001-05-08
## 7661 omaha.helpdesk@enron.com 2001-05-08
## 7662 omaha.helpdesk@enron.com 2001-05-08
## 7663 omaha.helpdesk@enron.com 2001-05-08
## 7664 omaha.helpdesk@enron.com 2001-05-08
## 7665 omaha.helpdesk@enron.com 2001-05-08
## 7666 omaha.helpdesk@enron.com 2001-05-08
## 7667 omaha.helpdesk@enron.com 2001-05-08
## 7668 omaha.helpdesk@enron.com 2001-05-08
## 7669 omaha.helpdesk@enron.com 2001-05-08
## 7670 omaha.helpdesk@enron.com 2001-05-08
## 7671 omaha.helpdesk@enron.com 2001-05-08
## 7672 omaha.helpdesk@enron.com 2001-05-08
## 7673 omaha.helpdesk@enron.com 2001-05-08
## 7674 omaha.helpdesk@enron.com 2001-05-08
## 7675 omaha.helpdesk@enron.com 2001-05-08
## 7676 omaha.helpdesk@enron.com 2001-05-08
## 7677 omaha.helpdesk@enron.com 2001-05-08
## 7678 omaha.helpdesk@enron.com 2001-05-08
## 7679 omaha.helpdesk@enron.com 2001-05-08
## 7680 omaha.helpdesk@enron.com 2001-05-08
## 7681 omaha.helpdesk@enron.com 2001-05-08
## 7682 omaha.helpdesk@enron.com 2001-05-08
## 7683 omaha.helpdesk@enron.com 2001-05-08
## 7684 omaha.helpdesk@enron.com 2001-05-08
## 7685 omaha.helpdesk@enron.com 2001-05-08
## 7686 omaha.helpdesk@enron.com 2001-05-08
## 7687 omaha.helpdesk@enron.com 2001-05-08
## 7688 omaha.helpdesk@enron.com 2001-05-08
## 7689 omaha.helpdesk@enron.com 2001-05-08
## 7690 omaha.helpdesk@enron.com 2001-05-08
## 7691 omaha.helpdesk@enron.com 2001-05-08
## 7692 omaha.helpdesk@enron.com 2001-05-08
## 7693 omaha.helpdesk@enron.com 2001-05-08
## 7694 omaha.helpdesk@enron.com 2001-05-08
## 7695 omaha.helpdesk@enron.com 2001-05-08
## 7696 omaha.helpdesk@enron.com 2001-05-08
## 7697 omaha.helpdesk@enron.com 2001-05-08
## 7698 omaha.helpdesk@enron.com 2001-05-08
## 7699 omaha.helpdesk@enron.com 2001-05-08
## 7700 omaha.helpdesk@enron.com 2001-05-08
## 7701 omaha.helpdesk@enron.com 2001-05-08
## 7702 omaha.helpdesk@enron.com 2001-05-08
## 7703 omaha.helpdesk@enron.com 2001-05-08
## 7704 omaha.helpdesk@enron.com 2001-05-08
## 7705 omaha.helpdesk@enron.com 2001-05-08
## 7706 omaha.helpdesk@enron.com 2001-05-08
## 7707 omaha.helpdesk@enron.com 2001-05-08
## 7708 omaha.helpdesk@enron.com 2001-05-08
## 7709 omaha.helpdesk@enron.com 2001-05-08
## 7710 omaha.helpdesk@enron.com 2001-05-08
## 7711 omaha.helpdesk@enron.com 2001-05-08
## 7712 omaha.helpdesk@enron.com 2001-05-08
## 7713 omaha.helpdesk@enron.com 2001-05-08
## 7714 omaha.helpdesk@enron.com 2001-05-08
## 7715 omaha.helpdesk@enron.com 2001-05-08
## 7716 omaha.helpdesk@enron.com 2001-05-08
## 7717 omaha.helpdesk@enron.com 2001-05-08
## 7718 omaha.helpdesk@enron.com 2001-05-08
## 7719 omaha.helpdesk@enron.com 2001-05-08
## 7720 omaha.helpdesk@enron.com 2001-05-08
## 7721 omaha.helpdesk@enron.com 2001-05-08
## 7722 omaha.helpdesk@enron.com 2001-05-08
## 7723 omaha.helpdesk@enron.com 2001-05-08
## 7724 omaha.helpdesk@enron.com 2001-05-08
## 7725 omaha.helpdesk@enron.com 2001-05-08
## 7726 omaha.helpdesk@enron.com 2001-05-08
## 7727 omaha.helpdesk@enron.com 2001-05-08
## 7728 omaha.helpdesk@enron.com 2001-05-08
## 7729 omaha.helpdesk@enron.com 2001-05-08
## 7730 omaha.helpdesk@enron.com 2001-05-08
## 7731 omaha.helpdesk@enron.com 2001-05-08
## 7732 omaha.helpdesk@enron.com 2001-05-08
## 7733 tyler.theobald@enron.com 2001-05-01
## 7734 jeffery.fawcett@enron.com 2001-04-30
## 7735 jeffery.fawcett@enron.com 2001-04-30
## 7736 jeffery.fawcett@enron.com 2001-04-30
## 7737 jeffery.fawcett@enron.com 2001-04-30
## 7738 jeffery.fawcett@enron.com 2001-04-30
## 7739 center.ets@enron.com 2001-04-26
## 7740 40enron@enron.com 2001-04-25
## 7741 40enron@enron.com 2001-04-22
## 7742 40enron@enron.com 2001-04-05
## 7743 center.ets@enron.com 2001-04-06
## 7744 center.ets@enron.com 2001-04-04
## 7745 40enron@enron.com 2001-03-02
## 7746 tyler.theobald@enron.com 2001-03-13
## 7747 tyler.theobald@enron.com 2001-03-13
## 7748 tyler.theobald@enron.com 2001-03-13
## 7749 tyler.theobald@enron.com 2001-03-13
## 7750 tyler.theobald@enron.com 2001-03-13
## 7751 tyler.theobald@enron.com 2001-03-13
## 7752 tyler.theobald@enron.com 2001-03-13
## 7753 tyler.theobald@enron.com 2001-03-13
## 7754 tyler.theobald@enron.com 2001-03-13
## 7755 tyler.theobald@enron.com 2001-03-13
## 7756 tyler.theobald@enron.com 2001-03-13
## 7757 tyler.theobald@enron.com 2001-03-13
## 7758 tyler.theobald@enron.com 2001-03-13
## 7759 tyler.theobald@enron.com 2001-03-13
## 7760 tyler.theobald@enron.com 2001-03-13
## 7761 tyler.theobald@enron.com 2001-03-13
## 7762 tyler.theobald@enron.com 2001-03-13
## 7763 tyler.theobald@enron.com 2001-03-13
## 7764 tyler.theobald@enron.com 2001-03-13
## 7765 tyler.theobald@enron.com 2001-03-13
## 7766 tyler.theobald@enron.com 2001-03-13
## 7767 tyler.theobald@enron.com 2001-03-13
## 7768 tyler.theobald@enron.com 2001-03-13
## 7769 tyler.theobald@enron.com 2001-03-13
## 7770 tyler.theobald@enron.com 2001-03-13
## 7771 tyler.theobald@enron.com 2001-03-13
## 7772 tyler.theobald@enron.com 2001-03-13
## 7773 tyler.theobald@enron.com 2001-03-13
## 7774 tyler.theobald@enron.com 2001-03-13
## 7775 tyler.theobald@enron.com 2001-03-13
## 7776 tyler.theobald@enron.com 2001-03-13
## 7777 tyler.theobald@enron.com 2001-03-13
## 7778 tyler.theobald@enron.com 2001-03-13
## 7779 tyler.theobald@enron.com 2001-03-13
## 7780 tyler.theobald@enron.com 2001-03-13
## 7781 tyler.theobald@enron.com 2001-03-13
## 7782 tyler.theobald@enron.com 2001-03-13
## 7783 tyler.theobald@enron.com 2001-03-13
## 7784 tyler.theobald@enron.com 2001-03-13
## 7785 tyler.theobald@enron.com 2001-03-13
## 7786 tyler.theobald@enron.com 2001-03-13
## 7787 tyler.theobald@enron.com 2001-03-13
## 7788 tyler.theobald@enron.com 2001-03-13
## 7789 tyler.theobald@enron.com 2001-03-13
## 7790 tyler.theobald@enron.com 2001-03-13
## 7791 tyler.theobald@enron.com 2001-03-13
## 7792 tyler.theobald@enron.com 2001-03-13
## 7793 tyler.theobald@enron.com 2001-03-13
## 7794 tyler.theobald@enron.com 2001-03-13
## 7795 tyler.theobald@enron.com 2001-03-13
## 7796 tyler.theobald@enron.com 2001-03-13
## 7797 tyler.theobald@enron.com 2001-03-13
## 7798 tyler.theobald@enron.com 2001-03-13
## 7799 tyler.theobald@enron.com 2001-03-13
## 7800 tyler.theobald@enron.com 2001-03-13
## 7801 tyler.theobald@enron.com 2001-03-13
## 7802 tyler.theobald@enron.com 2001-03-13
## 7803 tyler.theobald@enron.com 2001-03-13
## 7804 tyler.theobald@enron.com 2001-03-13
## 7805 tyler.theobald@enron.com 2001-03-13
## 7806 tyler.theobald@enron.com 2001-03-13
## 7807 tyler.theobald@enron.com 2001-03-13
## 7808 tyler.theobald@enron.com 2001-03-13
## 7809 tyler.theobald@enron.com 2001-03-13
## 7810 tyler.theobald@enron.com 2001-03-13
## 7811 tyler.theobald@enron.com 2001-03-13
## 7812 tyler.theobald@enron.com 2001-03-13
## 7813 tyler.theobald@enron.com 2001-03-13
## 7814 tyler.theobald@enron.com 2001-03-13
## 7815 tyler.theobald@enron.com 2001-03-13
## 7816 tyler.theobald@enron.com 2001-03-13
## 7817 tyler.theobald@enron.com 2001-03-13
## 7818 40enron@enron.com 2001-03-08
## 7819 40enron@enron.com 2001-03-07
## 7820 don.powell@enron.com 2001-02-27
## 7821 40enron@enron.com 2001-02-23
## 7822 brian.harrington@ferc.fed.us 2000-08-31
## 7823 brian.harrington@ferc.fed.us 2000-08-31
## 7824 brian.harrington@ferc.fed.us 2000-08-31
## 7825 brian.harrington@ferc.fed.us 2000-08-31
## 7826 brian.harrington@ferc.fed.us 2000-08-31
## 7827 brian.harrington@ferc.fed.us 2000-08-31
## 7828 brian.harrington@ferc.fed.us 2000-08-31
## 7829 michelle.veloso@ferc.fed.us 2000-09-05
## 7830 michelle.veloso@ferc.fed.us 2000-09-05
## 7831 lester.rawson@enron.com 2000-09-08
## 7832 lester.rawson@enron.com 2000-09-08
## 7833 lester.rawson@enron.com 2000-09-08
## 7834 lester.rawson@enron.com 2000-09-08
## 7835 lester.rawson@enron.com 2000-09-08
## 7836 lester.rawson@enron.com 2000-09-08
## 7837 lester.rawson@enron.com 2000-09-08
## 7838 lester.rawson@enron.com 2000-09-08
## 7839 chris.stokley@enron.com 2000-09-11
## 7840 chris.stokley@enron.com 2000-09-11
## 7841 chris.stokley@enron.com 2000-09-11
## 7842 chris.stokley@enron.com 2000-09-11
## 7843 brian.harrington@ferc.fed.us 2000-09-12
## 7844 brian.harrington@ferc.fed.us 2000-09-12
## 7845 brian.harrington@ferc.fed.us 2000-09-13
## 7846 brian.harrington@ferc.fed.us 2000-09-15
## 7847 michelle.veloso@ferc.fed.us 2000-09-20
## 7848 michelle.veloso@ferc.fed.us 2000-09-20
## 7849 brian.harrington@ferc.fed.us 2000-09-20
## 7850 brian.harrington@ferc.fed.us 2000-10-05
## 7851 leslie.reeves@enron.com 2000-10-10
## 7852 leslie.reeves@enron.com 2000-10-10
## 7853 leslie.reeves@enron.com 2000-10-10
## 7854 brian.harrington@ferc.fed.us 2000-10-11
## 7855 brian.harrington@ferc.fed.us 2000-10-11
## 7856 linda.lawrence@enron.com 2000-10-25
## 7857 linda.lawrence@enron.com 2000-10-25
## 7858 linda.lawrence@enron.com 2000-10-25
## 7859 linda.lawrence@enron.com 2000-10-25
## 7860 linda.lawrence@enron.com 2000-10-25
## 7861 linda.lawrence@enron.com 2000-10-25
## 7862 linda.lawrence@enron.com 2000-10-25
## 7863 linda.lawrence@enron.com 2000-10-25
## 7864 linda.lawrence@enron.com 2000-10-25
## 7865 valarie.sabo@enron.com 2000-10-25
## 7866 valarie.sabo@enron.com 2000-10-25
## 7867 valarie.sabo@enron.com 2000-10-25
## 7868 valarie.sabo@enron.com 2000-10-25
## 7869 valarie.sabo@enron.com 2000-10-25
## 7870 valarie.sabo@enron.com 2000-10-25
## 7871 valarie.sabo@enron.com 2000-10-25
## 7872 valarie.sabo@enron.com 2000-10-25
## 7873 valarie.sabo@enron.com 2000-10-25
## 7874 valarie.sabo@enron.com 2000-10-25
## 7875 valarie.sabo@enron.com 2000-10-25
## 7876 valarie.sabo@enron.com 2000-10-25
## 7877 valarie.sabo@enron.com 2000-10-25
## 7878 valarie.sabo@enron.com 2000-10-25
## 7879 valarie.sabo@enron.com 2000-10-25
## 7880 valarie.sabo@enron.com 2000-10-27
## 7881 valarie.sabo@enron.com 2000-10-27
## 7882 valarie.sabo@enron.com 2000-10-27
## 7883 mary.hain@enron.com 2000-11-30
## 7884 lester.rawson@enron.com 2000-12-08
## 7885 lester.rawson@enron.com 2000-12-08
## 7886 lester.rawson@enron.com 2000-12-08
## 7887 lester.rawson@enron.com 2000-12-08
## 7888 alan@enventure.com 2001-01-03
## 7889 alan@enventure.com 2001-01-03
## 7890 alan@enventure.com 2001-01-03
## 7891 alan@enventure.com 2001-01-03
## 7892 alan@enventure.com 2001-01-03
## 7893 alan@enventure.com 2001-01-03
## 7894 alan@enventure.com 2001-01-03
## 7895 alan@enventure.com 2001-01-03
## 7896 alan@enventure.com 2001-01-03
## 7897 alan@enventure.com 2001-01-03
## 7898 alan@enventure.com 2001-01-03
## 7899 alan@enventure.com 2001-01-03
## 7900 alan@enventure.com 2001-01-03
## 7901 alan@enventure.com 2001-01-03
## 7902 alan@enventure.com 2001-01-03
## 7903 alan@enventure.com 2001-01-03
## 7904 alan@enventure.com 2001-01-03
## 7905 alan@enventure.com 2001-01-03
## 7906 alan@enventure.com 2001-01-03
## 7907 alan@enventure.com 2001-01-03
## 7908 alan@enventure.com 2001-01-03
## 7909 alan@enventure.com 2001-01-03
## 7910 alan@enventure.com 2001-01-03
## 7911 alan@enventure.com 2001-01-03
## 7912 alan@enventure.com 2001-01-03
## 7913 alan@enventure.com 2001-01-03
## 7914 alan@enventure.com 2001-01-03
## 7915 alan@enventure.com 2001-01-03
## 7916 alan@enventure.com 2001-01-03
## 7917 alan@enventure.com 2001-01-03
## 7918 alan@enventure.com 2001-01-03
## 7919 alan@enventure.com 2001-01-03
## 7920 alan@enventure.com 2001-01-03
## 7921 alan@enventure.com 2001-01-03
## 7922 alan@enventure.com 2001-01-03
## 7923 alan@enventure.com 2001-01-03
## 7924 alan@enventure.com 2001-01-03
## 7925 alan@enventure.com 2001-01-03
## 7926 alan@enventure.com 2001-01-03
## 7927 alan@enventure.com 2001-01-03
## 7928 alan@enventure.com 2001-01-03
## 7929 alan@enventure.com 2001-01-03
## 7930 alan@enventure.com 2001-01-03
## 7931 alan@enventure.com 2001-01-03
## 7932 alan@enventure.com 2001-01-03
## 7933 alan@enventure.com 2001-01-03
## 7934 alan@enventure.com 2001-01-03
## 7935 alan@enventure.com 2001-01-03
## 7936 alan@enventure.com 2001-01-03
## 7937 alan@enventure.com 2001-01-03
## 7938 alan@enventure.com 2001-01-03
## 7939 alan@enventure.com 2001-01-03
## 7940 alan@enventure.com 2001-01-03
## 7941 alan@enventure.com 2001-01-03
## 7942 alan@enventure.com 2001-01-03
## 7943 alan@enventure.com 2001-01-03
## 7944 alan@enventure.com 2001-01-03
## 7945 alan@enventure.com 2001-01-03
## 7946 alan@enventure.com 2001-01-03
## 7947 alan@enventure.com 2001-01-03
## 7948 alan@enventure.com 2001-01-03
## 7949 alan@enventure.com 2001-01-03
## 7950 alan@enventure.com 2001-01-03
## 7951 alan@enventure.com 2001-01-03
## 7952 alan@enventure.com 2001-01-03
## 7953 alan@enventure.com 2001-01-03
## 7954 alan@enventure.com 2001-01-03
## 7955 alan@enventure.com 2001-01-03
## 7956 alan@enventure.com 2001-01-03
## 7957 alan@enventure.com 2001-01-03
## 7958 alan@enventure.com 2001-01-03
## 7959 christi.nicolay@enron.com 2001-01-17
## 7960 afpaschke@bpa.gov 2001-01-18
## 7961 afpaschke@bpa.gov 2001-01-18
## 7962 christi.nicolay@enron.com 2001-01-22
## 7963 christi.nicolay@enron.com 2001-01-22
## 7964 christi.nicolay@enron.com 2001-01-22
## 7965 christi.nicolay@enron.com 2001-01-22
## 7966 christi.nicolay@enron.com 2001-01-22
## 7967 christi.nicolay@enron.com 2001-01-22
## 7968 christi.nicolay@enron.com 2001-01-22
## 7969 christi.nicolay@enron.com 2001-01-22
## 7970 christi.nicolay@enron.com 2001-01-22
## 7971 christi.nicolay@enron.com 2001-01-22
## 7972 christi.nicolay@enron.com 2001-01-22
## 7973 christi.nicolay@enron.com 2001-01-22
## 7974 christi.nicolay@enron.com 2001-01-22
## 7975 christi.nicolay@enron.com 2001-01-22
## 7976 christi.nicolay@enron.com 2001-01-22
## 7977 christi.nicolay@enron.com 2001-01-22
## 7978 christi.nicolay@enron.com 2001-01-22
## 7979 christi.nicolay@enron.com 2001-01-22
## 7980 christi.nicolay@enron.com 2001-01-22
## 7981 christi.nicolay@enron.com 2001-01-22
## 7982 christi.nicolay@enron.com 2001-01-22
## 7983 christi.nicolay@enron.com 2001-01-22
## 7984 christi.nicolay@enron.com 2001-01-22
## 7985 christi.nicolay@enron.com 2001-01-22
## 7986 christi.nicolay@enron.com 2001-01-22
## 7987 christi.nicolay@enron.com 2001-01-22
## 7988 christi.nicolay@enron.com 2001-01-22
## 7989 christi.nicolay@enron.com 2001-01-22
## 7990 christi.nicolay@enron.com 2001-01-22
## 7991 christi.nicolay@enron.com 2001-01-22
## 7992 christi.nicolay@enron.com 2001-01-22
## 7993 linda.lawrence@enron.com 2001-01-22
## 7994 linda.lawrence@enron.com 2001-01-23
## 7995 linda.lawrence@enron.com 2001-01-23
## 7996 linda.lawrence@enron.com 2001-01-23
## 7997 linda.lawrence@enron.com 2001-01-23
## 7998 linda.lawrence@enron.com 2001-01-23
## 7999 linda.lawrence@enron.com 2001-01-23
## 8000 linda.lawrence@enron.com 2001-01-23
## 8001 linda.lawrence@enron.com 2001-01-23
## 8002 linda.lawrence@enron.com 2001-01-23
## 8003 linda.lawrence@enron.com 2001-01-23
## 8004 linda.lawrence@enron.com 2001-01-23
## 8005 linda.lawrence@enron.com 2001-01-23
## 8006 linda.lawrence@enron.com 2001-01-23
## 8007 linda.lawrence@enron.com 2001-01-23
## 8008 kelley.huntley@enron.com 2001-01-25
## 8009 kelley.huntley@enron.com 2001-01-25
## 8010 kelley.huntley@enron.com 2001-01-25
## 8011 kelley.huntley@enron.com 2001-01-25
## 8012 kelley.huntley@enron.com 2001-01-25
## 8013 kelley.huntley@enron.com 2001-01-25
## 8014 kelley.huntley@enron.com 2001-01-25
## 8015 kelley.huntley@enron.com 2001-01-25
## 8016 kelley.huntley@enron.com 2001-01-25
## 8017 kelley.huntley@enron.com 2001-01-25
## 8018 kelley.huntley@enron.com 2001-01-25
## 8019 kelley.huntley@enron.com 2001-01-25
## 8020 christi.nicolay@enron.com 2001-01-26
## 8021 christi.nicolay@enron.com 2001-01-26
## 8022 christi.nicolay@enron.com 2001-01-26
## 8023 christi.nicolay@enron.com 2001-01-26
## 8024 christi.nicolay@enron.com 2001-01-26
## 8025 christi.nicolay@enron.com 2001-01-26
## 8026 christi.nicolay@enron.com 2001-01-26
## 8027 christi.nicolay@enron.com 2001-01-26
## 8028 christi.nicolay@enron.com 2001-01-26
## 8029 christi.nicolay@enron.com 2001-01-26
## 8030 christi.nicolay@enron.com 2001-01-26
## 8031 christi.nicolay@enron.com 2001-01-26
## 8032 christi.nicolay@enron.com 2001-01-26
## 8033 christi.nicolay@enron.com 2001-01-26
## 8034 christi.nicolay@enron.com 2001-01-26
## 8035 christi.nicolay@enron.com 2001-01-26
## 8036 christi.nicolay@enron.com 2001-01-26
## 8037 christi.nicolay@enron.com 2001-01-26
## 8038 christi.nicolay@enron.com 2001-01-26
## 8039 christi.nicolay@enron.com 2001-01-26
## 8040 christi.nicolay@enron.com 2001-01-26
## 8041 christi.nicolay@enron.com 2001-01-26
## 8042 christi.nicolay@enron.com 2001-01-26
## 8043 christi.nicolay@enron.com 2001-01-26
## 8044 christi.nicolay@enron.com 2001-01-26
## 8045 christi.nicolay@enron.com 2001-01-26
## 8046 christi.nicolay@enron.com 2001-01-26
## 8047 christi.nicolay@enron.com 2001-01-26
## 8048 christi.nicolay@enron.com 2001-01-26
## 8049 christi.nicolay@enron.com 2001-01-26
## 8050 christi.nicolay@enron.com 2001-01-26
## 8051 christi.nicolay@enron.com 2001-01-26
## 8052 christi.nicolay@enron.com 2001-01-26
## 8053 christi.nicolay@enron.com 2001-01-26
## 8054 christi.nicolay@enron.com 2001-01-26
## 8055 christi.nicolay@enron.com 2001-01-26
## 8056 christi.nicolay@enron.com 2001-01-26
## 8057 christi.nicolay@enron.com 2001-01-26
## 8058 christi.nicolay@enron.com 2001-01-26
## 8059 christi.nicolay@enron.com 2001-01-26
## 8060 christi.nicolay@enron.com 2001-01-26
## 8061 christi.nicolay@enron.com 2001-01-26
## 8062 christi.nicolay@enron.com 2001-01-26
## 8063 christi.nicolay@enron.com 2001-01-26
## 8064 christi.nicolay@enron.com 2001-01-26
## 8065 christi.nicolay@enron.com 2001-01-26
## 8066 christi.nicolay@enron.com 2001-01-26
## 8067 christi.nicolay@enron.com 2001-01-26
## 8068 christi.nicolay@enron.com 2001-01-26
## 8069 christi.nicolay@enron.com 2001-01-26
## 8070 christi.nicolay@enron.com 2001-01-26
## 8071 christi.nicolay@enron.com 2001-01-26
## 8072 christi.nicolay@enron.com 2001-01-26
## 8073 christi.nicolay@enron.com 2001-01-26
## 8074 christi.nicolay@enron.com 2001-01-26
## 8075 christi.nicolay@enron.com 2001-01-26
## 8076 christi.nicolay@enron.com 2001-01-26
## 8077 christi.nicolay@enron.com 2001-01-26
## 8078 christi.nicolay@enron.com 2001-01-26
## 8079 christi.nicolay@enron.com 2001-01-26
## 8080 christi.nicolay@enron.com 2001-01-26
## 8081 christi.nicolay@enron.com 2001-01-26
## 8082 christi.nicolay@enron.com 2001-01-26
## 8083 christi.nicolay@enron.com 2001-01-26
## 8084 christi.nicolay@enron.com 2001-01-26
## 8085 christi.nicolay@enron.com 2001-01-26
## 8086 christi.nicolay@enron.com 2001-01-26
## 8087 christi.nicolay@enron.com 2001-01-26
## 8088 christi.nicolay@enron.com 2001-01-26
## 8089 christi.nicolay@enron.com 2001-01-26
## 8090 christi.nicolay@enron.com 2001-01-26
## 8091 christi.nicolay@enron.com 2001-01-26
## 8092 christi.nicolay@enron.com 2001-01-26
## 8093 christi.nicolay@enron.com 2001-01-26
## 8094 christi.nicolay@enron.com 2001-01-26
## 8095 christi.nicolay@enron.com 2001-01-26
## 8096 christi.nicolay@enron.com 2001-01-26
## 8097 christi.nicolay@enron.com 2001-01-26
## 8098 christi.nicolay@enron.com 2001-01-26
## 8099 christi.nicolay@enron.com 2001-01-26
## 8100 christi.nicolay@enron.com 2001-01-26
## 8101 christi.nicolay@enron.com 2001-01-26
## 8102 christi.nicolay@enron.com 2001-01-26
## 8103 enron.announcements@enron.com 2001-01-26
## 8104 enron.announcements@enron.com 2001-01-29
## 8105 scott.miller@ferc.fed.us 2001-02-01
## 8106 christi.nicolay@enron.com 2001-02-01
## 8107 christi.nicolay@enron.com 2001-02-01
## 8108 christi.nicolay@enron.com 2001-02-01
## 8109 bwoertz@caiso.com 2001-02-02
## 8110 bwoertz@caiso.com 2001-02-02
## 8111 bwoertz@caiso.com 2001-02-02
## 8112 christi.nicolay@enron.com 2001-02-05
## 8113 christi.nicolay@enron.com 2001-02-05
## 8114 christi.nicolay@enron.com 2001-02-05
## 8115 christi.nicolay@enron.com 2001-02-05
## 8116 christi.nicolay@enron.com 2001-02-05
## 8117 christi.nicolay@enron.com 2001-02-05
## 8118 christi.nicolay@enron.com 2001-02-05
## 8119 christi.nicolay@enron.com 2001-02-05
## 8120 christi.nicolay@enron.com 2001-02-05
## 8121 christi.nicolay@enron.com 2001-02-05
## 8122 christi.nicolay@enron.com 2001-02-05
## 8123 christi.nicolay@enron.com 2001-02-05
## 8124 christi.nicolay@enron.com 2001-02-05
## 8125 christi.nicolay@enron.com 2001-02-05
## 8126 christi.nicolay@enron.com 2001-02-05
## 8127 christi.nicolay@enron.com 2001-02-05
## 8128 christi.nicolay@enron.com 2001-02-05
## 8129 christi.nicolay@enron.com 2001-02-05
## 8130 christi.nicolay@enron.com 2001-02-05
## 8131 christi.nicolay@enron.com 2001-02-05
## 8132 christi.nicolay@enron.com 2001-02-05
## 8133 christi.nicolay@enron.com 2001-02-05
## 8134 christi.nicolay@enron.com 2001-02-05
## 8135 christi.nicolay@enron.com 2001-02-05
## 8136 christi.nicolay@enron.com 2001-02-05
## 8137 christi.nicolay@enron.com 2001-02-05
## 8138 christi.nicolay@enron.com 2001-02-05
## 8139 christi.nicolay@enron.com 2001-02-05
## 8140 christi.nicolay@enron.com 2001-02-05
## 8141 christi.nicolay@enron.com 2001-02-05
## 8142 christi.nicolay@enron.com 2001-02-05
## 8143 christi.nicolay@enron.com 2001-02-05
## 8144 christi.nicolay@enron.com 2001-02-05
## 8145 christi.nicolay@enron.com 2001-02-05
## 8146 christi.nicolay@enron.com 2001-02-05
## 8147 christi.nicolay@enron.com 2001-02-05
## 8148 christi.nicolay@enron.com 2001-02-05
## 8149 rcjosephson@stoel.com 2001-02-06
## 8150 rcjosephson@stoel.com 2001-02-06
## 8151 rcjosephson@stoel.com 2001-02-06
## 8152 rcjosephson@stoel.com 2001-02-06
## 8153 rcjosephson@stoel.com 2001-02-06
## 8154 rcjosephson@stoel.com 2001-02-06
## 8155 rcjosephson@stoel.com 2001-02-06
## 8156 rcjosephson@stoel.com 2001-02-06
## 8157 rcjosephson@stoel.com 2001-02-06
## 8158 rcjosephson@stoel.com 2001-02-06
## 8159 rcjosephson@stoel.com 2001-02-06
## 8160 rcjosephson@stoel.com 2001-02-06
## 8161 rcjosephson@stoel.com 2001-02-06
## 8162 rcjosephson@stoel.com 2001-02-06
## 8163 rcjosephson@stoel.com 2001-02-06
## 8164 rcjosephson@stoel.com 2001-02-06
## 8165 rcjosephson@stoel.com 2001-02-06
## 8166 rcjosephson@stoel.com 2001-02-06
## 8167 rcjosephson@stoel.com 2001-02-06
## 8168 rcjosephson@stoel.com 2001-02-06
## 8169 rcjosephson@stoel.com 2001-02-06
## 8170 rcjosephson@stoel.com 2001-02-06
## 8171 rcjosephson@stoel.com 2001-02-06
## 8172 rcjosephson@stoel.com 2001-02-06
## 8173 rcjosephson@stoel.com 2001-02-06
## 8174 rcjosephson@stoel.com 2001-02-06
## 8175 rcjosephson@stoel.com 2001-02-06
## 8176 rcjosephson@stoel.com 2001-02-06
## 8177 rcjosephson@stoel.com 2001-02-06
## 8178 rcjosephson@stoel.com 2001-02-06
## 8179 rcjosephson@stoel.com 2001-02-06
## 8180 rcjosephson@stoel.com 2001-02-06
## 8181 rcjosephson@stoel.com 2001-02-06
## 8182 rcjosephson@stoel.com 2001-02-06
## 8183 rcjosephson@stoel.com 2001-02-06
## 8184 rcjosephson@stoel.com 2001-02-06
## 8185 rcjosephson@stoel.com 2001-02-06
## 8186 rcjosephson@stoel.com 2001-02-06
## 8187 rcjosephson@stoel.com 2001-02-06
## 8188 rcjosephson@stoel.com 2001-02-06
## 8189 rcjosephson@stoel.com 2001-02-06
## 8190 rcjosephson@stoel.com 2001-02-06
## 8191 rcjosephson@stoel.com 2001-02-06
## 8192 rcjosephson@stoel.com 2001-02-06
## 8193 rcjosephson@stoel.com 2001-02-06
## 8194 rcjosephson@stoel.com 2001-02-06
## 8195 rcjosephson@stoel.com 2001-02-06
## 8196 rcjosephson@stoel.com 2001-02-06
## 8197 rcjosephson@stoel.com 2001-02-06
## 8198 rcjosephson@stoel.com 2001-02-06
## 8199 rcjosephson@stoel.com 2001-02-06
## 8200 ayudkowsky@stroock.com 2001-02-07
## 8201 ayudkowsky@stroock.com 2001-02-07
## 8202 ayudkowsky@stroock.com 2001-02-07
## 8203 ayudkowsky@stroock.com 2001-02-07
## 8204 ayudkowsky@stroock.com 2001-02-07
## 8205 ayudkowsky@stroock.com 2001-02-07
## 8206 ayudkowsky@stroock.com 2001-02-07
## 8207 ayudkowsky@stroock.com 2001-02-07
## 8208 ayudkowsky@stroock.com 2001-02-07
## 8209 ayudkowsky@stroock.com 2001-02-07
## 8210 ayudkowsky@stroock.com 2001-02-07
## 8211 ayudkowsky@stroock.com 2001-02-07
## 8212 ayudkowsky@stroock.com 2001-02-07
## 8213 ayudkowsky@stroock.com 2001-02-07
## 8214 ayudkowsky@stroock.com 2001-02-07
## 8215 ayudkowsky@stroock.com 2001-02-07
## 8216 ayudkowsky@stroock.com 2001-02-07
## 8217 ayudkowsky@stroock.com 2001-02-07
## 8218 ayudkowsky@stroock.com 2001-02-07
## 8219 ayudkowsky@stroock.com 2001-02-07
## 8220 ayudkowsky@stroock.com 2001-02-07
## 8221 ayudkowsky@stroock.com 2001-02-07
## 8222 ayudkowsky@stroock.com 2001-02-07
## 8223 ayudkowsky@stroock.com 2001-02-07
## 8224 ayudkowsky@stroock.com 2001-02-07
## 8225 ayudkowsky@stroock.com 2001-02-07
## 8226 ayudkowsky@stroock.com 2001-02-07
## 8227 ayudkowsky@stroock.com 2001-02-07
## 8228 ayudkowsky@stroock.com 2001-02-07
## 8229 ayudkowsky@stroock.com 2001-02-07
## 8230 ayudkowsky@stroock.com 2001-02-07
## 8231 ayudkowsky@stroock.com 2001-02-07
## 8232 ayudkowsky@stroock.com 2001-02-07
## 8233 ayudkowsky@stroock.com 2001-02-07
## 8234 ayudkowsky@stroock.com 2001-02-07
## 8235 ayudkowsky@stroock.com 2001-02-07
## 8236 ayudkowsky@stroock.com 2001-02-07
## 8237 ayudkowsky@stroock.com 2001-02-07
## 8238 ayudkowsky@stroock.com 2001-02-07
## 8239 ayudkowsky@stroock.com 2001-02-07
## 8240 ayudkowsky@stroock.com 2001-02-07
## 8241 ayudkowsky@stroock.com 2001-02-07
## 8242 ayudkowsky@stroock.com 2001-02-07
## 8243 ayudkowsky@stroock.com 2001-02-07
## 8244 ayudkowsky@stroock.com 2001-02-07
## 8245 ayudkowsky@stroock.com 2001-02-07
## 8246 ayudkowsky@stroock.com 2001-02-07
## 8247 ayudkowsky@stroock.com 2001-02-07
## 8248 ayudkowsky@stroock.com 2001-02-07
## 8249 ayudkowsky@stroock.com 2001-02-07
## 8250 ayudkowsky@stroock.com 2001-02-07
## 8251 ayudkowsky@stroock.com 2001-02-07
## 8252 ayudkowsky@stroock.com 2001-02-07
## 8253 ayudkowsky@stroock.com 2001-02-07
## 8254 ayudkowsky@stroock.com 2001-02-07
## 8255 ayudkowsky@stroock.com 2001-02-07
## 8256 ayudkowsky@stroock.com 2001-02-07
## 8257 dale.rasmussen@enron.com 2001-02-07
## 8258 jody.blackburn@enron.com 2001-02-07
## 8259 jody.blackburn@enron.com 2001-02-07
## 8260 jody.blackburn@enron.com 2001-02-07
## 8261 jody.blackburn@enron.com 2001-02-07
## 8262 jody.blackburn@enron.com 2001-02-07
## 8263 jody.blackburn@enron.com 2001-02-07
## 8264 jody.blackburn@enron.com 2001-02-07
## 8265 jody.blackburn@enron.com 2001-02-07
## 8266 jody.blackburn@enron.com 2001-02-07
## 8267 pmohler@hewm.com 2001-02-08
## 8268 pmohler@hewm.com 2001-02-08
## 8269 pmohler@hewm.com 2001-02-08
## 8270 christi.nicolay@enron.com 2001-02-08
## 8271 christi.nicolay@enron.com 2001-02-08
## 8272 christi.nicolay@enron.com 2001-02-08
## 8273 christi.nicolay@enron.com 2001-02-08
## 8274 christi.nicolay@enron.com 2001-02-08
## 8275 christi.nicolay@enron.com 2001-02-08
## 8276 christi.nicolay@enron.com 2001-02-08
## 8277 christi.nicolay@enron.com 2001-02-08
## 8278 christi.nicolay@enron.com 2001-02-08
## 8279 christi.nicolay@enron.com 2001-02-08
## 8280 christi.nicolay@enron.com 2001-02-08
## 8281 christi.nicolay@enron.com 2001-02-08
## 8282 christi.nicolay@enron.com 2001-02-08
## 8283 christi.nicolay@enron.com 2001-02-08
## 8284 christi.nicolay@enron.com 2001-02-08
## 8285 christi.nicolay@enron.com 2001-02-08
## 8286 christi.nicolay@enron.com 2001-02-08
## 8287 christi.nicolay@enron.com 2001-02-08
## 8288 christi.nicolay@enron.com 2001-02-08
## 8289 christi.nicolay@enron.com 2001-02-08
## 8290 christi.nicolay@enron.com 2001-02-08
## 8291 christi.nicolay@enron.com 2001-02-08
## 8292 christi.nicolay@enron.com 2001-02-08
## 8293 christi.nicolay@enron.com 2001-02-08
## 8294 christi.nicolay@enron.com 2001-02-08
## 8295 christi.nicolay@enron.com 2001-02-08
## 8296 christi.nicolay@enron.com 2001-02-08
## 8297 christi.nicolay@enron.com 2001-02-08
## 8298 christi.nicolay@enron.com 2001-02-08
## 8299 christi.nicolay@enron.com 2001-02-08
## 8300 christi.nicolay@enron.com 2001-02-08
## 8301 christi.nicolay@enron.com 2001-02-08
## 8302 christi.nicolay@enron.com 2001-02-08
## 8303 christi.nicolay@enron.com 2001-02-08
## 8304 christi.nicolay@enron.com 2001-02-08
## 8305 christi.nicolay@enron.com 2001-02-08
## 8306 christi.nicolay@enron.com 2001-02-08
## 8307 christi.nicolay@enron.com 2001-02-08
## 8308 christi.nicolay@enron.com 2001-02-08
## 8309 christi.nicolay@enron.com 2001-02-08
## 8310 christi.nicolay@enron.com 2001-02-08
## 8311 christi.nicolay@enron.com 2001-02-08
## 8312 christi.nicolay@enron.com 2001-02-08
## 8313 christi.nicolay@enron.com 2001-02-08
## 8314 christi.nicolay@enron.com 2001-02-08
## 8315 christi.nicolay@enron.com 2001-02-08
## 8316 christi.nicolay@enron.com 2001-02-08
## 8317 christi.nicolay@enron.com 2001-02-08
## 8318 christi.nicolay@enron.com 2001-02-08
## 8319 christi.nicolay@enron.com 2001-02-08
## 8320 christi.nicolay@enron.com 2001-02-08
## 8321 christi.nicolay@enron.com 2001-02-08
## 8322 christi.nicolay@enron.com 2001-02-08
## 8323 christi.nicolay@enron.com 2001-02-08
## 8324 christi.nicolay@enron.com 2001-02-08
## 8325 christi.nicolay@enron.com 2001-02-08
## 8326 theresa.villeggiante@enron.com 2001-02-09
## 8327 dale.rasmussen@enron.com 2001-02-09
## 8328 dale.rasmussen@enron.com 2001-02-09
## 8329 dale.rasmussen@enron.com 2001-02-09
## 8330 dale.rasmussen@enron.com 2001-02-09
## 8331 dale.rasmussen@enron.com 2001-02-09
## 8332 marcia.linton@enron.com 2001-02-12
## 8333 marcia.linton@enron.com 2001-02-12
## 8334 marcia.linton@enron.com 2001-02-12
## 8335 marcia.linton@enron.com 2001-02-12
## 8336 marcia.linton@enron.com 2001-02-12
## 8337 marcia.linton@enron.com 2001-02-12
## 8338 marcia.linton@enron.com 2001-02-12
## 8339 marcia.linton@enron.com 2001-02-12
## 8340 marcia.linton@enron.com 2001-02-12
## 8341 marcia.linton@enron.com 2001-02-12
## 8342 marcia.linton@enron.com 2001-02-12
## 8343 marcia.linton@enron.com 2001-02-12
## 8344 marcia.linton@enron.com 2001-02-12
## 8345 marcia.linton@enron.com 2001-02-12
## 8346 marcia.linton@enron.com 2001-02-12
## 8347 marcia.linton@enron.com 2001-02-12
## 8348 christi.nicolay@enron.com 2001-02-20
## 8349 christi.nicolay@enron.com 2001-02-20
## 8350 christi.nicolay@enron.com 2001-02-20
## 8351 christi.nicolay@enron.com 2001-02-20
## 8352 christi.nicolay@enron.com 2001-02-20
## 8353 christi.nicolay@enron.com 2001-02-20
## 8354 christi.nicolay@enron.com 2001-02-20
## 8355 christi.nicolay@enron.com 2001-02-20
## 8356 christi.nicolay@enron.com 2001-02-20
## 8357 christi.nicolay@enron.com 2001-02-20
## 8358 christi.nicolay@enron.com 2001-02-20
## 8359 christi.nicolay@enron.com 2001-02-20
## 8360 christi.nicolay@enron.com 2001-02-20
## 8361 christi.nicolay@enron.com 2001-02-20
## 8362 christi.nicolay@enron.com 2001-02-20
## 8363 christi.nicolay@enron.com 2001-02-20
## 8364 christi.nicolay@enron.com 2001-02-20
## 8365 christi.nicolay@enron.com 2001-02-20
## 8366 christi.nicolay@enron.com 2001-02-20
## 8367 christi.nicolay@enron.com 2001-02-20
## 8368 christi.nicolay@enron.com 2001-02-20
## 8369 christi.nicolay@enron.com 2001-02-20
## 8370 christi.nicolay@enron.com 2001-02-20
## 8371 christi.nicolay@enron.com 2001-02-20
## 8372 christi.nicolay@enron.com 2001-02-20
## 8373 kbeniga@schwabe.com 2001-02-20
## 8374 kbeniga@schwabe.com 2001-02-20
## 8375 kbeniga@schwabe.com 2001-02-20
## 8376 kbeniga@schwabe.com 2001-02-20
## 8377 kbeniga@schwabe.com 2001-02-20
## 8378 kbeniga@schwabe.com 2001-02-20
## 8379 kbeniga@schwabe.com 2001-02-20
## 8380 kbeniga@schwabe.com 2001-02-20
## 8381 kbeniga@schwabe.com 2001-02-20
## 8382 kbeniga@schwabe.com 2001-02-20
## 8383 kbeniga@schwabe.com 2001-02-20
## 8384 kbeniga@schwabe.com 2001-02-20
## 8385 kbeniga@schwabe.com 2001-02-20
## 8386 kbeniga@schwabe.com 2001-02-20
## 8387 kbeniga@schwabe.com 2001-02-20
## 8388 kbeniga@schwabe.com 2001-02-20
## 8389 kbeniga@schwabe.com 2001-02-20
## 8390 kbeniga@schwabe.com 2001-02-20
## 8391 kbeniga@schwabe.com 2001-02-20
## 8392 kbeniga@schwabe.com 2001-02-20
## 8393 kbeniga@schwabe.com 2001-02-20
## 8394 kbeniga@schwabe.com 2001-02-20
## 8395 kbeniga@schwabe.com 2001-02-20
## 8396 kbeniga@schwabe.com 2001-02-20
## 8397 kbeniga@schwabe.com 2001-02-20
## 8398 kbeniga@schwabe.com 2001-02-20
## 8399 kbeniga@schwabe.com 2001-02-20
## 8400 kbeniga@schwabe.com 2001-02-20
## 8401 kbeniga@schwabe.com 2001-02-20
## 8402 kbeniga@schwabe.com 2001-02-20
## 8403 kbeniga@schwabe.com 2001-02-20
## 8404 kbeniga@schwabe.com 2001-02-20
## 8405 kbeniga@schwabe.com 2001-02-20
## 8406 kbeniga@schwabe.com 2001-02-20
## 8407 kbeniga@schwabe.com 2001-02-20
## 8408 kbeniga@schwabe.com 2001-02-20
## 8409 kbeniga@schwabe.com 2001-02-20
## 8410 kbeniga@schwabe.com 2001-02-20
## 8411 kbeniga@schwabe.com 2001-02-20
## 8412 kbeniga@schwabe.com 2001-02-20
## 8413 kbeniga@schwabe.com 2001-02-20
## 8414 kbeniga@schwabe.com 2001-02-20
## 8415 kbeniga@schwabe.com 2001-02-20
## 8416 kbeniga@schwabe.com 2001-02-20
## 8417 kbeniga@schwabe.com 2001-02-20
## 8418 kbeniga@schwabe.com 2001-02-20
## 8419 kbeniga@schwabe.com 2001-02-20
## 8420 kbeniga@schwabe.com 2001-02-20
## 8421 kbeniga@schwabe.com 2001-02-20
## 8422 kbeniga@schwabe.com 2001-02-20
## 8423 kbeniga@schwabe.com 2001-02-20
## 8424 kbeniga@schwabe.com 2001-02-20
## 8425 kbeniga@schwabe.com 2001-02-20
## 8426 kbeniga@schwabe.com 2001-02-20
## 8427 kbeniga@schwabe.com 2001-02-20
## 8428 kbeniga@schwabe.com 2001-02-20
## 8429 kbeniga@schwabe.com 2001-02-20
## 8430 kbeniga@schwabe.com 2001-02-20
## 8431 kbeniga@schwabe.com 2001-02-20
## 8432 kbeniga@schwabe.com 2001-02-20
## 8433 kbeniga@schwabe.com 2001-02-20
## 8434 kbeniga@schwabe.com 2001-02-20
## 8435 kbeniga@schwabe.com 2001-02-20
## 8436 kbeniga@schwabe.com 2001-02-20
## 8437 kbeniga@schwabe.com 2001-02-20
## 8438 kbeniga@schwabe.com 2001-02-20
## 8439 kbeniga@schwabe.com 2001-02-20
## 8440 kbeniga@schwabe.com 2001-02-20
## 8441 kbeniga@schwabe.com 2001-02-20
## 8442 kbeniga@schwabe.com 2001-02-20
## 8443 kbeniga@schwabe.com 2001-02-20
## 8444 kbeniga@schwabe.com 2001-02-20
## 8445 kbeniga@schwabe.com 2001-02-20
## 8446 kbeniga@schwabe.com 2001-02-20
## 8447 kbeniga@schwabe.com 2001-02-20
## 8448 kbeniga@schwabe.com 2001-02-20
## 8449 kbeniga@schwabe.com 2001-02-20
## 8450 kbeniga@schwabe.com 2001-02-20
## 8451 kbeniga@schwabe.com 2001-02-20
## 8452 kbeniga@schwabe.com 2001-02-20
## 8453 kbeniga@schwabe.com 2001-02-20
## 8454 kbeniga@schwabe.com 2001-02-20
## 8455 kbeniga@schwabe.com 2001-02-20
## 8456 kbeniga@schwabe.com 2001-02-20
## 8457 kbeniga@schwabe.com 2001-02-20
## 8458 kbeniga@schwabe.com 2001-02-20
## 8459 kbeniga@schwabe.com 2001-02-20
## 8460 kbeniga@schwabe.com 2001-02-20
## 8461 kbeniga@schwabe.com 2001-02-20
## 8462 kbeniga@schwabe.com 2001-02-20
## 8463 kbeniga@schwabe.com 2001-02-20
## 8464 kbeniga@schwabe.com 2001-02-20
## 8465 kbeniga@schwabe.com 2001-02-20
## 8466 kbeniga@schwabe.com 2001-02-20
## 8467 kbeniga@schwabe.com 2001-02-20
## 8468 kbeniga@schwabe.com 2001-02-20
## 8469 kbeniga@schwabe.com 2001-02-20
## 8470 kbeniga@schwabe.com 2001-02-20
## 8471 kbeniga@schwabe.com 2001-02-20
## 8472 kbeniga@schwabe.com 2001-02-20
## 8473 kbeniga@schwabe.com 2001-02-20
## 8474 kbeniga@schwabe.com 2001-02-20
## 8475 kbeniga@schwabe.com 2001-02-20
## 8476 kbeniga@schwabe.com 2001-02-20
## 8477 kbeniga@schwabe.com 2001-02-20
## 8478 kbeniga@schwabe.com 2001-02-20
## 8479 kbeniga@schwabe.com 2001-02-20
## 8480 kbeniga@schwabe.com 2001-02-20
## 8481 kbeniga@schwabe.com 2001-02-20
## 8482 tara.rafter@enron.com 2001-02-20
## 8483 tara.rafter@enron.com 2001-02-20
## 8484 tara.rafter@enron.com 2001-02-20
## 8485 tara.rafter@enron.com 2001-02-20
## 8486 tara.rafter@enron.com 2001-02-20
## 8487 tara.rafter@enron.com 2001-02-20
## 8488 tara.rafter@enron.com 2001-02-20
## 8489 tara.rafter@enron.com 2001-02-20
## 8490 tara.rafter@enron.com 2001-02-20
## 8491 tara.rafter@enron.com 2001-02-20
## 8492 tara.rafter@enron.com 2001-02-20
## 8493 tara.rafter@enron.com 2001-02-20
## 8494 tara.rafter@enron.com 2001-02-20
## 8495 tara.rafter@enron.com 2001-02-20
## 8496 tara.rafter@enron.com 2001-02-20
## 8497 tara.rafter@enron.com 2001-02-20
## 8498 tara.rafter@enron.com 2001-02-20
## 8499 tara.rafter@enron.com 2001-02-20
## 8500 tara.rafter@enron.com 2001-02-20
## 8501 tara.rafter@enron.com 2001-02-20
## 8502 tara.rafter@enron.com 2001-02-20
## 8503 tara.rafter@enron.com 2001-02-20
## 8504 tara.rafter@enron.com 2001-02-20
## 8505 tara.rafter@enron.com 2001-02-20
## 8506 tara.rafter@enron.com 2001-02-20
## 8507 tara.rafter@enron.com 2001-02-20
## 8508 tara.rafter@enron.com 2001-02-20
## 8509 tara.rafter@enron.com 2001-02-20
## 8510 tara.rafter@enron.com 2001-02-20
## 8511 tara.rafter@enron.com 2001-02-20
## 8512 tara.rafter@enron.com 2001-02-20
## 8513 tara.rafter@enron.com 2001-02-20
## 8514 tara.rafter@enron.com 2001-02-20
## 8515 tara.rafter@enron.com 2001-02-20
## 8516 tara.rafter@enron.com 2001-02-20
## 8517 tara.rafter@enron.com 2001-02-20
## 8518 tara.rafter@enron.com 2001-02-20
## 8519 tara.rafter@enron.com 2001-02-20
## 8520 tara.rafter@enron.com 2001-02-20
## 8521 tara.rafter@enron.com 2001-02-20
## 8522 tara.rafter@enron.com 2001-02-20
## 8523 tara.rafter@enron.com 2001-02-20
## 8524 tara.rafter@enron.com 2001-02-20
## 8525 tara.rafter@enron.com 2001-02-20
## 8526 tara.rafter@enron.com 2001-02-20
## 8527 tara.rafter@enron.com 2001-02-20
## 8528 tara.rafter@enron.com 2001-02-20
## 8529 tara.rafter@enron.com 2001-02-20
## 8530 tara.rafter@enron.com 2001-02-20
## 8531 tara.rafter@enron.com 2001-02-20
## 8532 tara.rafter@enron.com 2001-02-20
## 8533 tara.rafter@enron.com 2001-02-20
## 8534 tara.rafter@enron.com 2001-02-20
## 8535 tara.rafter@enron.com 2001-02-20
## 8536 tara.rafter@enron.com 2001-02-20
## 8537 tara.rafter@enron.com 2001-02-20
## 8538 tara.rafter@enron.com 2001-02-20
## 8539 tara.rafter@enron.com 2001-02-20
## 8540 tara.rafter@enron.com 2001-02-20
## 8541 tara.rafter@enron.com 2001-02-20
## 8542 tara.rafter@enron.com 2001-02-20
## 8543 tara.rafter@enron.com 2001-02-20
## 8544 tara.rafter@enron.com 2001-02-20
## 8545 tara.rafter@enron.com 2001-02-20
## 8546 tara.rafter@enron.com 2001-02-20
## 8547 tara.rafter@enron.com 2001-02-20
## 8548 tara.rafter@enron.com 2001-02-20
## 8549 tara.rafter@enron.com 2001-02-20
## 8550 tara.rafter@enron.com 2001-02-20
## 8551 tara.rafter@enron.com 2001-02-20
## 8552 tara.rafter@enron.com 2001-02-20
## 8553 tara.rafter@enron.com 2001-02-20
## 8554 tara.rafter@enron.com 2001-02-20
## 8555 tara.rafter@enron.com 2001-02-20
## 8556 tara.rafter@enron.com 2001-02-20
## 8557 tara.rafter@enron.com 2001-02-20
## 8558 tara.rafter@enron.com 2001-02-20
## 8559 tara.rafter@enron.com 2001-02-20
## 8560 tara.rafter@enron.com 2001-02-20
## 8561 tara.rafter@enron.com 2001-02-20
## 8562 tara.rafter@enron.com 2001-02-20
## 8563 tara.rafter@enron.com 2001-02-20
## 8564 tara.rafter@enron.com 2001-02-20
## 8565 tara.rafter@enron.com 2001-02-20
## 8566 tara.rafter@enron.com 2001-02-20
## 8567 tara.rafter@enron.com 2001-02-20
## 8568 tara.rafter@enron.com 2001-02-20
## 8569 tara.rafter@enron.com 2001-02-20
## 8570 tara.rafter@enron.com 2001-02-20
## 8571 tara.rafter@enron.com 2001-02-20
## 8572 tara.rafter@enron.com 2001-02-20
## 8573 tara.rafter@enron.com 2001-02-20
## 8574 tara.rafter@enron.com 2001-02-20
## 8575 tara.rafter@enron.com 2001-02-20
## 8576 tara.rafter@enron.com 2001-02-20
## 8577 tara.rafter@enron.com 2001-02-20
## 8578 tara.rafter@enron.com 2001-02-20
## 8579 tara.rafter@enron.com 2001-02-20
## 8580 tara.rafter@enron.com 2001-02-20
## 8581 tara.rafter@enron.com 2001-02-20
## 8582 tara.rafter@enron.com 2001-02-20
## 8583 bwoertz@caiso.com 2001-02-20
## 8584 bernadette.hawkins@enron.com 2001-02-21
## 8585 bernadette.hawkins@enron.com 2001-02-21
## 8586 bernadette.hawkins@enron.com 2001-02-21
## 8587 bernadette.hawkins@enron.com 2001-02-21
## 8588 cgrant@caiso.com 2001-02-21
## 8589 afpaschke@bpa.gov 2001-02-21
## 8590 afpaschke@bpa.gov 2001-02-21
## 8591 maiser@wscc.com 2001-02-21
## 8592 christi.nicolay@enron.com 2001-02-23
## 8593 christi.nicolay@enron.com 2001-02-23
## 8594 christi.nicolay@enron.com 2001-02-23
## 8595 christi.nicolay@enron.com 2001-02-23
## 8596 christi.nicolay@enron.com 2001-02-23
## 8597 christi.nicolay@enron.com 2001-02-23
## 8598 christi.nicolay@enron.com 2001-02-23
## 8599 christi.nicolay@enron.com 2001-02-23
## 8600 christi.nicolay@enron.com 2001-02-23
## 8601 christi.nicolay@enron.com 2001-02-23
## 8602 christi.nicolay@enron.com 2001-02-23
## 8603 christi.nicolay@enron.com 2001-02-23
## 8604 christi.nicolay@enron.com 2001-02-23
## 8605 christi.nicolay@enron.com 2001-02-23
## 8606 christi.nicolay@enron.com 2001-02-23
## 8607 christi.nicolay@enron.com 2001-02-23
## 8608 christi.nicolay@enron.com 2001-02-23
## 8609 christi.nicolay@enron.com 2001-02-23
## 8610 christi.nicolay@enron.com 2001-02-23
## 8611 christi.nicolay@enron.com 2001-02-23
## 8612 christi.nicolay@enron.com 2001-02-23
## 8613 christi.nicolay@enron.com 2001-02-23
## 8614 christi.nicolay@enron.com 2001-02-23
## 8615 christi.nicolay@enron.com 2001-02-23
## 8616 christi.nicolay@enron.com 2001-02-23
## 8617 christi.nicolay@enron.com 2001-02-23
## 8618 christi.nicolay@enron.com 2001-02-23
## 8619 christi.nicolay@enron.com 2001-02-23
## 8620 christi.nicolay@enron.com 2001-02-23
## 8621 christi.nicolay@enron.com 2001-02-23
## 8622 christi.nicolay@enron.com 2001-02-23
## 8623 christi.nicolay@enron.com 2001-02-23
## 8624 christi.nicolay@enron.com 2001-02-23
## 8625 christi.nicolay@enron.com 2001-02-23
## 8626 christi.nicolay@enron.com 2001-02-23
## 8627 christi.nicolay@enron.com 2001-02-23
## 8628 christi.nicolay@enron.com 2001-02-23
## 8629 pljacklin@stoel.com 2001-02-23
## 8630 ken.rice@enron.com 2001-02-26
## 8631 ginger.dernehl@enron.com 2001-02-26
## 8632 ginger.dernehl@enron.com 2001-02-26
## 8633 ginger.dernehl@enron.com 2001-02-26
## 8634 ginger.dernehl@enron.com 2001-02-26
## 8635 ginger.dernehl@enron.com 2001-02-26
## 8636 ginger.dernehl@enron.com 2001-02-26
## 8637 ginger.dernehl@enron.com 2001-02-26
## 8638 ginger.dernehl@enron.com 2001-02-26
## 8639 ginger.dernehl@enron.com 2001-02-26
## 8640 ginger.dernehl@enron.com 2001-02-26
## 8641 ginger.dernehl@enron.com 2001-02-26
## 8642 ginger.dernehl@enron.com 2001-02-26
## 8643 ginger.dernehl@enron.com 2001-02-26
## 8644 ginger.dernehl@enron.com 2001-02-26
## 8645 ginger.dernehl@enron.com 2001-02-26
## 8646 ginger.dernehl@enron.com 2001-02-26
## 8647 ginger.dernehl@enron.com 2001-02-26
## 8648 ginger.dernehl@enron.com 2001-02-26
## 8649 ginger.dernehl@enron.com 2001-02-26
## 8650 ginger.dernehl@enron.com 2001-02-26
## 8651 ginger.dernehl@enron.com 2001-02-26
## 8652 ginger.dernehl@enron.com 2001-02-26
## 8653 ginger.dernehl@enron.com 2001-02-26
## 8654 ginger.dernehl@enron.com 2001-02-26
## 8655 ginger.dernehl@enron.com 2001-02-26
## 8656 ginger.dernehl@enron.com 2001-02-26
## 8657 ginger.dernehl@enron.com 2001-02-26
## 8658 ginger.dernehl@enron.com 2001-02-26
## 8659 ginger.dernehl@enron.com 2001-02-26
## 8660 ginger.dernehl@enron.com 2001-02-26
## 8661 ginger.dernehl@enron.com 2001-02-26
## 8662 ginger.dernehl@enron.com 2001-02-26
## 8663 ginger.dernehl@enron.com 2001-02-26
## 8664 ginger.dernehl@enron.com 2001-02-26
## 8665 ginger.dernehl@enron.com 2001-02-26
## 8666 ginger.dernehl@enron.com 2001-02-26
## 8667 ginger.dernehl@enron.com 2001-02-26
## 8668 ginger.dernehl@enron.com 2001-02-26
## 8669 ginger.dernehl@enron.com 2001-02-26
## 8670 ginger.dernehl@enron.com 2001-02-26
## 8671 ginger.dernehl@enron.com 2001-02-26
## 8672 ginger.dernehl@enron.com 2001-02-26
## 8673 ginger.dernehl@enron.com 2001-02-26
## 8674 ginger.dernehl@enron.com 2001-02-26
## 8675 ginger.dernehl@enron.com 2001-02-26
## 8676 ginger.dernehl@enron.com 2001-02-26
## 8677 ginger.dernehl@enron.com 2001-02-26
## 8678 ginger.dernehl@enron.com 2001-02-26
## 8679 ginger.dernehl@enron.com 2001-02-26
## 8680 ginger.dernehl@enron.com 2001-02-26
## 8681 ginger.dernehl@enron.com 2001-02-26
## 8682 ginger.dernehl@enron.com 2001-02-26
## 8683 ginger.dernehl@enron.com 2001-02-26
## 8684 ginger.dernehl@enron.com 2001-02-26
## 8685 ginger.dernehl@enron.com 2001-02-26
## 8686 ginger.dernehl@enron.com 2001-02-26
## 8687 ginger.dernehl@enron.com 2001-02-26
## 8688 ginger.dernehl@enron.com 2001-02-26
## 8689 ginger.dernehl@enron.com 2001-02-26
## 8690 ginger.dernehl@enron.com 2001-02-26
## 8691 ginger.dernehl@enron.com 2001-02-26
## 8692 ginger.dernehl@enron.com 2001-02-26
## 8693 ginger.dernehl@enron.com 2001-02-26
## 8694 ginger.dernehl@enron.com 2001-02-26
## 8695 ginger.dernehl@enron.com 2001-02-26
## 8696 ginger.dernehl@enron.com 2001-02-26
## 8697 ginger.dernehl@enron.com 2001-02-26
## 8698 ginger.dernehl@enron.com 2001-02-26
## 8699 ginger.dernehl@enron.com 2001-02-26
## 8700 ginger.dernehl@enron.com 2001-02-26
## 8701 ginger.dernehl@enron.com 2001-02-26
## 8702 ginger.dernehl@enron.com 2001-02-26
## 8703 ginger.dernehl@enron.com 2001-02-26
## 8704 ginger.dernehl@enron.com 2001-02-26
## 8705 ginger.dernehl@enron.com 2001-02-26
## 8706 ginger.dernehl@enron.com 2001-02-26
## 8707 ginger.dernehl@enron.com 2001-02-26
## 8708 ginger.dernehl@enron.com 2001-02-26
## 8709 ginger.dernehl@enron.com 2001-02-26
## 8710 ginger.dernehl@enron.com 2001-02-26
## 8711 ginger.dernehl@enron.com 2001-02-26
## 8712 ginger.dernehl@enron.com 2001-02-26
## 8713 ginger.dernehl@enron.com 2001-02-26
## 8714 ginger.dernehl@enron.com 2001-02-26
## 8715 ginger.dernehl@enron.com 2001-02-26
## 8716 ginger.dernehl@enron.com 2001-02-26
## 8717 ginger.dernehl@enron.com 2001-02-26
## 8718 ginger.dernehl@enron.com 2001-02-26
## 8719 ginger.dernehl@enron.com 2001-02-26
## 8720 ginger.dernehl@enron.com 2001-02-26
## 8721 ginger.dernehl@enron.com 2001-02-26
## 8722 ginger.dernehl@enron.com 2001-02-26
## 8723 ginger.dernehl@enron.com 2001-02-26
## 8724 ginger.dernehl@enron.com 2001-02-26
## 8725 ginger.dernehl@enron.com 2001-02-26
## 8726 ginger.dernehl@enron.com 2001-02-26
## 8727 ginger.dernehl@enron.com 2001-02-26
## 8728 ginger.dernehl@enron.com 2001-02-26
## 8729 ginger.dernehl@enron.com 2001-02-26
## 8730 ginger.dernehl@enron.com 2001-02-26
## 8731 ginger.dernehl@enron.com 2001-02-26
## 8732 ginger.dernehl@enron.com 2001-02-26
## 8733 ginger.dernehl@enron.com 2001-02-26
## 8734 ginger.dernehl@enron.com 2001-02-26
## 8735 ginger.dernehl@enron.com 2001-02-26
## 8736 ginger.dernehl@enron.com 2001-02-26
## 8737 ginger.dernehl@enron.com 2001-02-26
## 8738 ginger.dernehl@enron.com 2001-02-26
## 8739 ginger.dernehl@enron.com 2001-02-26
## 8740 ginger.dernehl@enron.com 2001-02-26
## 8741 ginger.dernehl@enron.com 2001-02-26
## 8742 ginger.dernehl@enron.com 2001-02-26
## 8743 ginger.dernehl@enron.com 2001-02-26
## 8744 ginger.dernehl@enron.com 2001-02-26
## 8745 ginger.dernehl@enron.com 2001-02-26
## 8746 ginger.dernehl@enron.com 2001-02-26
## 8747 ginger.dernehl@enron.com 2001-02-26
## 8748 ginger.dernehl@enron.com 2001-02-26
## 8749 ginger.dernehl@enron.com 2001-02-26
## 8750 ginger.dernehl@enron.com 2001-02-26
## 8751 ginger.dernehl@enron.com 2001-02-26
## 8752 ginger.dernehl@enron.com 2001-02-26
## 8753 ginger.dernehl@enron.com 2001-02-26
## 8754 ginger.dernehl@enron.com 2001-02-26
## 8755 pmohler@hewm.com 2001-02-26
## 8756 pmohler@hewm.com 2001-02-26
## 8757 pmohler@hewm.com 2001-02-26
## 8758 pmohler@hewm.com 2001-02-26
## 8759 pmohler@hewm.com 2001-02-26
## 8760 pmohler@hewm.com 2001-02-26
## 8761 pmohler@hewm.com 2001-02-26
## 8762 pmohler@hewm.com 2001-02-26
## 8763 pmohler@hewm.com 2001-02-26
## 8764 pmohler@hewm.com 2001-02-26
## 8765 pmohler@hewm.com 2001-02-26
## 8766 pmohler@hewm.com 2001-02-26
## 8767 pmohler@hewm.com 2001-02-26
## 8768 christi.nicolay@enron.com 2001-02-27
## 8769 christi.nicolay@enron.com 2001-02-27
## 8770 christi.nicolay@enron.com 2001-02-27
## 8771 christi.nicolay@enron.com 2001-02-27
## 8772 christi.nicolay@enron.com 2001-02-27
## 8773 christi.nicolay@enron.com 2001-02-27
## 8774 christi.nicolay@enron.com 2001-02-27
## 8775 christi.nicolay@enron.com 2001-02-27
## 8776 christi.nicolay@enron.com 2001-02-27
## 8777 christi.nicolay@enron.com 2001-02-27
## 8778 christi.nicolay@enron.com 2001-02-27
## 8779 bwhalen@sppc.com 2001-02-28
## 8780 bwhalen@sppc.com 2001-02-28
## 8781 bwhalen@sppc.com 2001-02-28
## 8782 javier.li@enron.com 2001-02-28
## 8783 javier.li@enron.com 2001-02-28
## 8784 javier.li@enron.com 2001-02-28
## 8785 shapp@caiso.com 2001-03-01
## 8786 christi.nicolay@enron.com 2001-03-01
## 8787 christi.nicolay@enron.com 2001-03-01
## 8788 christi.nicolay@enron.com 2001-03-01
## 8789 david.poston@enron.com 2001-03-01
## 8790 david.poston@enron.com 2001-03-01
## 8791 david.poston@enron.com 2001-03-01
## 8792 david.poston@enron.com 2001-03-01
## 8793 david.poston@enron.com 2001-03-01
## 8794 david.poston@enron.com 2001-03-01
## 8795 david.poston@enron.com 2001-03-01
## 8796 david.poston@enron.com 2001-03-01
## 8797 david.poston@enron.com 2001-03-01
## 8798 david.poston@enron.com 2001-03-01
## 8799 david.poston@enron.com 2001-03-01
## 8800 bill@beachheadmusic.com 2001-03-01
## 8801 christi.nicolay@enron.com 2001-03-02
## 8802 christi.nicolay@enron.com 2001-03-02
## 8803 christi.nicolay@enron.com 2001-03-02
## 8804 christi.nicolay@enron.com 2001-03-02
## 8805 christi.nicolay@enron.com 2001-03-02
## 8806 christi.nicolay@enron.com 2001-03-02
## 8807 christi.nicolay@enron.com 2001-03-02
## 8808 christi.nicolay@enron.com 2001-03-02
## 8809 christi.nicolay@enron.com 2001-03-02
## 8810 christi.nicolay@enron.com 2001-03-02
## 8811 christi.nicolay@enron.com 2001-03-02
## 8812 christi.nicolay@enron.com 2001-03-02
## 8813 christi.nicolay@enron.com 2001-03-02
## 8814 christi.nicolay@enron.com 2001-03-02
## 8815 christi.nicolay@enron.com 2001-03-02
## 8816 christi.nicolay@enron.com 2001-03-02
## 8817 christi.nicolay@enron.com 2001-03-02
## 8818 christi.nicolay@enron.com 2001-03-02
## 8819 christi.nicolay@enron.com 2001-03-02
## 8820 christi.nicolay@enron.com 2001-03-02
## 8821 christi.nicolay@enron.com 2001-03-02
## 8822 christi.nicolay@enron.com 2001-03-02
## 8823 christi.nicolay@enron.com 2001-03-02
## 8824 leslie.lawner@enron.com 2001-03-02
## 8825 leslie.lawner@enron.com 2001-03-02
## 8826 leslie.lawner@enron.com 2001-03-02
## 8827 leslie.lawner@enron.com 2001-03-02
## 8828 leslie.lawner@enron.com 2001-03-02
## 8829 leslie.lawner@enron.com 2001-03-02
## 8830 leslie.lawner@enron.com 2001-03-02
## 8831 leslie.lawner@enron.com 2001-03-02
## 8832 leslie.lawner@enron.com 2001-03-02
## 8833 leslie.lawner@enron.com 2001-03-02
## 8834 leslie.lawner@enron.com 2001-03-02
## 8835 leslie.lawner@enron.com 2001-03-02
## 8836 leslie.lawner@enron.com 2001-03-02
## 8837 leslie.lawner@enron.com 2001-03-02
## 8838 leslie.lawner@enron.com 2001-03-02
## 8839 leslie.lawner@enron.com 2001-03-02
## 8840 christi.nicolay@enron.com 2001-03-02
## 8841 christi.nicolay@enron.com 2001-03-02
## 8842 christi.nicolay@enron.com 2001-03-02
## 8843 christi.nicolay@enron.com 2001-03-02
## 8844 christi.nicolay@enron.com 2001-03-02
## 8845 christi.nicolay@enron.com 2001-03-02
## 8846 christi.nicolay@enron.com 2001-03-02
## 8847 christi.nicolay@enron.com 2001-03-02
## 8848 christi.nicolay@enron.com 2001-03-02
## 8849 christi.nicolay@enron.com 2001-03-02
## 8850 christi.nicolay@enron.com 2001-03-02
## 8851 christi.nicolay@enron.com 2001-03-02
## 8852 christi.nicolay@enron.com 2001-03-02
## 8853 christi.nicolay@enron.com 2001-03-02
## 8854 christi.nicolay@enron.com 2001-03-02
## 8855 christi.nicolay@enron.com 2001-03-02
## 8856 christi.nicolay@enron.com 2001-03-02
## 8857 christi.nicolay@enron.com 2001-03-02
## 8858 christi.nicolay@enron.com 2001-03-02
## 8859 christi.nicolay@enron.com 2001-03-02
## 8860 christi.nicolay@enron.com 2001-03-02
## 8861 christi.nicolay@enron.com 2001-03-02
## 8862 christi.nicolay@enron.com 2001-03-02
## 8863 christi.nicolay@enron.com 2001-03-02
## 8864 christi.nicolay@enron.com 2001-03-02
## 8865 christi.nicolay@enron.com 2001-03-02
## 8866 christi.nicolay@enron.com 2001-03-02
## 8867 christi.nicolay@enron.com 2001-03-02
## 8868 christi.nicolay@enron.com 2001-03-02
## 8869 christi.nicolay@enron.com 2001-03-02
## 8870 christi.nicolay@enron.com 2001-03-02
## 8871 christi.nicolay@enron.com 2001-03-02
## 8872 christi.nicolay@enron.com 2001-03-02
## 8873 christi.nicolay@enron.com 2001-03-02
## 8874 christi.nicolay@enron.com 2001-03-02
## 8875 christi.nicolay@enron.com 2001-03-02
## 8876 christi.nicolay@enron.com 2001-03-02
## 8877 christi.nicolay@enron.com 2001-03-02
## 8878 christi.nicolay@enron.com 2001-03-02
## 8879 christi.nicolay@enron.com 2001-03-02
## 8880 christi.nicolay@enron.com 2001-03-02
## 8881 christi.nicolay@enron.com 2001-03-02
## 8882 christi.nicolay@enron.com 2001-03-02
## 8883 christi.nicolay@enron.com 2001-03-02
## 8884 christi.nicolay@enron.com 2001-03-02
## 8885 christi.nicolay@enron.com 2001-03-02
## 8886 christi.nicolay@enron.com 2001-03-02
## 8887 christi.nicolay@enron.com 2001-03-02
## 8888 christi.nicolay@enron.com 2001-03-02
## 8889 christi.nicolay@enron.com 2001-03-02
## 8890 christi.nicolay@enron.com 2001-03-02
## 8891 christi.nicolay@enron.com 2001-03-02
## 8892 christi.nicolay@enron.com 2001-03-02
## 8893 christi.nicolay@enron.com 2001-03-02
## 8894 christi.nicolay@enron.com 2001-03-02
## 8895 christi.nicolay@enron.com 2001-03-02
## 8896 christi.nicolay@enron.com 2001-03-02
## 8897 christi.nicolay@enron.com 2001-03-02
## 8898 christi.nicolay@enron.com 2001-03-02
## 8899 christi.nicolay@enron.com 2001-03-02
## 8900 christi.nicolay@enron.com 2001-03-02
## 8901 christi.nicolay@enron.com 2001-03-02
## 8902 christi.nicolay@enron.com 2001-03-02
## 8903 christi.nicolay@enron.com 2001-03-02
## 8904 christi.nicolay@enron.com 2001-03-02
## 8905 christi.nicolay@enron.com 2001-03-02
## 8906 christi.nicolay@enron.com 2001-03-02
## 8907 christi.nicolay@enron.com 2001-03-02
## 8908 christi.nicolay@enron.com 2001-03-02
## 8909 christi.nicolay@enron.com 2001-03-02
## 8910 christi.nicolay@enron.com 2001-03-02
## 8911 christi.nicolay@enron.com 2001-03-02
## 8912 christi.nicolay@enron.com 2001-03-02
## 8913 christi.nicolay@enron.com 2001-03-02
## 8914 christi.nicolay@enron.com 2001-03-02
## 8915 christi.nicolay@enron.com 2001-03-02
## 8916 christi.nicolay@enron.com 2001-03-02
## 8917 christi.nicolay@enron.com 2001-03-02
## 8918 christi.nicolay@enron.com 2001-03-02
## 8919 christi.nicolay@enron.com 2001-03-02
## 8920 christi.nicolay@enron.com 2001-03-02
## 8921 christi.nicolay@enron.com 2001-03-02
## 8922 christi.nicolay@enron.com 2001-03-02
## 8923 christi.nicolay@enron.com 2001-03-02
## 8924 christi.nicolay@enron.com 2001-03-02
## 8925 christi.nicolay@enron.com 2001-03-02
## 8926 christi.nicolay@enron.com 2001-03-02
## 8927 christi.nicolay@enron.com 2001-03-02
## 8928 christi.nicolay@enron.com 2001-03-02
## 8929 christi.nicolay@enron.com 2001-03-02
## 8930 christi.nicolay@enron.com 2001-03-02
## 8931 christi.nicolay@enron.com 2001-03-02
## 8932 christi.nicolay@enron.com 2001-03-02
## 8933 tara.rafter@enron.com 2001-03-02
## 8934 tara.rafter@enron.com 2001-03-02
## 8935 tara.rafter@enron.com 2001-03-02
## 8936 tara.rafter@enron.com 2001-03-02
## 8937 tara.rafter@enron.com 2001-03-02
## 8938 tara.rafter@enron.com 2001-03-02
## 8939 tara.rafter@enron.com 2001-03-02
## 8940 tara.rafter@enron.com 2001-03-02
## 8941 tara.rafter@enron.com 2001-03-02
## 8942 tara.rafter@enron.com 2001-03-02
## 8943 tara.rafter@enron.com 2001-03-02
## 8944 tara.rafter@enron.com 2001-03-02
## 8945 tara.rafter@enron.com 2001-03-02
## 8946 tara.rafter@enron.com 2001-03-02
## 8947 tara.rafter@enron.com 2001-03-02
## 8948 tara.rafter@enron.com 2001-03-02
## 8949 tara.rafter@enron.com 2001-03-02
## 8950 tara.rafter@enron.com 2001-03-02
## 8951 tara.rafter@enron.com 2001-03-02
## 8952 tara.rafter@enron.com 2001-03-02
## 8953 tara.rafter@enron.com 2001-03-02
## 8954 tara.rafter@enron.com 2001-03-02
## 8955 tara.rafter@enron.com 2001-03-02
## 8956 tara.rafter@enron.com 2001-03-02
## 8957 tara.rafter@enron.com 2001-03-02
## 8958 tara.rafter@enron.com 2001-03-02
## 8959 tara.rafter@enron.com 2001-03-02
## 8960 tara.rafter@enron.com 2001-03-02
## 8961 tara.rafter@enron.com 2001-03-02
## 8962 tara.rafter@enron.com 2001-03-02
## 8963 tara.rafter@enron.com 2001-03-02
## 8964 tara.rafter@enron.com 2001-03-02
## 8965 tara.rafter@enron.com 2001-03-02
## 8966 tara.rafter@enron.com 2001-03-02
## 8967 tara.rafter@enron.com 2001-03-02
## 8968 tara.rafter@enron.com 2001-03-02
## 8969 tara.rafter@enron.com 2001-03-02
## 8970 tara.rafter@enron.com 2001-03-02
## 8971 tara.rafter@enron.com 2001-03-02
## 8972 tara.rafter@enron.com 2001-03-02
## 8973 tara.rafter@enron.com 2001-03-02
## 8974 tara.rafter@enron.com 2001-03-02
## 8975 tara.rafter@enron.com 2001-03-02
## 8976 tara.rafter@enron.com 2001-03-02
## 8977 tara.rafter@enron.com 2001-03-02
## 8978 tara.rafter@enron.com 2001-03-02
## 8979 tara.rafter@enron.com 2001-03-02
## 8980 tara.rafter@enron.com 2001-03-02
## 8981 tara.rafter@enron.com 2001-03-02
## 8982 tara.rafter@enron.com 2001-03-02
## 8983 tara.rafter@enron.com 2001-03-02
## 8984 tara.rafter@enron.com 2001-03-02
## 8985 tara.rafter@enron.com 2001-03-02
## 8986 tara.rafter@enron.com 2001-03-02
## 8987 tara.rafter@enron.com 2001-03-02
## 8988 tara.rafter@enron.com 2001-03-02
## 8989 tara.rafter@enron.com 2001-03-02
## 8990 tara.rafter@enron.com 2001-03-02
## 8991 tara.rafter@enron.com 2001-03-02
## 8992 tara.rafter@enron.com 2001-03-02
## 8993 tara.rafter@enron.com 2001-03-02
## 8994 tara.rafter@enron.com 2001-03-02
## 8995 tara.rafter@enron.com 2001-03-02
## 8996 tara.rafter@enron.com 2001-03-02
## 8997 tara.rafter@enron.com 2001-03-02
## 8998 tara.rafter@enron.com 2001-03-02
## 8999 tara.rafter@enron.com 2001-03-02
## 9000 tara.rafter@enron.com 2001-03-02
## 9001 tara.rafter@enron.com 2001-03-02
## 9002 tara.rafter@enron.com 2001-03-02
## 9003 tara.rafter@enron.com 2001-03-02
## 9004 tara.rafter@enron.com 2001-03-02
## 9005 tara.rafter@enron.com 2001-03-02
## 9006 tara.rafter@enron.com 2001-03-02
## 9007 tara.rafter@enron.com 2001-03-02
## 9008 tara.rafter@enron.com 2001-03-02
## 9009 tara.rafter@enron.com 2001-03-02
## 9010 tara.rafter@enron.com 2001-03-02
## 9011 tara.rafter@enron.com 2001-03-02
## 9012 tara.rafter@enron.com 2001-03-02
## 9013 tara.rafter@enron.com 2001-03-02
## 9014 tara.rafter@enron.com 2001-03-02
## 9015 tara.rafter@enron.com 2001-03-02
## 9016 tara.rafter@enron.com 2001-03-02
## 9017 tara.rafter@enron.com 2001-03-02
## 9018 pmohler@hewm.com 2001-03-02
## 9019 pmohler@hewm.com 2001-03-02
## 9020 pmohler@hewm.com 2001-03-02
## 9021 pmohler@hewm.com 2001-03-02
## 9022 pmohler@hewm.com 2001-03-02
## 9023 pmohler@hewm.com 2001-03-02
## 9024 pmohler@hewm.com 2001-03-02
## 9025 pmohler@hewm.com 2001-03-02
## 9026 pmohler@hewm.com 2001-03-02
## 9027 pmohler@hewm.com 2001-03-02
## 9028 pmohler@hewm.com 2001-03-02
## 9029 pmohler@hewm.com 2001-03-02
## 9030 pmohler@hewm.com 2001-03-02
## 9031 pmohler@hewm.com 2001-03-02
## 9032 pmohler@hewm.com 2001-03-02
## 9033 pmohler@hewm.com 2001-03-02
## 9034 pmohler@hewm.com 2001-03-02
## 9035 dan_pigeon@transalta.com 2001-03-02
## 9036 dan_pigeon@transalta.com 2001-03-02
## 9037 dan_pigeon@transalta.com 2001-03-02
## 9038 dan_pigeon@transalta.com 2001-03-02
## 9039 dan_pigeon@transalta.com 2001-03-02
## 9040 dan_pigeon@transalta.com 2001-03-02
## 9041 dan_pigeon@transalta.com 2001-03-02
## 9042 dan_pigeon@transalta.com 2001-03-02
## 9043 dan_pigeon@transalta.com 2001-03-02
## 9044 dan_pigeon@transalta.com 2001-03-02
## 9045 dan_pigeon@transalta.com 2001-03-02
## 9046 dan_pigeon@transalta.com 2001-03-02
## 9047 dan_pigeon@transalta.com 2001-03-02
## 9048 dan_pigeon@transalta.com 2001-03-02
## 9049 dan_pigeon@transalta.com 2001-03-02
## 9050 dan_pigeon@transalta.com 2001-03-02
## 9051 dan_pigeon@transalta.com 2001-03-02
## 9052 dan_pigeon@transalta.com 2001-03-02
## 9053 dan_pigeon@transalta.com 2001-03-02
## 9054 dan_pigeon@transalta.com 2001-03-02
## 9055 dan_pigeon@transalta.com 2001-03-02
## 9056 dan_pigeon@transalta.com 2001-03-02
## 9057 dan_pigeon@transalta.com 2001-03-02
## 9058 dan_pigeon@transalta.com 2001-03-02
## 9059 dan_pigeon@transalta.com 2001-03-02
## 9060 dan_pigeon@transalta.com 2001-03-02
## 9061 dan_pigeon@transalta.com 2001-03-02
## 9062 dan_pigeon@transalta.com 2001-03-02
## 9063 dan_pigeon@transalta.com 2001-03-02
## 9064 dan_pigeon@transalta.com 2001-03-02
## 9065 dan_pigeon@transalta.com 2001-03-02
## 9066 dan_pigeon@transalta.com 2001-03-02
## 9067 dan_pigeon@transalta.com 2001-03-02
## 9068 dan_pigeon@transalta.com 2001-03-02
## 9069 dan_pigeon@transalta.com 2001-03-02
## 9070 dan_pigeon@transalta.com 2001-03-02
## 9071 dan_pigeon@transalta.com 2001-03-02
## 9072 dan_pigeon@transalta.com 2001-03-02
## 9073 dan_pigeon@transalta.com 2001-03-02
## 9074 dan_pigeon@transalta.com 2001-03-02
## 9075 dan_pigeon@transalta.com 2001-03-02
## 9076 dan_pigeon@transalta.com 2001-03-02
## 9077 dan_pigeon@transalta.com 2001-03-02
## 9078 dan_pigeon@transalta.com 2001-03-02
## 9079 dan_pigeon@transalta.com 2001-03-02
## 9080 dan_pigeon@transalta.com 2001-03-02
## 9081 dan_pigeon@transalta.com 2001-03-02
## 9082 dan_pigeon@transalta.com 2001-03-02
## 9083 dan_pigeon@transalta.com 2001-03-02
## 9084 dan_pigeon@transalta.com 2001-03-02
## 9085 dan_pigeon@transalta.com 2001-03-02
## 9086 dan_pigeon@transalta.com 2001-03-02
## 9087 dan_pigeon@transalta.com 2001-03-02
## 9088 dan_pigeon@transalta.com 2001-03-02
## 9089 dan_pigeon@transalta.com 2001-03-02
## 9090 dan_pigeon@transalta.com 2001-03-02
## 9091 dan_pigeon@transalta.com 2001-03-02
## 9092 dan_pigeon@transalta.com 2001-03-02
## 9093 dan_pigeon@transalta.com 2001-03-02
## 9094 dan_pigeon@transalta.com 2001-03-02
## 9095 dan_pigeon@transalta.com 2001-03-02
## 9096 dan_pigeon@transalta.com 2001-03-02
## 9097 dan_pigeon@transalta.com 2001-03-02
## 9098 dan_pigeon@transalta.com 2001-03-02
## 9099 dan_pigeon@transalta.com 2001-03-02
## 9100 dan_pigeon@transalta.com 2001-03-02
## 9101 dan_pigeon@transalta.com 2001-03-02
## 9102 dan_pigeon@transalta.com 2001-03-02
## 9103 dan_pigeon@transalta.com 2001-03-02
## 9104 dan_pigeon@transalta.com 2001-03-02
## 9105 dan_pigeon@transalta.com 2001-03-02
## 9106 dan_pigeon@transalta.com 2001-03-02
## 9107 dan_pigeon@transalta.com 2001-03-02
## 9108 dan_pigeon@transalta.com 2001-03-02
## 9109 dan_pigeon@transalta.com 2001-03-02
## 9110 dan_pigeon@transalta.com 2001-03-02
## 9111 dan_pigeon@transalta.com 2001-03-02
## 9112 dan_pigeon@transalta.com 2001-03-02
## 9113 dan_pigeon@transalta.com 2001-03-02
## 9114 dan_pigeon@transalta.com 2001-03-02
## 9115 dan_pigeon@transalta.com 2001-03-02
## 9116 dan_pigeon@transalta.com 2001-03-02
## 9117 dan_pigeon@transalta.com 2001-03-02
## 9118 dan_pigeon@transalta.com 2001-03-02
## 9119 dan_pigeon@transalta.com 2001-03-02
## 9120 dan_pigeon@transalta.com 2001-03-02
## 9121 dan_pigeon@transalta.com 2001-03-02
## 9122 dan_pigeon@transalta.com 2001-03-02
## 9123 dan_pigeon@transalta.com 2001-03-02
## 9124 dan_pigeon@transalta.com 2001-03-02
## 9125 dan_pigeon@transalta.com 2001-03-02
## 9126 christi.nicolay@enron.com 2001-03-02
## 9127 christi.nicolay@enron.com 2001-03-02
## 9128 christi.nicolay@enron.com 2001-03-02
## 9129 christi.nicolay@enron.com 2001-03-02
## 9130 christi.nicolay@enron.com 2001-03-02
## 9131 christi.nicolay@enron.com 2001-03-02
## 9132 christi.nicolay@enron.com 2001-03-02
## 9133 christi.nicolay@enron.com 2001-03-02
## 9134 christi.nicolay@enron.com 2001-03-02
## 9135 christi.nicolay@enron.com 2001-03-02
## 9136 christi.nicolay@enron.com 2001-03-02
## 9137 christi.nicolay@enron.com 2001-03-02
## 9138 christi.nicolay@enron.com 2001-03-02
## 9139 christi.nicolay@enron.com 2001-03-02
## 9140 christi.nicolay@enron.com 2001-03-02
## 9141 christi.nicolay@enron.com 2001-03-02
## 9142 christi.nicolay@enron.com 2001-03-02
## 9143 christi.nicolay@enron.com 2001-03-02
## 9144 christi.nicolay@enron.com 2001-03-02
## 9145 christi.nicolay@enron.com 2001-03-02
## 9146 christi.nicolay@enron.com 2001-03-02
## 9147 christi.nicolay@enron.com 2001-03-02
## 9148 christi.nicolay@enron.com 2001-03-02
## 9149 douglass@arterhadden.com 2001-03-02
## 9150 douglass@arterhadden.com 2001-03-02
## 9151 douglass@arterhadden.com 2001-03-02
## 9152 douglass@arterhadden.com 2001-03-02
## 9153 douglass@arterhadden.com 2001-03-02
## 9154 douglass@arterhadden.com 2001-03-02
## 9155 douglass@arterhadden.com 2001-03-02
## 9156 douglass@arterhadden.com 2001-03-02
## 9157 douglass@arterhadden.com 2001-03-02
## 9158 douglass@arterhadden.com 2001-03-02
## 9159 douglass@arterhadden.com 2001-03-02
## 9160 douglass@arterhadden.com 2001-03-02
## 9161 douglass@arterhadden.com 2001-03-02
## 9162 douglass@arterhadden.com 2001-03-02
## 9163 douglass@arterhadden.com 2001-03-02
## 9164 douglass@arterhadden.com 2001-03-02
## 9165 douglass@arterhadden.com 2001-03-02
## 9166 douglass@arterhadden.com 2001-03-02
## 9167 douglass@arterhadden.com 2001-03-02
## 9168 douglass@arterhadden.com 2001-03-02
## 9169 douglass@arterhadden.com 2001-03-02
## 9170 douglass@arterhadden.com 2001-03-02
## 9171 douglass@arterhadden.com 2001-03-02
## 9172 douglass@arterhadden.com 2001-03-02
## 9173 douglass@arterhadden.com 2001-03-02
## 9174 douglass@arterhadden.com 2001-03-02
## 9175 douglass@arterhadden.com 2001-03-02
## 9176 douglass@arterhadden.com 2001-03-02
## 9177 douglass@arterhadden.com 2001-03-02
## 9178 douglass@arterhadden.com 2001-03-02
## 9179 douglass@arterhadden.com 2001-03-02
## 9180 douglass@arterhadden.com 2001-03-02
## 9181 douglass@arterhadden.com 2001-03-02
## 9182 douglass@arterhadden.com 2001-03-02
## 9183 douglass@arterhadden.com 2001-03-02
## 9184 douglass@arterhadden.com 2001-03-02
## 9185 douglass@arterhadden.com 2001-03-02
## 9186 douglass@arterhadden.com 2001-03-02
## 9187 douglass@arterhadden.com 2001-03-02
## 9188 douglass@arterhadden.com 2001-03-02
## 9189 douglass@arterhadden.com 2001-03-02
## 9190 douglass@arterhadden.com 2001-03-02
## 9191 douglass@arterhadden.com 2001-03-02
## 9192 douglass@arterhadden.com 2001-03-02
## 9193 douglass@arterhadden.com 2001-03-02
## 9194 douglass@arterhadden.com 2001-03-02
## 9195 douglass@arterhadden.com 2001-03-02
## 9196 douglass@arterhadden.com 2001-03-02
## 9197 douglass@arterhadden.com 2001-03-02
## 9198 douglass@arterhadden.com 2001-03-02
## 9199 douglass@arterhadden.com 2001-03-02
## 9200 douglass@arterhadden.com 2001-03-02
## 9201 douglass@arterhadden.com 2001-03-02
## 9202 douglass@arterhadden.com 2001-03-02
## 9203 douglass@arterhadden.com 2001-03-02
## 9204 douglass@arterhadden.com 2001-03-02
## 9205 douglass@arterhadden.com 2001-03-02
## 9206 douglass@arterhadden.com 2001-03-02
## 9207 douglass@arterhadden.com 2001-03-02
## 9208 douglass@arterhadden.com 2001-03-02
## 9209 douglass@arterhadden.com 2001-03-02
## 9210 douglass@arterhadden.com 2001-03-02
## 9211 douglass@arterhadden.com 2001-03-02
## 9212 douglass@arterhadden.com 2001-03-02
## 9213 douglass@arterhadden.com 2001-03-02
## 9214 douglass@arterhadden.com 2001-03-02
## 9215 douglass@arterhadden.com 2001-03-02
## 9216 douglass@arterhadden.com 2001-03-02
## 9217 douglass@arterhadden.com 2001-03-02
## 9218 douglass@arterhadden.com 2001-03-02
## 9219 douglass@arterhadden.com 2001-03-02
## 9220 douglass@arterhadden.com 2001-03-02
## 9221 douglass@arterhadden.com 2001-03-02
## 9222 douglass@arterhadden.com 2001-03-02
## 9223 douglass@arterhadden.com 2001-03-02
## 9224 douglass@arterhadden.com 2001-03-02
## 9225 douglass@arterhadden.com 2001-03-02
## 9226 douglass@arterhadden.com 2001-03-02
## 9227 douglass@arterhadden.com 2001-03-02
## 9228 douglass@arterhadden.com 2001-03-02
## 9229 douglass@arterhadden.com 2001-03-02
## 9230 douglass@arterhadden.com 2001-03-02
## 9231 douglass@arterhadden.com 2001-03-02
## 9232 douglass@arterhadden.com 2001-03-02
## 9233 douglass@arterhadden.com 2001-03-02
## 9234 douglass@arterhadden.com 2001-03-02
## 9235 douglass@arterhadden.com 2001-03-02
## 9236 douglass@arterhadden.com 2001-03-02
## 9237 douglass@arterhadden.com 2001-03-02
## 9238 douglass@arterhadden.com 2001-03-02
## 9239 cgrant@caiso.com 2001-03-02
## 9240 pmohler@hewm.com 2001-03-02
## 9241 pmohler@hewm.com 2001-03-02
## 9242 pmohler@hewm.com 2001-03-02
## 9243 pmohler@hewm.com 2001-03-02
## 9244 pmohler@hewm.com 2001-03-02
## 9245 pmohler@hewm.com 2001-03-02
## 9246 pmohler@hewm.com 2001-03-02
## 9247 pmohler@hewm.com 2001-03-02
## 9248 pmohler@hewm.com 2001-03-02
## 9249 pmohler@hewm.com 2001-03-02
## 9250 pmohler@hewm.com 2001-03-02
## 9251 pmohler@hewm.com 2001-03-02
## 9252 pmohler@hewm.com 2001-03-02
## 9253 pmohler@hewm.com 2001-03-02
## 9254 pmohler@hewm.com 2001-03-02
## 9255 pmohler@hewm.com 2001-03-02
## 9256 pmohler@hewm.com 2001-03-02
## 9257 gfergus@brobeck.com 2001-03-02
## 9258 gfergus@brobeck.com 2001-03-02
## 9259 gfergus@brobeck.com 2001-03-02
## 9260 gfergus@brobeck.com 2001-03-02
## 9261 gfergus@brobeck.com 2001-03-02
## 9262 gfergus@brobeck.com 2001-03-02
## 9263 eric.benson@enron.com 2001-03-02
## 9264 crcommunications@caiso.com 2001-03-02
## 9265 crcommunications@caiso.com 2001-03-02
## 9266 crcommunications@caiso.com 2001-03-02
## 9267 crcommunications@caiso.com 2001-03-02
## 9268 crcommunications@caiso.com 2001-03-02
## 9269 enron.announcements@enron.com 2001-03-02
## 9270 enron.announcements@enron.com 2001-03-02
## 9271 lmrig@worldnet.att.net 2001-03-02
## 9272 cfi1@tca-us.com 2001-03-03
## 9273 cfi1@tca-us.com 2001-03-03
## 9274 cfi1@tca-us.com 2001-03-03
## 9275 bwoertz@caiso.com 2001-03-05
## 9276 charles.yeung@enron.com 2001-03-05
## 9277 charles.yeung@enron.com 2001-03-05
## 9278 charles.yeung@enron.com 2001-03-05
## 9279 charles.yeung@enron.com 2001-03-05
## 9280 charles.yeung@enron.com 2001-03-05
## 9281 bwoertz@caiso.com 2001-03-06
## 9282 christi.nicolay@enron.com 2001-03-06
## 9283 christi.nicolay@enron.com 2001-03-06
## 9284 christi.nicolay@enron.com 2001-03-06
## 9285 christi.nicolay@enron.com 2001-03-06
## 9286 christi.nicolay@enron.com 2001-03-06
## 9287 christi.nicolay@enron.com 2001-03-06
## 9288 christi.nicolay@enron.com 2001-03-06
## 9289 christi.nicolay@enron.com 2001-03-06
## 9290 christi.nicolay@enron.com 2001-03-06
## 9291 christi.nicolay@enron.com 2001-03-06
## 9292 christi.nicolay@enron.com 2001-03-06
## 9293 christi.nicolay@enron.com 2001-03-06
## 9294 christi.nicolay@enron.com 2001-03-06
## 9295 christi.nicolay@enron.com 2001-03-06
## 9296 christi.nicolay@enron.com 2001-03-06
## 9297 christi.nicolay@enron.com 2001-03-06
## 9298 christi.nicolay@enron.com 2001-03-06
## 9299 christi.nicolay@enron.com 2001-03-06
## 9300 christi.nicolay@enron.com 2001-03-06
## 9301 christi.nicolay@enron.com 2001-03-06
## 9302 christi.nicolay@enron.com 2001-03-06
## 9303 christi.nicolay@enron.com 2001-03-06
## 9304 christi.nicolay@enron.com 2001-03-06
## 9305 christi.nicolay@enron.com 2001-03-06
## 9306 christi.nicolay@enron.com 2001-03-06
## 9307 christi.nicolay@enron.com 2001-03-06
## 9308 christi.nicolay@enron.com 2001-03-06
## 9309 nguym@bracepatt.com 2001-03-06
## 9310 nguym@bracepatt.com 2001-03-06
## 9311 nguym@bracepatt.com 2001-03-06
## 9312 nguym@bracepatt.com 2001-03-06
## 9313 nguym@bracepatt.com 2001-03-06
## 9314 nguym@bracepatt.com 2001-03-06
## 9315 nguym@bracepatt.com 2001-03-06
## 9316 bwoertz@caiso.com 2001-03-06
## 9317 bwoertz@caiso.com 2001-03-06
## 9318 sslater@epsa.org 2001-03-07
## 9319 sslater@epsa.org 2001-03-07
## 9320 sslater@epsa.org 2001-03-07
## 9321 sslater@epsa.org 2001-03-07
## 9322 sslater@epsa.org 2001-03-07
## 9323 sslater@epsa.org 2001-03-07
## 9324 sslater@epsa.org 2001-03-07
## 9325 sslater@epsa.org 2001-03-07
## 9326 sslater@epsa.org 2001-03-07
## 9327 sslater@epsa.org 2001-03-07
## 9328 sslater@epsa.org 2001-03-07
## 9329 sslater@epsa.org 2001-03-07
## 9330 david.poston@enron.com 2001-03-07
## 9331 david.poston@enron.com 2001-03-07
## 9332 david.poston@enron.com 2001-03-07
## 9333 david.poston@enron.com 2001-03-07
## 9334 david.poston@enron.com 2001-03-07
## 9335 david.poston@enron.com 2001-03-07
## 9336 david.poston@enron.com 2001-03-07
## 9337 david.poston@enron.com 2001-03-07
## 9338 david.poston@enron.com 2001-03-07
## 9339 david.poston@enron.com 2001-03-07
## 9340 david.poston@enron.com 2001-03-07
## 9341 david.poston@enron.com 2001-03-07
## 9342 david.poston@enron.com 2001-03-07
## 9343 david.poston@enron.com 2001-03-07
## 9344 david.poston@enron.com 2001-03-07
## 9345 david.poston@enron.com 2001-03-07
## 9346 david.poston@enron.com 2001-03-07
## 9347 david.poston@enron.com 2001-03-07
## 9348 david.poston@enron.com 2001-03-07
## 9349 david.poston@enron.com 2001-03-07
## 9350 david.poston@enron.com 2001-03-07
## 9351 david.poston@enron.com 2001-03-07
## 9352 david.poston@enron.com 2001-03-07
## 9353 david.poston@enron.com 2001-03-07
## 9354 david.poston@enron.com 2001-03-07
## 9355 david.poston@enron.com 2001-03-07
## 9356 david.poston@enron.com 2001-03-07
## 9357 david.poston@enron.com 2001-03-07
## 9358 david.poston@enron.com 2001-03-07
## 9359 david.poston@enron.com 2001-03-07
## 9360 david.poston@enron.com 2001-03-07
## 9361 david.poston@enron.com 2001-03-07
## 9362 david.poston@enron.com 2001-03-07
## 9363 david.poston@enron.com 2001-03-07
## 9364 david.poston@enron.com 2001-03-07
## 9365 david.poston@enron.com 2001-03-07
## 9366 david.poston@enron.com 2001-03-07
## 9367 david.poston@enron.com 2001-03-07
## 9368 david.poston@enron.com 2001-03-07
## 9369 david.poston@enron.com 2001-03-07
## 9370 david.poston@enron.com 2001-03-07
## 9371 david.poston@enron.com 2001-03-07
## 9372 david.poston@enron.com 2001-03-07
## 9373 david.poston@enron.com 2001-03-07
## 9374 david.poston@enron.com 2001-03-07
## 9375 david.poston@enron.com 2001-03-07
## 9376 david.poston@enron.com 2001-03-07
## 9377 david.poston@enron.com 2001-03-07
## 9378 david.poston@enron.com 2001-03-07
## 9379 david.poston@enron.com 2001-03-07
## 9380 david.poston@enron.com 2001-03-07
## 9381 david.poston@enron.com 2001-03-07
## 9382 david.poston@enron.com 2001-03-07
## 9383 david.poston@enron.com 2001-03-07
## 9384 david.poston@enron.com 2001-03-07
## 9385 david.poston@enron.com 2001-03-07
## 9386 david.poston@enron.com 2001-03-07
## 9387 david.poston@enron.com 2001-03-07
## 9388 david.poston@enron.com 2001-03-07
## 9389 david.poston@enron.com 2001-03-07
## 9390 david.poston@enron.com 2001-03-07
## 9391 david.poston@enron.com 2001-03-07
## 9392 david.poston@enron.com 2001-03-07
## 9393 david.poston@enron.com 2001-03-07
## 9394 david.poston@enron.com 2001-03-07
## 9395 david.poston@enron.com 2001-03-07
## 9396 david.poston@enron.com 2001-03-07
## 9397 david.poston@enron.com 2001-03-07
## 9398 david.poston@enron.com 2001-03-07
## 9399 david.poston@enron.com 2001-03-07
## 9400 david.poston@enron.com 2001-03-07
## 9401 david.poston@enron.com 2001-03-07
## 9402 david.poston@enron.com 2001-03-07
## 9403 david.poston@enron.com 2001-03-07
## 9404 david.poston@enron.com 2001-03-07
## 9405 david.poston@enron.com 2001-03-07
## 9406 david.poston@enron.com 2001-03-07
## 9407 david.poston@enron.com 2001-03-07
## 9408 david.poston@enron.com 2001-03-07
## 9409 david.poston@enron.com 2001-03-07
## 9410 david.poston@enron.com 2001-03-07
## 9411 david.poston@enron.com 2001-03-07
## 9412 david.poston@enron.com 2001-03-07
## 9413 david.poston@enron.com 2001-03-07
## 9414 david.poston@enron.com 2001-03-07
## 9415 david.poston@enron.com 2001-03-07
## 9416 david.poston@enron.com 2001-03-07
## 9417 david.poston@enron.com 2001-03-07
## 9418 david.poston@enron.com 2001-03-07
## 9419 david.poston@enron.com 2001-03-07
## 9420 david.poston@enron.com 2001-03-07
## 9421 david.poston@enron.com 2001-03-07
## 9422 david.poston@enron.com 2001-03-07
## 9423 david.poston@enron.com 2001-03-07
## 9424 david.poston@enron.com 2001-03-07
## 9425 david.poston@enron.com 2001-03-07
## 9426 david.poston@enron.com 2001-03-07
## 9427 david.poston@enron.com 2001-03-07
## 9428 david.poston@enron.com 2001-03-07
## 9429 david.poston@enron.com 2001-03-07
## 9430 david.poston@enron.com 2001-03-07
## 9431 david.poston@enron.com 2001-03-07
## 9432 david.poston@enron.com 2001-03-07
## 9433 david.poston@enron.com 2001-03-07
## 9434 david.poston@enron.com 2001-03-07
## 9435 david.poston@enron.com 2001-03-07
## 9436 david.poston@enron.com 2001-03-07
## 9437 david.poston@enron.com 2001-03-07
## 9438 shapp@caiso.com 2001-03-07
## 9439 shapp@caiso.com 2001-03-07
## 9440 shapp@caiso.com 2001-03-07
## 9441 shapp@caiso.com 2001-03-07
## 9442 shapp@caiso.com 2001-03-07
## 9443 shapp@caiso.com 2001-03-07
## 9444 shapp@caiso.com 2001-03-07
## 9445 shapp@caiso.com 2001-03-07
## 9446 shapp@caiso.com 2001-03-07
## 9447 shapp@caiso.com 2001-03-07
## 9448 shapp@caiso.com 2001-03-07
## 9449 shapp@caiso.com 2001-03-07
## 9450 shapp@caiso.com 2001-03-07
## 9451 shapp@caiso.com 2001-03-07
## 9452 shapp@caiso.com 2001-03-07
## 9453 shapp@caiso.com 2001-03-07
## 9454 shapp@caiso.com 2001-03-07
## 9455 shapp@caiso.com 2001-03-07
## 9456 shapp@caiso.com 2001-03-07
## 9457 shapp@caiso.com 2001-03-07
## 9458 shapp@caiso.com 2001-03-07
## 9459 shapp@caiso.com 2001-03-07
## 9460 shapp@caiso.com 2001-03-07
## 9461 shapp@caiso.com 2001-03-07
## 9462 shapp@caiso.com 2001-03-07
## 9463 shapp@caiso.com 2001-03-07
## 9464 shapp@caiso.com 2001-03-07
## 9465 shapp@caiso.com 2001-03-07
## 9466 shapp@caiso.com 2001-03-07
## 9467 shapp@caiso.com 2001-03-07
## 9468 shapp@caiso.com 2001-03-07
## 9469 shapp@caiso.com 2001-03-07
## 9470 shapp@caiso.com 2001-03-07
## 9471 shapp@caiso.com 2001-03-07
## 9472 shapp@caiso.com 2001-03-07
## 9473 shapp@caiso.com 2001-03-07
## 9474 shapp@caiso.com 2001-03-07
## 9475 shapp@caiso.com 2001-03-07
## 9476 shapp@caiso.com 2001-03-07
## 9477 shapp@caiso.com 2001-03-07
## 9478 shapp@caiso.com 2001-03-07
## 9479 shapp@caiso.com 2001-03-07
## 9480 shapp@caiso.com 2001-03-07
## 9481 shapp@caiso.com 2001-03-07
## 9482 shapp@caiso.com 2001-03-07
## 9483 shapp@caiso.com 2001-03-07
## 9484 shapp@caiso.com 2001-03-07
## 9485 shapp@caiso.com 2001-03-07
## 9486 shapp@caiso.com 2001-03-07
## 9487 shapp@caiso.com 2001-03-07
## 9488 shapp@caiso.com 2001-03-07
## 9489 shapp@caiso.com 2001-03-07
## 9490 shapp@caiso.com 2001-03-07
## 9491 shapp@caiso.com 2001-03-07
## 9492 shapp@caiso.com 2001-03-07
## 9493 shapp@caiso.com 2001-03-07
## 9494 shapp@caiso.com 2001-03-07
## 9495 shapp@caiso.com 2001-03-07
## 9496 shapp@caiso.com 2001-03-07
## 9497 shapp@caiso.com 2001-03-07
## 9498 shapp@caiso.com 2001-03-07
## 9499 shapp@caiso.com 2001-03-07
## 9500 shapp@caiso.com 2001-03-07
## 9501 shapp@caiso.com 2001-03-07
## 9502 shapp@caiso.com 2001-03-07
## 9503 shapp@caiso.com 2001-03-07
## 9504 shapp@caiso.com 2001-03-07
## 9505 shapp@caiso.com 2001-03-07
## 9506 shapp@caiso.com 2001-03-07
## 9507 shapp@caiso.com 2001-03-07
## 9508 shapp@caiso.com 2001-03-07
## 9509 shapp@caiso.com 2001-03-07
## 9510 shapp@caiso.com 2001-03-07
## 9511 shapp@caiso.com 2001-03-07
## 9512 shapp@caiso.com 2001-03-07
## 9513 shapp@caiso.com 2001-03-07
## 9514 shapp@caiso.com 2001-03-07
## 9515 shapp@caiso.com 2001-03-07
## 9516 shapp@caiso.com 2001-03-07
## 9517 shapp@caiso.com 2001-03-07
## 9518 shapp@caiso.com 2001-03-07
## 9519 shapp@caiso.com 2001-03-07
## 9520 shapp@caiso.com 2001-03-07
## 9521 shapp@caiso.com 2001-03-07
## 9522 shapp@caiso.com 2001-03-07
## 9523 shapp@caiso.com 2001-03-07
## 9524 shapp@caiso.com 2001-03-07
## 9525 shapp@caiso.com 2001-03-07
## 9526 shapp@caiso.com 2001-03-07
## 9527 shapp@caiso.com 2001-03-07
## 9528 shapp@caiso.com 2001-03-07
## 9529 shapp@caiso.com 2001-03-07
## 9530 shapp@caiso.com 2001-03-07
## 9531 shapp@caiso.com 2001-03-07
## 9532 shapp@caiso.com 2001-03-07
## 9533 shapp@caiso.com 2001-03-07
## 9534 shapp@caiso.com 2001-03-07
## 9535 shapp@caiso.com 2001-03-07
## 9536 shapp@caiso.com 2001-03-07
## 9537 shapp@caiso.com 2001-03-07
## 9538 shapp@caiso.com 2001-03-07
## 9539 shapp@caiso.com 2001-03-07
## 9540 shapp@caiso.com 2001-03-07
## 9541 shapp@caiso.com 2001-03-07
## 9542 shapp@caiso.com 2001-03-07
## 9543 shapp@caiso.com 2001-03-07
## 9544 shapp@caiso.com 2001-03-07
## 9545 shapp@caiso.com 2001-03-07
## 9546 shapp@caiso.com 2001-03-07
## 9547 shapp@caiso.com 2001-03-07
## 9548 shapp@caiso.com 2001-03-07
## 9549 shapp@caiso.com 2001-03-07
## 9550 shapp@caiso.com 2001-03-07
## 9551 shapp@caiso.com 2001-03-07
## 9552 shapp@caiso.com 2001-03-07
## 9553 shapp@caiso.com 2001-03-07
## 9554 shapp@caiso.com 2001-03-07
## 9555 shapp@caiso.com 2001-03-07
## 9556 shapp@caiso.com 2001-03-07
## 9557 shapp@caiso.com 2001-03-07
## 9558 shapp@caiso.com 2001-03-07
## 9559 shapp@caiso.com 2001-03-07
## 9560 shapp@caiso.com 2001-03-07
## 9561 shapp@caiso.com 2001-03-07
## 9562 shapp@caiso.com 2001-03-07
## 9563 shapp@caiso.com 2001-03-07
## 9564 shapp@caiso.com 2001-03-07
## 9565 shapp@caiso.com 2001-03-07
## 9566 shapp@caiso.com 2001-03-07
## 9567 shapp@caiso.com 2001-03-07
## 9568 shapp@caiso.com 2001-03-07
## 9569 shapp@caiso.com 2001-03-07
## 9570 shapp@caiso.com 2001-03-07
## 9571 shapp@caiso.com 2001-03-07
## 9572 shapp@caiso.com 2001-03-07
## 9573 shapp@caiso.com 2001-03-07
## 9574 shapp@caiso.com 2001-03-07
## 9575 shapp@caiso.com 2001-03-07
## 9576 shapp@caiso.com 2001-03-07
## 9577 shapp@caiso.com 2001-03-07
## 9578 shapp@caiso.com 2001-03-07
## 9579 shapp@caiso.com 2001-03-07
## 9580 shapp@caiso.com 2001-03-07
## 9581 shapp@caiso.com 2001-03-07
## 9582 shapp@caiso.com 2001-03-07
## 9583 shapp@caiso.com 2001-03-07
## 9584 shapp@caiso.com 2001-03-07
## 9585 shapp@caiso.com 2001-03-07
## 9586 shapp@caiso.com 2001-03-07
## 9587 shapp@caiso.com 2001-03-07
## 9588 shapp@caiso.com 2001-03-07
## 9589 shapp@caiso.com 2001-03-07
## 9590 shapp@caiso.com 2001-03-07
## 9591 shapp@caiso.com 2001-03-07
## 9592 shapp@caiso.com 2001-03-07
## 9593 shapp@caiso.com 2001-03-07
## 9594 shapp@caiso.com 2001-03-07
## 9595 shapp@caiso.com 2001-03-07
## 9596 shapp@caiso.com 2001-03-07
## 9597 shapp@caiso.com 2001-03-07
## 9598 shapp@caiso.com 2001-03-07
## 9599 shapp@caiso.com 2001-03-07
## 9600 shapp@caiso.com 2001-03-07
## 9601 shapp@caiso.com 2001-03-07
## 9602 shapp@caiso.com 2001-03-07
## 9603 shapp@caiso.com 2001-03-07
## 9604 shapp@caiso.com 2001-03-07
## 9605 shapp@caiso.com 2001-03-07
## 9606 shapp@caiso.com 2001-03-07
## 9607 shapp@caiso.com 2001-03-07
## 9608 shapp@caiso.com 2001-03-07
## 9609 shapp@caiso.com 2001-03-07
## 9610 shapp@caiso.com 2001-03-07
## 9611 shapp@caiso.com 2001-03-07
## 9612 shapp@caiso.com 2001-03-07
## 9613 shapp@caiso.com 2001-03-07
## 9614 shapp@caiso.com 2001-03-07
## 9615 shapp@caiso.com 2001-03-07
## 9616 shapp@caiso.com 2001-03-07
## 9617 shapp@caiso.com 2001-03-07
## 9618 shapp@caiso.com 2001-03-07
## 9619 shapp@caiso.com 2001-03-07
## 9620 shapp@caiso.com 2001-03-07
## 9621 shapp@caiso.com 2001-03-07
## 9622 shapp@caiso.com 2001-03-07
## 9623 crcommunications@caiso.com 2001-03-07
## 9624 crcommunications@caiso.com 2001-03-07
## 9625 crcommunications@caiso.com 2001-03-07
## 9626 linda.noske@enron.com 2001-03-07
## 9627 linda.noske@enron.com 2001-03-07
## 9628 linda.noske@enron.com 2001-03-07
## 9629 linda.noske@enron.com 2001-03-07
## 9630 linda.noske@enron.com 2001-03-07
## 9631 linda.noske@enron.com 2001-03-07
## 9632 linda.noske@enron.com 2001-03-07
## 9633 linda.noske@enron.com 2001-03-07
## 9634 linda.noske@enron.com 2001-03-07
## 9635 linda.noske@enron.com 2001-03-07
## 9636 linda.noske@enron.com 2001-03-07
## 9637 linda.noske@enron.com 2001-03-07
## 9638 linda.noske@enron.com 2001-03-07
## 9639 linda.noske@enron.com 2001-03-07
## 9640 linda.noske@enron.com 2001-03-07
## 9641 linda.noske@enron.com 2001-03-07
## 9642 linda.noske@enron.com 2001-03-07
## 9643 linda.noske@enron.com 2001-03-07
## 9644 linda.noske@enron.com 2001-03-07
## 9645 linda.noske@enron.com 2001-03-07
## 9646 linda.noske@enron.com 2001-03-07
## 9647 linda.noske@enron.com 2001-03-07
## 9648 linda.noske@enron.com 2001-03-07
## 9649 linda.noske@enron.com 2001-03-07
## 9650 linda.noske@enron.com 2001-03-07
## 9651 linda.noske@enron.com 2001-03-07
## 9652 linda.noske@enron.com 2001-03-07
## 9653 linda.noske@enron.com 2001-03-07
## 9654 linda.noske@enron.com 2001-03-07
## 9655 linda.noske@enron.com 2001-03-07
## 9656 linda.noske@enron.com 2001-03-07
## 9657 linda.noske@enron.com 2001-03-07
## 9658 linda.noske@enron.com 2001-03-07
## 9659 linda.noske@enron.com 2001-03-07
## 9660 linda.noske@enron.com 2001-03-07
## 9661 linda.noske@enron.com 2001-03-07
## 9662 linda.noske@enron.com 2001-03-07
## 9663 linda.noske@enron.com 2001-03-07
## 9664 linda.noske@enron.com 2001-03-07
## 9665 linda.noske@enron.com 2001-03-07
## 9666 linda.noske@enron.com 2001-03-07
## 9667 linda.noske@enron.com 2001-03-07
## 9668 linda.noske@enron.com 2001-03-07
## 9669 linda.noske@enron.com 2001-03-07
## 9670 linda.noske@enron.com 2001-03-07
## 9671 linda.noske@enron.com 2001-03-07
## 9672 linda.noske@enron.com 2001-03-07
## 9673 linda.noske@enron.com 2001-03-07
## 9674 linda.noske@enron.com 2001-03-07
## 9675 linda.noske@enron.com 2001-03-07
## 9676 linda.noske@enron.com 2001-03-07
## 9677 linda.noske@enron.com 2001-03-07
## 9678 linda.noske@enron.com 2001-03-07
## 9679 linda.noske@enron.com 2001-03-07
## 9680 linda.noske@enron.com 2001-03-07
## 9681 linda.noske@enron.com 2001-03-07
## 9682 linda.noske@enron.com 2001-03-07
## 9683 linda.noske@enron.com 2001-03-07
## 9684 linda.noske@enron.com 2001-03-07
## 9685 linda.noske@enron.com 2001-03-07
## 9686 linda.noske@enron.com 2001-03-07
## 9687 linda.noske@enron.com 2001-03-07
## 9688 linda.noske@enron.com 2001-03-07
## 9689 linda.noske@enron.com 2001-03-07
## 9690 linda.noske@enron.com 2001-03-07
## 9691 linda.noske@enron.com 2001-03-07
## 9692 linda.noske@enron.com 2001-03-07
## 9693 linda.noske@enron.com 2001-03-07
## 9694 linda.noske@enron.com 2001-03-07
## 9695 linda.noske@enron.com 2001-03-07
## 9696 linda.noske@enron.com 2001-03-07
## 9697 linda.noske@enron.com 2001-03-07
## 9698 linda.noske@enron.com 2001-03-07
## 9699 linda.noske@enron.com 2001-03-07
## 9700 linda.noske@enron.com 2001-03-07
## 9701 linda.noske@enron.com 2001-03-07
## 9702 linda.noske@enron.com 2001-03-07
## 9703 linda.noske@enron.com 2001-03-07
## 9704 linda.noske@enron.com 2001-03-07
## 9705 linda.noske@enron.com 2001-03-07
## 9706 linda.noske@enron.com 2001-03-07
## 9707 linda.noske@enron.com 2001-03-07
## 9708 linda.noske@enron.com 2001-03-07
## 9709 linda.noske@enron.com 2001-03-07
## 9710 linda.noske@enron.com 2001-03-07
## 9711 linda.noske@enron.com 2001-03-07
## 9712 linda.noske@enron.com 2001-03-07
## 9713 linda.noske@enron.com 2001-03-07
## 9714 linda.noske@enron.com 2001-03-07
## 9715 linda.noske@enron.com 2001-03-07
## 9716 linda.noske@enron.com 2001-03-07
## 9717 linda.noske@enron.com 2001-03-07
## 9718 linda.noske@enron.com 2001-03-07
## 9719 linda.noske@enron.com 2001-03-07
## 9720 linda.noske@enron.com 2001-03-07
## 9721 linda.noske@enron.com 2001-03-07
## 9722 linda.noske@enron.com 2001-03-07
## 9723 linda.noske@enron.com 2001-03-07
## 9724 linda.noske@enron.com 2001-03-07
## 9725 linda.noske@enron.com 2001-03-07
## 9726 linda.noske@enron.com 2001-03-07
## 9727 linda.noske@enron.com 2001-03-07
## 9728 linda.noske@enron.com 2001-03-07
## 9729 linda.noske@enron.com 2001-03-07
## 9730 linda.noske@enron.com 2001-03-07
## 9731 linda.noske@enron.com 2001-03-07
## 9732 linda.noske@enron.com 2001-03-07
## 9733 linda.noske@enron.com 2001-03-07
## 9734 linda.noske@enron.com 2001-03-07
## 9735 linda.noske@enron.com 2001-03-07
## 9736 linda.noske@enron.com 2001-03-07
## 9737 linda.noske@enron.com 2001-03-07
## 9738 linda.noske@enron.com 2001-03-07
## 9739 linda.noske@enron.com 2001-03-07
## 9740 linda.noske@enron.com 2001-03-07
## 9741 linda.noske@enron.com 2001-03-07
## 9742 linda.noske@enron.com 2001-03-07
## 9743 linda.noske@enron.com 2001-03-07
## 9744 linda.noske@enron.com 2001-03-07
## 9745 linda.noske@enron.com 2001-03-07
## 9746 linda.noske@enron.com 2001-03-07
## 9747 linda.noske@enron.com 2001-03-07
## 9748 linda.noske@enron.com 2001-03-07
## 9749 linda.noske@enron.com 2001-03-07
## 9750 linda.noske@enron.com 2001-03-07
## 9751 linda.noske@enron.com 2001-03-07
## 9752 linda.noske@enron.com 2001-03-07
## 9753 linda.noske@enron.com 2001-03-07
## 9754 linda.noske@enron.com 2001-03-07
## 9755 linda.noske@enron.com 2001-03-07
## 9756 linda.noske@enron.com 2001-03-07
## 9757 linda.noske@enron.com 2001-03-07
## 9758 linda.noske@enron.com 2001-03-07
## 9759 linda.noske@enron.com 2001-03-07
## 9760 linda.noske@enron.com 2001-03-07
## 9761 linda.noske@enron.com 2001-03-07
## 9762 christi.nicolay@enron.com 2001-03-07
## 9763 christi.nicolay@enron.com 2001-03-07
## 9764 christi.nicolay@enron.com 2001-03-07
## 9765 crcommunications@caiso.com 2001-03-07
## 9766 crcommunications@caiso.com 2001-03-07
## 9767 crcommunications@caiso.com 2001-03-07
## 9768 crcommunications@caiso.com 2001-03-07
## 9769 christi.nicolay@enron.com 2001-03-07
## 9770 christi.nicolay@enron.com 2001-03-07
## 9771 christi.nicolay@enron.com 2001-03-07
## 9772 christi.nicolay@enron.com 2001-03-07
## 9773 christi.nicolay@enron.com 2001-03-07
## 9774 christi.nicolay@enron.com 2001-03-07
## 9775 christi.nicolay@enron.com 2001-03-07
## 9776 christi.nicolay@enron.com 2001-03-07
## 9777 christi.nicolay@enron.com 2001-03-07
## 9778 christi.nicolay@enron.com 2001-03-07
## 9779 christi.nicolay@enron.com 2001-03-07
## 9780 christi.nicolay@enron.com 2001-03-07
## 9781 christi.nicolay@enron.com 2001-03-07
## 9782 christi.nicolay@enron.com 2001-03-07
## 9783 christi.nicolay@enron.com 2001-03-07
## 9784 christi.nicolay@enron.com 2001-03-07
## 9785 christi.nicolay@enron.com 2001-03-07
## 9786 christi.nicolay@enron.com 2001-03-07
## 9787 christi.nicolay@enron.com 2001-03-07
## 9788 christi.nicolay@enron.com 2001-03-07
## 9789 christi.nicolay@enron.com 2001-03-07
## 9790 christi.nicolay@enron.com 2001-03-07
## 9791 christi.nicolay@enron.com 2001-03-07
## 9792 christi.nicolay@enron.com 2001-03-07
## 9793 christi.nicolay@enron.com 2001-03-07
## 9794 christi.nicolay@enron.com 2001-03-07
## 9795 christi.nicolay@enron.com 2001-03-07
## 9796 christi.nicolay@enron.com 2001-03-07
## 9797 christi.nicolay@enron.com 2001-03-07
## 9798 christi.nicolay@enron.com 2001-03-07
## 9799 christi.nicolay@enron.com 2001-03-07
## 9800 christi.nicolay@enron.com 2001-03-07
## 9801 christi.nicolay@enron.com 2001-03-07
## 9802 christi.nicolay@enron.com 2001-03-07
## 9803 christi.nicolay@enron.com 2001-03-07
## 9804 christi.nicolay@enron.com 2001-03-07
## 9805 christi.nicolay@enron.com 2001-03-07
## 9806 christi.nicolay@enron.com 2001-03-07
## 9807 christi.nicolay@enron.com 2001-03-07
## 9808 christi.nicolay@enron.com 2001-03-07
## 9809 christi.nicolay@enron.com 2001-03-07
## 9810 christi.nicolay@enron.com 2001-03-07
## 9811 christi.nicolay@enron.com 2001-03-07
## 9812 christi.nicolay@enron.com 2001-03-07
## 9813 christi.nicolay@enron.com 2001-03-07
## 9814 christi.nicolay@enron.com 2001-03-07
## 9815 christi.nicolay@enron.com 2001-03-07
## 9816 christi.nicolay@enron.com 2001-03-07
## 9817 christi.nicolay@enron.com 2001-03-07
## 9818 christi.nicolay@enron.com 2001-03-07
## 9819 christi.nicolay@enron.com 2001-03-07
## 9820 christi.nicolay@enron.com 2001-03-07
## 9821 christi.nicolay@enron.com 2001-03-07
## 9822 christi.nicolay@enron.com 2001-03-07
## 9823 christi.nicolay@enron.com 2001-03-07
## 9824 christi.nicolay@enron.com 2001-03-07
## 9825 christi.nicolay@enron.com 2001-03-07
## 9826 christi.nicolay@enron.com 2001-03-07
## 9827 christi.nicolay@enron.com 2001-03-07
## 9828 christi.nicolay@enron.com 2001-03-07
## 9829 christi.nicolay@enron.com 2001-03-07
## 9830 christi.nicolay@enron.com 2001-03-07
## 9831 christi.nicolay@enron.com 2001-03-07
## 9832 christi.nicolay@enron.com 2001-03-07
## 9833 christi.nicolay@enron.com 2001-03-07
## 9834 christi.nicolay@enron.com 2001-03-07
## 9835 christi.nicolay@enron.com 2001-03-07
## 9836 christi.nicolay@enron.com 2001-03-07
## 9837 christi.nicolay@enron.com 2001-03-07
## 9838 christi.nicolay@enron.com 2001-03-07
## 9839 christi.nicolay@enron.com 2001-03-07
## 9840 christi.nicolay@enron.com 2001-03-07
## 9841 christi.nicolay@enron.com 2001-03-07
## 9842 christi.nicolay@enron.com 2001-03-07
## 9843 christi.nicolay@enron.com 2001-03-07
## 9844 shapp@caiso.com 2001-03-07
## 9845 bwoertz@caiso.com 2001-03-07
## 9846 linda.noske@enron.com 2001-03-08
## 9847 linda.noske@enron.com 2001-03-08
## 9848 linda.noske@enron.com 2001-03-08
## 9849 linda.noske@enron.com 2001-03-08
## 9850 linda.noske@enron.com 2001-03-08
## 9851 linda.noske@enron.com 2001-03-08
## 9852 linda.noske@enron.com 2001-03-08
## 9853 linda.noske@enron.com 2001-03-08
## 9854 linda.noske@enron.com 2001-03-08
## 9855 linda.noske@enron.com 2001-03-08
## 9856 linda.noske@enron.com 2001-03-08
## 9857 linda.noske@enron.com 2001-03-08
## 9858 linda.noske@enron.com 2001-03-08
## 9859 linda.noske@enron.com 2001-03-08
## 9860 linda.noske@enron.com 2001-03-08
## 9861 linda.noske@enron.com 2001-03-08
## 9862 linda.noske@enron.com 2001-03-08
## 9863 linda.noske@enron.com 2001-03-08
## 9864 linda.noske@enron.com 2001-03-08
## 9865 linda.noske@enron.com 2001-03-08
## 9866 linda.noske@enron.com 2001-03-08
## 9867 linda.noske@enron.com 2001-03-08
## 9868 linda.noske@enron.com 2001-03-08
## 9869 linda.noske@enron.com 2001-03-08
## 9870 linda.noske@enron.com 2001-03-08
## 9871 linda.noske@enron.com 2001-03-08
## 9872 linda.noske@enron.com 2001-03-08
## 9873 linda.noske@enron.com 2001-03-08
## 9874 linda.noske@enron.com 2001-03-08
## 9875 linda.noske@enron.com 2001-03-08
## 9876 linda.noske@enron.com 2001-03-08
## 9877 linda.noske@enron.com 2001-03-08
## 9878 linda.noske@enron.com 2001-03-08
## 9879 linda.noske@enron.com 2001-03-08
## 9880 linda.noske@enron.com 2001-03-08
## 9881 linda.noske@enron.com 2001-03-08
## 9882 linda.noske@enron.com 2001-03-08
## 9883 linda.noske@enron.com 2001-03-08
## 9884 linda.noske@enron.com 2001-03-08
## 9885 linda.noske@enron.com 2001-03-08
## 9886 linda.noske@enron.com 2001-03-08
## 9887 linda.noske@enron.com 2001-03-08
## 9888 linda.noske@enron.com 2001-03-08
## 9889 linda.noske@enron.com 2001-03-08
## 9890 linda.noske@enron.com 2001-03-08
## 9891 linda.noske@enron.com 2001-03-08
## 9892 linda.noske@enron.com 2001-03-08
## 9893 linda.noske@enron.com 2001-03-08
## 9894 linda.noske@enron.com 2001-03-08
## 9895 linda.noske@enron.com 2001-03-08
## 9896 linda.noske@enron.com 2001-03-08
## 9897 linda.noske@enron.com 2001-03-08
## 9898 linda.noske@enron.com 2001-03-08
## 9899 linda.noske@enron.com 2001-03-08
## 9900 linda.noske@enron.com 2001-03-08
## 9901 linda.noske@enron.com 2001-03-08
## 9902 linda.noske@enron.com 2001-03-08
## 9903 linda.noske@enron.com 2001-03-08
## 9904 linda.noske@enron.com 2001-03-08
## 9905 linda.noske@enron.com 2001-03-08
## 9906 linda.noske@enron.com 2001-03-08
## 9907 linda.noske@enron.com 2001-03-08
## 9908 linda.noske@enron.com 2001-03-08
## 9909 linda.noske@enron.com 2001-03-08
## 9910 linda.noske@enron.com 2001-03-08
## 9911 linda.noske@enron.com 2001-03-08
## 9912 linda.noske@enron.com 2001-03-08
## 9913 linda.noske@enron.com 2001-03-08
## 9914 linda.noske@enron.com 2001-03-08
## 9915 linda.noske@enron.com 2001-03-08
## 9916 linda.noske@enron.com 2001-03-08
## 9917 linda.noske@enron.com 2001-03-08
## 9918 linda.noske@enron.com 2001-03-08
## 9919 linda.noske@enron.com 2001-03-08
## 9920 linda.noske@enron.com 2001-03-08
## 9921 linda.noske@enron.com 2001-03-08
## 9922 linda.noske@enron.com 2001-03-08
## 9923 linda.noske@enron.com 2001-03-08
## 9924 linda.noske@enron.com 2001-03-08
## 9925 linda.noske@enron.com 2001-03-08
## 9926 linda.noske@enron.com 2001-03-08
## 9927 linda.noske@enron.com 2001-03-08
## 9928 linda.noske@enron.com 2001-03-08
## 9929 linda.noske@enron.com 2001-03-08
## 9930 linda.noske@enron.com 2001-03-08
## 9931 linda.noske@enron.com 2001-03-08
## 9932 linda.noske@enron.com 2001-03-08
## 9933 linda.noske@enron.com 2001-03-08
## 9934 linda.noske@enron.com 2001-03-08
## 9935 linda.noske@enron.com 2001-03-08
## 9936 linda.noske@enron.com 2001-03-08
## 9937 linda.noske@enron.com 2001-03-08
## 9938 linda.noske@enron.com 2001-03-08
## 9939 linda.noske@enron.com 2001-03-08
## 9940 linda.noske@enron.com 2001-03-08
## 9941 linda.noske@enron.com 2001-03-08
## 9942 linda.noske@enron.com 2001-03-08
## 9943 linda.noske@enron.com 2001-03-08
## 9944 linda.noske@enron.com 2001-03-08
## 9945 linda.noske@enron.com 2001-03-08
## 9946 linda.noske@enron.com 2001-03-08
## 9947 linda.noske@enron.com 2001-03-08
## 9948 linda.noske@enron.com 2001-03-08
## 9949 linda.noske@enron.com 2001-03-08
## 9950 linda.noske@enron.com 2001-03-08
## 9951 linda.noske@enron.com 2001-03-08
## 9952 linda.noske@enron.com 2001-03-08
## 9953 linda.noske@enron.com 2001-03-08
## 9954 linda.noske@enron.com 2001-03-08
## 9955 linda.noske@enron.com 2001-03-08
## 9956 linda.noske@enron.com 2001-03-08
## 9957 linda.noske@enron.com 2001-03-08
## 9958 linda.noske@enron.com 2001-03-08
## 9959 linda.noske@enron.com 2001-03-08
## 9960 linda.noske@enron.com 2001-03-08
## 9961 linda.noske@enron.com 2001-03-08
## 9962 linda.noske@enron.com 2001-03-08
## 9963 linda.noske@enron.com 2001-03-08
## 9964 linda.noske@enron.com 2001-03-08
## 9965 linda.noske@enron.com 2001-03-08
## 9966 linda.noske@enron.com 2001-03-08
## 9967 linda.noske@enron.com 2001-03-08
## 9968 linda.noske@enron.com 2001-03-08
## 9969 linda.noske@enron.com 2001-03-08
## 9970 linda.noske@enron.com 2001-03-08
## 9971 linda.noske@enron.com 2001-03-08
## 9972 linda.noske@enron.com 2001-03-08
## 9973 linda.noske@enron.com 2001-03-08
## 9974 linda.noske@enron.com 2001-03-08
## 9975 linda.noske@enron.com 2001-03-08
## 9976 linda.noske@enron.com 2001-03-08
## 9977 linda.noske@enron.com 2001-03-08
## 9978 linda.noske@enron.com 2001-03-08
## 9979 linda.noske@enron.com 2001-03-08
## 9980 linda.noske@enron.com 2001-03-08
## 9981 linda.noske@enron.com 2001-03-08
## 9982 christi.nicolay@enron.com 2001-03-08
## 9983 christi.nicolay@enron.com 2001-03-08
## 9984 christi.nicolay@enron.com 2001-03-08
## 9985 christi.nicolay@enron.com 2001-03-08
## 9986 christi.nicolay@enron.com 2001-03-08
## 9987 christi.nicolay@enron.com 2001-03-08
## 9988 christi.nicolay@enron.com 2001-03-08
## 9989 christi.nicolay@enron.com 2001-03-08
## 9990 enron.announcements@enron.com 2001-03-08
## 9991 bwoertz@caiso.com 2001-03-08
## 9992 christi.nicolay@enron.com 2001-03-08
## 9993 christi.nicolay@enron.com 2001-03-08
## 9994 christi.nicolay@enron.com 2001-03-08
## 9995 christi.nicolay@enron.com 2001-03-08
## 9996 christi.nicolay@enron.com 2001-03-08
## 9997 christi.nicolay@enron.com 2001-03-08
## 9998 christi.nicolay@enron.com 2001-03-08
## 9999 christi.nicolay@enron.com 2001-03-08
## 10000 christi.nicolay@enron.com 2001-03-08
## 10001 christi.nicolay@enron.com 2001-03-08
## 10002 christi.nicolay@enron.com 2001-03-08
## 10003 christi.nicolay@enron.com 2001-03-08
## 10004 christi.nicolay@enron.com 2001-03-08
## 10005 christi.nicolay@enron.com 2001-03-08
## 10006 christi.nicolay@enron.com 2001-03-08
## 10007 christi.nicolay@enron.com 2001-03-08
## 10008 christi.nicolay@enron.com 2001-03-08
## 10009 christi.nicolay@enron.com 2001-03-08
## 10010 christi.nicolay@enron.com 2001-03-08
## 10011 christi.nicolay@enron.com 2001-03-08
## 10012 christi.nicolay@enron.com 2001-03-08
## 10013 christi.nicolay@enron.com 2001-03-08
## 10014 christi.nicolay@enron.com 2001-03-08
## 10015 christi.nicolay@enron.com 2001-03-08
## 10016 christi.nicolay@enron.com 2001-03-08
## 10017 don.hammond@enron.com 2001-03-08
## 10018 don.hammond@enron.com 2001-03-08
## 10019 don.hammond@enron.com 2001-03-08
## 10020 don.hammond@enron.com 2001-03-08
## 10021 don.hammond@enron.com 2001-03-08
## 10022 don.hammond@enron.com 2001-03-08
## 10023 bwoertz@caiso.com 2001-03-08
## 10024 bwoertz@caiso.com 2001-03-08
## 10025 bwoertz@caiso.com 2001-03-08
## 10026 bwoertz@caiso.com 2001-03-08
## 10027 bwoertz@caiso.com 2001-03-08
## 10028 jnickel@caiso.com 2001-03-08
## 10029 jnickel@caiso.com 2001-03-08
## 10030 sara.davidson@enron.com 2001-03-09
## 10031 sara.davidson@enron.com 2001-03-09
## 10032 sara.davidson@enron.com 2001-03-09
## 10033 sara.davidson@enron.com 2001-03-09
## 10034 sara.davidson@enron.com 2001-03-09
## 10035 sara.davidson@enron.com 2001-03-09
## 10036 sara.davidson@enron.com 2001-03-09
## 10037 sara.davidson@enron.com 2001-03-09
## 10038 sara.davidson@enron.com 2001-03-09
## 10039 sara.davidson@enron.com 2001-03-09
## 10040 sara.davidson@enron.com 2001-03-09
## 10041 sara.davidson@enron.com 2001-03-09
## 10042 sara.davidson@enron.com 2001-03-09
## 10043 sara.davidson@enron.com 2001-03-09
## 10044 sara.davidson@enron.com 2001-03-09
## 10045 sara.davidson@enron.com 2001-03-09
## 10046 sara.davidson@enron.com 2001-03-09
## 10047 sara.davidson@enron.com 2001-03-09
## 10048 sara.davidson@enron.com 2001-03-09
## 10049 sara.davidson@enron.com 2001-03-09
## 10050 sara.davidson@enron.com 2001-03-09
## 10051 sara.davidson@enron.com 2001-03-09
## 10052 sara.davidson@enron.com 2001-03-09
## 10053 sara.davidson@enron.com 2001-03-09
## 10054 sara.davidson@enron.com 2001-03-09
## 10055 sara.davidson@enron.com 2001-03-09
## 10056 sara.davidson@enron.com 2001-03-09
## 10057 sara.davidson@enron.com 2001-03-09
## 10058 sara.davidson@enron.com 2001-03-09
## 10059 sara.davidson@enron.com 2001-03-09
## 10060 sara.davidson@enron.com 2001-03-09
## 10061 sara.davidson@enron.com 2001-03-09
## 10062 sara.davidson@enron.com 2001-03-09
## 10063 sara.davidson@enron.com 2001-03-09
## 10064 sara.davidson@enron.com 2001-03-09
## 10065 sara.davidson@enron.com 2001-03-09
## 10066 sara.davidson@enron.com 2001-03-09
## 10067 sara.davidson@enron.com 2001-03-09
## 10068 sara.davidson@enron.com 2001-03-09
## 10069 sara.davidson@enron.com 2001-03-09
## 10070 sara.davidson@enron.com 2001-03-09
## 10071 sara.davidson@enron.com 2001-03-09
## 10072 sara.davidson@enron.com 2001-03-09
## 10073 sara.davidson@enron.com 2001-03-09
## 10074 sara.davidson@enron.com 2001-03-09
## 10075 sara.davidson@enron.com 2001-03-09
## 10076 sara.davidson@enron.com 2001-03-09
## 10077 sara.davidson@enron.com 2001-03-09
## 10078 sara.davidson@enron.com 2001-03-09
## 10079 sara.davidson@enron.com 2001-03-09
## 10080 sara.davidson@enron.com 2001-03-09
## 10081 sara.davidson@enron.com 2001-03-09
## 10082 sara.davidson@enron.com 2001-03-09
## 10083 sara.davidson@enron.com 2001-03-09
## 10084 sara.davidson@enron.com 2001-03-09
## 10085 sara.davidson@enron.com 2001-03-09
## 10086 sara.davidson@enron.com 2001-03-09
## 10087 sara.davidson@enron.com 2001-03-09
## 10088 sara.davidson@enron.com 2001-03-09
## 10089 sara.davidson@enron.com 2001-03-09
## 10090 sara.davidson@enron.com 2001-03-09
## 10091 sara.davidson@enron.com 2001-03-09
## 10092 sara.davidson@enron.com 2001-03-09
## 10093 sara.davidson@enron.com 2001-03-09
## 10094 sara.davidson@enron.com 2001-03-09
## 10095 sara.davidson@enron.com 2001-03-09
## 10096 sara.davidson@enron.com 2001-03-09
## 10097 sara.davidson@enron.com 2001-03-09
## 10098 sara.davidson@enron.com 2001-03-09
## 10099 sara.davidson@enron.com 2001-03-09
## 10100 sara.davidson@enron.com 2001-03-09
## 10101 sara.davidson@enron.com 2001-03-09
## 10102 sara.davidson@enron.com 2001-03-09
## 10103 sara.davidson@enron.com 2001-03-09
## 10104 sara.davidson@enron.com 2001-03-09
## 10105 sara.davidson@enron.com 2001-03-09
## 10106 sara.davidson@enron.com 2001-03-09
## 10107 sara.davidson@enron.com 2001-03-09
## 10108 sara.davidson@enron.com 2001-03-09
## 10109 sara.davidson@enron.com 2001-03-09
## 10110 sara.davidson@enron.com 2001-03-09
## 10111 sara.davidson@enron.com 2001-03-09
## 10112 sara.davidson@enron.com 2001-03-09
## 10113 sara.davidson@enron.com 2001-03-09
## 10114 sara.davidson@enron.com 2001-03-09
## 10115 sara.davidson@enron.com 2001-03-09
## 10116 sara.davidson@enron.com 2001-03-09
## 10117 sara.davidson@enron.com 2001-03-09
## 10118 sara.davidson@enron.com 2001-03-09
## 10119 sara.davidson@enron.com 2001-03-09
## 10120 dale.rasmussen@enron.com 2001-03-10
## 10121 dale.rasmussen@enron.com 2001-03-10
## 10122 dale.rasmussen@enron.com 2001-03-10
## 10123 dale.rasmussen@enron.com 2001-03-10
## 10124 dale.rasmussen@enron.com 2001-03-10
## 10125 dale.rasmussen@enron.com 2001-03-10
## 10126 dale.rasmussen@enron.com 2001-03-10
## 10127 dale.rasmussen@enron.com 2001-03-10
## 10128 dale.rasmussen@enron.com 2001-03-10
## 10129 dale.rasmussen@enron.com 2001-03-10
## 10130 dale.rasmussen@enron.com 2001-03-10
## 10131 dale.rasmussen@enron.com 2001-03-10
## 10132 dale.rasmussen@enron.com 2001-03-10
## 10133 dale.rasmussen@enron.com 2001-03-10
## 10134 dale.rasmussen@enron.com 2001-03-10
## 10135 kristiwallis@sprintmail.com 2001-03-11
## 10136 kristiwallis@sprintmail.com 2001-03-11
## 10137 kristiwallis@sprintmail.com 2001-03-11
## 10138 kristiwallis@sprintmail.com 2001-03-11
## 10139 kristiwallis@sprintmail.com 2001-03-11
## 10140 kristiwallis@sprintmail.com 2001-03-11
## 10141 kristiwallis@sprintmail.com 2001-03-11
## 10142 kristiwallis@sprintmail.com 2001-03-11
## 10143 kristiwallis@sprintmail.com 2001-03-11
## 10144 kristiwallis@sprintmail.com 2001-03-11
## 10145 kristiwallis@sprintmail.com 2001-03-11
## 10146 kristiwallis@sprintmail.com 2001-03-11
## 10147 kristiwallis@sprintmail.com 2001-03-11
## 10148 kristiwallis@sprintmail.com 2001-03-11
## 10149 kristiwallis@sprintmail.com 2001-03-11
## 10150 kristiwallis@sprintmail.com 2001-03-11
## 10151 kristiwallis@sprintmail.com 2001-03-11
## 10152 kristiwallis@sprintmail.com 2001-03-11
## 10153 kristiwallis@sprintmail.com 2001-03-11
## 10154 kristiwallis@sprintmail.com 2001-03-11
## 10155 kristiwallis@sprintmail.com 2001-03-11
## 10156 kristiwallis@sprintmail.com 2001-03-11
## 10157 kristiwallis@sprintmail.com 2001-03-11
## 10158 kristiwallis@sprintmail.com 2001-03-11
## 10159 kristiwallis@sprintmail.com 2001-03-11
## 10160 kristiwallis@sprintmail.com 2001-03-11
## 10161 kristiwallis@sprintmail.com 2001-03-11
## 10162 kristiwallis@sprintmail.com 2001-03-11
## 10163 kristiwallis@sprintmail.com 2001-03-11
## 10164 kristiwallis@sprintmail.com 2001-03-11
## 10165 kristiwallis@sprintmail.com 2001-03-11
## 10166 kristiwallis@sprintmail.com 2001-03-11
## 10167 kristiwallis@sprintmail.com 2001-03-11
## 10168 kristiwallis@sprintmail.com 2001-03-11
## 10169 kristiwallis@sprintmail.com 2001-03-11
## 10170 kristiwallis@sprintmail.com 2001-03-11
## 10171 kristiwallis@sprintmail.com 2001-03-11
## 10172 kristiwallis@sprintmail.com 2001-03-11
## 10173 kristiwallis@sprintmail.com 2001-03-11
## 10174 kristiwallis@sprintmail.com 2001-03-11
## 10175 kristiwallis@sprintmail.com 2001-03-11
## 10176 kristiwallis@sprintmail.com 2001-03-11
## 10177 kristiwallis@sprintmail.com 2001-03-11
## 10178 kristiwallis@sprintmail.com 2001-03-11
## 10179 kristiwallis@sprintmail.com 2001-03-11
## 10180 kristiwallis@sprintmail.com 2001-03-11
## 10181 kristiwallis@sprintmail.com 2001-03-11
## 10182 kristiwallis@sprintmail.com 2001-03-11
## 10183 kristiwallis@sprintmail.com 2001-03-11
## 10184 kristiwallis@sprintmail.com 2001-03-11
## 10185 kristiwallis@sprintmail.com 2001-03-11
## 10186 kristiwallis@sprintmail.com 2001-03-11
## 10187 kristiwallis@sprintmail.com 2001-03-11
## 10188 kristiwallis@sprintmail.com 2001-03-11
## 10189 kristiwallis@sprintmail.com 2001-03-11
## 10190 kristiwallis@sprintmail.com 2001-03-11
## 10191 kristiwallis@sprintmail.com 2001-03-11
## 10192 kristiwallis@sprintmail.com 2001-03-11
## 10193 kristiwallis@sprintmail.com 2001-03-11
## 10194 kristiwallis@sprintmail.com 2001-03-11
## 10195 kristiwallis@sprintmail.com 2001-03-11
## 10196 kristiwallis@sprintmail.com 2001-03-11
## 10197 kristiwallis@sprintmail.com 2001-03-11
## 10198 kristiwallis@sprintmail.com 2001-03-11
## 10199 kristiwallis@sprintmail.com 2001-03-11
## 10200 kristiwallis@sprintmail.com 2001-03-11
## 10201 kristiwallis@sprintmail.com 2001-03-11
## 10202 kristiwallis@sprintmail.com 2001-03-11
## 10203 kristiwallis@sprintmail.com 2001-03-11
## 10204 kristiwallis@sprintmail.com 2001-03-11
## 10205 kristiwallis@sprintmail.com 2001-03-11
## 10206 kristiwallis@sprintmail.com 2001-03-11
## 10207 kristiwallis@sprintmail.com 2001-03-11
## 10208 kristiwallis@sprintmail.com 2001-03-11
## 10209 kristiwallis@sprintmail.com 2001-03-11
## 10210 kristiwallis@sprintmail.com 2001-03-11
## 10211 kristiwallis@sprintmail.com 2001-03-11
## 10212 kristiwallis@sprintmail.com 2001-03-11
## 10213 cbi_mail@igate.cbinet.com 2001-03-12
## 10214 tara.rafter@enron.com 2001-03-12
## 10215 tara.rafter@enron.com 2001-03-12
## 10216 tara.rafter@enron.com 2001-03-12
## 10217 tara.rafter@enron.com 2001-03-12
## 10218 tara.rafter@enron.com 2001-03-12
## 10219 tara.rafter@enron.com 2001-03-12
## 10220 tara.rafter@enron.com 2001-03-12
## 10221 tara.rafter@enron.com 2001-03-12
## 10222 tara.rafter@enron.com 2001-03-12
## 10223 tara.rafter@enron.com 2001-03-12
## 10224 tara.rafter@enron.com 2001-03-12
## 10225 tara.rafter@enron.com 2001-03-12
## 10226 tara.rafter@enron.com 2001-03-12
## 10227 tara.rafter@enron.com 2001-03-12
## 10228 tara.rafter@enron.com 2001-03-12
## 10229 tara.rafter@enron.com 2001-03-12
## 10230 tara.rafter@enron.com 2001-03-12
## 10231 tara.rafter@enron.com 2001-03-12
## 10232 tara.rafter@enron.com 2001-03-12
## 10233 tara.rafter@enron.com 2001-03-12
## 10234 tara.rafter@enron.com 2001-03-12
## 10235 tara.rafter@enron.com 2001-03-12
## 10236 tara.rafter@enron.com 2001-03-12
## 10237 tara.rafter@enron.com 2001-03-12
## 10238 tara.rafter@enron.com 2001-03-12
## 10239 tara.rafter@enron.com 2001-03-12
## 10240 tara.rafter@enron.com 2001-03-12
## 10241 tara.rafter@enron.com 2001-03-12
## 10242 tara.rafter@enron.com 2001-03-12
## 10243 tara.rafter@enron.com 2001-03-12
## 10244 tara.rafter@enron.com 2001-03-12
## 10245 tara.rafter@enron.com 2001-03-12
## 10246 tara.rafter@enron.com 2001-03-12
## 10247 tara.rafter@enron.com 2001-03-12
## 10248 tara.rafter@enron.com 2001-03-12
## 10249 tara.rafter@enron.com 2001-03-12
## 10250 tara.rafter@enron.com 2001-03-12
## 10251 tara.rafter@enron.com 2001-03-12
## 10252 tara.rafter@enron.com 2001-03-12
## 10253 tara.rafter@enron.com 2001-03-12
## 10254 tara.rafter@enron.com 2001-03-12
## 10255 tara.rafter@enron.com 2001-03-12
## 10256 tara.rafter@enron.com 2001-03-12
## 10257 tara.rafter@enron.com 2001-03-12
## 10258 tara.rafter@enron.com 2001-03-12
## 10259 tara.rafter@enron.com 2001-03-12
## 10260 tara.rafter@enron.com 2001-03-12
## 10261 tara.rafter@enron.com 2001-03-12
## 10262 tara.rafter@enron.com 2001-03-12
## 10263 tara.rafter@enron.com 2001-03-12
## 10264 tara.rafter@enron.com 2001-03-12
## 10265 tara.rafter@enron.com 2001-03-12
## 10266 tara.rafter@enron.com 2001-03-12
## 10267 tara.rafter@enron.com 2001-03-12
## 10268 tara.rafter@enron.com 2001-03-12
## 10269 tara.rafter@enron.com 2001-03-12
## 10270 tara.rafter@enron.com 2001-03-12
## 10271 tara.rafter@enron.com 2001-03-12
## 10272 tara.rafter@enron.com 2001-03-12
## 10273 tara.rafter@enron.com 2001-03-12
## 10274 tara.rafter@enron.com 2001-03-12
## 10275 tara.rafter@enron.com 2001-03-12
## 10276 tara.rafter@enron.com 2001-03-12
## 10277 tara.rafter@enron.com 2001-03-12
## 10278 tara.rafter@enron.com 2001-03-12
## 10279 tara.rafter@enron.com 2001-03-12
## 10280 tara.rafter@enron.com 2001-03-12
## 10281 tara.rafter@enron.com 2001-03-12
## 10282 tara.rafter@enron.com 2001-03-12
## 10283 tara.rafter@enron.com 2001-03-12
## 10284 shapp@caiso.com 2001-03-12
## 10285 sharpj@dsmo.com 2001-03-12
## 10286 sharpj@dsmo.com 2001-03-12
## 10287 sharpj@dsmo.com 2001-03-12
## 10288 sharpj@dsmo.com 2001-03-12
## 10289 sharpj@dsmo.com 2001-03-12
## 10290 sharpj@dsmo.com 2001-03-12
## 10291 sharpj@dsmo.com 2001-03-12
## 10292 sharpj@dsmo.com 2001-03-12
## 10293 sharpj@dsmo.com 2001-03-12
## 10294 sharpj@dsmo.com 2001-03-12
## 10295 sharpj@dsmo.com 2001-03-12
## 10296 sharpj@dsmo.com 2001-03-12
## 10297 sharpj@dsmo.com 2001-03-12
## 10298 sharpj@dsmo.com 2001-03-12
## 10299 sharpj@dsmo.com 2001-03-12
## 10300 sharpj@dsmo.com 2001-03-12
## 10301 sharpj@dsmo.com 2001-03-12
## 10302 sharpj@dsmo.com 2001-03-12
## 10303 sharpj@dsmo.com 2001-03-12
## 10304 sharpj@dsmo.com 2001-03-12
## 10305 sharpj@dsmo.com 2001-03-12
## 10306 sharpj@dsmo.com 2001-03-12
## 10307 sharpj@dsmo.com 2001-03-12
## 10308 sharpj@dsmo.com 2001-03-12
## 10309 sharpj@dsmo.com 2001-03-12
## 10310 sharpj@dsmo.com 2001-03-12
## 10311 sharpj@dsmo.com 2001-03-12
## 10312 sharpj@dsmo.com 2001-03-12
## 10313 sharpj@dsmo.com 2001-03-12
## 10314 sharpj@dsmo.com 2001-03-12
## 10315 sharpj@dsmo.com 2001-03-12
## 10316 sharpj@dsmo.com 2001-03-12
## 10317 sharpj@dsmo.com 2001-03-12
## 10318 sharpj@dsmo.com 2001-03-12
## 10319 sharpj@dsmo.com 2001-03-12
## 10320 sharpj@dsmo.com 2001-03-12
## 10321 sharpj@dsmo.com 2001-03-12
## 10322 sharpj@dsmo.com 2001-03-12
## 10323 sharpj@dsmo.com 2001-03-12
## 10324 sharpj@dsmo.com 2001-03-12
## 10325 sharpj@dsmo.com 2001-03-12
## 10326 sharpj@dsmo.com 2001-03-12
## 10327 sharpj@dsmo.com 2001-03-12
## 10328 sharpj@dsmo.com 2001-03-12
## 10329 sharpj@dsmo.com 2001-03-12
## 10330 sharpj@dsmo.com 2001-03-12
## 10331 sharpj@dsmo.com 2001-03-12
## 10332 sharpj@dsmo.com 2001-03-12
## 10333 sharpj@dsmo.com 2001-03-12
## 10334 sharpj@dsmo.com 2001-03-12
## 10335 sharpj@dsmo.com 2001-03-12
## 10336 sharpj@dsmo.com 2001-03-12
## 10337 sharpj@dsmo.com 2001-03-12
## 10338 sharpj@dsmo.com 2001-03-12
## 10339 sharpj@dsmo.com 2001-03-12
## 10340 sharpj@dsmo.com 2001-03-12
## 10341 sharpj@dsmo.com 2001-03-12
## 10342 sharpj@dsmo.com 2001-03-12
## 10343 sharpj@dsmo.com 2001-03-12
## 10344 sharpj@dsmo.com 2001-03-12
## 10345 sharpj@dsmo.com 2001-03-12
## 10346 sharpj@dsmo.com 2001-03-12
## 10347 sharpj@dsmo.com 2001-03-12
## 10348 sharpj@dsmo.com 2001-03-12
## 10349 sharpj@dsmo.com 2001-03-12
## 10350 sharpj@dsmo.com 2001-03-12
## 10351 sharpj@dsmo.com 2001-03-12
## 10352 sharpj@dsmo.com 2001-03-12
## 10353 sharpj@dsmo.com 2001-03-12
## 10354 sharpj@dsmo.com 2001-03-12
## 10355 sharpj@dsmo.com 2001-03-12
## 10356 sharpj@dsmo.com 2001-03-12
## 10357 sharpj@dsmo.com 2001-03-12
## 10358 sharpj@dsmo.com 2001-03-12
## 10359 sharpj@dsmo.com 2001-03-12
## 10360 sharpj@dsmo.com 2001-03-12
## 10361 sharpj@dsmo.com 2001-03-12
## 10362 sharpj@dsmo.com 2001-03-12
## 10363 sharpj@dsmo.com 2001-03-12
## 10364 sharpj@dsmo.com 2001-03-12
## 10365 sharpj@dsmo.com 2001-03-12
## 10366 sharpj@dsmo.com 2001-03-12
## 10367 sharpj@dsmo.com 2001-03-12
## 10368 sharpj@dsmo.com 2001-03-12
## 10369 sharpj@dsmo.com 2001-03-12
## 10370 sharpj@dsmo.com 2001-03-12
## 10371 sharpj@dsmo.com 2001-03-12
## 10372 sharpj@dsmo.com 2001-03-12
## 10373 sharpj@dsmo.com 2001-03-12
## 10374 sharpj@dsmo.com 2001-03-12
## 10375 sharpj@dsmo.com 2001-03-12
## 10376 sharpj@dsmo.com 2001-03-12
## 10377 sharpj@dsmo.com 2001-03-12
## 10378 sharpj@dsmo.com 2001-03-12
## 10379 sharpj@dsmo.com 2001-03-12
## 10380 sharpj@dsmo.com 2001-03-12
## 10381 sharpj@dsmo.com 2001-03-12
## 10382 sharpj@dsmo.com 2001-03-12
## 10383 sharpj@dsmo.com 2001-03-12
## 10384 sharpj@dsmo.com 2001-03-12
## 10385 sharpj@dsmo.com 2001-03-12
## 10386 sharpj@dsmo.com 2001-03-12
## 10387 sharpj@dsmo.com 2001-03-12
## 10388 sharpj@dsmo.com 2001-03-12
## 10389 sharpj@dsmo.com 2001-03-12
## 10390 sharpj@dsmo.com 2001-03-12
## 10391 sharpj@dsmo.com 2001-03-12
## 10392 sharpj@dsmo.com 2001-03-12
## 10393 sharpj@dsmo.com 2001-03-12
## 10394 sharpj@dsmo.com 2001-03-12
## 10395 sharpj@dsmo.com 2001-03-12
## 10396 sharpj@dsmo.com 2001-03-12
## 10397 sharpj@dsmo.com 2001-03-12
## 10398 sharpj@dsmo.com 2001-03-12
## 10399 sharpj@dsmo.com 2001-03-12
## 10400 sharpj@dsmo.com 2001-03-12
## 10401 sharpj@dsmo.com 2001-03-12
## 10402 sharpj@dsmo.com 2001-03-12
## 10403 sharpj@dsmo.com 2001-03-12
## 10404 sharpj@dsmo.com 2001-03-12
## 10405 sharpj@dsmo.com 2001-03-12
## 10406 sharpj@dsmo.com 2001-03-12
## 10407 sharpj@dsmo.com 2001-03-12
## 10408 sharpj@dsmo.com 2001-03-12
## 10409 sharpj@dsmo.com 2001-03-12
## 10410 sharpj@dsmo.com 2001-03-12
## 10411 sharpj@dsmo.com 2001-03-12
## 10412 sharpj@dsmo.com 2001-03-12
## 10413 sharpj@dsmo.com 2001-03-12
## 10414 sharpj@dsmo.com 2001-03-12
## 10415 sharpj@dsmo.com 2001-03-12
## 10416 sharpj@dsmo.com 2001-03-12
## 10417 sharpj@dsmo.com 2001-03-12
## 10418 sharpj@dsmo.com 2001-03-12
## 10419 sharpj@dsmo.com 2001-03-12
## 10420 sharpj@dsmo.com 2001-03-12
## 10421 sharpj@dsmo.com 2001-03-12
## 10422 sharpj@dsmo.com 2001-03-12
## 10423 sharpj@dsmo.com 2001-03-12
## 10424 sharpj@dsmo.com 2001-03-12
## 10425 sharpj@dsmo.com 2001-03-12
## 10426 sharpj@dsmo.com 2001-03-12
## 10427 sharpj@dsmo.com 2001-03-12
## 10428 sharpj@dsmo.com 2001-03-12
## 10429 sharpj@dsmo.com 2001-03-12
## 10430 sharpj@dsmo.com 2001-03-12
## 10431 sharpj@dsmo.com 2001-03-12
## 10432 sharpj@dsmo.com 2001-03-12
## 10433 sharpj@dsmo.com 2001-03-12
## 10434 sharpj@dsmo.com 2001-03-12
## 10435 sharpj@dsmo.com 2001-03-12
## 10436 sharpj@dsmo.com 2001-03-12
## 10437 sharpj@dsmo.com 2001-03-12
## 10438 sharpj@dsmo.com 2001-03-12
## 10439 sharpj@dsmo.com 2001-03-12
## 10440 sharpj@dsmo.com 2001-03-12
## 10441 sharpj@dsmo.com 2001-03-12
## 10442 sharpj@dsmo.com 2001-03-12
## 10443 sharpj@dsmo.com 2001-03-12
## 10444 sharpj@dsmo.com 2001-03-12
## 10445 sharpj@dsmo.com 2001-03-12
## 10446 sharpj@dsmo.com 2001-03-12
## 10447 sharpj@dsmo.com 2001-03-12
## 10448 sharpj@dsmo.com 2001-03-12
## 10449 sharpj@dsmo.com 2001-03-12
## 10450 sharpj@dsmo.com 2001-03-12
## 10451 sharpj@dsmo.com 2001-03-12
## 10452 sharpj@dsmo.com 2001-03-12
## 10453 sharpj@dsmo.com 2001-03-12
## 10454 sharpj@dsmo.com 2001-03-12
## 10455 sharpj@dsmo.com 2001-03-12
## 10456 sharpj@dsmo.com 2001-03-12
## 10457 sharpj@dsmo.com 2001-03-12
## 10458 sharpj@dsmo.com 2001-03-12
## 10459 sharpj@dsmo.com 2001-03-12
## 10460 sharpj@dsmo.com 2001-03-12
## 10461 sharpj@dsmo.com 2001-03-12
## 10462 sharpj@dsmo.com 2001-03-12
## 10463 sharpj@dsmo.com 2001-03-12
## 10464 sharpj@dsmo.com 2001-03-12
## 10465 sharpj@dsmo.com 2001-03-12
## 10466 sharpj@dsmo.com 2001-03-12
## 10467 sharpj@dsmo.com 2001-03-12
## 10468 sharpj@dsmo.com 2001-03-12
## 10469 sharpj@dsmo.com 2001-03-12
## 10470 sharpj@dsmo.com 2001-03-12
## 10471 sharpj@dsmo.com 2001-03-12
## 10472 sharpj@dsmo.com 2001-03-12
## 10473 sharpj@dsmo.com 2001-03-12
## 10474 sharpj@dsmo.com 2001-03-12
## 10475 sharpj@dsmo.com 2001-03-12
## 10476 sharpj@dsmo.com 2001-03-12
## 10477 sharpj@dsmo.com 2001-03-12
## 10478 sharpj@dsmo.com 2001-03-12
## 10479 sharpj@dsmo.com 2001-03-12
## 10480 sharpj@dsmo.com 2001-03-12
## 10481 sharpj@dsmo.com 2001-03-12
## 10482 sharpj@dsmo.com 2001-03-12
## 10483 sharpj@dsmo.com 2001-03-12
## 10484 sharpj@dsmo.com 2001-03-12
## 10485 sharpj@dsmo.com 2001-03-12
## 10486 sharpj@dsmo.com 2001-03-12
## 10487 sharpj@dsmo.com 2001-03-12
## 10488 sharpj@dsmo.com 2001-03-12
## 10489 sharpj@dsmo.com 2001-03-12
## 10490 sharpj@dsmo.com 2001-03-12
## 10491 sharpj@dsmo.com 2001-03-12
## 10492 sharpj@dsmo.com 2001-03-12
## 10493 sharpj@dsmo.com 2001-03-12
## 10494 sharpj@dsmo.com 2001-03-12
## 10495 sharpj@dsmo.com 2001-03-12
## 10496 sharpj@dsmo.com 2001-03-12
## 10497 sharpj@dsmo.com 2001-03-12
## 10498 sharpj@dsmo.com 2001-03-12
## 10499 sharpj@dsmo.com 2001-03-12
## 10500 sharpj@dsmo.com 2001-03-12
## 10501 sharpj@dsmo.com 2001-03-12
## 10502 sharpj@dsmo.com 2001-03-12
## 10503 sharpj@dsmo.com 2001-03-12
## 10504 sharpj@dsmo.com 2001-03-12
## 10505 bernadette.hawkins@enron.com 2001-03-12
## 10506 bernadette.hawkins@enron.com 2001-03-12
## 10507 bernadette.hawkins@enron.com 2001-03-12
## 10508 bernadette.hawkins@enron.com 2001-03-12
## 10509 bernadette.hawkins@enron.com 2001-03-12
## 10510 bernadette.hawkins@enron.com 2001-03-12
## 10511 bernadette.hawkins@enron.com 2001-03-12
## 10512 bernadette.hawkins@enron.com 2001-03-12
## 10513 bernadette.hawkins@enron.com 2001-03-12
## 10514 bernadette.hawkins@enron.com 2001-03-12
## 10515 bernadette.hawkins@enron.com 2001-03-12
## 10516 bernadette.hawkins@enron.com 2001-03-12
## 10517 bernadette.hawkins@enron.com 2001-03-12
## 10518 bernadette.hawkins@enron.com 2001-03-12
## 10519 bernadette.hawkins@enron.com 2001-03-12
## 10520 bernadette.hawkins@enron.com 2001-03-12
## 10521 bernadette.hawkins@enron.com 2001-03-12
## 10522 bernadette.hawkins@enron.com 2001-03-12
## 10523 bernadette.hawkins@enron.com 2001-03-12
## 10524 bernadette.hawkins@enron.com 2001-03-12
## 10525 bernadette.hawkins@enron.com 2001-03-12
## 10526 bernadette.hawkins@enron.com 2001-03-12
## 10527 bernadette.hawkins@enron.com 2001-03-12
## 10528 bernadette.hawkins@enron.com 2001-03-12
## 10529 bernadette.hawkins@enron.com 2001-03-12
## 10530 bernadette.hawkins@enron.com 2001-03-12
## 10531 bernadette.hawkins@enron.com 2001-03-12
## 10532 bernadette.hawkins@enron.com 2001-03-12
## 10533 bernadette.hawkins@enron.com 2001-03-12
## 10534 bernadette.hawkins@enron.com 2001-03-12
## 10535 bernadette.hawkins@enron.com 2001-03-12
## 10536 bernadette.hawkins@enron.com 2001-03-12
## 10537 bernadette.hawkins@enron.com 2001-03-12
## 10538 bernadette.hawkins@enron.com 2001-03-12
## 10539 bernadette.hawkins@enron.com 2001-03-12
## 10540 bernadette.hawkins@enron.com 2001-03-12
## 10541 bernadette.hawkins@enron.com 2001-03-12
## 10542 bernadette.hawkins@enron.com 2001-03-12
## 10543 bernadette.hawkins@enron.com 2001-03-12
## 10544 bernadette.hawkins@enron.com 2001-03-12
## 10545 bernadette.hawkins@enron.com 2001-03-12
## 10546 bernadette.hawkins@enron.com 2001-03-12
## 10547 bernadette.hawkins@enron.com 2001-03-12
## 10548 bernadette.hawkins@enron.com 2001-03-12
## 10549 bernadette.hawkins@enron.com 2001-03-12
## 10550 bernadette.hawkins@enron.com 2001-03-12
## 10551 bernadette.hawkins@enron.com 2001-03-12
## 10552 bernadette.hawkins@enron.com 2001-03-12
## 10553 bernadette.hawkins@enron.com 2001-03-12
## 10554 bernadette.hawkins@enron.com 2001-03-12
## 10555 bernadette.hawkins@enron.com 2001-03-12
## 10556 bernadette.hawkins@enron.com 2001-03-12
## 10557 bernadette.hawkins@enron.com 2001-03-12
## 10558 bernadette.hawkins@enron.com 2001-03-12
## 10559 bernadette.hawkins@enron.com 2001-03-12
## 10560 bernadette.hawkins@enron.com 2001-03-12
## 10561 bernadette.hawkins@enron.com 2001-03-12
## 10562 bernadette.hawkins@enron.com 2001-03-12
## 10563 bernadette.hawkins@enron.com 2001-03-12
## 10564 bernadette.hawkins@enron.com 2001-03-12
## 10565 bernadette.hawkins@enron.com 2001-03-12
## 10566 bernadette.hawkins@enron.com 2001-03-12
## 10567 bernadette.hawkins@enron.com 2001-03-12
## 10568 bernadette.hawkins@enron.com 2001-03-12
## 10569 bernadette.hawkins@enron.com 2001-03-12
## 10570 bernadette.hawkins@enron.com 2001-03-12
## 10571 bernadette.hawkins@enron.com 2001-03-12
## 10572 bernadette.hawkins@enron.com 2001-03-12
## 10573 bernadette.hawkins@enron.com 2001-03-12
## 10574 bernadette.hawkins@enron.com 2001-03-12
## 10575 bernadette.hawkins@enron.com 2001-03-12
## 10576 bernadette.hawkins@enron.com 2001-03-12
## 10577 bernadette.hawkins@enron.com 2001-03-12
## 10578 bernadette.hawkins@enron.com 2001-03-12
## 10579 bernadette.hawkins@enron.com 2001-03-12
## 10580 bernadette.hawkins@enron.com 2001-03-12
## 10581 bernadette.hawkins@enron.com 2001-03-12
## 10582 bernadette.hawkins@enron.com 2001-03-12
## 10583 bernadette.hawkins@enron.com 2001-03-12
## 10584 bernadette.hawkins@enron.com 2001-03-12
## 10585 bernadette.hawkins@enron.com 2001-03-12
## 10586 bernadette.hawkins@enron.com 2001-03-12
## 10587 bernadette.hawkins@enron.com 2001-03-12
## 10588 bernadette.hawkins@enron.com 2001-03-12
## 10589 bernadette.hawkins@enron.com 2001-03-12
## 10590 bernadette.hawkins@enron.com 2001-03-12
## 10591 bernadette.hawkins@enron.com 2001-03-12
## 10592 bernadette.hawkins@enron.com 2001-03-12
## 10593 bernadette.hawkins@enron.com 2001-03-12
## 10594 bernadette.hawkins@enron.com 2001-03-12
## 10595 bernadette.hawkins@enron.com 2001-03-12
## 10596 bernadette.hawkins@enron.com 2001-03-12
## 10597 bernadette.hawkins@enron.com 2001-03-12
## 10598 bernadette.hawkins@enron.com 2001-03-12
## 10599 bernadette.hawkins@enron.com 2001-03-12
## 10600 bernadette.hawkins@enron.com 2001-03-12
## 10601 bernadette.hawkins@enron.com 2001-03-12
## 10602 bernadette.hawkins@enron.com 2001-03-12
## 10603 bernadette.hawkins@enron.com 2001-03-12
## 10604 bernadette.hawkins@enron.com 2001-03-12
## 10605 bernadette.hawkins@enron.com 2001-03-12
## 10606 bernadette.hawkins@enron.com 2001-03-12
## 10607 bernadette.hawkins@enron.com 2001-03-12
## 10608 bernadette.hawkins@enron.com 2001-03-12
## 10609 bernadette.hawkins@enron.com 2001-03-12
## 10610 bernadette.hawkins@enron.com 2001-03-12
## 10611 bernadette.hawkins@enron.com 2001-03-12
## 10612 bernadette.hawkins@enron.com 2001-03-12
## 10613 bernadette.hawkins@enron.com 2001-03-12
## 10614 bernadette.hawkins@enron.com 2001-03-12
## 10615 bernadette.hawkins@enron.com 2001-03-12
## 10616 bernadette.hawkins@enron.com 2001-03-12
## 10617 bernadette.hawkins@enron.com 2001-03-12
## 10618 bernadette.hawkins@enron.com 2001-03-12
## 10619 bernadette.hawkins@enron.com 2001-03-12
## 10620 bernadette.hawkins@enron.com 2001-03-12
## 10621 bernadette.hawkins@enron.com 2001-03-12
## 10622 bernadette.hawkins@enron.com 2001-03-12
## 10623 bernadette.hawkins@enron.com 2001-03-12
## 10624 bernadette.hawkins@enron.com 2001-03-12
## 10625 bernadette.hawkins@enron.com 2001-03-12
## 10626 bernadette.hawkins@enron.com 2001-03-12
## 10627 bernadette.hawkins@enron.com 2001-03-12
## 10628 bernadette.hawkins@enron.com 2001-03-12
## 10629 bernadette.hawkins@enron.com 2001-03-12
## 10630 bernadette.hawkins@enron.com 2001-03-12
## 10631 bernadette.hawkins@enron.com 2001-03-12
## 10632 bernadette.hawkins@enron.com 2001-03-12
## 10633 bernadette.hawkins@enron.com 2001-03-12
## 10634 bernadette.hawkins@enron.com 2001-03-12
## 10635 bernadette.hawkins@enron.com 2001-03-12
## 10636 bernadette.hawkins@enron.com 2001-03-12
## 10637 bernadette.hawkins@enron.com 2001-03-12
## 10638 bernadette.hawkins@enron.com 2001-03-12
## 10639 bernadette.hawkins@enron.com 2001-03-12
## 10640 hes@vnf.com 2001-03-12
## 10641 hes@vnf.com 2001-03-12
## 10642 hes@vnf.com 2001-03-12
## 10643 hes@vnf.com 2001-03-12
## 10644 hes@vnf.com 2001-03-12
## 10645 hes@vnf.com 2001-03-12
## 10646 hes@vnf.com 2001-03-12
## 10647 hes@vnf.com 2001-03-12
## 10648 hes@vnf.com 2001-03-12
## 10649 hes@vnf.com 2001-03-12
## 10650 hes@vnf.com 2001-03-12
## 10651 hes@vnf.com 2001-03-12
## 10652 hes@vnf.com 2001-03-12
## 10653 hes@vnf.com 2001-03-12
## 10654 hes@vnf.com 2001-03-12
## 10655 hes@vnf.com 2001-03-12
## 10656 hes@vnf.com 2001-03-12
## 10657 hes@vnf.com 2001-03-12
## 10658 hes@vnf.com 2001-03-12
## 10659 hes@vnf.com 2001-03-12
## 10660 hes@vnf.com 2001-03-12
## 10661 hes@vnf.com 2001-03-12
## 10662 hes@vnf.com 2001-03-12
## 10663 hes@vnf.com 2001-03-12
## 10664 hes@vnf.com 2001-03-12
## 10665 hes@vnf.com 2001-03-12
## 10666 hes@vnf.com 2001-03-12
## 10667 hes@vnf.com 2001-03-12
## 10668 hes@vnf.com 2001-03-12
## 10669 hes@vnf.com 2001-03-12
## 10670 hes@vnf.com 2001-03-12
## 10671 hes@vnf.com 2001-03-12
## 10672 hes@vnf.com 2001-03-12
## 10673 hes@vnf.com 2001-03-12
## 10674 hes@vnf.com 2001-03-12
## 10675 hes@vnf.com 2001-03-12
## 10676 hes@vnf.com 2001-03-12
## 10677 hes@vnf.com 2001-03-12
## 10678 hes@vnf.com 2001-03-12
## 10679 hes@vnf.com 2001-03-12
## 10680 hes@vnf.com 2001-03-12
## 10681 hes@vnf.com 2001-03-12
## 10682 hes@vnf.com 2001-03-12
## 10683 hes@vnf.com 2001-03-12
## 10684 hes@vnf.com 2001-03-12
## 10685 hes@vnf.com 2001-03-12
## 10686 hes@vnf.com 2001-03-12
## 10687 rcjosephson@stoel.com 2001-03-12
## 10688 rcjosephson@stoel.com 2001-03-12
## 10689 rcjosephson@stoel.com 2001-03-12
## 10690 rcjosephson@stoel.com 2001-03-12
## 10691 rcjosephson@stoel.com 2001-03-12
## 10692 rcjosephson@stoel.com 2001-03-12
## 10693 rcjosephson@stoel.com 2001-03-12
## 10694 rcjosephson@stoel.com 2001-03-12
## 10695 rcjosephson@stoel.com 2001-03-12
## 10696 rcjosephson@stoel.com 2001-03-12
## 10697 rcjosephson@stoel.com 2001-03-12
## 10698 rcjosephson@stoel.com 2001-03-12
## 10699 rcjosephson@stoel.com 2001-03-12
## 10700 rcjosephson@stoel.com 2001-03-12
## 10701 rcjosephson@stoel.com 2001-03-12
## 10702 rcjosephson@stoel.com 2001-03-12
## 10703 rcjosephson@stoel.com 2001-03-12
## 10704 rcjosephson@stoel.com 2001-03-12
## 10705 rcjosephson@stoel.com 2001-03-12
## 10706 rcjosephson@stoel.com 2001-03-12
## 10707 rcjosephson@stoel.com 2001-03-12
## 10708 rcjosephson@stoel.com 2001-03-12
## 10709 rcjosephson@stoel.com 2001-03-12
## 10710 rcjosephson@stoel.com 2001-03-12
## 10711 rcjosephson@stoel.com 2001-03-12
## 10712 rcjosephson@stoel.com 2001-03-12
## 10713 rcjosephson@stoel.com 2001-03-12
## 10714 rcjosephson@stoel.com 2001-03-12
## 10715 rcjosephson@stoel.com 2001-03-12
## 10716 rcjosephson@stoel.com 2001-03-12
## 10717 rcjosephson@stoel.com 2001-03-12
## 10718 rcjosephson@stoel.com 2001-03-12
## 10719 rcjosephson@stoel.com 2001-03-12
## 10720 rcjosephson@stoel.com 2001-03-12
## 10721 rcjosephson@stoel.com 2001-03-12
## 10722 rcjosephson@stoel.com 2001-03-12
## 10723 rcjosephson@stoel.com 2001-03-12
## 10724 rcjosephson@stoel.com 2001-03-12
## 10725 rcjosephson@stoel.com 2001-03-12
## 10726 rcjosephson@stoel.com 2001-03-12
## 10727 rcjosephson@stoel.com 2001-03-12
## 10728 rcjosephson@stoel.com 2001-03-12
## 10729 rcjosephson@stoel.com 2001-03-12
## 10730 rcjosephson@stoel.com 2001-03-12
## 10731 rcjosephson@stoel.com 2001-03-12
## 10732 rcjosephson@stoel.com 2001-03-12
## 10733 rcjosephson@stoel.com 2001-03-12
## 10734 rcjosephson@stoel.com 2001-03-12
## 10735 rcjosephson@stoel.com 2001-03-12
## 10736 jeff.shields@enron.com 2001-03-12
## 10737 jeff.shields@enron.com 2001-03-12
## 10738 jeff.shields@enron.com 2001-03-12
## 10739 jeff.shields@enron.com 2001-03-12
## 10740 jeff.shields@enron.com 2001-03-12
## 10741 jeff.shields@enron.com 2001-03-12
## 10742 jeff.shields@enron.com 2001-03-12
## 10743 jeff.shields@enron.com 2001-03-12
## 10744 jeff.shields@enron.com 2001-03-12
## 10745 jeff.shields@enron.com 2001-03-12
## 10746 jeff.shields@enron.com 2001-03-12
## 10747 jeff.shields@enron.com 2001-03-12
## 10748 rloeffler@mofo.com 2001-03-12
## 10749 rloeffler@mofo.com 2001-03-12
## 10750 rloeffler@mofo.com 2001-03-12
## 10751 rloeffler@mofo.com 2001-03-12
## 10752 rloeffler@mofo.com 2001-03-12
## 10753 rloeffler@mofo.com 2001-03-12
## 10754 rloeffler@mofo.com 2001-03-12
## 10755 rloeffler@mofo.com 2001-03-12
## 10756 rloeffler@mofo.com 2001-03-12
## 10757 rloeffler@mofo.com 2001-03-12
## 10758 rloeffler@mofo.com 2001-03-12
## 10759 rloeffler@mofo.com 2001-03-12
## 10760 rloeffler@mofo.com 2001-03-12
## 10761 rloeffler@mofo.com 2001-03-12
## 10762 rloeffler@mofo.com 2001-03-12
## 10763 rloeffler@mofo.com 2001-03-12
## 10764 rloeffler@mofo.com 2001-03-12
## 10765 rloeffler@mofo.com 2001-03-12
## 10766 rloeffler@mofo.com 2001-03-12
## 10767 rloeffler@mofo.com 2001-03-12
## 10768 rloeffler@mofo.com 2001-03-12
## 10769 rloeffler@mofo.com 2001-03-12
## 10770 rloeffler@mofo.com 2001-03-12
## 10771 rloeffler@mofo.com 2001-03-12
## 10772 rloeffler@mofo.com 2001-03-12
## 10773 rloeffler@mofo.com 2001-03-12
## 10774 rloeffler@mofo.com 2001-03-12
## 10775 rloeffler@mofo.com 2001-03-12
## 10776 rloeffler@mofo.com 2001-03-12
## 10777 rloeffler@mofo.com 2001-03-12
## 10778 rloeffler@mofo.com 2001-03-12
## 10779 rloeffler@mofo.com 2001-03-12
## 10780 rloeffler@mofo.com 2001-03-12
## 10781 rloeffler@mofo.com 2001-03-12
## 10782 rloeffler@mofo.com 2001-03-12
## 10783 rloeffler@mofo.com 2001-03-12
## 10784 rloeffler@mofo.com 2001-03-12
## 10785 rloeffler@mofo.com 2001-03-12
## 10786 rloeffler@mofo.com 2001-03-12
## 10787 rloeffler@mofo.com 2001-03-12
## 10788 rloeffler@mofo.com 2001-03-12
## 10789 rloeffler@mofo.com 2001-03-12
## 10790 rloeffler@mofo.com 2001-03-12
## 10791 rloeffler@mofo.com 2001-03-12
## 10792 rloeffler@mofo.com 2001-03-12
## 10793 rloeffler@mofo.com 2001-03-12
## 10794 rloeffler@mofo.com 2001-03-12
## 10795 rloeffler@mofo.com 2001-03-12
## 10796 david.perlman@powersrc.com 2001-03-12
## 10797 david.perlman@powersrc.com 2001-03-12
## 10798 david.perlman@powersrc.com 2001-03-12
## 10799 david.perlman@powersrc.com 2001-03-12
## 10800 david.perlman@powersrc.com 2001-03-12
## 10801 david.perlman@powersrc.com 2001-03-12
## 10802 david.perlman@powersrc.com 2001-03-12
## 10803 david.perlman@powersrc.com 2001-03-12
## 10804 david.perlman@powersrc.com 2001-03-12
## 10805 david.perlman@powersrc.com 2001-03-12
## 10806 njenks@eei.org 2001-03-12
## 10807 paramfjord@stoel.com 2001-03-12
## 10808 paramfjord@stoel.com 2001-03-12
## 10809 paramfjord@stoel.com 2001-03-12
## 10810 paramfjord@stoel.com 2001-03-12
## 10811 paramfjord@stoel.com 2001-03-12
## 10812 paramfjord@stoel.com 2001-03-12
## 10813 paramfjord@stoel.com 2001-03-12
## 10814 paramfjord@stoel.com 2001-03-12
## 10815 paramfjord@stoel.com 2001-03-12
## 10816 paramfjord@stoel.com 2001-03-12
## 10817 paramfjord@stoel.com 2001-03-12
## 10818 paramfjord@stoel.com 2001-03-12
## 10819 paramfjord@stoel.com 2001-03-12
## 10820 paramfjord@stoel.com 2001-03-12
## 10821 paramfjord@stoel.com 2001-03-12
## 10822 paramfjord@stoel.com 2001-03-12
## 10823 paramfjord@stoel.com 2001-03-12
## 10824 paramfjord@stoel.com 2001-03-12
## 10825 paramfjord@stoel.com 2001-03-12
## 10826 paramfjord@stoel.com 2001-03-12
## 10827 paramfjord@stoel.com 2001-03-12
## 10828 paramfjord@stoel.com 2001-03-12
## 10829 paramfjord@stoel.com 2001-03-12
## 10830 paramfjord@stoel.com 2001-03-12
## 10831 paramfjord@stoel.com 2001-03-12
## 10832 paramfjord@stoel.com 2001-03-12
## 10833 paramfjord@stoel.com 2001-03-12
## 10834 paramfjord@stoel.com 2001-03-12
## 10835 paramfjord@stoel.com 2001-03-12
## 10836 paramfjord@stoel.com 2001-03-12
## 10837 paramfjord@stoel.com 2001-03-12
## 10838 paramfjord@stoel.com 2001-03-12
## 10839 paramfjord@stoel.com 2001-03-12
## 10840 paramfjord@stoel.com 2001-03-12
## 10841 paramfjord@stoel.com 2001-03-12
## 10842 paramfjord@stoel.com 2001-03-12
## 10843 paramfjord@stoel.com 2001-03-12
## 10844 paramfjord@stoel.com 2001-03-12
## 10845 paramfjord@stoel.com 2001-03-12
## 10846 paramfjord@stoel.com 2001-03-12
## 10847 paramfjord@stoel.com 2001-03-12
## 10848 paramfjord@stoel.com 2001-03-12
## 10849 paramfjord@stoel.com 2001-03-12
## 10850 paramfjord@stoel.com 2001-03-12
## 10851 paramfjord@stoel.com 2001-03-12
## 10852 paramfjord@stoel.com 2001-03-12
## 10853 paramfjord@stoel.com 2001-03-12
## 10854 paramfjord@stoel.com 2001-03-12
## 10855 paramfjord@stoel.com 2001-03-12
## 10856 paramfjord@stoel.com 2001-03-12
## 10857 paramfjord@stoel.com 2001-03-12
## 10858 paramfjord@stoel.com 2001-03-12
## 10859 paramfjord@stoel.com 2001-03-12
## 10860 paramfjord@stoel.com 2001-03-12
## 10861 paramfjord@stoel.com 2001-03-12
## 10862 paramfjord@stoel.com 2001-03-12
## 10863 paramfjord@stoel.com 2001-03-12
## 10864 paramfjord@stoel.com 2001-03-12
## 10865 paramfjord@stoel.com 2001-03-12
## 10866 paramfjord@stoel.com 2001-03-12
## 10867 paramfjord@stoel.com 2001-03-12
## 10868 paramfjord@stoel.com 2001-03-12
## 10869 paramfjord@stoel.com 2001-03-12
## 10870 paramfjord@stoel.com 2001-03-12
## 10871 paramfjord@stoel.com 2001-03-12
## 10872 paramfjord@stoel.com 2001-03-12
## 10873 paramfjord@stoel.com 2001-03-12
## 10874 paramfjord@stoel.com 2001-03-12
## 10875 paramfjord@stoel.com 2001-03-12
## 10876 paramfjord@stoel.com 2001-03-12
## 10877 paramfjord@stoel.com 2001-03-12
## 10878 paramfjord@stoel.com 2001-03-12
## 10879 paramfjord@stoel.com 2001-03-12
## 10880 paramfjord@stoel.com 2001-03-12
## 10881 paramfjord@stoel.com 2001-03-12
## 10882 paramfjord@stoel.com 2001-03-12
## 10883 paramfjord@stoel.com 2001-03-12
## 10884 paramfjord@stoel.com 2001-03-12
## 10885 paramfjord@stoel.com 2001-03-12
## 10886 paramfjord@stoel.com 2001-03-12
## 10887 paramfjord@stoel.com 2001-03-12
## 10888 paramfjord@stoel.com 2001-03-12
## 10889 paramfjord@stoel.com 2001-03-12
## 10890 paramfjord@stoel.com 2001-03-12
## 10891 paramfjord@stoel.com 2001-03-12
## 10892 paramfjord@stoel.com 2001-03-12
## 10893 paramfjord@stoel.com 2001-03-12
## 10894 paramfjord@stoel.com 2001-03-12
## 10895 paramfjord@stoel.com 2001-03-12
## 10896 paramfjord@stoel.com 2001-03-12
## 10897 paramfjord@stoel.com 2001-03-12
## 10898 paramfjord@stoel.com 2001-03-12
## 10899 gerspamer@mofo.com 2001-03-12
## 10900 gerspamer@mofo.com 2001-03-12
## 10901 gerspamer@mofo.com 2001-03-12
## 10902 gerspamer@mofo.com 2001-03-12
## 10903 gerspamer@mofo.com 2001-03-12
## 10904 gerspamer@mofo.com 2001-03-12
## 10905 gerspamer@mofo.com 2001-03-12
## 10906 gerspamer@mofo.com 2001-03-12
## 10907 gerspamer@mofo.com 2001-03-12
## 10908 gerspamer@mofo.com 2001-03-12
## 10909 gerspamer@mofo.com 2001-03-12
## 10910 gerspamer@mofo.com 2001-03-12
## 10911 gerspamer@mofo.com 2001-03-12
## 10912 gerspamer@mofo.com 2001-03-12
## 10913 gerspamer@mofo.com 2001-03-12
## 10914 gerspamer@mofo.com 2001-03-12
## 10915 gerspamer@mofo.com 2001-03-12
## 10916 gerspamer@mofo.com 2001-03-12
## 10917 gerspamer@mofo.com 2001-03-12
## 10918 gerspamer@mofo.com 2001-03-12
## 10919 gerspamer@mofo.com 2001-03-12
## 10920 gerspamer@mofo.com 2001-03-12
## 10921 gerspamer@mofo.com 2001-03-12
## 10922 gerspamer@mofo.com 2001-03-12
## 10923 gerspamer@mofo.com 2001-03-12
## 10924 gerspamer@mofo.com 2001-03-12
## 10925 gerspamer@mofo.com 2001-03-12
## 10926 gerspamer@mofo.com 2001-03-12
## 10927 gerspamer@mofo.com 2001-03-12
## 10928 gerspamer@mofo.com 2001-03-12
## 10929 gerspamer@mofo.com 2001-03-12
## 10930 gerspamer@mofo.com 2001-03-12
## 10931 gerspamer@mofo.com 2001-03-12
## 10932 gerspamer@mofo.com 2001-03-12
## 10933 gerspamer@mofo.com 2001-03-12
## 10934 gerspamer@mofo.com 2001-03-12
## 10935 gerspamer@mofo.com 2001-03-12
## 10936 gerspamer@mofo.com 2001-03-12
## 10937 gerspamer@mofo.com 2001-03-12
## 10938 gerspamer@mofo.com 2001-03-12
## 10939 gerspamer@mofo.com 2001-03-12
## 10940 gerspamer@mofo.com 2001-03-12
## 10941 gerspamer@mofo.com 2001-03-12
## 10942 gerspamer@mofo.com 2001-03-12
## 10943 gerspamer@mofo.com 2001-03-12
## 10944 gerspamer@mofo.com 2001-03-12
## 10945 gerspamer@mofo.com 2001-03-12
## 10946 gerspamer@mofo.com 2001-03-12
## 10947 sandra.elliott@ferc.fed.us 2001-03-12
## 10948 debra.davidson@enron.com 2001-03-12
## 10949 bill.iii@enron.com 2001-03-12
## 10950 jeff.shields@enron.com 2001-03-12
## 10951 jeff.shields@enron.com 2001-03-12
## 10952 jeff.shields@enron.com 2001-03-12
## 10953 jeff.shields@enron.com 2001-03-12
## 10954 jeff.shields@enron.com 2001-03-12
## 10955 jeff.shields@enron.com 2001-03-12
## 10956 jeff.shields@enron.com 2001-03-12
## 10957 jeff.shields@enron.com 2001-03-12
## 10958 jeff.shields@enron.com 2001-03-12
## 10959 jay.dudley@enron.com 2001-03-12
## 10960 jay.dudley@enron.com 2001-03-12
## 10961 jay.dudley@enron.com 2001-03-12
## 10962 jay.dudley@enron.com 2001-03-12
## 10963 jay.dudley@enron.com 2001-03-12
## 10964 shapp@caiso.com 2001-03-14
## 10965 ginger.dernehl@enron.com 2001-03-14
## 10966 ginger.dernehl@enron.com 2001-03-14
## 10967 ginger.dernehl@enron.com 2001-03-14
## 10968 ginger.dernehl@enron.com 2001-03-14
## 10969 ginger.dernehl@enron.com 2001-03-14
## 10970 ginger.dernehl@enron.com 2001-03-14
## 10971 ginger.dernehl@enron.com 2001-03-14
## 10972 ginger.dernehl@enron.com 2001-03-14
## 10973 ginger.dernehl@enron.com 2001-03-14
## 10974 ginger.dernehl@enron.com 2001-03-14
## 10975 ginger.dernehl@enron.com 2001-03-14
## 10976 ginger.dernehl@enron.com 2001-03-14
## 10977 ginger.dernehl@enron.com 2001-03-14
## 10978 ginger.dernehl@enron.com 2001-03-14
## 10979 ginger.dernehl@enron.com 2001-03-14
## 10980 ginger.dernehl@enron.com 2001-03-14
## 10981 ginger.dernehl@enron.com 2001-03-14
## 10982 ginger.dernehl@enron.com 2001-03-14
## 10983 ginger.dernehl@enron.com 2001-03-14
## 10984 ginger.dernehl@enron.com 2001-03-14
## 10985 ginger.dernehl@enron.com 2001-03-14
## 10986 ginger.dernehl@enron.com 2001-03-14
## 10987 ginger.dernehl@enron.com 2001-03-14
## 10988 ginger.dernehl@enron.com 2001-03-14
## 10989 ginger.dernehl@enron.com 2001-03-14
## 10990 ginger.dernehl@enron.com 2001-03-14
## 10991 ginger.dernehl@enron.com 2001-03-14
## 10992 ginger.dernehl@enron.com 2001-03-14
## 10993 ginger.dernehl@enron.com 2001-03-14
## 10994 ginger.dernehl@enron.com 2001-03-14
## 10995 ginger.dernehl@enron.com 2001-03-14
## 10996 ginger.dernehl@enron.com 2001-03-14
## 10997 ginger.dernehl@enron.com 2001-03-14
## 10998 ginger.dernehl@enron.com 2001-03-14
## 10999 ginger.dernehl@enron.com 2001-03-14
## 11000 ginger.dernehl@enron.com 2001-03-14
## 11001 ginger.dernehl@enron.com 2001-03-14
## 11002 ginger.dernehl@enron.com 2001-03-14
## 11003 ginger.dernehl@enron.com 2001-03-14
## 11004 ginger.dernehl@enron.com 2001-03-14
## 11005 ginger.dernehl@enron.com 2001-03-14
## 11006 ginger.dernehl@enron.com 2001-03-14
## 11007 ginger.dernehl@enron.com 2001-03-14
## 11008 ginger.dernehl@enron.com 2001-03-14
## 11009 ginger.dernehl@enron.com 2001-03-14
## 11010 ginger.dernehl@enron.com 2001-03-14
## 11011 ginger.dernehl@enron.com 2001-03-14
## 11012 ginger.dernehl@enron.com 2001-03-14
## 11013 ginger.dernehl@enron.com 2001-03-14
## 11014 ginger.dernehl@enron.com 2001-03-14
## 11015 ginger.dernehl@enron.com 2001-03-14
## 11016 ginger.dernehl@enron.com 2001-03-14
## 11017 ginger.dernehl@enron.com 2001-03-14
## 11018 ginger.dernehl@enron.com 2001-03-14
## 11019 ginger.dernehl@enron.com 2001-03-14
## 11020 ginger.dernehl@enron.com 2001-03-14
## 11021 ginger.dernehl@enron.com 2001-03-14
## 11022 ginger.dernehl@enron.com 2001-03-14
## 11023 ginger.dernehl@enron.com 2001-03-14
## 11024 ginger.dernehl@enron.com 2001-03-14
## 11025 ginger.dernehl@enron.com 2001-03-14
## 11026 ginger.dernehl@enron.com 2001-03-14
## 11027 ginger.dernehl@enron.com 2001-03-14
## 11028 ginger.dernehl@enron.com 2001-03-14
## 11029 ginger.dernehl@enron.com 2001-03-14
## 11030 ginger.dernehl@enron.com 2001-03-14
## 11031 ginger.dernehl@enron.com 2001-03-14
## 11032 ginger.dernehl@enron.com 2001-03-14
## 11033 ginger.dernehl@enron.com 2001-03-14
## 11034 ginger.dernehl@enron.com 2001-03-14
## 11035 ginger.dernehl@enron.com 2001-03-14
## 11036 ginger.dernehl@enron.com 2001-03-14
## 11037 ginger.dernehl@enron.com 2001-03-14
## 11038 ginger.dernehl@enron.com 2001-03-14
## 11039 ginger.dernehl@enron.com 2001-03-14
## 11040 ginger.dernehl@enron.com 2001-03-14
## 11041 ginger.dernehl@enron.com 2001-03-14
## 11042 ginger.dernehl@enron.com 2001-03-14
## 11043 ginger.dernehl@enron.com 2001-03-14
## 11044 ginger.dernehl@enron.com 2001-03-14
## 11045 ginger.dernehl@enron.com 2001-03-14
## 11046 ginger.dernehl@enron.com 2001-03-14
## 11047 ginger.dernehl@enron.com 2001-03-14
## 11048 ginger.dernehl@enron.com 2001-03-14
## 11049 ginger.dernehl@enron.com 2001-03-14
## 11050 ginger.dernehl@enron.com 2001-03-14
## 11051 ginger.dernehl@enron.com 2001-03-14
## 11052 ginger.dernehl@enron.com 2001-03-14
## 11053 ginger.dernehl@enron.com 2001-03-14
## 11054 kbeniga@schwabe.com 2001-03-14
## 11055 kbeniga@schwabe.com 2001-03-14
## 11056 kbeniga@schwabe.com 2001-03-14
## 11057 kbeniga@schwabe.com 2001-03-14
## 11058 kbeniga@schwabe.com 2001-03-14
## 11059 kbeniga@schwabe.com 2001-03-14
## 11060 kbeniga@schwabe.com 2001-03-14
## 11061 kbeniga@schwabe.com 2001-03-14
## 11062 kbeniga@schwabe.com 2001-03-14
## 11063 kbeniga@schwabe.com 2001-03-14
## 11064 kbeniga@schwabe.com 2001-03-14
## 11065 kbeniga@schwabe.com 2001-03-14
## 11066 kbeniga@schwabe.com 2001-03-14
## 11067 kbeniga@schwabe.com 2001-03-14
## 11068 kbeniga@schwabe.com 2001-03-14
## 11069 kbeniga@schwabe.com 2001-03-14
## 11070 kbeniga@schwabe.com 2001-03-14
## 11071 kbeniga@schwabe.com 2001-03-14
## 11072 kbeniga@schwabe.com 2001-03-14
## 11073 kbeniga@schwabe.com 2001-03-14
## 11074 kbeniga@schwabe.com 2001-03-14
## 11075 kbeniga@schwabe.com 2001-03-14
## 11076 kbeniga@schwabe.com 2001-03-14
## 11077 kbeniga@schwabe.com 2001-03-14
## 11078 kbeniga@schwabe.com 2001-03-14
## 11079 kbeniga@schwabe.com 2001-03-14
## 11080 kbeniga@schwabe.com 2001-03-14
## 11081 kbeniga@schwabe.com 2001-03-14
## 11082 kbeniga@schwabe.com 2001-03-14
## 11083 kbeniga@schwabe.com 2001-03-14
## 11084 kbeniga@schwabe.com 2001-03-14
## 11085 kbeniga@schwabe.com 2001-03-14
## 11086 kbeniga@schwabe.com 2001-03-14
## 11087 kbeniga@schwabe.com 2001-03-14
## 11088 kbeniga@schwabe.com 2001-03-14
## 11089 kbeniga@schwabe.com 2001-03-14
## 11090 kbeniga@schwabe.com 2001-03-14
## 11091 kbeniga@schwabe.com 2001-03-14
## 11092 kbeniga@schwabe.com 2001-03-14
## 11093 kbeniga@schwabe.com 2001-03-14
## 11094 kbeniga@schwabe.com 2001-03-14
## 11095 kbeniga@schwabe.com 2001-03-14
## 11096 kbeniga@schwabe.com 2001-03-14
## 11097 kbeniga@schwabe.com 2001-03-14
## 11098 kbeniga@schwabe.com 2001-03-14
## 11099 kbeniga@schwabe.com 2001-03-14
## 11100 kbeniga@schwabe.com 2001-03-14
## 11101 kbeniga@schwabe.com 2001-03-14
## 11102 kbeniga@schwabe.com 2001-03-14
## 11103 kbeniga@schwabe.com 2001-03-14
## 11104 kbeniga@schwabe.com 2001-03-14
## 11105 kbeniga@schwabe.com 2001-03-14
## 11106 kbeniga@schwabe.com 2001-03-14
## 11107 kbeniga@schwabe.com 2001-03-14
## 11108 kbeniga@schwabe.com 2001-03-14
## 11109 kbeniga@schwabe.com 2001-03-14
## 11110 kbeniga@schwabe.com 2001-03-14
## 11111 kbeniga@schwabe.com 2001-03-14
## subject
## 1 ENRON HOSTS ANNUAL ANALYST CONFERENCE PROVIDES BUSINESS OVERVIEW AND GOALS FOR 2000
## 2 Over $50 -- You made it happen!
## 3 Over $50 -- You made it happen!
## 4 ROAD-SHOW.COM Q4i.COM CHOOSE ENRON TO DELIVER FINANCIAL WEB CONTENT
## 5 Fortune Most Admired Ranking
## 6 Fortune Most Admired Ranking
## 7 WPTF Friday Credo Veritas Burrito
## 8 SAP ID - Here it is!!!!!
## 9 Block Forward Financial Trades
## 10 Block Forward Financial Trades
## 11 Block Forward Financial Trades
## 12 Block Forward Financial Trades
## 13 Block Forward Financial Trades
## 14 Block Forward Financial Trades
## 15 Block forwards
## 16 Block forwards
## 17 Block forwards
## 18 Block forwards
## 19 Block forwards
## 20 Block forwards
## 21 Block forwards
## 22 Block forwards
## 23 CAISO Energy - Brokers (2)
## 24 CAISO Energy - Brokers (2)
## 25 CAISO Energy - Brokers (2)
## 26 CAISO Energy - Brokers (2)
## 27 CAISO Energy - Brokers (2)
## 28 CAISO Energy - Brokers (2)
## 29 CAISO Energy - Brokers (2)
## 30 CAISO Energy - Brokers (2)
## 31 CAISO Energy - Brokers (2)
## 32 CAISO Energy - Brokers (2)
## 33 CAISO Counterparties
## 34 CAISO Counterparties
## 35 CAISO Counterparties
## 36 CAISO Counterparties
## 37 CAISO Counterparties
## 38 Report on Calif. Electricity Price Spikes by CPUC and EOB
## 39 Report on Calif. Electricity Price Spikes by CPUC and EOB
## 40 Report on Calif. Electricity Price Spikes by CPUC and EOB
## 41 Report on Calif. Electricity Price Spikes by CPUC and EOB
## 42 Report on Calif. Electricity Price Spikes by CPUC and EOB
## 43 Report on Calif. Electricity Price Spikes by CPUC and EOB
## 44 Report on Calif. Electricity Price Spikes by CPUC and EOB
## 45 Report on Calif. Electricity Price Spikes by CPUC and EOB
## 46 Report on Calif. Electricity Price Spikes by CPUC and EOB
## 47 Report on Calif. Electricity Price Spikes by CPUC and EOB
## 48 Report on Calif. Electricity Price Spikes by CPUC and EOB
## 49 Report on Calif. Electricity Price Spikes by CPUC and EOB
## 50 Report on Calif. Electricity Price Spikes by CPUC and EOB
## 51 Report on Calif. Electricity Price Spikes by CPUC and EOB
## 52 Report on Calif. Electricity Price Spikes by CPUC and EOB
## 53 CAISO Notice - Solicitation for Guaranteed Generation Service
## 54 EXPORT FEES
## 55 EXPORT FEES
## 56 EXPORT FEES
## 57 EXPORT FEES
## 58 EXPORT FEES
## 59 EXPORT FEES
## 60 EXPORT FEES
## 61 EXPORT FEES
## 62 EXPORT FEES
## 63 EXPORT FEES
## 64 EXPORT FEES
## 65 EXPORT FEES
## 66 EXPORT FEES
## 67 EXPORT FEES
## 68 EXPORT FEES
## 69 Bilateral Contracts for SCE, PG&E and SDG&E
## 70 Bilateral Contracts for SCE, PG&E and SDG&E
## 71 Bilateral Contracts for SCE, PG&E and SDG&E
## 72 Bilateral Contracts for SCE, PG&E and SDG&E
## 73 Bilateral Contracts for SCE, PG&E and SDG&E
## 74 Bilateral Contracts for SCE, PG&E and SDG&E
## 75 Bilateral Contracts for SCE, PG&E and SDG&E
## 76 Bilateral Contracts for SCE, PG&E and SDG&E
## 77 Bilateral Contracts for SCE, PG&E and SDG&E
## 78 Bilateral Contracts for SCE, PG&E and SDG&E
## 79 Bilateral Contracts for SCE, PG&E and SDG&E
## 80 [Second Delivery: WPTF Friday Amen Burrito]
## 81 Yesterday s Events
## 82 Yesterday s Events
## 83 Yesterday s Events
## 84 Yesterday s Events
## 85 Yesterday s Events
## 86 Yesterday s Events
## 87 Yesterday s Events
## 88 Yesterday s Events
## 89 Yesterday s Events
## 90 Yesterday s Events
## 91 Yesterday s Events
## 92 Yesterday s Events
## 93 Yesterday s Events
## 94 Yesterday s Events
## 95 Yesterday s Events
## 96 Bilateral Contracts for SCE, PG&E and SDG&E - Quantity limits
## 97 Bilateral Contracts for SCE, PG&E and SDG&E - Quantity limits
## 98 Bilateral Contracts for SCE, PG&E and SDG&E - Quantity limits
## 99 Bilateral Contracts for SCE, PG&E and SDG&E - Quantity limits
## 100 Bilateral Contracts for SCE, PG&E and SDG&E - Quantity limits
## 101 Bilateral Contracts for SCE, PG&E and SDG&E - Quantity limits
## 102 Bilateral Contracts for SCE, PG&E and SDG&E - Quantity limits
## 103 Bilateral Contracts for SCE, PG&E and SDG&E - Quantity limits
## 104 Bilateral Contracts for SCE, PG&E and SDG&E - Quantity limits
## 105 Bilateral Contracts for SCE, PG&E and SDG&E - Quantity limits
## 106 Bilateral Contracts for SCE, PG&E and SDG&E - Quantity limits
## 107 DJ BIG PICTURE: Wider Econ Risks In California s Power Woes
## 108 DJ BIG PICTURE: Wider Econ Risks In California s Power Woes
## 109 DJ BIG PICTURE: Wider Econ Risks In California s Power Woes
## 110 DJ BIG PICTURE: Wider Econ Risks In California s Power Woes
## 111 DJ BIG PICTURE: Wider Econ Risks In California s Power Woes
## 112 DJ BIG PICTURE: Wider Econ Risks In California s Power Woes
## 113 DJ BIG PICTURE: Wider Econ Risks In California s Power Woes
## 114 DJ BIG PICTURE: Wider Econ Risks In California s Power Woes
## 115 DJ BIG PICTURE: Wider Econ Risks In California s Power Woes
## 116 DJ BIG PICTURE: Wider Econ Risks In California s Power Woes
## 117 Explanation of CAISO Energy vs. "Schedule C"
## 118 Explanation of CAISO Energy vs. "Schedule C"
## 119 Explanation of CAISO Energy vs. "Schedule C"
## 120 Explanation of CAISO Energy vs. "Schedule C"
## 121 Explanation of CAISO Energy vs. "Schedule C"
## 122 Explanation of CAISO Energy vs. "Schedule C"
## 123 Explanation of CAISO Energy vs. "Schedule C"
## 124 Explanation of CAISO Energy vs. "Schedule C"
## 125 Explanation of CAISO Energy vs. "Schedule C"
## 126 Explanation of CAISO Energy vs. "Schedule C"
## 127 Explanation of CAISO Energy vs. "Schedule C"
## 128 Explanation of CAISO Energy vs. "Schedule C"
## 129 Explanation of CAISO Energy vs. "Schedule C"
## 130 Explanation of CAISO Energy vs. "Schedule C"
## 131 Explanation of CAISO Energy vs. "Schedule C"
## 132 Enron Air Consultants
## 133 Enron Air Consultants
## 134 Enron Air Consultants
## 135 Enron s transmission/power exchange model for discussion
## 136 Request for Bids - Contract for Generation Under Gas Curtailment Conditions
## 137 RE: Path 26 OTC increase -- IMPORTANT
## 138 New Version of Netscape
## 139 New Version of Netscape
## 140 New Version of Netscape
## 141
## 142
## 143
## 144 Development Center Course Offering
## 145 CAISO Notice: Ten Minute Markets to Start Sept 1, 2000
## 146 Agenda for August 31 Distributed Generation Meeting
## 147 CAISO Notification: "Non-Firm" Real Time Energy Market Bids to b e Rejected - Market Message
## 148 CAISO Notification: "Non-Firm" Real Time Energy Market Bids to b e Rejected - Market Message
## 149 CAISO Notification: "Non-Firm" Real Time Energy Market Bids to b e Rejected - Market Message
## 150 CAISO Notification: "Non-Firm" Real Time Energy Market Bids to b e Rejected - Market Message
## 151 CAISO Notification: "Non-Firm" Real Time Energy Market Bids to b e Rejected - Market Message
## 152 CAISO Notification: "Non-Firm" Real Time Energy Market Bids to b e Rejected - Market Message
## 153 CAISO Notification: "Non-Firm" Real Time Energy Market Bids to b e Rejected - Market Message
## 154 CAISO Notification: "Non-Firm" Real Time Energy Market Bids to b e Rejected - Market Message
## 155 CAISO Notification: "Non-Firm" Real Time Energy Market Bids to b e Rejected - Market Message
## 156 CAISO Notification: "Non-Firm" Real Time Energy Market Bids to b e Rejected - Market Message
## 157 CAISO Notification: "Non-Firm" Real Time Energy Market Bids to b e Rejected - Market Message
## 158 Let Me Know Your Need for Xerox Copier Training
## 159 CAISO Notification- TSWG Conference Call 8/23
## 160 CAISO Notification- TSWG Conference Call 8/23
## 161 DJ Clinton To Direct Govt To Help Calif On Electricity Woes
## 162 DJ Clinton To Direct Govt To Help Calif On Electricity Woes
## 163 DJ Clinton To Direct Govt To Help Calif On Electricity Woes
## 164 DJ Clinton To Direct Govt To Help Calif On Electricity Woes
## 165 DJ Clinton To Direct Govt To Help Calif On Electricity Woes
## 166 DJ Clinton To Direct Govt To Help Calif On Electricity Woes
## 167 CAISO Communication: Retroactive 1999 UFE Market Correction Noti fication - 11/16/99 through 11/30/99 Adjustments - June 20, 2000 PSS
## 168 CAISO Communication: Retroactive 1999 UFE Market Correction Noti fication - 11/16/99 through 11/30/99 Adjustments - June 20, 2000 PSS
## 169 CAISO Communication: Retroactive 1999 UFE Market Correction Noti fication - 11/16/99 through 11/30/99 Adjustments - June 20, 2000 PSS
## 170 CAISO Communication: Retroactive 1999 UFE Market Correction Noti fication - 11/16/99 through 11/30/99 Adjustments - June 20, 2000 PSS
## 171 CAISO Communication: Retroactive 1999 UFE Market Correction Noti fication - 11/16/99 through 11/30/99 Adjustments - June 20, 2000 PSS
## 172 CAISO Communication: Retroactive 1999 UFE Market Correction Noti fication - 11/16/99 through 11/30/99 Adjustments - June 20, 2000 PSS
## 173 CAISO Communication: Retroactive 1999 UFE Market Correction Noti fication - 11/16/99 through 11/30/99 Adjustments - June 20, 2000 PSS
## 174 CAISO Communication: Retroactive 1999 UFE Market Correction Noti fication - 11/16/99 through 11/30/99 Adjustments - June 20, 2000 PSS
## 175 CAISO Communication: Retroactive 1999 UFE Market Correction Noti fication - 11/16/99 through 11/30/99 Adjustments - June 20, 2000 PSS
## 176 CAISO Communication: Retroactive 1999 UFE Market Correction Noti fication - 11/16/99 through 11/30/99 Adjustments - June 20, 2000 PSS
## 177 CAISO Communication: Retroactive 1999 UFE Market Correction Noti fication - 11/16/99 through 11/30/99 Adjustments - June 20, 2000 PSS
## 178 CAISO Communication: Retroactive 1999 UFE Market Correction Noti fication - 11/16/99 through 11/30/99 Adjustments - June 20, 2000 PSS
## 179 CAISO Communication: Retroactive 1999 UFE Market Correction Noti fication - 11/16/99 through 11/30/99 Adjustments - June 20, 2000 PSS
## 180 CAISO Communication: Retroactive 1999 UFE Market Correction Noti fication - 11/16/99 through 11/30/99 Adjustments - June 20, 2000 PSS
## 181 CAISO Communication: Retroactive 1999 UFE Market Correction Noti fication - 11/16/99 through 11/30/99 Adjustments - June 20, 2000 PSS
## 182 CAISO Communication: Retroactive 1999 UFE Market Correction Noti fication - 11/16/99 through 11/30/99 Adjustments - June 20, 2000 PSS
## 183 CAISO Communication: Retroactive 1999 UFE Market Correction Noti fication - 11/16/99 through 11/30/99 Adjustments - June 20, 2000 PSS
## 184 CAISO Communication: Retroactive 1999 UFE Market Correction Noti fication - 11/16/99 through 11/30/99 Adjustments - June 20, 2000 PSS
## 185 CAISO Communication: Retroactive 1999 UFE Market Correction Noti fication - 11/16/99 through 11/30/99 Adjustments - June 20, 2000 PSS
## 186 CAISO Communication: Retroactive 1999 UFE Market Correction Noti fication - 11/16/99 through 11/30/99 Adjustments - June 20, 2000 PSS
## 187 CAISO Communication: Retroactive 1999 UFE Market Correction Noti fication - 11/16/99 through 11/30/99 Adjustments - June 20, 2000 PSS
## 188 CAISO Communication: Retroactive 1999 UFE Market Correction Noti fication - 11/16/99 through 11/30/99 Adjustments - June 20, 2000 PSS
## 189 CAISO Communication: Retroactive 1999 UFE Market Correction Noti fication - 11/16/99 through 11/30/99 Adjustments - June 20, 2000 PSS
## 190 CAISO Communication: Retroactive 1999 UFE Market Correction Noti fication - 11/16/99 through 11/30/99 Adjustments - June 20, 2000 PSS
## 191 CAISO Communication: Retroactive 1999 UFE Market Correction Noti fication - 11/16/99 through 11/30/99 Adjustments - June 20, 2000 PSS
## 192 SI Outage
## 193 CAISO Communication: Market Notice of Pending UFE Adjustment - T rade Dates April 27 - June 27, 2000 - Pasadena and SCE UDC Territories
## 194 CAISO Communication: Market Notice of Pending UFE Adjustment - T rade Dates April 27 - June 27, 2000 - Pasadena and SCE UDC Territories
## 195 CAISO Communication: Market Notice of Pending UFE Adjustment - T rade Dates April 27 - June 27, 2000 - Pasadena and SCE UDC Territories
## 196 CAISO Communication: Market Notice of Pending UFE Adjustment - T rade Dates April 27 - June 27, 2000 - Pasadena and SCE UDC Territories
## 197 CAISO Communication: Market Notice of Pending UFE Adjustment - T rade Dates April 27 - June 27, 2000 - Pasadena and SCE UDC Territories
## 198 CAISO Communication: Market Notice of Pending UFE Adjustment - T rade Dates April 27 - June 27, 2000 - Pasadena and SCE UDC Territories
## 199 CAISO Communication: Market Notice of Pending UFE Adjustment - T rade Dates April 27 - June 27, 2000 - Pasadena and SCE UDC Territories
## 200 CAISO Communication: Market Notice of Pending UFE Adjustment - T rade Dates April 27 - June 27, 2000 - Pasadena and SCE UDC Territories
## 201 CAISO Communication: Market Notice of Pending UFE Adjustment - T rade Dates April 27 - June 27, 2000 - Pasadena and SCE UDC Territories
## 202 CAISO Communication: Market Notice of Pending UFE Adjustment - T rade Dates April 27 - June 27, 2000 - Pasadena and SCE UDC Territories
## 203 CAISO Communication: Market Notice of Pending UFE Adjustment - T rade Dates April 27 - June 27, 2000 - Pasadena and SCE UDC Territories
## 204 CAISO Communication: Market Notice of Pending UFE Adjustment - T rade Dates April 27 - June 27, 2000 - Pasadena and SCE UDC Territories
## 205 CAISO Communication: Market Notice of Pending UFE Adjustment - T rade Dates April 27 - June 27, 2000 - Pasadena and SCE UDC Territories
## 206 CAISO Communication: Market Notice of Pending UFE Adjustment - T rade Dates April 27 - June 27, 2000 - Pasadena and SCE UDC Territories
## 207 CAISO Communication: Market Notice of Pending UFE Adjustment - T rade Dates April 27 - June 27, 2000 - Pasadena and SCE UDC Territories
## 208 CAISO Communication: Market Notice of Pending UFE Adjustment - T rade Dates April 27 - June 27, 2000 - Pasadena and SCE UDC Territories
## 209 CAISO Communication: Market Notice of Pending UFE Adjustment - T rade Dates April 27 - June 27, 2000 - Pasadena and SCE UDC Territories
## 210 CAISO Communication: Market Notice of Pending UFE Adjustment - T rade Dates April 27 - June 27, 2000 - Pasadena and SCE UDC Territories
## 211 CAISO Communication: Market Notice of Pending UFE Adjustment - T rade Dates April 27 - June 27, 2000 - Pasadena and SCE UDC Territories
## 212 CAISO Communication: Market Notice of Pending UFE Adjustment - T rade Dates April 27 - June 27, 2000 - Pasadena and SCE UDC Territories
## 213 CAISO Communication: Market Notice of Pending UFE Adjustment - T rade Dates April 27 - June 27, 2000 - Pasadena and SCE UDC Territories
## 214 CAISO Communication: Market Notice of Pending UFE Adjustment - T rade Dates April 27 - June 27, 2000 - Pasadena and SCE UDC Territories
## 215 CAISO Communication: Market Notice of Pending UFE Adjustment - T rade Dates April 27 - June 27, 2000 - Pasadena and SCE UDC Territories
## 216 CAISO Communication: Market Notice of Pending UFE Adjustment - T rade Dates April 27 - June 27, 2000 - Pasadena and SCE UDC Territories
## 217 CAISO Communication: Market Notice of Pending UFE Adjustment - T rade Dates April 27 - June 27, 2000 - Pasadena and SCE UDC Territories
## 218 CAISO Communication: Market Notice of Pending UFE Adjustment - T rade Dates April 27 - June 27, 2000 - Pasadena and SCE UDC Territories
## 219 CAISO Communication: Market Notice of Pending UFE Adjustment - T rade Dates April 27 - June 27, 2000 - Pasadena and SCE UDC Territories
## 220 DJ Calif Assembly Delays SDG&E Rate Roll-Back Vote To Thu
## 221 DJ Calif Assembly Delays SDG&E Rate Roll-Back Vote To Thu
## 222 DJ Calif Assembly Delays SDG&E Rate Roll-Back Vote To Thu
## 223 DJ Calif Assembly Delays SDG&E Rate Roll-Back Vote To Thu
## 224 DJ Calif Assembly Delays SDG&E Rate Roll-Back Vote To Thu
## 225 DJ Calif Assembly Delays SDG&E Rate Roll-Back Vote To Thu
## 226 CAISO NOTICE: CMR Meeting CANCELLATION Information...
## 227 FW: Calif Gov Hopes To Get New Rate-Freeze Bill Unveiled Thursday
## 228 FW: Calif Gov Hopes To Get New Rate-Freeze Bill Unveiled Thursday
## 229 FW: Calif Gov Hopes To Get New Rate-Freeze Bill Unveiled Thursday
## 230 FW: Calif Gov Hopes To Get New Rate-Freeze Bill Unveiled Thursday
## 231 FW: Calif Gov Hopes To Get New Rate-Freeze Bill Unveiled Thursday
## 232 FW: Calif Gov Hopes To Get New Rate-Freeze Bill Unveiled Thursday
## 233 FW: Calif Gov Hopes To Get New Rate-Freeze Bill Unveiled Thursday
## 234 Bloomberg - Good News!
## 235 Bloomberg - Good News!
## 236 Bloomberg - Good News!
## 237 DJ US Northwest Pwr Forwards Higher On Water; SW 3Q Up
## 238 DJ US Northwest Pwr Forwards Higher On Water; SW 3Q Up
## 239 DJ US Northwest Pwr Forwards Higher On Water; SW 3Q Up
## 240 DJ US Northwest Pwr Forwards Higher On Water; SW 3Q Up
## 241 DJ US Northwest Pwr Forwards Higher On Water; SW 3Q Up
## 242 DJ US Northwest Pwr Forwards Higher On Water; SW 3Q Up
## 243 DJ US Northwest Pwr Forwards Higher On Water; SW 3Q Up
## 244 CAISO Notification: Operations Procedures E-514, T-103 and T-116 - Posting for Affected Party Review
## 245 CAISO Notification: Operations Procedures E-514, T-103 and T-116 - Posting for Affected Party Review
## 246 CAISO Notification: Operations Procedures E-514, T-103 and T-116 - Posting for Affected Party Review
## 247 CAISO Notification: Operations Procedures E-514, T-103 and T-116 - Posting for Affected Party Review
## 248 CAISO Notification: Operations Procedures E-514, T-103 and T-116 - Posting for Affected Party Review
## 249 CAISO NOTIFICATION - TSWG Distribution List
## 250 CAISO NOTIFICATION - TSWG Distribution List
## 251 New Generation
## 252 New Generation
## 253 New Generation
## 254 New Generation
## 255 New Generation
## 256 New Generation
## 257 New Generation
## 258 New Generation
## 259 New Generation
## 260 New Generation
## 261 New Generation
## 262 New Generation
## 263 New Generation
## 264 New Generation
## 265 EnronOnline Phase 2
## 266 EnronOnline Phase 2
## 267 EnronOnline Phase 2
## 268 Please Clean Up Mail
## 269 CAISO Notice Of Initiation of Proceeding and Refund Effective Dat e
## 270 Total Transfer Capabilities
## 271 Total Transfer Capabilities
## 272 Total Transfer Capabilities
## 273 Total Transfer Capabilities
## 274 Total Transfer Capabilities
## 275 Total Transfer Capabilities
## 276 Total Transfer Capabilities
## 277 Total Transfer Capabilities
## 278 Fantastic News!!
## 279 It s More Than Just a Name!!!
## 280 CAISO Notice - CMR Recommrendation for Board Approval
## 281 CAISO Notice - CMR Recommrendation for Board Approval
## 282 CAISO Notice - CMR Recommrendation for Board Approval
## 283 CAISO Notice - CMR Recommrendation for Board Approval
## 284 CAISO Notice - CMR Recommrendation for Board Approval
## 285 CAISO Notice - CMR Recommrendation for Board Approval
## 286 CAISO Notice - CMR Recommrendation for Board Approval
## 287 CAISO Notice - CMR Recommrendation for Board Approval
## 288 CAISO Notice - CMR Recommrendation for Board Approval
## 289 CAISO Notice - CMR Recommrendation for Board Approval
## 290 CAISO Notice - CMR Recommrendation for Board Approval
## 291 CAISO Notice - CMR Recommrendation for Board Approval
## 292 CAISO Notice - CMR Recommrendation for Board Approval
## 293 CAISO Notice - CMR Recommrendation for Board Approval
## 294 CAISO Notice - CMR Recommrendation for Board Approval
## 295 CAISO Notice - CMR Recommrendation for Board Approval
## 296 CAISO Notice - CMR Recommrendation for Board Approval
## 297 CAISO Notice - CMR Recommrendation for Board Approval
## 298 CAISO Notice - CMR Recommrendation for Board Approval
## 299 CAISO Notice - CMR Recommrendation for Board Approval
## 300 CAISO Notice - CMR Recommrendation for Board Approval
## 301 CAISO Notice - CMR Recommrendation for Board Approval
## 302 CAISO Notice - CMR Recommrendation for Board Approval
## 303 CAISO Notice - CMR Recommrendation for Board Approval
## 304 CAISO Notice - CMR Recommrendation for Board Approval
## 305 CAISO Notice - CMR Recommrendation for Board Approval
## 306 CAISO Notice - CMR Recommrendation for Board Approval
## 307 CAISO Notice - CMR Recommrendation for Board Approval
## 308 CAISO Notice - CMR Recommrendation for Board Approval
## 309 CAISO Notice - CMR Recommrendation for Board Approval
## 310 CAISO Notice - CMR Recommrendation for Board Approval
## 311 CAISO Notice - CMR Recommrendation for Board Approval
## 312 CAISO Notice - CMR Recommrendation for Board Approval
## 313 CAISO Notice - CMR Recommrendation for Board Approval
## 314 CAISO Notice - CMR Recommrendation for Board Approval
## 315 CAISO Notice - CMR Recommrendation for Board Approval
## 316 CAISO Notice - CMR Recommrendation for Board Approval
## 317 CAISO Notice - CMR Recommrendation for Board Approval
## 318 CAISO Notice - CMR Recommrendation for Board Approval
## 319 CAISO Notice - CMR Recommrendation for Board Approval
## 320 CAISO Notice - CMR Recommrendation for Board Approval
## 321 CAISO Notice - CMR Recommrendation for Board Approval
## 322 CAISO Notice - CMR Recommrendation for Board Approval
## 323 CAISO Notice - CMR Recommrendation for Board Approval
## 324 CAISO Notice - CMR Recommrendation for Board Approval
## 325 CAISO Notice - CMR Recommrendation for Board Approval
## 326 CAISO Notice - CMR Recommrendation for Board Approval
## 327 CAISO Notice - CMR Recommrendation for Board Approval
## 328 CAISO Notice - CMR Recommrendation for Board Approval
## 329 CAISO Notice - CMR Recommrendation for Board Approval
## 330 CAISO Notice - CMR Recommrendation for Board Approval
## 331 CAISO Notice - CMR Recommrendation for Board Approval
## 332 CAISO Notice - CMR Recommrendation for Board Approval
## 333 CAISO Notice - CMR Recommrendation for Board Approval
## 334 CAISO Notice - CMR Recommrendation for Board Approval
## 335 CAISO Notice - CMR Recommrendation for Board Approval
## 336 CAISO Notice - CMR Recommrendation for Board Approval
## 337 CAISO Notice - CMR Recommrendation for Board Approval
## 338 CAISO Notice - CMR Recommrendation for Board Approval
## 339 CAISO Notice - CMR Recommrendation for Board Approval
## 340 CAISO Notice - CMR Recommrendation for Board Approval
## 341 CANCEL Warning Notice
## 342 VAR Reports
## 343 VAR Reports
## 344 VAR Reports
## 345 VAR Reports
## 346 VAR Reports
## 347 VAR Reports
## 348 VAR Reports
## 349 VAR Reports
## 350 VAR Reports
## 351 VAR Reports
## 352 VAR Reports
## 353 VAR Reports
## 354 VAR Reports
## 355 Defining Big in Megawatt Ownership/B2B Exchanges Seek to Avert An titrust Tag
## 356 Issue Warning Notice
## 357 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 358 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 359 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 360 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 361 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 362 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 363 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 364 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 365 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 366 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 367 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 368 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 369 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 370 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 371 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 372 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 373 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 374 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 375 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 376 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 377 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 378 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 379 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 380 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 381 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 382 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 383 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 384 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 385 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 386 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 387 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 388 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 389 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 390 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 391 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 392 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 393 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 394 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 395 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 396 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 397 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 398 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 399 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 400 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 401 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 402 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 403 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 404 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 405 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 406 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 407 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 408 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 409 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 410 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 411 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 412 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 413 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 414 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 415 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 416 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 417 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 418 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 419 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 420 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 421 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 422 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 423 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 424 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 425 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 426 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 427 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 428 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 429 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 430 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 431 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 432 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 433 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 434 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 435 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 436 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 437 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 438 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 439 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 440 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 441 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 442 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 443 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 444 Cal-ISO Participating Load Stakeholder Meeting (Sept. 20th) and V endor Fair (Sept. 21st)
## 445 Board Announcement
## 446 Breaking News
## 447 ACTION REQUIRED: Your Attendance at EnronOnline Training/Presentation
## 448 ACTION REQUIRED: Your Attendance at EnronOnline Training/Presentation
## 449 ACTION REQUIRED: Your Attendance at EnronOnline Training/Presentation
## 450 ACTION REQUIRED: Your Attendance at EnronOnline Training/Presentation
## 451 ACTION REQUIRED: Your Attendance at EnronOnline Training/Presentation
## 452 ACTION REQUIRED: Your Attendance at EnronOnline Training/Presentation
## 453 ACTION REQUIRED: Your Attendance at EnronOnline Training/Presentation
## 454 ACTION REQUIRED: Your Attendance at EnronOnline Training/Presentation
## 455 ACTION REQUIRED: Your Attendance at EnronOnline Training/Presentation
## 456 ACTION REQUIRED: Your Attendance at EnronOnline Training/Presentation
## 457 ACTION REQUIRED: Your Attendance at EnronOnline Training/Presentation
## 458 Ameren Services Company
## 459 Ameren Services Company
## 460 Ameren Services Company
## 461 Ameren Services Company
## 462 Ameren Services Company
## 463 Ameren Services Company
## 464 Ameren Services Company
## 465 Ameren Services Company
## 466 Ameren Services Company
## 467 Ameren Services Company
## 468 Ameren Services Company
## 469 Ameren Services Company
## 470 Ameren Services Company
## 471 Ameren Services Company
## 472 Ameren Services Company
## 473 Ameren Services Company
## 474 Ameren Services Company
## 475 Ameren Services Company
## 476 Ameren Services Company
## 477 Ameren Services Company
## 478 Ameren Services Company
## 479 Ameren Services Company
## 480 Ameren Services Company
## 481 Ameren Services Company
## 482 Ameren Services Company
## 483 Ameren Services Company
## 484 Ameren Services Company
## 485 Ameren Services Company
## 486 Ameren Services Company
## 487 Ameren Services Company
## 488 Ameren Services Company
## 489 Ameren Services Company
## 490 Ameren Services Company
## 491 Ameren Services Company
## 492 Ameren Services Company
## 493 Ameren Services Company
## 494 Ameren Services Company
## 495 Ameren Services Company
## 496 Ameren Services Company
## 497 Ameren Services Company
## 498 Ameren Services Company
## 499 Ameren Services Company
## 500 Ameren Services Company
## 501 Ameren Services Company
## 502 Ameren Services Company
## 503 Ameren Services Company
## 504 Ameren Services Company
## 505 Ameren Services Company
## 506 Ameren Services Company
## 507 Ameren Services Company
## 508 Ameren Services Company
## 509 Ameren Services Company
## 510 Ameren Services Company
## 511 Ameren Services Company
## 512 Ameren Services Company
## 513 Ameren Services Company
## 514 Ameren Services Company
## 515 Ameren Services Company
## 516 Ameren Services Company
## 517 Ameren Services Company
## 518 Ameren Services Company
## 519 Ameren Services Company
## 520 Ameren Services Company
## 521 Ameren Services Company
## 522 Ameren Services Company
## 523 Ameren Services Company
## 524 Ameren Services Company
## 525 Ameren Services Company
## 526 Ameren Services Company
## 527 Ameren Services Company
## 528 Ameren Services Company
## 529 Stage 1 Emergency
## 530 CASIO NOTICE: Market Message
## 531 Total Transfer Capabilities
## 532 Total Transfer Capabilities
## 533 Total Transfer Capabilities
## 534 Total Transfer Capabilities
## 535 Total Transfer Capabilities
## 536 Total Transfer Capabilities
## 537 Total Transfer Capabilities
## 538 Total Transfer Capabilities
## 539 Enron In Action 8.28.00
## 540 eThink About It: August 28, 2000
## 541 DEAL CORRECTION REPORT 8-25
## 542 DEAL CORRECTION REPORT 8-25
## 543 DEAL CORRECTION REPORT 8-25
## 544 DEAL CORRECTION REPORT 8-25
## 545 Issue Warning Notice
## 546 Stage 1 Emergency
## 547 Stage 1 CANCELLATION
## 548 CANCEL Warning Notice
## 549 ISO To Participate in Super Peak Market
## 550 ISO To Participate in Super Peak Market
## 551 ISO To Participate in Super Peak Market
## 552 Montana Power Divests Oil & Gas/Making a Case for CAES
## 553 EES Organizational Announcement
## 554 Welcome to Lisa Mattingly
## 555 Out of Office Procedure
## 556 Out of Office Procedure
## 557 Out of Office Procedure
## 558 Out of Office Procedure
## 559 Tom Krueger
## 560 Fw: Jokes
## 561 COMPUTER VIRUS
## 562 Virus Alert
## 563 Distributed Generation Meeting, August 31, 2000
## 564 CAISO Notification - PMI 10-min Expost data re-published for 7/1 9/00 hours 4 through 24
## 565 CAISO Notification - PMI 10-min Expost data re-published for 7/1 9/00 hours 4 through 24
## 566 Out of Office
## 567 Out of Office
## 568 Out of Office
## 569 Out of Office
## 570 Out of Office
## 571 Out of Office
## 572 Out of Office
## 573 Out of Office
## 574 Out of Office
## 575 Total Transfer Capabilities
## 576 Total Transfer Capabilities
## 577 Total Transfer Capabilities
## 578 Total Transfer Capabilities
## 579 Total Transfer Capabilities
## 580 Total Transfer Capabilities
## 581 Total Transfer Capabilities
## 582 Total Transfer Capabilities
## 583 Total Transfer Capabilities
## 584 Total Transfer Capabilities
## 585 SDG&E Emergency Motion for Bilateral Authority-Draft Decision
## 586 SDG&E Emergency Motion for Bilateral Authority-Draft Decision
## 587 SDG&E Emergency Motion for Bilateral Authority-Draft Decision
## 588 SDG&E Emergency Motion for Bilateral Authority-Draft Decision
## 589 SDG&E Emergency Motion for Bilateral Authority-Draft Decision
## 590 SDG&E Emergency Motion for Bilateral Authority-Draft Decision
## 591 SDG&E Emergency Motion for Bilateral Authority-Draft Decision
## 592 SDG&E Emergency Motion for Bilateral Authority-Draft Decision
## 593 SDG&E Emergency Motion for Bilateral Authority-Draft Decision
## 594 SDG&E Emergency Motion for Bilateral Authority-Draft Decision
## 595 SDG&E Emergency Motion for Bilateral Authority-Draft Decision
## 596 SDG&E Emergency Motion for Bilateral Authority-Draft Decision
## 597 SDG&E Emergency Motion for Bilateral Authority-Draft Decision
## 598 CAISO NOTIFICATION - "ISO Polled" 10-Min Meter Data Implementatio n
## 599 CAISO NOTIFICATION - "ISO Polled" 10-Min Meter Data Implementatio n
## 600 CAISO NOTIFICATION - "ISO Polled" 10-Min Meter Data Implementatio n
## 601 CAISO NOTIFICATION - "ISO Polled" 10-Min Meter Data Implementatio n
## 602 CAISO Notice - Ten Minute Settlements Implementation September 1
## 603 CAISO Notice - Ten Minute Settlements Implementation September 1
## 604 Power Plant Development Update/New Economic Life for Shut-in Well s
## 605 E-Mail
## 606 CAISO NOTICE: Attention ALL ISO Users
## 607 CAISO NOTICE: Date Change for September Market Issues Forum
## 608 CAISO Notification: Operations Procedure E-508 - Posting for A ffected Party Review
## 609 CAISO Notification: Operations Procedure E-508 - Posting for A ffected Party Review
## 610 CAISO Notification: Operations Procedure E-508 - Posting for A ffected Party Review
## 611 CAISO Notification: Operations Procedure E-508 - Posting for A ffected Party Review
## 612 CAISO Notification: Operations Procedure E-508 - Posting for A ffected Party Review
## 613 Fwd: Vacation
## 614 Fwd: Vacation
## 615 Fwd: Vacation
## 616 Fwd: Vacation
## 617 Fwd: Vacation
## 618 Fwd: Vacation
## 619 Fwd: Vacation
## 620 Fwd: Vacation
## 621 Fwd: Vacation
## 622 Fwd: Vacation
## 623 Fwd: Vacation
## 624 Fwd: Vacation
## 625 Fwd: Vacation
## 626 Fwd: Vacation
## 627 Fwd: Vacation
## 628 Fwd: Vacation
## 629 Fwd: Vacation
## 630 Fwd: Vacation
## 631 Fwd: Workshop of note
## 632 CAISO Notification - 10-minute settlements implementation Confere nce call
## 633 CAISO Notification - 10-minute settlements implementation Confere nce call
## 634 CAISO Notification - 10-minute settlements implementation Confere nce call
## 635 CAISO Notification - 10-minute settlements implementation Confere nce call
## 636 CAISO Notification - 10-minute settlements implementation Confere nce call
## 637 CAISO Notification - 10-minute settlements implementation Confere nce call
## 638 CAISO Notification - 10-minute settlements implementation Confere nce call
## 639 CAISO Notification - 10-minute settlements implementation Confere nce call
## 640 CAISO Notification - 10-minute settlements implementation Confere nce call
## 641 CAISO Notification - 10-minute settlements implementation Confere nce call
## 642 CAISO Notification - 10-minute settlements implementation Confere nce call
## 643 CAISO Notification - 10-minute settlements implementation Confere nce call
## 644 CAISO Notification - 10-minute settlements implementation Confere nce call
## 645 CAISO Notification - 10-minute settlements implementation Confere nce call
## 646 CAISO Notification - 10-minute settlements implementation Confere nce call
## 647 CAISO Notification - 10-minute settlements implementation Confere nce call
## 648 CAISO Notification - 10-minute settlements implementation Confere nce call
## 649 CAISO Notification - 10-minute settlements implementation Confere nce call
## 650 CAISO Notification - 10-minute settlements implementation Confere nce call
## 651 CAISO Notification - 10-minute settlements implementation Confere nce call
## 652 CAISO Notification - 10-minute settlements implementation Confere nce call
## 653 CAISO Notification - 10-minute settlements implementation Confere nce call
## 654 CAISO Notification - 10-minute settlements implementation Confere nce call
## 655 CAISO Notification - 10-minute settlements implementation Confere nce call
## 656 CAISO Notification - 10-minute settlements implementation Confere nce call
## 657 CAISO Notification - 10-minute settlements implementation Confere nce call
## 658 CAISO Notification - 10-minute settlements implementation Confere nce call
## 659 CAISO Notification - 10-minute settlements implementation Confere nce call
## 660 CAISO Notification - 10-minute settlements implementation Confere nce call
## 661 CAISO Notification - 10-minute settlements implementation Confere nce call
## 662 CAISO Notification - 10-minute settlements implementation Confere nce call
## 663 CAISO Notification - 10-minute settlements implementation Confere nce call
## 664 CAISO Notification - 10-minute settlements implementation Confere nce call
## 665 CAISO Notification - 10-minute settlements implementation Confere nce call
## 666 CAISO Notification - 10-minute settlements implementation Confere nce call
## 667 CAISO Notification - 10-minute settlements implementation Confere nce call
## 668 CAISO Notification - 10-minute settlements implementation Confere nce call
## 669 CAISO Notification - 10-minute settlements implementation Confere nce call
## 670 CAISO Notification - 10-minute settlements implementation Confere nce call
## 671 CAISO Notification - 10-minute settlements implementation Confere nce call
## 672 CAISO Notification - 10-minute settlements implementation Confere nce call
## 673 CAISO Notification - 10-minute settlements implementation Confere nce call
## 674 CAISO Notification - 10-minute settlements implementation Confere nce call
## 675 CAISO Notification - 10-minute settlements implementation Confere nce call
## 676 CAISO Notification - 10-minute settlements implementation Confere nce call
## 677 CAISO Notification - 10-minute settlements implementation Confere nce call
## 678 CAISO Notification - 10-minute settlements implementation Confere nce call
## 679 CAISO Notification - 10-minute settlements implementation Confere nce call
## 680 CAISO Notification - 10-minute settlements implementation Confere nce call
## 681 CAISO Notification - 10-minute settlements implementation Confere nce call
## 682 CAISO Notification - 10-minute settlements implementation Confere nce call
## 683 CAISO Notification - 10-minute settlements implementation Confere nce call
## 684 CAISO Notification - 10-minute settlements implementation Confere nce call
## 685 CAISO Notification - 10-minute settlements implementation Confere nce call
## 686 CAISO Notification - 10-minute settlements implementation Confere nce call
## 687 CAISO Notification - 10-minute settlements implementation Confere nce call
## 688 CAISO Notification - 10-minute settlements implementation Confere nce call
## 689 CAISO Notification - 10-minute settlements implementation Confere nce call
## 690 CAISO Notification - 10-minute settlements implementation Confere nce call
## 691 CAISO Notification - 10-minute settlements implementation Confere nce call
## 692 CAISO Notification - 10-minute settlements implementation Confere nce call
## 693 CAISO Notification - 10-minute settlements implementation Confere nce call
## 694 CAISO Notification - 10-minute settlements implementation Confere nce call
## 695 CAISO Notification - 10-minute settlements implementation Confere nce call
## 696 CAISO Notification - 10-minute settlements implementation Confere nce call
## 697 CAISO Notification - 10-minute settlements implementation Confere nce call
## 698 CAISO Notification - 10-minute settlements implementation Confere nce call
## 699 CAISO Notification - 10-minute settlements implementation Confere nce call
## 700 CAISO Notification - 10-minute settlements implementation Confere nce call
## 701 CAISO Notification - 10-minute settlements implementation Confere nce call
## 702 CAISO Notification - 10-minute settlements implementation Confere nce call
## 703 CAISO Notification - 10-minute settlements implementation Confere nce call
## 704 CAISO Notification - 10-minute settlements implementation Confere nce call
## 705 CAISO Notification - 10-minute settlements implementation Confere nce call
## 706 CAISO Notification - 10-minute settlements implementation Confere nce call
## 707 CAISO Notification - 10-minute settlements implementation Confere nce call
## 708 CAISO Notification - 10-minute settlements implementation Confere nce call
## 709 CAISO Notification - 10-minute settlements implementation Confere nce call
## 710 CAISO Notification - 10-minute settlements implementation Confere nce call
## 711 CAISO Notification - 10-minute settlements implementation Confere nce call
## 712 CAISO Notification - 10-minute settlements implementation Confere nce call
## 713 CAISO Notification - 10-minute settlements implementation Confere nce call
## 714 CAISO Notification - 10-minute settlements implementation Confere nce call
## 715 CAISO Notification - 10-minute settlements implementation Confere nce call
## 716 CAISO Notification - 10-minute settlements implementation Confere nce call
## 717 CAISO Notification - 10-minute settlements implementation Confere nce call
## 718 CAISO Notification - 10-minute settlements implementation Confere nce call
## 719 CAISO Notification - 10-minute settlements implementation Confere nce call
## 720 CAISO Notification - 10-minute settlements implementation Confere nce call
## 721 CAISO Notification - 10-minute settlements implementation Confere nce call
## 722 CAISO Notification - 10-minute settlements implementation Confere nce call
## 723 CAISO Notification - 10-minute settlements implementation Confere nce call
## 724 CAISO Notification - 10-minute settlements implementation Confere nce call
## 725 CAISO Notification - 10-minute settlements implementation Confere nce call
## 726 CAISO Notification - 10-minute settlements implementation Confere nce call
## 727 CAISO Notification - 10-minute settlements implementation Confere nce call
## 728 CAISO Notification - 10-minute settlements implementation Confere nce call
## 729 CAISO Notification - 10-minute settlements implementation Confere nce call
## 730 CAISO Notification - 10-minute settlements implementation Confere nce call
## 731 CAISO Notification - 10-minute settlements implementation Confere nce call
## 732 CAISO Notification - 10-minute settlements implementation Confere nce call
## 733 CAISO Notification - 10-minute settlements implementation Confere nce call
## 734 CAISO Notification - 10-minute settlements implementation Confere nce call
## 735 CAISO Notification - 10-minute settlements implementation Confere nce call
## 736 CAISO Notification - 10-minute settlements implementation Confere nce call
## 737 CAISO Notification - 10-minute settlements implementation Confere nce call
## 738 CAISO Notification - 10-minute settlements implementation Confere nce call
## 739 CAISO Notification - 10-minute settlements implementation Confere nce call
## 740 CAISO Notification - 10-minute settlements implementation Confere nce call
## 741 CAISO Notification - 10-minute settlements implementation Confere nce call
## 742 CAISO Notification - 10-minute settlements implementation Confere nce call
## 743 CAISO Notification - 10-minute settlements implementation Confere nce call
## 744 CAISO Notification - 10-minute settlements implementation Confere nce call
## 745 CAISO Notification - 10-minute settlements implementation Confere nce call
## 746 CAISO Notification - 10-minute settlements implementation Confere nce call
## 747 CAISO Notification - 10-minute settlements implementation Confere nce call
## 748 CAISO Notification - 10-minute settlements implementation Confere nce call
## 749 CAISO Notification - 10-minute settlements implementation Confere nce call
## 750 CAISO Notification - 10-minute settlements implementation Confere nce call
## 751 CAISO Notification - 10-minute settlements implementation Confere nce call
## 752 CAISO Notification - 10-minute settlements implementation Confere nce call
## 753 CAISO Notification - 10-minute settlements implementation Confere nce call
## 754 CAISO Notification - 10-minute settlements implementation Confere nce call
## 755 CAISO Notification - 10-minute settlements implementation Confere nce call
## 756 CAISO Notification - 10-minute settlements implementation Confere nce call
## 757 CAISO Notification - 10-minute settlements implementation Confere nce call
## 758 CAISO Notification - 10-minute settlements implementation Confere nce call
## 759 CAISO Notification - 10-minute settlements implementation Confere nce call
## 760 CAISO Notification - 10-minute settlements implementation Confere nce call
## 761 CAISO Notification - 10-minute settlements implementation Confere nce call
## 762 CAISO Notification - 10-minute settlements implementation Confere nce call
## 763 CAISO Notification - 10-minute settlements implementation Confere nce call
## 764 CAISO Notification - 10-minute settlements implementation Confere nce call
## 765 CAISO Notification - 10-minute settlements implementation Confere nce call
## 766 CAISO Notification - 10-minute settlements implementation Confere nce call
## 767 CAISO Notification - 10-minute settlements implementation Confere nce call
## 768 CAISO Notification - 10-minute settlements implementation Confere nce call
## 769 CAISO Notification - 10-minute settlements implementation Confere nce call
## 770 CAISO Notification - 10-minute settlements implementation Confere nce call
## 771 CAISO Notification - 10-minute settlements implementation Confere nce call
## 772 CAISO Notification - 10-minute settlements implementation Confere nce call
## 773 CAISO Notification - 10-minute settlements implementation Confere nce call
## 774 CAISO Notification - 10-minute settlements implementation Confere nce call
## 775 CAISO Notification - 10-minute settlements implementation Confere nce call
## 776 CAISO Notification - 10-minute settlements implementation Confere nce call
## 777 CAISO Notification - 10-minute settlements implementation Confere nce call
## 778 CAISO Notification - 10-minute settlements implementation Confere nce call
## 779 CAISO Notification - 10-minute settlements implementation Confere nce call
## 780 CAISO Notification - 10-minute settlements implementation Confere nce call
## 781 CAISO Notification - 10-minute settlements implementation Confere nce call
## 782 CAISO Notification - 10-minute settlements implementation Confere nce call
## 783 CAISO Notification - 10-minute settlements implementation Confere nce call
## 784 CAISO Notification - 10-minute settlements implementation Confere nce call
## 785 CAISO Notification - 10-minute settlements implementation Confere nce call
## 786 CAISO Notification - 10-minute settlements implementation Confere nce call
## 787 CAISO NOTICE: Final CMR Recommendation to the Board of Governors
## 788 ISO To Participate in Super Peak Market
## 789 ISO To Participate in Super Peak Market
## 790 CAISO NOTICE: CMR Comments
## 791 OPTIMUM
## 792 OPTIMUM
## 793 OPTIMUM
## 794 OPTIMUM
## 795 D.C. REPORT 8-29
## 796 D.C. REPORT 8-29
## 797 D.C. REPORT 8-29
## 798 D.C. REPORT 8-29
## 799 Total Transfer Capabilities
## 800 Total Transfer Capabilities
## 801 Total Transfer Capabilities
## 802 Total Transfer Capabilities
## 803 Total Transfer Capabilities
## 804 Total Transfer Capabilities
## 805 Total Transfer Capabilities
## 806 Total Transfer Capabilities
## 807 Total Transfer Capabilities
## 808 Total Transfer Capabilities
## 809 Lotus Notes
## 810 CAISO NOTIFICATION - Request for Participation in Inter SC Trade Adjustment Bid Market Simulation
## 811 CAISO NOTIFICATION - Request for Participation in Inter SC Trade Adjustment Bid Market Simulation
## 812 CAISO NOTIFICATION - TSWG MEETING NOTES 8/23/00
## 813 CAISO NOTIFICATION - TSWG MEETING NOTES 8/23/00
## 814 EnronOnline Training Dates Change
## 815 EnronOnline Training Dates Change
## 816 EnronOnline Training Dates Change
## 817 EnronOnline Training Dates Change
## 818 EnronOnline Training Dates Change
## 819 EnronOnline Training Dates Change
## 820 EnronOnline Training Dates Change
## 821 EnronOnline Training Dates Change
## 822 EnronOnline Training Dates Change
## 823 EnronOnline Training Dates Change
## 824 EnronOnline Training Dates Change
## 825 EnronOnline Training Dates Change
## 826 EnronOnline Training Dates Change
## 827 EnronOnline Training Dates Change
## 828 EnronOnline Training Dates Change
## 829 EnronOnline Training Dates Change
## 830 EnronOnline Training Dates Change
## 831 EnronOnline Training Dates Change
## 832 EnronOnline Training Dates Change
## 833 EnronOnline Training Dates Change
## 834 EnronOnline Training Dates Change
## 835 EnronOnline Training Dates Change
## 836 EnronOnline Training Dates Change
## 837 EnronOnline Training Dates Change
## 838 EnronOnline Training Dates Change
## 839 EnronOnline Training Dates Change
## 840 EnronOnline Training Dates Change
## 841 EnronOnline Training Dates Change
## 842 EnronOnline Training Dates Change
## 843 EnronOnline Training Dates Change
## 844 EnronOnline Training Dates Change
## 845 EnronOnline Training Dates Change
## 846 EnronOnline Training Dates Change
## 847 EnronOnline Training Dates Change
## 848 EnronOnline Training Dates Change
## 849 EnronOnline Training Dates Change
## 850 EnronOnline Training Dates Change
## 851 EnronOnline Training Dates Change
## 852 EnronOnline Training Dates Change
## 853 EnronOnline Training Dates Change
## 854 EnronOnline Training Dates Change
## 855 EnronOnline Training Dates Change
## 856 EnronOnline Training Dates Change
## 857 EnronOnline Training Dates Change
## 858 EnronOnline Training Dates Change
## 859 EnronOnline Training Dates Change
## 860 EnronOnline Training Dates Change
## 861 EnronOnline Training Dates Change
## 862 EnronOnline Training Dates Change
## 863 EnronOnline Training Dates Change
## 864 EnronOnline Training Dates Change
## 865 EnronOnline Training Dates Change
## 866 EnronOnline Training Dates Change
## 867 EnronOnline Training Dates Change
## 868 EnronOnline Training Dates Change
## 869 EnronOnline Training Dates Change
## 870 EnronOnline Training Dates Change
## 871 EnronOnline Training Dates Change
## 872 EnronOnline Training Dates Change
## 873 EnronOnline Training Dates Change
## 874 EnronOnline Training Dates Change
## 875 EnronOnline Training Dates Change
## 876 EnronOnline Training Dates Change
## 877 EnronOnline Training Dates Change
## 878 EnronOnline Training Dates Change
## 879 EnronOnline Training Dates Change
## 880 EnronOnline Training Dates Change
## 881 EnronOnline Training Dates Change
## 882 EnronOnline Training Dates Change
## 883 EnronOnline Training Dates Change
## 884 EnronOnline Training Dates Change
## 885 EnronOnline Training Dates Change
## 886 EnronOnline Training Dates Change
## 887 EnronOnline Training Dates Change
## 888 EnronOnline Training Dates Change
## 889 EnronOnline Training Dates Change
## 890 EnronOnline Training Dates Change
## 891 EnronOnline Training Dates Change
## 892 EnronOnline Training Dates Change
## 893 EnronOnline Training Dates Change
## 894 EnronOnline Training Dates Change
## 895 EnronOnline Training Dates Change
## 896 EnronOnline Training Dates Change
## 897 EnronOnline Training Dates Change
## 898 EnronOnline Training Dates Change
## 899 EnronOnline Training Dates Change
## 900 EnronOnline Training Dates Change
## 901 EnronOnline Training Dates Change
## 902 EnronOnline Training Dates Change
## 903 EnronOnline Training Dates Change
## 904 EnronOnline Training Dates Change
## 905 EnronOnline Training Dates Change
## 906 EnronOnline Training Dates Change
## 907 EnronOnline Training Dates Change
## 908 EnronOnline Training Dates Change
## 909 EnronOnline Training Dates Change
## 910 EnronOnline Training Dates Change
## 911 EnronOnline Training Dates Change
## 912 EnronOnline Training Dates Change
## 913 EnronOnline Training Dates Change
## 914 EnronOnline Training Dates Change
## 915 EnronOnline Training Dates Change
## 916 EnronOnline Training Dates Change
## 917 EnronOnline Training Dates Change
## 918 EnronOnline Training Dates Change
## 919 EnronOnline Training Dates Change
## 920 EnronOnline Training Dates Change
## 921 EnronOnline Training Dates Change
## 922 EnronOnline Training Dates Change
## 923 EnronOnline Training Dates Change
## 924 EnronOnline Training Dates Change
## 925 EnronOnline Training Dates Change
## 926 EnronOnline Training Dates Change
## 927 EnronOnline Training Dates Change
## 928 EnronOnline Training Dates Change
## 929 EnronOnline Training Dates Change
## 930 EnronOnline Training Dates Change
## 931 EnronOnline Training Dates Change
## 932 EnronOnline Training Dates Change
## 933 EnronOnline Training Dates Change
## 934 EnronOnline Training Dates Change
## 935 EnronOnline Training Dates Change
## 936 EnronOnline Training Dates Change
## 937 EnronOnline Training Dates Change
## 938 EnronOnline Training Dates Change
## 939 EnronOnline Training Dates Change
## 940 EnronOnline Training Dates Change
## 941 EnronOnline Training Dates Change
## 942 EnronOnline Training Dates Change
## 943 EnronOnline Training Dates Change
## 944 EnronOnline Training Dates Change
## 945 EnronOnline Training Dates Change
## 946 EnronOnline Training Dates Change
## 947 EnronOnline Training Dates Change
## 948 EnronOnline Training Dates Change
## 949 EnronOnline Training Dates Change
## 950 EnronOnline Training Dates Change
## 951 EnronOnline Training Dates Change
## 952 EnronOnline Training Dates Change
## 953 EnronOnline Training Dates Change
## 954 EnronOnline Training Dates Change
## 955 EnronOnline Training Dates Change
## 956 EnronOnline Training Dates Change
## 957 EnronOnline Training Dates Change
## 958 EnronOnline Training Dates Change
## 959 EnronOnline Training Dates Change
## 960 EnronOnline Training Dates Change
## 961 EnronOnline Training Dates Change
## 962 EnronOnline Training Dates Change
## 963 EnronOnline Training Dates Change
## 964 EnronOnline Training Dates Change
## 965 EnronOnline Training Dates Change
## 966 EnronOnline Training Dates Change
## 967 EnronOnline Training Dates Change
## 968 EnronOnline Training Dates Change
## 969 EnronOnline Training Dates Change
## 970 EnronOnline Training Dates Change
## 971 EnronOnline Training Dates Change
## 972 EnronOnline Training Dates Change
## 973 EnronOnline Training Dates Change
## 974 EnronOnline Training Dates Change
## 975 EnronOnline Training Dates Change
## 976 EnronOnline Training Dates Change
## 977 EnronOnline Training Dates Change
## 978 EnronOnline Training Dates Change
## 979 EnronOnline Training Dates Change
## 980 eSpeak s Disappearing Act
## 981 CASIO NOTIFICATION - TSWG CONFERENCE CALL 8/30/00
## 982 CASIO NOTIFICATION - TSWG CONFERENCE CALL 8/30/00
## 983 CASIO NOTIFICATION - TSWG CONFERENCE CALL 8/30/00
## 984 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 985 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 986 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 987 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 988 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 989 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 990 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 991 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 992 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 993 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 994 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 995 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 996 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 997 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 998 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 999 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1000 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1001 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1002 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1003 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1004 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1005 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1006 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1007 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1008 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1009 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1010 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1011 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1012 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1013 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1014 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1015 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1016 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1017 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1018 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1019 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1020 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1021 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1022 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1023 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1024 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1025 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1026 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1027 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1028 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1029 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1030 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1031 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1032 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1033 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1034 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1035 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1036 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1037 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1038 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1039 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1040 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1041 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1042 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1043 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1044 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1045 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1046 CAISO Notice - Comprehensive Market Redesign - Template for Comme nts on Congestion Management Reform
## 1047 The New Power Company
## 1048 =?ANSI_X3.4-1968?Q?Enron=01,s_Entry_Into_Global_Metals_Market?=
## 1049 GOOD ADVICE
## 1050 GOOD ADVICE
## 1051 GOOD ADVICE
## 1052 GOOD ADVICE
## 1053 GOOD ADVICE
## 1054 GOOD ADVICE
## 1055 GOOD ADVICE
## 1056 GOOD ADVICE
## 1057 GOOD ADVICE
## 1058 GOOD ADVICE
## 1059 GOOD ADVICE
## 1060 GOOD ADVICE
## 1061 GOOD ADVICE
## 1062 GOOD ADVICE
## 1063 GOOD ADVICE
## 1064 GOOD ADVICE
## 1065 GOOD ADVICE
## 1066 GOOD ADVICE
## 1067 GOOD ADVICE
## 1068 GOOD ADVICE
## 1069 GOOD ADVICE
## 1070 GOOD ADVICE
## 1071 GOOD ADVICE
## 1072 GOOD ADVICE
## 1073 GOOD ADVICE
## 1074 GOOD ADVICE
## 1075 GOOD ADVICE
## 1076 GOOD ADVICE
## 1077 GOOD ADVICE
## 1078 GOOD ADVICE
## 1079 GOOD ADVICE
## 1080 GOOD ADVICE
## 1081 GOOD ADVICE
## 1082 GOOD ADVICE
## 1083 GOOD ADVICE
## 1084 GOOD ADVICE
## 1085 GOOD ADVICE
## 1086 GOOD ADVICE
## 1087 GOOD ADVICE
## 1088 GOOD ADVICE
## 1089 GOOD ADVICE
## 1090 GOOD ADVICE
## 1091 GOOD ADVICE
## 1092 GOOD ADVICE
## 1093 GOOD ADVICE
## 1094 GOOD ADVICE
## 1095 GOOD ADVICE
## 1096 GOOD ADVICE
## 1097 GOOD ADVICE
## 1098 GOOD ADVICE
## 1099 GOOD ADVICE
## 1100 ENA Meeting and Event Expenditure Approval Process
## 1101 Organisational Announcement - Introducing Enron Global Markets
## 1102 Talk to us
## 1103 2000 Chairman s Award
## 1104 Code of Ethics
## 1105 Fitness Club Reimbursement Policy
## 1106 DJ Power Price Cap In Calif Puts Brinksmanship On Grid
## 1107 DJ Power Price Cap In Calif Puts Brinksmanship On Grid
## 1108 DJ Power Price Cap In Calif Puts Brinksmanship On Grid
## 1109 DJ Power Price Cap In Calif Puts Brinksmanship On Grid
## 1110 DJ Power Price Cap In Calif Puts Brinksmanship On Grid
## 1111 DJ Power Price Cap In Calif Puts Brinksmanship On Grid
## 1112 DJ Power Price Cap In Calif Puts Brinksmanship On Grid
## 1113 DJ Power Price Cap In Calif Puts Brinksmanship On Grid
## 1114 DJ Power Price Cap In Calif Puts Brinksmanship On Grid
## 1115 DJ Rising Electricity Prices Could Be Wild Card In July CPI
## 1116 DJ Rising Electricity Prices Could Be Wild Card In July CPI
## 1117 DJ Rising Electricity Prices Could Be Wild Card In July CPI
## 1118 DJ Rising Electricity Prices Could Be Wild Card In July CPI
## 1119 DJ Rising Electricity Prices Could Be Wild Card In July CPI
## 1120 DJ Rising Electricity Prices Could Be Wild Card In July CPI
## 1121 DJ Rising Electricity Prices Could Be Wild Card In July CPI
## 1122 DJ Rising Electricity Prices Could Be Wild Card In July CPI
## 1123 DJ Rising Electricity Prices Could Be Wild Card In July CPI
## 1124 DJ POWER CUTS: Blackouts Lead Firms To Examine Power Supply
## 1125 DJ POWER CUTS: Blackouts Lead Firms To Examine Power Supply
## 1126 DJ POWER CUTS: Blackouts Lead Firms To Examine Power Supply
## 1127 DJ POWER CUTS: Blackouts Lead Firms To Examine Power Supply
## 1128 DJ POWER CUTS: Blackouts Lead Firms To Examine Power Supply
## 1129 DJ POWER CUTS: Blackouts Lead Firms To Examine Power Supply
## 1130 DJ POWER CUTS: Blackouts Lead Firms To Examine Power Supply
## 1131 DJ POWER CUTS: Blackouts Lead Firms To Examine Power Supply
## 1132 DJ Calif Pwr Producers Urge FERC Reject Price Cap Petition
## 1133 DJ Calif Pwr Producers Urge FERC Reject Price Cap Petition
## 1134 DJ Calif Pwr Producers Urge FERC Reject Price Cap Petition
## 1135 DJ Calif Pwr Producers Urge FERC Reject Price Cap Petition
## 1136 DJ Calif Pwr Producers Urge FERC Reject Price Cap Petition
## 1137 DJ Calif Pwr Producers Urge FERC Reject Price Cap Petition
## 1138 DJ Calif Pwr Producers Urge FERC Reject Price Cap Petition
## 1139 DJ Calif Pwr Producers Urge FERC Reject Price Cap Petition
## 1140 DJ Calif ISO Exceeded $250 Cap In Off-system Buys -Sources
## 1141 DJ Calif ISO Exceeded $250 Cap In Off-system Buys -Sources
## 1142 DJ Calif ISO Exceeded $250 Cap In Off-system Buys -Sources
## 1143 DJ Calif ISO Exceeded $250 Cap In Off-system Buys -Sources
## 1144 DJ Calif ISO Exceeded $250 Cap In Off-system Buys -Sources
## 1145 DJ Calif ISO Exceeded $250 Cap In Off-system Buys -Sources
## 1146 DJ Calif ISO Exceeded $250 Cap In Off-system Buys -Sources
## 1147 DJ Calif ISO Exceeded $250 Cap In Off-system Buys -Sources
## 1148 DJ Calif Generators: `We Welcome Probe Into Power Market - DJ Ca\tlif ISO Urges FERC To Reject Pwr Producers Complaint
## 1149 DJ Calif Generators: `We Welcome Probe Into Power Market - DJ Ca\tlif ISO Urges FERC To Reject Pwr Producers Complaint
## 1150 DJ Calif Generators: `We Welcome Probe Into Power Market - DJ Ca\tlif ISO Urges FERC To Reject Pwr Producers Complaint
## 1151 DJ Calif Generators: `We Welcome Probe Into Power Market - DJ Ca\tlif ISO Urges FERC To Reject Pwr Producers Complaint
## 1152 Bonafide Commercial Reasons for non-delivery
## 1153 Bonafide Commercial Reasons for non-delivery
## 1154 Bonafide Commercial Reasons for non-delivery
## 1155 Bonafide Commercial Reasons for non-delivery
## 1156 Form for Block Forward / Bilateral Delivery
## 1157 Form for Block Forward / Bilateral Delivery
## 1158 Form for Block Forward / Bilateral Delivery
## 1159 Form for Block Forward / Bilateral Delivery
## 1160 Form for Block Forward / Bilateral Delivery
## 1161 Form for Block Forward / Bilateral Delivery
## 1162 daily block forwards new charges
## 1163 daily block forwards new charges
## 1164 daily block forwards new charges
## 1165 daily block forwards new charges
## 1166 daily block forwards new charges
## 1167 daily block forwards new charges
## 1168 daily block forwards new charges
## 1169 daily block forwards new charges
## 1170 daily block forwards new charges
## 1171 daily block forwards new charges
## 1172 PX Letter
## 1173 CAISO Notification: Operations Procedures E-507 - Posting for A ffected Party Review
## 1174 CAISO Notification: Operations Procedures E-507 - Posting for A ffected Party Review
## 1175 CAISO Notification: Operations Procedures E-507 - Posting for A ffected Party Review
## 1176 CAISO Notification: Operations Procedures E-507 - Posting for A ffected Party Review
## 1177 CAISO Notification: Operations Procedures E-507 - Posting for A ffected Party Review
## 1178 CAISO Notification: Joint 2002-2004 RMR Study & Integrated Annual Expansion Plan Study Stakeholder Meeting
## 1179 CAISO Notification: Joint 2002-2004 RMR Study & Integrated Annual Expansion Plan Study Stakeholder Meeting
## 1180 CAISO Notification: Joint 2002-2004 RMR Study & Integrated Annual Expansion Plan Study Stakeholder Meeting
## 1181 CAISO Notification: Joint 2002-2004 RMR Study & Integrated Annual Expansion Plan Study Stakeholder Meeting
## 1182 CAISO Notification: Joint 2002-2004 RMR Study & Integrated Annual Expansion Plan Study Stakeholder Meeting
## 1183 CAISO Notification: Joint 2002-2004 RMR Study & Integrated Annual Expansion Plan Study Stakeholder Meeting
## 1184 CAISO Notification: Joint 2002-2004 RMR Study & Integrated Annual Expansion Plan Study Stakeholder Meeting
## 1185 CAISO Notification: Joint 2002-2004 RMR Study & Integrated Annual Expansion Plan Study Stakeholder Meeting
## 1186 CAISO Notification: Joint 2002-2004 RMR Study & Integrated Annual Expansion Plan Study Stakeholder Meeting
## 1187 CAISO Notification: Joint 2002-2004 RMR Study & Integrated Annual Expansion Plan Study Stakeholder Meeting
## 1188 CAISO Notification: Joint 2002-2004 RMR Study & Integrated Annual Expansion Plan Study Stakeholder Meeting
## 1189 CAISO Notification: Joint 2002-2004 RMR Study & Integrated Annual Expansion Plan Study Stakeholder Meeting
## 1190 CAISO Notification: Joint 2002-2004 RMR Study & Integrated Annual Expansion Plan Study Stakeholder Meeting
## 1191 CAISO Notification: Joint 2002-2004 RMR Study & Integrated Annual Expansion Plan Study Stakeholder Meeting
## 1192 CAISO Notification: Joint 2002-2004 RMR Study & Integrated Annual Expansion Plan Study Stakeholder Meeting
## 1193 CAISO Notification: Commencement of 2000 Operational Study in Jul y 2000
## 1194 CAISO Notice: New telephone numbers for Client Relations Departme nt
## 1195 CAISO Notice: Preliminary finding re: May 22nd Stage 2 System Eme rgency
## 1196 Summer 2000 Market Participating Load Trial Program Re-Opener
## 1197 Meeting with CAISO re Desert Southwest
## 1198 Meeting with CAISO re Desert Southwest
## 1199 Meeting with CAISO re Desert Southwest
## 1200 CAISO Notice - Congestion Reform Project
## 1201 COST OF UNSCHEDULED LOAD
## 1202 CAISO NOTIFICATION - Initiation of 1999 UFE Retro-Active Market A djustments & Final UFE Project Report
## 1203 CAISO NOTIFICATION - Initiation of 1999 UFE Retro-Active Market A djustments & Final UFE Project Report
## 1204 CAISO NOTIFICATION - Initiation of 1999 UFE Retro-Active Market A djustments & Final UFE Project Report
## 1205 CAISO NOTIFICATION - Initiation of 1999 UFE Retro-Active Market A djustments & Final UFE Project Report
## 1206 CAISO NOTIFICATION - Initiation of 1999 UFE Retro-Active Market A djustments & Final UFE Project Report
## 1207 CAISO NOTIFICATION - Initiation of 1999 UFE Retro-Active Market A djustments & Final UFE Project Report
## 1208 CAISO NOTIFICATION - Initiation of 1999 UFE Retro-Active Market A djustments & Final UFE Project Report
## 1209 CAISO NOTIFICATION - Initiation of 1999 UFE Retro-Active Market A djustments & Final UFE Project Report
## 1210 CAISO NOTIFICATION - Initiation of 1999 UFE Retro-Active Market A djustments & Final UFE Project Report
## 1211 CAISO NOTIFICATION - Initiation of 1999 UFE Retro-Active Market A djustments & Final UFE Project Report
## 1212 CAISO NOTIFICATION - Initiation of 1999 UFE Retro-Active Market A djustments & Final UFE Project Report
## 1213 CAISO NOTIFICATION - Initiation of 1999 UFE Retro-Active Market A djustments & Final UFE Project Report
## 1214 CAISO NOTIFICATION - Initiation of 1999 UFE Retro-Active Market A djustments & Final UFE Project Report
## 1215 CAISO NOTIFICATION - Initiation of 1999 UFE Retro-Active Market A djustments & Final UFE Project Report
## 1216 CAISO NOTIFICATION - Initiation of 1999 UFE Retro-Active Market A djustments & Final UFE Project Report
## 1217 CAISO NOTIFICATION - Initiation of 1999 UFE Retro-Active Market A djustments & Final UFE Project Report
## 1218 *** INTERRUPTIBLE CUSTOMERS CAN PARTICIPATE IN ISO A/S PROGRAM ***
## 1219 *** INTERRUPTIBLE CUSTOMERS CAN PARTICIPATE IN ISO A/S PROGRAM ***
## 1220 *** INTERRUPTIBLE CUSTOMERS CAN PARTICIPATE IN ISO A/S PROGRAM ***
## 1221 *** INTERRUPTIBLE CUSTOMERS CAN PARTICIPATE IN ISO A/S PROGRAM ***
## 1222 *** INTERRUPTIBLE CUSTOMERS CAN PARTICIPATE IN ISO A/S PROGRAM ***
## 1223 *** INTERRUPTIBLE CUSTOMERS CAN PARTICIPATE IN ISO A/S PROGRAM ***
## 1224 *** INTERRUPTIBLE CUSTOMERS CAN PARTICIPATE IN ISO A/S PROGRAM ***
## 1225 *** INTERRUPTIBLE CUSTOMERS CAN PARTICIPATE IN ISO A/S PROGRAM ***
## 1226 *** INTERRUPTIBLE CUSTOMERS CAN PARTICIPATE IN ISO A/S PROGRAM ***
## 1227 *** INTERRUPTIBLE CUSTOMERS CAN PARTICIPATE IN ISO A/S PROGRAM ***
## 1228 *** INTERRUPTIBLE CUSTOMERS CAN PARTICIPATE IN ISO A/S PROGRAM ***
## 1229 *** INTERRUPTIBLE CUSTOMERS CAN PARTICIPATE IN ISO A/S PROGRAM ***
## 1230 *** INTERRUPTIBLE CUSTOMERS CAN PARTICIPATE IN ISO A/S PROGRAM ***
## 1231 *** INTERRUPTIBLE CUSTOMERS CAN PARTICIPATE IN ISO A/S PROGRAM ***
## 1232 *** INTERRUPTIBLE CUSTOMERS CAN PARTICIPATE IN ISO A/S PROGRAM ***
## 1233 *** INTERRUPTIBLE CUSTOMERS CAN PARTICIPATE IN ISO A/S PROGRAM ***
## 1234 *** INTERRUPTIBLE CUSTOMERS CAN PARTICIPATE IN ISO A/S PROGRAM ***
## 1235 *** INTERRUPTIBLE CUSTOMERS CAN PARTICIPATE IN ISO A/S PROGRAM ***
## 1236 *** INTERRUPTIBLE CUSTOMERS CAN PARTICIPATE IN ISO A/S PROGRAM ***
## 1237 *** INTERRUPTIBLE CUSTOMERS CAN PARTICIPATE IN ISO A/S PROGRAM ***
## 1238 *** INTERRUPTIBLE CUSTOMERS CAN PARTICIPATE IN ISO A/S PROGRAM ***
## 1239 CAISO Notification: Operations Procedure E-511 - Posting for Af fected Party Review
## 1240 CAISO Notification: Operations Procedure E-511 - Posting for Af fected Party Review
## 1241 CAISO Notification: Operations Procedure E-511 - Posting for Af fected Party Review
## 1242 CAISO Notification: Operations Procedure E-511 - Posting for Af fected Party Review
## 1243 CAISO Notification: Operations Procedure E-511 - Posting for Af fected Party Review
## 1244 CAISO Notification- InterSC Trade Template training
## 1245 Budget Language on Cal PX
## 1246 Budget Language on Cal PX
## 1247 Budget Language on Cal PX
## 1248 Budget Language on Cal PX
## 1249 Budget Language on Cal PX
## 1250 Budget Language on Cal PX
## 1251 Budget Language on Cal PX
## 1252 Budget Language on Cal PX
## 1253 Conference call - 10 Min Settlements Market Simulation
## 1254 Conference call - 10 Min Settlements Market Simulation
## 1255 Conference call - 10 Min Settlements Market Simulation
## 1256 Conference call - 10 Min Settlements Market Simulation
## 1257 Conference call - 10 Min Settlements Market Simulation
## 1258 Conference call - 10 Min Settlements Market Simulation
## 1259 Conference call - 10 Min Settlements Market Simulation
## 1260 Conference call - 10 Min Settlements Market Simulation
## 1261 Target Price Methodology Conference Call Thursday June 29
## 1262 CAISO Notice - Internet Site Usability Study
## 1263 CAISO Notice - Predispatch Enhancement Process
## 1264 SI and Settlements Training Dates for balance of Year 2000
## 1265 SI and Settlements Training Dates for balance of Year 2000
## 1266 SI and Settlements Training Dates for balance of Year 2000
## 1267 SI and Settlements Training Dates for balance of Year 2000
## 1268 SI and Settlements Training Dates for balance of Year 2000
## 1269 SI and Settlements Training Dates for balance of Year 2000
## 1270 SI and Settlements Training Dates for balance of Year 2000
## 1271 SI and Settlements Training Dates for balance of Year 2000
## 1272 SI and Settlements Training Dates for balance of Year 2000
## 1273 SI and Settlements Training Dates for balance of Year 2000
## 1274 SI and Settlements Training Dates for balance of Year 2000
## 1275 SI and Settlements Training Dates for balance of Year 2000
## 1276 SI and Settlements Training Dates for balance of Year 2000
## 1277 SI and Settlements Training Dates for balance of Year 2000
## 1278 SI and Settlements Training Dates for balance of Year 2000
## 1279 SI and Settlements Training Dates for balance of Year 2000
## 1280 SI and Settlements Training Dates for balance of Year 2000
## 1281 SI and Settlements Training Dates for balance of Year 2000
## 1282 SI and Settlements Training Dates for balance of Year 2000
## 1283 SI and Settlements Training Dates for balance of Year 2000
## 1284 SI and Settlements Training Dates for balance of Year 2000
## 1285 SI and Settlements Training Dates for balance of Year 2000
## 1286 SI and Settlements Training Dates for balance of Year 2000
## 1287 SI and Settlements Training Dates for balance of Year 2000
## 1288 SI and Settlements Training Dates for balance of Year 2000
## 1289 SI and Settlements Training Dates for balance of Year 2000
## 1290 SI and Settlements Training Dates for balance of Year 2000
## 1291 SI and Settlements Training Dates for balance of Year 2000
## 1292 SI and Settlements Training Dates for balance of Year 2000
## 1293 SI and Settlements Training Dates for balance of Year 2000
## 1294 SI and Settlements Training Dates for balance of Year 2000
## 1295 SI and Settlements Training Dates for balance of Year 2000
## 1296 SI and Settlements Training Dates for balance of Year 2000
## 1297 SI and Settlements Training Dates for balance of Year 2000
## 1298 SI and Settlements Training Dates for balance of Year 2000
## 1299 SI and Settlements Training Dates for balance of Year 2000
## 1300 SI and Settlements Training Dates for balance of Year 2000
## 1301 SI and Settlements Training Dates for balance of Year 2000
## 1302 SI and Settlements Training Dates for balance of Year 2000
## 1303 SI and Settlements Training Dates for balance of Year 2000
## 1304 SI and Settlements Training Dates for balance of Year 2000
## 1305 Update on Discussions between CAISO and DSW Parties
## 1306 Update on Discussions between CAISO and DSW Parties
## 1307 Update on Discussions between CAISO and DSW Parties
## 1308 Update on Discussions between CAISO and DSW Parties
## 1309 Update on Discussions between CAISO and DSW Parties
## 1310 Update on Discussions between CAISO and DSW Parties
## 1311 Update on Discussions between CAISO and DSW Parties
## 1312 CAISO Notice - Comgestion Reform Dates
## 1313 CASIO NOTIFICATION- OASIS Working Group Meeting
## 1314 CASIO NOTIFICATION- OASIS Working Group Meeting
## 1315 FW: SOUTHERN CALIFORNIA LONG-TERM REGIONAL TRANSMISSION STUDY Sta keholder meeting #1 Notice
## 1316 White paper for interim locational market power mitigation
## 1317 July 21 Stakeholder Meeting
## 1318 CAISO Notice - Congestion Management Reform Proposal Posting
## 1319 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1320 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1321 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1322 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1323 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1324 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1325 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1326 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1327 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1328 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1329 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1330 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1331 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1332 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1333 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1334 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1335 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1336 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1337 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1338 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1339 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1340 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1341 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1342 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1343 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1344 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1345 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1346 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1347 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1348 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1349 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1350 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1351 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1352 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1353 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1354 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1355 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1356 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1357 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1358 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1359 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1360 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1361 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1362 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1363 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1364 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1365 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1366 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1367 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1368 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1369 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1370 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1371 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1372 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1373 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1374 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1375 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1376 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1377 CAISO Notice - Congestion Reform Proposal - Apendix B
## 1378 CAISO Notice - Valley-Rainbow Transmission Project
## 1379 CAISO Notice - Staqkeholder Feedback on Congestion Reform Proposa l
## 1380 CAISO Notice - Staqkeholder Feedback on Congestion Reform Proposa l
## 1381 CAISO Notice - Staqkeholder Feedback on Congestion Reform Proposa l
## 1382 CAISO Notice - Staqkeholder Feedback on Congestion Reform Proposa l
## 1383 CAISO Notice - Staqkeholder Feedback on Congestion Reform Proposa l
## 1384 CAISO Notice - Staqkeholder Feedback on Congestion Reform Proposa l
## 1385 CAISO Notice - Staqkeholder Feedback on Congestion Reform Proposa l
## 1386 CAISO Notice: Stakeholder Meeting on Congestion Reform - LRS proc urement
## 1387 CAISO Notice - Appendices to Congestion Management Reform Recomme ndation
## 1388 CAISO Notice - Appendices to Congestion Management Reform Recomme ndation
## 1389 CAISO Notice - Appendices to Congestion Management Reform Recomme ndation
## 1390 CAISO Notice - Appendices to Congestion Management Reform Recomme ndation
## 1391 CAISO Notice - Appendices to Congestion Management Reform Recomme ndation
## 1392 CAISO Notice - Appendices to Congestion Management Reform Recomme ndation
## 1393 CAISO Notice - Appendices to Congestion Management Reform Recomme ndation
## 1394 CAISO Notification: Scheduling of Non-Firm Counter Flows
## 1395 CAISO Notice - Congestion Management Reform (CMR) Stakeholder Mee tings
## 1396 CAISO Notice - Congestion Management Reform (CMR) Stakeholder Mee tings
## 1397 CAISO Notice - Congestion Management Reform (CMR) Stakeholder Mee tings
## 1398 CAISO Notice - Congestion Management Reform (CMR) Stakeholder Mee tings
## 1399 CAISO Notice - Congestion Management Reform (CMR) Stakeholder Mee tings
## 1400 CAISO Notice - Congestion Management Reform (CMR) Stakeholder Mee tings
## 1401 CAISO Notice - Congestion Management Reform (CMR) Stakeholder Mee tings
## 1402 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1403 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1404 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1405 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1406 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1407 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1408 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1409 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1410 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1411 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1412 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1413 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1414 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1415 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1416 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1417 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1418 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1419 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1420 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1421 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1422 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1423 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1424 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1425 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1426 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1427 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1428 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1429 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1430 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1431 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1432 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1433 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1434 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1435 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1436 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1437 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1438 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1439 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1440 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1441 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1442 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1443 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1444 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1445 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1446 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1447 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1448 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1449 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1450 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1451 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1452 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1453 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1454 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1455 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1456 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1457 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1458 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1459 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1460 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1461 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1462 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1463 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1464 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1465 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1466 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1467 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1468 CAISO NOTIFICATION--Attention Requested: 10-Minute Settlement Mar ket Simulation II
## 1469 CAISO Notice - Extension for Response to CPUC Subpoena; Response to EOB Subpoena
## 1470 CPUC Supoena Deadline
## 1471 CPUC Confidentiality Proposal
## 1472 CAISO Notice - Changes to CMR Stakeholder Meeting Schedule
## 1473 CAISO NOTICE: CMR Comments Deadline - Friday, July 28, 5pm
## 1474 CAISO Notice - Congestion Management Reform Stakeholder Meetings
## 1475 CAISO Notice - Congestion Management Reform Stakeholder Meetings
## 1476 CAISO Notice - Congestion Management Reform Stakeholder Meetings
## 1477 CAISO Notice - Congestion Management Reform Stakeholder Meetings
## 1478 CAISO Notice - Congestion Management Reform Stakeholder Meetings
## 1479 CAISO Notice - Congestion Management Reform Stakeholder Meetings
## 1480 CAISO Notice - Congestion Management Reform Stakeholder Meetings
## 1481 CAISO Notice - Posting of Additional Appendices to Support CMR Re commendation
## 1482 CAISO Notice - Posting of Additional Appendices to Support CMR Re commendation
## 1483 CAISO Notice - Posting of Additional Appendices to Support CMR Re commendation
## 1484 CAISO Notice - Posting of Additional Appendices to Support CMR Re commendation
## 1485 CAISO Notice - Posting of Additional Appendices to Support CMR Re commendation
## 1486 CAISO Notice - Posting of Additional Appendices to Support CMR Re commendation
## 1487 CAISO Notice - Posting of Additional Appendices to Support CMR Re commendation
## 1488 GREAT NEWS ****FERC Order on Morgan Stanley Complaint Against ISO
## 1489 GREAT NEWS ****FERC Order on Morgan Stanley Complaint Against ISO
## 1490 GREAT NEWS ****FERC Order on Morgan Stanley Complaint Against ISO
## 1491 GREAT NEWS ****FERC Order on Morgan Stanley Complaint Against ISO
## 1492 GREAT NEWS ****FERC Order on Morgan Stanley Complaint Against ISO
## 1493 GREAT NEWS ****FERC Order on Morgan Stanley Complaint Against ISO
## 1494 GREAT NEWS ****FERC Order on Morgan Stanley Complaint Against ISO
## 1495 GREAT NEWS ****FERC Order on Morgan Stanley Complaint Against ISO
## 1496 GREAT NEWS ****FERC Order on Morgan Stanley Complaint Against ISO
## 1497 GREAT NEWS ****FERC Order on Morgan Stanley Complaint Against ISO
## 1498 GREAT NEWS ****FERC Order on Morgan Stanley Complaint Against ISO
## 1499 GREAT NEWS ****FERC Order on Morgan Stanley Complaint Against ISO
## 1500 information from iso
## 1501 information from iso
## 1502 CAISO Notice - Release of Public Bid Data
## 1503 CAISO NOTICE: CMR Stakeholder Meetings August 16-18
## 1504 Stakeholder Meeting in San Diego
## 1505 CAISO NOTICE: Executive Summary of Stakeholder s Comments...
## 1506 CAISO NOTIFICATION: Request For Comments Regarding Adjustable Int er-SC trades.
## 1507 CAISO NOTIFICATION: Request For Comments Regarding Adjustable Int er-SC trades.
## 1508 CAISO NOTIFICATION: Request For Comments Regarding Adjustable Int er-SC trades.
## 1509 DMA White Paper on Price Cap Extension
## 1510 FW: CAISO Notice: Posting of Key ISO Documents
## 1511 CAISO Notice: August 31 Distributed Generation Meeting
## 1512 CAISO Notice: Aug. 23rd SDG&E/Valley-Rainbow Stakeholder Meeting
## 1513 CAISO NOTICE: AGENDA for CMR Stakeholder Meeting August 16-18
## 1514 LARS Meeting Update
## 1515 MIF Presentations
## 1516 Update to the MIF Meeting Presentations on the ISO Website
## 1517 CAISO NOTIFICATION - UPDATE ON INTER-SC TRADES ADJUSTMENT BID PRO JECT TIMELINE
## 1518 CAISO NOTIFICATION - UPDATE ON INTER-SC TRADES ADJUSTMENT BID PRO JECT TIMELINE
## 1519 CAISO ADS Notification: ADS II Kickoff (Automated Dispatching Sy stem) Thursday August 24, 2000, Lake Natoma Inn, Folsom 9-12 Noon
## 1520 CAISO ADS Notification: ADS II Kickoff (Automated Dispatching Sy stem) Thursday August 24, 2000, Lake Natoma Inn, Folsom 9-12 Noon
## 1521 CAISO ADS Notification: ADS II Kickoff (Automated Dispatching Sy stem) Thursday August 24, 2000, Lake Natoma Inn, Folsom 9-12 Noon
## 1522 CAISO ADS Notification: ADS II Kickoff (Automated Dispatching Sy stem) Thursday August 24, 2000, Lake Natoma Inn, Folsom 9-12 Noon
## 1523 CAISO ADS Notification: ADS II Kickoff (Automated Dispatching Sy stem) Thursday August 24, 2000, Lake Natoma Inn, Folsom 9-12 Noon
## 1524 CAISO ADS Notification: ADS II Kickoff (Automated Dispatching Sy stem) Thursday August 24, 2000, Lake Natoma Inn, Folsom 9-12 Noon
## 1525 CAISO ADS Notification: ADS II Kickoff (Automated Dispatching Sy stem) Thursday August 24, 2000, Lake Natoma Inn, Folsom 9-12 Noon
## 1526 CAISO ADS Notification: ADS II Kickoff (Automated Dispatching Sy stem) Thursday August 24, 2000, Lake Natoma Inn, Folsom 9-12 Noon
## 1527 CAISO ADS Notification: ADS II Kickoff (Automated Dispatching Sy stem) Thursday August 24, 2000, Lake Natoma Inn, Folsom 9-12 Noon
## 1528 CAISO ADS Notification: ADS II Kickoff (Automated Dispatching Sy stem) Thursday August 24, 2000, Lake Natoma Inn, Folsom 9-12 Noon
## 1529 CAISO ADS Notification: ADS II Kickoff (Automated Dispatching Sy stem) Thursday August 24, 2000, Lake Natoma Inn, Folsom 9-12 Noon
## 1530 CAISO ADS Notification: ADS II Kickoff (Automated Dispatching Sy stem) Thursday August 24, 2000, Lake Natoma Inn, Folsom 9-12 Noon
## 1531 CAISO ADS Notification: ADS II Kickoff (Automated Dispatching Sy stem) Thursday August 24, 2000, Lake Natoma Inn, Folsom 9-12 Noon
## 1532 CAISO NOTICE: CMR Stakeholder Meeting Presentations available on the website
## 1533 CAISO Notification - IMPORTANT Expost 10 minute price informatio n
## 1534 CAISO Notification - IMPORTANT Expost 10 minute price informatio n
## 1535 CAISO NOTICE: Market Separation Study - Appendix C
## 1536 Memorandum to stakeholders on distributed generation
## 1537 CAISO Notice: Friday August 25 ISO Governing Board Conference Ca ll
## 1538 CAISO Notice - Stakeholder Comments from August 16-18 CMR Meeting s
## 1539 WPTF Friday Deliver Unto Us A Burrito
## 1540 RE: Commission Investigation into Functioning of Wholesale/Retail Markets in San Diego
## 1541 RE: Commission Investigation into Functioning of Wholesale/Retail Markets in San Diego
## 1542 RE: Commission Investigation into Functioning of Wholesale/Retail Markets in San Diego
## 1543 RE: Commission Investigation into Functioning of Wholesale/Retail Markets in San Diego
## 1544 RE: Commission Investigation into Functioning of Wholesale/Retail Markets in San Diego
## 1545 RE: Commission Investigation into Functioning of Wholesale/Retail Markets in San Diego
## 1546 RE: Commission Investigation into Functioning of Wholesale/Retail Markets in San Diego
## 1547 RE: Commission Investigation into Functioning of Wholesale/Retail Markets in San Diego
## 1548 RE: Commission Investigation into Functioning of Wholesale/Retail Markets in San Diego
## 1549 RE: Commission Investigation into Functioning of Wholesale/Retail Markets in San Diego
## 1550 RE: Commission Investigation into Functioning of Wholesale/Retail Markets in San Diego
## 1551 RE: Commission Investigation into Functioning of Wholesale/Retail Markets in San Diego
## 1552 RE: Commission Investigation into Functioning of Wholesale/Retail Markets in San Diego
## 1553 RE: Commission Investigation into Functioning of Wholesale/Retail Markets in San Diego
## 1554 RE: Commission Investigation into Functioning of Wholesale/Retail Markets in San Diego
## 1555 RE: Commission Investigation into Functioning of Wholesale/Retail Markets in San Diego
## 1556 RE: Commission Investigation into Functioning of Wholesale/Retail Markets in San Diego
## 1557 RE: Commission Investigation into Functioning of Wholesale/Retail Markets in San Diego
## 1558 RE: Commission Investigation into Functioning of Wholesale/Retail Markets in San Diego
## 1559 RE: Commission Investigation into Functioning of Wholesale/Retail Markets in San Diego
## 1560 SDG&E FERC Ad
## 1561 SDG&E FERC Ad
## 1562 SDG&E FERC Ad
## 1563 SDG&E FERC Ad
## 1564 SDG&E FERC Ad
## 1565 Prehearing Conference Statement
## 1566 Prehearing Conference Statement
## 1567 Prehearing Conference Statement
## 1568 Prehearing Conference Statement
## 1569 Prehearing Conference Statement
## 1570 Prehearing Conference Statement
## 1571 Prehearing Conference Statement
## 1572 Prehearing Conference Statement
## 1573 Prehearing Conference Statement
## 1574 Prehearing Conference Statement
## 1575 Prehearing Conference Statement
## 1576 Prehearing Conference Statement
## 1577 Prehearing Conference Statement
## 1578 Prehearing Conference Statement
## 1579 Prehearing Conference Statement
## 1580 Prehearing Conference Statement
## 1581 Prehearing Conference Statement
## 1582 Prehearing Conference Statement
## 1583 Prehearing Conference Statement
## 1584 Prehearing Conference Statement
## 1585 Asset Development - Weekly Report
## 1586 Asset Development - Weekly Report
## 1587 Asset Development - Weekly Report
## 1588 Asset Development - Weekly Report
## 1589 Asset Development - Weekly Report
## 1590 Asset Development - Weekly Report
## 1591 Asset Development - Weekly Report
## 1592 Asset Development - Weekly Report
## 1593 Asset Development - Weekly Report
## 1594 Asset Development - Weekly Report
## 1595 Asset Development - Weekly Report
## 1596 Asset Development - Weekly Report
## 1597 RE: Mid 4 to Mid 3 Quote
## 1598 RE: Mid 4 to Mid 3 Quote
## 1599 RE: Mid 4 to Mid 3 Quote
## 1600 RE: Mid 4 to Mid 3 Quote
## 1601 RE: Backhaul Rates from NNG to Waha
## 1602 RE: Backhaul Rates from NNG to Waha
## 1603 RE: Backhaul Rates from NNG to Waha
## 1604 RE: Backhaul Rates from NNG to Waha
## 1605 Waha Backhaul
## 1606 Waha Backhaul
## 1607 Waha Backhaul
## 1608 Waha Backhaul
## 1609 Historic Butane/Propane Value as Gas
## 1610 Re: Gas Injection Project
## 1611 Re: Gas Injection Project
## 1612 Re: Gas Injection Project
## 1613 Re: Gas Injection Project
## 1614 Re: Gas Injection Project
## 1615 Re: Gas Injection Project
## 1616 Re: Gas Injection Project
## 1617 Re: Gas Injection Project
## 1618 Re: Gas Injection Project
## 1619 Re: Gas Injection Project
## 1620 Re: Gas Injection Project
## 1621 Re: Gas Injection Project
## 1622 Re: Gas Injection Project
## 1623 Re: Gas Injection Project
## 1624 Re: Gas Injection Project
## 1625 Re: Gas Injection Project
## 1626 Re: Gas Injection Project
## 1627 Re: Gas Injection Project
## 1628 Re: Gas Injection Project
## 1629 Re: Gas Injection Project
## 1630 Re: Gas Injection Project
## 1631 Re: Gas Injection Project
## 1632 Re: Gas Injection Project
## 1633 Re: Gas Injection Project
## 1634 Re: Gas Injection Project
## 1635 Re: Gas Injection Project
## 1636 Re: Gas Injection Project
## 1637 Re: Gas Injection Project
## 1638 Re: Gas Injection Project
## 1639 Re: Gas Injection Project
## 1640 Re: Gas Injection Project
## 1641 Re: Gas Injection Project
## 1642 Re: Gas Injection Project
## 1643 Re: Gas Injection Project
## 1644 Re: Gas Injection Project
## 1645 Re: Gas Injection Project
## 1646 Re: Gas Injection Project
## 1647 Re: Gas Injection Project
## 1648 Re: Gas Injection Project
## 1649 Re: Gas Injection Project
## 1650 Re: Gas Injection Project
## 1651 Re: Gas Injection Project
## 1652 Re: Gas Injection Project
## 1653 Re: Gas Injection Project
## 1654 Re: Gas Injection Project
## 1655 Re: Gas Injection Project
## 1656 Re: Gas Injection Project
## 1657 Re: Gas Injection Project
## 1658 Re: Gas Injection Project
## 1659 Mount Mckinley NGL Storage
## 1660 Mount Mckinley NGL Storage
## 1661 Mount Mckinley NGL Storage
## 1662 Mount Mckinley NGL Storage
## 1663 Mount Mckinley NGL Storage
## 1664 Mount Mckinley NGL Storage
## 1665 Mount Mckinley NGL Storage
## 1666 Mount Mckinley NGL Storage
## 1667 Mount Mckinley NGL Storage
## 1668 Mount Mckinley NGL Storage
## 1669 Mount Mckinley NGL Storage
## 1670 Mount Mckinley NGL Storage
## 1671 Mount Mckinley NGL Storage
## 1672 Mount McKinley
## 1673 Mount McKinley
## 1674 Mount McKinley
## 1675 Mount McKinley
## 1676 Mount McKinley
## 1677 Mount McKinley
## 1678 Mount McKinley
## 1679 Mount McKinley
## 1680 Mount McKinley
## 1681 Mount McKinley
## 1682 Mount McKinley
## 1683 Gas Modelling Results
## 1684 Gas Modelling Results
## 1685 Gas Modelling Results
## 1686 Gas Modelling Results
## 1687 Gas Modelling Results
## 1688 Gas Modelling Results
## 1689 Gas Modelling Results
## 1690 Gas Modelling Results
## 1691 Gas Modelling Results
## 1692 Gas Modelling Results
## 1693 Gas Modelling Results
## 1694 Gas Modelling Results
## 1695 Gas Modelling Results
## 1696 Gas Modelling Results
## 1697 Gas Modelling Results
## 1698 Gas Modelling Results
## 1699 Gas Modelling Results
## 1700 Gas Modelling Results
## 1701 Gas Modelling Results
## 1702 Gas Modelling Results
## 1703 Gas Modelling Results
## 1704 Gas Modelling Results
## 1705 Gas Modelling Results
## 1706 Re: Conference call change
## 1707 Re: Conference call change
## 1708 Re: Conference call change
## 1709 Re: Conference call change
## 1710 Re: Conference call change
## 1711 Re: Conference call change
## 1712 Re: Conference call change
## 1713 Re: Conference call change
## 1714 Re: Conference call change
## 1715 Re: Conference call change
## 1716 Re: Conference call change
## 1717 Re: Conference call change
## 1718 Re: Conference call change
## 1719 Re: Conference call change
## 1720 Re: Conference call change
## 1721 Re: Conference call change
## 1722 Re: Conference call change
## 1723 Re: Conference call change
## 1724 Re: Conference call change
## 1725 Re: Conference call change
## 1726 Re: Conference call change
## 1727 Re: Conference call change
## 1728 Re: Conference call change
## 1729 Re: Conference call change
## 1730 Re: Conference call change
## 1731 Re: Conference call change
## 1732 Re: Conference call change
## 1733 Re: Conference call change
## 1734 Re: Conference call change
## 1735 Re: Conference call change
## 1736 Re: Conference call change
## 1737 Re: Conference call change
## 1738 Re: Conference call change
## 1739 Re: Conference call change
## 1740 Re: Conference call change
## 1741 Re: Conference call change
## 1742 Re: Conference call change
## 1743 Re: Conference call change
## 1744 Re: Conference call change
## 1745 Re: Conference call change
## 1746 Re: Conference call change
## 1747 Re: Conference call change
## 1748 Re: Conference call change
## 1749 Re: Conference call change
## 1750 Re: Conference call change
## 1751 Re: Conference call change
## 1752 Re: Conference call change
## 1753 Re: Conference call change
## 1754 Re: Conference call change
## 1755 Re: Conference call change
## 1756 Re: Conference call change
## 1757 Re: Gas Injection Project
## 1758 Re: Gas Injection Project
## 1759 Re: Gas Injection Project
## 1760 Re: Gas Injection Project
## 1761 Re: Gas Injection Project
## 1762 Re: Gas Injection Project
## 1763 Re: Gas Injection Project
## 1764 Re: Gas Injection Project
## 1765 Re: Gas Injection Project
## 1766 Re: Gas Injection Project
## 1767 Re: Gas Injection Project
## 1768 Re: Gas Injection Project
## 1769 Re: Gas Injection Project
## 1770 Re: Gas Injection Project
## 1771 Re: Gas Injection Project
## 1772 Re: Gas Injection Project
## 1773 Re: Gas Injection Project
## 1774 Re: Gas Injection Project
## 1775 Re: Gas Injection Project
## 1776 Re: Gas Injection Project
## 1777 Re: Gas Injection Project
## 1778 Re: Gas Injection Project
## 1779 Re: Gas Injection Project
## 1780 Re: Gas Injection Project
## 1781 Re: Gas Injection Project
## 1782 Re: Gas Injection Project
## 1783 Re: Gas Injection Project
## 1784 Re: Gas Injection Project
## 1785 Re: Gas Injection Project
## 1786 Re: Gas Injection Project
## 1787 Re: Gas Injection Project
## 1788 Re: Gas Injection Project
## 1789 Re: Gas Injection Project
## 1790 Re: Gas Injection Project
## 1791 Re: Gas Injection Project
## 1792 Re: Gas Injection Project
## 1793 Re: Gas Injection Project
## 1794 Re: Gas Injection Project
## 1795 Re: Gas Injection Project
## 1796 Re: Gas Injection Project
## 1797 Re: Gas Injection Project
## 1798 Re: Gas Injection Project
## 1799 Re: Gas Injection Project
## 1800 Re: Gas Injection Project
## 1801 Re: Gas Injection Project
## 1802 Re: Gas Injection Project
## 1803 Re: Gas Injection Project
## 1804 Re: Gas Injection Project
## 1805 Re: Gas Injection Project
## 1806 Re: Gas Injection Project
## 1807 Re: Gas Injection Project
## 1808 Re: Gas Injection Project
## 1809 Re: Gas Injection Project
## 1810 Re: Gas Injection Project
## 1811 Re: Gas Injection Project
## 1812 Re: Gas Injection Project
## 1813 Re: Gas Injection Project
## 1814 Re: Gas Injection Project
## 1815 Re: Gas Injection Project
## 1816 Re: Gas Injection Project
## 1817 RE: Potential sale of Gomez lateral pipe
## 1818 RE: Potential sale of Gomez lateral pipe
## 1819 RE: Potential sale of Gomez lateral pipe
## 1820 RE: Potential sale of Gomez lateral pipe
## 1821 FW: Potential sale of Gomez lateral pipe
## 1822 FW: Potential sale of Gomez lateral pipe
## 1823 FW: Potential sale of Gomez lateral pipe
## 1824 FW: Potential sale of Gomez lateral pipe
## 1825 FW: Potential sale of Gomez lateral pipe
## 1826 RE: Location Number
## 1827 RE: Location Number
## 1828 RE: Location Number
## 1829 FW: Location Number
## 1830 FW: Location Number
## 1831 FW: Location Number
## 1832 FW: Location Number
## 1833 FW: Location Number
## 1834 FW: Location Number
## 1835 Scaled-back Alaskan pipeline proposal in works
## 1836 RE: Alaska project work order
## 1837 RE: Alaska project work order
## 1838 Producers Tell Alaska Governor the Project is Now A Long Shot
## 1839 Producers Tell Alaska Governor the Project is Now A Long Shot
## 1840 Producers Tell Alaska Governor the Project is Now A Long Shot
## 1841 Producers Tell Alaska Governor the Project is Now A Long Shot
## 1842 Producers Tell Alaska Governor the Project is Now A Long Shot
## 1843 Producers Tell Alaska Governor the Project is Now A Long Shot
## 1844 Producers Tell Alaska Governor the Project is Now A Long Shot
## 1845 Producers Tell Alaska Governor the Project is Now A Long Shot
## 1846 Producers Tell Alaska Governor the Project is Now A Long Shot
## 1847 Alaskan Drilling Starts
## 1848 Alaskan Drilling Starts
## 1849 Alaskan Drilling Starts
## 1850 Alaskan Drilling Starts
## 1851 Alaskan Drilling Starts
## 1852 Alaskan Drilling Starts
## 1853 Alaskan Drilling Starts
## 1854 Alaskan Drilling Starts
## 1855 Alaskan Drilling Starts
## 1856 Alaskan Drilling Starts
## 1857 Alaskan Drilling Starts
## 1858 Alaskan Drilling Starts
## 1859
## 1860
## 1861
## 1862
## 1863
## 1864
## 1865
## 1866
## 1867
## 1868
## 1869
## 1870
## 1871
## 1872
## 1873
## 1874
## 1875 CERA Talks About Alaska Pipe Chances
## 1876 CERA Talks About Alaska Pipe Chances
## 1877 CERA Talks About Alaska Pipe Chances
## 1878 CERA Talks About Alaska Pipe Chances
## 1879 CERA Talks About Alaska Pipe Chances
## 1880 CERA Talks About Alaska Pipe Chances
## 1881 CERA Talks About Alaska Pipe Chances
## 1882 CERA Talks About Alaska Pipe Chances
## 1883 CERA Talks About Alaska Pipe Chances
## 1884 CERA Talks About Alaska Pipe Chances
## 1885 CERA Talks About Alaska Pipe Chances
## 1886 CERA Talks About Alaska Pipe Chances
## 1887 CERA Talks About Alaska Pipe Chances
## 1888 CERA Talks About Alaska Pipe Chances
## 1889 CERA Talks About Alaska Pipe Chances
## 1890 CERA Talks About Alaska Pipe Chances
## 1891 CERA Talks About Alaska Pipe Chances
## 1892 Foothills Makes Statement on Alaska Pipe
## 1893 Foothills Makes Statement on Alaska Pipe
## 1894 Foothills Makes Statement on Alaska Pipe
## 1895 Foothills Makes Statement on Alaska Pipe
## 1896 Foothills Makes Statement on Alaska Pipe
## 1897 Foothills Makes Statement on Alaska Pipe
## 1898 FW: New Iowa Pipeline
## 1899 FW: New Iowa Pipeline
## 1900 FW: New Iowa Pipeline
## 1901 FW: New Iowa Pipeline
## 1902 Press Release from Arctic Resources Company
## 1903 Alaskan Info
## 1904 Alaskan Info
## 1905 Alaskan Info
## 1906 Alaskan Info
## 1907 Is ANWR DOA?
## 1908 RE: Call from Exxon re: Alaskan gas transportation options
## 1909 RE: Additional Budget Authorization Request
## 1910 RE: Additional Budget Authorization Request
## 1911 RE: Additional Budget Authorization Request
## 1912 RE: Additional Budget Authorization Request
## 1913 RE: Additional Budget Authorization Request
## 1914 RE: Additional Budget Authorization Request
## 1915 RE: Additional Budget Authorization Request
## 1916 RE: Additional Budget Authorization Request
## 1917 RE: Additional Budget Authorization Request
## 1918 RE: Additional Budget Authorization Request
## 1919 RE: REVISED Preliminary Cost Estimate for Environmental through Construction Phase - Sun Devil
## 1920 RE: REVISED Preliminary Cost Estimate for Environmental through Construction Phase - Sun Devil
## 1921 RE: REVISED Preliminary Cost Estimate for Environmental through Construction Phase - Sun Devil
## 1922 RE: REVISED Preliminary Cost Estimate for Environmental through Construction Phase - Sun Devil
## 1923 RE: REVISED Preliminary Cost Estimate for Environmental through Construction Phase - Sun Devil
## 1924 RE: REVISED Preliminary Cost Estimate for Environmental through Construction Phase - Sun Devil
## 1925 RE: REVISED Preliminary Cost Estimate for Environmental through Construction Phase - Sun Devil
## 1926 RE: REVISED Preliminary Cost Estimate for Environmental through Construction Phase - Sun Devil
## 1927 RE: Sun Devil Cost Sheet
## 1928 RE: Sun Devil Cost Sheet
## 1929 RE: Sun Devil Cost Sheet
## 1930 RE: Sun Devil Cost Sheet
## 1931 RE: Sun Devil Cost Sheet
## 1932 RE: Sun Devil Cost Sheet
## 1933 RE: Sun Devil Cost Sheet
## 1934 RE: Sun Devil Cost Sheet
## 1935 RE: Sun Devil Cost Sheet
## 1936 RE: Sun Devil Cost Sheet
## 1937 RE: Sun Devil Cost Sheet
## 1938 RE: Sun Devil Cost Sheet
## 1939 RE: Sun Devil Cost Sheet
## 1940 RE: Sun Devil Cost Sheet
## 1941 RE: Sun Devil Cost Sheet
## 1942 RE: Sun Devil Cost Sheet
## 1943 RE: Sun Devil Cost Sheet
## 1944 RE: Sun Devil Cost Sheet
## 1945 FW: Sun Devil Cost Sheet
## 1946 FW: Sun Devil Cost Sheet
## 1947 FW: Sun Devil Cost Sheet
## 1948 FW: Sun Devil Cost Sheet
## 1949 FW: Sun Devil Cost Sheet
## 1950 El Paso Capacity Allocation
## 1951 Initial Comments
## 1952 Sun Devil
## 1953 Sun Devil
## 1954 Sun Devil
## 1955 Sun Devil
## 1956 Presentation, discussion on El Paso FR vs. CD
## 1957 Presentation, discussion on El Paso FR vs. CD
## 1958 Presentation, discussion on El Paso FR vs. CD
## 1959 Presentation, discussion on El Paso FR vs. CD
## 1960 Presentation, discussion on El Paso FR vs. CD
## 1961 Presentation, discussion on El Paso FR vs. CD
## 1962 Presentation, discussion on El Paso FR vs. CD
## 1963 Presentation, discussion on El Paso FR vs. CD
## 1964 Presentation, discussion on El Paso FR vs. CD
## 1965 Presentation, discussion on El Paso FR vs. CD
## 1966 Presentation, discussion on El Paso FR vs. CD
## 1967 Presentation, discussion on El Paso FR vs. CD
## 1968 Presentation, discussion on El Paso FR vs. CD
## 1969 Presentation, discussion on El Paso FR vs. CD
## 1970 Presentation, discussion on El Paso FR vs. CD
## 1971 Presentation, discussion on El Paso FR vs. CD
## 1972 Presentation, discussion on El Paso FR vs. CD
## 1973 Presentation, discussion on El Paso FR vs. CD
## 1974 Presentation, discussion on El Paso FR vs. CD
## 1975 Presentation, discussion on El Paso FR vs. CD
## 1976 Presentation, discussion on El Paso FR vs. CD
## 1977 Presentation, discussion on El Paso FR vs. CD
## 1978 Presentation, discussion on El Paso FR vs. CD
## 1979 Presentation, discussion on El Paso FR vs. CD
## 1980 Presentation, discussion on El Paso FR vs. CD
## 1981 Presentation, discussion on El Paso FR vs. CD
## 1982 Presentation, discussion on El Paso FR vs. CD
## 1983 Presentation, discussion on El Paso FR vs. CD
## 1984 Presentation, discussion on El Paso FR vs. CD
## 1985 Presentation, discussion on El Paso FR vs. CD
## 1986 Presentation, discussion on El Paso FR vs. CD
## 1987 Presentation, discussion on El Paso FR vs. CD
## 1988 Presentation, discussion on El Paso FR vs. CD
## 1989 FW: Sun Devil Cost Sheet
## 1990 FW: Sun Devil Cost Sheet
## 1991 FW: Sun Devil Cost Sheet
## 1992 Sun Devil - "to do" list
## 1993 RE: Sun Devil - ambient temperature affect on pipeline capacity
## 1994 RE: Gas Pipeline Station Waste Heat Recovery
## 1995 RE: Gas Pipeline Station Waste Heat Recovery
## 1996 RE: Gas Pipeline Station Waste Heat Recovery
## 1997 RE: Gas Pipeline Station Waste Heat Recovery
## 1998 RE: Gas Pipeline Station Waste Heat Recovery
## 1999 Horsepower Requirements
## 2000 Horsepower Requirements
## 2001 Horsepower Requirements
## 2002 Horsepower Requirements
## 2003 RE: Az Public Service update on Sun Devil
## 2004 RE: Az Public Service update on Sun Devil
## 2005 Sun Devil Expansion Options
## 2006 Sun Devil Expansion Options
## 2007 Sun Devil Alterative - Revision #10
## 2008 Sun Devil Alterative - Revision #10
## 2009 Sun Devil Alterative - Revision #10
## 2010 Sun Devil Alterative - Revision #10
## 2011 Sun Devil Design Conditions
## 2012 Sun Devil Design Conditions
## 2013 Sun Devil Design Conditions
## 2014 FW: Clip
## 2015 Sun Devil Cases
## 2016 Sun Devil Cases
## 2017 Sun Devil Cases
## 2018 Sun Devil Cases
## 2019 Sun Devil Cases
## 2020 RE: FERC application cost for Sun Devil
## 2021 RE: FERC application cost for Sun Devil
## 2022 RE: Panda Energy
## 2023 RE: Panda Energy
## 2024 Proposal Issues List
## 2025 Proposal Issues List
## 2026 Proposal Issues List
## 2027 Proposal Issues List
## 2028 RE: Sun Devil delivery pressure
## 2029 RE: Confidentiality Agreement
## 2030 Maximum Hourly Flow
## 2031 Maximum Hourly Flow
## 2032 Sun Devil Cost Reconciliation
## 2033 Sun Devil Cost Reconciliation
## 2034 Sun Devil Cost Reconciliation
## 2035 Sun Devil Cost Reconciliation
## 2036 Sun Devil Cost Reconciliation
## 2037 Sun Devil Cost Reconciliation
## 2038 Sun Devil Cost Reconciliation
## 2039 Sun Devil Cost Reconciliation
## 2040 Sun Devil Projet - Final Cash Flow Estimate; Alternative Analysis; and Agua Fria National Monument
## 2041 Sun Devil Projet - Final Cash Flow Estimate; Alternative Analysis; and Agua Fria National Monument
## 2042 Sun Devil Projet - Final Cash Flow Estimate; Alternative Analysis; and Agua Fria National Monument
## 2043 Sun Devil Projet - Final Cash Flow Estimate; Alternative Analysis; and Agua Fria National Monument
## 2044 Sun Devil Projet - Final Cash Flow Estimate; Alternative Analysis; and Agua Fria National Monument
## 2045 Sun Devil Projet - Final Cash Flow Estimate; Alternative Analysis; and Agua Fria National Monument
## 2046 Sun Devil Projet - Final Cash Flow Estimate; Alternative Analysis; and Agua Fria National Monument
## 2047 Sun Devil Projet - Final Cash Flow Estimate; Alternative Analysis; and Agua Fria National Monument
## 2048 RE: Salt storage
## 2049 RE: Salt storage
## 2050 RE: Salt storage
## 2051 RE: Salt storage
## 2052 RE: Salt storage
## 2053 RE: Salt storage
## 2054 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 2055 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 2056 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 2057 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 2058 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 2059 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 2060 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 2061 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 2062 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 2063 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 2064 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 2065 Additional Note
## 2066 Additional Note
## 2067 Additional Note
## 2068 Additional Note
## 2069 Additional Note
## 2070 Additional Note
## 2071 Additional Note
## 2072 Additional Note
## 2073 Additional Note
## 2074 Additional Note
## 2075 Additional Note
## 2076 Additional Note
## 2077 ENSR Cashflow Estimate Through Construction of Project Sundevil
## 2078 ENSR Cashflow Estimate Through Construction of Project Sundevil
## 2079 ENSR Cashflow Estimate Through Construction of Project Sundevil
## 2080 ENSR Cashflow Estimate Through Construction of Project Sundevil
## 2081 ENSR Cashflow Estimate Through Construction of Project Sundevil
## 2082 ENSR Cashflow Estimate Through Construction of Project Sundevil
## 2083 ENSR Cashflow Estimate Through Construction of Project Sundevil
## 2084 ENSR Cashflow Estimate Through Construction of Project Sundevil
## 2085 ENSR Cashflow Estimate Through Construction of Project Sundevil
## 2086 ENSR Cashflow Estimate Through Construction of Project Sundevil
## 2087 ENSR Cashflow Estimate Through Construction of Project Sundevil
## 2088 Sun Devil Estimate
## 2089 Sun Devil Estimate
## 2090 Fatal Flaw Analysis Status Report
## 2091 Fatal Flaw Analysis Status Report
## 2092 Fatal Flaw Analysis Status Report
## 2093 Fatal Flaw Analysis Status Report
## 2094 Fatal Flaw Analysis Status Report
## 2095 Fatal Flaw Analysis Status Report
## 2096 Fatal Flaw Analysis Status Report
## 2097 Fatal Flaw Analysis Status Report
## 2098 Fatal Flaw Analysis Status Report
## 2099 Fatal Flaw Analysis Status Report
## 2100 Fatal Flaw Analysis Status Report
## 2101 Cursory Review of Faults and Seismicity Potential - Sundevil
## 2102 Cursory Review of Faults and Seismicity Potential - Sundevil
## 2103 Cursory Review of Faults and Seismicity Potential - Sundevil
## 2104 Cursory Review of Faults and Seismicity Potential - Sundevil
## 2105 Cursory Review of Faults and Seismicity Potential - Sundevil
## 2106 Cursory Review of Faults and Seismicity Potential - Sundevil
## 2107 Cursory Review of Faults and Seismicity Potential - Sundevil
## 2108 Cursory Review of Faults and Seismicity Potential - Sundevil
## 2109 Cursory Review of Faults and Seismicity Potential - Sundevil
## 2110 Navajo ROW costs
## 2111 Navajo ROW costs
## 2112 Navajo ROW costs
## 2113 Navajo ROW costs
## 2114 Navajo ROW costs
## 2115 Navajo ROW costs
## 2116 Navajo ROW costs
## 2117 RE: Agencies and NGOs already contacted for Sun Devil
## 2118 RE: Agencies and NGOs already contacted for Sun Devil
## 2119 RE: Agencies and NGOs already contacted for Sun Devil
## 2120 RE: Agencies and NGOs already contacted for Sun Devil
## 2121 RE: Agencies and NGOs already contacted for Sun Devil
## 2122 RE: Agencies and NGOs already contacted for Sun Devil
## 2123 RE: Agencies and NGOs already contacted for Sun Devil
## 2124 RE: Agencies and NGOs already contacted for Sun Devil
## 2125 RE: Agencies and NGOs already contacted for Sun Devil
## 2126 RE: Agencies and NGOs already contacted for Sun Devil
## 2127 RE: Agencies and NGOs already contacted for Sun Devil
## 2128 RE: Agencies and NGOs already contacted for Sun Devil
## 2129 RE: Agencies and NGOs already contacted for Sun Devil
## 2130 RE: Further Strategic Planning - Environmental
## 2131 RE: Further Strategic Planning - Environmental
## 2132 RE: Further Strategic Planning - Environmental
## 2133 RE: Further Strategic Planning - Environmental
## 2134 RE: Further Strategic Planning - Environmental
## 2135 RE: Further Strategic Planning - Environmental
## 2136 RE: Further Strategic Planning - Environmental
## 2137 RE: Further Strategic Planning - Environmental
## 2138 Land Use Categories and Constraints along the proposed Sun Devil Route
## 2139 Land Use Categories and Constraints along the proposed Sun Devil Route
## 2140 Land Use Categories and Constraints along the proposed Sun Devil Route
## 2141 Land Use Categories and Constraints along the proposed Sun Devil Route
## 2142 Land Use Categories and Constraints along the proposed Sun Devil Route
## 2143 Land Use Categories and Constraints along the proposed Sun Devil Route
## 2144 Land Use Categories and Constraints along the proposed Sun Devil Route
## 2145 Land Use Categories and Constraints along the proposed Sun Devil Route
## 2146 Land Use Categories and Constraints along the proposed Sun Devil Route
## 2147 Land Use Categories and Constraints along the proposed Sun Devil Route
## 2148 Costs/Activities to FERC Filing- Sun Devil
## 2149 Costs/Activities to FERC Filing- Sun Devil
## 2150 Costs/Activities to FERC Filing- Sun Devil
## 2151 Costs/Activities to FERC Filing- Sun Devil
## 2152 RE: Additional Agency Correspondence
## 2153 RE: Additional Agency Correspondence
## 2154 RE: Additional Agency Correspondence
## 2155 RE: Additional Agency Correspondence
## 2156 RE: Additional Agency Correspondence
## 2157 RE: Additional Agency Correspondence
## 2158 RE: Additional Agency Correspondence
## 2159 RE: Additional Agency Correspondence
## 2160 RE: Additional Agency Correspondence
## 2161 RE: Additional Agency Correspondence
## 2162 Agencies and NGOs already contacted for Sun Devil
## 2163 Agencies and NGOs already contacted for Sun Devil
## 2164 Agencies and NGOs already contacted for Sun Devil
## 2165 Agencies and NGOs already contacted for Sun Devil
## 2166 Agencies and NGOs already contacted for Sun Devil
## 2167 Agencies and NGOs already contacted for Sun Devil
## 2168 Agencies and NGOs already contacted for Sun Devil
## 2169 Agencies and NGOs already contacted for Sun Devil
## 2170 Agencies and NGOs already contacted for Sun Devil
## 2171 Agencies and NGOs already contacted for Sun Devil
## 2172 Preliminary Environmental Timeline for Sun Devil Project
## 2173 Preliminary Environmental Timeline for Sun Devil Project
## 2174 Preliminary Environmental Timeline for Sun Devil Project
## 2175 Preliminary Environmental Timeline for Sun Devil Project
## 2176 Preliminary Environmental Timeline for Sun Devil Project
## 2177 Preliminary Environmental Timeline for Sun Devil Project
## 2178 Preliminary Environmental Timeline for Sun Devil Project
## 2179 Preliminary Environmental Timeline for Sun Devil Project
## 2180 Preliminary Environmental Timeline for Sun Devil Project
## 2181 Preliminary Environmental Timeline for Sun Devil Project
## 2182 Preliminary Environmental Timeline for Sun Devil Project
## 2183 FW: Kinder Morgan - Sonoran Project
## 2184 FW: Kinder Morgan - Sonoran Project
## 2185 FW: Kinder Morgan - Sonoran Project
## 2186 FW: Kinder Morgan - Sonoran Project
## 2187 RE: Panda Energy Extension
## 2188 RE: Confidentiality of Sun Devil???
## 2189 RE: Confidentiality of Sun Devil???
## 2190 RE: Confidentiality of Sun Devil???
## 2191 FW: Confidentiality of Sun Devil???
## 2192 FW: Confidentiality of Sun Devil???
## 2193 FW: Confidentiality of Sun Devil???
## 2194 RE: Additional Cost Estimate - Sun Devil Project
## 2195 RE: Additional Cost Estimate - Sun Devil Project
## 2196 RE: Additional Cost Estimate - Sun Devil Project
## 2197 RE: Additional Cost Estimate - Sun Devil Project
## 2198 RE: Additional Cost Estimate - Sun Devil Project
## 2199 RE: Additional Cost Estimate - Sun Devil Project
## 2200 RE: Additional Cost Estimate - Sun Devil Project
## 2201 RE: PR Firm in Arizona
## 2202 RE: Additional Cost Estimate - Sun Devil Project
## 2203 RE: Additional Cost Estimate - Sun Devil Project
## 2204 RE: Additional Cost Estimate - Sun Devil Project
## 2205 RE: Additional Cost Estimate - Sun Devil Project
## 2206 RE: Additional Cost Estimate - Sun Devil Project
## 2207 RE: Additional Cost Estimate - Sun Devil Project
## 2208 RE: Additional Cost Estimate - Sun Devil Project
## 2209 RE: Additional Cost Estimate - Sun Devil Project
## 2210 RE: Schedule for Preliminary Cost Estimate
## 2211 RE: Schedule for Preliminary Cost Estimate
## 2212 RE: Schedule for Preliminary Cost Estimate
## 2213 RE: Schedule for Preliminary Cost Estimate
## 2214 RE: Schedule for Preliminary Cost Estimate
## 2215 RE: Schedule for Preliminary Cost Estimate
## 2216 RE: Schedule for Preliminary Cost Estimate
## 2217 RE: Schedule for Preliminary Cost Estimate
## 2218 RE: Schedule for Preliminary Cost Estimate
## 2219 RE: Schedule for Preliminary Cost Estimate
## 2220 RE: Schedule for Preliminary Cost Estimate
## 2221 RE: GITA GIS for Oil and Gas meeting
## 2222 RE: GITA GIS for Oil and Gas meeting
## 2223 Ssun Devil Expansion Project - Level A Estimate
## 2224 Ssun Devil Expansion Project - Level A Estimate
## 2225 Ssun Devil Expansion Project - Level A Estimate
## 2226 Ssun Devil Expansion Project - Level A Estimate
## 2227 RE: Construction Cams
## 2228 Sun Devil Max Rate Contract
## 2229 Sun Devil Contracts
## 2230 Sun Devil - - Negotiated Rate Contract
## 2231 RE: TW ROW Alignment
## 2232 Sun Devil Project Comparisons To El Paso
## 2233 Sun Devil Project Comparisons To El Paso
## 2234 Sun Devil Project Comparisons To El Paso
## 2235 Sun Devil Project Comparisons To El Paso
## 2236 Sun Devil Project Comparisons To El Paso
## 2237 Revised Cost Estimate for El Paso Sun Devil Competitive Estimate
## 2238 Press Release for your Review - TW s Sun Devil Expansion
## 2239 Press Release for your Review - TW s Sun Devil Expansion
## 2240 Press Release for your Review - TW s Sun Devil Expansion
## 2241 Press Release for your Review - TW s Sun Devil Expansion
## 2242 Press Release for your Review - TW s Sun Devil Expansion
## 2243 Press Release for your Review - TW s Sun Devil Expansion
## 2244 Press Release for your Review - TW s Sun Devil Expansion
## 2245 Press Release for your Review - TW s Sun Devil Expansion
## 2246 Press Release for your Review - TW s Sun Devil Expansion
## 2247 Press Release for your Review - TW s Sun Devil Expansion
## 2248 RE: Draft 4 - TW Sun Devil Successful Open Season Press Release
## 2249 RE: Draft 4 - TW Sun Devil Successful Open Season Press Release
## 2250 RE: Draft 4 - TW Sun Devil Successful Open Season Press Release
## 2251 RE: Draft 4 - TW Sun Devil Successful Open Season Press Release
## 2252 RE: Draft 4 - TW Sun Devil Successful Open Season Press Release
## 2253 RE: Draft 4 - TW Sun Devil Successful Open Season Press Release
## 2254 RE: Draft 4 - TW Sun Devil Successful Open Season Press Release
## 2255 RE: Draft 4 - TW Sun Devil Successful Open Season Press Release
## 2256 RE: Draft 4 - TW Sun Devil Successful Open Season Press Release
## 2257 RE: Draft 4 - TW Sun Devil Successful Open Season Press Release
## 2258 RE: Draft 4 - TW Sun Devil Successful Open Season Press Release
## 2259 RE: Draft 4 - TW Sun Devil Successful Open Season Press Release
## 2260 RE: Draft 4 - TW Sun Devil Successful Open Season Press Release
## 2261 RE: Draft 4 - TW Sun Devil Successful Open Season Press Release
## 2262 RE: Draft 4 - TW Sun Devil Successful Open Season Press Release
## 2263 RE: Draft 4 - TW Sun Devil Successful Open Season Press Release
## 2264 RE: Draft 4 - TW Sun Devil Successful Open Season Press Release
## 2265 RE: Draft 4 - TW Sun Devil Successful Open Season Press Release
## 2266 RE: Draft 2 - TW Sun Devil Successful Open Season Press Release
## 2267 RE: Draft 2 - TW Sun Devil Successful Open Season Press Release
## 2268 RE: Draft 2 - TW Sun Devil Successful Open Season Press Release
## 2269 RE: Draft 2 - TW Sun Devil Successful Open Season Press Release
## 2270 RE: Draft 2 - TW Sun Devil Successful Open Season Press Release
## 2271 RE: Draft 2 - TW Sun Devil Successful Open Season Press Release
## 2272 RE: Draft 2 - TW Sun Devil Successful Open Season Press Release
## 2273 RE: Draft 2 - TW Sun Devil Successful Open Season Press Release
## 2274 RE: Draft 2 - TW Sun Devil Successful Open Season Press Release
## 2275 RE: Draft 2 - TW Sun Devil Successful Open Season Press Release
## 2276 Sun Devil - Helicopter Fly-Over of Routes
## 2277 Sun Devil - Helicopter Fly-Over of Routes
## 2278 Sun Devil - Helicopter Fly-Over of Routes
## 2279 Sun Devil - Helicopter Fly-Over of Routes
## 2280 Sun Devil - Helicopter Fly-Over of Routes
## 2281 Sun Devil - Helicopter Fly-Over of Routes
## 2282 Sun Devil - Helicopter Fly-Over of Routes
## 2283 Sun Devil - Helicopter Fly-Over of Routes
## 2284 Sun Devil - Helicopter Fly-Over of Routes
## 2285 Sun Devil - Helicopter Fly-Over of Routes
## 2286 Sun Devil - Helicopter Fly-Over of Routes
## 2287 Sun Devil - Helicopter Fly-Over of Routes
## 2288 Sun Devil - Helicopter Fly-Over of Routes
## 2289 Sun Devil - Helicopter Fly-Over of Routes
## 2290 Sun Devil - Helicopter Fly-Over of Routes
## 2291 Sun Devil - Helicopter Fly-Over of Routes
## 2292 RE: Sun Devil Pipeline Lengths
## 2293 RE: Sun Devil Pipeline Lengths
## 2294 RE: Sun Devil Pipeline Lengths
## 2295 RE: Sun Devil Pipeline Lengths
## 2296 RE: Sun Devil Pipeline Lengths
## 2297 Re: Sun Devil Marketing.xls
## 2298 Re: Sun Devil Marketing.xls
## 2299 Re: Sun Devil Marketing.xls
## 2300 Re: Sun Devil Marketing.xls
## 2301 Navajo ROW - Sun Devil
## 2302 Navajo ROW - Sun Devil
## 2303 Navajo ROW - Sun Devil
## 2304 Natural Gas Infrastructure Committee Meeting in Houston
## 2305 Natural Gas Infrastructure Committee Meeting in Houston
## 2306 Natural Gas Infrastructure Committee Meeting in Houston
## 2307 Natural Gas Infrastructure Committee Meeting in Houston
## 2308 Natural Gas Infrastructure Committee Meeting in Houston
## 2309 Natural Gas Infrastructure Committee Meeting in Houston
## 2310 Natural Gas Infrastructure Committee Meeting in Houston
## 2311 Natural Gas Infrastructure Committee Meeting in Houston
## 2312 Natural Gas Infrastructure Committee Meeting in Houston
## 2313 Natural Gas Infrastructure Committee Meeting in Houston
## 2314 Natural Gas Infrastructure Committee Meeting in Houston
## 2315 Dick Ingersoll
## 2316 Dick Ingersoll
## 2317 Dick Ingersoll
## 2318 Sun Devil Fatal Flaw Analysis/Aff. W.O.
## 2319 Sun Devil Fatal Flaw Analysis/Aff. W.O.
## 2320 Sun Devil Fatal Flaw Analysis/Aff. W.O.
## 2321 Sun Devil Fatal Flaw Analysis/Aff. W.O.
## 2322 Sun Devil Fatal Flaw Analysis/Aff. W.O.
## 2323 Transwestern
## 2324 Transwestern
## 2325 Transwestern
## 2326 Sun Devil Project - Level B Request "REVISED"
## 2327 Sun Devil Project - Level B Request "REVISED"
## 2328 Sun Devil Project - Level B Request "REVISED"
## 2329 Sun Devil Project - Level B Request "REVISED"
## 2330 Sun Devil Project - Level B Request "REVISED"
## 2331 Sun Devil Project - Level B Request "REVISED"
## 2332 RE: Project Sun Devil and Red Rock Mainline Expansion Project
## 2333 RE: Project Sun Devil and Red Rock Mainline Expansion Project
## 2334 RE: Project Sun Devil and Red Rock Mainline Expansion Project
## 2335 RE: Project Sun Devil and Red Rock Mainline Expansion Project
## 2336 RE: Project Sun Devil and Red Rock Mainline Expansion Project
## 2337 RE: Project Sun Devil and Red Rock Mainline Expansion Project
## 2338 RE: Project Sun Devil and Red Rock Mainline Expansion Project
## 2339 RE: Project Sun Devil and Red Rock Mainline Expansion Project
## 2340 RE: Project Sun Devil and Red Rock Mainline Expansion Project
## 2341 RE: Project Sun Devil and Red Rock Mainline Expansion Project
## 2342 RE: Transwestern Sun Devil Expansion
## 2343 Preliminary Environmental Timeline - Sun Devil
## 2344 Preliminary Environmental Timeline - Sun Devil
## 2345 Preliminary Environmental Timeline - Sun Devil
## 2346 Preliminary Environmental Timeline - Sun Devil
## 2347 Preliminary Environmental Timeline - Sun Devil
## 2348 Preliminary Environmental Timeline - Sun Devil
## 2349 Preliminary Environmental Timeline - Sun Devil
## 2350 Preliminary Environmental Timeline - Sun Devil
## 2351 Preliminary Environmental Timeline - Sun Devil
## 2352 Sun Devil Project - Preliminary Scoping and Fatal Flaw Analysis
## 2353 Sun Devil Project - Preliminary Scoping and Fatal Flaw Analysis
## 2354 Sun Devil Project - Preliminary Scoping and Fatal Flaw Analysis
## 2355 Sun Devil Project - Preliminary Scoping and Fatal Flaw Analysis
## 2356 Sun Devil Project - Preliminary Scoping and Fatal Flaw Analysis
## 2357 Sun Devil Project - Preliminary Scoping and Fatal Flaw Analysis
## 2358 Sun Devil Project - Preliminary Scoping and Fatal Flaw Analysis
## 2359 Sun Devil Project - Preliminary Scoping and Fatal Flaw Analysis
## 2360 Sun Devil Project - Preliminary Scoping and Fatal Flaw Analysis
## 2361 Sun Devil Project - Preliminary Scoping and Fatal Flaw Analysis
## 2362 Sun Devil Project - Preliminary Scoping and Fatal Flaw Analysis
## 2363 RE: Phone Conversation with TNC - Sun Devil Project
## 2364 RE: Phone Conversation with TNC - Sun Devil Project
## 2365 RE: Phone Conversation with TNC - Sun Devil Project
## 2366 RE: Phone Conversation with TNC - Sun Devil Project
## 2367 RE: Phone Conversation with TNC - Sun Devil Project
## 2368 RE: Phone Conversation with TNC - Sun Devil Project
## 2369 FW: Phone Conversation with TNC
## 2370 FW: Phone Conversation with TNC
## 2371 FW: Phone Conversation with TNC
## 2372 FW: Phone Conversation with TNC
## 2373 RE: Project Sun Devil EIS
## 2374 RE: Project Sun Devil EIS
## 2375 RE: Project Sun Devil EIS
## 2376 RE: Project Sun Devil EIS
## 2377 RE: ENSR
## 2378 RE: ENSR
## 2379 Sun Devil Project - Level B Request
## 2380 Sun Devil Project - Level B Request
## 2381 Sun Devil Project - Level B Request
## 2382 RE: Proposed meeting
## 2383 RE: Proposed meeting
## 2384 Sun Devil Project
## 2385 Sun Devil Project
## 2386 Transwestern Open Season
## 2387 New Mexico Power Plant Project
## 2388 New Mexico Power Plant Project
## 2389 New Mexico Power Plant Project
## 2390 New Mexico Power Plant Project
## 2391 New Mexico Power Plant Project
## 2392 New Mexico Power Plant Project
## 2393 New Mexico Power Plant Project
## 2394 New Mexico Power Plant Project
## 2395 New Mexico Power Plant Project
## 2396 New Mexico Power Plant Project
## 2397 New Mexico Power Plant Project
## 2398 New Mexico Power Plant Project
## 2399 New Mexico Power Plant Project
## 2400 New Mexico Power Plant Project
## 2401 New Mexico Power Plant Project
## 2402 RE: Sun Devil open season draft
## 2403 Sun Devil Project
## 2404 Sun Devil Project
## 2405 Sun Devil Project
## 2406 Sun Devil Project
## 2407 Sun Devil Project
## 2408 Sun Devil Pipeline Project
## 2409 Sun Devil Pipeline Project
## 2410 Sun Devil Pipeline Project
## 2411 Sun Devil Pipeline Project
## 2412 Sun Devil Pipeline Project
## 2413 Sun Devil Pipeline Project
## 2414 San Juan Basin Most Active Operators
## 2415 El Paso Proceeding
## 2416 Transwestern Historical Pressures - Kingman
## 2417 Transwestern Historical Pressures - Kingman
## 2418 Transwestern Historical Pressures - Kingman
## 2419 Transwestern Historical Pressures - Kingman
## 2420 Transwestern Historical Pressures - Kingman
## 2421 FW: Salt storage
## 2422 FW: Salt storage
## 2423 FW: Salt storage
## 2424 Contact list.
## 2425 Contact list.
## 2426 Contact list.
## 2427 Contact list.
## 2428 Contact list.
## 2429 Contact list.
## 2430 Contact list.
## 2431 Contact list.
## 2432 Contact list.
## 2433 Contact list.
## 2434 RE: Keystone Storage Proposal
## 2435 RE: Keystone Storage Proposal
## 2436 NNG Storage Assets
## 2437 NNG Storage Assets
## 2438 NNG Storage Assets
## 2439 FW: New Generation Report for June 2001
## 2440 Keystone capacity
## 2441 keystone
## 2442 keystone
## 2443 keystone
## 2444 keystone
## 2445 FW: Citizens Flagstaff Interconnect
## 2446 FW: Citizens Flagstaff Interconnect
## 2447 FW: Citizens Flagstaff Interconnect
## 2448 FW: Pacer PL
## 2449 RE: Nitrogen facility
## 2450 RE: Nitrogen facility
## 2451 RE: Nitrogen facility
## 2452 RE: Nitrogen facility
## 2453 RE: Nitrogen facility
## 2454 RE: Nitrogen facility
## 2455 RE: Nitrogen facility
## 2456 RE: Nitrogen facility
## 2457 RE: Nitrogen facility
## 2458 RE: Nitrogen facility
## 2459 RE: Nitrogen facility
## 2460 EAMR Interconnect and Measurement Services
## 2461 EAMR Interconnect and Measurement Services
## 2462 EAMR Interconnect and Measurement Services
## 2463 EAMR Interconnect and Measurement Services
## 2464 EAMR Interconnect and Measurement Services
## 2465 EAMR Interconnect and Measurement Services
## 2466 EAMR Interconnect and Measurement Services
## 2467 Asset development deal sheet
## 2468 Power plant site development
## 2469 Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 2470 Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 2471 Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 2472 Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 2473 Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 2474 Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 2475 Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 2476 Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 2477 Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 2478 Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 2479 Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 2480 Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 2481 Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 2482 Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 2483 Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 2484 RE: Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 2485 RE: Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 2486 RE: Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 2487 RE: Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 2488 RE: Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 2489 RE: Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 2490 RE: Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 2491 RE: Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 2492 RE: Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 2493 RE: Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 2494 RE: Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 2495 RE: Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 2496 RE: Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 2497 RE: Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 2498 RE: Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 2499 Cost Estimate for MAOP facility requirements
## 2500 Cost Estimate for MAOP facility requirements
## 2501 Cost Estimate for MAOP facility requirements
## 2502 Cost Estimate for MAOP facility requirements
## 2503 TW - SJ Lateral MAOP Increase
## 2504 TW - SJ Lateral MAOP Increase
## 2505 TW - SJ Lateral MAOP Increase
## 2506 TW - SJ Lateral MAOP Increase
## 2507 TW - SJ Lateral MAOP Increase
## 2508 TW - SJ Lateral MAOP Increase
## 2509 TW - SJ Lateral MAOP Increase
## 2510 TW - SJ Lateral MAOP Increase
## 2511 TW - SJ Lateral MAOP Increase
## 2512 TW - SJ Lateral MAOP Increase
## 2513 TW - SJ Lateral MAOP Increase
## 2514 TW - SJ Lateral MAOP Increase
## 2515 TW - SJ Lateral MAOP Increase
## 2516 TW - SJ Lateral MAOP Increase
## 2517 Big Sandy Project pressure information
## 2518 Big Sandy Project pressure information
## 2519 Big Sandy Project pressure information
## 2520 Big Sandy Project pressure information
## 2521 Big Sandy Project pressure information
## 2522 Big Sandy Project pressure information
## 2523 Big Sandy Project pressure information
## 2524 Big Sandy Project pressure information
## 2525 Big Sandy Project pressure information
## 2526 Big Sandy Project pressure information
## 2527 Big Sandy Project pressure information
## 2528 P-2 Recycle & Cooling Issue
## 2529 P-2 Recycle & Cooling Issue
## 2530 P-2 Recycle & Cooling Issue
## 2531 P-2 Recycle & Cooling Issue
## 2532 P-2 Recycle & Cooling Issue
## 2533 P-2 Recycle & Cooling Issue
## 2534 P-2 Recycle & Cooling Issue
## 2535 P-2 Recycle & Cooling Issue
## 2536 P-2 Recycle & Cooling Issue
## 2537 P-2 Recycle & Cooling Issue
## 2538 P-2 Recycle & Cooling Issue
## 2539 P-2 Recycle & Cooling Issue
## 2540 P-2 Recycle & Cooling Issue
## 2541 P-2 Recycle & Cooling Issue
## 2542 P-2 Recycle & Cooling Issue
## 2543 P-2 Recycle & Cooling Issue
## 2544 P-2 Recycle & Cooling Issue
## 2545 P-2 Recycle & Cooling Issue
## 2546 P-2 Recycle & Cooling Issue
## 2547 P-2 Recycle & Cooling Issue
## 2548 Enron - Kinder Morgan Hueco Pipeline Project
## 2549 Enron - Kinder Morgan Hueco Pipeline Project
## 2550 Enron - Kinder Morgan Hueco Pipeline Project
## 2551 Enron - Kinder Morgan Hueco Pipeline Project
## 2552 Enron - Kinder Morgan Hueco Pipeline Project
## 2553 Enron - Kinder Morgan Hueco Pipeline Project
## 2554 Enron - Kinder Morgan Hueco Pipeline Project
## 2555 Enron - Kinder Morgan Hueco Pipeline Project
## 2556 Enron - Kinder Morgan Hueco Pipeline Project
## 2557 Enron - Kinder Morgan Hueco Pipeline Project
## 2558 San Juan Upgrade Pressures
## 2559 San Juan Upgrade Pressures
## 2560 San Juan Upgrade Pressures
## 2561 San Juan Upgrade Pressures
## 2562 San Juan Upgrade Pressures
## 2563 San Juan Upgrade Pressures
## 2564 TW San Juan Lateral
## 2565 TW San Juan Lateral
## 2566 TW San Juan Lateral
## 2567 TW San Juan Lateral
## 2568 TW San Juan Lateral
## 2569 TW San Juan Lateral
## 2570 TW San Juan Lateral
## 2571 TW San Juan Lateral
## 2572 TW San Juan Lateral
## 2573 TW San Juan Lateral
## 2574 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 2575 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 2576 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 2577 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 2578 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 2579 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 2580 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 2581 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 2582 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 2583 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 2584 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 2585 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 2586 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 2587 TW-West Texas Expansion Level "A" release cost estimate 4/5/2001
## 2588 TW-West Texas Expansion Level "A" release cost estimate 4/5/2001
## 2589 TW-West Texas Expansion Level "A" release cost estimate 4/5/2001
## 2590 TW-West Texas Expansion Level "A" release cost estimate 4/5/2001
## 2591 TW-West Texas Expansion Level "A" release cost estimate 4/5/2001
## 2592 TW-West Texas Expansion Level "A" release cost estimate 4/5/2001
## 2593 TW-West Texas Expansion Level "A" release cost estimate 4/5/2001
## 2594 TW-West Texas Expansion Level "A" release cost estimate 4/5/2001
## 2595 TW-West Texas Expansion Level "A" release cost estimate 4/5/2001
## 2596 TW-West Texas Expansion Level "A" release cost estimate 4/5/2001
## 2597 TW-West Texas Expansion Level "A" release cost estimate 4/5/2001
## 2598 TW-West Texas Expansion Level "A" release cost estimate 4/5/2001
## 2599 TW-West Texas Expansion Level "A" release cost estimate 4/5/2001
## 2600 TW-West Texas Expansion Level "A" release cost estimate 4/5/2001
## 2601 TW-West Texas Expansion Level "A" release cost estimate 4/5/2001
## 2602 TW-West Texas Expansion Level "A" release cost estimate 4/5/2001
## 2603 TW-West Texas Expansion Level "A" release cost estimate 4/5/2001
## 2604 TW-West Texas Expansion Level "A" release cost estimate 4/5/2001
## 2605 TW-West Texas Expansion Level "A" release cost estimate 4/5/2001
## 2606 TW-West Texas Expansion Level "A" release cost estimate 4/5/2001
## 2607 TW-West Texas Expansion Level "A" release cost estimate 4/5/2001
## 2608 TW-West Texas Expansion Level "A" release cost estimate 4/5/2001
## 2609 TW-West Texas Expansion Level "A" release cost estimate 4/5/2001
## 2610 TW-West Texas Expansion Level "A" release cost estimate 4/5/2001
## 2611 TW-West Texas Expansion Level "A" release cost estimate 4/5/2001
## 2612 TW-West Texas Expansion Level "A" release cost estimate 4/5/2001
## 2613 TW-West Texas Expansion Level "A" release cost estimate 4/5/2001
## 2614 Topock Lateral
## 2615 Topock Lateral
## 2616 Topock Lateral
## 2617 Topock Lateral
## 2618 Needles Pressure Requirement
## 2619 Needles Pressure Requirement
## 2620 Needles Pressure Requirement
## 2621 Needles Pressure Requirement
## 2622 Needles Pressure Requirement
## 2623 Needles Pressure Requirement
## 2624 Needles Pressure Requirement
## 2625 Needles Pressure Requirement
## 2626 Needles Pressure Requirement
## 2627 Needles Pressure Requirement
## 2628 Needles Pressure Requirement
## 2629 Needles Pressure Requirement
## 2630 Needles Pressure Requirement
## 2631 Needles Pressure Requirement
## 2632 Re: Needles Pressure Requirement
## 2633 Re: Needles Pressure Requirement
## 2634 Re: Needles Pressure Requirement
## 2635 Re: Needles Pressure Requirement
## 2636 Re: Needles Pressure Requirement
## 2637 Re: Needles Pressure Requirement
## 2638 Re: Needles Pressure Requirement
## 2639 Re: Needles Pressure Requirement
## 2640 Re: Needles Pressure Requirement
## 2641 Re: Needles Pressure Requirement
## 2642 Re: Needles Pressure Requirement
## 2643 Re: Needles Pressure Requirement
## 2644 Re: Needles Pressure Requirement
## 2645 Re: Needles Pressure Requirement
## 2646 Re: Needles Pressure Requirement
## 2647 Re: Needles Pressure Requirement
## 2648 Re: Needles Pressure Requirement
## 2649 Re: Needles Pressure Requirement
## 2650 Re: Needles Pressure Requirement
## 2651 Re: Needles Pressure Requirement
## 2652 Re: Needles Pressure Requirement
## 2653 Re: Needles Pressure Requirement
## 2654 Re: Needles Pressure Requirement
## 2655 Re: Needles Pressure Requirement
## 2656 Re: Needles Pressure Requirement
## 2657 Re: Needles Pressure Requirement
## 2658 Re: Needles Pressure Requirement
## 2659 Re: Needles Pressure Requirement
## 2660 Re: Needles Pressure Requirement
## 2661 Re: Energy Farm Project - Bloomfield, New Mexico
## 2662 Re: Energy Farm Project - Bloomfield, New Mexico
## 2663 Re: Energy Farm Project - Bloomfield, New Mexico
## 2664 Re: Energy Farm Project - Bloomfield, New Mexico
## 2665 Re: Energy Farm Project - Bloomfield, New Mexico
## 2666 Re: Energy Farm Project - Bloomfield, New Mexico
## 2667 Re: Energy Farm Project - Bloomfield, New Mexico
## 2668 Energy Farm Project - Bloomfield, New Mexico
## 2669 Energy Farm Project - Bloomfield, New Mexico
## 2670 Energy Farm Project - Bloomfield, New Mexico
## 2671 Energy Farm Project - Bloomfield, New Mexico
## 2672 Energy Farm Project - Bloomfield, New Mexico
## 2673 Energy Farm Project - Bloomfield, New Mexico
## 2674 Energy Farm Project - Bloomfield, New Mexico
## 2675 Energy Farm Project - Bloomfield, New Mexico
## 2676 Energy Farm Project - Bloomfield, New Mexico
## 2677 revised form agreement
## 2678 revised form agreement
## 2679 revised form agreement
## 2680 Recycle Line/Coolers
## 2681 Recycle Line/Coolers
## 2682 Recycle Line/Coolers
## 2683 Recycle Line/Coolers
## 2684 Recycle Line/Coolers
## 2685 Belen, NM site gas supply
## 2686 Belen, NM site gas supply
## 2687 Belen, NM site gas supply
## 2688 Belen, NM site gas supply
## 2689 Belen, NM site gas supply
## 2690 Re: Ameramex Project- Bloomfield
## 2691 Re: Ameramex Project- Bloomfield
## 2692 Re: Ameramex Project- Bloomfield
## 2693 Re: Ameramex Project- Bloomfield
## 2694 Re: Ameramex Project- Bloomfield
## 2695 Re: Ameramex Project- Bloomfield
## 2696 Re: Ameramex Project- Bloomfield
## 2697 Re: Ameramex Project- Bloomfield
## 2698 Re: Ameramex Project- Bloomfield
## 2699 Re: Ameramex Project- Bloomfield
## 2700 Re: Ameramex Project- Bloomfield
## 2701 Re: Ameramex Project- Bloomfield
## 2702 Re: Ameramex Project- Bloomfield
## 2703 Re: Ameramex Project- Bloomfield
## 2704 Re: Ameramex Project- Bloomfield
## 2705 Ameramex Project- Bloomfield
## 2706 Ameramex Project- Bloomfield
## 2707 Ameramex Project- Bloomfield
## 2708 Ameramex Project- Bloomfield
## 2709 Ameramex Project- Bloomfield
## 2710 Ameramex Project- Bloomfield
## 2711 Ameramex Project- Bloomfield
## 2712 Ameramex Project- Bloomfield
## 2713 Ameramex Project- Bloomfield
## 2714 Ameramex Project- Bloomfield
## 2715 Ameramex Project- Bloomfield
## 2716 Ameramex Project- Bloomfield
## 2717 Ameramex Project- Bloomfield
## 2718 Ameramex Project- Bloomfield
## 2719 TW Mainline Expansion
## 2720 TW Mainline Expansion
## 2721 TW Mainline Expansion
## 2722 TW Mainline Expansion
## 2723 TW Mainline Expansion
## 2724 TW Mainline Expansion
## 2725 TW Mainline Expansion
## 2726 TW Mainline Expansion
## 2727 TW Mainline Expansion
## 2728 TW Mainline Expansion
## 2729 TW Mainline Expansion
## 2730 TW Mainline Expansion
## 2731 TW Mainline Expansion
## 2732 Belen NM - Cogeneration
## 2733 Belen NM - Cogeneration
## 2734 Belen NM - Cogeneration
## 2735 Caithness Big Sandy, LLP
## 2736 Caithness Big Sandy, LLP
## 2737 Caithness Big Sandy, LLP
## 2738 Caithness Big Sandy, LLP
## 2739 Caithness Big Sandy, LLP
## 2740 Caithness Big Sandy, LLP
## 2741 Caithness Big Sandy, LLP
## 2742 Caithness Big Sandy, LLP
## 2743 Caithness Big Sandy, LLP
## 2744 Cost Estimates - Belen, NM Power Plant
## 2745 Cost Estimates - Belen, NM Power Plant
## 2746 Re: Transwestern Update Meeting
## 2747 Re: Transwestern Update Meeting
## 2748 Re: Transwestern Update Meeting
## 2749 Re: Transwestern Update Meeting
## 2750 Re: Transwestern Update Meeting
## 2751 Re: Transwestern Update Meeting
## 2752 Re: Transwestern Update Meeting
## 2753 Re: Transwestern Update Meeting
## 2754 Re: Transwestern Update Meeting
## 2755 Re: Transwestern Update Meeting
## 2756 Re: Transwestern Update Meeting
## 2757 Re: Transwestern Update Meeting
## 2758 Re: Transwestern Update Meeting
## 2759 Re: Transwestern Update Meeting
## 2760 Re: Transwestern Update Meeting
## 2761 Re: Transwestern Update Meeting
## 2762 Re: Transwestern Update Meeting
## 2763 Re: Transwestern Update Meeting
## 2764 Re: Transwestern Update Meeting
## 2765 Re: Transwestern Update Meeting
## 2766 Re: Transwestern Update Meeting
## 2767 Re: Transwestern Update Meeting
## 2768 Re: Transwestern Update Meeting
## 2769 Re: Transwestern Update Meeting
## 2770 Re: Transwestern Update Meeting
## 2771 Re: Transwestern Update Meeting
## 2772 Re: Transwestern Update Meeting
## 2773 Re: Transwestern Update Meeting
## 2774 Re: Transwestern Update Meeting
## 2775 Re: Transwestern Update Meeting
## 2776 Re: Transwestern Update Meeting
## 2777 Re: Transwestern Update Meeting
## 2778 Re: Transwestern Update Meeting
## 2779 Re: Transwestern Update Meeting
## 2780 Re: Transwestern Update Meeting
## 2781 Re: Transwestern Update Meeting
## 2782 Re: Transwestern Update Meeting
## 2783 TW Expansion Rates Sensitivity
## 2784 RE: Electric Pwr Conf - Natural Gas Infrastructure Committee
## 2785 RE: Electric Pwr Conf - Natural Gas Infrastructure Committee
## 2786 RE: GE Presenter for NGI subcommittee
## 2787 RE: GE Presenter for NGI subcommittee
## 2788 RE: GE Presenter for NGI subcommittee
## 2789 RE: GE Presenter for NGI subcommittee
## 2790 RE: Electric Pwr Conf - Natural Gas Infrastructure Committee
## 2791 RE: Electric Pwr Conf - Natural Gas Infrastructure Committee
## 2792 Natural Gas Infrastructure
## 2793 Natural Gas Infrastructure - Follow-up from Meeting
## 2794 Natural Gas Infrastructure - Follow-up from Meeting
## 2795 Natural Gas Infrastructure - Follow-up from Meeting
## 2796 Natural Gas Infrastructure - Follow-up from Meeting
## 2797 Natural Gas Infrastructure - Follow-up from Meeting
## 2798 Natural Gas Infrastructure - Follow-up from Meeting
## 2799 Natural Gas Infrastructure - Follow-up from Meeting
## 2800 Natural Gas Infrastructure - Follow-up from Meeting
## 2801 Natural Gas Infrastructure - Follow-up from Meeting
## 2802 EP2002 Follow-up - Alternative Power Track
## 2803 EP2002 Follow-up - Alternative Power Track
## 2804 EP2002 Follow-up - Alternative Power Track
## 2805 EP2002 Folllow-up
## 2806 EP2002 Folllow-up
## 2807 EP2002 Folllow-up
## 2808 EP2002 Folllow-up
## 2809 EP2002 Alternative Power Track Follow-up
## 2810 Chair Kit - ELECTRIC POWER
## 2811 Chair Kit - ELECTRIC POWER
## 2812 Chair Kit - ELECTRIC POWER
## 2813 ELECTRIC POWER is Next Week and We Look Forward to Seeing You
## 2814 Norwood bio
## 2815 Natural Gas Infrastructure - Final Presentation
## 2816 The race is on for new coal-fired generation
## 2817 Structural Risk and Lack of Liquidity Grow in Influence in Regional Gas Markets - CERA Private Report
## 2818 NEWGen October Release
## 2819 NEWGen October Release
## 2820 Enron/Dynegy Merger; Antitrust Issues
## 2821 Performance Reviews
## 2822 Performance Reviews
## 2823 2002 Opportunities
## 2824 2002 Opportunities
## 2825 2002 Opportunities
## 2826 2002 Opportunities
## 2827 2002 Opportunities
## 2828 2002 Opportunities
## 2829 2002 Opportunities
## 2830 2002 Opportunities
## 2831 2002 Opportunities
## 2832 RE: Panda Energy
## 2833 RE: Panda Energy
## 2834 ETS Year-end Performance Evaluation Process
## 2835 Re: FW: Sun Devil/Sonoran Pipeline
## 2836 Sun Devil Project - Fuel Study
## 2837 Sun Devil Project - Fuel Study
## 2838 Sun Devil Project - Fuel Study
## 2839 Sun Devil Project - Fuel Study
## 2840 Sun Devil
## 2841 Sun Devil
## 2842 Sun Devil
## 2843 Sun Devil
## 2844 Sun Devil
## 2845 Sun Devil
## 2846 Sun Devil
## 2847 Sun Devil
## 2848 Sun Devil
## 2849 Levelized Sun Devil Rates
## 2850 Levelized Sun Devil Rates
## 2851 EGS & Industry Mentions - 02/25/2002
## 2852 EGS and Industry Mentions
## 2853 Steve Cooper voicemail - 2/14/2002
## 2854 EGS & Industry Mentions - Houston Chronicle
## 2855 EGS & Industry Mentions - Houston Chronicle
## 2856 Fw: [pksacnh] FW: HOW TO IDENTIFY WHERE A DRIVER IS FROM
## 2857 Fw: [pksacnh] FW: HOW TO IDENTIFY WHERE A DRIVER IS FROM
## 2858 Fw: [pksacnh] FW: HOW TO IDENTIFY WHERE A DRIVER IS FROM
## 2859 Fw: [pksacnh] FW: HOW TO IDENTIFY WHERE A DRIVER IS FROM
## 2860 Fw: [pksacnh] FW: HOW TO IDENTIFY WHERE A DRIVER IS FROM
## 2861 Fw: [pksacnh] FW: HOW TO IDENTIFY WHERE A DRIVER IS FROM
## 2862 Fw: [pksacnh] FW: HOW TO IDENTIFY WHERE A DRIVER IS FROM
## 2863 Fw: [pksacnh] FW: HOW TO IDENTIFY WHERE A DRIVER IS FROM
## 2864 Fw: [pksacnh] FW: HOW TO IDENTIFY WHERE A DRIVER IS FROM
## 2865 Fw: [pksacnh] FW: HOW TO IDENTIFY WHERE A DRIVER IS FROM
## 2866 Fw: [pksacnh] FW: HOW TO IDENTIFY WHERE A DRIVER IS FROM
## 2867 El Paso Capacity Allocation
## 2868 El Paso Capacity Allocation
## 2869 El Paso Capacity Allocation
## 2870 El Paso Capacity Allocation
## 2871 El Paso Capacity Allocation
## 2872 El Paso FR conf. scheduled
## 2873 RE: Sun Devil Cost Sheet
## 2874 RE: Sun Devil Cost Sheet
## 2875 RE: Sun Devil Cost Sheet
## 2876 RE: Sun Devil Cost Sheet
## 2877 MS 150 Pledge
## 2878 MS 150 Pledge
## 2879 MS 150 Pledge
## 2880 MS 150 Pledge
## 2881 MS 150 Pledge
## 2882 MS 150 Pledge
## 2883 MS 150 Pledge
## 2884 MS 150 Pledge
## 2885 MS 150 Pledge
## 2886 MS 150 Pledge
## 2887 MS 150 Pledge
## 2888 MS 150 Pledge
## 2889 MS 150 Pledge
## 2890 MS 150 Pledge
## 2891 MS 150 Pledge
## 2892 MS 150 Pledge
## 2893 MS 150 Pledge
## 2894 MS 150 Pledge
## 2895 MS 150 Pledge
## 2896 MS 150 Pledge
## 2897 MS 150 Pledge
## 2898 MS 150 Pledge
## 2899 MS 150 Pledge
## 2900 MS 150 Pledge
## 2901 MS 150 Pledge
## 2902 MS 150 Pledge
## 2903 MS 150 Pledge
## 2904 MS 150 Pledge
## 2905 MS 150 Pledge
## 2906 Sun Devil Fuel Use - 1000 MMcf/d Expansion Scenario
## 2907 NEWGen February 2002 release
## 2908 usefull information
## 2909 usefull information
## 2910 usefull information
## 2911 usefull information
## 2912 usefull information
## 2913 usefull information
## 2914 usefull information
## 2915 usefull information
## 2916 usefull information
## 2917 usefull information
## 2918 usefull information
## 2919 usefull information
## 2920 usefull information
## 2921 usefull information
## 2922 usefull information
## 2923 usefull information
## 2924 usefull information
## 2925 usefull information
## 2926 usefull information
## 2927 usefull information
## 2928 usefull information
## 2929 usefull information
## 2930 Rights of Interested Parties Notice
## 2931 Susan
## 2932 Fwd: Important !!!!!!!!!!!!!!!! " Virus Alert "
## 2933 Fwd: Fw: Fwd: Fw: [Fwd: Fw: Please pass this candle on........]
## 2934 Natural Gas Market Looks for the Arrival of Winter - CERA Monthly Briefing
## 2935 Power Indices
## 2936 Gas Indices
## 2937 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2938 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2939 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2940 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2941 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2942 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2943 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2944 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2945 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2946 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2947 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2948 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2949 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2950 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2951 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2952 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2953 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2954 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2955 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2956 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2957 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2958 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2959 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2960 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2961 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2962 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2963 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2964 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2965 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2966 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2967 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2968 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2969 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2970 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2971 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2972 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2973 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2974 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2975 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2976 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2977 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2978 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2979 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2980 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2981 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2982 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2983 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2984 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2985 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2986 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2987 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2988 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2989 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2990 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2991 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2992 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2993 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2994 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2995 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2996 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2997 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2998 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 2999 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 3000 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 3001 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 3002 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 3003 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 3004 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 3005 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 3006 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 3007 ETS IT November Newsletter Now Available
## 3008 ETS IT November Newsletter Now Available
## 3009 PG&E Gas Transmission Puts New Lliine in Service and Files for 2003 Expansion
## 3010 PG&E Gas Transmission Puts New Lliine in Service and Files for 2003 Expansion
## 3011 PG&E Gas Transmission Puts New Lliine in Service and Files for 2003 Expansion
## 3012 PG&E Gas Transmission Puts New Lliine in Service and Files for 2003 Expansion
## 3013 PG&E Gas Transmission Puts New Lliine in Service and Files for 2003 Expansion
## 3014 PG&E Gas Transmission Puts New Lliine in Service and Files for 2003 Expansion
## 3015 PG&E Gas Transmission Puts New Lliine in Service and Files for 2003 Expansion
## 3016 PG&E Gas Transmission Puts New Lliine in Service and Files for 2003 Expansion
## 3017 PG&E Gas Transmission Puts New Lliine in Service and Files for 2003 Expansion
## 3018 PG&E Gas Transmission Puts New Lliine in Service and Files for 2003 Expansion
## 3019 PG&E Gas Transmission Puts New Lliine in Service and Files for 2003 Expansion
## 3020 PG&E Gas Transmission Puts New Lliine in Service and Files for 2003 Expansion
## 3021 PG&E Gas Transmission Puts New Lliine in Service and Files for 2003 Expansion
## 3022 PG&E Gas Transmission Puts New Lliine in Service and Files for 2003 Expansion
## 3023 PG&E Gas Transmission Puts New Lliine in Service and Files for 2003 Expansion
## 3024 PG&E Gas Transmission Puts New Lliine in Service and Files for 2003 Expansion
## 3025 PG&E Gas Transmission Puts New Lliine in Service and Files for 2003 Expansion
## 3026 PG&E Gas Transmission Puts New Lliine in Service and Files for 2003 Expansion
## 3027 Terrorism elevates energy policy importance
## 3028 ETS and Corporate Change Control
## 3029 HoustonChronicle.com News 6.47
## 3030 Enron In Action 11.19.01
## 3031 Three tips to make a good presentation
## 3032 Venezuela s New Hydrocarbon Law: Investment Implications - CERA Conference Call Notification
## 3033 Power Indices
## 3034 TW/ Agave---Atoka-3 capacity
## 3035 TW/ Agave---Atoka-3 capacity
## 3036 TW/ Agave---Atoka-3 capacity
## 3037 TW/ Agave---Atoka-3 capacity
## 3038 TW/ Agave---Atoka-3 capacity
## 3039 TW/ Agave---Atoka-3 capacity
## 3040 TW/ Agave---Atoka-3 capacity
## 3041 TW/ Agave---Atoka-3 capacity
## 3042 TW/ BP in Eddy County, NM.
## 3043 TW/ BP in Eddy County, NM.
## 3044 TW/ BP in Eddy County, NM.
## 3045 TW/ BP in Eddy County, NM.
## 3046 TW/ BP in Eddy County, NM.
## 3047 TW/ BP in Eddy County, NM.
## 3048 TW/ Agave ----meeting of Feb-8-2001
## 3049 TW/ Agave ----meeting of Feb-8-2001
## 3050 TW/ Agave ----meeting of Feb-8-2001
## 3051 TW/ Agave ----meeting of Feb-8-2001
## 3052 TW/ Agave ----meeting of Feb-8-2001
## 3053 TW/ Agave ----meeting of Feb-8-2001
## 3054 TW/ Agave ----meeting of Feb-8-2001
## 3055 TW/ Agave ----meeting of Feb-8-2001
## 3056 TW/ Agave ----meeting of Feb-8-2001
## 3057 TW/ Agave ----meeting of Feb-8-2001
## 3058 TW/ Agave ----meeting of Feb-8-2001
## 3059 TW/ Agave ----meeting of Feb-8-2001
## 3060 TW/ Agave ----meeting of Feb-8-2001
## 3061 TW/ Agave ----meeting of Feb-8-2001
## 3062 TW/ Agave ----meeting of Feb-8-2001
## 3063 TW/ Agave ----meeting of Feb-8-2001
## 3064 TW/ Agave ----meeting of Feb-8-2001
## 3065 TW/ Agave ----meeting of Feb-8-2001
## 3066 Re: Agave & Atoka System
## 3067 Re: Agave & Atoka System
## 3068 Re: Agave & Atoka System
## 3069 Re: Agave & Atoka System
## 3070 Re: Agave & Atoka System
## 3071 Re: Agave & Atoka System
## 3072 Re: Agave & Atoka System
## 3073 Re: Agave & Atoka System
## 3074 Re: Agave & Atoka System
## 3075 Re: Agave & Atoka System
## 3076 Re: Agave & Atoka System
## 3077 FW: Atoka Equipment Enhancement Analysis by ACTT - ACTT Quote 089100077
## 3078 FW: Atoka Equipment Enhancement Analysis by ACTT - ACTT Quote 089100077
## 3079 FW: Atoka Equipment Enhancement Analysis by ACTT - ACTT Quote 089100077
## 3080 FW: Atoka Equipment Enhancement Analysis by ACTT - ACTT Quote 089100077
## 3081 SoCal RLS Tariff/peaking rates
## 3082 SoCal RLS Tariff/peaking rates
## 3083 SoCal RLS Tariff/peaking rates
## 3084 SoCal RLS Tariff/peaking rates
## 3085 SoCal RLS Tariff/peaking rates
## 3086 SoCal RLS Tariff/peaking rates
## 3087 SoCal RLS Tariff/peaking rates
## 3088 SoCal RLS Tariff/peaking rates
## 3089 FW: Southern Trails Article on Western Leg
## 3090 FW: Southern Trails Article on Western Leg
## 3091 FW: Southern Trails Article on Western Leg
## 3092 FW: Southern Trails Article on Western Leg
## 3093 FW: Southern Trails Article on Western Leg
## 3094 FW: Southern Trails Article on Western Leg
## 3095 FW: Southern Trails Article on Western Leg
## 3096 FW: Southern Trails Article on Western Leg
## 3097 FW: Southern Trails Article on Western Leg
## 3098
## 3099
## 3100 Article on SoCal "Peaking" Rate
## 3101 Article on SoCal "Peaking" Rate
## 3102 Article on SoCal "Peaking" Rate
## 3103 Article on SoCal "Peaking" Rate
## 3104 Article on SoCal "Peaking" Rate
## 3105 Article on SoCal "Peaking" Rate
## 3106 Article on SoCal "Peaking" Rate
## 3107 Article on SoCal "Peaking" Rate
## 3108 Article on SoCal "Peaking" Rate
## 3109 Article on SoCal "Peaking" Rate
## 3110 Article on SoCal "Peaking" Rate
## 3111 Article on SoCal "Peaking" Rate
## 3112 Article on SoCal "Peaking" Rate
## 3113 Article on SoCal "Peaking" Rate
## 3114 Article on SoCal "Peaking" Rate
## 3115 Article on SoCal "Peaking" Rate
## 3116 Article on SoCal "Peaking" Rate
## 3117 Did you See this Article on SoCal today?
## 3118 Did you See this Article on SoCal today?
## 3119 Did you See this Article on SoCal today?
## 3120 Did you See this Article on SoCal today?
## 3121 Did you See this Article on SoCal today?
## 3122 Did you See this Article on SoCal today?
## 3123 Did you See this Article on SoCal today?
## 3124 Did you See this Article on SoCal today?
## 3125 Did you See this Article on SoCal today?
## 3126 Did you See this Article on SoCal today?
## 3127 Did you See this Article on SoCal today?
## 3128 Did you See this Article on SoCal today?
## 3129 Did you See this Article on SoCal today?
## 3130 Did you See this Article on SoCal today?
## 3131 Did you See this Article on SoCal today?
## 3132 Did you See this Article on SoCal today?
## 3133 Did you See this Article on SoCal today?
## 3134 ALJ decision on RLS tariff
## 3135 Structural Risk and Lack of Liquidity Grow in Influence in Regional Gas Markets - CERA Private Report
## 3136 The race is on for new coal-fired generation
## 3137 FW: Enron Kids Program for 2001
## 3138 FW: Enron Kids Program for 2001
## 3139 Monday Staff Meetings no longer held over lunch time
## 3140 Monday Staff Meetings no longer held over lunch time
## 3141 Monday Staff Meetings no longer held over lunch time
## 3142 Monday Staff Meetings no longer held over lunch time
## 3143 Monday Staff Meetings no longer held over lunch time
## 3144 Monday Staff Meetings no longer held over lunch time
## 3145 Monday Staff Meetings no longer held over lunch time
## 3146 Monday Staff Meetings no longer held over lunch time
## 3147 Monday Staff Meetings no longer held over lunch time
## 3148 Monday Staff Meetings no longer held over lunch time
## 3149 RE: MID-CONTINENT 2nd QUARTER PRODUCTION REPORT
## 3150 Power Indices
## 3151 Gas Indices
## 3152 Project Account Request
## 3153 Project Account Request
## 3154 Project Account Request
## 3155 Transwestern Pipeline - Gas Quality
## 3156 Transwestern Pipeline - Gas Quality
## 3157 Transwestern Pipeline - Gas Quality
## 3158 Transwestern Pipeline - Gas Quality
## 3159 New Compressor Station in Eddy County, NM.
## 3160 New Compressor Station in Eddy County, NM.
## 3161 New Compressor Station in Eddy County, NM.
## 3162 New Compressor Station in Eddy County, NM.
## 3163 New Compressor Station in Eddy County, NM.
## 3164 New Compressor Station in Eddy County, NM.
## 3165 New Compressor Station in Eddy County, NM.
## 3166 New Compressor Station in Eddy County, NM.
## 3167 Big Sandy Project
## 3168 Big Sandy Project
## 3169 Big Sandy Project
## 3170 Big Sandy Project
## 3171 Big Sandy Project
## 3172 Big Sandy Project
## 3173 Big Sandy Project
## 3174 Big Sandy Project
## 3175 Big Sandy Project
## 3176 Big Sandy Project
## 3177 Big Sandy Project
## 3178 EOG Pronghorn
## 3179 EOG Pronghorn
## 3180 EOG Pronghorn
## 3181 EOG Pronghorn
## 3182 EOG Pronghorn
## 3183 EOG Pronghorn
## 3184 EOG Pronghorn
## 3185 EOG Pronghorn
## 3186 EOG Pronghorn
## 3187 EOG Pronghorn
## 3188 EOG Pronghorn
## 3189 EOG Pronghorn
## 3190 EOG Pronghorn
## 3191 EOG Pronghorn
## 3192 EOG Pronghorn
## 3193 EOG Pronghorn
## 3194 EOG Pronghorn
## 3195 Transwestern Compressor Stations
## 3196 Transwestern Compressor Stations
## 3197 Big Sandy Project
## 3198 Big Sandy Project
## 3199 Big Sandy Project
## 3200 Big Sandy Project
## 3201 Big Sandy Project
## 3202 Big Sandy Project
## 3203 Big Sandy Project
## 3204 Recommended flow for drag reducer application
## 3205 EPFS interconnect
## 3206 RE: EPFS interconnect
## 3207 RE: EPFS interconnect
## 3208 RE: EPFS interconnect
## 3209 RE: EPFS interconnect
## 3210 RE: EPFS interconnect
## 3211 RE: EPFS interconnect
## 3212 RE: EPFS interconnect
## 3213 RE: EPFS interconnect
## 3214 RE: EPFS interconnect
## 3215 RE: EPFS interconnect
## 3216 RE: EPFS interconnect
## 3217 RE: EPFS interconnect
## 3218 RE: EPFS interconnect
## 3219 RE: EPFS interconnect
## 3220 RE: EPFS interconnect
## 3221 RE: EPFS interconnect
## 3222 RE: EPFS interconnect
## 3223 RE: EPFS interconnect
## 3224 RE: EPFS interconnect
## 3225 RE: EPFS interconnect
## 3226 RE: EPFS interconnect
## 3227 RE: EPFS interconnect
## 3228 RE: EPFS interconnect
## 3229 RE: EPFS interconnect
## 3230 RE: EPFS interconnect
## 3231 RE: EPFS interconnect
## 3232 RE: EPFS interconnect
## 3233 RE: EPFS interconnect
## 3234 RE: EPFS interconnect
## 3235 RE: EPFS interconnect
## 3236 RE: EPFS interconnect
## 3237 RE: EPFS interconnect
## 3238 RE: EPFS interconnect
## 3239 RE: EPFS interconnect
## 3240 RE: EPFS interconnect
## 3241 RE: EPFS interconnect
## 3242 RE: EPFS interconnect
## 3243 RE: EPFS interconnect
## 3244 RE: EPFS interconnect
## 3245 RE: EPFS interconnect
## 3246 RE: EPFS interconnect
## 3247 RE: EPFS interconnect
## 3248 RE: EPFS interconnect
## 3249 RE: EPFS interconnect
## 3250 RE: EPFS interconnect
## 3251 RE: EPFS interconnect
## 3252 RE: EPFS interconnect
## 3253 RE: EPFS interconnect
## 3254 RE: EPFS interconnect
## 3255 RE: EPFS interconnect
## 3256 EPFS Cost Estimate
## 3257 EPFS Cost Estimate
## 3258 EPFS Cost Estimate
## 3259 EPFS Cost Estimate
## 3260 EPFS Cost Estimate
## 3261 EPFS Cost Estimate
## 3262 EPFS Cost Estimate
## 3263 EPFS Cost Estimate
## 3264 EPFS Cost Estimate
## 3265 EPFS Cost Estimate
## 3266 EPFS Cost Estimate
## 3267 EPFS Cost Estimate
## 3268 EPFS Cost Estimate
## 3269 EPFS Cost Estimate
## 3270 EPFS Cost Estimate
## 3271 EPFS Cost Estimate
## 3272 EPFS Cost Estimate
## 3273 EPFS Cost Estimate
## 3274 EPFS Cost Estimate
## 3275 EPFS Cost Estimate
## 3276 RE: Confidential: Phoenix, AZ gas market research study
## 3277 RE: Confidential: Phoenix, AZ gas market research study
## 3278 RE: Confidential: Phoenix, AZ gas market research study
## 3279 RE: Confidential: Phoenix, AZ gas market research study
## 3280 PLEASE NOTE!!!!!
## 3281 PLEASE NOTE!!!!!
## 3282 PLEASE NOTE!!!!!
## 3283 PLEASE NOTE!!!!!
## 3284 PLEASE NOTE!!!!!
## 3285 PLEASE NOTE!!!!!
## 3286 PLEASE NOTE!!!!!
## 3287 PLEASE NOTE!!!!!
## 3288 PLEASE NOTE!!!!!
## 3289 PLEASE NOTE!!!!!
## 3290 Meeting w/ Rob Kilmer
## 3291 FW: Mexico and Multiservice Contracts: What s the Deal? - CERA Conference Call Notification
## 3292 FW: Mexico and Multiservice Contracts: What s the Deal? - CERA Conference Call Notification
## 3293 FW: Mexico and Multiservice Contracts: What s the Deal? - CERA Conference Call Notification
## 3294 FW: Mexico and Multiservice Contracts: What s the Deal? - CERA Conference Call Notification
## 3295 FW: Mexico and Multiservice Contracts: What s the Deal? - CERA Conference Call Notification
## 3296 FW: Mexico and Multiservice Contracts: What s the Deal? - CERA Conference Call Notification
## 3297 FW: Mexico and Multiservice Contracts: What s the Deal? - CERA Conference Call Notification
## 3298 FW: Mexico and Multiservice Contracts: What s the Deal? - CERA Conference Call Notification
## 3299 FW: Mexico and Multiservice Contracts: What s the Deal? - CERA Conference Call Notification
## 3300 FW: Mexico and Multiservice Contracts: What s the Deal? - CERA Conference Call Notification
## 3301 RE: Stranger things have happened...
## 3302 RE: Stranger things have happened...
## 3303 Business Objects Upgrade Information
## 3304 NEWGen November 2001 Release
## 3305 Stranger things have happened...
## 3306 Mexico and Multiservice Contracts: What s the Deal? - CERA Conference Call Notification
## 3307 Enron in Action 11.26.01
## 3308 Transmission system needs quick fix
## 3309 Gas Indices
## 3310 Power Indices
## 3311 Business Week- Chevron
## 3312 Business Week- Chevron
## 3313 Business Week- Chevron
## 3314 RE: NEW GREAT LAKES PIPELINE REPORT
## 3315 PEP Reviews
## 3316 PEP Reviews
## 3317 PEP Reviews
## 3318 PEP Reviews
## 3319 PEP Reviews
## 3320 PEP Reviews
## 3321 PEP Reviews
## 3322 PEP Reviews
## 3323 PEP Reviews
## 3324 PEP Reviews
## 3325 PEP Reviews
## 3326 PEP Reviews
## 3327 PEP Reviews
## 3328 PEP Reviews
## 3329 PEP Reviews
## 3330 PEP Reviews
## 3331 PEP Reviews
## 3332 PEP Reviews
## 3333 PEP Reviews
## 3334 PEP Reviews
## 3335 PEP Reviews
## 3336 PEP Reviews
## 3337 PEP Reviews
## 3338 PEP Reviews
## 3339 PEP Reviews
## 3340 PEP Reviews
## 3341 PEP Reviews
## 3342 PEP Reviews
## 3343 PEP Reviews
## 3344 PEP Reviews
## 3345 PEP Reviews
## 3346 PEP Reviews
## 3347 PEP Reviews
## 3348 PEP Reviews
## 3349 PEP Reviews
## 3350 PEP Reviews
## 3351 PEP Reviews
## 3352 PEP Reviews
## 3353 PEP Reviews
## 3354 PEP Reviews
## 3355 PEP Reviews
## 3356 PEP Reviews
## 3357 PEP Reviews
## 3358 PEP Reviews
## 3359 PEP Reviews
## 3360 PEP Reviews
## 3361 PEP Reviews
## 3362 PEP Reviews
## 3363 PEP Reviews
## 3364 PEP Reviews
## 3365 PEP Reviews
## 3366 PEP Reviews
## 3367 PEP Reviews
## 3368 PEP Reviews
## 3369 SAVINGS PLAN TRANSITION PERIOD ENDS For All Employees who Participate in the Enron Corp Savings Plan
## 3370 Myotonic Muscular Dystrophy(MMD)
## 3371 Enron Kids Mtg
## 3372 Update to Merger Q&A
## 3373 You know you re in a Texas church when:
## 3374 You know you re in a Texas church when:
## 3375 NEW LOWER 48 STATES GAS SUPPLY AND CONSUMPTION REPORT
## 3376 FW: Mexico Gas and Power Summary Notes: Power Issues - CERA Report
## 3377 FW: Mexico Gas and Power Summary Notes: Power Issues - CERA Report
## 3378 FW: Mexico Gas and Power Summary Notes: Power Issues - CERA Report
## 3379 FW: Mexico Gas and Power Summary Notes: Power Issues - CERA Report
## 3380 FW: Mexico Gas and Power Summary Notes: Power Issues - CERA Report
## 3381 FW: Mexico Gas and Power Summary Notes: Power Issues - CERA Report
## 3382 FW: Mexico Gas and Power Summary Notes: Power Issues - CERA Report
## 3383 FW: Mexico Gas and Power Summary Notes: Power Issues - CERA Report
## 3384 FW: Mexico Gas and Power Summary Notes: Power Issues - CERA Report
## 3385 FW: Mexico Gas and Power Summary Notes: Power Issues - CERA Report
## 3386 FW: Low Load GRI changes for 2002
## 3387 FW: Low Load GRI changes for 2002
## 3388 FW: Low Load GRI changes for 2002
## 3389 FW: Low Load GRI changes for 2002
## 3390 FW: Low Load GRI changes for 2002
## 3391 FW: Low Load GRI changes for 2002
## 3392 FW: Low Load GRI changes for 2002
## 3393 FW: Low Load GRI changes for 2002
## 3394 FW: Low Load GRI changes for 2002
## 3395 FW: Low Load GRI changes for 2002
## 3396 FW: Low Load GRI changes for 2002
## 3397 FW: Low Load GRI changes for 2002
## 3398 FW: Low Load GRI changes for 2002
## 3399 FW: Low Load GRI changes for 2002
## 3400 FW: Low Load GRI changes for 2002
## 3401 FW: Low Load GRI changes for 2002
## 3402 FW: Low Load GRI changes for 2002
## 3403 FW: Low Load GRI changes for 2002
## 3404 FW: Low Load GRI changes for 2002
## 3405 FW: Low Load GRI changes for 2002
## 3406 FW: Low Load GRI changes for 2002
## 3407 FW: Low Load GRI changes for 2002
## 3408 FW: Low Load GRI changes for 2002
## 3409 FW: Low Load GRI changes for 2002
## 3410 FW: Low Load GRI changes for 2002
## 3411 FW: Low Load GRI changes for 2002
## 3412 FW: Low Load GRI changes for 2002
## 3413 FW: Low Load GRI changes for 2002
## 3414 FW: Low Load GRI changes for 2002
## 3415 FW: Low Load GRI changes for 2002
## 3416 FW: Low Load GRI changes for 2002
## 3417 FW: Low Load GRI changes for 2002
## 3418 FW: Low Load GRI changes for 2002
## 3419 FW: Low Load GRI changes for 2002
## 3420 FW: Low Load GRI changes for 2002
## 3421 FW: Low Load GRI changes for 2002
## 3422 FW: Low Load GRI changes for 2002
## 3423 FW: Low Load GRI changes for 2002
## 3424 FW: Low Load GRI changes for 2002
## 3425 FW: Low Load GRI changes for 2002
## 3426 FW: Low Load GRI changes for 2002
## 3427 FW: Low Load GRI changes for 2002
## 3428 FW: Low Load GRI changes for 2002
## 3429 FW: Low Load GRI changes for 2002
## 3430 FW: Low Load GRI changes for 2002
## 3431 FW: Low Load GRI changes for 2002
## 3432 FW: Low Load GRI changes for 2002
## 3433 FW: Low Load GRI changes for 2002
## 3434 FW: Low Load GRI changes for 2002
## 3435 FW: Low Load GRI changes for 2002
## 3436 FW: Low Load GRI changes for 2002
## 3437 FW: Low Load GRI changes for 2002
## 3438 FW: Low Load GRI changes for 2002
## 3439 FW: Low Load GRI changes for 2002
## 3440 FW: Low Load GRI changes for 2002
## 3441 FW: Low Load GRI changes for 2002
## 3442 FW: Low Load GRI changes for 2002
## 3443 FW: Low Load GRI changes for 2002
## 3444 FW: Low Load GRI changes for 2002
## 3445 FW: Low Load GRI changes for 2002
## 3446 FW: Low Load GRI changes for 2002
## 3447 FW: Low Load GRI changes for 2002
## 3448 ETS and Corporate Change Control
## 3449 HoustonChronicle.com News 6.48
## 3450 Fwd:A good hint to all us married and/or single folk
## 3451 Falling Gas Prices Trigger Active Rig Count Decline - CERA Decision Brief
## 3452 Coal unit retirements about to begin
## 3453 Power Indices
## 3454 Gas Indices
## 3455 Thanks!!
## 3456 Thanks!!
## 3457 Power Indices
## 3458 Gas Indices
## 3459 ROCKY MOUNTAIN 2nd QUARTER PRODUCTION REPORT
## 3460 Thanksgiving Holiday
## 3461 Is global public opinion fair to the oil majors?
## 3462 Holiday Party - Canceled
## 3463 New TW POI contact persons
## 3464 New TW POI contact persons
## 3465 New TW POI contact persons
## 3466 New TW POI contact persons
## 3467 New TW POI contact persons
## 3468 New TW POI contact persons
## 3469 New TW POI contact persons
## 3470 New TW POI contact persons
## 3471 New TW POI contact persons
## 3472 New TW POI contact persons
## 3473 New TW POI contact persons
## 3474 New TW POI contact persons
## 3475 New TW POI contact persons
## 3476 New TW POI contact persons
## 3477 New TW POI contact persons
## 3478 New TW POI contact persons
## 3479 New TW POI contact persons
## 3480 New TW POI contact persons
## 3481 New TW POI contact persons
## 3482 New TW POI contact persons
## 3483 New TW POI contact persons
## 3484 New TW POI contact persons
## 3485 Commission Agenda
## 3486 FW: Enron s Dirty Laundry
## 3487 Platts Energy Bulletin
## 3488 RE: RDI Subscription
## 3489 RE: RDI Subscription
## 3490 RE: RDI Subscription
## 3491 FW: RDI Subscription
## 3492 Blood Drive
## 3493 Jus fur you
## 3494 Platts Energy Bulletin
## 3495 Fwd: Fw: Response to Enron Article by Michael Lewis, 3/3/02,Outlook Section
## 3496 Fwd: Fw: Response to Enron Article by Michael Lewis, 3/3/02,Outlook Section
## 3497 Fwd: Fw: Response to Enron Article by Michael Lewis, 3/3/02,Outlook Section
## 3498 Fwd: Fw: Response to Enron Article by Michael Lewis, 3/3/02,Outlook Section
## 3499 Fwd: Fw: Response to Enron Article by Michael Lewis, 3/3/02,Outlook Section
## 3500 Fwd: Fw: Response to Enron Article by Michael Lewis, 3/3/02,Outlook Section
## 3501 Fwd: Fw: Response to Enron Article by Michael Lewis, 3/3/02,Outlook Section
## 3502 Fwd: Fw: Response to Enron Article by Michael Lewis, 3/3/02,Outlook Section
## 3503 Fwd: Fw: Response to Enron Article by Michael Lewis, 3/3/02,Outlook Section
## 3504 Fwd: Fw: Response to Enron Article by Michael Lewis, 3/3/02,Outlook Section
## 3505 Fwd: Fw: Response to Enron Article by Michael Lewis, 3/3/02,Outlook Section
## 3506 Fwd: Fw: Response to Enron Article by Michael Lewis, 3/3/02,Outlook Section
## 3507 Fwd: Fw: Response to Enron Article by Michael Lewis, 3/3/02,Outlook Section
## 3508 Fwd: Fw: Response to Enron Article by Michael Lewis, 3/3/02,Outlook Section
## 3509 Fwd: Fw: Response to Enron Article by Michael Lewis, 3/3/02,Outlook Section
## 3510 Fwd: Fw: Response to Enron Article by Michael Lewis, 3/3/02,Outlook Section
## 3511 Fwd: Fw: Response to Enron Article by Michael Lewis, 3/3/02,Outlook Section
## 3512 Fwd: Fw: Response to Enron Article by Michael Lewis, 3/3/02,Outlook Section
## 3513 Fwd: Fw: Response to Enron Article by Michael Lewis, 3/3/02,Outlook Section
## 3514 Fwd: Fw: Response to Enron Article by Michael Lewis, 3/3/02,Outlook Section
## 3515 Fwd: Fw: Response to Enron Article by Michael Lewis, 3/3/02,Outlook Section
## 3516 Fwd: Fw: Response to Enron Article by Michael Lewis, 3/3/02,Outlook Section
## 3517 Fwd: Fw: Response to Enron Article by Michael Lewis, 3/3/02,Outlook Section
## 3518 Fwd: Fw: Response to Enron Article by Michael Lewis, 3/3/02,Outlook Section
## 3519 Fwd: Fw: Response to Enron Article by Michael Lewis, 3/3/02,Outlook Section
## 3520 Why?
## 3521 Why?
## 3522 Why?
## 3523 Why?
## 3524 Why?
## 3525 Why?
## 3526 Why?
## 3527 Why?
## 3528 Why?
## 3529 Why?
## 3530 Why?
## 3531 Why?
## 3532 Why?
## 3533 Why?
## 3534 Why?
## 3535 Why?
## 3536 Why?
## 3537 Why?
## 3538 Why?
## 3539 Why?
## 3540 Why?
## 3541 Why?
## 3542 Why?
## 3543 Why?
## 3544 Why?
## 3545 Why?
## 3546 Why?
## 3547 Why?
## 3548 Why?
## 3549 Why?
## 3550 Why?
## 3551 Why?
## 3552 Why?
## 3553 Why?
## 3554 Why?
## 3555 Why?
## 3556 Why?
## 3557 It could be our last lunch together
## 3558 It could be our last lunch together
## 3559 It could be our last lunch together
## 3560 It could be our last lunch together
## 3561 It could be our last lunch together
## 3562 Platts Energy Bulletin
## 3563 Bridgestone/Firestone CEO John Lampe Appearing on CNBC
## 3564 Bridgestone/Firestone CEO John Lampe Appearing on CNBC
## 3565 Bridgestone/Firestone CEO John Lampe Appearing on CNBC
## 3566 Bridgestone/Firestone CEO John Lampe Appearing on CNBC
## 3567 Bridgestone/Firestone CEO John Lampe Appearing on CNBC
## 3568 Bridgestone/Firestone CEO John Lampe Appearing on CNBC
## 3569 Bridgestone/Firestone CEO John Lampe Appearing on CNBC
## 3570 Bridgestone/Firestone CEO John Lampe Appearing on CNBC
## 3571 Bridgestone/Firestone CEO John Lampe Appearing on CNBC
## 3572 Bridgestone/Firestone CEO John Lampe Appearing on CNBC
## 3573 Bridgestone/Firestone CEO John Lampe Appearing on CNBC
## 3574 Bridgestone/Firestone CEO John Lampe Appearing on CNBC
## 3575 Bridgestone/Firestone CEO John Lampe Appearing on CNBC
## 3576 Bridgestone/Firestone CEO John Lampe Appearing on CNBC
## 3577 Bridgestone/Firestone CEO John Lampe Appearing on CNBC
## 3578 Bridgestone/Firestone CEO John Lampe Appearing on CNBC
## 3579 Bridgestone/Firestone CEO John Lampe Appearing on CNBC
## 3580 Bridgestone/Firestone CEO John Lampe Appearing on CNBC
## 3581 Bridgestone/Firestone CEO John Lampe Appearing on CNBC
## 3582 Bridgestone/Firestone CEO John Lampe Appearing on CNBC
## 3583 Bridgestone/Firestone CEO John Lampe Appearing on CNBC
## 3584 Bridgestone/Firestone CEO John Lampe Appearing on CNBC
## 3585 Bridgestone/Firestone CEO John Lampe Appearing on CNBC
## 3586 Bridgestone/Firestone CEO John Lampe Appearing on CNBC
## 3587 Bridgestone/Firestone CEO John Lampe Appearing on CNBC
## 3588 Red Lake Storage w/Kevin Hyatt
## 3589 Red Lake Storage w/Kevin Hyatt
## 3590 Red Lake Storage w/Kevin Hyatt
## 3591 Red Lake Storage w/Kevin Hyatt
## 3592 Red Lake Storage w/Kevin Hyatt
## 3593 RE: New Uniforms for the other Big Red
## 3594
## 3595
## 3596
## 3597 RE:
## 3598 RE:
## 3599 RE:
## 3600 RE:
## 3601 RE:
## 3602 RE:
## 3603 RE:
## 3604 RE:
## 3605 RE:
## 3606 Platts Energy Bulletin
## 3607 Dinner to be rescheduled
## 3608 Dinner to be rescheduled
## 3609 Dinner to be rescheduled
## 3610 Dinner to be rescheduled
## 3611 Dinner to be rescheduled
## 3612 Dinner to be rescheduled
## 3613 Dinner to be rescheduled
## 3614 Dinner to be rescheduled
## 3615 Dinner to be rescheduled
## 3616 Dinner to be rescheduled
## 3617 Dinner to be rescheduled
## 3618 HoustonChronicle.com News 7.09
## 3619 ETS and Corporate Change Control
## 3620 RE: Potential sale of Gomez lateral pipe
## 3621 RE: Potential sale of Gomez lateral pipe
## 3622 Fwd: That s One Expensive Salmon
## 3623 Fwd: That s One Expensive Salmon
## 3624 Fwd: That s One Expensive Salmon
## 3625 Fwd: That s One Expensive Salmon
## 3626 Fwd: That s One Expensive Salmon
## 3627 Fwd: That s One Expensive Salmon
## 3628 Fwd: That s One Expensive Salmon
## 3629 REORIENTATION
## 3630 Platts Energy Bulletin
## 3631 RE: Surprise Birthday for Paul Tomorrow!!!
## 3632 RE: Surprise Birthday for Paul Tomorrow!!!
## 3633 RE: Surprise Birthday for Paul Tomorrow!!!
## 3634 RE: Surprise Birthday for Paul Tomorrow!!!
## 3635 RE: Surprise Birthday for Paul Tomorrow!!!
## 3636 RE: Surprise Birthday for Paul Tomorrow!!!
## 3637 RE: Surprise Birthday for Paul Tomorrow!!!
## 3638 RE: Surprise Birthday for Paul Tomorrow!!!
## 3639 RE: Surprise Birthday for Paul Tomorrow!!!
## 3640 Sun Devil Expansion
## 3641 Sun Devil Expansion
## 3642 Sun Devil Expansion
## 3643 Sun Devil Expansion
## 3644 Surprise Birthday for Paul Tomorrow!!!
## 3645 Surprise Birthday for Paul Tomorrow!!!
## 3646 Surprise Birthday for Paul Tomorrow!!!
## 3647 Surprise Birthday for Paul Tomorrow!!!
## 3648 Surprise Birthday for Paul Tomorrow!!!
## 3649 Surprise Birthday for Paul Tomorrow!!!
## 3650 Surprise Birthday for Paul Tomorrow!!!
## 3651 Surprise Birthday for Paul Tomorrow!!!
## 3652 Surprise Birthday for Paul Tomorrow!!!
## 3653 Surprise Birthday for Paul Tomorrow!!!
## 3654 Platts Energy Bulletin
## 3655 FW: RDI access
## 3656 FW: RDI access
## 3657 FW: RDI access
## 3658 Fwd: Fw: Update on Bankruptcy Hearing about the release of our severance pay!...
## 3659 Fwd: Fw: Update on Bankruptcy Hearing about the release of our severance pay!...
## 3660 Fwd: Fw: Update on Bankruptcy Hearing about the release of our severance pay!...
## 3661 Fwd: Fw: Update on Bankruptcy Hearing about the release of our severance pay!...
## 3662 Fwd: Fw: Update on Bankruptcy Hearing about the release of our severance pay!...
## 3663 Fwd: Fw: Update on Bankruptcy Hearing about the release of our severance pay!...
## 3664 Fwd: Fw: Update on Bankruptcy Hearing about the release of our severance pay!...
## 3665 Fwd: Fw: Update on Bankruptcy Hearing about the release of our severance pay!...
## 3666 Fwd: Fw: Update on Bankruptcy Hearing about the release of our severance pay!...
## 3667 Fwd: Fw: Update on Bankruptcy Hearing about the release of our severance pay!...
## 3668 Fwd: Fw: Update on Bankruptcy Hearing about the release of our severance pay!...
## 3669 Fwd: Fw: Update on Bankruptcy Hearing about the release of our severance pay!...
## 3670 Fwd: Fw: Update on Bankruptcy Hearing about the release of our severance pay!...
## 3671 Fwd: Fw: Update on Bankruptcy Hearing about the release of our severance pay!...
## 3672 ICE First-of-Month Natural Gas Index
## 3673 ICE First-of-Month Natural Gas Index
## 3674 ICE First-of-Month Natural Gas Index
## 3675 ICE First-of-Month Natural Gas Index
## 3676 ICE First-of-Month Natural Gas Index
## 3677 ETS and Corporate Change Control
## 3678 Platts Energy Bulletin
## 3679 RE: RDI Subscription
## 3680 FW: RDI Subscription
## 3681 Fwd: FW: Ice sculpture,
## 3682 Fwd: FW: Ice sculpture,
## 3683 Fwd: FW: Ice sculpture,
## 3684 Fwd: FW: Ice sculpture,
## 3685 Fwd: FW: Ice sculpture,
## 3686 Fwd: FW: Ice sculpture,
## 3687 Fwd: FW: Ice sculpture,
## 3688 Fwd: FW: Ice sculpture,
## 3689 Fwd: FW: Ice sculpture,
## 3690 Fwd: FW: Ice sculpture,
## 3691 Fwd: FW: Ice sculpture,
## 3692 Fwd: FW: Ice sculpture,
## 3693 Fwd: FW: Ice sculpture,
## 3694 Fwd: FW: Ice sculpture,
## 3695 Fwd: FW: Ice sculpture,
## 3696 Fwd: FW: Ice sculpture,
## 3697 Fwd: FW: Ice sculpture,
## 3698 Fwd: Nine months later
## 3699 Fwd: Nine months later
## 3700 Fwd: Nine months later
## 3701 Fwd: Nine months later
## 3702 Fwd: Nine months later
## 3703 Fwd: Nine months later
## 3704 Fwd: Nine months later
## 3705 Fwd: Nine months later
## 3706 Fwd: Nine months later
## 3707 Fwd: Nine months later
## 3708 Fwd: Nine months later
## 3709 Fwd: Nine months later
## 3710 Fwd: Nine months later
## 3711 Fwd: Nine months later
## 3712 Fwd: Nine months later
## 3713 Fwd: LOL
## 3714 Fwd: LOL
## 3715 Fwd: LOL
## 3716 Fwd: LOL
## 3717 Fwd: LOL
## 3718 Fwd: LOL
## 3719 Fwd: LOL
## 3720 Fwd: LOL
## 3721 Fwd: LOL
## 3722 Fwd: LOL
## 3723 Fwd: LOL
## 3724 Fwd: LOL
## 3725 Fwd: LOL
## 3726 Fwd: LOL
## 3727 Fwd: LOL
## 3728 Fwd: LOL
## 3729 Fwd: LOL
## 3730 Fwd: LOL
## 3731 Fwd: LOL
## 3732 Fwd: LOL
## 3733 Fwd: LOL
## 3734 Fwd: LOL
## 3735 Fwd: LOL
## 3736 Fwd: LOL
## 3737 Fwd: LOL
## 3738 Fwd: LOL
## 3739 Fwd: LOL
## 3740 Fwd: LOL
## 3741 Fwd: LOL
## 3742 Fwd: LOL
## 3743 Don t know if true but...Fwd: Fw: Fw: State Police Warning for online
## 3744 Don t know if true but...Fwd: Fw: Fw: State Police Warning for online
## 3745 Don t know if true but...Fwd: Fw: Fw: State Police Warning for online
## 3746 Don t know if true but...Fwd: Fw: Fw: State Police Warning for online
## 3747 Don t know if true but...Fwd: Fw: Fw: State Police Warning for online
## 3748 Don t know if true but...Fwd: Fw: Fw: State Police Warning for online
## 3749 Don t know if true but...Fwd: Fw: Fw: State Police Warning for online
## 3750 Don t know if true but...Fwd: Fw: Fw: State Police Warning for online
## 3751 Don t know if true but...Fwd: Fw: Fw: State Police Warning for online
## 3752 Don t know if true but...Fwd: Fw: Fw: State Police Warning for online
## 3753 Don t know if true but...Fwd: Fw: Fw: State Police Warning for online
## 3754 Don t know if true but...Fwd: Fw: Fw: State Police Warning for online
## 3755 Don t know if true but...Fwd: Fw: Fw: State Police Warning for online
## 3756 Don t know if true but...Fwd: Fw: Fw: State Police Warning for online
## 3757 Don t know if true but...Fwd: Fw: Fw: State Police Warning for online
## 3758 Don t know if true but...Fwd: Fw: Fw: State Police Warning for online
## 3759 Don t know if true but...Fwd: Fw: Fw: State Police Warning for online
## 3760 Golf Balls: To all my golfers .
## 3761 Golf Balls: To all my golfers .
## 3762 Golf Balls: To all my golfers .
## 3763 Golf Balls: To all my golfers .
## 3764 Golf Balls: To all my golfers .
## 3765 Golf Balls: To all my golfers .
## 3766 Golf Balls: To all my golfers .
## 3767 Golf Balls: To all my golfers .
## 3768 Golf Balls: To all my golfers .
## 3769 Golf Balls: To all my golfers .
## 3770 Golf Balls: To all my golfers .
## 3771 Golf Balls: To all my golfers .
## 3772 Golf Balls: To all my golfers .
## 3773 Golf Balls: To all my golfers .
## 3774 Golf Balls: To all my golfers .
## 3775 Golf Balls: To all my golfers .
## 3776 Golf Balls: To all my golfers .
## 3777 Golf Balls: To all my golfers .
## 3778 Golf Balls: To all my golfers .
## 3779 Golf Balls: To all my golfers .
## 3780 Golf Balls: To all my golfers .
## 3781 Golf Balls: To all my golfers .
## 3782 Golf Balls: To all my golfers .
## 3783 Golf Balls: To all my golfers .
## 3784 Golf Balls: To all my golfers .
## 3785 Golf Balls: To all my golfers .
## 3786 Golf Balls: To all my golfers .
## 3787 Golf Balls: To all my golfers .
## 3788 Golf Balls: To all my golfers .
## 3789 Golf Balls: To all my golfers .
## 3790 Golf Balls: To all my golfers .
## 3791 Fwd: New Virus Alert~Kim
## 3792 Fwd: New Virus Alert~Kim
## 3793 Fwd: New Virus Alert~Kim
## 3794 Fwd: New Virus Alert~Kim
## 3795 Fwd: New Virus Alert~Kim
## 3796 Fwd: New Virus Alert~Kim
## 3797 Fwd: New Virus Alert~Kim
## 3798 Fwd: New Virus Alert~Kim
## 3799 Fwd: New Virus Alert~Kim
## 3800 Fwd: New Virus Alert~Kim
## 3801 Fwd: New Virus Alert~Kim
## 3802 Fwd: New Virus Alert~Kim
## 3803 Fwd: New Virus Alert~Kim
## 3804 Fwd: New Virus Alert~Kim
## 3805 Fwd: New Virus Alert~Kim
## 3806 Fwd: Fw: So, how did you break your arm?
## 3807 Fwd: Fw: So, how did you break your arm?
## 3808 Fwd: Fw: So, how did you break your arm?
## 3809 Fwd: Fw: So, how did you break your arm?
## 3810 Fwd: Fw: So, how did you break your arm?
## 3811 Fwd: Fw: So, how did you break your arm?
## 3812 Fwd: Fw: So, how did you break your arm?
## 3813 Fwd: Fw: So, how did you break your arm?
## 3814 Fwd: Fw: So, how did you break your arm?
## 3815 Fwd: Fw: So, how did you break your arm?
## 3816 Fwd: Fw: So, how did you break your arm?
## 3817 Fwd: Fw: So, how did you break your arm?
## 3818 Fwd: Fw: So, how did you break your arm?
## 3819 Fwd: Fw: So, how did you break your arm?
## 3820 Fwd: Fw: So, how did you break your arm?
## 3821 Fwd: Fw: So, how did you break your arm?
## 3822 Fwd: Fw: So, how did you break your arm?
## 3823 Fwd: Fw: So, how did you break your arm?
## 3824 Fwd: Fw: So, how did you break your arm?
## 3825 Fwd: Fw: So, how did you break your arm?
## 3826 Fwd: Fw: So, how did you break your arm?
## 3827 Fwd: Fw: So, how did you break your arm?
## 3828 Fwd: Fw: So, how did you break your arm?
## 3829 Fwd: Fw: So, how did you break your arm?
## 3830 Fwd: Fw: So, how did you break your arm?
## 3831 Fwd: Fw: So, how did you break your arm?
## 3832 Fwd: Fw: So, how did you break your arm?
## 3833 Fwd: Fw: So, how did you break your arm?
## 3834 Fwd: Fw: So, how did you break your arm?
## 3835 Fwd: FW: Fw: ranch hand
## 3836 Fwd: FW: Fw: ranch hand
## 3837 Fwd: FW: Fw: ranch hand
## 3838 Fwd: FW: Fw: ranch hand
## 3839 Fwd: FW: Fw: ranch hand
## 3840 Fwd: FW: Fw: ranch hand
## 3841 Fwd: FW: Fw: ranch hand
## 3842 Fwd: FW: Fw: ranch hand
## 3843 Fwd: FW: Fw: ranch hand
## 3844 Fwd: FW: Fw: ranch hand
## 3845 Fwd: FW: Fw: ranch hand
## 3846 Fwd: FW: Fw: ranch hand
## 3847 Fwd: FW: Fw: ranch hand
## 3848 Fwd: FW: Fw: ranch hand
## 3849 Fwd: FW: Fw: ranch hand
## 3850 Fwd: Fw: Fw: Fw: Fw: Some gems from teachers
## 3851 Fwd: Fw: Fw: Fw: Fw: Some gems from teachers
## 3852 Fwd: Fw: Fw: Fw: Fw: Some gems from teachers
## 3853 Fwd: Fw: Fw: Fw: Fw: Some gems from teachers
## 3854 Fwd: Fw: Fw: Fw: Fw: Some gems from teachers
## 3855 Fwd: Fw: Fw: Fw: Fw: Some gems from teachers
## 3856 Fwd: Fw: Fw: Fw: Fw: Some gems from teachers
## 3857 Fwd: Fw: Fw: Fw: Fw: Some gems from teachers
## 3858 Fwd: Fw: Fw: Fw: Fw: Some gems from teachers
## 3859 Fwd: Fw: Fw: Fw: Fw: Some gems from teachers
## 3860 Fwd: Fw: Fw: Fw: Fw: Some gems from teachers
## 3861 Fwd: Fw: Fw: Fw: Fw: Some gems from teachers
## 3862 Fwd: Fw: Fw: Fw: Fw: Some gems from teachers
## 3863 Fwd: Fw: Fw: Fw: Fw: Some gems from teachers
## 3864 Fwd: Fw: Fw: Fw: Fw: Some gems from teachers
## 3865 I know some have already seen but I want to return the mFwd: The ending is great
## 3866 I know some have already seen but I want to return the mFwd: The ending is great
## 3867 I know some have already seen but I want to return the mFwd: The ending is great
## 3868 I know some have already seen but I want to return the mFwd: The ending is great
## 3869 I know some have already seen but I want to return the mFwd: The ending is great
## 3870 I know some have already seen but I want to return the mFwd: The ending is great
## 3871 I know some have already seen but I want to return the mFwd: The ending is great
## 3872 I know some have already seen but I want to return the mFwd: The ending is great
## 3873 I know some have already seen but I want to return the mFwd: The ending is great
## 3874 I know some have already seen but I want to return the mFwd: The ending is great
## 3875 I know some have already seen but I want to return the mFwd: The ending is great
## 3876 I know some have already seen but I want to return the mFwd: The ending is great
## 3877 I know some have already seen but I want to return the mFwd: The ending is great
## 3878 I know some have already seen but I want to return the mFwd: The ending is great
## 3879 I know some have already seen but I want to return the mFwd: The ending is great
## 3880 I know some have already seen but I want to return the mFwd: The ending is great
## 3881 I know some have already seen but I want to return the mFwd: The ending is great
## 3882 I know some have already seen but I want to return the mFwd: The ending is great
## 3883 I know some have already seen but I want to return the mFwd: The ending is great
## 3884 I know some have already seen but I want to return the mFwd: The ending is great
## 3885 I know some have already seen but I want to return the mFwd: The ending is great
## 3886 I know some have already seen but I want to return the mFwd: The ending is great
## 3887 I know some have already seen but I want to return the mFwd: The ending is great
## 3888 I know some have already seen but I want to return the mFwd: The ending is great
## 3889 I know some have already seen but I want to return the mFwd: The ending is great
## 3890 I know some have already seen but I want to return the mFwd: The ending is great
## 3891 I know some have already seen but I want to return the mFwd: The ending is great
## 3892 Steve Cooper voicemail transcripts now available online
## 3893 Platts Energy Bulletin
## 3894 Fwd: FW: New Enron Logo....
## 3895 Fwd: FW: New Enron Logo....
## 3896 Fwd: FW: New Enron Logo....
## 3897 Fwd: FW: New Enron Logo....
## 3898 Fwd: FW: New Enron Logo....
## 3899 Fwd: FW: New Enron Logo....
## 3900 Fwd: FW: New Enron Logo....
## 3901 Fwd: FW: New Enron Logo....
## 3902 Fwd: FW: New Enron Logo....
## 3903 Fwd: FW: New Enron Logo....
## 3904 Fwd: FW: New Enron Logo....
## 3905 Fwd: FW: New Enron Logo....
## 3906 Fwd: Martha Stewart in Arkansas
## 3907 Fwd: Martha Stewart in Arkansas
## 3908 Fwd: Martha Stewart in Arkansas
## 3909 Fwd: Martha Stewart in Arkansas
## 3910 Fwd: Martha Stewart in Arkansas
## 3911 Fwd: Martha Stewart in Arkansas
## 3912 Fwd: Martha Stewart in Arkansas
## 3913 Fwd: Martha Stewart in Arkansas
## 3914 Fwd: Martha Stewart in Arkansas
## 3915 HoustonChronicle.com News 7.08
## 3916 Outlook Web Access Outage
## 3917 Platts Energy Bulletin
## 3918 Giving more than 100%
## 3919 Giving more than 100%
## 3920 Giving more than 100%
## 3921 Fwd: Giving more than 100% ... from a friend in the energy business
## 3922 Fwd: Giving more than 100% ... from a friend in the energy business
## 3923 Fwd: Fw: Share This One With Tinker !!!!!!
## 3924 Fwd: (no subject)
## 3925 Fwd: (no subject)
## 3926 Fwd: (no subject)
## 3927 Fwd: (no subject)
## 3928 Fwd: (no subject)
## 3929 Fwd: (no subject)
## 3930 Fwd: (no subject)
## 3931 Fwd: (no subject)
## 3932 Fwd: (no subject)
## 3933 Fwd: (no subject)
## 3934 Fwd: (no subject)
## 3935 Fwd: (no subject)
## 3936 Fwd: (no subject)
## 3937 Fwd: (no subject)
## 3938 Fwd: (no subject)
## 3939 Fwd: (no subject)
## 3940 RE: Invitation to a Sun Devil Meeting 2/21 at 1:30
## 3941 RE: Invitation to a Sun Devil Meeting 2/21 at 1:30
## 3942 RE: Invitation to a Sun Devil Meeting 2/21 at 1:30
## 3943 ETS and Corporate Change Control
## 3944 Platts Energy Bulletin
## 3945 FW: quite amusing....
## 3946 FW: quite amusing....
## 3947 FW: quite amusing....
## 3948 FW: quite amusing....
## 3949 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3950 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3951 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3952 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3953 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3954 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3955 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3956 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3957 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3958 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3959 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3960 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3961 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3962 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3963 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3964 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3965 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3966 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3967 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3968 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3969 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3970 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3971 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3972 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3973 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3974 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3975 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3976 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3977 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3978 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3979 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3980 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3981 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3982 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3983 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3984 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3985 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3986 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3987 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3988 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3989 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3990 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3991 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3992 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3993 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3994 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3995 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3996 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3997 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3998 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 3999 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 4000 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 4001 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 4002 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 4003 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 4004 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 4005 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 4006 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 4007 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 4008 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 4009 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 4010 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 4011 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 4012 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 4013 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 4014 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 4015 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 4016 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 4017 Chronicle Subscribers...Make your life a little E-Z er
## 4018 FW: Location Number
## 4019 FW: Location Number
## 4020 FW: Location Number
## 4021 RE: Location Number
## 4022 RE: Location Number
## 4023 Invitation to a Sun Devil Meeting 2/21 at 1:30
## 4024 Invitation to a Sun Devil Meeting 2/21 at 1:30
## 4025 Platts Energy Bulletin
## 4026 RE: Color Printer for Kevin Hyatt
## 4027 RE: Color Printer for Kevin Hyatt
## 4028 RE: Color Printer for Kevin Hyatt
## 4029 RE: Color Printer for Kevin Hyatt
## 4030 Platts Energy Bulletin
## 4031 ETS IT Newsletter now available
## 4032 ETS IT Newsletter now available
## 4033 Fwd: Imagination
## 4034 Fwd: Imagination
## 4035 Fwd: Imagination
## 4036 Fwd: Imagination
## 4037 Fwd: Imagination
## 4038 Fwd: Imagination
## 4039 Fwd: Imagination
## 4040 Fwd: Imagination
## 4041 Fwd: Imagination
## 4042 HoustonChronicle.com News 7.07
## 4043
## 4044 FW: FW: Axis of Evil
## 4045 Well I won t need a seeing eye dog
## 4046 Undeliverable: Gomez lateral
## 4047 Presidents Day Holiday
## 4048 Color Printer for Kevin Hyatt
## 4049 Color Printer for Kevin Hyatt
## 4050 Color Printer for Kevin Hyatt
## 4051 Platts Energy Bulletin
## 4052 Enron Voice Mail System
## 4053 Enron Voice Mail System
## 4054 Enron Voice Mail System
## 4055 Enron Voice Mail System
## 4056 MID-CONTINENT 3rd QUARTER PRODUCTION REPORT
## 4057 Platts Energy Bulletin
## 4058 Medical Out of Office
## 4059 Medical Out of Office
## 4060 Medical Out of Office
## 4061 Medical Out of Office
## 4062 Platts Energy Bulletin
## 4063 Platts Energy Bulletin
## 4064 Credit Union Changes
## 4065 Turkey Hunters
## 4066 Turkey Hunters
## 4067 Turkey Hunters
## 4068 Turkey Hunters
## 4069 ANNUAL NORTH AMERICAN SUPPLY MOVEMENT
## 4070 ROCKY MOUNTAIN 3rd QUARTER PRODUCTION REPORT
## 4071 Platts Energy Bulletin
## 4072 Fwd: Fw: B s & B s
## 4073 Fwd: Fw: B s & B s
## 4074 Fwd: Fw: B s & B s
## 4075 Fwd: Fw: B s & B s
## 4076 Fwd: Fw: B s & B s
## 4077 Fwd: Fw: B s & B s
## 4078 Fwd: Fw: Women Drivers
## 4079 Fwd: New Pill ...lol
## 4080 Fwd: FW: RE: Hug war
## 4081
## 4082
## 4083
## 4084
## 4085
## 4086
## 4087
## 4088
## 4089
## 4090
## 4091
## 4092
## 4093
## 4094
## 4095
## 4096 ETS and Corporate Change Control
## 4097 Power Outage at Enron Building
## 4098 SMILE....!!!
## 4099 Platts energy Bulletin
## 4100 Platts Energy Bulletin
## 4101 Platts Energy Bulletin
## 4102 EGS Floor Meetings
## 4103 EGS Floor Meetings
## 4104 I have a pre-op exam this afternoon and
## 4105 I have a pre-op exam this afternoon and
## 4106 I have a pre-op exam this afternoon and
## 4107 I have a pre-op exam this afternoon and
## 4108 Platts Energy Bulletin
## 4109 Fwd: Fw: Just checking!!
## 4110 Fwd: The Test
## 4111 Fwd: The Test
## 4112 Fwd: The Test
## 4113 Fwd: The Test
## 4114 Fwd: The Test
## 4115 Fwd: The Test
## 4116 Fwd: The Test
## 4117 Fwd: The Test
## 4118 Fwd: The Test
## 4119 Fwd: The Test
## 4120 Fwd: The Test
## 4121 Fwd: The Test
## 4122 Fwd: Fw: Emergency Friendship System
## 4123 Fwd: Fw: Emergency Friendship System
## 4124 Fwd: Fw: Emergency Friendship System
## 4125 Fwd: Fw: Emergency Friendship System
## 4126 Fwd: Fw: Emergency Friendship System
## 4127 Fwd: Fw: Emergency Friendship System
## 4128 Fwd: Fw: Emergency Friendship System
## 4129 Fwd: Fw: Emergency Friendship System
## 4130 Fwd: Fw: Emergency Friendship System
## 4131 Fwd: Fw: Emergency Friendship System
## 4132 Fwd: Fw: Emergency Friendship System
## 4133 Fwd: Fw: Emergency Friendship System
## 4134 Fwd: Fw: Emergency Friendship System
## 4135 Fwd: Fw: Emergency Friendship System
## 4136 Fwd: Fw: Emergency Friendship System
## 4137 Ken Lay Resigns from Board
## 4138 Mexico Energy Reform: Striving for Consensus - Special event Invitation
## 4139 Platts Energy Bulletin
## 4140 RE: Sun Devil Alterative - Revision #10
## 4141 RE: Sun Devil Alterative - Revision #10
## 4142 RE: Sun Devil Alterative - Revision #10
## 4143 RE: Sun Devil Alterative - Revision #10
## 4144 RE: Sun Devil Alterative - Revision #10
## 4145 RE: Sun Devil Alterative - Revision #10
## 4146 RE: Sun Devil Alterative - Revision #10
## 4147 RE: Sun Devil Alterative - Revision #10
## 4148 Sun Devil
## 4149 Enron Conference Call - Rescheduled for 5pm CST Today
## 4150 Fwd: FW: Enron Employees Leaving Houston...
## 4151 Fwd: FW: Enron Employees Leaving Houston...
## 4152 Fwd: FW: Enron Employees Leaving Houston...
## 4153 Fwd: FW: Enron Employees Leaving Houston...
## 4154 Fwd: FW: Enron Employees Leaving Houston...
## 4155 Fwd: FW: Enron Employees Leaving Houston...
## 4156 Fwd: FW: Enron Employees Leaving Houston...
## 4157 Fwd: FW: Enron Employees Leaving Houston...
## 4158 Fwd: FW: Enron Employees Leaving Houston...
## 4159 Fwd: FW: Enron Employees Leaving Houston...
## 4160 Fwd: FW: Enron Employees Leaving Houston...
## 4161 Fwd: FW: Enron Employees Leaving Houston...
## 4162 Fwd: FW: Enron Employees Leaving Houston...
## 4163 Fwd: FW: Enron Employees Leaving Houston...
## 4164 Fwd: FW: Enron Employees Leaving Houston...
## 4165 Fwd: FW: Enron Employees Leaving Houston...
## 4166 Fwd: FW: Enron Employees Leaving Houston...
## 4167 HoustonChronicle.com News 7.05
## 4168 Message from Jim Saunders - TIMESHEETS
## 4169 ETS and Corporate Change Control
## 4170 Enron Conference Call Today, 11:00am CST
## 4171 Envision System Outage
## 4172 TW project information
## 4173 TW project information
## 4174 Platts Energy Bulletin
## 4175 VoiceMail Issue
## 4176 Donations Honoring Cliff Baxter
## 4177 Platts Energy Bulletin
## 4178 Fwd: Fw: Her Hero!
## 4179 Fwd: Fw: Her Hero!
## 4180 Fwd: Fw: Her Hero!
## 4181 Fwd: Fw: Her Hero!
## 4182 Fwd: Fw: Her Hero!
## 4183 Fwd: Fw: Her Hero!
## 4184 Fwd: Fw: Her Hero!
## 4185 Fwd: Fw: Her Hero!
## 4186 Fwd: Fw: Her Hero!
## 4187 Fwd: Fw: Her Hero!
## 4188 Fwd: Fw: Her Hero!
## 4189 Fwd: Fw: Her Hero!
## 4190 Fwd: Fw: Her Hero!
## 4191 Fwd: Fw: Her Hero!
## 4192 Fwd: Fw: Her Hero!
## 4193 Fwd: Fw: Smart Computer !!!!
## 4194 Fwd: Fw: Smart Computer !!!!
## 4195 Fwd: Fw: Smart Computer !!!!
## 4196 Fwd: Fw: Smart Computer !!!!
## 4197 Fwd: Fw: Smart Computer !!!!
## 4198 Fwd: Fw: Smart Computer !!!!
## 4199 Fwd: Fw: Smart Computer !!!!
## 4200 Fwd: Fw: Smart Computer !!!!
## 4201 Fwd: Fw: Smart Computer !!!!
## 4202 Fwd: Fw: Smart Computer !!!!
## 4203 Fwd: Fw: Smart Computer !!!!
## 4204 Fwd: Fw: Smart Computer !!!!
## 4205 Fwd: Fw: Smart Computer !!!!
## 4206 Fwd: Fw: Smart Computer !!!!
## 4207 Fwd: Fw: Smart Computer !!!!
## 4208 Fwd: Fw: My Friends "w/a halo"
## 4209 Fwd: Fw: My Friends "w/a halo"
## 4210 Fwd: Fw: My Friends "w/a halo"
## 4211 Fwd: Fw: My Friends "w/a halo"
## 4212 Fwd: Fw: My Friends "w/a halo"
## 4213 Fwd: Fw: My Friends "w/a halo"
## 4214 Fwd: Fw: My Friends "w/a halo"
## 4215 Fwd: Fw: My Friends "w/a halo"
## 4216 Fwd: Fw: My Friends "w/a halo"
## 4217 Fwd: Fw: My Friends "w/a halo"
## 4218 Fwd: Fw: My Friends "w/a halo"
## 4219 Fwd: Fw: My Friends "w/a halo"
## 4220 Fwd: good joke
## 4221 Fwd: good joke
## 4222 Fwd: good joke
## 4223 Fwd: good joke
## 4224 Fwd: good joke
## 4225 Fwd: good joke
## 4226 Fwd: good joke
## 4227 Fwd: good joke
## 4228 Fwd: good joke
## 4229 Fwd: good joke
## 4230 Fwd: good joke
## 4231 Fwd: good joke
## 4232 Fwd: good joke
## 4233 Fwd: good joke
## 4234 Fwd: good joke
## 4235 Fwd: FW: Roses for you
## 4236 Fwd: FW: Roses for you
## 4237 Fwd: FW: Roses for you
## 4238 Fwd: FW: Roses for you
## 4239 Fwd: FW: Roses for you
## 4240 Fwd: FW: Roses for you
## 4241 Fwd: FW: Roses for you
## 4242 Fwd: FW: Roses for you
## 4243 Fwd: FW: Roses for you
## 4244 Fwd: FW: Roses for you
## 4245 Fwd: FW: Roses for you
## 4246 Fwd: FW: Roses for you
## 4247 Fwd: FW: Roses for you
## 4248 Fwd: FW: Roses for you
## 4249 Fwd: FW: Roses for you
## 4250 Fwd: Important Inner office memo of protest.
## 4251 Fwd: Important Inner office memo of protest.
## 4252 Fwd: Important Inner office memo of protest.
## 4253 Fwd: Important Inner office memo of protest.
## 4254 Fwd: Important Inner office memo of protest.
## 4255 Fwd: Important Inner office memo of protest.
## 4256 Fwd: Important Inner office memo of protest.
## 4257 Fwd: Important Inner office memo of protest.
## 4258 Fwd: Important Inner office memo of protest.
## 4259 Fwd: Important Inner office memo of protest.
## 4260 Fwd: Important Inner office memo of protest.
## 4261 Fwd: Important Inner office memo of protest.
## 4262 Fwd: Important Inner office memo of protest.
## 4263 Fwd: Important Inner office memo of protest.
## 4264 Fwd: Important Inner office memo of protest.
## 4265 Fwd:
## 4266 Fwd:
## 4267 Fwd:
## 4268 Fwd:
## 4269 Fwd:
## 4270 Fwd:
## 4271 Fwd:
## 4272 Fwd:
## 4273 Fwd:
## 4274 Fwd:
## 4275 Fwd:
## 4276 Fwd:
## 4277 Fwd:
## 4278 Fwd:
## 4279 Fwd:
## 4280 Fwd: Fw: MISSING: Please Look at picture and forward
## 4281 Fwd: Fw: MISSING: Please Look at picture and forward
## 4282 Fwd: Fw: MISSING: Please Look at picture and forward
## 4283 Fwd: Fw: MISSING: Please Look at picture and forward
## 4284 Fwd: Fw: MISSING: Please Look at picture and forward
## 4285 Fwd: Fw: MISSING: Please Look at picture and forward
## 4286 Fwd: Fw: MISSING: Please Look at picture and forward
## 4287 Fwd: Fw: MISSING: Please Look at picture and forward
## 4288 Fwd: Fw: MISSING: Please Look at picture and forward
## 4289 Fwd: Fw: MISSING: Please Look at picture and forward
## 4290 Fwd: Fw: MISSING: Please Look at picture and forward
## 4291 Fwd: Fw: MISSING: Please Look at picture and forward
## 4292 Fwd: Fw: MISSING: Please Look at picture and forward
## 4293 Fwd: Fw: MISSING: Please Look at picture and forward
## 4294 Fwd: Fw: MISSING: Please Look at picture and forward
## 4295 Fwd: Fw: Naming the New World Trade Center Towers
## 4296 Fwd: Fw: Naming the New World Trade Center Towers
## 4297 Fwd: Fw: Naming the New World Trade Center Towers
## 4298 Fwd: Fw: Naming the New World Trade Center Towers
## 4299 Fwd: Fw: Naming the New World Trade Center Towers
## 4300 Fwd: Fw: Naming the New World Trade Center Towers
## 4301 Fwd: Fw: Naming the New World Trade Center Towers
## 4302 Fwd: Fw: Naming the New World Trade Center Towers
## 4303 Fwd: Fw: Naming the New World Trade Center Towers
## 4304 Fwd: Fw: Naming the New World Trade Center Towers
## 4305 Fwd: Fw: Naming the New World Trade Center Towers
## 4306 Fwd: Fw: Naming the New World Trade Center Towers
## 4307 Fwd: Fw: Naming the New World Trade Center Towers
## 4308 Fwd: Fw: Naming the New World Trade Center Towers
## 4309 Fwd: Fw: Naming the New World Trade Center Towers
## 4310 EGS & Industry Mentions - Houston Chronicle
## 4311 Platts Energy Bulletin
## 4312 General Announcement
## 4313 Bankruptcy 101 - Sign up now!
## 4314 HoustonChronicle.com News 7.04
## 4315 Bankruptcy 101 Full
## 4316 Fwd: AN IRISH WISH
## 4317 Fwd: AN IRISH WISH
## 4318 Fwd: AN IRISH WISH
## 4319 Fwd: AN IRISH WISH
## 4320 Fwd: AN IRISH WISH
## 4321 Fwd: AN IRISH WISH
## 4322 Fwd: AN IRISH WISH
## 4323 Fwd: AN IRISH WISH
## 4324 Fwd: AN IRISH WISH
## 4325 Fwd: AN IRISH WISH
## 4326 Fwd: AN IRISH WISH
## 4327 Fwd: AN IRISH WISH
## 4328 Fwd: AN IRISH WISH
## 4329 Fwd: AN IRISH WISH
## 4330 Fwd: AN IRISH WISH
## 4331 Fwd: AN IRISH WISH
## 4332 Fwd: AN IRISH WISH
## 4333 Fwd: AN IRISH WISH
## 4334 Fwd: AN IRISH WISH
## 4335 Fwd: AN IRISH WISH
## 4336 Fwd: AN IRISH WISH
## 4337 Fwd: AN IRISH WISH
## 4338 Fwd: AN IRISH WISH
## 4339 Fwd: AN IRISH WISH
## 4340 Fwd: AN IRISH WISH
## 4341 Fwd: AN IRISH WISH
## 4342 Fwd: AN IRISH WISH
## 4343 Fwd: AN IRISH WISH
## 4344 Fwd: AN IRISH WISH
## 4345 Fwd: AN IRISH WISH
## 4346 Fwd: AN IRISH WISH
## 4347 Fwd: AN IRISH WISH
## 4348 Fwd: AN IRISH WISH
## 4349 Fwd: Fw: What does this tell you ?
## 4350 Fwd: Fw: What does this tell you ?
## 4351 Fwd: Fw: What does this tell you ?
## 4352 Fwd: Fw: What does this tell you ?
## 4353 Fwd: Fw: What does this tell you ?
## 4354 Fwd: Fw: What does this tell you ?
## 4355 Fwd: Fw: What does this tell you ?
## 4356 Fwd: Fw: What does this tell you ?
## 4357 Fwd: Fw: What does this tell you ?
## 4358 Fwd: Fw: What does this tell you ?
## 4359 Fwd: Fw: What does this tell you ?
## 4360 Fwd: Fw: What does this tell you ?
## 4361 Fwd: Fw: What does this tell you ?
## 4362 Fwd: Fw: What does this tell you ?
## 4363 Fwd: Fw: What does this tell you ?
## 4364 Fwd: Fw: What does this tell you ?
## 4365 Fwd: Fw: What does this tell you ?
## 4366 Fwd: Fw: What does this tell you ?
## 4367 Fwd: Fw: What does this tell you ?
## 4368 Fwd: Fw: What does this tell you ?
## 4369 Fwd: Fw: What does this tell you ?
## 4370 Fwd: Fw: What does this tell you ?
## 4371 Fwd: Fw: What does this tell you ?
## 4372 Fwd: Fw: What does this tell you ?
## 4373 Fwd: Fw: What does this tell you ?
## 4374 Fwd: Fw: What does this tell you ?
## 4375 Fwd: Fw: What does this tell you ?
## 4376 Fwd: Fw: What does this tell you ?
## 4377 Fwd: Fw: What does this tell you ?
## 4378 Fwd: Fw: What does this tell you ?
## 4379 Fwd: Fw: What does this tell you ?
## 4380 Fwd: Fw: What does this tell you ?
## 4381 Fwd: Fw: What does this tell you ?
## 4382 Fwd: Fw: What does this tell you ?
## 4383 Fwd: Fw: What does this tell you ?
## 4384 Fwd: Fw: What does this tell you ?
## 4385 Fwd: Fw: What does this tell you ?
## 4386 Fwd: Fw: What does this tell you ?
## 4387 Fwd: Fw: What does this tell you ?
## 4388 Fwd: Fw: What does this tell you ?
## 4389 Fwd: Fw: What does this tell you ?
## 4390 Fwd: Fw: What does this tell you ?
## 4391 ETS and Corporate Change Control
## 4392 Platts Energy Bulletin
## 4393 Outlook Tips
## 4394 RE: Backhaul Rates from NNG to Waha
## 4395 RE: Backhaul Rates from NNG to Waha
## 4396 RE: Backhaul Rates from NNG to Waha
## 4397 RE: Backhaul Rates from NNG to Waha
## 4398 Waha Backhaul
## 4399 Waha Backhaul
## 4400 Waha Backhaul
## 4401 Waha Backhaul
## 4402 RE: Mid 4 to Mid 3 Quote
## 4403 RE: Mid 4 to Mid 3 Quote
## 4404 RE: Mid 4 to Mid 3 Quote
## 4405 RE: Mid 4 to Mid 3 Quote
## 4406 RE: TransPecos and Sun Devil
## 4407 RE: TransPecos and Sun Devil
## 4408 Platts Energy Bulletin
## 4409 NEWGen Release January 2002
## 4410 IMPORTANT MESSAGE TO ALL EMPLOYEES PARTICIPATING IN THE ENRON CORP SAVINGS & ESOP PLANS
## 4411 Copier Commitment Information Requested
## 4412 NEWGen Release December 2001
## 4413 NEWGen Release December 2001
## 4414 Fwd: (no subject)
## 4415 Platts Energy Bulletin
## 4416 Houston Visit
## 4417 Houston Visit
## 4418 Second Cataract Surgery
## 4419 Second Cataract Surgery
## 4420 Second Cataract Surgery
## 4421 Second Cataract Surgery
## 4422 Second Cataract Surgery
## 4423 RE: Second Cataract Surgery
## 4424 RE: Second Cataract Surgery
## 4425 RE: Second Cataract Surgery
## 4426 RE: Second Cataract Surgery
## 4427 RE: Second Cataract Surgery
## 4428 RE: Second Cataract Surgery
## 4429 RE: Second Cataract Surgery
## 4430 RE: Second Cataract Surgery
## 4431 RE: Second Cataract Surgery
## 4432 RE: Second Cataract Surgery
## 4433 Bid Cycle Meeting Notice
## 4434 Bid Cycle Meeting Notice
## 4435 Bid Cycle Meeting Notice
## 4436 Bid Cycle Meeting Notice
## 4437 Bid Cycle Meeting Notice
## 4438 Bid Cycle Meeting Notice
## 4439 Bid Cycle Meeting Notice
## 4440 Bid Cycle Meeting Notice
## 4441 Bid Cycle Meeting Notice
## 4442 Bid Cycle Meeting Notice
## 4443 Bid Cycle Meeting Notice
## 4444 Bid Cycle Meeting Notice
## 4445 Bid Cycle Meeting Notice
## 4446 Bid Cycle Meeting Notice
## 4447 Bid Cycle Meeting Notice
## 4448 Bid Cycle Meeting Notice
## 4449 Bid Cycle Meeting Notice
## 4450 Bid Cycle Meeting Notice
## 4451 Bid Cycle Meeting Notice
## 4452 Bid Cycle Meeting Notice
## 4453 Bid Cycle Meeting Notice
## 4454 Bid Cycle Meeting Notice
## 4455 Bid Cycle Meeting Notice
## 4456 Bid Cycle Meeting Notice
## 4457 Bid Cycle Meeting Notice
## 4458 Bid Cycle Meeting Notice
## 4459 Bid Cycle Meeting Notice
## 4460 Bid Cycle Meeting Notice
## 4461 Bid Cycle Meeting Notice
## 4462 Bid Cycle Meeting Notice
## 4463 Bid Cycle Meeting Notice
## 4464 Bid Cycle Meeting Notice
## 4465 Bid Cycle Meeting Notice
## 4466 Bid Cycle Meeting Notice
## 4467 Bid Cycle Meeting Notice
## 4468 Bid Cycle Meeting Notice
## 4469 Bid Cycle Meeting Notice
## 4470 Bid Cycle Meeting Notice
## 4471 Bid Cycle Meeting Notice
## 4472 Bid Cycle Meeting Notice
## 4473 Bid Cycle Meeting Notice
## 4474 Bid Cycle Meeting Notice
## 4475 Bid Cycle Meeting Notice
## 4476 Bid Cycle Meeting Notice
## 4477 Bid Cycle Meeting Notice
## 4478 Bid Cycle Meeting Notice
## 4479 Bid Cycle Meeting Notice
## 4480 Bid Cycle Meeting Notice
## 4481 Bid Cycle Meeting Notice
## 4482 Bid Cycle Meeting Notice
## 4483 Bid Cycle Meeting Notice
## 4484 Bid Cycle Meeting Notice
## 4485 Bid Cycle Meeting Notice
## 4486 Bid Cycle Meeting Notice
## 4487 Bid Cycle Meeting Notice
## 4488 Bid Cycle Meeting Notice
## 4489 Bid Cycle Meeting Notice
## 4490 Bid Cycle Meeting Notice
## 4491 Bid Cycle Meeting Notice
## 4492 Bid Cycle Meeting Notice
## 4493 Bid Cycle Meeting Notice
## 4494 Bid Cycle Meeting Notice
## 4495 Bid Cycle Meeting Notice
## 4496 Bid Cycle Meeting Notice
## 4497 Bid Cycle Meeting Notice
## 4498 RE:
## 4499
## 4500 Re: (no subject)
## 4501 Re: (no subject)
## 4502 Re: (no subject)
## 4503 Re: (no subject)
## 4504 Re: (no subject)
## 4505 Re: (no subject)
## 4506 Re: (no subject)
## 4507 Re: (no subject)
## 4508 Re: (no subject)
## 4509 Re: (no subject)
## 4510 Re: (no subject)
## 4511 Re: (no subject)
## 4512 Re: (no subject)
## 4513 Re: (no subject)
## 4514 Re: (no subject)
## 4515 Re: (no subject)
## 4516 Re: (no subject)
## 4517 Re: (no subject)
## 4518 Re: (no subject)
## 4519 Re: (no subject)
## 4520 Re: (no subject)
## 4521 Re: (no subject)
## 4522 Re: (no subject)
## 4523 Re: (no subject)
## 4524 RE: WESTERN CANADIAN SEDIMENTARY BASIN
## 4525 Fwd: HAVE YOU READ THIS ONE??
## 4526 Fwd: HAVE YOU READ THIS ONE??
## 4527 Fwd: HAVE YOU READ THIS ONE??
## 4528 Fwd: HAVE YOU READ THIS ONE??
## 4529 Fwd: HAVE YOU READ THIS ONE??
## 4530 Fwd: HAVE YOU READ THIS ONE??
## 4531 Fwd: HAVE YOU READ THIS ONE??
## 4532 Fwd: HAVE YOU READ THIS ONE??
## 4533 Fwd: HAVE YOU READ THIS ONE??
## 4534 Fwd: HAVE YOU READ THIS ONE??
## 4535 Platts Energy Bulletin
## 4536 Fwd: News Release
## 4537 Fwd: LOL
## 4538 Fwd: KEEP IT GOING
## 4539 ETS IT January Newsletter now available
## 4540 ETS IT January Newsletter now available
## 4541 Fwd: Have a great weekend and use this as your weekly planner! Fw: Next week...
## 4542 Fwd: Have a great weekend and use this as your weekly planner! Fw: Next week...
## 4543 Fwd: Have a great weekend and use this as your weekly planner! Fw: Next week...
## 4544 Fwd: Have a great weekend and use this as your weekly planner! Fw: Next week...
## 4545 Fwd: Have a great weekend and use this as your weekly planner! Fw: Next week...
## 4546 Fwd: Have a great weekend and use this as your weekly planner! Fw: Next week...
## 4547 Membership rewards announcement - Pls distribute 1/18/02
## 4548 Link to Sherron Watkins letter
## 4549 Link to Sherron Watkins letter
## 4550 Link to Sherron Watkins letter
## 4551 Link to Sherron Watkins letter
## 4552 Platts Energy Bulletin
## 4553 NETCO Employees at Enron
## 4554 NETCO Employees at Enron
## 4555 NETCO Employees at Enron
## 4556 Platts Energy Bulletin
## 4557 KOMP Horticultural - Sale of Leased Plants
## 4558 MISO outlasts the Alliance: It s the politics, stupid
## 4559 Need your Help!
## 4560 Need your Help!
## 4561 Need your Help!
## 4562 Need your Help!
## 4563 Need your Help!
## 4564 Need your Help!
## 4565 Need your Help!
## 4566 Need your Help!
## 4567 Need your Help!
## 4568 Need your Help!
## 4569 Need your Help!
## 4570 Need your Help!
## 4571 Need your Help!
## 4572 Need your Help!
## 4573 Need your Help!
## 4574 Need your Help!
## 4575 Need your Help!
## 4576 Need your Help!
## 4577 Need your Help!
## 4578 Need your Help!
## 4579 Need your Help!
## 4580 Need your Help!
## 4581 Need your Help!
## 4582 Need your Help!
## 4583 Need your Help!
## 4584 Need your Help!
## 4585 Need your Help!
## 4586 Need your Help!
## 4587 Need your Help!
## 4588 Need your Help!
## 4589 Need your Help!
## 4590 Need your Help!
## 4591 Need your Help!
## 4592 Need your Help!
## 4593 Need your Help!
## 4594 Need your Help!
## 4595 Need your Help!
## 4596 Need your Help!
## 4597 Need your Help!
## 4598 Need your Help!
## 4599 Need your Help!
## 4600 Need your Help!
## 4601 Need your Help!
## 4602 Need your Help!
## 4603 Need your Help!
## 4604 Need your Help!
## 4605 Need your Help!
## 4606 Need your Help!
## 4607 Need your Help!
## 4608 Need your Help!
## 4609 Need your Help!
## 4610 Need your Help!
## 4611 Need your Help!
## 4612 Need your Help!
## 4613 Need your Help!
## 4614 Need your Help!
## 4615 Need your Help!
## 4616 Need your Help!
## 4617 Need your Help!
## 4618 FROM CINDY OLSON, COMMUNITY RELATIONS: Body Shop Reopening
## 4619 Needles Golf Tournament
## 4620 Needles Golf Tournament
## 4621 Needles Golf Tournament
## 4622 UPDATE: Supported Internet Email Addresses
## 4623 Tabled, canceled project numbers climbing
## 4624 Ocean carbon storage: science shows promise, problems
## 4625 Fw: How (not) to speak English Properly
## 4626 Fw: How (not) to speak English Properly
## 4627 Fw: How (not) to speak English Properly
## 4628 Fw: How (not) to speak English Properly
## 4629 Fw: How (not) to speak English Properly
## 4630 Fw: How (not) to speak English Properly
## 4631 Fw: How (not) to speak English Properly
## 4632 Fw: How (not) to speak English Properly
## 4633 Fw: How (not) to speak English Properly
## 4634 Fw: How (not) to speak English Properly
## 4635 Fw: How (not) to speak English Properly
## 4636 Fw: How (not) to speak English Properly
## 4637 Fw: How (not) to speak English Properly
## 4638 Fw: How (not) to speak English Properly
## 4639 Fw: How (not) to speak English Properly
## 4640 Fw: How (not) to speak English Properly
## 4641 Fw: How (not) to speak English Properly
## 4642 Fw: How (not) to speak English Properly
## 4643 Fw: How (not) to speak English Properly
## 4644 Fw: How (not) to speak English Properly
## 4645 Fw: How (not) to speak English Properly
## 4646 on Tuesday, 1/15, I have to return to the
## 4647 on Tuesday, 1/15, I have to return to the
## 4648 on Tuesday, 1/15, I have to return to the
## 4649 on Tuesday, 1/15, I have to return to the
## 4650 on Tuesday, 1/15, I have to return to the
## 4651 EP2002 Alternative Power Track Follow-up
## 4652 EP2002 Folllow-up
## 4653 EP2002 Folllow-up
## 4654 EP2002 Folllow-up
## 4655 EP2002 Folllow-up
## 4656 Natural Gas Infrastructure - Follow-up from Meeting
## 4657 Natural Gas Infrastructure - Follow-up from Meeting
## 4658 Natural Gas Infrastructure - Follow-up from Meeting
## 4659 Natural Gas Infrastructure - Follow-up from Meeting
## 4660 Natural Gas Infrastructure - Follow-up from Meeting
## 4661 Natural Gas Infrastructure - Follow-up from Meeting
## 4662 Natural Gas Infrastructure - Follow-up from Meeting
## 4663 Natural Gas Infrastructure - Follow-up from Meeting
## 4664 Natural Gas Infrastructure - Follow-up from Meeting
## 4665 EP2002 Follow-up - Alternative Power Track
## 4666 EP2002 Follow-up - Alternative Power Track
## 4667 EP2002 Follow-up - Alternative Power Track
## 4668 Natural Gas Infrastructure
## 4669 ENA Gas Structuring
## 4670 Re: FW: 25841 Contract Changes for 1/20/01
## 4671 FW: You are Invited to an Open Season Reception for Desert Crossing Gas Storage and Transportation System
## 4672 FW: You are Invited to an Open Season Reception for Desert Crossing Gas Storage and Transportation System
## 4673 FW: You are Invited to an Open Season Reception for Desert Crossing Gas Storage and Transportation System
## 4674 FW: You are Invited to an Open Season Reception for Desert Crossing Gas Storage and Transportation System
## 4675 FW: You are Invited to an Open Season Reception for Desert Crossing Gas Storage and Transportation System
## 4676 FW: You are Invited to an Open Season Reception for Desert Crossing Gas Storage and Transportation System
## 4677 FW: You are Invited to an Open Season Reception for Desert Crossing Gas Storage and Transportation System
## 4678 FW: You are Invited to an Open Season Reception for Desert Crossing Gas Storage and Transportation System
## 4679 FW: You are Invited to an Open Season Reception for Desert Crossing Gas Storage and Transportation System
## 4680 FW: You are Invited to an Open Season Reception for Desert Crossing Gas Storage and Transportation System
## 4681 FW: You are Invited to an Open Season Reception for Desert Crossing Gas Storage and Transportation System
## 4682 FW: You are Invited to an Open Season Reception for Desert Crossing Gas Storage and Transportation System
## 4683 FW: You are Invited to an Open Season Reception for Desert Crossing Gas Storage and Transportation System
## 4684 FW: You are Invited to an Open Season Reception for Desert Crossing Gas Storage and Transportation System
## 4685 FW: You are Invited to an Open Season Reception for Desert Crossing Gas Storage and Transportation System
## 4686 FW: You are Invited to an Open Season Reception for Desert Crossing Gas Storage and Transportation System
## 4687 Press Release
## 4688 Press Release
## 4689 Press Release
## 4690 Press Release
## 4691 Press Release
## 4692 Press Release
## 4693 Press Release
## 4694 Press Release
## 4695 Press Release
## 4696 Press Release
## 4697 Press Release
## 4698 Press Release
## 4699 Press Release
## 4700 Press Release
## 4701 Press Release
## 4702 Press Release
## 4703 Press Release
## 4704 Press Release
## 4705 Press Release
## 4706 Press Release
## 4707 Press Release
## 4708 Press Release
## 4709 Press Release
## 4710 Press Release
## 4711 Press Release
## 4712 Press Release
## 4713 Press Release
## 4714 Press Release
## 4715 PNM Terminates Merger with Western Resources
## 4716 PNM Terminates Merger with Western Resources
## 4717 PNM Terminates Merger with Western Resources
## 4718 PNM Terminates Merger with Western Resources
## 4719 PNM Terminates Merger with Western Resources
## 4720 PNM Terminates Merger with Western Resources
## 4721 PNM Terminates Merger with Western Resources
## 4722 PNM Terminates Merger with Western Resources
## 4723 PNM Terminates Merger with Western Resources
## 4724 PNM Terminates Merger with Western Resources
## 4725 PNM Terminates Merger with Western Resources
## 4726 PNM Terminates Merger with Western Resources
## 4727 PNM Terminates Merger with Western Resources
## 4728 PNM Terminates Merger with Western Resources
## 4729 PNM Terminates Merger with Western Resources
## 4730 PNM Terminates Merger with Western Resources
## 4731 FW: enjoy
## 4732 FW: enjoy
## 4733 FW: enjoy
## 4734 FW: enjoy
## 4735 FW: enjoy
## 4736 FW: enjoy
## 4737 FW: enjoy
## 4738 FW: enjoy
## 4739 FW: enjoy
## 4740 FW: enjoy
## 4741 FW: enjoy
## 4742 FW: enjoy
## 4743 FW: enjoy
## 4744 FW: enjoy
## 4745 Stock pick fo you
## 4746 Stock pick fo you
## 4747 Stock pick fo you
## 4748 Stock pick fo you
## 4749 Stock pick fo you
## 4750 Fw: Fw: Ain t that the Truth !!!
## 4751 Fw: Fw: Ain t that the Truth !!!
## 4752 Fw: Fw: Ain t that the Truth !!!
## 4753 Fw: Fw: Ain t that the Truth !!!
## 4754 Fw: Fw: Ain t that the Truth !!!
## 4755 Fw: Fw: Ain t that the Truth !!!
## 4756 Fw: Fw: Ain t that the Truth !!!
## 4757 Fw: Fw: Ain t that the Truth !!!
## 4758 Fw: Fw: Ain t that the Truth !!!
## 4759 Fw: Fw: Ain t that the Truth !!!
## 4760 Fw: Fw: Ain t that the Truth !!!
## 4761 Fw: Fw: Ain t that the Truth !!!
## 4762 Fw: Money
## 4763 Fw: Money
## 4764 Fw: Money
## 4765 Fw: Money
## 4766 Fw: Money
## 4767 Fw: Money
## 4768 Fw: Money
## 4769 Fw: Money
## 4770 Fw: Money
## 4771 Fw: Money
## 4772 Fw: Money
## 4773 Coffee & Donuts, Friday 8:00 - 9:00 a.m.
## 4774 Wave power debuts in North America
## 4775 RE: SAN JUAN BASIN 3rd QUARTER 2001 PRODUCTION REPORT
## 4776 ETS and Corporate Change Control
## 4777 New year offers a host of new energy situations
## 4778 Contracts/PLE on-call schedule
## 4779 Contracts/PLE on-call schedule
## 4780 Contracts/PLE on-call schedule
## 4781 Contracts/PLE on-call schedule
## 4782 Contracts/PLE on-call schedule
## 4783 Contracts/PLE on-call schedule
## 4784 Contracts/PLE on-call schedule
## 4785 Contracts/PLE on-call schedule
## 4786 Contracts/PLE on-call schedule
## 4787 Contracts/PLE on-call schedule
## 4788 Contracts/PLE on-call schedule
## 4789 Contracts/PLE on-call schedule
## 4790 Contracts/PLE on-call schedule
## 4791 Contracts/PLE on-call schedule
## 4792 Contracts/PLE on-call schedule
## 4793 Contracts/PLE on-call schedule
## 4794 Contracts/PLE on-call schedule
## 4795 Contracts/PLE on-call schedule
## 4796 Contracts/PLE on-call schedule
## 4797 Contracts/PLE on-call schedule
## 4798 Contracts/PLE on-call schedule
## 4799 Contracts/PLE on-call schedule
## 4800 Contracts/PLE on-call schedule
## 4801 Contracts/PLE on-call schedule
## 4802 Contracts/PLE on-call schedule
## 4803 Contracts/PLE on-call schedule
## 4804 Contracts/PLE on-call schedule
## 4805 Contracts/PLE on-call schedule
## 4806 Contracts/PLE on-call schedule
## 4807 Contracts/PLE on-call schedule
## 4808 Contracts/PLE on-call schedule
## 4809 Contracts/PLE on-call schedule
## 4810 Contracts/PLE on-call schedule
## 4811 Contracts/PLE on-call schedule
## 4812 Contracts/PLE on-call schedule
## 4813 Contracts/PLE on-call schedule
## 4814 Contracts/PLE on-call schedule
## 4815 Contracts/PLE on-call schedule
## 4816 Contracts/PLE on-call schedule
## 4817 Contracts/PLE on-call schedule
## 4818 Contracts/PLE on-call schedule
## 4819 Contracts/PLE on-call schedule
## 4820 Contracts/PLE on-call schedule
## 4821 Contracts/PLE on-call schedule
## 4822 Contracts/PLE on-call schedule
## 4823 Contracts/PLE on-call schedule
## 4824 Contracts/PLE on-call schedule
## 4825 Contracts/PLE on-call schedule
## 4826 Contracts/PLE on-call schedule
## 4827 Contracts/PLE on-call schedule
## 4828 Contracts/PLE on-call schedule
## 4829 Contracts/PLE on-call schedule
## 4830 Contracts/PLE on-call schedule
## 4831 Contracts/PLE on-call schedule
## 4832 Contracts/PLE on-call schedule
## 4833 Contracts/PLE on-call schedule
## 4834 Contracts/PLE on-call schedule
## 4835 Contracts/PLE on-call schedule
## 4836 Contracts/PLE on-call schedule
## 4837 Contracts/PLE on-call schedule
## 4838 Contracts/PLE on-call schedule
## 4839 Contracts/PLE on-call schedule
## 4840 Contracts/PLE on-call schedule
## 4841 Contracts/PLE on-call schedule
## 4842 Contracts/PLE on-call schedule
## 4843 Contracts/PLE on-call schedule
## 4844 Contracts/PLE on-call schedule
## 4845 Contracts/PLE on-call schedule
## 4846 Contracts/PLE on-call schedule
## 4847 Contracts/PLE on-call schedule
## 4848 ETS Pipeline Integrity Program Management - Organizational Changes
## 4849 Updated Q&As for Enron Employees
## 4850 Your removal from About.com Today
## 4851 NGI s Article on the Merger
## 4852 NGI s Article on the Merger
## 4853 NGI s Article on the Merger
## 4854 NGI s Article on the Merger
## 4855 NGI s Article on the Merger
## 4856 NGI s Article on the Merger
## 4857 NGI s Article on the Merger
## 4858 NGI s Article on the Merger
## 4859 NGI s Article on the Merger
## 4860 NGI s Article on the Merger
## 4861 NGI s Article on the Merger
## 4862 NGI s Article on the Merger
## 4863 NGI s Article on the Merger
## 4864 NGI s Article on the Merger
## 4865 NGI s Article on the Merger
## 4866 NGI s Article on the Merger
## 4867 NGI s Article on the Merger
## 4868 NGI s Article on the Merger
## 4869 NGI s Article on the Merger
## 4870 NGI s Article on the Merger
## 4871 NGI s Article on the Merger
## 4872 NGI s Article on the Merger
## 4873 NGI s Article on the Merger
## 4874 NGI s Article on the Merger
## 4875 NGI s Article on the Merger
## 4876 NGI s Article on the Merger
## 4877 NGI s Article on the Merger
## 4878 NGI s Article on the Merger
## 4879 NGI s Article on the Merger
## 4880 NGI s Article on the Merger
## 4881 NGI s Article on the Merger
## 4882 NGI s Article on the Merger
## 4883 NGI s Article on the Merger
## 4884 NGI s Article on the Merger
## 4885 NGI s Article on the Merger
## 4886 NGI s Article on the Merger
## 4887 NGI s Article on the Merger
## 4888 NGI s Article on the Merger
## 4889 NGI s Article on the Merger
## 4890 NGI s Article on the Merger
## 4891 NGI s Article on the Merger
## 4892 NGI s Article on the Merger
## 4893 NGI s Article on the Merger
## 4894 NGI s Article on the Merger
## 4895 NGI s Article on the Merger
## 4896 NGI s Article on the Merger
## 4897 NGI s Article on the Merger
## 4898 NGI s Article on the Merger
## 4899 NGI s Article on the Merger
## 4900 NGI s Article on the Merger
## 4901 NGI s Article on the Merger
## 4902 NGI s Article on the Merger
## 4903 NGI s Article on the Merger
## 4904 NGI s Article on the Merger
## 4905 NGI s Article on the Merger
## 4906 NGI s Article on the Merger
## 4907 NGI s Article on the Merger
## 4908 NGI s Article on the Merger
## 4909 NGI s Article on the Merger
## 4910 NGI s Article on the Merger
## 4911 NGI s Article on the Merger
## 4912 NGI s Article on the Merger
## 4913 NGI s Article on the Merger
## 4914 NGI s Article on the Merger
## 4915 NGI s Article on the Merger
## 4916 NGI s Article on the Merger
## 4917 NGI s Article on the Merger
## 4918 NGI s Article on the Merger
## 4919 NGI s Article on the Merger
## 4920 NGI s Article on the Merger
## 4921 NGI s Article on the Merger
## 4922 NGI s Article on the Merger
## 4923 NGI s Article on the Merger
## 4924 NGI s Article on the Merger
## 4925 NGI s Article on the Merger
## 4926 NGI s Article on the Merger
## 4927 NGI s Article on the Merger
## 4928 NGI s Article on the Merger
## 4929 NGI s Article on the Merger
## 4930 NGI s Article on the Merger
## 4931 NGI s Article on the Merger
## 4932 NGI s Article on the Merger
## 4933 NGI s Article on the Merger
## 4934 NGI s Article on the Merger
## 4935 NGI s Article on the Merger
## 4936 NGI s Article on the Merger
## 4937 NGI s Article on the Merger
## 4938 NGI s Article on the Merger
## 4939 NGI s Article on the Merger
## 4940 NGI s Article on the Merger
## 4941 NGI s Article on the Merger
## 4942 NGI s Article on the Merger
## 4943 NGI s Article on the Merger
## 4944 NGI s Article on the Merger
## 4945 NGI s Article on the Merger
## 4946 NGI s Article on the Merger
## 4947 NGI s Article on the Merger
## 4948 NGI s Article on the Merger
## 4949 NGI s Article on the Merger
## 4950 NGI s Article on the Merger
## 4951 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4952 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4953 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4954 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4955 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4956 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4957 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4958 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4959 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4960 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4961 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4962 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4963 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4964 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4965 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4966 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4967 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4968 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4969 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4970 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4971 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4972 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4973 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4974 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4975 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4976 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4977 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4978 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4979 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4980 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4981 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4982 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4983 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4984 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4985 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4986 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4987 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4988 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4989 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4990 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4991 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4992 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4993 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4994 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4995 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4996 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4997 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4998 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 4999 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5000 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5001 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5002 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5003 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5004 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5005 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5006 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5007 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5008 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5009 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5010 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5011 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5012 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5013 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5014 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5015 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5016 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5017 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5018 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5019 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5020 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5021 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5022 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5023 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5024 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5025 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5026 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5027 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5028 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5029 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5030 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5031 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5032 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5033 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5034 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5035 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5036 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5037 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5038 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5039 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5040 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5041 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5042 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5043 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5044 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5045 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5046 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5047 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5048 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5049 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5050 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5051 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5052 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5053 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5054 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5055 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5056 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 5057 ENA Gas Structuring
## 5058 Steve Cooper voicemail - 03/22/2002
## 5059 Steve Cooper voicemail - 03/22/2002
## 5060 Steve Cooper Articles
## 5061 Steve Cooper voicemail - 03/01/2002
## 5062 Update on Retention & Severance Plan
## 5063 Transcripts of Steve Cooper s voicemails
## 5064 Message from Stan Horton - EGS Management Change
## 5065 Management Changes
## 5066 New Stock Symbol
## 5067 FGT s Customer Letter
## 5068 FGT s Customer Letter
## 5069 UPDATE - Reporting to Work Next Week
## 5070 Overview of Investor Conference Call
## 5071 Enron Announces Plans to Merge with Dynegy
## 5072 Dynegy-Enron deal potential staggering
## 5073 SEC Information/Earnings Restatement
## 5074 Enron Update
## 5075 Daily Update
## 5076 Natural Gas Origination
## 5077 Jeff McMahon Named CFO
## 5078 New Risk Management Policy
## 5079 Organization Changes
## 5080 Enron Principal Investments - Organizational Memo
## 5081 CORRECTION- Routing of Calls to EES Business Center
## 5082 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5083 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5084 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5085 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5086 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5087 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5088 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5089 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5090 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5091 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5092 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5093 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5094 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5095 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5096 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5097 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5098 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5099 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5100 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5101 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5102 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5103 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5104 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5105 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5106 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5107 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5108 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5109 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5110 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5111 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5112 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5113 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5114 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5115 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5116 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5117 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5118 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5119 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 5120 Formation of Enron Management Committee
## 5121 San Juan Team Advisor
## 5122 San Juan Team Advisor
## 5123 San Juan Team Advisor
## 5124 San Juan Team Advisor
## 5125 San Juan Team Advisor
## 5126 San Juan Team Advisor
## 5127 San Juan Team Advisor
## 5128 San Juan Team Advisor
## 5129 San Juan Team Advisor
## 5130 San Juan Team Advisor
## 5131 San Juan Team Advisor
## 5132 San Juan Team Advisor
## 5133 San Juan Team Advisor
## 5134 San Juan Team Advisor
## 5135 San Juan Team Advisor
## 5136 San Juan Team Advisor
## 5137 San Juan Team Advisor
## 5138 San Juan Team Advisor
## 5139 San Juan Team Advisor
## 5140 San Juan Team Advisor
## 5141 San Juan Team Advisor
## 5142 San Juan Team Advisor
## 5143 San Juan Team Advisor
## 5144 San Juan Team Advisor
## 5145 San Juan Team Advisor
## 5146 San Juan Team Advisor
## 5147 San Juan Team Advisor
## 5148 San Juan Team Advisor
## 5149 San Juan Team Advisor
## 5150 San Juan Team Advisor
## 5151 San Juan Team Advisor
## 5152 San Juan Team Advisor
## 5153 San Juan Team Advisor
## 5154 San Juan Team Advisor
## 5155 San Juan Team Advisor
## 5156 San Juan Team Advisor
## 5157 San Juan Team Advisor
## 5158 San Juan Team Advisor
## 5159 San Juan Team Advisor
## 5160 San Juan Team Advisor
## 5161 San Juan Team Advisor
## 5162 San Juan Team Advisor
## 5163 San Juan Team Advisor
## 5164 San Juan Team Advisor
## 5165 San Juan Team Advisor
## 5166 San Juan Team Advisor
## 5167 San Juan Team Advisor
## 5168 San Juan Team Advisor
## 5169 San Juan Team Advisor
## 5170 San Juan Team Advisor
## 5171 San Juan Team Advisor
## 5172 San Juan Team Advisor
## 5173 San Juan Team Advisor
## 5174 San Juan Team Advisor
## 5175 San Juan Team Advisor
## 5176 San Juan Team Advisor
## 5177 San Juan Team Advisor
## 5178 San Juan Team Advisor
## 5179 San Juan Team Advisor
## 5180 San Juan Team Advisor
## 5181 San Juan Team Advisor
## 5182 San Juan Team Advisor
## 5183 San Juan Team Advisor
## 5184 San Juan Team Advisor
## 5185 San Juan Team Advisor
## 5186 San Juan Team Advisor
## 5187 San Juan Team Advisor
## 5188 San Juan Team Advisor
## 5189 San Juan Team Advisor
## 5190 San Juan Team Advisor
## 5191 San Juan Team Advisor
## 5192 San Juan Team Advisor
## 5193 San Juan Team Advisor
## 5194 San Juan Team Advisor
## 5195 San Juan Team Advisor
## 5196 San Juan Team Advisor
## 5197 San Juan Team Advisor
## 5198 San Juan Team Advisor
## 5199 San Juan Team Advisor
## 5200 San Juan Team Advisor
## 5201 San Juan Team Advisor
## 5202 San Juan Team Advisor
## 5203 San Juan Team Advisor
## 5204 San Juan Team Advisor
## 5205 San Juan Team Advisor
## 5206 San Juan Team Advisor
## 5207 San Juan Team Advisor
## 5208 San Juan Team Advisor
## 5209 San Juan Team Advisor
## 5210 San Juan Team Advisor
## 5211 Enron Kids Adopt A Child Program
## 5212 RE: Chad Garren Memorial Scholarship-Thank You
## 5213 RE: Chad Garren Memorial Scholarship-Thank You
## 5214 RE: Chad Garren Memorial Scholarship-Thank You
## 5215 RE: Chad Garren Memorial Scholarship-Thank You
## 5216 RE: Chad Garren Memorial Scholarship-Thank You
## 5217 Enron Kids Update
## 5218 Enron Kids Update
## 5219 Enron Kids Update
## 5220 Enron Kids Update
## 5221 Enron Kids Update
## 5222 Enron Kids Update
## 5223 Enron Kids Update
## 5224 Enron Kids Update
## 5225 Enron Kids Update
## 5226 Enron Kids Update
## 5227 Enron Kids Update
## 5228 Enron Kids Update
## 5229 Enron Kids Update
## 5230 Enron Kids Update
## 5231 Enron Kids Update
## 5232 Enron Kids Update
## 5233 Enron Kids Update
## 5234 Enron Kids Update
## 5235 Enron Kids Update
## 5236 Enron Kids Update
## 5237 Enron Kids Update
## 5238 Enron Kids Update
## 5239 Enron Kids Update
## 5240 Enron Kids Update
## 5241 Enron Kids Update
## 5242 Enron Kids Update
## 5243 Enron Kids Update
## 5244 Enron Kids Update
## 5245 Enron Kids Update
## 5246 Enron Kids Update
## 5247 Enron Kids Update
## 5248 Enron Kids Update
## 5249 Enron Kids Update
## 5250 Enron s Kids Truck
## 5251 Enron s Kids Truck
## 5252 Enron s Kids Truck
## 5253 Enron s Kids Truck
## 5254 Enron s Kids Truck
## 5255 contact information
## 5256 contact information
## 5257 RE: Enron Kids Registration
## 5258 RE: Enron Kids Registration
## 5259 RE: Enron Kids Registration
## 5260 RE: Enron Kids Registration
## 5261 RE: Enron Kids Registration
## 5262 RE: Enron Kids Registration
## 5263 RE: Enron Kids Registration
## 5264 RE: Enron Kids Registration
## 5265 RE: Enron Kids Registration
## 5266 RE: Enron Kids Registration
## 5267 RE: Enron Kids Registration
## 5268 RE: Enron Kids Registration
## 5269 RE: Enron Kids Registration
## 5270 RE: Enron Kids Registration
## 5271 RE: Enron Kids Registration
## 5272 RE: Enron Kids Registration
## 5273 RE: Enron Kids Registration
## 5274 RE: Enron Kids Registration
## 5275 RE: Enron Kids Registration
## 5276 RE: Enron Kids Registration
## 5277 RE: Enron Kids Registration
## 5278 RE: Enron Kids Registration
## 5279 RE: Enron Kids Registration
## 5280 RE: Enron Kids Registration
## 5281 RE: Enron Kids Registration
## 5282 RE: Enron Kids Registration
## 5283 RE: Enron Kids Registration
## 5284 RE: Enron Kids Registration
## 5285 RE: Enron Kids Registration
## 5286 RE: Enron Kids Registration
## 5287 RE: Enron Kids Registration
## 5288 RE: Enron Kids Registration
## 5289 RE: Enron Kids Registration
## 5290 RE: Enron Kids Registration
## 5291 RE: Enron Kids Registration
## 5292 RE: Enron Kids Registration
## 5293 RE: Enron Kids Registration
## 5294 RE: Enron Kids Registration
## 5295 RE: Enron Kids Registration
## 5296 RE: Enron Kids Registration
## 5297 RE: Enron Kids Registration
## 5298 RE: Enron Kids Registration
## 5299 RE: Enron Kids Registration
## 5300 RE: Enron Kids Registration
## 5301 RE: Enron Kids Registration
## 5302 RE: Enron Kids Registration
## 5303 RE: Enron Kids Registration
## 5304 RE: Enron Kids Registration
## 5305 RE: Enron Kids Registration
## 5306 FW: Enron Kids announcement
## 5307 FW: Enron Kids announcement
## 5308 FW: Enron Kids announcement
## 5309 Enron Kids 2001 Program
## 5310 Enron Kids 2001 Program
## 5311 Enron Kids 2001 Program
## 5312 Enron Kids 2001 Program
## 5313 RE: Enron Kids Volunteer Signup
## 5314 RE: Enron Kids Volunteer Signup
## 5315 RE: Enron Kids Volunteer Signup
## 5316 RE: Enron Kids Volunteer Signup
## 5317 RE: Enron Kids Volunteer Signup
## 5318 RE: Enron Kids Volunteer Signup
## 5319 RE: Enron Kids Volunteer Signup
## 5320 RE: Enron Kids Volunteer Signup
## 5321 RE: Enron Kids Volunteer Signup
## 5322 RE: Enron Kids Volunteer Signup
## 5323 RE: Enron Kids Volunteer Signup
## 5324 RE: Enron Kids Volunteer Signup
## 5325 RE: Enron Kids Volunteer Signup
## 5326 RE: Enron Kids Volunteer Signup
## 5327 RE: Enron Kids Volunteer Signup
## 5328 RE: Enron Kids Volunteer Signup
## 5329 RE: Enron Kids Volunteer Signup
## 5330 RE: Enron Kids Volunteer Signup
## 5331 RE: Enron Kids Volunteer Signup
## 5332 RE: Enron Kids Volunteer Signup
## 5333 RE: Enron Kids Volunteer Signup
## 5334 RE: Enron Kids Volunteer Signup
## 5335 RE: Enron Kids Volunteer Signup
## 5336 RE: Enron Kids Volunteer Signup
## 5337 RE: Enron Kids Volunteer Signup
## 5338 RE: Enron Kids Volunteer Signup
## 5339 RE: Enron Kids Volunteer Signup
## 5340 RE: Enron Kids Volunteer Signup
## 5341 RE: Enron Kids Volunteer Signup
## 5342 RE: Enron Kids Volunteer Signup
## 5343 RE: Enron Kids Volunteer Signup
## 5344 RE: Enron Kids Volunteer Signup
## 5345 RE: Enron Kids Volunteer Signup
## 5346 RE: Enron Kids Volunteer Signup
## 5347 RE: Enron Kids Volunteer Signup
## 5348 RE: Enron Kids Volunteer Signup
## 5349 RE: Enron Kids Volunteer Signup
## 5350 RE: Enron Kids Volunteer Signup
## 5351 RE: Enron Kids Volunteer Signup
## 5352 RE: Enron Kids Volunteer Signup
## 5353 RE: Enron Kids Volunteer Signup
## 5354 RE: Enron Kids Volunteer Signup
## 5355 RE: Enron Kids Volunteer Signup
## 5356 RE: Enron Kids Volunteer Signup
## 5357 RE: Enron Kids Volunteer Signup
## 5358 RE: Enron Kids Volunteer Signup
## 5359 RE: Enron Kids Volunteer Signup
## 5360 RE: Enron Kids Volunteer Signup
## 5361 RE: Matching Gift Form
## 5362 RE: Matching Gift Form
## 5363 RE: Matching Gift Form
## 5364 EK Poster Info
## 5365 EK Poster Info
## 5366 EK Poster Info
## 5367 RE: Preview Party
## 5368 RE: Preview Party
## 5369 EIA Announcement
## 5370 Enron Kids Meeting
## 5371 Enron Kids Meeting
## 5372 Enron Kids Meeting
## 5373 Enron Kids Meeting
## 5374 Enron Kids Meeting
## 5375 Enron Kids Meeting
## 5376 Enron Kids Meeting
## 5377 Enron Kids Meeting
## 5378 Enron Kids Meeting
## 5379 Enron Kids Meeting
## 5380 Enron Kids Meeting
## 5381 Enron Kids Meeting
## 5382 Enron Kids Meeting
## 5383 Enron Kids Meeting
## 5384 Enron Kids Meeting
## 5385 Enron Kids Meeting
## 5386 Enron Kids Meeting
## 5387 Enron Kids Meeting
## 5388 Enron Kids Meeting
## 5389 Enron Kids Meeting
## 5390 Enron Kids Meeting
## 5391 Enron Kids Meeting
## 5392 Enron Kids Meeting
## 5393 Enron Kids Meeting
## 5394 Enron Kids Meeting
## 5395 Enron Kids Meeting
## 5396 Enron Kids Meeting
## 5397 Enron Kids Meeting
## 5398 Enron Kids Meeting
## 5399 Enron Kids Meeting
## 5400 Enron Kids Meeting
## 5401 Enron Kids Meeting
## 5402 Enron Kids Meeting
## 5403 Enron Kids Meeting
## 5404 Enron Kids Meeting
## 5405 Enron Kids Meeting
## 5406 Enron Kids Meeting
## 5407 Enron Kids Meeting
## 5408 Enron Kids Meeting
## 5409 Enron Kids Meeting
## 5410 Enron Kids Meeting
## 5411 Enron Kids Meeting
## 5412 Enron Kids Meeting
## 5413 Enron Kids Meeting
## 5414 Enron Kids Meeting
## 5415 Enron Kids Meeting
## 5416 FW: Conference Room Reservations
## 5417 Enron Kids Meeting - 6/1/2001
## 5418 Enron Kids Meeting - 6/1/2001
## 5419 Enron Kids Meeting - 6/1/2001
## 5420 Enron Kids Meeting - 6/1/2001
## 5421 Enron Kids Meeting - 6/1/2001
## 5422 Enron Kids Meeting - 6/1/2001
## 5423 Enron Kids Meeting - 6/1/2001
## 5424 Enron Kids Meeting - 6/1/2001
## 5425 Enron Kids Meeting - 6/1/2001
## 5426 Enron Kids Meeting - 6/1/2001
## 5427 Enron Kids Meeting - 6/1/2001
## 5428 Enron Kids Meeting - 6/1/2001
## 5429 Enron Kids Meeting - 6/1/2001
## 5430 Enron Kids Meeting - 6/1/2001
## 5431 Enron Kids Meeting - 6/1/2001
## 5432 Enron Kids Meeting - 6/1/2001
## 5433 Enron Kids Meeting - 6/1/2001
## 5434 Enron Kids Meeting - 6/1/2001
## 5435 Enron Kids Meeting - 6/1/2001
## 5436 Enron Kids Meeting - 6/1/2001
## 5437 Enron Kids Meeting - 6/1/2001
## 5438 Enron Kids Meeting - 6/1/2001
## 5439 Enron Kids Meeting - 6/1/2001
## 5440 Enron Kids Meeting - 6/1/2001
## 5441 Enron Kids Meeting - 6/1/2001
## 5442 Enron Kids Meeting - 6/1/2001
## 5443 Enron Kids Meeting - 6/1/2001
## 5444 Enron Kids Meeting - 6/1/2001
## 5445 Enron Kids Meeting - 6/1/2001
## 5446 Enron Kids Meeting - 6/1/2001
## 5447 Enron Kids Meeting - 6/1/2001
## 5448 Enron Kids Meeting - 6/1/2001
## 5449 RE: Enron Kids Meeting - 6/1/2001
## 5450 RE: Enron Kids Meeting - 6/1/2001
## 5451 RE: Enron Kids Meeting - 6/1/2001
## 5452 RE: Enron Kids Meeting - 6/1/2001
## 5453 RE: Enron Kids Meeting - 6/1/2001
## 5454 FW: Gordon Elementary School
## 5455 FW: Gordon Elementary School
## 5456 Enron Kids Docs
## 5457 Enron Kids Docs
## 5458 Enron Kids Docs
## 5459 Enron Kids Docs
## 5460 Enron Kids Docs
## 5461 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5462 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5463 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5464 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5465 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5466 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5467 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5468 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5469 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5470 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5471 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5472 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5473 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5474 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5475 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5476 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5477 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5478 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5479 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5480 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5481 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5482 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5483 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5484 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5485 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5486 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5487 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5488 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5489 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5490 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5491 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5492 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5493 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5494 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5495 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5496 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5497 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5498 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5499 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5500 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5501 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5502 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5503 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5504 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5505 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5506 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5507 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5508 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5509 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5510 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5511 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5512 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5513 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5514 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5515 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5516 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5517 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5518 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5519 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5520 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5521 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5522 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5523 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5524 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5525 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5526 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5527 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5528 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5529 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5530 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5531 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5532 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5533 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5534 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5535 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5536 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5537 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5538 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5539 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5540 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5541 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5542 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5543 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5544 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5545 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5546 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5547 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5548 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5549 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5550 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5551 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5552 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5553 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5554 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5555 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5556 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5557 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5558 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5559 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 5560 Sempra Winter 2001-2002 Weather Forecast
## 5561 Sempra September 2001 Natural Gas Report
## 5562 Kinder Morgan s Sonoran Pipeline Press Release
## 5563 Kinder Morgan s Sonoran Pipeline Press Release
## 5564 Kinder Morgan s Sonoran Pipeline Press Release
## 5565 Kinder Morgan s Sonoran Pipeline Press Release
## 5566 Kinder Morgan s Sonoran Pipeline Press Release
## 5567 Kinder Morgan s Sonoran Pipeline Press Release
## 5568 Kinder Morgan s Sonoran Pipeline Press Release
## 5569 Kinder Morgan s Sonoran Pipeline Press Release
## 5570 Kinder Morgan s Sonoran Pipeline Press Release
## 5571 Kinder Morgan s Sonoran Pipeline Press Release
## 5572 Kinder Morgan s Sonoran Pipeline Press Release
## 5573 Kinder Morgan s Sonoran Pipeline Press Release
## 5574 Kinder Morgan s Sonoran Pipeline Press Release
## 5575 Kinder Morgan s Sonoran Pipeline Press Release
## 5576 Kinder Morgan s Sonoran Pipeline Press Release
## 5577 Kinder Morgan s Sonoran Pipeline Press Release
## 5578 Kinder Morgan s Sonoran Pipeline Press Release
## 5579 Kinder Morgan s Sonoran Pipeline Press Release
## 5580 Kinder Morgan s Sonoran Pipeline Press Release
## 5581 Kinder Morgan s Sonoran Pipeline Press Release
## 5582 Kinder Morgan s Sonoran Pipeline Press Release
## 5583 Kinder Morgan s Sonoran Pipeline Press Release
## 5584 Kinder Morgan s Sonoran Pipeline Press Release
## 5585 Kinder Morgan s Sonoran Pipeline Press Release
## 5586 Kinder Morgan s Sonoran Pipeline Press Release
## 5587 Kinder Morgan s Sonoran Pipeline Press Release
## 5588 Kinder Morgan s Sonoran Pipeline Press Release
## 5589 Kinder Morgan s Sonoran Pipeline Press Release
## 5590 Kinder Morgan s Sonoran Pipeline Press Release
## 5591 Kinder Morgan s Sonoran Pipeline Press Release
## 5592 Kinder Morgan s Sonoran Pipeline Press Release
## 5593 Kinder Morgan s Sonoran Pipeline Press Release
## 5594 Kinder Morgan s Sonoran Pipeline Press Release
## 5595 Kinder Morgan s Sonoran Pipeline Press Release
## 5596 Kinder Morgan s Sonoran Pipeline Press Release
## 5597 Kinder Morgan s Sonoran Pipeline Press Release
## 5598 Kinder Morgan s Sonoran Pipeline Press Release
## 5599 Kinder Morgan s Sonoran Pipeline Press Release
## 5600 Kinder Morgan s Sonoran Pipeline Press Release
## 5601 Kinder Morgan s Sonoran Pipeline Press Release
## 5602 Kinder Morgan s Sonoran Pipeline Press Release
## 5603 Kinder Morgan s Sonoran Pipeline Press Release
## 5604 Kinder Morgan s Sonoran Pipeline Press Release
## 5605 Kinder Morgan s Sonoran Pipeline Press Release
## 5606 Kinder Morgan s Sonoran Pipeline Press Release
## 5607 RDI Subscription
## 5608 RDI Subscription
## 5609 RDI Subscription
## 5610 RDI Subscription
## 5611 RDI Subscription
## 5612 RDI Subscription
## 5613 RDI Subscription
## 5614 RDI Subscription
## 5615 RDI Subscription
## 5616 RDI Subscription
## 5617 RDI Subscription
## 5618 RDI Subscription
## 5619 RDI Subscription
## 5620 RDI Subscription
## 5621 RDI Subscription
## 5622 RDI Subscription
## 5623 RDI Subscription
## 5624 RDI Subscription
## 5625 RDI Subscription
## 5626 RDI Subscription
## 5627 RDI Subscription
## 5628 RDI Subscription
## 5629 RDI Subscription
## 5630 RDI Subscription
## 5631 RDI Subscription
## 5632 RDI Subscription
## 5633 RDI Subscription
## 5634 RDI Subscription
## 5635 RDI Subscription
## 5636 RDI Subscription
## 5637 RDI Subscription
## 5638 RDI Subscription
## 5639 RDI Subscription
## 5640 RDI Subscription
## 5641 RDI Subscription
## 5642 RDI Subscription
## 5643 RDI Subscription
## 5644 RDI Subscription
## 5645 RDI Subscription
## 5646 RDI Subscription
## 5647 RDI Subscription
## 5648 RDI Subscription
## 5649 RDI Subscription
## 5650 RDI Subscription
## 5651 RDI Subscription
## 5652 RDI Subscription
## 5653 RDI Subscription
## 5654 RDI Subscription
## 5655 RDI Subscription
## 5656 RDI Subscription
## 5657 RDI Subscription
## 5658 RDI Subscription
## 5659 RDI Subscription
## 5660 RDI Subscription
## 5661 RDI Subscription
## 5662 RDI Subscription
## 5663 RDI Subscription
## 5664 RDI Subscription
## 5665 RDI Subscription
## 5666 RDI Subscription
## 5667 RDI Subscription
## 5668 RDI Subscription
## 5669 RDI Subscription
## 5670 RDI Subscription
## 5671 RDI Subscription
## 5672 RDI Subscription
## 5673 RDI Subscription
## 5674 RDI Subscription
## 5675 RDI Subscription
## 5676 RDI Subscription
## 5677 RDI Subscription
## 5678 RDI Subscription
## 5679 RDI Subscription
## 5680 RDI Subscription
## 5681 RDI Subscription
## 5682 RDI Subscription
## 5683 RDI Subscription
## 5684 RDI Subscription
## 5685 RDI Subscription
## 5686 RDI Subscription
## 5687 RDI Subscription
## 5688 RDI Subscription
## 5689 RDI Subscription
## 5690 RDI Subscription
## 5691 RDI Subscription
## 5692 RDI Subscription
## 5693 RDI Subscription
## 5694 RDI Subscription
## 5695 RDI Subscription
## 5696 RDI Subscription
## 5697 RDI Subscription
## 5698 RDI Subscription
## 5699 RDI Subscription
## 5700 RDI Subscription
## 5701 RDI Subscription
## 5702 RDI Subscription
## 5703 RDI Subscription
## 5704 RDI Subscription
## 5705 RDI Subscription
## 5706 RDI Subscription
## 5707 RDI Subscription
## 5708 NORTH AMERICAN REGIONAL FLOWS
## 5709 FERC Approves Sempra s North Baja Pipeline
## 5710 FERC Approves Sempra s North Baja Pipeline
## 5711 FERC Approves Sempra s North Baja Pipeline
## 5712 FERC Approves Sempra s North Baja Pipeline
## 5713 FERC Approves Sempra s North Baja Pipeline
## 5714 FERC Approves Sempra s North Baja Pipeline
## 5715 FERC Approves Sempra s North Baja Pipeline
## 5716 FERC Approves Sempra s North Baja Pipeline
## 5717 FERC Approves Sempra s North Baja Pipeline
## 5718 FERC Approves Sempra s North Baja Pipeline
## 5719 FERC Approves Sempra s North Baja Pipeline
## 5720 FERC Approves Sempra s North Baja Pipeline
## 5721 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5722 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5723 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5724 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5725 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5726 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5727 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5728 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5729 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5730 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5731 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5732 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5733 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5734 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5735 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5736 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5737 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5738 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5739 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5740 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5741 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5742 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5743 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5744 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5745 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5746 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5747 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5748 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5749 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5750 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5751 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5752 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5753 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5754 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5755 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5756 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5757 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5758 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5759 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5760 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5761 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5762 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5763 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5764 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5765 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5766 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5767 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5768 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5769 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5770 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5771 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5772 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5773 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5774 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5775 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5776 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5777 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5778 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5779 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5780 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5781 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5782 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5783 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5784 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5785 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5786 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5787 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5788 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5789 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5790 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5791 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 5792 Southern Trails Cancels Calif Part of Pipeline Conversion
## 5793 Southern Trails Cancels Calif Part of Pipeline Conversion
## 5794 Southern Trails Cancels Calif Part of Pipeline Conversion
## 5795 Southern Trails Cancels Calif Part of Pipeline Conversion
## 5796 Southern Trails Cancels Calif Part of Pipeline Conversion
## 5797 Southern Trails Cancels Calif Part of Pipeline Conversion
## 5798 Southern Trails Cancels Calif Part of Pipeline Conversion
## 5799 Southern Trails Cancels Calif Part of Pipeline Conversion
## 5800 Southern Trails Cancels Calif Part of Pipeline Conversion
## 5801 Southern Trails Cancels Calif Part of Pipeline Conversion
## 5802 Southern Trails Cancels Calif Part of Pipeline Conversion
## 5803 Southern Trails Cancels Calif Part of Pipeline Conversion
## 5804 Southern Trails Cancels Calif Part of Pipeline Conversion
## 5805 Southern Trails Cancels Calif Part of Pipeline Conversion
## 5806 Southern Trails Cancels Calif Part of Pipeline Conversion
## 5807 Southern Trails Cancels Calif Part of Pipeline Conversion
## 5808 Southern Trails Cancels Calif Part of Pipeline Conversion
## 5809 Southern Trails Cancels Calif Part of Pipeline Conversion
## 5810 Southern Trails Cancels Calif Part of Pipeline Conversion
## 5811 Southern Trails Cancels Calif Part of Pipeline Conversion
## 5812 The Source
## 5813 LIPPMAN CONSULTING PIPELINE REPORTS
## 5814 Williams Files Evergreen Expansion Project
## 5815 Williams Files Evergreen Expansion Project
## 5816 Williams Files Evergreen Expansion Project
## 5817 Williams Files Evergreen Expansion Project
## 5818 Williams Files Evergreen Expansion Project
## 5819 Williams Files Evergreen Expansion Project
## 5820 Williams Files Evergreen Expansion Project
## 5821 Williams Files Evergreen Expansion Project
## 5822 Williams Files Evergreen Expansion Project
## 5823 Williams Files Evergreen Expansion Project
## 5824 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5825 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5826 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5827 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5828 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5829 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5830 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5831 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5832 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5833 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5834 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5835 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5836 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5837 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5838 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5839 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5840 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5841 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5842 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5843 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5844 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5845 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5846 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5847 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5848 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5849 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5850 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5851 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5852 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5853 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5854 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5855 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5856 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5857 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5858 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5859 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5860 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5861 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5862 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5863 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5864 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5865 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5866 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5867 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5868 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5869 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5870 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5871 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5872 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5873 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5874 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5875 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5876 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5877 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5878 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5879 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5880 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5881 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5882 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5883 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5884 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5885 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5886 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5887 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5888 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5889 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5890 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5891 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5892 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5893 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5894 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5895 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5896 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5897 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5898 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 5899 Kern River 2003 Expansion
## 5900 Kern River 2003 Expansion
## 5901 Kern River 2003 Expansion
## 5902 Kern River 2003 Expansion
## 5903 Kern River 2003 Expansion
## 5904 Kern River 2003 Expansion
## 5905 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5906 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5907 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5908 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5909 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5910 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5911 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5912 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5913 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5914 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5915 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5916 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5917 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5918 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5919 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5920 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5921 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5922 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5923 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5924 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5925 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5926 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5927 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5928 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5929 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5930 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5931 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5932 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5933 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5934 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5935 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5936 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5937 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5938 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5939 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5940 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5941 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5942 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5943 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5944 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5945 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5946 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5947 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5948 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5949 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5950 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5951 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5952 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5953 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5954 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5955 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5956 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5957 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5958 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5959 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5960 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5961 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5962 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5963 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5964 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5965 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5966 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5967 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5968 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5969 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5970 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5971 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5972 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5973 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5974 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5975 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5976 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5977 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5978 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5979 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5980 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5981 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5982 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5983 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5984 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5985 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 5986 Williams Orders Pipe for 906 MMcf/d Expansion of Kern
## 5987 Williams Orders Pipe for 906 MMcf/d Expansion of Kern
## 5988 Williams Orders Pipe for 906 MMcf/d Expansion of Kern
## 5989 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 5990 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 5991 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 5992 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 5993 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 5994 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 5995 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 5996 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 5997 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 5998 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 5999 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6000 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6001 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6002 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6003 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6004 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6005 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6006 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6007 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6008 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6009 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6010 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6011 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6012 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6013 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6014 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6015 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6016 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6017 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6018 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6019 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6020 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6021 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6022 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6023 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6024 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6025 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6026 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6027 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6028 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6029 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6030 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6031 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6032 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6033 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6034 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6035 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6036 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6037 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6038 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6039 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6040 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6041 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6042 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6043 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6044 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6045 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6046 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6047 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6048 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6049 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6050 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6051 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6052 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6053 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6054 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6055 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6056 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6057 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6058 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6059 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6060 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6061 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6062 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6063 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6064 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6065 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6066 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6067 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6068 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6069 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6070 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6071 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6072 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6073 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6074 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6075 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6076 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6077 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6078 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6079 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6080 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6081 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6082 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6083 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6084 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6085 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6086 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6087 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 6088 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6089 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6090 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6091 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6092 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6093 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6094 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6095 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6096 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6097 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6098 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6099 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6100 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6101 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6102 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6103 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6104 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6105 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6106 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6107 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6108 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6109 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6110 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6111 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6112 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6113 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6114 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6115 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6116 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6117 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6118 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6119 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6120 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6121 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6122 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6123 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6124 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6125 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6126 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6127 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6128 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6129 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6130 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6131 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6132 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6133 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6134 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6135 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6136 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6137 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6138 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6139 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6140 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6141 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6142 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6143 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6144 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6145 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6146 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6147 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6148 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6149 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6150 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6151 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6152 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6153 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6154 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6155 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6156 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6157 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6158 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 6159 El Paso Holds Binding Open Season for Line 2000 Capacity
## 6160 Kern River Expansion Completed Ahead of Schedule
## 6161 Kern River Expansion Completed Ahead of Schedule
## 6162 Kern River Expansion Completed Ahead of Schedule
## 6163 Kern River Expansion Completed Ahead of Schedule
## 6164 Kern River Expansion Completed Ahead of Schedule
## 6165 Kern River Expansion Completed Ahead of Schedule
## 6166 Kern River Expansion Completed Ahead of Schedule
## 6167 Kern River Expansion Completed Ahead of Schedule
## 6168 Kern River Expansion Completed Ahead of Schedule
## 6169 Kern River Expansion Completed Ahead of Schedule
## 6170 Kern River Expansion Completed Ahead of Schedule
## 6171 Kern River Expansion Completed Ahead of Schedule
## 6172 Kern River Expansion Completed Ahead of Schedule
## 6173 Kern River Expansion Completed Ahead of Schedule
## 6174 Kern River Expansion Completed Ahead of Schedule
## 6175 Kern River Expansion Completed Ahead of Schedule
## 6176 Kern River Expansion Completed Ahead of Schedule
## 6177 Kern River Expansion Completed Ahead of Schedule
## 6178 Kern River Expansion Completed Ahead of Schedule
## 6179 Kern River Expansion Completed Ahead of Schedule
## 6180 Kern River Expansion Completed Ahead of Schedule
## 6181 Kern River Expansion Completed Ahead of Schedule
## 6182 Kern River Expansion Completed Ahead of Schedule
## 6183 Kern River Expansion Completed Ahead of Schedule
## 6184 Kern River Expansion Completed Ahead of Schedule
## 6185 Kern River Expansion Completed Ahead of Schedule
## 6186 Kern River Expansion Completed Ahead of Schedule
## 6187 Kern River Expansion Completed Ahead of Schedule
## 6188 Kern River Expansion Completed Ahead of Schedule
## 6189 Kern River Expansion Completed Ahead of Schedule
## 6190 Kern River Expansion Completed Ahead of Schedule
## 6191 Kern River Expansion Completed Ahead of Schedule
## 6192 Kern River Expansion Completed Ahead of Schedule
## 6193 Kern River Expansion Completed Ahead of Schedule
## 6194 Kern River Expansion Completed Ahead of Schedule
## 6195 Kern River Expansion Completed Ahead of Schedule
## 6196 Kern River Expansion Completed Ahead of Schedule
## 6197 Kern River Expansion Completed Ahead of Schedule
## 6198 Kern River Expansion Completed Ahead of Schedule
## 6199 Kern River Expansion Completed Ahead of Schedule
## 6200 Kern River Expansion Completed Ahead of Schedule
## 6201 Kern River Expansion Completed Ahead of Schedule
## 6202 Kern River Expansion Completed Ahead of Schedule
## 6203 Kern River Expansion Completed Ahead of Schedule
## 6204 Kern River Expansion Completed Ahead of Schedule
## 6205 Kern River Expansion Completed Ahead of Schedule
## 6206 Kern River Expansion Completed Ahead of Schedule
## 6207 Kern River Expansion Completed Ahead of Schedule
## 6208 Kern River Expansion Completed Ahead of Schedule
## 6209 Kern River Expansion Completed Ahead of Schedule
## 6210 Kern River Expansion Completed Ahead of Schedule
## 6211 Kern River Expansion Completed Ahead of Schedule
## 6212 Kern River Expansion Completed Ahead of Schedule
## 6213 Kern River Expansion Completed Ahead of Schedule
## 6214 Kern River Expansion Completed Ahead of Schedule
## 6215 Kern River Expansion Completed Ahead of Schedule
## 6216 Kern River Expansion Completed Ahead of Schedule
## 6217 Kern River Expansion Completed Ahead of Schedule
## 6218 Kern River Expansion Completed Ahead of Schedule
## 6219 Kern River Expansion Completed Ahead of Schedule
## 6220 Kern River Expansion Completed Ahead of Schedule
## 6221 Kern River Expansion Completed Ahead of Schedule
## 6222 Kern River Expansion Completed Ahead of Schedule
## 6223 Kern River Expansion Completed Ahead of Schedule
## 6224 Kern River Expansion Completed Ahead of Schedule
## 6225 Kern River Expansion Completed Ahead of Schedule
## 6226 Kern River Expansion Completed Ahead of Schedule
## 6227 Kern River Expansion Completed Ahead of Schedule
## 6228 Kern River Expansion Completed Ahead of Schedule
## 6229 Kern River Expansion Completed Ahead of Schedule
## 6230 Kern River Expansion Completed Ahead of Schedule
## 6231 Kern River Expansion Completed Ahead of Schedule
## 6232 Kern River Expansion Completed Ahead of Schedule
## 6233 Kern River Expansion Completed Ahead of Schedule
## 6234 Kern River Expansion Completed Ahead of Schedule
## 6235 Kern River Expansion Completed Ahead of Schedule
## 6236 Kern River Expansion Completed Ahead of Schedule
## 6237 Kern River Expansion Completed Ahead of Schedule
## 6238 Kern River Expansion Completed Ahead of Schedule
## 6239 Kern River Expansion Completed Ahead of Schedule
## 6240 Kern River Expansion Completed Ahead of Schedule
## 6241 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6242 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6243 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6244 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6245 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6246 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6247 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6248 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6249 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6250 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6251 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6252 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6253 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6254 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6255 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6256 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6257 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6258 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6259 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6260 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6261 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6262 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6263 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6264 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6265 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6266 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6267 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6268 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6269 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6270 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6271 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6272 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6273 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6274 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6275 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6276 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6277 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6278 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6279 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6280 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6281 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6282 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6283 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6284 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6285 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6286 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6287 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6288 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6289 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6290 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6291 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6292 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6293 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6294 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6295 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6296 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6297 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6298 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6299 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6300 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6301 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6302 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6303 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 6304 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6305 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6306 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6307 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6308 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6309 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6310 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6311 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6312 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6313 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6314 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6315 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6316 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6317 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6318 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6319 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6320 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6321 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6322 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6323 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6324 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6325 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6326 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6327 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6328 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6329 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6330 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6331 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6332 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6333 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6334 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6335 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6336 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6337 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6338 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6339 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6340 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6341 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6342 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6343 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6344 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6345 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6346 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6347 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6348 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6349 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6350 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6351 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6352 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6353 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6354 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6355 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6356 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6357 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6358 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6359 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6360 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6361 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6362 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6363 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6364 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6365 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6366 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6367 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6368 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6369 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6370 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6371 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6372 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6373 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6374 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6375 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6376 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6377 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 6378 El Paso Moves Forward on California Expansion Projects
## 6379 El Paso Moves Forward on California Expansion Projects
## 6380 PG&E Eyes Backbone, Storage Expansions as Part of Gas Accord II
## 6381 FERC Approves North Baja Pipeline
## 6382 Questar Holding 3 Open Seasons, North, South and Storage
## 6383 Questar Holding 3 Open Seasons, North, South and Storage
## 6384 Questar Holding 3 Open Seasons, North, South and Storage
## 6385 Questar Holding 3 Open Seasons, North, South and Storage
## 6386 Questar Holding 3 Open Seasons, North, South and Storage
## 6387 Questar Holding 3 Open Seasons, North, South and Storage
## 6388 Questar Holding 3 Open Seasons, North, South and Storage
## 6389 Questar Holding 3 Open Seasons, North, South and Storage
## 6390 Questar Holding 3 Open Seasons, North, South and Storage
## 6391 Questar Holding 3 Open Seasons, North, South and Storage
## 6392 Questar Holding 3 Open Seasons, North, South and Storage
## 6393 Questar Holding 3 Open Seasons, North, South and Storage
## 6394 Questar Holding 3 Open Seasons, North, South and Storage
## 6395 Questar Holding 3 Open Seasons, North, South and Storage
## 6396 Questar Holding 3 Open Seasons, North, South and Storage
## 6397 Questar Holding 3 Open Seasons, North, South and Storage
## 6398 Questar Holding 3 Open Seasons, North, South and Storage
## 6399 Questar Holding 3 Open Seasons, North, South and Storage
## 6400 Questar Holding 3 Open Seasons, North, South and Storage
## 6401 Questar Holding 3 Open Seasons, North, South and Storage
## 6402 Questar Holding 3 Open Seasons, North, South and Storage
## 6403 Questar Holding 3 Open Seasons, North, South and Storage
## 6404 Questar Holding 3 Open Seasons, North, South and Storage
## 6405 Questar Holding 3 Open Seasons, North, South and Storage
## 6406 Questar Holding 3 Open Seasons, North, South and Storage
## 6407 Questar Holding 3 Open Seasons, North, South and Storage
## 6408 Questar Holding 3 Open Seasons, North, South and Storage
## 6409 Questar Holding 3 Open Seasons, North, South and Storage
## 6410 Questar Holding 3 Open Seasons, North, South and Storage
## 6411 Questar Holding 3 Open Seasons, North, South and Storage
## 6412 Questar Holding 3 Open Seasons, North, South and Storage
## 6413 Questar Holding 3 Open Seasons, North, South and Storage
## 6414 Questar Holding 3 Open Seasons, North, South and Storage
## 6415 Questar Holding 3 Open Seasons, North, South and Storage
## 6416 Questar Holding 3 Open Seasons, North, South and Storage
## 6417 Questar Holding 3 Open Seasons, North, South and Storage
## 6418 Questar Holding 3 Open Seasons, North, South and Storage
## 6419 Questar Holding 3 Open Seasons, North, South and Storage
## 6420 Questar Holding 3 Open Seasons, North, South and Storage
## 6421 Questar Holding 3 Open Seasons, North, South and Storage
## 6422 Questar Holding 3 Open Seasons, North, South and Storage
## 6423 Questar Holding 3 Open Seasons, North, South and Storage
## 6424 Questar Holding 3 Open Seasons, North, South and Storage
## 6425 Questar Holding 3 Open Seasons, North, South and Storage
## 6426 Questar Holding 3 Open Seasons, North, South and Storage
## 6427 Questar Holding 3 Open Seasons, North, South and Storage
## 6428 Questar Holding 3 Open Seasons, North, South and Storage
## 6429 Questar Holding 3 Open Seasons, North, South and Storage
## 6430 Questar Holding 3 Open Seasons, North, South and Storage
## 6431 Questar Holding 3 Open Seasons, North, South and Storage
## 6432 Questar Holding 3 Open Seasons, North, South and Storage
## 6433 Questar Holding 3 Open Seasons, North, South and Storage
## 6434 Questar Holding 3 Open Seasons, North, South and Storage
## 6435 Questar Holding 3 Open Seasons, North, South and Storage
## 6436 Questar Holding 3 Open Seasons, North, South and Storage
## 6437 Questar Holding 3 Open Seasons, North, South and Storage
## 6438 Questar Holding 3 Open Seasons, North, South and Storage
## 6439 Questar Holding 3 Open Seasons, North, South and Storage
## 6440 Questar Holding 3 Open Seasons, North, South and Storage
## 6441 Questar Holding 3 Open Seasons, North, South and Storage
## 6442 Questar Holding 3 Open Seasons, North, South and Storage
## 6443 Questar Holding 3 Open Seasons, North, South and Storage
## 6444 Questar Holding 3 Open Seasons, North, South and Storage
## 6445 Questar Holding 3 Open Seasons, North, South and Storage
## 6446 Questar Holding 3 Open Seasons, North, South and Storage
## 6447 Questar Holding 3 Open Seasons, North, South and Storage
## 6448 Questar Holding 3 Open Seasons, North, South and Storage
## 6449 Questar Holding 3 Open Seasons, North, South and Storage
## 6450 Questar Holding 3 Open Seasons, North, South and Storage
## 6451 Questar Holding 3 Open Seasons, North, South and Storage
## 6452 Questar Holding 3 Open Seasons, North, South and Storage
## 6453 Questar Holding 3 Open Seasons, North, South and Storage
## 6454 Questar Holding 3 Open Seasons, North, South and Storage
## 6455 Questar Holding 3 Open Seasons, North, South and Storage
## 6456 Questar Holding 3 Open Seasons, North, South and Storage
## 6457 Questar Holding 3 Open Seasons, North, South and Storage
## 6458 Questar Holding 3 Open Seasons, North, South and Storage
## 6459 Questar Holding 3 Open Seasons, North, South and Storage
## 6460 Questar Holding 3 Open Seasons, North, South and Storage
## 6461 Questar Holding 3 Open Seasons, North, South and Storage
## 6462 Questar Holding 3 Open Seasons, North, South and Storage
## 6463 Questar Holding 3 Open Seasons, North, South and Storage
## 6464 Questar Holding 3 Open Seasons, North, South and Storage
## 6465 Questar Holding 3 Open Seasons, North, South and Storage
## 6466 Questar Holding 3 Open Seasons, North, South and Storage
## 6467 Another California Pipeline Expansion Plan Announced by PG&E Northwest
## 6468 Another California Pipeline Expansion Plan Announced by PG&E Northwest
## 6469 Another California Pipeline Expansion Plan Announced by PG&E Northwest
## 6470 Another California Pipeline Expansion Plan Announced by PG&E Northwest
## 6471 Another California Pipeline Expansion Plan Announced by PG&E Northwest
## 6472 A Revitalized Ruby Pipelines for CIG to California
## 6473 A Revitalized Ruby Pipelines for CIG to California
## 6474 A Revitalized Ruby Pipelines for CIG to California
## 6475 A Revitalized Ruby Pipelines for CIG to California
## 6476 A Revitalized Ruby Pipelines for CIG to California
## 6477 A Revitalized Ruby Pipelines for CIG to California
## 6478 A Revitalized Ruby Pipelines for CIG to California
## 6479 A Revitalized Ruby Pipelines for CIG to California
## 6480 A Revitalized Ruby Pipelines for CIG to California
## 6481 A Revitalized Ruby Pipelines for CIG to California
## 6482 A Revitalized Ruby Pipelines for CIG to California
## 6483 A Revitalized Ruby Pipelines for CIG to California
## 6484 A Revitalized Ruby Pipelines for CIG to California
## 6485 A Revitalized Ruby Pipelines for CIG to California
## 6486 A Revitalized Ruby Pipelines for CIG to California
## 6487 A Revitalized Ruby Pipelines for CIG to California
## 6488 A Revitalized Ruby Pipelines for CIG to California
## 6489 A Revitalized Ruby Pipelines for CIG to California
## 6490 A Revitalized Ruby Pipelines for CIG to California
## 6491 A Revitalized Ruby Pipelines for CIG to California
## 6492 A Revitalized Ruby Pipelines for CIG to California
## 6493 A Revitalized Ruby Pipelines for CIG to California
## 6494 A Revitalized Ruby Pipelines for CIG to California
## 6495 A Revitalized Ruby Pipelines for CIG to California
## 6496 A Revitalized Ruby Pipelines for CIG to California
## 6497 A Revitalized Ruby Pipelines for CIG to California
## 6498 A Revitalized Ruby Pipelines for CIG to California
## 6499 A Revitalized Ruby Pipelines for CIG to California
## 6500 A Revitalized Ruby Pipelines for CIG to California
## 6501 A Revitalized Ruby Pipelines for CIG to California
## 6502 A Revitalized Ruby Pipelines for CIG to California
## 6503 A Revitalized Ruby Pipelines for CIG to California
## 6504 A Revitalized Ruby Pipelines for CIG to California
## 6505 A Revitalized Ruby Pipelines for CIG to California
## 6506 A Revitalized Ruby Pipelines for CIG to California
## 6507 A Revitalized Ruby Pipelines for CIG to California
## 6508 A Revitalized Ruby Pipelines for CIG to California
## 6509 A Revitalized Ruby Pipelines for CIG to California
## 6510 A Revitalized Ruby Pipelines for CIG to California
## 6511 A Revitalized Ruby Pipelines for CIG to California
## 6512 A Revitalized Ruby Pipelines for CIG to California
## 6513 A Revitalized Ruby Pipelines for CIG to California
## 6514 A Revitalized Ruby Pipelines for CIG to California
## 6515 A Revitalized Ruby Pipelines for CIG to California
## 6516 A Revitalized Ruby Pipelines for CIG to California
## 6517 A Revitalized Ruby Pipelines for CIG to California
## 6518 A Revitalized Ruby Pipelines for CIG to California
## 6519 A Revitalized Ruby Pipelines for CIG to California
## 6520 A Revitalized Ruby Pipelines for CIG to California
## 6521 A Revitalized Ruby Pipelines for CIG to California
## 6522 A Revitalized Ruby Pipelines for CIG to California
## 6523 A Revitalized Ruby Pipelines for CIG to California
## 6524 A Revitalized Ruby Pipelines for CIG to California
## 6525 A Revitalized Ruby Pipelines for CIG to California
## 6526 A Revitalized Ruby Pipelines for CIG to California
## 6527 A Revitalized Ruby Pipelines for CIG to California
## 6528 A Revitalized Ruby Pipelines for CIG to California
## 6529 A Revitalized Ruby Pipelines for CIG to California
## 6530 A Revitalized Ruby Pipelines for CIG to California
## 6531 A Revitalized Ruby Pipelines for CIG to California
## 6532 A Revitalized Ruby Pipelines for CIG to California
## 6533 A Revitalized Ruby Pipelines for CIG to California
## 6534 A Revitalized Ruby Pipelines for CIG to California
## 6535 A Revitalized Ruby Pipelines for CIG to California
## 6536 A Revitalized Ruby Pipelines for CIG to California
## 6537 A Revitalized Ruby Pipelines for CIG to California
## 6538 Another Western Canadian Pipeline Proposed
## 6539 Another Western Canadian Pipeline Proposed
## 6540 Another Western Canadian Pipeline Proposed
## 6541 Another Western Canadian Pipeline Proposed
## 6542 Another Western Canadian Pipeline Proposed
## 6543 Another Western Canadian Pipeline Proposed
## 6544 Another Western Canadian Pipeline Proposed
## 6545 Another Western Canadian Pipeline Proposed
## 6546 Another Western Canadian Pipeline Proposed
## 6547 Another Western Canadian Pipeline Proposed
## 6548 Another Western Canadian Pipeline Proposed
## 6549 Tuscarora expansion
## 6550 Tuscarora expansion
## 6551 Tuscarora expansion
## 6552 FERC ruling on Kern expansion
## 6553 FERC ruling on Kern expansion
## 6554 FERC ruling on Kern expansion
## 6555 FERC ruling on Kern expansion
## 6556 FERC ruling on Kern expansion
## 6557 FERC ruling on Kern expansion
## 6558 FERC ruling on Kern expansion
## 6559 FW: SoCalGas to Make System Enhancements
## 6560 Kern River problems
## 6561 Kern River problems
## 6562 Kern River problems
## 6563 Kern River problems
## 6564 More news... EPNG Expansion open season
## 6565 More news... EPNG Expansion open season
## 6566 El Paso Plans for the Future--See Last Paragraph
## 6567 El Paso Plans for the Future--See Last Paragraph
## 6568 El Paso Plans for the Future--See Last Paragraph
## 6569 El Paso Plans for the Future--See Last Paragraph
## 6570 El Paso Plans for the Future--See Last Paragraph
## 6571 El Paso Plans for the Future--See Last Paragraph
## 6572 El Paso Plans for the Future--See Last Paragraph
## 6573 El Paso Plans for the Future--See Last Paragraph
## 6574 El Paso Plans for the Future--See Last Paragraph
## 6575 El Paso Plans for the Future--See Last Paragraph
## 6576 El Paso Plans for the Future--See Last Paragraph
## 6577 El Paso Plans for the Future--See Last Paragraph
## 6578 El Paso Plans for the Future--See Last Paragraph
## 6579 El Paso Plans for the Future--See Last Paragraph
## 6580 El Paso Plans for the Future--See Last Paragraph
## 6581 El Paso Plans for the Future--See Last Paragraph
## 6582 El Paso Plans for the Future--See Last Paragraph
## 6583 El Paso Plans for the Future--See Last Paragraph
## 6584 El Paso Plans for the Future--See Last Paragraph
## 6585 El Paso Plans for the Future--See Last Paragraph
## 6586 El Paso Plans for the Future--See Last Paragraph
## 6587 El Paso Plans for the Future--See Last Paragraph
## 6588 El Paso Plans for the Future--See Last Paragraph
## 6589 El Paso Plans for the Future--See Last Paragraph
## 6590 El Paso Plans for the Future--See Last Paragraph
## 6591 El Paso Plans for the Future--See Last Paragraph
## 6592 El Paso Plans for the Future--See Last Paragraph
## 6593 El Paso Plans for the Future--See Last Paragraph
## 6594 El Paso Plans for the Future--See Last Paragraph
## 6595 El Paso Plans for the Future--See Last Paragraph
## 6596 El Paso Plans for the Future--See Last Paragraph
## 6597 El Paso Plans for the Future--See Last Paragraph
## 6598 El Paso Plans for the Future--See Last Paragraph
## 6599 El Paso Plans for the Future--See Last Paragraph
## 6600 El Paso Plans for the Future--See Last Paragraph
## 6601 El Paso Plans for the Future--See Last Paragraph
## 6602 El Paso Plans for the Future--See Last Paragraph
## 6603 El Paso Plans for the Future--See Last Paragraph
## 6604 El Paso Plans for the Future--See Last Paragraph
## 6605 El Paso Plans for the Future--See Last Paragraph
## 6606 El Paso Plans for the Future--See Last Paragraph
## 6607 El Paso Plans for the Future--See Last Paragraph
## 6608 El Paso Plans for the Future--See Last Paragraph
## 6609 El Paso Plans for the Future--See Last Paragraph
## 6610 El Paso Plans for the Future--See Last Paragraph
## 6611 El Paso Plans for the Future--See Last Paragraph
## 6612 El Paso Plans for the Future--See Last Paragraph
## 6613 El Paso Plans for the Future--See Last Paragraph
## 6614 El Paso Plans for the Future--See Last Paragraph
## 6615 El Paso Plans for the Future--See Last Paragraph
## 6616 El Paso Plans for the Future--See Last Paragraph
## 6617 El Paso Plans for the Future--See Last Paragraph
## 6618 El Paso Capacity Results of Open Season for Available Capacity
## 6619 El Paso Capacity Results of Open Season for Available Capacity
## 6620 El Paso Capacity Results of Open Season for Available Capacity
## 6621 El Paso Capacity Results of Open Season for Available Capacity
## 6622 El Paso Capacity Results of Open Season for Available Capacity
## 6623 El Paso Capacity Results of Open Season for Available Capacity
## 6624 El Paso Capacity Results of Open Season for Available Capacity
## 6625 El Paso Capacity Results of Open Season for Available Capacity
## 6626 El Paso Capacity Results of Open Season for Available Capacity
## 6627 El Paso Capacity Results of Open Season for Available Capacity
## 6628 El Paso Capacity Results of Open Season for Available Capacity
## 6629 El Paso Capacity Results of Open Season for Available Capacity
## 6630 El Paso Capacity Results of Open Season for Available Capacity
## 6631 El Paso Capacity Results of Open Season for Available Capacity
## 6632 El Paso Capacity Results of Open Season for Available Capacity
## 6633 El Paso Capacity Results of Open Season for Available Capacity
## 6634 El Paso Capacity Results of Open Season for Available Capacity
## 6635 El Paso Capacity Results of Open Season for Available Capacity
## 6636 El Paso Capacity Results of Open Season for Available Capacity
## 6637 El Paso Capacity Results of Open Season for Available Capacity
## 6638 El Paso Capacity Results of Open Season for Available Capacity
## 6639 El Paso Capacity Results of Open Season for Available Capacity
## 6640 El Paso Capacity Results of Open Season for Available Capacity
## 6641 El Paso Capacity Results of Open Season for Available Capacity
## 6642 El Paso Capacity Results of Open Season for Available Capacity
## 6643 El Paso Capacity Results of Open Season for Available Capacity
## 6644 El Paso Capacity Results of Open Season for Available Capacity
## 6645 El Paso Capacity Results of Open Season for Available Capacity
## 6646 El Paso Capacity Results of Open Season for Available Capacity
## 6647 El Paso Capacity Results of Open Season for Available Capacity
## 6648 El Paso Capacity Results of Open Season for Available Capacity
## 6649 El Paso Capacity Results of Open Season for Available Capacity
## 6650 El Paso Capacity Results of Open Season for Available Capacity
## 6651 El Paso Capacity Results of Open Season for Available Capacity
## 6652 El Paso Capacity Results of Open Season for Available Capacity
## 6653 El Paso Capacity Results of Open Season for Available Capacity
## 6654 El Paso Capacity Results of Open Season for Available Capacity
## 6655 El Paso Capacity Results of Open Season for Available Capacity
## 6656 El Paso Capacity Results of Open Season for Available Capacity
## 6657 El Paso Capacity Results of Open Season for Available Capacity
## 6658 El Paso Capacity Results of Open Season for Available Capacity
## 6659 El Paso Capacity Results of Open Season for Available Capacity
## 6660 El Paso Capacity Results of Open Season for Available Capacity
## 6661 El Paso Open Season Results/More stuff
## 6662 El Paso Open Season Results/More stuff
## 6663 El Paso Open Season Results/More stuff
## 6664 Lay It On the Line Survey Results
## 6665 FW: Medicine Recall
## 6666 FW: Medicine Recall
## 6667 FW: Medicine Recall
## 6668 FW: Medicine Recall
## 6669 FW: Medicine Recall
## 6670 FW: Medicine Recall
## 6671 FW: Medicine Recall
## 6672 FW: Medicine Recall
## 6673 FW: Medicine Recall
## 6674 FW: Medicine Recall
## 6675 FW: Medicine Recall
## 6676 FW: Medicine Recall
## 6677 FW: Medicine Recall
## 6678 FW: Medicine Recall
## 6679 FW: Medicine Recall
## 6680 FW: Medicine Recall
## 6681 FW: Medicine Recall
## 6682 FW: Medicine Recall
## 6683 FW: Medicine Recall
## 6684 FW: Medicine Recall
## 6685 FW: Medicine Recall
## 6686 FW: Medicine Recall
## 6687 FW: Medicine Recall
## 6688 FW: Medicine Recall
## 6689 FW: Medicine Recall
## 6690 FW: Medicine Recall
## 6691 FW: Medicine Recall
## 6692 IT Weekly Tip - Where is that email?
## 6693 eRequest
## 6694 eRequest
## 6695 eRequest
## 6696 Cougar Parts
## 6697 Cougar Parts
## 6698 Cougar Parts
## 6699 Cougar Parts
## 6700 Cougar Parts
## 6701 Cougar Parts
## 6702 Cougar Parts
## 6703 Cougar Parts
## 6704 Cougar Parts
## 6705 Cougar Parts
## 6706 Cougar Parts
## 6707 Cougar Parts
## 6708 Cougar Parts
## 6709 Cougar Parts
## 6710 Cougar Parts
## 6711 Cougar Parts
## 6712 Cougar Parts
## 6713 Cougar Parts
## 6714 Cougar Parts
## 6715 Cougar Parts
## 6716 Cougar Parts
## 6717 Cougar Parts
## 6718 Cougar Parts
## 6719 Cougar Parts
## 6720 Cougar Parts
## 6721 Cougar Parts
## 6722 Cougar Parts
## 6723 Cougar Parts
## 6724 Cougar Parts
## 6725 Cougar Parts
## 6726 Cougar Parts
## 6727 Cougar Parts
## 6728 Cougar Parts
## 6729 Cougar Parts
## 6730 Cougar Parts
## 6731 Cougar Parts
## 6732 Cougar Parts
## 6733 Cougar Parts
## 6734 Cougar Parts
## 6735 Cougar Parts
## 6736 Cougar Parts
## 6737 Cougar Parts
## 6738 Cougar Parts
## 6739 Cougar Parts
## 6740 Cougar Parts
## 6741 Cougar Parts
## 6742 Cougar Parts
## 6743 Cougar Parts
## 6744 Cougar Parts
## 6745 Cougar Parts
## 6746 Cougar Parts
## 6747 Cougar Parts
## 6748 Cougar Parts
## 6749 Cougar Parts
## 6750 Cougar Parts
## 6751 Cougar Parts
## 6752 Cougar Parts
## 6753 Cougar Parts
## 6754 Cougar Parts
## 6755 Cougar Parts
## 6756 Cougar Parts
## 6757 Cougar Parts
## 6758 Cougar Parts
## 6759 Cougar Parts
## 6760 Cougar Parts
## 6761 Cougar Parts
## 6762 Cougar Parts
## 6763 Cougar Parts
## 6764 Cougar Parts
## 6765 Cougar Parts
## 6766 Cougar Parts
## 6767 Cougar Parts
## 6768 Cougar Parts
## 6769 Cougar Parts
## 6770 Cougar Parts
## 6771 Cougar Parts
## 6772 New 2002 Mileage Rate
## 6773 Severance Summary Plan Description - Domestic Pipeline Assets
## 6774 You will need to change your location in the system in order to receive your mail and pay stub.
## 6775 You will need to change your location in the system in order to receive your mail and pay stub.
## 6776 New Uniforms for the other Big Red
## 6777 For your Labels and boxes and to change your info on people finder, etc.
## 6778 For your Labels and boxes and to change your info on people finder, etc.
## 6779 For your Labels and boxes and to change your info on people finder, etc.
## 6780 Fwd: Enron workers closer to justice--and you helped
## 6781 Fwd: Enron workers closer to justice--and you helped
## 6782 Fwd: Enron workers closer to justice--and you helped
## 6783 Fwd: Enron workers closer to justice--and you helped
## 6784 Fwd: Enron workers closer to justice--and you helped
## 6785 Fwd: Enron workers closer to justice--and you helped
## 6786 Fwd: Enron workers closer to justice--and you helped
## 6787 Fwd: Enron workers closer to justice--and you helped
## 6788 Fwd: Enron workers closer to justice--and you helped
## 6789 Fwd: Enron workers closer to justice--and you helped
## 6790 Fwd: Enron workers closer to justice--and you helped
## 6791 Fwd: Enron workers closer to justice--and you helped
## 6792 Fwd: Enron workers closer to justice--and you helped
## 6793 Fwd: Enron workers closer to justice--and you helped
## 6794 Fwd: Enron workers closer to justice--and you helped
## 6795 Fwd: Enron workers closer to justice--and you helped
## 6796 Fwd: Enron workers closer to justice--and you helped
## 6797 Fwd: Enron workers closer to justice--and you helped
## 6798 Fwd: Enron workers closer to justice--and you helped
## 6799 Fwd: Enron workers closer to justice--and you helped
## 6800 Fwd: Enron workers closer to justice--and you helped
## 6801 Fwd: Enron workers closer to justice--and you helped
## 6802 Fwd: Enron workers closer to justice--and you helped
## 6803 Fwd: Enron workers closer to justice--and you helped
## 6804 Fwd: Enron workers closer to justice--and you helped
## 6805 Fwd: Enron workers closer to justice--and you helped
## 6806 Fwd: Enron workers closer to justice--and you helped
## 6807 Fwd: Enron workers closer to justice--and you helped
## 6808 Fwd: Enron workers closer to justice--and you helped
## 6809 Fwd: Enron workers closer to justice--and you helped
## 6810 eTicket Receipt
## 6811 eTicket Receipt
## 6812 eTicket Receipt
## 6813 WorldCom Conferencing Documents
## 6814 RE: RDI access
## 6815 RE: RDI access
## 6816 RE: RDI access
## 6817 Peoplefinder Corrections
## 6818 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6819 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6820 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6821 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6822 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6823 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6824 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6825 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6826 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6827 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6828 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6829 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6830 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6831 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6832 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6833 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6834 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6835 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6836 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6837 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6838 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6839 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6840 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6841 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6842 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6843 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6844 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6845 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6846 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6847 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6848 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6849 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6850 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6851 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6852 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6853 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6854 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6855 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6856 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6857 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6858 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6859 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6860 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6861 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6862 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6863 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6864 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6865 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6866 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6867 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6868 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6869 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6870 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6871 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6872 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6873 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6874 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6875 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6876 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6877 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6878 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6879 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6880 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6881 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6882 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6883 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6884 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6885 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 6886 Flexible Spending Accounts
## 6887 Enron Bonus List
## 6888 Fwd: Viagra Contest
## 6889 Fwd: (no subject)
## 6890 Fwd: (no subject)
## 6891 Message from Jim Saunders - Account Coding Changes for NNG
## 6892 Fwd: R Rated-But I love it!
## 6893 Fwd: R Rated-But I love it!
## 6894 Fwd: R Rated-But I love it!
## 6895 Fwd: R Rated-But I love it!
## 6896 Fwd: R Rated-But I love it!
## 6897 Fwd: R Rated-But I love it!
## 6898 Fwd: R Rated-But I love it!
## 6899 Fwd: R Rated-But I love it!
## 6900 Fwd: R Rated-But I love it!
## 6901 Fwd: R Rated-But I love it!
## 6902 Fwd: R Rated-But I love it!
## 6903 Fwd: R Rated-But I love it!
## 6904 Fwd: R Rated-But I love it!
## 6905 Fwd: R Rated-But I love it!
## 6906 Fwd: R Rated-But I love it!
## 6907 FBI Investigation
## 6908 Message from Ken Lay
## 6909 2002 Holiday Schedule
## 6910 Bus Pass and Parking Information
## 6911 Fw: Fw: one liners
## 6912 Fw: Fw: one liners
## 6913 Fw: Fw: one liners
## 6914 Fw: Fw: one liners
## 6915 Fw: Fw: one liners
## 6916 Fw: Fw: one liners
## 6917 Fw: Fw: one liners
## 6918 Fw: Fw: one liners
## 6919 Fw: Fw: one liners
## 6920 Fw: Fw: one liners
## 6921 Fw: Fw: one liners
## 6922 Update to Bus Pass Information
## 6923 Holiday Humor
## 6924 Holiday Humor
## 6925 Holiday Humor
## 6926 Holiday Humor
## 6927 Holiday Humor
## 6928 Holiday Humor
## 6929 Holiday Humor
## 6930 Holiday Humor
## 6931 Holiday Humor
## 6932 Holiday Humor
## 6933 Holiday Humor
## 6934 Holiday Humor
## 6935 American Express Status - Update
## 6936 ATTENTION REMOTE ACCESS USERS
## 6937 ATTENTION REMOTE ACCESS USERS
## 6938 ATTENTION REMOTE ACCESS USERS
## 6939 Fwd: duck?
## 6940 PLEASE READ - IMPORTANT INFORMATION FOR PARTICIPANTS IN THE ENRON SAVINGS PLAN
## 6941 Program Changes
## 6942 Viewing Electronic Pay Stubs
## 6943 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 6944 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 6945 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 6946 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 6947 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 6948 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 6949 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 6950 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 6951 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 6952 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 6953 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 6954 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 6955 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 6956 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 6957 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 6958 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 6959 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 6960 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 6961 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 6962 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 6963 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 6964 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 6965 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 6966 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 6967 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 6968 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 6969 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 6970 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 6971 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 6972 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 6973
## 6974
## 6975 Re: We have an Address!!!
## 6976 Re: We have an Address!!!
## 6977 Re: We have an Address!!!
## 6978 Re: We have an Address!!!
## 6979 Re: We have an Address!!!
## 6980 Re: We have an Address!!!
## 6981 Re: We have an Address!!!
## 6982 Re: We have an Address!!!
## 6983 Re: We have an Address!!!
## 6984 Message from a Hawg Driver (A-10 Warthog)
## 6985 Message from a Hawg Driver (A-10 Warthog)
## 6986 Message from a Hawg Driver (A-10 Warthog)
## 6987 Message from a Hawg Driver (A-10 Warthog)
## 6988 Message from a Hawg Driver (A-10 Warthog)
## 6989 Message from a Hawg Driver (A-10 Warthog)
## 6990 Message from a Hawg Driver (A-10 Warthog)
## 6991 Message from a Hawg Driver (A-10 Warthog)
## 6992 Message from a Hawg Driver (A-10 Warthog)
## 6993 Message from a Hawg Driver (A-10 Warthog)
## 6994 Message from a Hawg Driver (A-10 Warthog)
## 6995 Message from a Hawg Driver (A-10 Warthog)
## 6996 Message from a Hawg Driver (A-10 Warthog)
## 6997 Message from a Hawg Driver (A-10 Warthog)
## 6998 Message from a Hawg Driver (A-10 Warthog)
## 6999 Message from a Hawg Driver (A-10 Warthog)
## 7000 Message from a Hawg Driver (A-10 Warthog)
## 7001 Message from a Hawg Driver (A-10 Warthog)
## 7002 Message from a Hawg Driver (A-10 Warthog)
## 7003 Message from a Hawg Driver (A-10 Warthog)
## 7004 Message from a Hawg Driver (A-10 Warthog)
## 7005 Message from a Hawg Driver (A-10 Warthog)
## 7006 Message from a Hawg Driver (A-10 Warthog)
## 7007 Message from a Hawg Driver (A-10 Warthog)
## 7008 Ireland vs Iran
## 7009 Ireland vs Iran
## 7010 Ireland vs Iran
## 7011 Ireland vs Iran
## 7012 Ireland vs Iran
## 7013 Ireland vs Iran
## 7014 *** Shared Folder Move ***
## 7015 *** Shared Folder Move ***
## 7016 Important Information About Security & ClickAtHome
## 7017 [Fwd: 2 MINUTE STRESS RELIEVER]
## 7018 [Fwd: 2 MINUTE STRESS RELIEVER]
## 7019 [Fwd: 2 MINUTE STRESS RELIEVER]
## 7020 [Fwd: 2 MINUTE STRESS RELIEVER]
## 7021 [Fwd: 2 MINUTE STRESS RELIEVER]
## 7022 [Fwd: 2 MINUTE STRESS RELIEVER]
## 7023 Thirst
## 7024 2001 Special Stock Option Grant Awards
## 7025 2001 Texaco/Havoline Grand Prix
## 7026 FW: US response
## 7027 FW: US response
## 7028 FW: US response
## 7029 Americans
## 7030 Americans
## 7031 Americans
## 7032 Americans
## 7033 Americans
## 7034 Americans
## 7035 Americans
## 7036 Americans
## 7037 Americans
## 7038 Americans
## 7039 Power Mart 01
## 7040 Power Mart 01
## 7041 [Fwd: FW: test]
## 7042 [Fwd: FW: test]
## 7043 [Fwd: FW: test]
## 7044 [Fwd: FW: test]
## 7045 FW: words of wisdom...
## 7046 ETS - Update to Virus Protection Software #2
## 7047 ETS - Update to Virus Protection Software #2
## 7048 ETS - Update to Virus Protection Software #2
## 7049 Update to Virus Scanning Software
## 7050 FW: Fw:
## 7051 Please take a look at this
## 7052 Please take a look at this
## 7053 Enron Global Strategic Sourcing and Enron Net Works execute agreement with Skytel
## 7054 Weekly staff working lunch meeting
## 7055 Weekly staff working lunch meeting
## 7056 Weekly staff working lunch meeting
## 7057 Weekly staff working lunch meeting
## 7058 Weekly staff working lunch meeting
## 7059 Weekly staff working lunch meeting
## 7060 Weekly staff working lunch meeting
## 7061 Weekly staff working lunch meeting
## 7062 Weekly staff working lunch meeting
## 7063 Natural Gas Infrastructure Committee Meeting
## 7064 Electric Power 2002 Conference
## 7065 Electric Power 2002 Conference
## 7066 Electric Power 2002 Conference
## 7067 Electric Power 2002 Conference
## 7068 Electric Power 2002 Conference
## 7069 Electric Power 2002 Conference
## 7070 Electric Power 2002 Conference
## 7071 Electric Power 2002 Conference
## 7072 Electric Power 2002 Conference
## 7073 Electric Power 2002 Conference
## 7074 Electric Power 2002 Conference
## 7075 Abstracts for Electric Power: Here they are!
## 7076
## 7077 IT Weekly Tip - Flag down those messages and contacts!
## 7078 CarSmart Price Quote
## 7079 MDA - Myotonic Dystrophy Breakthrough - Good Information
## 7080 Van Steven Dickerson
## 7081 New Dialing Instructions
## 7082 UBS Warburg E*Infrastructure Weekly:
## 7083 ClickAtHome Announces 4 NEW Internet Service Providers!!
## 7084 Win $1000 For Your Favorite Charity!
## 7085 Broadcast Message for Houston Enron Employees
## 7086 :EMCMD: MGN# 400209
## 7087 Thank you for your Contribution! Together we CAN change lives!
## 7088 Enron Cost Savings Guidelines
## 7089 iBuyit Spend and Approval Guidelines
## 7090 Energy News Live This Week
## 7091 Concur Expense (XMS) Common Questions
## 7092 Concur Expense (XMS) Logon Instructions - All XMS Users Please Read!
## 7093 Reminder to All XMS Users - Upgrade Information - Please Read!!
## 7094 iBuyit
## 7095 Updated Contact list of Direct Reports for Danny McCarty
## 7096 Updated Contact list of Direct Reports for Danny McCarty
## 7097 Updated Contact list of Direct Reports for Danny McCarty
## 7098 Updated Contact list of Direct Reports for Danny McCarty
## 7099 Updated Contact list of Direct Reports for Danny McCarty
## 7100 Updated Contact list of Direct Reports for Danny McCarty
## 7101 Updated Contact list of Direct Reports for Danny McCarty
## 7102 Updated Contact list of Direct Reports for Danny McCarty
## 7103 Updated Contact list of Direct Reports for Danny McCarty
## 7104 Updated Contact list of Direct Reports for Danny McCarty
## 7105 Updated Contact list of Direct Reports for Danny McCarty
## 7106 Updated Contact list of Direct Reports for Danny McCarty
## 7107 Updated Contact list of Direct Reports for Danny McCarty
## 7108 Updated Contact list of Direct Reports for Danny McCarty
## 7109 Updated Contact list of Direct Reports for Danny McCarty
## 7110 Updated Contact list of Direct Reports for Danny McCarty
## 7111 Updated Contact list of Direct Reports for Danny McCarty
## 7112 Updated Contact list of Direct Reports for Danny McCarty
## 7113 Updated Contact list of Direct Reports for Danny McCarty
## 7114 Updated Contact list of Direct Reports for Danny McCarty
## 7115 Updated Contact list of Direct Reports for Danny McCarty
## 7116 Updated Contact list of Direct Reports for Danny McCarty
## 7117 Updated Contact list of Direct Reports for Danny McCarty
## 7118 Updated Contact list of Direct Reports for Danny McCarty
## 7119 Organization Announcement
## 7120 Organization Announcement
## 7121 Organization Announcement
## 7122 Organization Announcement
## 7123 Organization Announcement
## 7124 Organization Announcement
## 7125 Organization Announcement
## 7126 Organization Announcement
## 7127 Organization Announcement
## 7128 Organization Announcement
## 7129 Organization Announcement
## 7130 Organization Announcement
## 7131 Organization Announcement
## 7132 Organization Announcement
## 7133 Organization Announcement
## 7134 Organization Announcement
## 7135 Organization Announcement
## 7136 Organization Announcement
## 7137 Organization Announcement
## 7138 Organization Announcement
## 7139 Organization Announcement
## 7140 Organization Announcement
## 7141 Organization Announcement
## 7142 Organization Announcement
## 7143 Organization Announcement
## 7144 Organization Announcement
## 7145 Organization Announcement
## 7146 Organization Announcement
## 7147 Organization Announcement
## 7148 Organization Announcement
## 7149 Organization Announcement
## 7150 Organization Announcement
## 7151 Organization Announcement
## 7152 Organization Announcement
## 7153 Organization Announcement
## 7154 Organization Announcement
## 7155 Organization Announcement
## 7156 Organization Announcement
## 7157 Organization Announcement
## 7158 Organization Announcement
## 7159 Organization Announcement
## 7160 Organization Announcement
## 7161 Organization Announcement
## 7162 Organization Announcement
## 7163 Organization Announcement
## 7164 Organization Announcement
## 7165 Organization Announcement
## 7166 Organization Announcement
## 7167 Organization Announcement
## 7168 Organization Announcement
## 7169 Organization Announcement
## 7170 Organization Announcement
## 7171 Organization Announcement
## 7172 Organization Announcement
## 7173 Organization Announcement
## 7174 Organization Announcement
## 7175 Organization Announcement
## 7176 Organization Announcement
## 7177 Organization Announcement
## 7178 Organization Announcement
## 7179 Organization Announcement
## 7180 Organization Announcement
## 7181 Organization Announcement
## 7182 Organization Announcement
## 7183 Organization Announcement
## 7184 Organization Announcement
## 7185 Organization Announcement
## 7186 Organization Announcement
## 7187 Organization Announcement
## 7188 Organization Announcement
## 7189 Organization Announcement
## 7190 Organization Announcement
## 7191 Organization Announcement
## 7192 Organization Announcement
## 7193 Organization Announcement
## 7194 Organization Announcement
## 7195 Organization Announcement
## 7196 Organization Announcement
## 7197 Organization Announcement
## 7198 Organization Announcement
## 7199 Organization Announcement
## 7200 Organization Announcement
## 7201 Organization Announcement
## 7202 Organization Announcement
## 7203 Organization Announcement
## 7204 Organization Announcement
## 7205 Organization Announcement
## 7206 Organization Announcement
## 7207 Organization Announcement
## 7208 Organization Announcement
## 7209 Organization Announcement
## 7210 Organization Announcement
## 7211 Organization Announcement
## 7212 Organization Announcement
## 7213 Organization Announcement
## 7214 Organization Announcement
## 7215 Organization Announcement
## 7216 Organization Announcement
## 7217 Organization Announcement
## 7218 Organization Announcement
## 7219 Organization Announcement
## 7220 Organization Announcement
## 7221 Organization Announcement
## 7222 Organization Announcement
## 7223 Organization Announcement
## 7224 Organization Announcement
## 7225 Organization Announcement
## 7226 Organization Announcement
## 7227 Organization Announcement
## 7228 Organization Announcement
## 7229 Organization Announcement
## 7230 Organization Announcement
## 7231 Organization Announcement
## 7232 Organization Announcement
## 7233 Organization Announcement
## 7234 Organization Announcement
## 7235 Organization Announcement
## 7236 Organization Announcement
## 7237 Organization Announcement
## 7238 Organization Announcement
## 7239 Organization Announcement
## 7240 Organization Announcement
## 7241 Organization Announcement
## 7242 Organization Announcement
## 7243 Organization Announcement
## 7244 Organization Announcement
## 7245 Organization Announcement
## 7246 Organization Announcement
## 7247 Organization Announcement
## 7248 Organization Announcement
## 7249 Organization Announcement
## 7250 Organization Announcement
## 7251 Organization Announcement
## 7252 Organization Announcement
## 7253 Organization Announcement
## 7254 Organization Announcement
## 7255 Organization Announcement
## 7256 Organization Announcement
## 7257 Organization Announcement
## 7258 Organization Announcement
## 7259 Organization Announcement
## 7260 Organization Announcement
## 7261 Organization Announcement
## 7262 Organization Announcement
## 7263 Organization Announcement
## 7264 Organization Announcement
## 7265 Organization Announcement
## 7266 Organization Announcement
## 7267 Organization Announcement
## 7268 Organization Announcement
## 7269 Organization Announcement
## 7270 Organization Announcement
## 7271 Organization Announcement
## 7272 Organization Announcement
## 7273 Organization Announcement
## 7274 Organization Announcement
## 7275 Organization Announcement
## 7276 Organization Announcement
## 7277 Organization Announcement
## 7278 Organization Announcement
## 7279 Organization Announcement
## 7280 Organization Announcement
## 7281 Organization Announcement
## 7282 Organization Announcement
## 7283 Organization Announcement
## 7284 Organization Announcement
## 7285 Organization Announcement
## 7286 Organization Announcement
## 7287 Organization Announcement
## 7288 Organization Announcement
## 7289 Organization Announcement
## 7290 Organization Announcement
## 7291 Organization Announcement
## 7292 Organization Announcement
## 7293 Organization Announcement
## 7294 Organization Announcement
## 7295 Organization Announcement
## 7296 Organization Announcement
## 7297 Organization Announcement
## 7298 Organization Announcement
## 7299 Organization Announcement
## 7300 Organization Announcement
## 7301 Organization Announcement
## 7302 Organization Announcement
## 7303 Organization Announcement
## 7304 Organization Announcement
## 7305 Organization Announcement
## 7306 Organization Announcement
## 7307 Organization Announcement
## 7308 Organization Announcement
## 7309 Organization Announcement
## 7310 Organization Announcement
## 7311 Organization Announcement
## 7312 Organization Announcement
## 7313 Organization Announcement
## 7314 Organization Announcement
## 7315 Organization Announcement
## 7316 Organization Announcement
## 7317 Organization Announcement
## 7318 Organization Announcement
## 7319 Organization Announcement
## 7320 Organization Announcement
## 7321 Organization Announcement
## 7322 Organization Announcement
## 7323 Organization Announcement
## 7324 Organization Announcement
## 7325 Organization Announcement
## 7326 Organization Announcement
## 7327 Organization Announcement
## 7328 Organization Announcement
## 7329 Organization Announcement
## 7330 Organization Announcement
## 7331 Organization Announcement
## 7332 Organization Announcement
## 7333 Organization Announcement
## 7334 Organization Announcement
## 7335 Organization Announcement
## 7336 Organization Announcement
## 7337 Organization Announcement
## 7338 Organization Announcement
## 7339 Organization Announcement
## 7340 Organization Announcement
## 7341 Organization Announcement
## 7342 Organization Announcement
## 7343 Organization Announcement
## 7344 Organization Announcement
## 7345 Organization Announcement
## 7346 Organization Announcement
## 7347 Organization Announcement
## 7348 Organization Announcement
## 7349 Organization Announcement
## 7350 Organization Announcement
## 7351 Organization Announcement
## 7352 Organization Announcement
## 7353 Organization Announcement
## 7354 Organization Announcement
## 7355 Organization Announcement
## 7356 Organization Announcement
## 7357 Organization Announcement
## 7358 Organization Announcement
## 7359 Organization Announcement
## 7360 Organization Announcement
## 7361 Organization Announcement
## 7362 Organization Announcement
## 7363 Organization Announcement
## 7364 Organization Announcement
## 7365 Organization Announcement
## 7366 Organization Announcement
## 7367 Organization Announcement
## 7368 Organization Announcement
## 7369 Organization Announcement
## 7370 Organization Announcement
## 7371 Organization Announcement
## 7372 Organization Announcement
## 7373 Organization Announcement
## 7374 Organization Announcement
## 7375 Organization Announcement
## 7376 Organization Announcement
## 7377 Organization Announcement
## 7378 Organization Announcement
## 7379 Organization Announcement
## 7380 Organization Announcement
## 7381 Organization Announcement
## 7382 Organization Announcement
## 7383 Organization Announcement
## 7384 Organization Announcement
## 7385 Organization Announcement
## 7386 Organization Announcement
## 7387 Organization Announcement
## 7388 Organization Announcement
## 7389 Organization Announcement
## 7390 Organization Announcement
## 7391 Organization Announcement
## 7392 Organization Announcement
## 7393 Organization Announcement
## 7394 Organization Announcement
## 7395 Organization Announcement
## 7396 Organization Announcement
## 7397 Organization Announcement
## 7398 Organization Announcement
## 7399 Organization Announcement
## 7400 Organization Announcement
## 7401 Organization Announcement
## 7402 Organization Announcement
## 7403 Organization Announcement
## 7404 Organization Announcement
## 7405 Organization Announcement
## 7406 Organization Announcement
## 7407 Organization Announcement
## 7408 Organization Announcement
## 7409 Organization Announcement
## 7410 Organization Announcement
## 7411 Organization Announcement
## 7412 Organization Announcement
## 7413 Organization Announcement
## 7414 Organization Announcement
## 7415 Organization Announcement
## 7416 Organization Announcement
## 7417 Organization Announcement
## 7418 Organization Announcement
## 7419 Organization Announcement
## 7420 Organization Announcement
## 7421 Organization Announcement
## 7422 Organization Announcement
## 7423 Organization Announcement
## 7424 Organization Announcement
## 7425 Organization Announcement
## 7426 Organization Announcement
## 7427 Organization Announcement
## 7428 Organization Announcement
## 7429 Organization Announcement
## 7430 Organization Announcement
## 7431 Organization Announcement
## 7432 Organization Announcement
## 7433 Organization Announcement
## 7434 Organization Announcement
## 7435 Organization Announcement
## 7436 Organization Announcement
## 7437 Organization Announcement
## 7438 Organization Announcement
## 7439 Organization Announcement
## 7440 Organization Announcement
## 7441 Organization Announcement
## 7442 Organization Announcement
## 7443 Organization Announcement
## 7444 Organization Announcement
## 7445 Organization Announcement
## 7446 Organization Announcement
## 7447 Organization Announcement
## 7448 Organization Announcement
## 7449 Organization Announcement
## 7450 Organization Announcement
## 7451 Organization Announcement
## 7452 Organization Announcement
## 7453 Organization Announcement
## 7454 Organization Announcement
## 7455 Organization Announcement
## 7456 Organization Announcement
## 7457 Organization Announcement
## 7458 Organization Announcement
## 7459 Organization Announcement
## 7460 Organization Announcement
## 7461 Organization Announcement
## 7462 Organization Announcement
## 7463 Organization Announcement
## 7464 Organization Announcement
## 7465 Organization Announcement
## 7466 Organization Announcement
## 7467 Organization Announcement
## 7468 Organization Announcement
## 7469 Organization Announcement
## 7470 Organization Announcement
## 7471 Organization Announcement
## 7472 Organization Announcement
## 7473 Organization Announcement
## 7474 Organization Announcement
## 7475 Organization Announcement
## 7476 Organization Announcement
## 7477 Organization Announcement
## 7478 Organization Announcement
## 7479 Organization Announcement
## 7480 Organization Announcement
## 7481 Organization Announcement
## 7482 Organization Announcement
## 7483 Organization Announcement
## 7484 Organization Announcement
## 7485 Organization Announcement
## 7486 Organization Announcement
## 7487 Organization Announcement
## 7488 Organization Announcement
## 7489 Organization Announcement
## 7490 Organization Announcement
## 7491 Organization Announcement
## 7492 Organization Announcement
## 7493 Organization Announcement
## 7494 Organization Announcement
## 7495 Organization Announcement
## 7496 Organization Announcement
## 7497 Organization Announcement
## 7498 Organization Announcement
## 7499 Organization Announcement
## 7500 Organization Announcement
## 7501 Organization Announcement
## 7502 Organization Announcement
## 7503 Organization Announcement
## 7504 Organization Announcement
## 7505 Organization Announcement
## 7506 Organization Announcement
## 7507 Organization Announcement
## 7508 Organization Announcement
## 7509 Organization Announcement
## 7510 Organization Announcement
## 7511 Organization Announcement
## 7512 Organization Announcement
## 7513 Organization Announcement
## 7514 Organization Announcement
## 7515 Organization Announcement
## 7516 Organization Announcement
## 7517 Organization Announcement
## 7518 Organization Announcement
## 7519 Organization Announcement
## 7520 Organization Announcement
## 7521 Organization Announcement
## 7522 Organization Announcement
## 7523 Organization Announcement
## 7524 Organization Announcement
## 7525 Organization Announcement
## 7526 Organization Announcement
## 7527 Organization Announcement
## 7528 Organization Announcement
## 7529 Organization Announcement
## 7530 Organization Announcement
## 7531 Organization Announcement
## 7532 Organization Announcement
## 7533 Organization Announcement
## 7534 Organization Announcement
## 7535 Organization Announcement
## 7536 Organization Announcement
## 7537 Organization Announcement
## 7538 Organization Announcement
## 7539 Organization Announcement
## 7540 Organization Announcement
## 7541 Organization Announcement
## 7542 Organization Announcement
## 7543 Organization Announcement
## 7544 Organization Announcement
## 7545 Organization Announcement
## 7546 Organization Announcement
## 7547 Organization Announcement
## 7548 Organization Announcement
## 7549 Organization Announcement
## 7550 Organization Announcement
## 7551 Organization Announcement
## 7552 Organization Announcement
## 7553 Organization Announcement
## 7554 Organization Announcement
## 7555 Organization Announcement
## 7556 Organization Announcement
## 7557 Organization Announcement
## 7558 Organization Announcement
## 7559 Organization Announcement
## 7560 Organization Announcement
## 7561 Organization Announcement
## 7562 Organization Announcement
## 7563 Organization Announcement
## 7564 Organization Announcement
## 7565 Organization Announcement
## 7566 Organization Announcement
## 7567 Organization Announcement
## 7568 Organization Announcement
## 7569 Organization Announcement
## 7570 Organization Announcement
## 7571 Organization Announcement
## 7572 Organization Announcement
## 7573 Organization Announcement
## 7574 Organization Announcement
## 7575 Organization Announcement
## 7576 Organization Announcement
## 7577 Organization Announcement
## 7578 Organization Announcement
## 7579 Organization Announcement
## 7580 Organization Announcement
## 7581 Organization Announcement
## 7582 Organization Announcement
## 7583 Organization Announcement
## 7584 Organization Announcement
## 7585 Organization Announcement
## 7586 Organization Announcement
## 7587 Organization Announcement
## 7588 Organization Announcement
## 7589 Organization Announcement
## 7590 Organization Announcement
## 7591 Organization Announcement
## 7592 Organization Announcement
## 7593 Organization Announcement
## 7594 Organization Announcement
## 7595 Organization Announcement
## 7596 Organization Announcement
## 7597 Organization Announcement
## 7598 Organization Announcement
## 7599 Organization Announcement
## 7600 Organization Announcement
## 7601 Organization Announcement
## 7602 Organization Announcement
## 7603 Organization Announcement
## 7604 Organization Announcement
## 7605 Organization Announcement
## 7606 Organization Announcement
## 7607 Organization Announcement
## 7608 Organization Announcement
## 7609 Organization Announcement
## 7610 Organization Announcement
## 7611 Organization Announcement
## 7612 Organization Announcement
## 7613 Organization Announcement
## 7614 Organization Announcement
## 7615 Organization Announcement
## 7616 Organization Announcement
## 7617 Organization Announcement
## 7618 Organization Announcement
## 7619 Organization Announcement
## 7620 Organization Announcement
## 7621 Organization Announcement
## 7622 Organization Announcement
## 7623 Organization Announcement
## 7624 Organization Announcement
## 7625 Organization Announcement
## 7626 Organization Announcement
## 7627 Organization Announcement
## 7628 Organization Announcement
## 7629 Organization Announcement
## 7630 Organization Announcement
## 7631 Organization Announcement
## 7632 Organization Announcement
## 7633 Organization Announcement
## 7634 Organization Announcement
## 7635 Organization Announcement
## 7636 Organization Announcement
## 7637 Organization Announcement
## 7638 Organization Announcement
## 7639 Organization Announcement
## 7640 Organization Announcement
## 7641 Organization Announcement
## 7642 Organization Announcement
## 7643 Organization Announcement
## 7644 Organization Announcement
## 7645 Organization Announcement
## 7646 Organization Announcement
## 7647 Organization Announcement
## 7648 Organization Announcement
## 7649 Organization Announcement
## 7650 Organization Announcement
## 7651 Organization Announcement
## 7652 Organization Announcement
## 7653 Organization Announcement
## 7654 Organization Announcement
## 7655 Organization Announcement
## 7656 Organization Announcement
## 7657 Organization Announcement
## 7658 Organization Announcement
## 7659 Organization Announcement
## 7660 Organization Announcement
## 7661 Organization Announcement
## 7662 Organization Announcement
## 7663 Organization Announcement
## 7664 Organization Announcement
## 7665 Organization Announcement
## 7666 Organization Announcement
## 7667 Organization Announcement
## 7668 Organization Announcement
## 7669 Organization Announcement
## 7670 Organization Announcement
## 7671 Organization Announcement
## 7672 Organization Announcement
## 7673 Organization Announcement
## 7674 Organization Announcement
## 7675 Organization Announcement
## 7676 Organization Announcement
## 7677 Organization Announcement
## 7678 Organization Announcement
## 7679 Organization Announcement
## 7680 Organization Announcement
## 7681 Organization Announcement
## 7682 Organization Announcement
## 7683 Organization Announcement
## 7684 Organization Announcement
## 7685 Organization Announcement
## 7686 Organization Announcement
## 7687 Organization Announcement
## 7688 Organization Announcement
## 7689 Organization Announcement
## 7690 Organization Announcement
## 7691 Organization Announcement
## 7692 Organization Announcement
## 7693 Organization Announcement
## 7694 Organization Announcement
## 7695 Organization Announcement
## 7696 Organization Announcement
## 7697 Organization Announcement
## 7698 Organization Announcement
## 7699 Organization Announcement
## 7700 Organization Announcement
## 7701 Organization Announcement
## 7702 Organization Announcement
## 7703 Organization Announcement
## 7704 Organization Announcement
## 7705 Organization Announcement
## 7706 Organization Announcement
## 7707 Organization Announcement
## 7708 Organization Announcement
## 7709 Organization Announcement
## 7710 Organization Announcement
## 7711 Organization Announcement
## 7712 Organization Announcement
## 7713 Organization Announcement
## 7714 Organization Announcement
## 7715 Organization Announcement
## 7716 Organization Announcement
## 7717 Organization Announcement
## 7718 Organization Announcement
## 7719 Organization Announcement
## 7720 Organization Announcement
## 7721 Organization Announcement
## 7722 Organization Announcement
## 7723 Organization Announcement
## 7724 Organization Announcement
## 7725 Organization Announcement
## 7726 Organization Announcement
## 7727 Organization Announcement
## 7728 Organization Announcement
## 7729 Organization Announcement
## 7730 Organization Announcement
## 7731 Organization Announcement
## 7732 Organization Announcement
## 7733 IT Weekly Tip - Keeping Your Mailbox Clean
## 7734 California Sing-along
## 7735 California Sing-along
## 7736 California Sing-along
## 7737 California Sing-along
## 7738 California Sing-along
## 7739 eRequest is Here!
## 7740 Enron Astroworld Tickets
## 7741 Enron Announcement
## 7742 Action Requested: New iBuyit Order Procedures
## 7743 Remote Access via ClickAtHome Systems
## 7744 ETS IT Purchasing Procedures
## 7745 EnronOptions Update!
## 7746 HotTap RAS password change instructions
## 7747 HotTap RAS password change instructions
## 7748 HotTap RAS password change instructions
## 7749 HotTap RAS password change instructions
## 7750 HotTap RAS password change instructions
## 7751 HotTap RAS password change instructions
## 7752 HotTap RAS password change instructions
## 7753 HotTap RAS password change instructions
## 7754 HotTap RAS password change instructions
## 7755 HotTap RAS password change instructions
## 7756 HotTap RAS password change instructions
## 7757 HotTap RAS password change instructions
## 7758 HotTap RAS password change instructions
## 7759 HotTap RAS password change instructions
## 7760 HotTap RAS password change instructions
## 7761 HotTap RAS password change instructions
## 7762 HotTap RAS password change instructions
## 7763 HotTap RAS password change instructions
## 7764 HotTap RAS password change instructions
## 7765 HotTap RAS password change instructions
## 7766 HotTap RAS password change instructions
## 7767 HotTap RAS password change instructions
## 7768 HotTap RAS password change instructions
## 7769 HotTap RAS password change instructions
## 7770 HotTap RAS password change instructions
## 7771 HotTap RAS password change instructions
## 7772 HotTap RAS password change instructions
## 7773 HotTap RAS password change instructions
## 7774 HotTap RAS password change instructions
## 7775 HotTap RAS password change instructions
## 7776 HotTap RAS password change instructions
## 7777 HotTap RAS password change instructions
## 7778 HotTap RAS password change instructions
## 7779 HotTap RAS password change instructions
## 7780 HotTap RAS password change instructions
## 7781 HotTap RAS password change instructions
## 7782 HotTap RAS password change instructions
## 7783 HotTap RAS password change instructions
## 7784 HotTap RAS password change instructions
## 7785 HotTap RAS password change instructions
## 7786 HotTap RAS password change instructions
## 7787 HotTap RAS password change instructions
## 7788 HotTap RAS password change instructions
## 7789 HotTap RAS password change instructions
## 7790 HotTap RAS password change instructions
## 7791 HotTap RAS password change instructions
## 7792 HotTap RAS password change instructions
## 7793 HotTap RAS password change instructions
## 7794 HotTap RAS password change instructions
## 7795 HotTap RAS password change instructions
## 7796 HotTap RAS password change instructions
## 7797 HotTap RAS password change instructions
## 7798 HotTap RAS password change instructions
## 7799 HotTap RAS password change instructions
## 7800 HotTap RAS password change instructions
## 7801 HotTap RAS password change instructions
## 7802 HotTap RAS password change instructions
## 7803 HotTap RAS password change instructions
## 7804 HotTap RAS password change instructions
## 7805 HotTap RAS password change instructions
## 7806 HotTap RAS password change instructions
## 7807 HotTap RAS password change instructions
## 7808 HotTap RAS password change instructions
## 7809 HotTap RAS password change instructions
## 7810 HotTap RAS password change instructions
## 7811 HotTap RAS password change instructions
## 7812 HotTap RAS password change instructions
## 7813 HotTap RAS password change instructions
## 7814 HotTap RAS password change instructions
## 7815 HotTap RAS password change instructions
## 7816 HotTap RAS password change instructions
## 7817 HotTap RAS password change instructions
## 7818 Password Security Notice
## 7819 An Opportunity to Change Your Electricity Provider
## 7820 Getting to other mail
## 7821 Presentations available now
## 7822 Data request for FERC s Bulk Power Investigation
## 7823 Data request for FERC s Bulk Power Investigation
## 7824 Data request for FERC s Bulk Power Investigation
## 7825 Data request for FERC s Bulk Power Investigation
## 7826 Data request for FERC s Bulk Power Investigation
## 7827 Data request for FERC s Bulk Power Investigation
## 7828 Data request for FERC s Bulk Power Investigation
## 7829 Data Request for Bulk Power Investigation
## 7830 Data Request for Bulk Power Investigation
## 7831 LV Cogen QF agreement.
## 7832 LV Cogen QF agreement.
## 7833 LV Cogen QF agreement.
## 7834 LV Cogen QF agreement.
## 7835 Saguaro FERC info
## 7836 Saguaro FERC info
## 7837 Lv Cogen Outage Data
## 7838 Lv Cogen Outage Data
## 7839 Re: Enron Data Responses for FERC s Bulk Power Investigation
## 7840 Re: Enron Data Responses for FERC s Bulk Power Investigation
## 7841 Re: Enron Data Responses for FERC s Bulk Power Investigation
## 7842 Re: Enron Data Responses for FERC s Bulk Power Investigation
## 7843 Response to FERC Data Request for Bulk Power Investigation
## 7844 Response to FERC Data Request for Bulk Power Investigation
## 7845 Re: Public Hydro Data Sources
## 7846 Re: Response to FERC Data Request for Bulk Power Investigation
## 7847 Follow-up Data Request for Bulk Power Investigation
## 7848 Fwd: Follow-up Data Request for Bulk Power Investigation
## 7849 Re: Response to FERC Data Request for Bulk Power Investigation
## 7850 Data Request #2 - Nox Credits
## 7851 2000 volumes
## 7852 2000 volumes
## 7853 2000 volumes
## 7854 Re: Response to FERC data request for bulk power investigation
## 7855 Re: Data Requests
## 7856 WSPP report for 3rd quarter
## 7857 WSPP report for 3rd quarter
## 7858 WSPP report for 3rd quarter
## 7859 WSPP report for 3rd quarter
## 7860 WSPP report for 3rd quarter
## 7861 WSPP report for 3rd quarter
## 7862 WSPP report for 3rd quarter
## 7863 WSPP report for 3rd quarter
## 7864 WSPP report for 3rd quarter
## 7865 Re: WSPP report for 3rd quarter
## 7866 Re: WSPP report for 3rd quarter
## 7867 Re: WSPP report for 3rd quarter
## 7868 Re: WSPP report for 3rd quarter
## 7869 Re: WSPP report for 3rd quarter
## 7870 Re: WSPP report for 3rd quarter
## 7871 Re: WSPP report for 3rd quarter
## 7872 Re: WSPP report for 3rd quarter
## 7873 Re: WSPP report for 3rd quarter
## 7874 Re: WSPP report for 3rd quarter
## 7875 Re: WSPP report for 3rd quarter
## 7876 Re: WSPP report for 3rd quarter
## 7877 Re: WSPP report for 3rd quarter
## 7878 Re: WSPP report for 3rd quarter
## 7879 Re: WSPP report for 3rd quarter
## 7880 Re: Request
## 7881 Re: Request
## 7882 Re: Request
## 7883 Class Confirmation - Power Marketing - Structuring Power Transactions
## 7884 Enron Bids
## 7885 Enron Bids
## 7886 Enron Bids
## 7887 Enron Bids
## 7888 New email address--contacts attachment
## 7889 New email address--contacts attachment
## 7890 New email address--contacts attachment
## 7891 New email address--contacts attachment
## 7892 New email address--contacts attachment
## 7893 New email address--contacts attachment
## 7894 New email address--contacts attachment
## 7895 New email address--contacts attachment
## 7896 New email address--contacts attachment
## 7897 New email address--contacts attachment
## 7898 New email address--contacts attachment
## 7899 New email address--contacts attachment
## 7900 New email address--contacts attachment
## 7901 New email address--contacts attachment
## 7902 New email address--contacts attachment
## 7903 New email address--contacts attachment
## 7904 New email address--contacts attachment
## 7905 New email address--contacts attachment
## 7906 New email address--contacts attachment
## 7907 New email address--contacts attachment
## 7908 New email address--contacts attachment
## 7909 New email address--contacts attachment
## 7910 New email address--contacts attachment
## 7911 New email address--contacts attachment
## 7912 New email address--contacts attachment
## 7913 New email address--contacts attachment
## 7914 New email address--contacts attachment
## 7915 New email address--contacts attachment
## 7916 New email address--contacts attachment
## 7917 New email address--contacts attachment
## 7918 New email address--contacts attachment
## 7919 New email address--contacts attachment
## 7920 New email address--contacts attachment
## 7921 New email address--contacts attachment
## 7922 New email address--contacts attachment
## 7923 New email address--contacts attachment
## 7924 New email address--contacts attachment
## 7925 New email address--contacts attachment
## 7926 New email address--contacts attachment
## 7927 New email address--contacts attachment
## 7928 New email address--contacts attachment
## 7929 New email address--contacts attachment
## 7930 New email address--contacts attachment
## 7931 New email address--contacts attachment
## 7932 New email address--contacts attachment
## 7933 New email address--contacts attachment
## 7934 New email address--contacts attachment
## 7935 New email address--contacts attachment
## 7936 New email address--contacts attachment
## 7937 New email address--contacts attachment
## 7938 New email address--contacts attachment
## 7939 New email address--contacts attachment
## 7940 New email address--contacts attachment
## 7941 New email address--contacts attachment
## 7942 New email address--contacts attachment
## 7943 New email address--contacts attachment
## 7944 New email address--contacts attachment
## 7945 New email address--contacts attachment
## 7946 New email address--contacts attachment
## 7947 New email address--contacts attachment
## 7948 New email address--contacts attachment
## 7949 New email address--contacts attachment
## 7950 New email address--contacts attachment
## 7951 New email address--contacts attachment
## 7952 New email address--contacts attachment
## 7953 New email address--contacts attachment
## 7954 New email address--contacts attachment
## 7955 New email address--contacts attachment
## 7956 New email address--contacts attachment
## 7957 New email address--contacts attachment
## 7958 New email address--contacts attachment
## 7959 Gas Marketing Affiliate Rule
## 7960 OASIS Posting - Actions in Response to End of DC Intertie Public\t Comment Process
## 7961 OASIS Posting - Actions in Response to End of DC Intertie Public\t Comment Process
## 7962 Duke files Interconnection Procedures at FERC
## 7963 Duke files Interconnection Procedures at FERC
## 7964 Duke files Interconnection Procedures at FERC
## 7965 Duke files Interconnection Procedures at FERC
## 7966 Duke files Interconnection Procedures at FERC
## 7967 Duke files Interconnection Procedures at FERC
## 7968 Duke files Interconnection Procedures at FERC
## 7969 Duke files Interconnection Procedures at FERC
## 7970 Duke files Interconnection Procedures at FERC
## 7971 Duke files Interconnection Procedures at FERC
## 7972 Duke files Interconnection Procedures at FERC
## 7973 Duke files Interconnection Procedures at FERC
## 7974 Duke files Interconnection Procedures at FERC
## 7975 Duke files Interconnection Procedures at FERC
## 7976 Duke files Interconnection Procedures at FERC
## 7977 Duke files Interconnection Procedures at FERC
## 7978 Duke files Interconnection Procedures at FERC
## 7979 Duke files Interconnection Procedures at FERC
## 7980 Duke files Interconnection Procedures at FERC
## 7981 Duke files Interconnection Procedures at FERC
## 7982 Duke files Interconnection Procedures at FERC
## 7983 Duke files Interconnection Procedures at FERC
## 7984 Duke files Interconnection Procedures at FERC
## 7985 Duke files Interconnection Procedures at FERC
## 7986 Duke files Interconnection Procedures at FERC
## 7987 Duke files Interconnection Procedures at FERC
## 7988 Duke files Interconnection Procedures at FERC
## 7989 Duke files Interconnection Procedures at FERC
## 7990 Duke files Interconnection Procedures at FERC
## 7991 Duke files Interconnection Procedures at FERC
## 7992 Duke files Interconnection Procedures at FERC
## 7993 Re: WSPP 4th Quarter 2000 Report
## 7994 RE: WSPP 4th Quarter 2000 Report
## 7995 RE: WSPP 4th Quarter 2000 Report
## 7996 RE: WSPP 4th Quarter 2000 Report
## 7997 RE: WSPP 4th Quarter 2000 Report
## 7998 RE: WSPP 4th Quarter 2000 Report
## 7999 RE: WSPP 4th Quarter 2000 Report
## 8000 RE: WSPP 4th Quarter 2000 Report
## 8001 RE: WSPP 4th Quarter 2000 Report
## 8002 RE: WSPP 4th Quarter 2000 Report
## 8003 RE: WSPP 4th Quarter 2000 Report
## 8004 RE: WSPP 4th Quarter 2000 Report
## 8005 RE: WSPP 4th Quarter 2000 Report
## 8006 FERC and DOE 4th Quarter Reports
## 8007 FERC and DOE 4th Quarter Reports
## 8008 Re: FERC and DOE 4th Quarter Reports
## 8009 Re: FERC and DOE 4th Quarter Reports
## 8010 Re: FERC and DOE 4th Quarter Reports
## 8011 Re: FERC and DOE 4th Quarter Reports
## 8012 Re: FERC and DOE 4th Quarter Reports
## 8013 Re: FERC and DOE 4th Quarter Reports
## 8014 Re: FERC and DOE 4th Quarter Reports
## 8015 Re: FERC and DOE 4th Quarter Reports
## 8016 Re: FERC and DOE 4th Quarter Reports
## 8017 Re: FERC and DOE 4th Quarter Reports
## 8018 Re: FERC and DOE 4th Quarter Reports
## 8019 Re: FERC and DOE 4th Quarter Reports
## 8020 Recent FERC interconnection orders
## 8021 Recent FERC interconnection orders
## 8022 Recent FERC interconnection orders
## 8023 Recent FERC interconnection orders
## 8024 Recent FERC interconnection orders
## 8025 Recent FERC interconnection orders
## 8026 Recent FERC interconnection orders
## 8027 Recent FERC interconnection orders
## 8028 Recent FERC interconnection orders
## 8029 Recent FERC interconnection orders
## 8030 Recent FERC interconnection orders
## 8031 Recent FERC interconnection orders
## 8032 Recent FERC interconnection orders
## 8033 Recent FERC interconnection orders
## 8034 Recent FERC interconnection orders
## 8035 Recent FERC interconnection orders
## 8036 Recent FERC interconnection orders
## 8037 Recent FERC interconnection orders
## 8038 Recent FERC interconnection orders
## 8039 Recent FERC interconnection orders
## 8040 Recent FERC interconnection orders
## 8041 Recent FERC interconnection orders
## 8042 Recent FERC interconnection orders
## 8043 Recent FERC interconnection orders
## 8044 Recent FERC interconnection orders
## 8045 Recent FERC interconnection orders
## 8046 Recent FERC interconnection orders
## 8047 Recent FERC interconnection orders
## 8048 Recent FERC interconnection orders
## 8049 Recent FERC interconnection orders
## 8050 Recent FERC interconnection orders
## 8051 Recent FERC interconnection orders
## 8052 Recent FERC interconnection orders
## 8053 Recent FERC interconnection orders
## 8054 Recent FERC interconnection orders
## 8055 Recent FERC interconnection orders
## 8056 Recent FERC interconnection orders
## 8057 Recent FERC interconnection orders
## 8058 Recent FERC interconnection orders
## 8059 Recent FERC interconnection orders
## 8060 Recent FERC interconnection orders
## 8061 Recent FERC interconnection orders
## 8062 Recent FERC interconnection orders
## 8063 Recent FERC interconnection orders
## 8064 Recent FERC interconnection orders
## 8065 Recent FERC interconnection orders
## 8066 Recent FERC interconnection orders
## 8067 Recent FERC interconnection orders
## 8068 Recent FERC interconnection orders
## 8069 Recent FERC interconnection orders
## 8070 Recent FERC interconnection orders
## 8071 Recent FERC interconnection orders
## 8072 Recent FERC interconnection orders
## 8073 Recent FERC interconnection orders
## 8074 Recent FERC interconnection orders
## 8075 Recent FERC interconnection orders
## 8076 Recent FERC interconnection orders
## 8077 Recent FERC interconnection orders
## 8078 Recent FERC interconnection orders
## 8079 Recent FERC interconnection orders
## 8080 Recent FERC interconnection orders
## 8081 Recent FERC interconnection orders
## 8082 Recent FERC interconnection orders
## 8083 Recent FERC interconnection orders
## 8084 Recent FERC interconnection orders
## 8085 Recent FERC interconnection orders
## 8086 Recent FERC interconnection orders
## 8087 Recent FERC interconnection orders
## 8088 Recent FERC interconnection orders
## 8089 Recent FERC interconnection orders
## 8090 Recent FERC interconnection orders
## 8091 Recent FERC interconnection orders
## 8092 Recent FERC interconnection orders
## 8093 Recent FERC interconnection orders
## 8094 Recent FERC interconnection orders
## 8095 Recent FERC interconnection orders
## 8096 Recent FERC interconnection orders
## 8097 Recent FERC interconnection orders
## 8098 Recent FERC interconnection orders
## 8099 Recent FERC interconnection orders
## 8100 Recent FERC interconnection orders
## 8101 Recent FERC interconnection orders
## 8102 Recent FERC interconnection orders
## 8103 2000 W2 Information
## 8104 =?ANSI_X3.4-1968?Q?New_Employee_Service_=01)_Turbo_Tax?=
## 8105 Re: ISO problems
## 8106 Re: NEW: Generator Interconnections: A Primer on Procedures and\tAgreements
## 8107 Re: NEW: Generator Interconnections: A Primer on Procedures and\tAgreements
## 8108 Re: NEW: Generator Interconnections: A Primer on Procedures and\tAgreements
## 8109 CAISO Notice - Pro Rata Payment of November Invoice
## 8110 CAISO Notice - Pro Rata Payment of November Invoice
## 8111 CAISO Notice - Pro Rata Payment of November Invoice
## 8112 Interconnection questions
## 8113 Interconnection questions
## 8114 Interconnection questions
## 8115 Interconnection questions
## 8116 Interconnection questions
## 8117 Interconnection questions
## 8118 Interconnection questions
## 8119 Interconnection questions
## 8120 Interconnection questions
## 8121 Interconnection questions
## 8122 Interconnection questions
## 8123 Interconnection questions
## 8124 Interconnection questions
## 8125 Interconnection questions
## 8126 Interconnection questions
## 8127 Interconnection questions
## 8128 Interconnection questions
## 8129 Interconnection questions
## 8130 Interconnection questions
## 8131 Interconnection questions
## 8132 Interconnection questions
## 8133 Interconnection questions
## 8134 Interconnection questions
## 8135 Interconnection questions
## 8136 Interconnection questions
## 8137 Interconnection questions
## 8138 Interconnection questions
## 8139 Interconnection questions
## 8140 Interconnection questions
## 8141 Interconnection questions
## 8142 Interconnection questions
## 8143 Interconnection questions
## 8144 Interconnection questions
## 8145 Interconnection questions
## 8146 Interconnection questions
## 8147 Interconnection questions
## 8148 Interconnection questions
## 8149 Contract Commendeering Articles
## 8150 Contract Commendeering Articles
## 8151 Contract Commendeering Articles
## 8152 Contract Commendeering Articles
## 8153 Contract Commendeering Articles
## 8154 Contract Commendeering Articles
## 8155 Contract Commendeering Articles
## 8156 Contract Commendeering Articles
## 8157 Contract Commendeering Articles
## 8158 Contract Commendeering Articles
## 8159 Contract Commendeering Articles
## 8160 Contract Commendeering Articles
## 8161 Contract Commendeering Articles
## 8162 Contract Commendeering Articles
## 8163 Contract Commendeering Articles
## 8164 Contract Commendeering Articles
## 8165 Contract Commendeering Articles
## 8166 Contract Commendeering Articles
## 8167 Contract Commendeering Articles
## 8168 Contract Commendeering Articles
## 8169 Contract Commendeering Articles
## 8170 Contract Commendeering Articles
## 8171 Contract Commendeering Articles
## 8172 Contract Commendeering Articles
## 8173 Contract Commendeering Articles
## 8174 Contract Commendeering Articles
## 8175 Contract Commendeering Articles
## 8176 Contract Commendeering Articles
## 8177 Contract Commendeering Articles
## 8178 Contract Commendeering Articles
## 8179 Contract Commendeering Articles
## 8180 Contract Commendeering Articles
## 8181 Contract Commendeering Articles
## 8182 Contract Commendeering Articles
## 8183 Contract Commendeering Articles
## 8184 Contract Commendeering Articles
## 8185 Contract Commendeering Articles
## 8186 Contract Commendeering Articles
## 8187 Contract Commendeering Articles
## 8188 Contract Commendeering Articles
## 8189 Contract Commendeering Articles
## 8190 Contract Commendeering Articles
## 8191 Contract Commendeering Articles
## 8192 Contract Commendeering Articles
## 8193 Contract Commendeering Articles
## 8194 Contract Commendeering Articles
## 8195 Contract Commendeering Articles
## 8196 Contract Commendeering Articles
## 8197 Contract Commendeering Articles
## 8198 Contract Commendeering Articles
## 8199 Contract Commendeering Articles
## 8200 Re: REVISED COMPLAINT
## 8201 Re: REVISED COMPLAINT
## 8202 Re: REVISED COMPLAINT
## 8203 Re: REVISED COMPLAINT
## 8204 Re: REVISED COMPLAINT
## 8205 Re: REVISED COMPLAINT
## 8206 Re: REVISED COMPLAINT
## 8207 Re: REVISED COMPLAINT
## 8208 Re: REVISED COMPLAINT
## 8209 Re: REVISED COMPLAINT
## 8210 Re: REVISED COMPLAINT
## 8211 Re: REVISED COMPLAINT
## 8212 Re: REVISED COMPLAINT
## 8213 Re: REVISED COMPLAINT
## 8214 Re: REVISED COMPLAINT
## 8215 Re: REVISED COMPLAINT
## 8216 Re: REVISED COMPLAINT
## 8217 Re: REVISED COMPLAINT
## 8218 Re: REVISED COMPLAINT
## 8219 Re: REVISED COMPLAINT
## 8220 Re: REVISED COMPLAINT
## 8221 Re: REVISED COMPLAINT
## 8222 Re: REVISED COMPLAINT
## 8223 Re: REVISED COMPLAINT
## 8224 Re: REVISED COMPLAINT
## 8225 Re: REVISED COMPLAINT
## 8226 Re: REVISED COMPLAINT
## 8227 Re: REVISED COMPLAINT
## 8228 Re: REVISED COMPLAINT
## 8229 Re: REVISED COMPLAINT
## 8230 Re: REVISED COMPLAINT
## 8231 Re: REVISED COMPLAINT
## 8232 Re: REVISED COMPLAINT
## 8233 Re: REVISED COMPLAINT
## 8234 Re: REVISED COMPLAINT
## 8235 Re: REVISED COMPLAINT
## 8236 Re: REVISED COMPLAINT
## 8237 Re: REVISED COMPLAINT
## 8238 Re: REVISED COMPLAINT
## 8239 Re: REVISED COMPLAINT
## 8240 Re: REVISED COMPLAINT
## 8241 Re: REVISED COMPLAINT
## 8242 Re: REVISED COMPLAINT
## 8243 Re: REVISED COMPLAINT
## 8244 Re: REVISED COMPLAINT
## 8245 Re: REVISED COMPLAINT
## 8246 Re: REVISED COMPLAINT
## 8247 Re: REVISED COMPLAINT
## 8248 Re: REVISED COMPLAINT
## 8249 Re: REVISED COMPLAINT
## 8250 Re: REVISED COMPLAINT
## 8251 Re: REVISED COMPLAINT
## 8252 Re: REVISED COMPLAINT
## 8253 Re: REVISED COMPLAINT
## 8254 Re: REVISED COMPLAINT
## 8255 Re: REVISED COMPLAINT
## 8256 Re: REVISED COMPLAINT
## 8257 Re: OOPs - sent wrong version on Letter to Sierra re trans and interX for Project Priscilla
## 8258 Re: NPC Interconnection Agmt. and MOU
## 8259 Re: NPC Interconnection Agmt. and MOU
## 8260 Re: NPC Interconnection Agmt. and MOU
## 8261 Re: NPC Interconnection Agmt. and MOU
## 8262 Re: NPC Interconnection Agmt. and MOU
## 8263 Re: NPC Interconnection Agmt. and MOU
## 8264 Re: NPC Interconnection Agmt. and MOU
## 8265 Re: NPC Interconnection Agmt. and MOU
## 8266 Re: NPC Interconnection Agmt. and MOU
## 8267 CAISO Liaison
## 8268 CAISO Liaison
## 8269 CAISO Liaison
## 8270 EPMI files protest of Entergy Transco
## 8271 EPMI files protest of Entergy Transco
## 8272 EPMI files protest of Entergy Transco
## 8273 EPMI files protest of Entergy Transco
## 8274 EPMI files protest of Entergy Transco
## 8275 EPMI files protest of Entergy Transco
## 8276 EPMI files protest of Entergy Transco
## 8277 EPMI files protest of Entergy Transco
## 8278 EPMI files protest of Entergy Transco
## 8279 EPMI files protest of Entergy Transco
## 8280 EPMI files protest of Entergy Transco
## 8281 EPMI files protest of Entergy Transco
## 8282 EPMI files protest of Entergy Transco
## 8283 EPMI files protest of Entergy Transco
## 8284 EPMI files protest of Entergy Transco
## 8285 EPMI files protest of Entergy Transco
## 8286 EPMI files protest of Entergy Transco
## 8287 EPMI files protest of Entergy Transco
## 8288 EPMI files protest of Entergy Transco
## 8289 EPMI files protest of Entergy Transco
## 8290 EPMI files protest of Entergy Transco
## 8291 EPMI files protest of Entergy Transco
## 8292 EPMI files protest of Entergy Transco
## 8293 EPMI files protest of Entergy Transco
## 8294 EPMI files protest of Entergy Transco
## 8295 EPMI files protest of Entergy Transco
## 8296 EPMI files protest of Entergy Transco
## 8297 EPMI files protest of Entergy Transco
## 8298 EPMI files protest of Entergy Transco
## 8299 EPMI files protest of Entergy Transco
## 8300 EPMI files protest of Entergy Transco
## 8301 EPMI files protest of Entergy Transco
## 8302 EPMI files protest of Entergy Transco
## 8303 EPMI files protest of Entergy Transco
## 8304 EPMI files protest of Entergy Transco
## 8305 EPMI files protest of Entergy Transco
## 8306 EPMI files protest of Entergy Transco
## 8307 EPMI files protest of Entergy Transco
## 8308 EPMI files protest of Entergy Transco
## 8309 EPMI files protest of Entergy Transco
## 8310 EPMI files protest of Entergy Transco
## 8311 EPMI files protest of Entergy Transco
## 8312 EPMI files protest of Entergy Transco
## 8313 EPMI files protest of Entergy Transco
## 8314 EPMI files protest of Entergy Transco
## 8315 EPMI files protest of Entergy Transco
## 8316 EPMI files protest of Entergy Transco
## 8317 EPMI files protest of Entergy Transco
## 8318 EPMI files protest of Entergy Transco
## 8319 EPMI files protest of Entergy Transco
## 8320 EPMI files protest of Entergy Transco
## 8321 EPMI files protest of Entergy Transco
## 8322 EPMI files protest of Entergy Transco
## 8323 EPMI files protest of Entergy Transco
## 8324 EPMI files protest of Entergy Transco
## 8325 EPMI files protest of Entergy Transco
## 8326 Addresses
## 8327 Interconnection MOU
## 8328 Interconnection MOU
## 8329 Interconnection MOU
## 8330 Interconnection MOU
## 8331 Interconnection MOU
## 8332 Conference Call Today
## 8333 Conference Call Today
## 8334 Conference Call Today
## 8335 Conference Call Today
## 8336 Conference Call Today
## 8337 Conference Call Today
## 8338 Conference Call Today
## 8339 Conference Call Today
## 8340 Conference Call Today
## 8341 Conference Call Today
## 8342 Conference Call Today
## 8343 Conference Call Today
## 8344 Conference Call Today
## 8345 Conference Call Today
## 8346 Conference Call Today
## 8347 Conference Call Today
## 8348 Details of real time market
## 8349 Details of real time market
## 8350 Details of real time market
## 8351 Details of real time market
## 8352 Details of real time market
## 8353 Details of real time market
## 8354 Details of real time market
## 8355 Details of real time market
## 8356 Details of real time market
## 8357 Details of real time market
## 8358 Details of real time market
## 8359 Details of real time market
## 8360 Details of real time market
## 8361 Details of real time market
## 8362 Details of real time market
## 8363 Details of real time market
## 8364 Details of real time market
## 8365 Details of real time market
## 8366 Details of real time market
## 8367 Details of real time market
## 8368 Details of real time market
## 8369 Details of real time market
## 8370 Details of real time market
## 8371 Details of real time market
## 8372 Details of real time market
## 8373 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8374 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8375 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8376 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8377 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8378 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8379 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8380 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8381 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8382 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8383 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8384 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8385 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8386 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8387 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8388 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8389 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8390 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8391 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8392 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8393 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8394 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8395 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8396 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8397 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8398 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8399 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8400 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8401 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8402 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8403 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8404 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8405 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8406 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8407 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8408 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8409 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8410 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8411 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8412 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8413 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8414 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8415 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8416 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8417 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8418 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8419 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8420 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8421 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8422 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8423 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8424 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8425 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8426 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8427 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8428 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8429 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8430 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8431 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8432 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8433 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8434 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8435 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8436 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8437 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8438 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8439 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8440 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8441 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8442 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8443 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8444 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8445 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8446 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8447 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8448 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8449 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8450 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8451 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8452 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8453 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8454 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8455 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8456 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8457 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8458 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8459 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8460 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8461 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8462 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8463 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8464 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8465 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8466 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8467 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8468 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8469 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8470 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8471 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8472 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8473 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8474 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8475 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8476 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8477 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8478 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8479 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8480 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8481 WP-02 Data Requests PG-BPA:126 - PG-BPA:131
## 8482 2000 Lobbying Expenses
## 8483 2000 Lobbying Expenses
## 8484 2000 Lobbying Expenses
## 8485 2000 Lobbying Expenses
## 8486 2000 Lobbying Expenses
## 8487 2000 Lobbying Expenses
## 8488 2000 Lobbying Expenses
## 8489 2000 Lobbying Expenses
## 8490 2000 Lobbying Expenses
## 8491 2000 Lobbying Expenses
## 8492 2000 Lobbying Expenses
## 8493 2000 Lobbying Expenses
## 8494 2000 Lobbying Expenses
## 8495 2000 Lobbying Expenses
## 8496 2000 Lobbying Expenses
## 8497 2000 Lobbying Expenses
## 8498 2000 Lobbying Expenses
## 8499 2000 Lobbying Expenses
## 8500 2000 Lobbying Expenses
## 8501 2000 Lobbying Expenses
## 8502 2000 Lobbying Expenses
## 8503 2000 Lobbying Expenses
## 8504 2000 Lobbying Expenses
## 8505 2000 Lobbying Expenses
## 8506 2000 Lobbying Expenses
## 8507 2000 Lobbying Expenses
## 8508 2000 Lobbying Expenses
## 8509 2000 Lobbying Expenses
## 8510 2000 Lobbying Expenses
## 8511 2000 Lobbying Expenses
## 8512 2000 Lobbying Expenses
## 8513 2000 Lobbying Expenses
## 8514 2000 Lobbying Expenses
## 8515 2000 Lobbying Expenses
## 8516 2000 Lobbying Expenses
## 8517 2000 Lobbying Expenses
## 8518 2000 Lobbying Expenses
## 8519 2000 Lobbying Expenses
## 8520 2000 Lobbying Expenses
## 8521 2000 Lobbying Expenses
## 8522 2000 Lobbying Expenses
## 8523 2000 Lobbying Expenses
## 8524 2000 Lobbying Expenses
## 8525 2000 Lobbying Expenses
## 8526 2000 Lobbying Expenses
## 8527 2000 Lobbying Expenses
## 8528 2000 Lobbying Expenses
## 8529 2000 Lobbying Expenses
## 8530 2000 Lobbying Expenses
## 8531 2000 Lobbying Expenses
## 8532 2000 Lobbying Expenses
## 8533 2000 Lobbying Expenses
## 8534 2000 Lobbying Expenses
## 8535 2000 Lobbying Expenses
## 8536 2000 Lobbying Expenses
## 8537 2000 Lobbying Expenses
## 8538 2000 Lobbying Expenses
## 8539 2000 Lobbying Expenses
## 8540 2000 Lobbying Expenses
## 8541 2000 Lobbying Expenses
## 8542 2000 Lobbying Expenses
## 8543 2000 Lobbying Expenses
## 8544 2000 Lobbying Expenses
## 8545 2000 Lobbying Expenses
## 8546 2000 Lobbying Expenses
## 8547 2000 Lobbying Expenses
## 8548 2000 Lobbying Expenses
## 8549 2000 Lobbying Expenses
## 8550 2000 Lobbying Expenses
## 8551 2000 Lobbying Expenses
## 8552 2000 Lobbying Expenses
## 8553 2000 Lobbying Expenses
## 8554 2000 Lobbying Expenses
## 8555 2000 Lobbying Expenses
## 8556 2000 Lobbying Expenses
## 8557 2000 Lobbying Expenses
## 8558 2000 Lobbying Expenses
## 8559 2000 Lobbying Expenses
## 8560 2000 Lobbying Expenses
## 8561 2000 Lobbying Expenses
## 8562 2000 Lobbying Expenses
## 8563 2000 Lobbying Expenses
## 8564 2000 Lobbying Expenses
## 8565 2000 Lobbying Expenses
## 8566 2000 Lobbying Expenses
## 8567 2000 Lobbying Expenses
## 8568 2000 Lobbying Expenses
## 8569 2000 Lobbying Expenses
## 8570 2000 Lobbying Expenses
## 8571 2000 Lobbying Expenses
## 8572 2000 Lobbying Expenses
## 8573 2000 Lobbying Expenses
## 8574 2000 Lobbying Expenses
## 8575 2000 Lobbying Expenses
## 8576 2000 Lobbying Expenses
## 8577 2000 Lobbying Expenses
## 8578 2000 Lobbying Expenses
## 8579 2000 Lobbying Expenses
## 8580 2000 Lobbying Expenses
## 8581 2000 Lobbying Expenses
## 8582 2000 Lobbying Expenses
## 8583 CAISO Notice - Final November Invoices
## 8584 Scope of FERC Jurisdiction Over State-Owned Utility
## 8585 Scope of FERC Jurisdiction Over State-Owned Utility
## 8586 Scope of FERC Jurisdiction Over State-Owned Utility
## 8587 Scope of FERC Jurisdiction Over State-Owned Utility
## 8588 CAISO Notice - Final November Invoices
## 8589 FW: CHANGE: Comment Period extended to March 2, 2001
## 8590 FW: CHANGE: Comment Period extended to March 2, 2001
## 8591 Reliability Compliance Committee Nominations
## 8592 GridFlorida s response to EPMI request for real time market
## 8593 GridFlorida s response to EPMI request for real time market
## 8594 GridFlorida s response to EPMI request for real time market
## 8595 GridFlorida s response to EPMI request for real time market
## 8596 GridFlorida s response to EPMI request for real time market
## 8597 GridFlorida s response to EPMI request for real time market
## 8598 GridFlorida s response to EPMI request for real time market
## 8599 GridFlorida s response to EPMI request for real time market
## 8600 GridFlorida s response to EPMI request for real time market
## 8601 GridFlorida s response to EPMI request for real time market
## 8602 GridFlorida s response to EPMI request for real time market
## 8603 GridFlorida s response to EPMI request for real time market
## 8604 GridFlorida s response to EPMI request for real time market
## 8605 GridFlorida s response to EPMI request for real time market
## 8606 GridFlorida s response to EPMI request for real time market
## 8607 GridFlorida s response to EPMI request for real time market
## 8608 GridFlorida s response to EPMI request for real time market
## 8609 GridFlorida s response to EPMI request for real time market
## 8610 GridFlorida s response to EPMI request for real time market
## 8611 GridFlorida s response to EPMI request for real time market
## 8612 GridFlorida s response to EPMI request for real time market
## 8613 GridFlorida s response to EPMI request for real time market
## 8614 GridFlorida s response to EPMI request for real time market
## 8615 GridFlorida s response to EPMI request for real time market
## 8616 GridFlorida s response to EPMI request for real time market
## 8617 GridFlorida s response to EPMI request for real time market
## 8618 GridFlorida s response to EPMI request for real time market
## 8619 GridFlorida s response to EPMI request for real time market
## 8620 GridFlorida s response to EPMI request for real time market
## 8621 GridFlorida s response to EPMI request for real time market
## 8622 GridFlorida s response to EPMI request for real time market
## 8623 GridFlorida s response to EPMI request for real time market
## 8624 GridFlorida s response to EPMI request for real time market
## 8625 GridFlorida s response to EPMI request for real time market
## 8626 GridFlorida s response to EPMI request for real time market
## 8627 GridFlorida s response to EPMI request for real time market
## 8628 GridFlorida s response to EPMI request for real time market
## 8629 Re:Proposed Errata
## 8630 Re: Talk to Joe Sutton on eSpeak Today!
## 8631 GA Department Meeting, Friday, March 9
## 8632 GA Department Meeting, Friday, March 9
## 8633 GA Department Meeting, Friday, March 9
## 8634 GA Department Meeting, Friday, March 9
## 8635 GA Department Meeting, Friday, March 9
## 8636 GA Department Meeting, Friday, March 9
## 8637 GA Department Meeting, Friday, March 9
## 8638 GA Department Meeting, Friday, March 9
## 8639 GA Department Meeting, Friday, March 9
## 8640 GA Department Meeting, Friday, March 9
## 8641 GA Department Meeting, Friday, March 9
## 8642 GA Department Meeting, Friday, March 9
## 8643 GA Department Meeting, Friday, March 9
## 8644 GA Department Meeting, Friday, March 9
## 8645 GA Department Meeting, Friday, March 9
## 8646 GA Department Meeting, Friday, March 9
## 8647 GA Department Meeting, Friday, March 9
## 8648 GA Department Meeting, Friday, March 9
## 8649 GA Department Meeting, Friday, March 9
## 8650 GA Department Meeting, Friday, March 9
## 8651 GA Department Meeting, Friday, March 9
## 8652 GA Department Meeting, Friday, March 9
## 8653 GA Department Meeting, Friday, March 9
## 8654 GA Department Meeting, Friday, March 9
## 8655 GA Department Meeting, Friday, March 9
## 8656 GA Department Meeting, Friday, March 9
## 8657 GA Department Meeting, Friday, March 9
## 8658 GA Department Meeting, Friday, March 9
## 8659 GA Department Meeting, Friday, March 9
## 8660 GA Department Meeting, Friday, March 9
## 8661 GA Department Meeting, Friday, March 9
## 8662 GA Department Meeting, Friday, March 9
## 8663 GA Department Meeting, Friday, March 9
## 8664 GA Department Meeting, Friday, March 9
## 8665 GA Department Meeting, Friday, March 9
## 8666 GA Department Meeting, Friday, March 9
## 8667 GA Department Meeting, Friday, March 9
## 8668 GA Department Meeting, Friday, March 9
## 8669 GA Department Meeting, Friday, March 9
## 8670 GA Department Meeting, Friday, March 9
## 8671 GA Department Meeting, Friday, March 9
## 8672 GA Department Meeting, Friday, March 9
## 8673 GA Department Meeting, Friday, March 9
## 8674 GA Department Meeting, Friday, March 9
## 8675 GA Department Meeting, Friday, March 9
## 8676 GA Department Meeting, Friday, March 9
## 8677 GA Department Meeting, Friday, March 9
## 8678 GA Department Meeting, Friday, March 9
## 8679 GA Department Meeting, Friday, March 9
## 8680 GA Department Meeting, Friday, March 9
## 8681 GA Department Meeting, Friday, March 9
## 8682 GA Department Meeting, Friday, March 9
## 8683 GA Department Meeting, Friday, March 9
## 8684 GA Department Meeting, Friday, March 9
## 8685 GA Department Meeting, Friday, March 9
## 8686 GA Department Meeting, Friday, March 9
## 8687 GA Department Meeting, Friday, March 9
## 8688 GA Department Meeting, Friday, March 9
## 8689 GA Department Meeting, Friday, March 9
## 8690 GA Department Meeting, Friday, March 9
## 8691 GA Department Meeting, Friday, March 9
## 8692 GA Department Meeting, Friday, March 9
## 8693 GA Department Meeting, Friday, March 9
## 8694 GA Department Meeting, Friday, March 9
## 8695 GA Department Meeting, Friday, March 9
## 8696 GA Department Meeting, Friday, March 9
## 8697 GA Department Meeting, Friday, March 9
## 8698 GA Department Meeting, Friday, March 9
## 8699 GA Department Meeting, Friday, March 9
## 8700 GA Department Meeting, Friday, March 9
## 8701 GA Department Meeting, Friday, March 9
## 8702 GA Department Meeting, Friday, March 9
## 8703 GA Department Meeting, Friday, March 9
## 8704 GA Department Meeting, Friday, March 9
## 8705 GA Department Meeting, Friday, March 9
## 8706 GA Department Meeting, Friday, March 9
## 8707 GA Department Meeting, Friday, March 9
## 8708 GA Department Meeting, Friday, March 9
## 8709 GA Department Meeting, Friday, March 9
## 8710 GA Department Meeting, Friday, March 9
## 8711 GA Department Meeting, Friday, March 9
## 8712 GA Department Meeting, Friday, March 9
## 8713 GA Department Meeting, Friday, March 9
## 8714 GA Department Meeting, Friday, March 9
## 8715 GA Department Meeting, Friday, March 9
## 8716 GA Department Meeting, Friday, March 9
## 8717 GA Department Meeting, Friday, March 9
## 8718 GA Department Meeting, Friday, March 9
## 8719 GA Department Meeting, Friday, March 9
## 8720 GA Department Meeting, Friday, March 9
## 8721 GA Department Meeting, Friday, March 9
## 8722 GA Department Meeting, Friday, March 9
## 8723 GA Department Meeting, Friday, March 9
## 8724 GA Department Meeting, Friday, March 9
## 8725 GA Department Meeting, Friday, March 9
## 8726 GA Department Meeting, Friday, March 9
## 8727 GA Department Meeting, Friday, March 9
## 8728 GA Department Meeting, Friday, March 9
## 8729 GA Department Meeting, Friday, March 9
## 8730 GA Department Meeting, Friday, March 9
## 8731 GA Department Meeting, Friday, March 9
## 8732 GA Department Meeting, Friday, March 9
## 8733 GA Department Meeting, Friday, March 9
## 8734 GA Department Meeting, Friday, March 9
## 8735 GA Department Meeting, Friday, March 9
## 8736 GA Department Meeting, Friday, March 9
## 8737 GA Department Meeting, Friday, March 9
## 8738 GA Department Meeting, Friday, March 9
## 8739 GA Department Meeting, Friday, March 9
## 8740 GA Department Meeting, Friday, March 9
## 8741 GA Department Meeting, Friday, March 9
## 8742 GA Department Meeting, Friday, March 9
## 8743 GA Department Meeting, Friday, March 9
## 8744 GA Department Meeting, Friday, March 9
## 8745 GA Department Meeting, Friday, March 9
## 8746 GA Department Meeting, Friday, March 9
## 8747 GA Department Meeting, Friday, March 9
## 8748 GA Department Meeting, Friday, March 9
## 8749 GA Department Meeting, Friday, March 9
## 8750 GA Department Meeting, Friday, March 9
## 8751 GA Department Meeting, Friday, March 9
## 8752 GA Department Meeting, Friday, March 9
## 8753 GA Department Meeting, Friday, March 9
## 8754 GA Department Meeting, Friday, March 9
## 8755 ADR Provision for RTO West Tariff
## 8756 ADR Provision for RTO West Tariff
## 8757 ADR Provision for RTO West Tariff
## 8758 ADR Provision for RTO West Tariff
## 8759 ADR Provision for RTO West Tariff
## 8760 ADR Provision for RTO West Tariff
## 8761 ADR Provision for RTO West Tariff
## 8762 ADR Provision for RTO West Tariff
## 8763 ADR Provision for RTO West Tariff
## 8764 ADR Provision for RTO West Tariff
## 8765 ADR Provision for RTO West Tariff
## 8766 ADR Provision for RTO West Tariff
## 8767 ADR Provision for RTO West Tariff
## 8768 Re: InPower-type filings
## 8769 Re: InPower-type filings
## 8770 Re: InPower-type filings
## 8771 Re: InPower-type filings
## 8772 Re: InPower-type filings
## 8773 Re: InPower-type filings
## 8774 Re: A Request to Talk to One of our Customers
## 8775 Re: A Request to Talk to One of our Customers
## 8776 Re: A Request to Talk to One of our Customers
## 8777 Re: A Request to Talk to One of our Customers
## 8778 Re: A Request to Talk to One of our Customers
## 8779 IOA and SWOASIS Link
## 8780 IOA and SWOASIS Link
## 8781 IOA and SWOASIS Link
## 8782 Interconnection in Arizona
## 8783 Interconnection in Arizona
## 8784 Interconnection in Arizona
## 8785 CAISO Notice: Request for Cost Information for all Sales over $25\t0 and $150 Soft Caps Issued Under ISO s MMIP
## 8786 Electricity Market Design Workshops
## 8787 Electricity Market Design Workshops
## 8788 Electricity Market Design Workshops
## 8789 Local Enpower Deal Blotter Issue
## 8790 Local Enpower Deal Blotter Issue
## 8791 Local Enpower Deal Blotter Issue
## 8792 Local Enpower Deal Blotter Issue
## 8793 Local Enpower Deal Blotter Issue
## 8794 Local Enpower Deal Blotter Issue
## 8795 Local Enpower Deal Blotter Issue
## 8796 Local Enpower Deal Blotter Issue
## 8797 Local Enpower Deal Blotter Issue
## 8798 Local Enpower Deal Blotter Issue
## 8799 Local Enpower Deal Blotter Issue
## 8800 Live Jazz Tonight and the rest of March
## 8801 Re: Regional Structurers
## 8802 Re: Regional Structurers
## 8803 Re: Regional Structurers
## 8804 Re: Regional Structurers
## 8805 Re: Regional Structurers
## 8806 Re: Regional Structurers
## 8807 Re: Regional Structurers
## 8808 Re: Regional Structurers
## 8809 Re: Regional Structurers
## 8810 Re: Regional Structurers
## 8811 Re: Regional Structurers
## 8812 Re: Regional Structurers
## 8813 Re: Regional Structurers
## 8814 Re: Regional Structurers
## 8815 Re: Regional Structurers
## 8816 Re: Regional Structurers
## 8817 Re: Regional Structurers
## 8818 Re: Regional Structurers
## 8819 Re: Regional Structurers
## 8820 Re: Regional Structurers
## 8821 Re: Regional Structurers
## 8822 Re: Regional Structurers
## 8823 Re: Regional Structurers
## 8824 Re: APS and Enron
## 8825 Re: APS and Enron
## 8826 Re: APS and Enron
## 8827 Re: APS and Enron
## 8828 Re: APS and Enron
## 8829 Re: APS and Enron
## 8830 Re: APS and Enron
## 8831 Re: APS and Enron
## 8832 Re: APS and Enron
## 8833 Re: APS and Enron
## 8834 Re: APS and Enron
## 8835 Re: APS and Enron
## 8836 Re: APS and Enron
## 8837 Re: APS and Enron
## 8838 Re: APS and Enron
## 8839 Re: APS and Enron
## 8840 Kevin s RTO Ideas for East
## 8841 Kevin s RTO Ideas for East
## 8842 Kevin s RTO Ideas for East
## 8843 Kevin s RTO Ideas for East
## 8844 Kevin s RTO Ideas for East
## 8845 Kevin s RTO Ideas for East
## 8846 Kevin s RTO Ideas for East
## 8847 Kevin s RTO Ideas for East
## 8848 Kevin s RTO Ideas for East
## 8849 Kevin s RTO Ideas for East
## 8850 Kevin s RTO Ideas for East
## 8851 Kevin s RTO Ideas for East
## 8852 Kevin s RTO Ideas for East
## 8853 Kevin s RTO Ideas for East
## 8854 Kevin s RTO Ideas for East
## 8855 Kevin s RTO Ideas for East
## 8856 Kevin s RTO Ideas for East
## 8857 Kevin s RTO Ideas for East
## 8858 Kevin s RTO Ideas for East
## 8859 Kevin s RTO Ideas for East
## 8860 Kevin s RTO Ideas for East
## 8861 Kevin s RTO Ideas for East
## 8862 Kevin s RTO Ideas for East
## 8863 Kevin s RTO Ideas for East
## 8864 Kevin s RTO Ideas for East
## 8865 Kevin s RTO Ideas for East
## 8866 Kevin s RTO Ideas for East
## 8867 Kevin s RTO Ideas for East
## 8868 Kevin s RTO Ideas for East
## 8869 Kevin s RTO Ideas for East
## 8870 Kevin s RTO Ideas for East
## 8871 Kevin s RTO Ideas for East
## 8872 Kevin s RTO Ideas for East
## 8873 Kevin s RTO Ideas for East
## 8874 Kevin s RTO Ideas for East
## 8875 Kevin s RTO Ideas for East
## 8876 Kevin s RTO Ideas for East
## 8877 Kevin s RTO Ideas for East
## 8878 Kevin s RTO Ideas for East
## 8879 Kevin s RTO Ideas for East
## 8880 Kevin s RTO Ideas for East
## 8881 Kevin s RTO Ideas for East
## 8882 Kevin s RTO Ideas for East
## 8883 Kevin s RTO Ideas for East
## 8884 Kevin s RTO Ideas for East
## 8885 Kevin s RTO Ideas for East
## 8886 Kevin s RTO Ideas for East
## 8887 Kevin s RTO Ideas for East
## 8888 Kevin s RTO Ideas for East
## 8889 Kevin s RTO Ideas for East
## 8890 Kevin s RTO Ideas for East
## 8891 Kevin s RTO Ideas for East
## 8892 Kevin s RTO Ideas for East
## 8893 Kevin s RTO Ideas for East
## 8894 Kevin s RTO Ideas for East
## 8895 Kevin s RTO Ideas for East
## 8896 Kevin s RTO Ideas for East
## 8897 Kevin s RTO Ideas for East
## 8898 Kevin s RTO Ideas for East
## 8899 Kevin s RTO Ideas for East
## 8900 Kevin s RTO Ideas for East
## 8901 Kevin s RTO Ideas for East
## 8902 Kevin s RTO Ideas for East
## 8903 Kevin s RTO Ideas for East
## 8904 Kevin s RTO Ideas for East
## 8905 Kevin s RTO Ideas for East
## 8906 Kevin s RTO Ideas for East
## 8907 Kevin s RTO Ideas for East
## 8908 Kevin s RTO Ideas for East
## 8909 Kevin s RTO Ideas for East
## 8910 Kevin s RTO Ideas for East
## 8911 Kevin s RTO Ideas for East
## 8912 Kevin s RTO Ideas for East
## 8913 Kevin s RTO Ideas for East
## 8914 Kevin s RTO Ideas for East
## 8915 Kevin s RTO Ideas for East
## 8916 Kevin s RTO Ideas for East
## 8917 Kevin s RTO Ideas for East
## 8918 Kevin s RTO Ideas for East
## 8919 Kevin s RTO Ideas for East
## 8920 Kevin s RTO Ideas for East
## 8921 Kevin s RTO Ideas for East
## 8922 Kevin s RTO Ideas for East
## 8923 Kevin s RTO Ideas for East
## 8924 Kevin s RTO Ideas for East
## 8925 Kevin s RTO Ideas for East
## 8926 Kevin s RTO Ideas for East
## 8927 Kevin s RTO Ideas for East
## 8928 Kevin s RTO Ideas for East
## 8929 Kevin s RTO Ideas for East
## 8930 Kevin s RTO Ideas for East
## 8931 Kevin s RTO Ideas for East
## 8932 Kevin s RTO Ideas for East
## 8933 Lobbying Questionnaire Clarification
## 8934 Lobbying Questionnaire Clarification
## 8935 Lobbying Questionnaire Clarification
## 8936 Lobbying Questionnaire Clarification
## 8937 Lobbying Questionnaire Clarification
## 8938 Lobbying Questionnaire Clarification
## 8939 Lobbying Questionnaire Clarification
## 8940 Lobbying Questionnaire Clarification
## 8941 Lobbying Questionnaire Clarification
## 8942 Lobbying Questionnaire Clarification
## 8943 Lobbying Questionnaire Clarification
## 8944 Lobbying Questionnaire Clarification
## 8945 Lobbying Questionnaire Clarification
## 8946 Lobbying Questionnaire Clarification
## 8947 Lobbying Questionnaire Clarification
## 8948 Lobbying Questionnaire Clarification
## 8949 Lobbying Questionnaire Clarification
## 8950 Lobbying Questionnaire Clarification
## 8951 Lobbying Questionnaire Clarification
## 8952 Lobbying Questionnaire Clarification
## 8953 Lobbying Questionnaire Clarification
## 8954 Lobbying Questionnaire Clarification
## 8955 Lobbying Questionnaire Clarification
## 8956 Lobbying Questionnaire Clarification
## 8957 Lobbying Questionnaire Clarification
## 8958 Lobbying Questionnaire Clarification
## 8959 Lobbying Questionnaire Clarification
## 8960 Lobbying Questionnaire Clarification
## 8961 Lobbying Questionnaire Clarification
## 8962 Lobbying Questionnaire Clarification
## 8963 Lobbying Questionnaire Clarification
## 8964 Lobbying Questionnaire Clarification
## 8965 Lobbying Questionnaire Clarification
## 8966 Lobbying Questionnaire Clarification
## 8967 Lobbying Questionnaire Clarification
## 8968 Lobbying Questionnaire Clarification
## 8969 Lobbying Questionnaire Clarification
## 8970 Lobbying Questionnaire Clarification
## 8971 Lobbying Questionnaire Clarification
## 8972 Lobbying Questionnaire Clarification
## 8973 Lobbying Questionnaire Clarification
## 8974 Lobbying Questionnaire Clarification
## 8975 Lobbying Questionnaire Clarification
## 8976 Lobbying Questionnaire Clarification
## 8977 Lobbying Questionnaire Clarification
## 8978 Lobbying Questionnaire Clarification
## 8979 Lobbying Questionnaire Clarification
## 8980 Lobbying Questionnaire Clarification
## 8981 Lobbying Questionnaire Clarification
## 8982 Lobbying Questionnaire Clarification
## 8983 Lobbying Questionnaire Clarification
## 8984 Lobbying Questionnaire Clarification
## 8985 Lobbying Questionnaire Clarification
## 8986 Lobbying Questionnaire Clarification
## 8987 Lobbying Questionnaire Clarification
## 8988 Lobbying Questionnaire Clarification
## 8989 Lobbying Questionnaire Clarification
## 8990 Lobbying Questionnaire Clarification
## 8991 Lobbying Questionnaire Clarification
## 8992 Lobbying Questionnaire Clarification
## 8993 Lobbying Questionnaire Clarification
## 8994 Lobbying Questionnaire Clarification
## 8995 Lobbying Questionnaire Clarification
## 8996 Lobbying Questionnaire Clarification
## 8997 Lobbying Questionnaire Clarification
## 8998 Lobbying Questionnaire Clarification
## 8999 Lobbying Questionnaire Clarification
## 9000 Lobbying Questionnaire Clarification
## 9001 Lobbying Questionnaire Clarification
## 9002 Lobbying Questionnaire Clarification
## 9003 Lobbying Questionnaire Clarification
## 9004 Lobbying Questionnaire Clarification
## 9005 Lobbying Questionnaire Clarification
## 9006 Lobbying Questionnaire Clarification
## 9007 Lobbying Questionnaire Clarification
## 9008 Lobbying Questionnaire Clarification
## 9009 Lobbying Questionnaire Clarification
## 9010 Lobbying Questionnaire Clarification
## 9011 Lobbying Questionnaire Clarification
## 9012 Lobbying Questionnaire Clarification
## 9013 Lobbying Questionnaire Clarification
## 9014 Lobbying Questionnaire Clarification
## 9015 Lobbying Questionnaire Clarification
## 9016 Lobbying Questionnaire Clarification
## 9017 Lobbying Questionnaire Clarification
## 9018 ADR Options
## 9019 ADR Options
## 9020 ADR Options
## 9021 ADR Options
## 9022 ADR Options
## 9023 ADR Options
## 9024 ADR Options
## 9025 ADR Options
## 9026 ADR Options
## 9027 ADR Options
## 9028 ADR Options
## 9029 ADR Options
## 9030 ADR Options
## 9031 ADR Options
## 9032 ADR Options
## 9033 ADR Options
## 9034 ADR Options
## 9035 Re: Response to ISO Report -- CALM DOWN
## 9036 Re: Response to ISO Report -- CALM DOWN
## 9037 Re: Response to ISO Report -- CALM DOWN
## 9038 Re: Response to ISO Report -- CALM DOWN
## 9039 Re: Response to ISO Report -- CALM DOWN
## 9040 Re: Response to ISO Report -- CALM DOWN
## 9041 Re: Response to ISO Report -- CALM DOWN
## 9042 Re: Response to ISO Report -- CALM DOWN
## 9043 Re: Response to ISO Report -- CALM DOWN
## 9044 Re: Response to ISO Report -- CALM DOWN
## 9045 Re: Response to ISO Report -- CALM DOWN
## 9046 Re: Response to ISO Report -- CALM DOWN
## 9047 Re: Response to ISO Report -- CALM DOWN
## 9048 Re: Response to ISO Report -- CALM DOWN
## 9049 Re: Response to ISO Report -- CALM DOWN
## 9050 Re: Response to ISO Report -- CALM DOWN
## 9051 Re: Response to ISO Report -- CALM DOWN
## 9052 Re: Response to ISO Report -- CALM DOWN
## 9053 Re: Response to ISO Report -- CALM DOWN
## 9054 Re: Response to ISO Report -- CALM DOWN
## 9055 Re: Response to ISO Report -- CALM DOWN
## 9056 Re: Response to ISO Report -- CALM DOWN
## 9057 Re: Response to ISO Report -- CALM DOWN
## 9058 Re: Response to ISO Report -- CALM DOWN
## 9059 Re: Response to ISO Report -- CALM DOWN
## 9060 Re: Response to ISO Report -- CALM DOWN
## 9061 Re: Response to ISO Report -- CALM DOWN
## 9062 Re: Response to ISO Report -- CALM DOWN
## 9063 Re: Response to ISO Report -- CALM DOWN
## 9064 Re: Response to ISO Report -- CALM DOWN
## 9065 Re: Response to ISO Report -- CALM DOWN
## 9066 Re: Response to ISO Report -- CALM DOWN
## 9067 Re: Response to ISO Report -- CALM DOWN
## 9068 Re: Response to ISO Report -- CALM DOWN
## 9069 Re: Response to ISO Report -- CALM DOWN
## 9070 Re: Response to ISO Report -- CALM DOWN
## 9071 Re: Response to ISO Report -- CALM DOWN
## 9072 Re: Response to ISO Report -- CALM DOWN
## 9073 Re: Response to ISO Report -- CALM DOWN
## 9074 Re: Response to ISO Report -- CALM DOWN
## 9075 Re: Response to ISO Report -- CALM DOWN
## 9076 Re: Response to ISO Report -- CALM DOWN
## 9077 Re: Response to ISO Report -- CALM DOWN
## 9078 Re: Response to ISO Report -- CALM DOWN
## 9079 Re: Response to ISO Report -- CALM DOWN
## 9080 Re: Response to ISO Report -- CALM DOWN
## 9081 Re: Response to ISO Report -- CALM DOWN
## 9082 Re: Response to ISO Report -- CALM DOWN
## 9083 Re: Response to ISO Report -- CALM DOWN
## 9084 Re: Response to ISO Report -- CALM DOWN
## 9085 Re: Response to ISO Report -- CALM DOWN
## 9086 Re: Response to ISO Report -- CALM DOWN
## 9087 Re: Response to ISO Report -- CALM DOWN
## 9088 Re: Response to ISO Report -- CALM DOWN
## 9089 Re: Response to ISO Report -- CALM DOWN
## 9090 Re: Response to ISO Report -- CALM DOWN
## 9091 Re: Response to ISO Report -- CALM DOWN
## 9092 Re: Response to ISO Report -- CALM DOWN
## 9093 Re: Response to ISO Report -- CALM DOWN
## 9094 Re: Response to ISO Report -- CALM DOWN
## 9095 Re: Response to ISO Report -- CALM DOWN
## 9096 Re: Response to ISO Report -- CALM DOWN
## 9097 Re: Response to ISO Report -- CALM DOWN
## 9098 Re: Response to ISO Report -- CALM DOWN
## 9099 Re: Response to ISO Report -- CALM DOWN
## 9100 Re: Response to ISO Report -- CALM DOWN
## 9101 Re: Response to ISO Report -- CALM DOWN
## 9102 Re: Response to ISO Report -- CALM DOWN
## 9103 Re: Response to ISO Report -- CALM DOWN
## 9104 Re: Response to ISO Report -- CALM DOWN
## 9105 Re: Response to ISO Report -- CALM DOWN
## 9106 Re: Response to ISO Report -- CALM DOWN
## 9107 Re: Response to ISO Report -- CALM DOWN
## 9108 Re: Response to ISO Report -- CALM DOWN
## 9109 Re: Response to ISO Report -- CALM DOWN
## 9110 Re: Response to ISO Report -- CALM DOWN
## 9111 Re: Response to ISO Report -- CALM DOWN
## 9112 Re: Response to ISO Report -- CALM DOWN
## 9113 Re: Response to ISO Report -- CALM DOWN
## 9114 Re: Response to ISO Report -- CALM DOWN
## 9115 Re: Response to ISO Report -- CALM DOWN
## 9116 Re: Response to ISO Report -- CALM DOWN
## 9117 Re: Response to ISO Report -- CALM DOWN
## 9118 Re: Response to ISO Report -- CALM DOWN
## 9119 Re: Response to ISO Report -- CALM DOWN
## 9120 Re: Response to ISO Report -- CALM DOWN
## 9121 Re: Response to ISO Report -- CALM DOWN
## 9122 Re: Response to ISO Report -- CALM DOWN
## 9123 Re: Response to ISO Report -- CALM DOWN
## 9124 Re: Response to ISO Report -- CALM DOWN
## 9125 Re: Response to ISO Report -- CALM DOWN
## 9126 RTO filings on CD rom
## 9127 RTO filings on CD rom
## 9128 RTO filings on CD rom
## 9129 RTO filings on CD rom
## 9130 RTO filings on CD rom
## 9131 RTO filings on CD rom
## 9132 RTO filings on CD rom
## 9133 RTO filings on CD rom
## 9134 RTO filings on CD rom
## 9135 RTO filings on CD rom
## 9136 RTO filings on CD rom
## 9137 RTO filings on CD rom
## 9138 RTO filings on CD rom
## 9139 RTO filings on CD rom
## 9140 RTO filings on CD rom
## 9141 RTO filings on CD rom
## 9142 RTO filings on CD rom
## 9143 RTO filings on CD rom
## 9144 RTO filings on CD rom
## 9145 RTO filings on CD rom
## 9146 RTO filings on CD rom
## 9147 RTO filings on CD rom
## 9148 RTO filings on CD rom
## 9149 Re: Response to ISO Report -- CALM DOWN
## 9150 Re: Response to ISO Report -- CALM DOWN
## 9151 Re: Response to ISO Report -- CALM DOWN
## 9152 Re: Response to ISO Report -- CALM DOWN
## 9153 Re: Response to ISO Report -- CALM DOWN
## 9154 Re: Response to ISO Report -- CALM DOWN
## 9155 Re: Response to ISO Report -- CALM DOWN
## 9156 Re: Response to ISO Report -- CALM DOWN
## 9157 Re: Response to ISO Report -- CALM DOWN
## 9158 Re: Response to ISO Report -- CALM DOWN
## 9159 Re: Response to ISO Report -- CALM DOWN
## 9160 Re: Response to ISO Report -- CALM DOWN
## 9161 Re: Response to ISO Report -- CALM DOWN
## 9162 Re: Response to ISO Report -- CALM DOWN
## 9163 Re: Response to ISO Report -- CALM DOWN
## 9164 Re: Response to ISO Report -- CALM DOWN
## 9165 Re: Response to ISO Report -- CALM DOWN
## 9166 Re: Response to ISO Report -- CALM DOWN
## 9167 Re: Response to ISO Report -- CALM DOWN
## 9168 Re: Response to ISO Report -- CALM DOWN
## 9169 Re: Response to ISO Report -- CALM DOWN
## 9170 Re: Response to ISO Report -- CALM DOWN
## 9171 Re: Response to ISO Report -- CALM DOWN
## 9172 Re: Response to ISO Report -- CALM DOWN
## 9173 Re: Response to ISO Report -- CALM DOWN
## 9174 Re: Response to ISO Report -- CALM DOWN
## 9175 Re: Response to ISO Report -- CALM DOWN
## 9176 Re: Response to ISO Report -- CALM DOWN
## 9177 Re: Response to ISO Report -- CALM DOWN
## 9178 Re: Response to ISO Report -- CALM DOWN
## 9179 Re: Response to ISO Report -- CALM DOWN
## 9180 Re: Response to ISO Report -- CALM DOWN
## 9181 Re: Response to ISO Report -- CALM DOWN
## 9182 Re: Response to ISO Report -- CALM DOWN
## 9183 Re: Response to ISO Report -- CALM DOWN
## 9184 Re: Response to ISO Report -- CALM DOWN
## 9185 Re: Response to ISO Report -- CALM DOWN
## 9186 Re: Response to ISO Report -- CALM DOWN
## 9187 Re: Response to ISO Report -- CALM DOWN
## 9188 Re: Response to ISO Report -- CALM DOWN
## 9189 Re: Response to ISO Report -- CALM DOWN
## 9190 Re: Response to ISO Report -- CALM DOWN
## 9191 Re: Response to ISO Report -- CALM DOWN
## 9192 Re: Response to ISO Report -- CALM DOWN
## 9193 Re: Response to ISO Report -- CALM DOWN
## 9194 Re: Response to ISO Report -- CALM DOWN
## 9195 Re: Response to ISO Report -- CALM DOWN
## 9196 Re: Response to ISO Report -- CALM DOWN
## 9197 Re: Response to ISO Report -- CALM DOWN
## 9198 Re: Response to ISO Report -- CALM DOWN
## 9199 Re: Response to ISO Report -- CALM DOWN
## 9200 Re: Response to ISO Report -- CALM DOWN
## 9201 Re: Response to ISO Report -- CALM DOWN
## 9202 Re: Response to ISO Report -- CALM DOWN
## 9203 Re: Response to ISO Report -- CALM DOWN
## 9204 Re: Response to ISO Report -- CALM DOWN
## 9205 Re: Response to ISO Report -- CALM DOWN
## 9206 Re: Response to ISO Report -- CALM DOWN
## 9207 Re: Response to ISO Report -- CALM DOWN
## 9208 Re: Response to ISO Report -- CALM DOWN
## 9209 Re: Response to ISO Report -- CALM DOWN
## 9210 Re: Response to ISO Report -- CALM DOWN
## 9211 Re: Response to ISO Report -- CALM DOWN
## 9212 Re: Response to ISO Report -- CALM DOWN
## 9213 Re: Response to ISO Report -- CALM DOWN
## 9214 Re: Response to ISO Report -- CALM DOWN
## 9215 Re: Response to ISO Report -- CALM DOWN
## 9216 Re: Response to ISO Report -- CALM DOWN
## 9217 Re: Response to ISO Report -- CALM DOWN
## 9218 Re: Response to ISO Report -- CALM DOWN
## 9219 Re: Response to ISO Report -- CALM DOWN
## 9220 Re: Response to ISO Report -- CALM DOWN
## 9221 Re: Response to ISO Report -- CALM DOWN
## 9222 Re: Response to ISO Report -- CALM DOWN
## 9223 Re: Response to ISO Report -- CALM DOWN
## 9224 Re: Response to ISO Report -- CALM DOWN
## 9225 Re: Response to ISO Report -- CALM DOWN
## 9226 Re: Response to ISO Report -- CALM DOWN
## 9227 Re: Response to ISO Report -- CALM DOWN
## 9228 Re: Response to ISO Report -- CALM DOWN
## 9229 Re: Response to ISO Report -- CALM DOWN
## 9230 Re: Response to ISO Report -- CALM DOWN
## 9231 Re: Response to ISO Report -- CALM DOWN
## 9232 Re: Response to ISO Report -- CALM DOWN
## 9233 Re: Response to ISO Report -- CALM DOWN
## 9234 Re: Response to ISO Report -- CALM DOWN
## 9235 Re: Response to ISO Report -- CALM DOWN
## 9236 Re: Response to ISO Report -- CALM DOWN
## 9237 Re: Response to ISO Report -- CALM DOWN
## 9238 Re: Response to ISO Report -- CALM DOWN
## 9239 CAISO NOTICE: Date change for March 9th Stakeholder Meeting....
## 9240 Revised ADR Provision Options
## 9241 Revised ADR Provision Options
## 9242 Revised ADR Provision Options
## 9243 Revised ADR Provision Options
## 9244 Revised ADR Provision Options
## 9245 Revised ADR Provision Options
## 9246 Revised ADR Provision Options
## 9247 Revised ADR Provision Options
## 9248 Revised ADR Provision Options
## 9249 Revised ADR Provision Options
## 9250 Revised ADR Provision Options
## 9251 Revised ADR Provision Options
## 9252 Revised ADR Provision Options
## 9253 Revised ADR Provision Options
## 9254 Revised ADR Provision Options
## 9255 Revised ADR Provision Options
## 9256 Revised ADR Provision Options
## 9257 Draft Letter to ISO
## 9258 Draft Letter to ISO
## 9259 Draft Letter to ISO
## 9260 Draft Letter to ISO
## 9261 Draft Letter to ISO
## 9262 Draft Letter to ISO
## 9263 Re: ENA Government Affairs Report - March 2001
## 9264 CAISO Notification: Operations Procedures E-501, E-502, E-503 and\t E-508 - Posting for Affected Party Review
## 9265 CAISO Notification: Operations Procedures E-501, E-502, E-503 and\t E-508 - Posting for Affected Party Review
## 9266 CAISO Notification: Operations Procedures E-501, E-502, E-503 and\t E-508 - Posting for Affected Party Review
## 9267 CAISO Notification: Operations Procedures E-501, E-502, E-503 and\t E-508 - Posting for Affected Party Review
## 9268 CAISO Notification: Operations Procedures E-501, E-502, E-503 and\t E-508 - Posting for Affected Party Review
## 9269 Web Based Expense Report Implementation Deadline
## 9270 EnronOptions Update!
## 9271 UtilityHQ.com - Your Source For Latest Jobs and Information for Electric Power Industry Professionals
## 9272 [Fwd: Comments on 022801 Draft of DSTAR Market Monitoring Appendix]
## 9273 [Fwd: Comments on 022801 Draft of DSTAR Market Monitoring Appendix]
## 9274 [Fwd: Comments on 022801 Draft of DSTAR Market Monitoring Appendix]
## 9275 Executive Order D-23-01 - Outage Coordination
## 9276 WSCC E-Tag Compliance
## 9277 WSCC E-Tag Compliance
## 9278 WSCC E-Tag Compliance
## 9279 WSCC E-Tag Compliance
## 9280 WSCC E-Tag Compliance
## 9281 CAISO Notice - New Facility Interconnection Policy
## 9282 Ed Baughman heads Midwest and NE
## 9283 Ed Baughman heads Midwest and NE
## 9284 Ed Baughman heads Midwest and NE
## 9285 Ed Baughman heads Midwest and NE
## 9286 Ed Baughman heads Midwest and NE
## 9287 Ed Baughman heads Midwest and NE
## 9288 Ed Baughman heads Midwest and NE
## 9289 Ed Baughman heads Midwest and NE
## 9290 Ed Baughman heads Midwest and NE
## 9291 Ed Baughman heads Midwest and NE
## 9292 Ed Baughman heads Midwest and NE
## 9293 Ed Baughman heads Midwest and NE
## 9294 Ed Baughman heads Midwest and NE
## 9295 Ed Baughman heads Midwest and NE
## 9296 Ed Baughman heads Midwest and NE
## 9297 Ed Baughman heads Midwest and NE
## 9298 Ed Baughman heads Midwest and NE
## 9299 Ed Baughman heads Midwest and NE
## 9300 Ed Baughman heads Midwest and NE
## 9301 Ed Baughman heads Midwest and NE
## 9302 Ed Baughman heads Midwest and NE
## 9303 Ed Baughman heads Midwest and NE
## 9304 Ed Baughman heads Midwest and NE
## 9305 Ed Baughman heads Midwest and NE
## 9306 Ed Baughman heads Midwest and NE
## 9307 Ed Baughman heads Midwest and NE
## 9308 Ed Baughman heads Midwest and NE
## 9309 Public Service Company of New Mexico v. CalPX
## 9310 Public Service Company of New Mexico v. CalPX
## 9311 Public Service Company of New Mexico v. CalPX
## 9312 Public Service Company of New Mexico v. CalPX
## 9313 Public Service Company of New Mexico v. CalPX
## 9314 Public Service Company of New Mexico v. CalPX
## 9315 Public Service Company of New Mexico v. CalPX
## 9316 CAISO Notice - Market Stabilization Proposal - Conference Call
## 9317 CAISO Notice - Disbursement of Funds for December Invoice
## 9318 Conference Call on FTC Request for Comments on Retail\tCompetition
## 9319 Conference Call on FTC Request for Comments on Retail\tCompetition
## 9320 Conference Call on FTC Request for Comments on Retail\tCompetition
## 9321 Conference Call on FTC Request for Comments on Retail\tCompetition
## 9322 Conference Call on FTC Request for Comments on Retail\tCompetition
## 9323 Conference Call on FTC Request for Comments on Retail\tCompetition
## 9324 Conference Call on FTC Request for Comments on Retail\tCompetition
## 9325 Conference Call on FTC Request for Comments on Retail\tCompetition
## 9326 Conference Call on FTC Request for Comments on Retail\tCompetition
## 9327 Conference Call on FTC Request for Comments on Retail\tCompetition
## 9328 Conference Call on FTC Request for Comments on Retail\tCompetition
## 9329 Conference Call on FTC Request for Comments on Retail\tCompetition
## 9330 Enpower Deal Entry Changes
## 9331 Enpower Deal Entry Changes
## 9332 Enpower Deal Entry Changes
## 9333 Enpower Deal Entry Changes
## 9334 Enpower Deal Entry Changes
## 9335 Enpower Deal Entry Changes
## 9336 Enpower Deal Entry Changes
## 9337 Enpower Deal Entry Changes
## 9338 Enpower Deal Entry Changes
## 9339 Enpower Deal Entry Changes
## 9340 Enpower Deal Entry Changes
## 9341 Enpower Deal Entry Changes
## 9342 Enpower Deal Entry Changes
## 9343 Enpower Deal Entry Changes
## 9344 Enpower Deal Entry Changes
## 9345 Enpower Deal Entry Changes
## 9346 Enpower Deal Entry Changes
## 9347 Enpower Deal Entry Changes
## 9348 Enpower Deal Entry Changes
## 9349 Enpower Deal Entry Changes
## 9350 Enpower Deal Entry Changes
## 9351 Enpower Deal Entry Changes
## 9352 Enpower Deal Entry Changes
## 9353 Enpower Deal Entry Changes
## 9354 Enpower Deal Entry Changes
## 9355 Enpower Deal Entry Changes
## 9356 Enpower Deal Entry Changes
## 9357 Enpower Deal Entry Changes
## 9358 Enpower Deal Entry Changes
## 9359 Enpower Deal Entry Changes
## 9360 Enpower Deal Entry Changes
## 9361 Enpower Deal Entry Changes
## 9362 Enpower Deal Entry Changes
## 9363 Enpower Deal Entry Changes
## 9364 Enpower Deal Entry Changes
## 9365 Enpower Deal Entry Changes
## 9366 Enpower Deal Entry Changes
## 9367 Enpower Deal Entry Changes
## 9368 Enpower Deal Entry Changes
## 9369 Enpower Deal Entry Changes
## 9370 Enpower Deal Entry Changes
## 9371 Enpower Deal Entry Changes
## 9372 Enpower Deal Entry Changes
## 9373 Enpower Deal Entry Changes
## 9374 Enpower Deal Entry Changes
## 9375 Enpower Deal Entry Changes
## 9376 Enpower Deal Entry Changes
## 9377 Enpower Deal Entry Changes
## 9378 Enpower Deal Entry Changes
## 9379 Enpower Deal Entry Changes
## 9380 Enpower Deal Entry Changes
## 9381 Enpower Deal Entry Changes
## 9382 Enpower Deal Entry Changes
## 9383 Enpower Deal Entry Changes
## 9384 Enpower Deal Entry Changes
## 9385 Enpower Deal Entry Changes
## 9386 Enpower Deal Entry Changes
## 9387 Enpower Deal Entry Changes
## 9388 Enpower Deal Entry Changes
## 9389 Enpower Deal Entry Changes
## 9390 Enpower Deal Entry Changes
## 9391 Enpower Deal Entry Changes
## 9392 Enpower Deal Entry Changes
## 9393 Enpower Deal Entry Changes
## 9394 Enpower Deal Entry Changes
## 9395 Enpower Deal Entry Changes
## 9396 Enpower Deal Entry Changes
## 9397 Enpower Deal Entry Changes
## 9398 Enpower Deal Entry Changes
## 9399 Enpower Deal Entry Changes
## 9400 Enpower Deal Entry Changes
## 9401 Enpower Deal Entry Changes
## 9402 Enpower Deal Entry Changes
## 9403 Enpower Deal Entry Changes
## 9404 Enpower Deal Entry Changes
## 9405 Enpower Deal Entry Changes
## 9406 Enpower Deal Entry Changes
## 9407 Enpower Deal Entry Changes
## 9408 Enpower Deal Entry Changes
## 9409 Enpower Deal Entry Changes
## 9410 Enpower Deal Entry Changes
## 9411 Enpower Deal Entry Changes
## 9412 Enpower Deal Entry Changes
## 9413 Enpower Deal Entry Changes
## 9414 Enpower Deal Entry Changes
## 9415 Enpower Deal Entry Changes
## 9416 Enpower Deal Entry Changes
## 9417 Enpower Deal Entry Changes
## 9418 Enpower Deal Entry Changes
## 9419 Enpower Deal Entry Changes
## 9420 Enpower Deal Entry Changes
## 9421 Enpower Deal Entry Changes
## 9422 Enpower Deal Entry Changes
## 9423 Enpower Deal Entry Changes
## 9424 Enpower Deal Entry Changes
## 9425 Enpower Deal Entry Changes
## 9426 Enpower Deal Entry Changes
## 9427 Enpower Deal Entry Changes
## 9428 Enpower Deal Entry Changes
## 9429 Enpower Deal Entry Changes
## 9430 Enpower Deal Entry Changes
## 9431 Enpower Deal Entry Changes
## 9432 Enpower Deal Entry Changes
## 9433 Enpower Deal Entry Changes
## 9434 Enpower Deal Entry Changes
## 9435 Enpower Deal Entry Changes
## 9436 Enpower Deal Entry Changes
## 9437 Enpower Deal Entry Changes
## 9438 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9439 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9440 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9441 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9442 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9443 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9444 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9445 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9446 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9447 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9448 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9449 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9450 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9451 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9452 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9453 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9454 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9455 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9456 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9457 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9458 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9459 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9460 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9461 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9462 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9463 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9464 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9465 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9466 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9467 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9468 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9469 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9470 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9471 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9472 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9473 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9474 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9475 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9476 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9477 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9478 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9479 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9480 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9481 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9482 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9483 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9484 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9485 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9486 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9487 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9488 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9489 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9490 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9491 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9492 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9493 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9494 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9495 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9496 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9497 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9498 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9499 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9500 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9501 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9502 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9503 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9504 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9505 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9506 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9507 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9508 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9509 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9510 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9511 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9512 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9513 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9514 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9515 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9516 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9517 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9518 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9519 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9520 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9521 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9522 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9523 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9524 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9525 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9526 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9527 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9528 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9529 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9530 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9531 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9532 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9533 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9534 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9535 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9536 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9537 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9538 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9539 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9540 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9541 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9542 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9543 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9544 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9545 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9546 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9547 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9548 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9549 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9550 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9551 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9552 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9553 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9554 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9555 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9556 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9557 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9558 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9559 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9560 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9561 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9562 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9563 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9564 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9565 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9566 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9567 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9568 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9569 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9570 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9571 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9572 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9573 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9574 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9575 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9576 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9577 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9578 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9579 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9580 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9581 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9582 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9583 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9584 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9585 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9586 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9587 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9588 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9589 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9590 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9591 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9592 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9593 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9594 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9595 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9596 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9597 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9598 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9599 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9600 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9601 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9602 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9603 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9604 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9605 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9606 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9607 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9608 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9609 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9610 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9611 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9612 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9613 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9614 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9615 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9616 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9617 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9618 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9619 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9620 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9621 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9622 CAISO Notice - Discretionary Load Curtailment Program Market Noti\tce
## 9623 CAISO Notification - Recent occurrences of missing PMI Informatio\tn
## 9624 CAISO Notification - Recent occurrences of missing PMI Informatio\tn
## 9625 CAISO Notification - Recent occurrences of missing PMI Informatio\tn
## 9626 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9627 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9628 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9629 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9630 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9631 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9632 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9633 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9634 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9635 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9636 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9637 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9638 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9639 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9640 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9641 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9642 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9643 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9644 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9645 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9646 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9647 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9648 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9649 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9650 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9651 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9652 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9653 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9654 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9655 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9656 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9657 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9658 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9659 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9660 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9661 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9662 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9663 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9664 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9665 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9666 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9667 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9668 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9669 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9670 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9671 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9672 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9673 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9674 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9675 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9676 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9677 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9678 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9679 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9680 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9681 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9682 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9683 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9684 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9685 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9686 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9687 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9688 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9689 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9690 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9691 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9692 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9693 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9694 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9695 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9696 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9697 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9698 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9699 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9700 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9701 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9702 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9703 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9704 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9705 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9706 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9707 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9708 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9709 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9710 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9711 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9712 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9713 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9714 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9715 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9716 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9717 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9718 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9719 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9720 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9721 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9722 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9723 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9724 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9725 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9726 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9727 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9728 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9729 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9730 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9731 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9732 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9733 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9734 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9735 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9736 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9737 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9738 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9739 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9740 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9741 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9742 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9743 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9744 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9745 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9746 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9747 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9748 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9749 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9750 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9751 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9752 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9753 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9754 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9755 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9756 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9757 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9758 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9759 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9760 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9761 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 9762 Additional filing in Arizona s Int. Procedures
## 9763 Additional filing in Arizona s Int. Procedures
## 9764 Additional filing in Arizona s Int. Procedures
## 9765 CAISO NOTIFICATION - SI Server 128 Bit Encryption implementation
## 9766 CAISO NOTIFICATION - SI Server 128 Bit Encryption implementation
## 9767 CAISO NOTIFICATION - SI Server 128 Bit Encryption implementation
## 9768 CAISO NOTIFICATION - SI Server 128 Bit Encryption implementation
## 9769 Filings to buy power from industrials
## 9770 Filings to buy power from industrials
## 9771 Filings to buy power from industrials
## 9772 Filings to buy power from industrials
## 9773 Filings to buy power from industrials
## 9774 Filings to buy power from industrials
## 9775 Filings to buy power from industrials
## 9776 Filings to buy power from industrials
## 9777 Filings to buy power from industrials
## 9778 Filings to buy power from industrials
## 9779 Filings to buy power from industrials
## 9780 Filings to buy power from industrials
## 9781 Filings to buy power from industrials
## 9782 Filings to buy power from industrials
## 9783 Filings to buy power from industrials
## 9784 Filings to buy power from industrials
## 9785 Filings to buy power from industrials
## 9786 Filings to buy power from industrials
## 9787 Filings to buy power from industrials
## 9788 Filings to buy power from industrials
## 9789 Filings to buy power from industrials
## 9790 Filings to buy power from industrials
## 9791 Filings to buy power from industrials
## 9792 Filings to buy power from industrials
## 9793 Filings to buy power from industrials
## 9794 Filings to buy power from industrials
## 9795 Filings to buy power from industrials
## 9796 Filings to buy power from industrials
## 9797 Filings to buy power from industrials
## 9798 Filings to buy power from industrials
## 9799 Filings to buy power from industrials
## 9800 Filings to buy power from industrials
## 9801 Filings to buy power from industrials
## 9802 Filings to buy power from industrials
## 9803 Filings to buy power from industrials
## 9804 Filings to buy power from industrials
## 9805 Filings to buy power from industrials
## 9806 Filings to buy power from industrials
## 9807 Filings to buy power from industrials
## 9808 Filings to buy power from industrials
## 9809 Filings to buy power from industrials
## 9810 Filings to buy power from industrials
## 9811 Filings to buy power from industrials
## 9812 Filings to buy power from industrials
## 9813 Filings to buy power from industrials
## 9814 Filings to buy power from industrials
## 9815 Filings to buy power from industrials
## 9816 Filings to buy power from industrials
## 9817 Filings to buy power from industrials
## 9818 Filings to buy power from industrials
## 9819 Filings to buy power from industrials
## 9820 Filings to buy power from industrials
## 9821 Filings to buy power from industrials
## 9822 Filings to buy power from industrials
## 9823 Filings to buy power from industrials
## 9824 Filings to buy power from industrials
## 9825 Filings to buy power from industrials
## 9826 Filings to buy power from industrials
## 9827 Filings to buy power from industrials
## 9828 Filings to buy power from industrials
## 9829 Filings to buy power from industrials
## 9830 Filings to buy power from industrials
## 9831 Filings to buy power from industrials
## 9832 Filings to buy power from industrials
## 9833 Filings to buy power from industrials
## 9834 Filings to buy power from industrials
## 9835 Filings to buy power from industrials
## 9836 Filings to buy power from industrials
## 9837 Filings to buy power from industrials
## 9838 Filings to buy power from industrials
## 9839 Filings to buy power from industrials
## 9840 Filings to buy power from industrials
## 9841 Filings to buy power from industrials
## 9842 Filings to buy power from industrials
## 9843 Filings to buy power from industrials
## 9844 CAISO Notice: Posting of Generator Outages
## 9845 CAISO Notice - Draft Market Stabilization Plan
## 9846 Revised Agenda
## 9847 Revised Agenda
## 9848 Revised Agenda
## 9849 Revised Agenda
## 9850 Revised Agenda
## 9851 Revised Agenda
## 9852 Revised Agenda
## 9853 Revised Agenda
## 9854 Revised Agenda
## 9855 Revised Agenda
## 9856 Revised Agenda
## 9857 Revised Agenda
## 9858 Revised Agenda
## 9859 Revised Agenda
## 9860 Revised Agenda
## 9861 Revised Agenda
## 9862 Revised Agenda
## 9863 Revised Agenda
## 9864 Revised Agenda
## 9865 Revised Agenda
## 9866 Revised Agenda
## 9867 Revised Agenda
## 9868 Revised Agenda
## 9869 Revised Agenda
## 9870 Revised Agenda
## 9871 Revised Agenda
## 9872 Revised Agenda
## 9873 Revised Agenda
## 9874 Revised Agenda
## 9875 Revised Agenda
## 9876 Revised Agenda
## 9877 Revised Agenda
## 9878 Revised Agenda
## 9879 Revised Agenda
## 9880 Revised Agenda
## 9881 Revised Agenda
## 9882 Revised Agenda
## 9883 Revised Agenda
## 9884 Revised Agenda
## 9885 Revised Agenda
## 9886 Revised Agenda
## 9887 Revised Agenda
## 9888 Revised Agenda
## 9889 Revised Agenda
## 9890 Revised Agenda
## 9891 Revised Agenda
## 9892 Revised Agenda
## 9893 Revised Agenda
## 9894 Revised Agenda
## 9895 Revised Agenda
## 9896 Revised Agenda
## 9897 Revised Agenda
## 9898 Revised Agenda
## 9899 Revised Agenda
## 9900 Revised Agenda
## 9901 Revised Agenda
## 9902 Revised Agenda
## 9903 Revised Agenda
## 9904 Revised Agenda
## 9905 Revised Agenda
## 9906 Revised Agenda
## 9907 Revised Agenda
## 9908 Revised Agenda
## 9909 Revised Agenda
## 9910 Revised Agenda
## 9911 Revised Agenda
## 9912 Revised Agenda
## 9913 Revised Agenda
## 9914 Revised Agenda
## 9915 Revised Agenda
## 9916 Revised Agenda
## 9917 Revised Agenda
## 9918 Revised Agenda
## 9919 Revised Agenda
## 9920 Revised Agenda
## 9921 Revised Agenda
## 9922 Revised Agenda
## 9923 Revised Agenda
## 9924 Revised Agenda
## 9925 Revised Agenda
## 9926 Revised Agenda
## 9927 Revised Agenda
## 9928 Revised Agenda
## 9929 Revised Agenda
## 9930 Revised Agenda
## 9931 Revised Agenda
## 9932 Revised Agenda
## 9933 Revised Agenda
## 9934 Revised Agenda
## 9935 Revised Agenda
## 9936 Revised Agenda
## 9937 Revised Agenda
## 9938 Revised Agenda
## 9939 Revised Agenda
## 9940 Revised Agenda
## 9941 Revised Agenda
## 9942 Revised Agenda
## 9943 Revised Agenda
## 9944 Revised Agenda
## 9945 Revised Agenda
## 9946 Revised Agenda
## 9947 Revised Agenda
## 9948 Revised Agenda
## 9949 Revised Agenda
## 9950 Revised Agenda
## 9951 Revised Agenda
## 9952 Revised Agenda
## 9953 Revised Agenda
## 9954 Revised Agenda
## 9955 Revised Agenda
## 9956 Revised Agenda
## 9957 Revised Agenda
## 9958 Revised Agenda
## 9959 Revised Agenda
## 9960 Revised Agenda
## 9961 Revised Agenda
## 9962 Revised Agenda
## 9963 Revised Agenda
## 9964 Revised Agenda
## 9965 Revised Agenda
## 9966 Revised Agenda
## 9967 Revised Agenda
## 9968 Revised Agenda
## 9969 Revised Agenda
## 9970 Revised Agenda
## 9971 Revised Agenda
## 9972 Revised Agenda
## 9973 Revised Agenda
## 9974 Revised Agenda
## 9975 Revised Agenda
## 9976 Revised Agenda
## 9977 Revised Agenda
## 9978 Revised Agenda
## 9979 Revised Agenda
## 9980 Revised Agenda
## 9981 Revised Agenda
## 9982 Due Mon.Contains Cal. info--Alliance Draft
## 9983 Due Mon.Contains Cal. info--Alliance Draft
## 9984 Due Mon.Contains Cal. info--Alliance Draft
## 9985 Due Mon.Contains Cal. info--Alliance Draft
## 9986 Due Mon.Contains Cal. info--Alliance Draft
## 9987 Due Mon.Contains Cal. info--Alliance Draft
## 9988 Due Mon.Contains Cal. info--Alliance Draft
## 9989 Due Mon.Contains Cal. info--Alliance Draft
## 9990 Password Security Notice
## 9991 CAISO Notice - CDWR Workshop on Generation Resource Development
## 9992 RTO filings on FERC agenda for Wed. 3/14
## 9993 RTO filings on FERC agenda for Wed. 3/14
## 9994 RTO filings on FERC agenda for Wed. 3/14
## 9995 RTO filings on FERC agenda for Wed. 3/14
## 9996 RTO filings on FERC agenda for Wed. 3/14
## 9997 RTO filings on FERC agenda for Wed. 3/14
## 9998 RTO filings on FERC agenda for Wed. 3/14
## 9999 RTO filings on FERC agenda for Wed. 3/14
## 10000 RTO filings on FERC agenda for Wed. 3/14
## 10001 RTO filings on FERC agenda for Wed. 3/14
## 10002 RTO filings on FERC agenda for Wed. 3/14
## 10003 RTO filings on FERC agenda for Wed. 3/14
## 10004 RTO filings on FERC agenda for Wed. 3/14
## 10005 RTO filings on FERC agenda for Wed. 3/14
## 10006 RTO filings on FERC agenda for Wed. 3/14
## 10007 RTO filings on FERC agenda for Wed. 3/14
## 10008 RTO filings on FERC agenda for Wed. 3/14
## 10009 RTO filings on FERC agenda for Wed. 3/14
## 10010 RTO filings on FERC agenda for Wed. 3/14
## 10011 RTO filings on FERC agenda for Wed. 3/14
## 10012 RTO filings on FERC agenda for Wed. 3/14
## 10013 RTO filings on FERC agenda for Wed. 3/14
## 10014 RTO filings on FERC agenda for Wed. 3/14
## 10015 RTO filings on FERC agenda for Wed. 3/14
## 10016 RTO filings on FERC agenda for Wed. 3/14
## 10017 LVCOGEN 230MW (six unit) Addition Interconnection Study-Addendum \t#2
## 10018 LVCOGEN 230MW (six unit) Addition Interconnection Study-Addendum \t#2
## 10019 LVCOGEN 230MW (six unit) Addition Interconnection Study-Addendum \t#2
## 10020 LVCOGEN 230MW (six unit) Addition Interconnection Study-Addendum \t#2
## 10021 LVCOGEN 230MW (six unit) Addition Interconnection Study-Addendum \t#2
## 10022 LVCOGEN 230MW (six unit) Addition Interconnection Study-Addendum \t#2
## 10023 CAISO Notice - Distribution of Funds on December, 2000 Preliminar\ty Invoice
## 10024 CAISO Notice - Distribution of Funds on December, 2000 Preliminar\ty Invoice
## 10025 CAISO Notice - Distribution of Funds on December, 2000 Preliminar\ty Invoice
## 10026 CAISO Notice - Distribution of Funds on December, 2000 Preliminar\ty Invoice
## 10027 CAISO Notice - Distribution of Funds on December, 2000 Preliminar\ty Invoice
## 10028 Oasis Re-Design Prototype Release
## 10029 Oasis Re-Design Prototype Release
## 10030 2001 Enron Law Conference (Distribution List 4)
## 10031 2001 Enron Law Conference (Distribution List 4)
## 10032 2001 Enron Law Conference (Distribution List 4)
## 10033 2001 Enron Law Conference (Distribution List 4)
## 10034 2001 Enron Law Conference (Distribution List 4)
## 10035 2001 Enron Law Conference (Distribution List 4)
## 10036 2001 Enron Law Conference (Distribution List 4)
## 10037 2001 Enron Law Conference (Distribution List 4)
## 10038 2001 Enron Law Conference (Distribution List 4)
## 10039 2001 Enron Law Conference (Distribution List 4)
## 10040 2001 Enron Law Conference (Distribution List 4)
## 10041 2001 Enron Law Conference (Distribution List 4)
## 10042 2001 Enron Law Conference (Distribution List 4)
## 10043 2001 Enron Law Conference (Distribution List 4)
## 10044 2001 Enron Law Conference (Distribution List 4)
## 10045 2001 Enron Law Conference (Distribution List 4)
## 10046 2001 Enron Law Conference (Distribution List 4)
## 10047 2001 Enron Law Conference (Distribution List 4)
## 10048 2001 Enron Law Conference (Distribution List 4)
## 10049 2001 Enron Law Conference (Distribution List 4)
## 10050 2001 Enron Law Conference (Distribution List 4)
## 10051 2001 Enron Law Conference (Distribution List 4)
## 10052 2001 Enron Law Conference (Distribution List 4)
## 10053 2001 Enron Law Conference (Distribution List 4)
## 10054 2001 Enron Law Conference (Distribution List 4)
## 10055 2001 Enron Law Conference (Distribution List 4)
## 10056 2001 Enron Law Conference (Distribution List 4)
## 10057 2001 Enron Law Conference (Distribution List 4)
## 10058 2001 Enron Law Conference (Distribution List 4)
## 10059 2001 Enron Law Conference (Distribution List 4)
## 10060 2001 Enron Law Conference (Distribution List 4)
## 10061 2001 Enron Law Conference (Distribution List 4)
## 10062 2001 Enron Law Conference (Distribution List 4)
## 10063 2001 Enron Law Conference (Distribution List 4)
## 10064 2001 Enron Law Conference (Distribution List 4)
## 10065 2001 Enron Law Conference (Distribution List 4)
## 10066 2001 Enron Law Conference (Distribution List 4)
## 10067 2001 Enron Law Conference (Distribution List 4)
## 10068 2001 Enron Law Conference (Distribution List 4)
## 10069 2001 Enron Law Conference (Distribution List 4)
## 10070 2001 Enron Law Conference (Distribution List 4)
## 10071 2001 Enron Law Conference (Distribution List 4)
## 10072 2001 Enron Law Conference (Distribution List 4)
## 10073 2001 Enron Law Conference (Distribution List 4)
## 10074 2001 Enron Law Conference (Distribution List 4)
## 10075 2001 Enron Law Conference (Distribution List 4)
## 10076 2001 Enron Law Conference (Distribution List 4)
## 10077 2001 Enron Law Conference (Distribution List 4)
## 10078 2001 Enron Law Conference (Distribution List 4)
## 10079 2001 Enron Law Conference (Distribution List 4)
## 10080 2001 Enron Law Conference (Distribution List 4)
## 10081 2001 Enron Law Conference (Distribution List 4)
## 10082 2001 Enron Law Conference (Distribution List 4)
## 10083 2001 Enron Law Conference (Distribution List 4)
## 10084 2001 Enron Law Conference (Distribution List 4)
## 10085 2001 Enron Law Conference (Distribution List 4)
## 10086 2001 Enron Law Conference (Distribution List 4)
## 10087 2001 Enron Law Conference (Distribution List 4)
## 10088 2001 Enron Law Conference (Distribution List 4)
## 10089 2001 Enron Law Conference (Distribution List 4)
## 10090 2001 Enron Law Conference (Distribution List 4)
## 10091 2001 Enron Law Conference (Distribution List 4)
## 10092 2001 Enron Law Conference (Distribution List 4)
## 10093 2001 Enron Law Conference (Distribution List 4)
## 10094 2001 Enron Law Conference (Distribution List 4)
## 10095 2001 Enron Law Conference (Distribution List 4)
## 10096 2001 Enron Law Conference (Distribution List 4)
## 10097 2001 Enron Law Conference (Distribution List 4)
## 10098 2001 Enron Law Conference (Distribution List 4)
## 10099 2001 Enron Law Conference (Distribution List 4)
## 10100 2001 Enron Law Conference (Distribution List 4)
## 10101 2001 Enron Law Conference (Distribution List 4)
## 10102 2001 Enron Law Conference (Distribution List 4)
## 10103 2001 Enron Law Conference (Distribution List 4)
## 10104 2001 Enron Law Conference (Distribution List 4)
## 10105 2001 Enron Law Conference (Distribution List 4)
## 10106 2001 Enron Law Conference (Distribution List 4)
## 10107 2001 Enron Law Conference (Distribution List 4)
## 10108 2001 Enron Law Conference (Distribution List 4)
## 10109 2001 Enron Law Conference (Distribution List 4)
## 10110 2001 Enron Law Conference (Distribution List 4)
## 10111 2001 Enron Law Conference (Distribution List 4)
## 10112 2001 Enron Law Conference (Distribution List 4)
## 10113 2001 Enron Law Conference (Distribution List 4)
## 10114 2001 Enron Law Conference (Distribution List 4)
## 10115 2001 Enron Law Conference (Distribution List 4)
## 10116 2001 Enron Law Conference (Distribution List 4)
## 10117 2001 Enron Law Conference (Distribution List 4)
## 10118 2001 Enron Law Conference (Distribution List 4)
## 10119 2001 Enron Law Conference (Distribution List 4)
## 10120 Re: LV Interconnection Agreement
## 10121 Re: LV Interconnection Agreement
## 10122 Re: LV Interconnection Agreement
## 10123 Re: LV Interconnection Agreement
## 10124 Re: LV Interconnection Agreement
## 10125 Re: LV Interconnection Agreement
## 10126 Re: LV Interconnection Agreement
## 10127 Re: LV Interconnection Agreement
## 10128 Re: LV Interconnection Agreement
## 10129 Re: LV Interconnection Agreement
## 10130 Re: LV Interconnection Agreement
## 10131 Re: LV Interconnection Agreement
## 10132 Re: LV Interconnection Agreement
## 10133 Re: LV Interconnection Agreement
## 10134 Re: LV Interconnection Agreement
## 10135 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10136 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10137 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10138 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10139 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10140 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10141 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10142 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10143 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10144 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10145 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10146 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10147 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10148 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10149 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10150 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10151 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10152 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10153 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10154 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10155 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10156 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10157 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10158 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10159 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10160 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10161 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10162 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10163 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10164 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10165 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10166 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10167 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10168 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10169 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10170 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10171 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10172 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10173 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10174 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10175 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10176 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10177 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10178 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10179 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10180 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10181 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10182 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10183 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10184 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10185 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10186 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10187 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10188 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10189 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10190 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10191 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10192 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10193 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10194 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10195 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10196 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10197 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10198 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10199 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10200 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10201 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10202 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10203 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10204 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10205 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10206 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10207 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10208 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10209 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10210 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10211 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10212 [Fwd: Fwd: CAISO Notice - New Facility Interconnection Policy]
## 10213 Synthetic & Leveraged Lease Financing Event
## 10214 FW: 2000 Lobbying Expenses
## 10215 FW: 2000 Lobbying Expenses
## 10216 FW: 2000 Lobbying Expenses
## 10217 FW: 2000 Lobbying Expenses
## 10218 FW: 2000 Lobbying Expenses
## 10219 FW: 2000 Lobbying Expenses
## 10220 FW: 2000 Lobbying Expenses
## 10221 FW: 2000 Lobbying Expenses
## 10222 FW: 2000 Lobbying Expenses
## 10223 FW: 2000 Lobbying Expenses
## 10224 FW: 2000 Lobbying Expenses
## 10225 FW: 2000 Lobbying Expenses
## 10226 FW: 2000 Lobbying Expenses
## 10227 FW: 2000 Lobbying Expenses
## 10228 FW: 2000 Lobbying Expenses
## 10229 FW: 2000 Lobbying Expenses
## 10230 FW: 2000 Lobbying Expenses
## 10231 FW: 2000 Lobbying Expenses
## 10232 FW: 2000 Lobbying Expenses
## 10233 FW: 2000 Lobbying Expenses
## 10234 FW: 2000 Lobbying Expenses
## 10235 FW: 2000 Lobbying Expenses
## 10236 FW: 2000 Lobbying Expenses
## 10237 FW: 2000 Lobbying Expenses
## 10238 FW: 2000 Lobbying Expenses
## 10239 FW: 2000 Lobbying Expenses
## 10240 FW: 2000 Lobbying Expenses
## 10241 FW: 2000 Lobbying Expenses
## 10242 FW: 2000 Lobbying Expenses
## 10243 FW: 2000 Lobbying Expenses
## 10244 FW: 2000 Lobbying Expenses
## 10245 FW: 2000 Lobbying Expenses
## 10246 FW: 2000 Lobbying Expenses
## 10247 FW: 2000 Lobbying Expenses
## 10248 FW: 2000 Lobbying Expenses
## 10249 FW: 2000 Lobbying Expenses
## 10250 FW: 2000 Lobbying Expenses
## 10251 FW: 2000 Lobbying Expenses
## 10252 FW: 2000 Lobbying Expenses
## 10253 FW: 2000 Lobbying Expenses
## 10254 FW: 2000 Lobbying Expenses
## 10255 FW: 2000 Lobbying Expenses
## 10256 FW: 2000 Lobbying Expenses
## 10257 FW: 2000 Lobbying Expenses
## 10258 FW: 2000 Lobbying Expenses
## 10259 FW: 2000 Lobbying Expenses
## 10260 FW: 2000 Lobbying Expenses
## 10261 FW: 2000 Lobbying Expenses
## 10262 FW: 2000 Lobbying Expenses
## 10263 FW: 2000 Lobbying Expenses
## 10264 FW: 2000 Lobbying Expenses
## 10265 FW: 2000 Lobbying Expenses
## 10266 FW: 2000 Lobbying Expenses
## 10267 FW: 2000 Lobbying Expenses
## 10268 FW: 2000 Lobbying Expenses
## 10269 FW: 2000 Lobbying Expenses
## 10270 FW: 2000 Lobbying Expenses
## 10271 FW: 2000 Lobbying Expenses
## 10272 FW: 2000 Lobbying Expenses
## 10273 FW: 2000 Lobbying Expenses
## 10274 FW: 2000 Lobbying Expenses
## 10275 FW: 2000 Lobbying Expenses
## 10276 FW: 2000 Lobbying Expenses
## 10277 FW: 2000 Lobbying Expenses
## 10278 FW: 2000 Lobbying Expenses
## 10279 FW: 2000 Lobbying Expenses
## 10280 FW: 2000 Lobbying Expenses
## 10281 FW: 2000 Lobbying Expenses
## 10282 FW: 2000 Lobbying Expenses
## 10283 FW: 2000 Lobbying Expenses
## 10284 CAISO Notice: Draft Study Plan for Path 26 Increase Rating Study
## 10285 Memorandum from Julie Simon
## 10286 Memorandum from Julie Simon
## 10287 Memorandum from Julie Simon
## 10288 Memorandum from Julie Simon
## 10289 Memorandum from Julie Simon
## 10290 Memorandum from Julie Simon
## 10291 Memorandum from Julie Simon
## 10292 Memorandum from Julie Simon
## 10293 Memorandum from Julie Simon
## 10294 Memorandum from Julie Simon
## 10295 Memorandum from Julie Simon
## 10296 Memorandum from Julie Simon
## 10297 Memorandum from Julie Simon
## 10298 Memorandum from Julie Simon
## 10299 Memorandum from Julie Simon
## 10300 Memorandum from Julie Simon
## 10301 Memorandum from Julie Simon
## 10302 Memorandum from Julie Simon
## 10303 Memorandum from Julie Simon
## 10304 Memorandum from Julie Simon
## 10305 Memorandum from Julie Simon
## 10306 Memorandum from Julie Simon
## 10307 Memorandum from Julie Simon
## 10308 Memorandum from Julie Simon
## 10309 Memorandum from Julie Simon
## 10310 Memorandum from Julie Simon
## 10311 Memorandum from Julie Simon
## 10312 Memorandum from Julie Simon
## 10313 Memorandum from Julie Simon
## 10314 Memorandum from Julie Simon
## 10315 Memorandum from Julie Simon
## 10316 Memorandum from Julie Simon
## 10317 Memorandum from Julie Simon
## 10318 Memorandum from Julie Simon
## 10319 Memorandum from Julie Simon
## 10320 Memorandum from Julie Simon
## 10321 Memorandum from Julie Simon
## 10322 Memorandum from Julie Simon
## 10323 Memorandum from Julie Simon
## 10324 Memorandum from Julie Simon
## 10325 Memorandum from Julie Simon
## 10326 Memorandum from Julie Simon
## 10327 Memorandum from Julie Simon
## 10328 Memorandum from Julie Simon
## 10329 Memorandum from Julie Simon
## 10330 Memorandum from Julie Simon
## 10331 Memorandum from Julie Simon
## 10332 Memorandum from Julie Simon
## 10333 Memorandum from Julie Simon
## 10334 Memorandum from Julie Simon
## 10335 Memorandum from Julie Simon
## 10336 Memorandum from Julie Simon
## 10337 Memorandum from Julie Simon
## 10338 Memorandum from Julie Simon
## 10339 Memorandum from Julie Simon
## 10340 Memorandum from Julie Simon
## 10341 Memorandum from Julie Simon
## 10342 Memorandum from Julie Simon
## 10343 Memorandum from Julie Simon
## 10344 Memorandum from Julie Simon
## 10345 Memorandum from Julie Simon
## 10346 Memorandum from Julie Simon
## 10347 Memorandum from Julie Simon
## 10348 Memorandum from Julie Simon
## 10349 Memorandum from Julie Simon
## 10350 Memorandum from Julie Simon
## 10351 Memorandum from Julie Simon
## 10352 Memorandum from Julie Simon
## 10353 Memorandum from Julie Simon
## 10354 Memorandum from Julie Simon
## 10355 Memorandum from Julie Simon
## 10356 Memorandum from Julie Simon
## 10357 Memorandum from Julie Simon
## 10358 Memorandum from Julie Simon
## 10359 Memorandum from Julie Simon
## 10360 Memorandum from Julie Simon
## 10361 Memorandum from Julie Simon
## 10362 Memorandum from Julie Simon
## 10363 Memorandum from Julie Simon
## 10364 Memorandum from Julie Simon
## 10365 Memorandum from Julie Simon
## 10366 Memorandum from Julie Simon
## 10367 Memorandum from Julie Simon
## 10368 Memorandum from Julie Simon
## 10369 Memorandum from Julie Simon
## 10370 Memorandum from Julie Simon
## 10371 Memorandum from Julie Simon
## 10372 Memorandum from Julie Simon
## 10373 Memorandum from Julie Simon
## 10374 Memorandum from Julie Simon
## 10375 Memorandum from Julie Simon
## 10376 Memorandum from Julie Simon
## 10377 Memorandum from Julie Simon
## 10378 Memorandum from Julie Simon
## 10379 Memorandum from Julie Simon
## 10380 Memorandum from Julie Simon
## 10381 Memorandum from Julie Simon
## 10382 Memorandum from Julie Simon
## 10383 Memorandum from Julie Simon
## 10384 Memorandum from Julie Simon
## 10385 Memorandum from Julie Simon
## 10386 Memorandum from Julie Simon
## 10387 Memorandum from Julie Simon
## 10388 Memorandum from Julie Simon
## 10389 Memorandum from Julie Simon
## 10390 Memorandum from Julie Simon
## 10391 Memorandum from Julie Simon
## 10392 Memorandum from Julie Simon
## 10393 Memorandum from Julie Simon
## 10394 Memorandum from Julie Simon
## 10395 Memorandum from Julie Simon
## 10396 Memorandum from Julie Simon
## 10397 Memorandum from Julie Simon
## 10398 Memorandum from Julie Simon
## 10399 Memorandum from Julie Simon
## 10400 Memorandum from Julie Simon
## 10401 Memorandum from Julie Simon
## 10402 Memorandum from Julie Simon
## 10403 Memorandum from Julie Simon
## 10404 Memorandum from Julie Simon
## 10405 Memorandum from Julie Simon
## 10406 Memorandum from Julie Simon
## 10407 Memorandum from Julie Simon
## 10408 Memorandum from Julie Simon
## 10409 Memorandum from Julie Simon
## 10410 Memorandum from Julie Simon
## 10411 Memorandum from Julie Simon
## 10412 Memorandum from Julie Simon
## 10413 Memorandum from Julie Simon
## 10414 Memorandum from Julie Simon
## 10415 Memorandum from Julie Simon
## 10416 Memorandum from Julie Simon
## 10417 Memorandum from Julie Simon
## 10418 Memorandum from Julie Simon
## 10419 Memorandum from Julie Simon
## 10420 Memorandum from Julie Simon
## 10421 Memorandum from Julie Simon
## 10422 Memorandum from Julie Simon
## 10423 Memorandum from Julie Simon
## 10424 Memorandum from Julie Simon
## 10425 Memorandum from Julie Simon
## 10426 Memorandum from Julie Simon
## 10427 Memorandum from Julie Simon
## 10428 Memorandum from Julie Simon
## 10429 Memorandum from Julie Simon
## 10430 Memorandum from Julie Simon
## 10431 Memorandum from Julie Simon
## 10432 Memorandum from Julie Simon
## 10433 Memorandum from Julie Simon
## 10434 Memorandum from Julie Simon
## 10435 Memorandum from Julie Simon
## 10436 Memorandum from Julie Simon
## 10437 Memorandum from Julie Simon
## 10438 Memorandum from Julie Simon
## 10439 Memorandum from Julie Simon
## 10440 Memorandum from Julie Simon
## 10441 Memorandum from Julie Simon
## 10442 Memorandum from Julie Simon
## 10443 Memorandum from Julie Simon
## 10444 Memorandum from Julie Simon
## 10445 Memorandum from Julie Simon
## 10446 Memorandum from Julie Simon
## 10447 Memorandum from Julie Simon
## 10448 Memorandum from Julie Simon
## 10449 Memorandum from Julie Simon
## 10450 Memorandum from Julie Simon
## 10451 Memorandum from Julie Simon
## 10452 Memorandum from Julie Simon
## 10453 Memorandum from Julie Simon
## 10454 Memorandum from Julie Simon
## 10455 Memorandum from Julie Simon
## 10456 Memorandum from Julie Simon
## 10457 Memorandum from Julie Simon
## 10458 Memorandum from Julie Simon
## 10459 Memorandum from Julie Simon
## 10460 Memorandum from Julie Simon
## 10461 Memorandum from Julie Simon
## 10462 Memorandum from Julie Simon
## 10463 Memorandum from Julie Simon
## 10464 Memorandum from Julie Simon
## 10465 Memorandum from Julie Simon
## 10466 Memorandum from Julie Simon
## 10467 Memorandum from Julie Simon
## 10468 Memorandum from Julie Simon
## 10469 Memorandum from Julie Simon
## 10470 Memorandum from Julie Simon
## 10471 Memorandum from Julie Simon
## 10472 Memorandum from Julie Simon
## 10473 Memorandum from Julie Simon
## 10474 Memorandum from Julie Simon
## 10475 Memorandum from Julie Simon
## 10476 Memorandum from Julie Simon
## 10477 Memorandum from Julie Simon
## 10478 Memorandum from Julie Simon
## 10479 Memorandum from Julie Simon
## 10480 Memorandum from Julie Simon
## 10481 Memorandum from Julie Simon
## 10482 Memorandum from Julie Simon
## 10483 Memorandum from Julie Simon
## 10484 Memorandum from Julie Simon
## 10485 Memorandum from Julie Simon
## 10486 Memorandum from Julie Simon
## 10487 Memorandum from Julie Simon
## 10488 Memorandum from Julie Simon
## 10489 Memorandum from Julie Simon
## 10490 Memorandum from Julie Simon
## 10491 Memorandum from Julie Simon
## 10492 Memorandum from Julie Simon
## 10493 Memorandum from Julie Simon
## 10494 Memorandum from Julie Simon
## 10495 Memorandum from Julie Simon
## 10496 Memorandum from Julie Simon
## 10497 Memorandum from Julie Simon
## 10498 Memorandum from Julie Simon
## 10499 Memorandum from Julie Simon
## 10500 Memorandum from Julie Simon
## 10501 Memorandum from Julie Simon
## 10502 Memorandum from Julie Simon
## 10503 Memorandum from Julie Simon
## 10504 Memorandum from Julie Simon
## 10505 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10506 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10507 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10508 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10509 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10510 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10511 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10512 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10513 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10514 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10515 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10516 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10517 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10518 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10519 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10520 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10521 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10522 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10523 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10524 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10525 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10526 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10527 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10528 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10529 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10530 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10531 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10532 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10533 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10534 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10535 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10536 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10537 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10538 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10539 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10540 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10541 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10542 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10543 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10544 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10545 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10546 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10547 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10548 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10549 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10550 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10551 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10552 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10553 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10554 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10555 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10556 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10557 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10558 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10559 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10560 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10561 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10562 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10563 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10564 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10565 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10566 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10567 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10568 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10569 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10570 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10571 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10572 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10573 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10574 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10575 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10576 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10577 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10578 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10579 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10580 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10581 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10582 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10583 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10584 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10585 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10586 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10587 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10588 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10589 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10590 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10591 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10592 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10593 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10594 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10595 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10596 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10597 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10598 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10599 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10600 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10601 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10602 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10603 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10604 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10605 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10606 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10607 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10608 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10609 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10610 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10611 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10612 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10613 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10614 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10615 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10616 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10617 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10618 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10619 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10620 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10621 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10622 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10623 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10624 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10625 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10626 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10627 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10628 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10629 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10630 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10631 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10632 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10633 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10634 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10635 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10636 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10637 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10638 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10639 Memorandum from Julie Simon on FERC order on refunds from March 9
## 10640 Re: Response to PX Answer to Chargeback Complaint
## 10641 Re: Response to PX Answer to Chargeback Complaint
## 10642 Re: Response to PX Answer to Chargeback Complaint
## 10643 Re: Response to PX Answer to Chargeback Complaint
## 10644 Re: Response to PX Answer to Chargeback Complaint
## 10645 Re: Response to PX Answer to Chargeback Complaint
## 10646 Re: Response to PX Answer to Chargeback Complaint
## 10647 Re: Response to PX Answer to Chargeback Complaint
## 10648 Re: Response to PX Answer to Chargeback Complaint
## 10649 Re: Response to PX Answer to Chargeback Complaint
## 10650 Re: Response to PX Answer to Chargeback Complaint
## 10651 Re: Response to PX Answer to Chargeback Complaint
## 10652 Re: Response to PX Answer to Chargeback Complaint
## 10653 Re: Response to PX Answer to Chargeback Complaint
## 10654 Re: Response to PX Answer to Chargeback Complaint
## 10655 Re: Response to PX Answer to Chargeback Complaint
## 10656 Re: Response to PX Answer to Chargeback Complaint
## 10657 Re: Response to PX Answer to Chargeback Complaint
## 10658 Re: Response to PX Answer to Chargeback Complaint
## 10659 Re: Response to PX Answer to Chargeback Complaint
## 10660 Re: Response to PX Answer to Chargeback Complaint
## 10661 Re: Response to PX Answer to Chargeback Complaint
## 10662 Re: Response to PX Answer to Chargeback Complaint
## 10663 Re: Response to PX Answer to Chargeback Complaint
## 10664 Re: Response to PX Answer to Chargeback Complaint
## 10665 Re: Response to PX Answer to Chargeback Complaint
## 10666 Re: Response to PX Answer to Chargeback Complaint
## 10667 Re: Response to PX Answer to Chargeback Complaint
## 10668 Re: Response to PX Answer to Chargeback Complaint
## 10669 Re: Response to PX Answer to Chargeback Complaint
## 10670 Re: Response to PX Answer to Chargeback Complaint
## 10671 Re: Response to PX Answer to Chargeback Complaint
## 10672 Re: Response to PX Answer to Chargeback Complaint
## 10673 Re: Response to PX Answer to Chargeback Complaint
## 10674 Re: Response to PX Answer to Chargeback Complaint
## 10675 Re: Response to PX Answer to Chargeback Complaint
## 10676 Re: Response to PX Answer to Chargeback Complaint
## 10677 Re: Response to PX Answer to Chargeback Complaint
## 10678 Re: Response to PX Answer to Chargeback Complaint
## 10679 Re: Response to PX Answer to Chargeback Complaint
## 10680 Re: Response to PX Answer to Chargeback Complaint
## 10681 Re: Response to PX Answer to Chargeback Complaint
## 10682 Re: Response to PX Answer to Chargeback Complaint
## 10683 Re: Response to PX Answer to Chargeback Complaint
## 10684 Re: Response to PX Answer to Chargeback Complaint
## 10685 Re: Response to PX Answer to Chargeback Complaint
## 10686 Re: Response to PX Answer to Chargeback Complaint
## 10687 Re: Response to PX Answer to Chargeback Complaint
## 10688 Re: Response to PX Answer to Chargeback Complaint
## 10689 Re: Response to PX Answer to Chargeback Complaint
## 10690 Re: Response to PX Answer to Chargeback Complaint
## 10691 Re: Response to PX Answer to Chargeback Complaint
## 10692 Re: Response to PX Answer to Chargeback Complaint
## 10693 Re: Response to PX Answer to Chargeback Complaint
## 10694 Re: Response to PX Answer to Chargeback Complaint
## 10695 Re: Response to PX Answer to Chargeback Complaint
## 10696 Re: Response to PX Answer to Chargeback Complaint
## 10697 Re: Response to PX Answer to Chargeback Complaint
## 10698 Re: Response to PX Answer to Chargeback Complaint
## 10699 Re: Response to PX Answer to Chargeback Complaint
## 10700 Re: Response to PX Answer to Chargeback Complaint
## 10701 Re: Response to PX Answer to Chargeback Complaint
## 10702 Re: Response to PX Answer to Chargeback Complaint
## 10703 Re: Response to PX Answer to Chargeback Complaint
## 10704 Re: Response to PX Answer to Chargeback Complaint
## 10705 Re: Response to PX Answer to Chargeback Complaint
## 10706 Re: Response to PX Answer to Chargeback Complaint
## 10707 Re: Response to PX Answer to Chargeback Complaint
## 10708 Re: Response to PX Answer to Chargeback Complaint
## 10709 Re: Response to PX Answer to Chargeback Complaint
## 10710 Re: Response to PX Answer to Chargeback Complaint
## 10711 Re: Response to PX Answer to Chargeback Complaint
## 10712 Re: Response to PX Answer to Chargeback Complaint
## 10713 Re: Response to PX Answer to Chargeback Complaint
## 10714 Re: Response to PX Answer to Chargeback Complaint
## 10715 Re: Response to PX Answer to Chargeback Complaint
## 10716 Re: Response to PX Answer to Chargeback Complaint
## 10717 Re: Response to PX Answer to Chargeback Complaint
## 10718 Re: Response to PX Answer to Chargeback Complaint
## 10719 Re: Response to PX Answer to Chargeback Complaint
## 10720 Re: Response to PX Answer to Chargeback Complaint
## 10721 Re: Response to PX Answer to Chargeback Complaint
## 10722 Re: Response to PX Answer to Chargeback Complaint
## 10723 Re: Response to PX Answer to Chargeback Complaint
## 10724 Re: Response to PX Answer to Chargeback Complaint
## 10725 Re: Response to PX Answer to Chargeback Complaint
## 10726 Re: Response to PX Answer to Chargeback Complaint
## 10727 Re: Response to PX Answer to Chargeback Complaint
## 10728 Re: Response to PX Answer to Chargeback Complaint
## 10729 Re: Response to PX Answer to Chargeback Complaint
## 10730 Re: Response to PX Answer to Chargeback Complaint
## 10731 Re: Response to PX Answer to Chargeback Complaint
## 10732 Re: Response to PX Answer to Chargeback Complaint
## 10733 Re: Response to PX Answer to Chargeback Complaint
## 10734 Re: Response to PX Answer to Chargeback Complaint
## 10735 Re: Response to PX Answer to Chargeback Complaint
## 10736 BPA Transmission Interconnect moratorium
## 10737 BPA Transmission Interconnect moratorium
## 10738 BPA Transmission Interconnect moratorium
## 10739 BPA Transmission Interconnect moratorium
## 10740 BPA Transmission Interconnect moratorium
## 10741 BPA Transmission Interconnect moratorium
## 10742 BPA Transmission Interconnect moratorium
## 10743 BPA Transmission Interconnect moratorium
## 10744 BPA Transmission Interconnect moratorium
## 10745 BPA Transmission Interconnect moratorium
## 10746 BPA Transmission Interconnect moratorium
## 10747 BPA Transmission Interconnect moratorium
## 10748 RE: Response to PX Answer to Chargeback Complaint
## 10749 RE: Response to PX Answer to Chargeback Complaint
## 10750 RE: Response to PX Answer to Chargeback Complaint
## 10751 RE: Response to PX Answer to Chargeback Complaint
## 10752 RE: Response to PX Answer to Chargeback Complaint
## 10753 RE: Response to PX Answer to Chargeback Complaint
## 10754 RE: Response to PX Answer to Chargeback Complaint
## 10755 RE: Response to PX Answer to Chargeback Complaint
## 10756 RE: Response to PX Answer to Chargeback Complaint
## 10757 RE: Response to PX Answer to Chargeback Complaint
## 10758 RE: Response to PX Answer to Chargeback Complaint
## 10759 RE: Response to PX Answer to Chargeback Complaint
## 10760 RE: Response to PX Answer to Chargeback Complaint
## 10761 RE: Response to PX Answer to Chargeback Complaint
## 10762 RE: Response to PX Answer to Chargeback Complaint
## 10763 RE: Response to PX Answer to Chargeback Complaint
## 10764 RE: Response to PX Answer to Chargeback Complaint
## 10765 RE: Response to PX Answer to Chargeback Complaint
## 10766 RE: Response to PX Answer to Chargeback Complaint
## 10767 RE: Response to PX Answer to Chargeback Complaint
## 10768 RE: Response to PX Answer to Chargeback Complaint
## 10769 RE: Response to PX Answer to Chargeback Complaint
## 10770 RE: Response to PX Answer to Chargeback Complaint
## 10771 RE: Response to PX Answer to Chargeback Complaint
## 10772 RE: Response to PX Answer to Chargeback Complaint
## 10773 RE: Response to PX Answer to Chargeback Complaint
## 10774 RE: Response to PX Answer to Chargeback Complaint
## 10775 RE: Response to PX Answer to Chargeback Complaint
## 10776 RE: Response to PX Answer to Chargeback Complaint
## 10777 RE: Response to PX Answer to Chargeback Complaint
## 10778 RE: Response to PX Answer to Chargeback Complaint
## 10779 RE: Response to PX Answer to Chargeback Complaint
## 10780 RE: Response to PX Answer to Chargeback Complaint
## 10781 RE: Response to PX Answer to Chargeback Complaint
## 10782 RE: Response to PX Answer to Chargeback Complaint
## 10783 RE: Response to PX Answer to Chargeback Complaint
## 10784 RE: Response to PX Answer to Chargeback Complaint
## 10785 RE: Response to PX Answer to Chargeback Complaint
## 10786 RE: Response to PX Answer to Chargeback Complaint
## 10787 RE: Response to PX Answer to Chargeback Complaint
## 10788 RE: Response to PX Answer to Chargeback Complaint
## 10789 RE: Response to PX Answer to Chargeback Complaint
## 10790 RE: Response to PX Answer to Chargeback Complaint
## 10791 RE: Response to PX Answer to Chargeback Complaint
## 10792 RE: Response to PX Answer to Chargeback Complaint
## 10793 RE: Response to PX Answer to Chargeback Complaint
## 10794 RE: Response to PX Answer to Chargeback Complaint
## 10795 RE: Response to PX Answer to Chargeback Complaint
## 10796 RE: Motion to Intervene Out of Time - ER01-902-000
## 10797 RE: Motion to Intervene Out of Time - ER01-902-000
## 10798 RE: Motion to Intervene Out of Time - ER01-902-000
## 10799 RE: Motion to Intervene Out of Time - ER01-902-000
## 10800 RE: Motion to Intervene Out of Time - ER01-902-000
## 10801 RE: Motion to Intervene Out of Time - ER01-902-000
## 10802 RE: Motion to Intervene Out of Time - ER01-902-000
## 10803 RE: Motion to Intervene Out of Time - ER01-902-000
## 10804 RE: Motion to Intervene Out of Time - ER01-902-000
## 10805 RE: Motion to Intervene Out of Time - ER01-902-000
## 10806 Are You Following the California Energy Crisis?
## 10807 Re: Response to PX Answer to Chargeback Complaint
## 10808 Re: Response to PX Answer to Chargeback Complaint
## 10809 Re: Response to PX Answer to Chargeback Complaint
## 10810 Re: Response to PX Answer to Chargeback Complaint
## 10811 Re: Response to PX Answer to Chargeback Complaint
## 10812 Re: Response to PX Answer to Chargeback Complaint
## 10813 Re: Response to PX Answer to Chargeback Complaint
## 10814 Re: Response to PX Answer to Chargeback Complaint
## 10815 Re: Response to PX Answer to Chargeback Complaint
## 10816 Re: Response to PX Answer to Chargeback Complaint
## 10817 Re: Response to PX Answer to Chargeback Complaint
## 10818 Re: Response to PX Answer to Chargeback Complaint
## 10819 Re: Response to PX Answer to Chargeback Complaint
## 10820 Re: Response to PX Answer to Chargeback Complaint
## 10821 Re: Response to PX Answer to Chargeback Complaint
## 10822 Re: Response to PX Answer to Chargeback Complaint
## 10823 Re: Response to PX Answer to Chargeback Complaint
## 10824 Re: Response to PX Answer to Chargeback Complaint
## 10825 Re: Response to PX Answer to Chargeback Complaint
## 10826 Re: Response to PX Answer to Chargeback Complaint
## 10827 Re: Response to PX Answer to Chargeback Complaint
## 10828 Re: Response to PX Answer to Chargeback Complaint
## 10829 Re: Response to PX Answer to Chargeback Complaint
## 10830 Re: Response to PX Answer to Chargeback Complaint
## 10831 Re: Response to PX Answer to Chargeback Complaint
## 10832 Re: Response to PX Answer to Chargeback Complaint
## 10833 Re: Response to PX Answer to Chargeback Complaint
## 10834 Re: Response to PX Answer to Chargeback Complaint
## 10835 Re: Response to PX Answer to Chargeback Complaint
## 10836 Re: Response to PX Answer to Chargeback Complaint
## 10837 Re: Response to PX Answer to Chargeback Complaint
## 10838 Re: Response to PX Answer to Chargeback Complaint
## 10839 Re: Response to PX Answer to Chargeback Complaint
## 10840 Re: Response to PX Answer to Chargeback Complaint
## 10841 Re: Response to PX Answer to Chargeback Complaint
## 10842 Re: Response to PX Answer to Chargeback Complaint
## 10843 Re: Response to PX Answer to Chargeback Complaint
## 10844 Re: Response to PX Answer to Chargeback Complaint
## 10845 Re: Response to PX Answer to Chargeback Complaint
## 10846 Re: Response to PX Answer to Chargeback Complaint
## 10847 Re: Response to PX Answer to Chargeback Complaint
## 10848 Re: Response to PX Answer to Chargeback Complaint
## 10849 Re: Response to PX Answer to Chargeback Complaint
## 10850 Re: Response to PX Answer to Chargeback Complaint
## 10851 Re: Response to PX Answer to Chargeback Complaint
## 10852 Re: Response to PX Answer to Chargeback Complaint
## 10853 Re: Response to PX Answer to Chargeback Complaint
## 10854 Re: Response to PX Answer to Chargeback Complaint
## 10855 Re: Response to PX Answer to Chargeback Complaint
## 10856 Re: Response to PX Answer to Chargeback Complaint
## 10857 Re: Response to PX Answer to Chargeback Complaint
## 10858 Re: Response to PX Answer to Chargeback Complaint
## 10859 Re: Response to PX Answer to Chargeback Complaint
## 10860 Re: Response to PX Answer to Chargeback Complaint
## 10861 Re: Response to PX Answer to Chargeback Complaint
## 10862 Re: Response to PX Answer to Chargeback Complaint
## 10863 Re: Response to PX Answer to Chargeback Complaint
## 10864 Re: Response to PX Answer to Chargeback Complaint
## 10865 Re: Response to PX Answer to Chargeback Complaint
## 10866 Re: Response to PX Answer to Chargeback Complaint
## 10867 Re: Response to PX Answer to Chargeback Complaint
## 10868 Re: Response to PX Answer to Chargeback Complaint
## 10869 Re: Response to PX Answer to Chargeback Complaint
## 10870 Re: Response to PX Answer to Chargeback Complaint
## 10871 Re: Response to PX Answer to Chargeback Complaint
## 10872 Re: Response to PX Answer to Chargeback Complaint
## 10873 Re: Response to PX Answer to Chargeback Complaint
## 10874 Re: Response to PX Answer to Chargeback Complaint
## 10875 Re: Response to PX Answer to Chargeback Complaint
## 10876 Re: Response to PX Answer to Chargeback Complaint
## 10877 Re: Response to PX Answer to Chargeback Complaint
## 10878 Re: Response to PX Answer to Chargeback Complaint
## 10879 Re: Response to PX Answer to Chargeback Complaint
## 10880 Re: Response to PX Answer to Chargeback Complaint
## 10881 Re: Response to PX Answer to Chargeback Complaint
## 10882 Re: Response to PX Answer to Chargeback Complaint
## 10883 Re: Response to PX Answer to Chargeback Complaint
## 10884 Re: Response to PX Answer to Chargeback Complaint
## 10885 Re: Response to PX Answer to Chargeback Complaint
## 10886 Re: Response to PX Answer to Chargeback Complaint
## 10887 Re: Response to PX Answer to Chargeback Complaint
## 10888 Re: Response to PX Answer to Chargeback Complaint
## 10889 Re: Response to PX Answer to Chargeback Complaint
## 10890 Re: Response to PX Answer to Chargeback Complaint
## 10891 Re: Response to PX Answer to Chargeback Complaint
## 10892 Re: Response to PX Answer to Chargeback Complaint
## 10893 Re: Response to PX Answer to Chargeback Complaint
## 10894 Re: Response to PX Answer to Chargeback Complaint
## 10895 Re: Response to PX Answer to Chargeback Complaint
## 10896 Re: Response to PX Answer to Chargeback Complaint
## 10897 Re: Response to PX Answer to Chargeback Complaint
## 10898 Re: Response to PX Answer to Chargeback Complaint
## 10899 RE: Response to PX Answer to Chargeback Complaint
## 10900 RE: Response to PX Answer to Chargeback Complaint
## 10901 RE: Response to PX Answer to Chargeback Complaint
## 10902 RE: Response to PX Answer to Chargeback Complaint
## 10903 RE: Response to PX Answer to Chargeback Complaint
## 10904 RE: Response to PX Answer to Chargeback Complaint
## 10905 RE: Response to PX Answer to Chargeback Complaint
## 10906 RE: Response to PX Answer to Chargeback Complaint
## 10907 RE: Response to PX Answer to Chargeback Complaint
## 10908 RE: Response to PX Answer to Chargeback Complaint
## 10909 RE: Response to PX Answer to Chargeback Complaint
## 10910 RE: Response to PX Answer to Chargeback Complaint
## 10911 RE: Response to PX Answer to Chargeback Complaint
## 10912 RE: Response to PX Answer to Chargeback Complaint
## 10913 RE: Response to PX Answer to Chargeback Complaint
## 10914 RE: Response to PX Answer to Chargeback Complaint
## 10915 RE: Response to PX Answer to Chargeback Complaint
## 10916 RE: Response to PX Answer to Chargeback Complaint
## 10917 RE: Response to PX Answer to Chargeback Complaint
## 10918 RE: Response to PX Answer to Chargeback Complaint
## 10919 RE: Response to PX Answer to Chargeback Complaint
## 10920 RE: Response to PX Answer to Chargeback Complaint
## 10921 RE: Response to PX Answer to Chargeback Complaint
## 10922 RE: Response to PX Answer to Chargeback Complaint
## 10923 RE: Response to PX Answer to Chargeback Complaint
## 10924 RE: Response to PX Answer to Chargeback Complaint
## 10925 RE: Response to PX Answer to Chargeback Complaint
## 10926 RE: Response to PX Answer to Chargeback Complaint
## 10927 RE: Response to PX Answer to Chargeback Complaint
## 10928 RE: Response to PX Answer to Chargeback Complaint
## 10929 RE: Response to PX Answer to Chargeback Complaint
## 10930 RE: Response to PX Answer to Chargeback Complaint
## 10931 RE: Response to PX Answer to Chargeback Complaint
## 10932 RE: Response to PX Answer to Chargeback Complaint
## 10933 RE: Response to PX Answer to Chargeback Complaint
## 10934 RE: Response to PX Answer to Chargeback Complaint
## 10935 RE: Response to PX Answer to Chargeback Complaint
## 10936 RE: Response to PX Answer to Chargeback Complaint
## 10937 RE: Response to PX Answer to Chargeback Complaint
## 10938 RE: Response to PX Answer to Chargeback Complaint
## 10939 RE: Response to PX Answer to Chargeback Complaint
## 10940 RE: Response to PX Answer to Chargeback Complaint
## 10941 RE: Response to PX Answer to Chargeback Complaint
## 10942 RE: Response to PX Answer to Chargeback Complaint
## 10943 RE: Response to PX Answer to Chargeback Complaint
## 10944 RE: Response to PX Answer to Chargeback Complaint
## 10945 RE: Response to PX Answer to Chargeback Complaint
## 10946 RE: Response to PX Answer to Chargeback Complaint
## 10947 Re: Happy Birthday
## 10948 Remove Your Items in the Fridge Immediately
## 10949 Real-Time New Hire
## 10950 BPA Anti-trust???
## 10951 BPA Anti-trust???
## 10952 BPA Anti-trust???
## 10953 BPA Anti-trust???
## 10954 BPA Anti-trust???
## 10955 BPA Anti-trust???
## 10956 BPA Anti-trust???
## 10957 BPA Anti-trust???
## 10958 BPA Anti-trust???
## 10959 Draft interconnection procedure
## 10960 Draft interconnection procedure
## 10961 Draft interconnection procedure
## 10962 Draft interconnection procedure
## 10963 Draft interconnection procedure
## 10964 CAISO Notice: SDG&E 2001 Grid Planning Assessment Stakeholder Mee\tting
## 10965 New York Regulatory Summary
## 10966 New York Regulatory Summary
## 10967 New York Regulatory Summary
## 10968 New York Regulatory Summary
## 10969 New York Regulatory Summary
## 10970 New York Regulatory Summary
## 10971 New York Regulatory Summary
## 10972 New York Regulatory Summary
## 10973 New York Regulatory Summary
## 10974 New York Regulatory Summary
## 10975 New York Regulatory Summary
## 10976 New York Regulatory Summary
## 10977 New York Regulatory Summary
## 10978 New York Regulatory Summary
## 10979 New York Regulatory Summary
## 10980 New York Regulatory Summary
## 10981 New York Regulatory Summary
## 10982 New York Regulatory Summary
## 10983 New York Regulatory Summary
## 10984 New York Regulatory Summary
## 10985 New York Regulatory Summary
## 10986 New York Regulatory Summary
## 10987 New York Regulatory Summary
## 10988 New York Regulatory Summary
## 10989 New York Regulatory Summary
## 10990 New York Regulatory Summary
## 10991 New York Regulatory Summary
## 10992 New York Regulatory Summary
## 10993 New York Regulatory Summary
## 10994 New York Regulatory Summary
## 10995 New York Regulatory Summary
## 10996 New York Regulatory Summary
## 10997 New York Regulatory Summary
## 10998 New York Regulatory Summary
## 10999 New York Regulatory Summary
## 11000 New York Regulatory Summary
## 11001 New York Regulatory Summary
## 11002 New York Regulatory Summary
## 11003 New York Regulatory Summary
## 11004 New York Regulatory Summary
## 11005 New York Regulatory Summary
## 11006 New York Regulatory Summary
## 11007 New York Regulatory Summary
## 11008 New York Regulatory Summary
## 11009 New York Regulatory Summary
## 11010 New York Regulatory Summary
## 11011 New York Regulatory Summary
## 11012 New York Regulatory Summary
## 11013 New York Regulatory Summary
## 11014 New York Regulatory Summary
## 11015 New York Regulatory Summary
## 11016 New York Regulatory Summary
## 11017 New York Regulatory Summary
## 11018 New York Regulatory Summary
## 11019 New York Regulatory Summary
## 11020 New York Regulatory Summary
## 11021 New York Regulatory Summary
## 11022 New York Regulatory Summary
## 11023 New York Regulatory Summary
## 11024 New York Regulatory Summary
## 11025 New York Regulatory Summary
## 11026 New York Regulatory Summary
## 11027 New York Regulatory Summary
## 11028 New York Regulatory Summary
## 11029 New York Regulatory Summary
## 11030 New York Regulatory Summary
## 11031 New York Regulatory Summary
## 11032 New York Regulatory Summary
## 11033 New York Regulatory Summary
## 11034 New York Regulatory Summary
## 11035 New York Regulatory Summary
## 11036 New York Regulatory Summary
## 11037 New York Regulatory Summary
## 11038 New York Regulatory Summary
## 11039 New York Regulatory Summary
## 11040 New York Regulatory Summary
## 11041 New York Regulatory Summary
## 11042 New York Regulatory Summary
## 11043 New York Regulatory Summary
## 11044 New York Regulatory Summary
## 11045 New York Regulatory Summary
## 11046 New York Regulatory Summary
## 11047 New York Regulatory Summary
## 11048 New York Regulatory Summary
## 11049 New York Regulatory Summary
## 11050 New York Regulatory Summary
## 11051 New York Regulatory Summary
## 11052 New York Regulatory Summary
## 11053 New York Regulatory Summary
## 11054 WP-02 Data Request
## 11055 WP-02 Data Request
## 11056 WP-02 Data Request
## 11057 WP-02 Data Request
## 11058 WP-02 Data Request
## 11059 WP-02 Data Request
## 11060 WP-02 Data Request
## 11061 WP-02 Data Request
## 11062 WP-02 Data Request
## 11063 WP-02 Data Request
## 11064 WP-02 Data Request
## 11065 WP-02 Data Request
## 11066 WP-02 Data Request
## 11067 WP-02 Data Request
## 11068 WP-02 Data Request
## 11069 WP-02 Data Request
## 11070 WP-02 Data Request
## 11071 WP-02 Data Request
## 11072 WP-02 Data Request
## 11073 WP-02 Data Request
## 11074 WP-02 Data Request
## 11075 WP-02 Data Request
## 11076 WP-02 Data Request
## 11077 WP-02 Data Request
## 11078 WP-02 Data Request
## 11079 WP-02 Data Request
## 11080 WP-02 Data Request
## 11081 WP-02 Data Request
## 11082 WP-02 Data Request
## 11083 WP-02 Data Request
## 11084 WP-02 Data Request
## 11085 WP-02 Data Request
## 11086 WP-02 Data Request
## 11087 WP-02 Data Request
## 11088 WP-02 Data Request
## 11089 WP-02 Data Request
## 11090 WP-02 Data Request
## 11091 WP-02 Data Request
## 11092 WP-02 Data Request
## 11093 WP-02 Data Request
## 11094 WP-02 Data Request
## 11095 WP-02 Data Request
## 11096 WP-02 Data Request
## 11097 WP-02 Data Request
## 11098 WP-02 Data Request
## 11099 WP-02 Data Request
## 11100 WP-02 Data Request
## 11101 WP-02 Data Request
## 11102 WP-02 Data Request
## 11103 WP-02 Data Request
## 11104 WP-02 Data Request
## 11105 WP-02 Data Request
## 11106 WP-02 Data Request
## 11107 WP-02 Data Request
## 11108 WP-02 Data Request
## 11109 WP-02 Data Request
## 11110 WP-02 Data Request
## 11111 WP-02 Data Request
## sender_status recipient_status
## 1 <NA> <NA>
## 2 <NA> <NA>
## 3 <NA> <NA>
## 4 <NA> <NA>
## 5 <NA> <NA>
## 6 <NA> <NA>
## 7 <NA> <NA>
## 8 <NA> <NA>
## 9 <NA> <NA>
## 10 <NA> <NA>
## 11 <NA> <NA>
## 12 <NA> <NA>
## 13 <NA> <NA>
## 14 <NA> <NA>
## 15 <NA> <NA>
## 16 <NA> <NA>
## 17 <NA> <NA>
## 18 <NA> <NA>
## 19 <NA> <NA>
## 20 <NA> <NA>
## 21 <NA> <NA>
## 22 <NA> <NA>
## 23 <NA> <NA>
## 24 <NA> <NA>
## 25 <NA> <NA>
## 26 <NA> <NA>
## 27 <NA> <NA>
## 28 <NA> <NA>
## 29 <NA> <NA>
## 30 <NA> <NA>
## 31 <NA> <NA>
## 32 <NA> <NA>
## 33 <NA> <NA>
## 34 <NA> <NA>
## 35 <NA> <NA>
## 36 <NA> <NA>
## 37 <NA> <NA>
## 38 <NA> <NA>
## 39 <NA> <NA>
## 40 <NA> <NA>
## 41 <NA> <NA>
## 42 <NA> <NA>
## 43 <NA> <NA>
## 44 <NA> <NA>
## 45 <NA> <NA>
## 46 <NA> <NA>
## 47 <NA> <NA>
## 48 <NA> <NA>
## 49 <NA> <NA>
## 50 <NA> <NA>
## 51 <NA> <NA>
## 52 <NA> <NA>
## 53 <NA> <NA>
## 54 <NA> <NA>
## 55 <NA> <NA>
## 56 <NA> <NA>
## 57 <NA> <NA>
## 58 <NA> <NA>
## 59 <NA> <NA>
## 60 <NA> <NA>
## 61 <NA> <NA>
## 62 <NA> <NA>
## 63 <NA> <NA>
## 64 <NA> <NA>
## 65 <NA> <NA>
## 66 <NA> <NA>
## 67 <NA> <NA>
## 68 <NA> <NA>
## 69 <NA> <NA>
## 70 <NA> <NA>
## 71 <NA> <NA>
## 72 <NA> <NA>
## 73 <NA> <NA>
## 74 <NA> <NA>
## 75 <NA> <NA>
## 76 <NA> <NA>
## 77 <NA> <NA>
## 78 <NA> <NA>
## 79 <NA> <NA>
## 80 <NA> <NA>
## 81 <NA> <NA>
## 82 <NA> <NA>
## 83 <NA> <NA>
## 84 <NA> <NA>
## 85 <NA> <NA>
## 86 <NA> <NA>
## 87 <NA> <NA>
## 88 <NA> <NA>
## 89 <NA> <NA>
## 90 <NA> <NA>
## 91 <NA> <NA>
## 92 <NA> <NA>
## 93 <NA> <NA>
## 94 <NA> <NA>
## 95 <NA> <NA>
## 96 <NA> <NA>
## 97 <NA> <NA>
## 98 <NA> <NA>
## 99 <NA> <NA>
## 100 <NA> <NA>
## 101 <NA> <NA>
## 102 <NA> <NA>
## 103 <NA> <NA>
## 104 <NA> <NA>
## 105 <NA> <NA>
## 106 <NA> <NA>
## 107 <NA> <NA>
## 108 <NA> <NA>
## 109 <NA> <NA>
## 110 <NA> <NA>
## 111 <NA> <NA>
## 112 <NA> <NA>
## 113 <NA> <NA>
## 114 <NA> <NA>
## 115 <NA> <NA>
## 116 <NA> <NA>
## 117 <NA> <NA>
## 118 <NA> <NA>
## 119 <NA> <NA>
## 120 <NA> <NA>
## 121 <NA> <NA>
## 122 <NA> <NA>
## 123 <NA> <NA>
## 124 <NA> <NA>
## 125 <NA> <NA>
## 126 <NA> <NA>
## 127 <NA> <NA>
## 128 <NA> <NA>
## 129 <NA> <NA>
## 130 <NA> <NA>
## 131 <NA> <NA>
## 132 <NA> <NA>
## 133 <NA> <NA>
## 134 <NA> <NA>
## 135 <NA> <NA>
## 136 <NA> <NA>
## 137 <NA> <NA>
## 138 <NA> <NA>
## 139 <NA> <NA>
## 140 <NA> <NA>
## 141 <NA> <NA>
## 142 <NA> <NA>
## 143 <NA> <NA>
## 144 <NA> <NA>
## 145 <NA> <NA>
## 146 <NA> <NA>
## 147 <NA> <NA>
## 148 <NA> <NA>
## 149 <NA> <NA>
## 150 <NA> <NA>
## 151 <NA> <NA>
## 152 <NA> <NA>
## 153 <NA> <NA>
## 154 <NA> <NA>
## 155 <NA> <NA>
## 156 <NA> <NA>
## 157 <NA> <NA>
## 158 <NA> <NA>
## 159 <NA> <NA>
## 160 <NA> <NA>
## 161 <NA> <NA>
## 162 <NA> <NA>
## 163 <NA> <NA>
## 164 <NA> <NA>
## 165 <NA> <NA>
## 166 <NA> <NA>
## 167 <NA> <NA>
## 168 <NA> <NA>
## 169 <NA> <NA>
## 170 <NA> <NA>
## 171 <NA> <NA>
## 172 <NA> <NA>
## 173 <NA> <NA>
## 174 <NA> <NA>
## 175 <NA> <NA>
## 176 <NA> <NA>
## 177 <NA> <NA>
## 178 <NA> <NA>
## 179 <NA> <NA>
## 180 <NA> <NA>
## 181 <NA> <NA>
## 182 <NA> <NA>
## 183 <NA> <NA>
## 184 <NA> <NA>
## 185 <NA> <NA>
## 186 <NA> <NA>
## 187 <NA> <NA>
## 188 <NA> <NA>
## 189 <NA> <NA>
## 190 <NA> <NA>
## 191 <NA> <NA>
## 192 <NA> <NA>
## 193 <NA> <NA>
## 194 <NA> <NA>
## 195 <NA> <NA>
## 196 <NA> <NA>
## 197 <NA> <NA>
## 198 <NA> <NA>
## 199 <NA> <NA>
## 200 <NA> <NA>
## 201 <NA> <NA>
## 202 <NA> <NA>
## 203 <NA> <NA>
## 204 <NA> <NA>
## 205 <NA> <NA>
## 206 <NA> <NA>
## 207 <NA> <NA>
## 208 <NA> <NA>
## 209 <NA> <NA>
## 210 <NA> <NA>
## 211 <NA> <NA>
## 212 <NA> <NA>
## 213 <NA> <NA>
## 214 <NA> <NA>
## 215 <NA> <NA>
## 216 <NA> <NA>
## 217 <NA> <NA>
## 218 <NA> <NA>
## 219 <NA> <NA>
## 220 <NA> <NA>
## 221 <NA> <NA>
## 222 <NA> <NA>
## 223 <NA> <NA>
## 224 <NA> <NA>
## 225 <NA> <NA>
## 226 <NA> <NA>
## 227 <NA> <NA>
## 228 <NA> <NA>
## 229 <NA> <NA>
## 230 <NA> <NA>
## 231 <NA> <NA>
## 232 <NA> <NA>
## 233 <NA> <NA>
## 234 <NA> <NA>
## 235 <NA> <NA>
## 236 <NA> <NA>
## 237 <NA> <NA>
## 238 <NA> <NA>
## 239 <NA> <NA>
## 240 <NA> <NA>
## 241 <NA> <NA>
## 242 <NA> <NA>
## 243 <NA> <NA>
## 244 <NA> <NA>
## 245 <NA> <NA>
## 246 <NA> <NA>
## 247 <NA> <NA>
## 248 <NA> <NA>
## 249 <NA> <NA>
## 250 <NA> <NA>
## 251 <NA> <NA>
## 252 <NA> <NA>
## 253 <NA> <NA>
## 254 <NA> <NA>
## 255 <NA> <NA>
## 256 <NA> <NA>
## 257 <NA> <NA>
## 258 <NA> <NA>
## 259 <NA> <NA>
## 260 <NA> <NA>
## 261 <NA> <NA>
## 262 <NA> <NA>
## 263 <NA> <NA>
## 264 <NA> <NA>
## 265 <NA> <NA>
## 266 <NA> <NA>
## 267 <NA> <NA>
## 268 <NA> <NA>
## 269 <NA> <NA>
## 270 <NA> <NA>
## 271 <NA> <NA>
## 272 <NA> <NA>
## 273 <NA> <NA>
## 274 <NA> <NA>
## 275 <NA> <NA>
## 276 <NA> <NA>
## 277 <NA> <NA>
## 278 <NA> <NA>
## 279 <NA> <NA>
## 280 <NA> <NA>
## 281 <NA> <NA>
## 282 <NA> <NA>
## 283 <NA> <NA>
## 284 <NA> <NA>
## 285 <NA> <NA>
## 286 <NA> <NA>
## 287 <NA> <NA>
## 288 <NA> <NA>
## 289 <NA> <NA>
## 290 <NA> <NA>
## 291 <NA> <NA>
## 292 <NA> <NA>
## 293 <NA> <NA>
## 294 <NA> <NA>
## 295 <NA> <NA>
## 296 <NA> <NA>
## 297 <NA> <NA>
## 298 <NA> <NA>
## 299 <NA> <NA>
## 300 <NA> <NA>
## 301 <NA> <NA>
## 302 <NA> <NA>
## 303 <NA> <NA>
## 304 <NA> <NA>
## 305 <NA> <NA>
## 306 <NA> <NA>
## 307 <NA> <NA>
## 308 <NA> <NA>
## 309 <NA> <NA>
## 310 <NA> <NA>
## 311 <NA> <NA>
## 312 <NA> <NA>
## 313 <NA> <NA>
## 314 <NA> <NA>
## 315 <NA> <NA>
## 316 <NA> <NA>
## 317 <NA> <NA>
## 318 <NA> <NA>
## 319 <NA> <NA>
## 320 <NA> <NA>
## 321 <NA> <NA>
## 322 <NA> <NA>
## 323 <NA> <NA>
## 324 <NA> <NA>
## 325 <NA> <NA>
## 326 <NA> <NA>
## 327 <NA> <NA>
## 328 <NA> <NA>
## 329 <NA> <NA>
## 330 <NA> <NA>
## 331 <NA> <NA>
## 332 <NA> <NA>
## 333 <NA> <NA>
## 334 <NA> <NA>
## 335 <NA> <NA>
## 336 <NA> <NA>
## 337 <NA> <NA>
## 338 <NA> <NA>
## 339 <NA> <NA>
## 340 <NA> <NA>
## 341 <NA> <NA>
## 342 <NA> <NA>
## 343 <NA> <NA>
## 344 <NA> <NA>
## 345 <NA> <NA>
## 346 <NA> <NA>
## 347 <NA> <NA>
## 348 <NA> <NA>
## 349 <NA> <NA>
## 350 <NA> <NA>
## 351 <NA> <NA>
## 352 <NA> <NA>
## 353 <NA> <NA>
## 354 <NA> <NA>
## 355 <NA> <NA>
## 356 <NA> <NA>
## 357 <NA> <NA>
## 358 <NA> <NA>
## 359 <NA> <NA>
## 360 <NA> <NA>
## 361 <NA> <NA>
## 362 <NA> <NA>
## 363 <NA> <NA>
## 364 <NA> <NA>
## 365 <NA> <NA>
## 366 <NA> <NA>
## 367 <NA> <NA>
## 368 <NA> <NA>
## 369 <NA> <NA>
## 370 <NA> <NA>
## 371 <NA> <NA>
## 372 <NA> <NA>
## 373 <NA> <NA>
## 374 <NA> <NA>
## 375 <NA> <NA>
## 376 <NA> <NA>
## 377 <NA> <NA>
## 378 <NA> <NA>
## 379 <NA> <NA>
## 380 <NA> <NA>
## 381 <NA> <NA>
## 382 <NA> <NA>
## 383 <NA> <NA>
## 384 <NA> <NA>
## 385 <NA> <NA>
## 386 <NA> <NA>
## 387 <NA> <NA>
## 388 <NA> <NA>
## 389 <NA> <NA>
## 390 <NA> <NA>
## 391 <NA> <NA>
## 392 <NA> <NA>
## 393 <NA> <NA>
## 394 <NA> <NA>
## 395 <NA> <NA>
## 396 <NA> <NA>
## 397 <NA> <NA>
## 398 <NA> <NA>
## 399 <NA> <NA>
## 400 <NA> <NA>
## 401 <NA> <NA>
## 402 <NA> <NA>
## 403 <NA> <NA>
## 404 <NA> <NA>
## 405 <NA> <NA>
## 406 <NA> <NA>
## 407 <NA> <NA>
## 408 <NA> <NA>
## 409 <NA> <NA>
## 410 <NA> <NA>
## 411 <NA> <NA>
## 412 <NA> <NA>
## 413 <NA> <NA>
## 414 <NA> <NA>
## 415 <NA> <NA>
## 416 <NA> <NA>
## 417 <NA> <NA>
## 418 <NA> <NA>
## 419 <NA> <NA>
## 420 <NA> <NA>
## 421 <NA> <NA>
## 422 <NA> <NA>
## 423 <NA> <NA>
## 424 <NA> <NA>
## 425 <NA> <NA>
## 426 <NA> <NA>
## 427 <NA> <NA>
## 428 <NA> <NA>
## 429 <NA> <NA>
## 430 <NA> <NA>
## 431 <NA> <NA>
## 432 <NA> <NA>
## 433 <NA> <NA>
## 434 <NA> <NA>
## 435 <NA> <NA>
## 436 <NA> <NA>
## 437 <NA> <NA>
## 438 <NA> <NA>
## 439 <NA> <NA>
## 440 <NA> <NA>
## 441 <NA> <NA>
## 442 <NA> <NA>
## 443 <NA> <NA>
## 444 <NA> <NA>
## 445 <NA> <NA>
## 446 <NA> <NA>
## 447 <NA> <NA>
## 448 <NA> <NA>
## 449 <NA> <NA>
## 450 <NA> <NA>
## 451 <NA> <NA>
## 452 <NA> <NA>
## 453 <NA> <NA>
## 454 <NA> <NA>
## 455 <NA> <NA>
## 456 <NA> <NA>
## 457 <NA> <NA>
## 458 <NA> <NA>
## 459 <NA> <NA>
## 460 <NA> <NA>
## 461 <NA> <NA>
## 462 <NA> <NA>
## 463 <NA> <NA>
## 464 <NA> <NA>
## 465 <NA> <NA>
## 466 <NA> <NA>
## 467 <NA> <NA>
## 468 <NA> <NA>
## 469 <NA> <NA>
## 470 <NA> <NA>
## 471 <NA> <NA>
## 472 <NA> <NA>
## 473 <NA> <NA>
## 474 <NA> <NA>
## 475 <NA> <NA>
## 476 <NA> <NA>
## 477 <NA> <NA>
## 478 <NA> <NA>
## 479 <NA> <NA>
## 480 <NA> <NA>
## 481 <NA> <NA>
## 482 <NA> <NA>
## 483 <NA> <NA>
## 484 <NA> <NA>
## 485 <NA> <NA>
## 486 <NA> <NA>
## 487 <NA> <NA>
## 488 <NA> <NA>
## 489 <NA> <NA>
## 490 <NA> <NA>
## 491 <NA> <NA>
## 492 <NA> <NA>
## 493 <NA> <NA>
## 494 <NA> <NA>
## 495 <NA> <NA>
## 496 <NA> <NA>
## 497 <NA> <NA>
## 498 <NA> <NA>
## 499 <NA> <NA>
## 500 <NA> <NA>
## 501 <NA> <NA>
## 502 <NA> <NA>
## 503 <NA> <NA>
## 504 <NA> <NA>
## 505 <NA> <NA>
## 506 <NA> <NA>
## 507 <NA> <NA>
## 508 <NA> <NA>
## 509 <NA> <NA>
## 510 <NA> <NA>
## 511 <NA> <NA>
## 512 <NA> <NA>
## 513 <NA> <NA>
## 514 <NA> <NA>
## 515 <NA> <NA>
## 516 <NA> <NA>
## 517 <NA> <NA>
## 518 <NA> <NA>
## 519 <NA> <NA>
## 520 <NA> <NA>
## 521 <NA> <NA>
## 522 <NA> <NA>
## 523 <NA> <NA>
## 524 <NA> <NA>
## 525 <NA> <NA>
## 526 <NA> <NA>
## 527 <NA> <NA>
## 528 <NA> <NA>
## 529 <NA> <NA>
## 530 <NA> <NA>
## 531 <NA> <NA>
## 532 <NA> <NA>
## 533 <NA> <NA>
## 534 <NA> <NA>
## 535 <NA> <NA>
## 536 <NA> <NA>
## 537 <NA> <NA>
## 538 <NA> <NA>
## 539 <NA> <NA>
## 540 <NA> <NA>
## 541 <NA> <NA>
## 542 <NA> <NA>
## 543 <NA> <NA>
## 544 <NA> <NA>
## 545 <NA> <NA>
## 546 <NA> <NA>
## 547 <NA> <NA>
## 548 <NA> <NA>
## 549 <NA> <NA>
## 550 <NA> <NA>
## 551 <NA> <NA>
## 552 <NA> <NA>
## 553 <NA> <NA>
## 554 <NA> <NA>
## 555 <NA> <NA>
## 556 <NA> <NA>
## 557 <NA> <NA>
## 558 <NA> <NA>
## 559 <NA> <NA>
## 560 <NA> <NA>
## 561 <NA> <NA>
## 562 <NA> <NA>
## 563 <NA> <NA>
## 564 <NA> <NA>
## 565 <NA> <NA>
## 566 <NA> <NA>
## 567 <NA> <NA>
## 568 <NA> <NA>
## 569 <NA> <NA>
## 570 <NA> <NA>
## 571 <NA> <NA>
## 572 <NA> <NA>
## 573 <NA> <NA>
## 574 <NA> <NA>
## 575 <NA> <NA>
## 576 <NA> <NA>
## 577 <NA> <NA>
## 578 <NA> <NA>
## 579 <NA> <NA>
## 580 <NA> <NA>
## 581 <NA> <NA>
## 582 <NA> <NA>
## 583 <NA> <NA>
## 584 <NA> <NA>
## 585 <NA> <NA>
## 586 <NA> <NA>
## 587 <NA> <NA>
## 588 <NA> <NA>
## 589 <NA> <NA>
## 590 <NA> <NA>
## 591 <NA> <NA>
## 592 <NA> <NA>
## 593 <NA> <NA>
## 594 <NA> <NA>
## 595 <NA> <NA>
## 596 <NA> <NA>
## 597 <NA> <NA>
## 598 <NA> <NA>
## 599 <NA> <NA>
## 600 <NA> <NA>
## 601 <NA> <NA>
## 602 <NA> <NA>
## 603 <NA> <NA>
## 604 <NA> <NA>
## 605 <NA> <NA>
## 606 <NA> <NA>
## 607 <NA> <NA>
## 608 <NA> <NA>
## 609 <NA> <NA>
## 610 <NA> <NA>
## 611 <NA> <NA>
## 612 <NA> <NA>
## 613 <NA> <NA>
## 614 <NA> <NA>
## 615 <NA> <NA>
## 616 <NA> <NA>
## 617 <NA> <NA>
## 618 <NA> <NA>
## 619 <NA> <NA>
## 620 <NA> <NA>
## 621 <NA> <NA>
## 622 <NA> <NA>
## 623 <NA> <NA>
## 624 <NA> <NA>
## 625 <NA> <NA>
## 626 <NA> <NA>
## 627 <NA> <NA>
## 628 <NA> <NA>
## 629 <NA> <NA>
## 630 <NA> <NA>
## 631 <NA> <NA>
## 632 <NA> <NA>
## 633 <NA> <NA>
## 634 <NA> <NA>
## 635 <NA> <NA>
## 636 <NA> <NA>
## 637 <NA> <NA>
## 638 <NA> <NA>
## 639 <NA> <NA>
## 640 <NA> <NA>
## 641 <NA> <NA>
## 642 <NA> <NA>
## 643 <NA> <NA>
## 644 <NA> <NA>
## 645 <NA> <NA>
## 646 <NA> <NA>
## 647 <NA> <NA>
## 648 <NA> <NA>
## 649 <NA> <NA>
## 650 <NA> <NA>
## 651 <NA> <NA>
## 652 <NA> <NA>
## 653 <NA> <NA>
## 654 <NA> <NA>
## 655 <NA> <NA>
## 656 <NA> <NA>
## 657 <NA> <NA>
## 658 <NA> <NA>
## 659 <NA> <NA>
## 660 <NA> <NA>
## 661 <NA> <NA>
## 662 <NA> <NA>
## 663 <NA> <NA>
## 664 <NA> <NA>
## 665 <NA> <NA>
## 666 <NA> <NA>
## 667 <NA> <NA>
## 668 <NA> <NA>
## 669 <NA> <NA>
## 670 <NA> <NA>
## 671 <NA> <NA>
## 672 <NA> <NA>
## 673 <NA> <NA>
## 674 <NA> <NA>
## 675 <NA> <NA>
## 676 <NA> <NA>
## 677 <NA> <NA>
## 678 <NA> <NA>
## 679 <NA> <NA>
## 680 <NA> <NA>
## 681 <NA> <NA>
## 682 <NA> <NA>
## 683 <NA> <NA>
## 684 <NA> <NA>
## 685 <NA> <NA>
## 686 <NA> <NA>
## 687 <NA> <NA>
## 688 <NA> <NA>
## 689 <NA> <NA>
## 690 <NA> <NA>
## 691 <NA> <NA>
## 692 <NA> <NA>
## 693 <NA> <NA>
## 694 <NA> <NA>
## 695 <NA> <NA>
## 696 <NA> <NA>
## 697 <NA> <NA>
## 698 <NA> <NA>
## 699 <NA> <NA>
## 700 <NA> <NA>
## 701 <NA> <NA>
## 702 <NA> <NA>
## 703 <NA> <NA>
## 704 <NA> <NA>
## 705 <NA> <NA>
## 706 <NA> <NA>
## 707 <NA> <NA>
## 708 <NA> <NA>
## 709 <NA> <NA>
## 710 <NA> <NA>
## 711 <NA> <NA>
## 712 <NA> <NA>
## 713 <NA> <NA>
## 714 <NA> <NA>
## 715 <NA> <NA>
## 716 <NA> <NA>
## 717 <NA> <NA>
## 718 <NA> <NA>
## 719 <NA> <NA>
## 720 <NA> <NA>
## 721 <NA> <NA>
## 722 <NA> <NA>
## 723 <NA> <NA>
## 724 <NA> <NA>
## 725 <NA> <NA>
## 726 <NA> <NA>
## 727 <NA> <NA>
## 728 <NA> <NA>
## 729 <NA> <NA>
## 730 <NA> <NA>
## 731 <NA> <NA>
## 732 <NA> <NA>
## 733 <NA> <NA>
## 734 <NA> <NA>
## 735 <NA> <NA>
## 736 <NA> <NA>
## 737 <NA> <NA>
## 738 <NA> <NA>
## 739 <NA> <NA>
## 740 <NA> <NA>
## 741 <NA> <NA>
## 742 <NA> <NA>
## 743 <NA> <NA>
## 744 <NA> <NA>
## 745 <NA> <NA>
## 746 <NA> <NA>
## 747 <NA> <NA>
## 748 <NA> <NA>
## 749 <NA> <NA>
## 750 <NA> <NA>
## 751 <NA> <NA>
## 752 <NA> <NA>
## 753 <NA> <NA>
## 754 <NA> <NA>
## 755 <NA> <NA>
## 756 <NA> <NA>
## 757 <NA> <NA>
## 758 <NA> <NA>
## 759 <NA> <NA>
## 760 <NA> <NA>
## 761 <NA> <NA>
## 762 <NA> <NA>
## 763 <NA> <NA>
## 764 <NA> <NA>
## 765 <NA> <NA>
## 766 <NA> <NA>
## 767 <NA> <NA>
## 768 <NA> <NA>
## 769 <NA> <NA>
## 770 <NA> <NA>
## 771 <NA> <NA>
## 772 <NA> <NA>
## 773 <NA> <NA>
## 774 <NA> <NA>
## 775 <NA> <NA>
## 776 <NA> <NA>
## 777 <NA> <NA>
## 778 <NA> <NA>
## 779 <NA> <NA>
## 780 <NA> <NA>
## 781 <NA> <NA>
## 782 <NA> <NA>
## 783 <NA> <NA>
## 784 <NA> <NA>
## 785 <NA> <NA>
## 786 <NA> <NA>
## 787 <NA> <NA>
## 788 <NA> <NA>
## 789 <NA> <NA>
## 790 <NA> <NA>
## 791 <NA> <NA>
## 792 <NA> <NA>
## 793 <NA> <NA>
## 794 <NA> <NA>
## 795 <NA> <NA>
## 796 <NA> <NA>
## 797 <NA> <NA>
## 798 <NA> <NA>
## 799 <NA> <NA>
## 800 <NA> <NA>
## 801 <NA> <NA>
## 802 <NA> <NA>
## 803 <NA> <NA>
## 804 <NA> <NA>
## 805 <NA> <NA>
## 806 <NA> <NA>
## 807 <NA> <NA>
## 808 <NA> <NA>
## 809 <NA> <NA>
## 810 <NA> <NA>
## 811 <NA> <NA>
## 812 <NA> <NA>
## 813 <NA> <NA>
## 814 <NA> <NA>
## 815 <NA> <NA>
## 816 <NA> <NA>
## 817 <NA> <NA>
## 818 <NA> <NA>
## 819 <NA> <NA>
## 820 <NA> <NA>
## 821 <NA> <NA>
## 822 <NA> <NA>
## 823 <NA> <NA>
## 824 <NA> <NA>
## 825 <NA> <NA>
## 826 <NA> <NA>
## 827 <NA> <NA>
## 828 <NA> <NA>
## 829 <NA> <NA>
## 830 <NA> <NA>
## 831 <NA> <NA>
## 832 <NA> <NA>
## 833 <NA> <NA>
## 834 <NA> <NA>
## 835 <NA> <NA>
## 836 <NA> <NA>
## 837 <NA> <NA>
## 838 <NA> <NA>
## 839 <NA> <NA>
## 840 <NA> <NA>
## 841 <NA> <NA>
## 842 <NA> <NA>
## 843 <NA> <NA>
## 844 <NA> <NA>
## 845 <NA> <NA>
## 846 <NA> <NA>
## 847 <NA> <NA>
## 848 <NA> <NA>
## 849 <NA> <NA>
## 850 <NA> <NA>
## 851 <NA> <NA>
## 852 <NA> <NA>
## 853 <NA> <NA>
## 854 <NA> <NA>
## 855 <NA> <NA>
## 856 <NA> <NA>
## 857 <NA> <NA>
## 858 <NA> <NA>
## 859 <NA> <NA>
## 860 <NA> <NA>
## 861 <NA> <NA>
## 862 <NA> <NA>
## 863 <NA> <NA>
## 864 <NA> <NA>
## 865 <NA> <NA>
## 866 <NA> <NA>
## 867 <NA> <NA>
## 868 <NA> <NA>
## 869 <NA> <NA>
## 870 <NA> <NA>
## 871 <NA> <NA>
## 872 <NA> <NA>
## 873 <NA> <NA>
## 874 <NA> <NA>
## 875 <NA> <NA>
## 876 <NA> <NA>
## 877 <NA> <NA>
## 878 <NA> <NA>
## 879 <NA> <NA>
## 880 <NA> <NA>
## 881 <NA> <NA>
## 882 <NA> <NA>
## 883 <NA> <NA>
## 884 <NA> <NA>
## 885 <NA> <NA>
## 886 <NA> <NA>
## 887 <NA> <NA>
## 888 <NA> <NA>
## 889 <NA> <NA>
## 890 <NA> <NA>
## 891 <NA> <NA>
## 892 <NA> <NA>
## 893 <NA> <NA>
## 894 <NA> <NA>
## 895 <NA> <NA>
## 896 <NA> <NA>
## 897 <NA> <NA>
## 898 <NA> <NA>
## 899 <NA> <NA>
## 900 <NA> <NA>
## 901 <NA> <NA>
## 902 <NA> <NA>
## 903 <NA> <NA>
## 904 <NA> <NA>
## 905 <NA> <NA>
## 906 <NA> <NA>
## 907 <NA> <NA>
## 908 <NA> <NA>
## 909 <NA> <NA>
## 910 <NA> <NA>
## 911 <NA> <NA>
## 912 <NA> <NA>
## 913 <NA> <NA>
## 914 <NA> <NA>
## 915 <NA> <NA>
## 916 <NA> <NA>
## 917 <NA> <NA>
## 918 <NA> <NA>
## 919 <NA> <NA>
## 920 <NA> <NA>
## 921 <NA> <NA>
## 922 <NA> <NA>
## 923 <NA> <NA>
## 924 <NA> <NA>
## 925 <NA> <NA>
## 926 <NA> <NA>
## 927 <NA> <NA>
## 928 <NA> <NA>
## 929 <NA> <NA>
## 930 <NA> <NA>
## 931 <NA> <NA>
## 932 <NA> <NA>
## 933 <NA> <NA>
## 934 <NA> <NA>
## 935 <NA> <NA>
## 936 <NA> <NA>
## 937 <NA> <NA>
## 938 <NA> <NA>
## 939 <NA> <NA>
## 940 <NA> <NA>
## 941 <NA> <NA>
## 942 <NA> <NA>
## 943 <NA> <NA>
## 944 <NA> <NA>
## 945 <NA> <NA>
## 946 <NA> <NA>
## 947 <NA> <NA>
## 948 <NA> <NA>
## 949 <NA> <NA>
## 950 <NA> <NA>
## 951 <NA> <NA>
## 952 <NA> <NA>
## 953 <NA> <NA>
## 954 <NA> <NA>
## 955 <NA> <NA>
## 956 <NA> <NA>
## 957 <NA> <NA>
## 958 <NA> <NA>
## 959 <NA> <NA>
## 960 <NA> <NA>
## 961 <NA> <NA>
## 962 <NA> <NA>
## 963 <NA> <NA>
## 964 <NA> <NA>
## 965 <NA> <NA>
## 966 <NA> <NA>
## 967 <NA> <NA>
## 968 <NA> <NA>
## 969 <NA> <NA>
## 970 <NA> <NA>
## 971 <NA> <NA>
## 972 <NA> <NA>
## 973 <NA> <NA>
## 974 <NA> <NA>
## 975 <NA> <NA>
## 976 <NA> <NA>
## 977 <NA> <NA>
## 978 <NA> <NA>
## 979 <NA> <NA>
## 980 <NA> <NA>
## 981 <NA> <NA>
## 982 <NA> <NA>
## 983 <NA> <NA>
## 984 <NA> <NA>
## 985 <NA> <NA>
## 986 <NA> <NA>
## 987 <NA> <NA>
## 988 <NA> <NA>
## 989 <NA> <NA>
## 990 <NA> <NA>
## 991 <NA> <NA>
## 992 <NA> <NA>
## 993 <NA> <NA>
## 994 <NA> <NA>
## 995 <NA> <NA>
## 996 <NA> <NA>
## 997 <NA> <NA>
## 998 <NA> <NA>
## 999 <NA> <NA>
## 1000 <NA> <NA>
## 1001 <NA> <NA>
## 1002 <NA> <NA>
## 1003 <NA> <NA>
## 1004 <NA> <NA>
## 1005 <NA> <NA>
## 1006 <NA> <NA>
## 1007 <NA> <NA>
## 1008 <NA> <NA>
## 1009 <NA> <NA>
## 1010 <NA> <NA>
## 1011 <NA> <NA>
## 1012 <NA> <NA>
## 1013 <NA> <NA>
## 1014 <NA> <NA>
## 1015 <NA> <NA>
## 1016 <NA> <NA>
## 1017 <NA> <NA>
## 1018 <NA> <NA>
## 1019 <NA> <NA>
## 1020 <NA> <NA>
## 1021 <NA> <NA>
## 1022 <NA> <NA>
## 1023 <NA> <NA>
## 1024 <NA> <NA>
## 1025 <NA> <NA>
## 1026 <NA> <NA>
## 1027 <NA> <NA>
## 1028 <NA> <NA>
## 1029 <NA> <NA>
## 1030 <NA> <NA>
## 1031 <NA> <NA>
## 1032 <NA> <NA>
## 1033 <NA> <NA>
## 1034 <NA> <NA>
## 1035 <NA> <NA>
## 1036 <NA> <NA>
## 1037 <NA> <NA>
## 1038 <NA> <NA>
## 1039 <NA> <NA>
## 1040 <NA> <NA>
## 1041 <NA> <NA>
## 1042 <NA> <NA>
## 1043 <NA> <NA>
## 1044 <NA> <NA>
## 1045 <NA> <NA>
## 1046 <NA> <NA>
## 1047 <NA> <NA>
## 1048 <NA> <NA>
## 1049 <NA> <NA>
## 1050 <NA> <NA>
## 1051 <NA> <NA>
## 1052 <NA> <NA>
## 1053 <NA> <NA>
## 1054 <NA> <NA>
## 1055 <NA> <NA>
## 1056 <NA> <NA>
## 1057 <NA> <NA>
## 1058 <NA> <NA>
## 1059 <NA> <NA>
## 1060 <NA> <NA>
## 1061 <NA> <NA>
## 1062 <NA> <NA>
## 1063 <NA> <NA>
## 1064 <NA> <NA>
## 1065 <NA> <NA>
## 1066 <NA> <NA>
## 1067 <NA> <NA>
## 1068 <NA> <NA>
## 1069 <NA> <NA>
## 1070 <NA> <NA>
## 1071 <NA> <NA>
## 1072 <NA> <NA>
## 1073 <NA> <NA>
## 1074 <NA> <NA>
## 1075 <NA> <NA>
## 1076 <NA> <NA>
## 1077 <NA> <NA>
## 1078 <NA> <NA>
## 1079 <NA> <NA>
## 1080 <NA> <NA>
## 1081 <NA> <NA>
## 1082 <NA> <NA>
## 1083 <NA> <NA>
## 1084 <NA> <NA>
## 1085 <NA> <NA>
## 1086 <NA> <NA>
## 1087 <NA> <NA>
## 1088 <NA> <NA>
## 1089 <NA> <NA>
## 1090 <NA> <NA>
## 1091 <NA> <NA>
## 1092 <NA> <NA>
## 1093 <NA> <NA>
## 1094 <NA> <NA>
## 1095 <NA> <NA>
## 1096 <NA> <NA>
## 1097 <NA> <NA>
## 1098 <NA> <NA>
## 1099 <NA> <NA>
## 1100 <NA> <NA>
## 1101 <NA> <NA>
## 1102 <NA> <NA>
## 1103 <NA> <NA>
## 1104 <NA> <NA>
## 1105 <NA> <NA>
## 1106 <NA> <NA>
## 1107 <NA> <NA>
## 1108 <NA> <NA>
## 1109 <NA> <NA>
## 1110 <NA> <NA>
## 1111 <NA> <NA>
## 1112 <NA> <NA>
## 1113 <NA> <NA>
## 1114 <NA> <NA>
## 1115 <NA> <NA>
## 1116 <NA> <NA>
## 1117 <NA> <NA>
## 1118 <NA> <NA>
## 1119 <NA> <NA>
## 1120 <NA> <NA>
## 1121 <NA> <NA>
## 1122 <NA> <NA>
## 1123 <NA> <NA>
## 1124 <NA> <NA>
## 1125 <NA> <NA>
## 1126 <NA> <NA>
## 1127 <NA> <NA>
## 1128 <NA> <NA>
## 1129 <NA> <NA>
## 1130 <NA> <NA>
## 1131 <NA> <NA>
## 1132 <NA> <NA>
## 1133 <NA> <NA>
## 1134 <NA> <NA>
## 1135 <NA> <NA>
## 1136 <NA> <NA>
## 1137 <NA> <NA>
## 1138 <NA> <NA>
## 1139 <NA> <NA>
## 1140 <NA> <NA>
## 1141 <NA> <NA>
## 1142 <NA> <NA>
## 1143 <NA> <NA>
## 1144 <NA> <NA>
## 1145 <NA> <NA>
## 1146 <NA> <NA>
## 1147 <NA> <NA>
## 1148 <NA> <NA>
## 1149 <NA> <NA>
## 1150 <NA> <NA>
## 1151 <NA> <NA>
## 1152 <NA> <NA>
## 1153 <NA> <NA>
## 1154 <NA> <NA>
## 1155 <NA> <NA>
## 1156 <NA> <NA>
## 1157 <NA> <NA>
## 1158 <NA> <NA>
## 1159 <NA> <NA>
## 1160 <NA> <NA>
## 1161 <NA> <NA>
## 1162 <NA> <NA>
## 1163 <NA> <NA>
## 1164 <NA> <NA>
## 1165 <NA> <NA>
## 1166 <NA> <NA>
## 1167 <NA> <NA>
## 1168 <NA> <NA>
## 1169 <NA> <NA>
## 1170 <NA> <NA>
## 1171 <NA> <NA>
## 1172 <NA> <NA>
## 1173 <NA> <NA>
## 1174 <NA> <NA>
## 1175 <NA> <NA>
## 1176 <NA> <NA>
## 1177 <NA> <NA>
## 1178 <NA> <NA>
## 1179 <NA> <NA>
## 1180 <NA> <NA>
## 1181 <NA> <NA>
## 1182 <NA> <NA>
## 1183 <NA> <NA>
## 1184 <NA> <NA>
## 1185 <NA> <NA>
## 1186 <NA> <NA>
## 1187 <NA> <NA>
## 1188 <NA> <NA>
## 1189 <NA> <NA>
## 1190 <NA> <NA>
## 1191 <NA> <NA>
## 1192 <NA> <NA>
## 1193 <NA> <NA>
## 1194 <NA> <NA>
## 1195 <NA> <NA>
## 1196 <NA> <NA>
## 1197 <NA> <NA>
## 1198 <NA> <NA>
## 1199 <NA> <NA>
## 1200 <NA> <NA>
## 1201 <NA> <NA>
## 1202 <NA> <NA>
## 1203 <NA> <NA>
## 1204 <NA> <NA>
## 1205 <NA> <NA>
## 1206 <NA> <NA>
## 1207 <NA> <NA>
## 1208 <NA> <NA>
## 1209 <NA> <NA>
## 1210 <NA> <NA>
## 1211 <NA> <NA>
## 1212 <NA> <NA>
## 1213 <NA> <NA>
## 1214 <NA> <NA>
## 1215 <NA> <NA>
## 1216 <NA> <NA>
## 1217 <NA> <NA>
## 1218 <NA> <NA>
## 1219 <NA> <NA>
## 1220 <NA> <NA>
## 1221 <NA> <NA>
## 1222 <NA> <NA>
## 1223 <NA> <NA>
## 1224 <NA> <NA>
## 1225 <NA> <NA>
## 1226 <NA> <NA>
## 1227 <NA> <NA>
## 1228 <NA> <NA>
## 1229 <NA> <NA>
## 1230 <NA> <NA>
## 1231 <NA> <NA>
## 1232 <NA> <NA>
## 1233 <NA> <NA>
## 1234 <NA> <NA>
## 1235 <NA> <NA>
## 1236 <NA> <NA>
## 1237 <NA> <NA>
## 1238 <NA> <NA>
## 1239 <NA> <NA>
## 1240 <NA> <NA>
## 1241 <NA> <NA>
## 1242 <NA> <NA>
## 1243 <NA> <NA>
## 1244 <NA> <NA>
## 1245 <NA> <NA>
## 1246 <NA> <NA>
## 1247 <NA> <NA>
## 1248 <NA> <NA>
## 1249 <NA> <NA>
## 1250 <NA> <NA>
## 1251 <NA> <NA>
## 1252 <NA> <NA>
## 1253 <NA> <NA>
## 1254 <NA> <NA>
## 1255 <NA> <NA>
## 1256 <NA> <NA>
## 1257 <NA> <NA>
## 1258 <NA> <NA>
## 1259 <NA> <NA>
## 1260 <NA> <NA>
## 1261 <NA> <NA>
## 1262 <NA> <NA>
## 1263 <NA> <NA>
## 1264 <NA> <NA>
## 1265 <NA> <NA>
## 1266 <NA> <NA>
## 1267 <NA> <NA>
## 1268 <NA> <NA>
## 1269 <NA> <NA>
## 1270 <NA> <NA>
## 1271 <NA> <NA>
## 1272 <NA> <NA>
## 1273 <NA> <NA>
## 1274 <NA> <NA>
## 1275 <NA> <NA>
## 1276 <NA> <NA>
## 1277 <NA> <NA>
## 1278 <NA> <NA>
## 1279 <NA> <NA>
## 1280 <NA> <NA>
## 1281 <NA> <NA>
## 1282 <NA> <NA>
## 1283 <NA> <NA>
## 1284 <NA> <NA>
## 1285 <NA> <NA>
## 1286 <NA> <NA>
## 1287 <NA> <NA>
## 1288 <NA> <NA>
## 1289 <NA> <NA>
## 1290 <NA> <NA>
## 1291 <NA> <NA>
## 1292 <NA> <NA>
## 1293 <NA> <NA>
## 1294 <NA> <NA>
## 1295 <NA> <NA>
## 1296 <NA> <NA>
## 1297 <NA> <NA>
## 1298 <NA> <NA>
## 1299 <NA> <NA>
## 1300 <NA> <NA>
## 1301 <NA> <NA>
## 1302 <NA> <NA>
## 1303 <NA> <NA>
## 1304 <NA> <NA>
## 1305 <NA> <NA>
## 1306 <NA> <NA>
## 1307 <NA> <NA>
## 1308 <NA> <NA>
## 1309 <NA> <NA>
## 1310 <NA> <NA>
## 1311 <NA> <NA>
## 1312 <NA> <NA>
## 1313 <NA> <NA>
## 1314 <NA> <NA>
## 1315 <NA> <NA>
## 1316 <NA> <NA>
## 1317 <NA> <NA>
## 1318 <NA> <NA>
## 1319 <NA> <NA>
## 1320 <NA> <NA>
## 1321 <NA> <NA>
## 1322 <NA> <NA>
## 1323 <NA> <NA>
## 1324 <NA> <NA>
## 1325 <NA> <NA>
## 1326 <NA> <NA>
## 1327 <NA> <NA>
## 1328 <NA> <NA>
## 1329 <NA> <NA>
## 1330 <NA> <NA>
## 1331 <NA> <NA>
## 1332 <NA> <NA>
## 1333 <NA> <NA>
## 1334 <NA> <NA>
## 1335 <NA> <NA>
## 1336 <NA> <NA>
## 1337 <NA> <NA>
## 1338 <NA> <NA>
## 1339 <NA> <NA>
## 1340 <NA> <NA>
## 1341 <NA> <NA>
## 1342 <NA> <NA>
## 1343 <NA> <NA>
## 1344 <NA> <NA>
## 1345 <NA> <NA>
## 1346 <NA> <NA>
## 1347 <NA> <NA>
## 1348 <NA> <NA>
## 1349 <NA> <NA>
## 1350 <NA> <NA>
## 1351 <NA> <NA>
## 1352 <NA> <NA>
## 1353 <NA> <NA>
## 1354 <NA> <NA>
## 1355 <NA> <NA>
## 1356 <NA> <NA>
## 1357 <NA> <NA>
## 1358 <NA> <NA>
## 1359 <NA> <NA>
## 1360 <NA> <NA>
## 1361 <NA> <NA>
## 1362 <NA> <NA>
## 1363 <NA> <NA>
## 1364 <NA> <NA>
## 1365 <NA> <NA>
## 1366 <NA> <NA>
## 1367 <NA> <NA>
## 1368 <NA> <NA>
## 1369 <NA> <NA>
## 1370 <NA> <NA>
## 1371 <NA> <NA>
## 1372 <NA> <NA>
## 1373 <NA> <NA>
## 1374 <NA> <NA>
## 1375 <NA> <NA>
## 1376 <NA> <NA>
## 1377 <NA> <NA>
## 1378 <NA> <NA>
## 1379 <NA> <NA>
## 1380 <NA> <NA>
## 1381 <NA> <NA>
## 1382 <NA> <NA>
## 1383 <NA> <NA>
## 1384 <NA> <NA>
## 1385 <NA> <NA>
## 1386 <NA> <NA>
## 1387 <NA> <NA>
## 1388 <NA> <NA>
## 1389 <NA> <NA>
## 1390 <NA> <NA>
## 1391 <NA> <NA>
## 1392 <NA> <NA>
## 1393 <NA> <NA>
## 1394 <NA> <NA>
## 1395 <NA> <NA>
## 1396 <NA> <NA>
## 1397 <NA> <NA>
## 1398 <NA> <NA>
## 1399 <NA> <NA>
## 1400 <NA> <NA>
## 1401 <NA> <NA>
## 1402 <NA> <NA>
## 1403 <NA> <NA>
## 1404 <NA> <NA>
## 1405 <NA> <NA>
## 1406 <NA> <NA>
## 1407 <NA> <NA>
## 1408 <NA> <NA>
## 1409 <NA> <NA>
## 1410 <NA> <NA>
## 1411 <NA> <NA>
## 1412 <NA> <NA>
## 1413 <NA> <NA>
## 1414 <NA> <NA>
## 1415 <NA> <NA>
## 1416 <NA> <NA>
## 1417 <NA> <NA>
## 1418 <NA> <NA>
## 1419 <NA> <NA>
## 1420 <NA> <NA>
## 1421 <NA> <NA>
## 1422 <NA> <NA>
## 1423 <NA> <NA>
## 1424 <NA> <NA>
## 1425 <NA> <NA>
## 1426 <NA> <NA>
## 1427 <NA> <NA>
## 1428 <NA> <NA>
## 1429 <NA> <NA>
## 1430 <NA> <NA>
## 1431 <NA> <NA>
## 1432 <NA> <NA>
## 1433 <NA> <NA>
## 1434 <NA> <NA>
## 1435 <NA> <NA>
## 1436 <NA> <NA>
## 1437 <NA> <NA>
## 1438 <NA> <NA>
## 1439 <NA> <NA>
## 1440 <NA> <NA>
## 1441 <NA> <NA>
## 1442 <NA> <NA>
## 1443 <NA> <NA>
## 1444 <NA> <NA>
## 1445 <NA> <NA>
## 1446 <NA> <NA>
## 1447 <NA> <NA>
## 1448 <NA> <NA>
## 1449 <NA> <NA>
## 1450 <NA> <NA>
## 1451 <NA> <NA>
## 1452 <NA> <NA>
## 1453 <NA> <NA>
## 1454 <NA> <NA>
## 1455 <NA> <NA>
## 1456 <NA> <NA>
## 1457 <NA> <NA>
## 1458 <NA> <NA>
## 1459 <NA> <NA>
## 1460 <NA> <NA>
## 1461 <NA> <NA>
## 1462 <NA> <NA>
## 1463 <NA> <NA>
## 1464 <NA> <NA>
## 1465 <NA> <NA>
## 1466 <NA> <NA>
## 1467 <NA> <NA>
## 1468 <NA> <NA>
## 1469 <NA> <NA>
## 1470 <NA> <NA>
## 1471 <NA> <NA>
## 1472 <NA> <NA>
## 1473 <NA> <NA>
## 1474 <NA> <NA>
## 1475 <NA> <NA>
## 1476 <NA> <NA>
## 1477 <NA> <NA>
## 1478 <NA> <NA>
## 1479 <NA> <NA>
## 1480 <NA> <NA>
## 1481 <NA> <NA>
## 1482 <NA> <NA>
## 1483 <NA> <NA>
## 1484 <NA> <NA>
## 1485 <NA> <NA>
## 1486 <NA> <NA>
## 1487 <NA> <NA>
## 1488 <NA> <NA>
## 1489 <NA> <NA>
## 1490 <NA> <NA>
## 1491 <NA> <NA>
## 1492 <NA> <NA>
## 1493 <NA> <NA>
## 1494 <NA> <NA>
## 1495 <NA> <NA>
## 1496 <NA> <NA>
## 1497 <NA> <NA>
## 1498 <NA> <NA>
## 1499 <NA> <NA>
## 1500 <NA> <NA>
## 1501 <NA> <NA>
## 1502 <NA> <NA>
## 1503 <NA> <NA>
## 1504 <NA> <NA>
## 1505 <NA> <NA>
## 1506 <NA> <NA>
## 1507 <NA> <NA>
## 1508 <NA> <NA>
## 1509 <NA> <NA>
## 1510 <NA> <NA>
## 1511 <NA> <NA>
## 1512 <NA> <NA>
## 1513 <NA> <NA>
## 1514 <NA> <NA>
## 1515 <NA> <NA>
## 1516 <NA> <NA>
## 1517 <NA> <NA>
## 1518 <NA> <NA>
## 1519 <NA> <NA>
## 1520 <NA> <NA>
## 1521 <NA> <NA>
## 1522 <NA> <NA>
## 1523 <NA> <NA>
## 1524 <NA> <NA>
## 1525 <NA> <NA>
## 1526 <NA> <NA>
## 1527 <NA> <NA>
## 1528 <NA> <NA>
## 1529 <NA> <NA>
## 1530 <NA> <NA>
## 1531 <NA> <NA>
## 1532 <NA> <NA>
## 1533 <NA> <NA>
## 1534 <NA> <NA>
## 1535 <NA> <NA>
## 1536 <NA> <NA>
## 1537 <NA> <NA>
## 1538 <NA> <NA>
## 1539 <NA> <NA>
## 1540 <NA> <NA>
## 1541 <NA> <NA>
## 1542 <NA> <NA>
## 1543 <NA> <NA>
## 1544 <NA> <NA>
## 1545 <NA> <NA>
## 1546 <NA> <NA>
## 1547 <NA> <NA>
## 1548 <NA> <NA>
## 1549 <NA> <NA>
## 1550 <NA> <NA>
## 1551 <NA> <NA>
## 1552 <NA> <NA>
## 1553 <NA> <NA>
## 1554 <NA> <NA>
## 1555 <NA> <NA>
## 1556 <NA> <NA>
## 1557 <NA> <NA>
## 1558 <NA> <NA>
## 1559 <NA> <NA>
## 1560 <NA> <NA>
## 1561 <NA> <NA>
## 1562 <NA> <NA>
## 1563 <NA> <NA>
## 1564 <NA> <NA>
## 1565 <NA> <NA>
## 1566 <NA> <NA>
## 1567 <NA> <NA>
## 1568 <NA> <NA>
## 1569 <NA> <NA>
## 1570 <NA> <NA>
## 1571 <NA> <NA>
## 1572 <NA> <NA>
## 1573 <NA> <NA>
## 1574 <NA> <NA>
## 1575 <NA> <NA>
## 1576 <NA> <NA>
## 1577 <NA> <NA>
## 1578 <NA> <NA>
## 1579 <NA> <NA>
## 1580 <NA> <NA>
## 1581 <NA> <NA>
## 1582 <NA> <NA>
## 1583 <NA> <NA>
## 1584 <NA> <NA>
## 1585 <NA> <NA>
## 1586 <NA> <NA>
## 1587 <NA> <NA>
## 1588 <NA> <NA>
## 1589 <NA> <NA>
## 1590 <NA> <NA>
## 1591 <NA> <NA>
## 1592 <NA> <NA>
## 1593 <NA> <NA>
## 1594 <NA> <NA>
## 1595 <NA> <NA>
## 1596 <NA> <NA>
## 1597 <NA> <NA>
## 1598 <NA> <NA>
## 1599 <NA> <NA>
## 1600 <NA> <NA>
## 1601 <NA> <NA>
## 1602 <NA> <NA>
## 1603 <NA> <NA>
## 1604 <NA> <NA>
## 1605 <NA> <NA>
## 1606 <NA> <NA>
## 1607 <NA> <NA>
## 1608 <NA> <NA>
## 1609 <NA> <NA>
## 1610 <NA> <NA>
## 1611 <NA> <NA>
## 1612 <NA> <NA>
## 1613 <NA> <NA>
## 1614 <NA> <NA>
## 1615 <NA> <NA>
## 1616 <NA> <NA>
## 1617 <NA> <NA>
## 1618 <NA> <NA>
## 1619 <NA> <NA>
## 1620 <NA> <NA>
## 1621 <NA> <NA>
## 1622 <NA> <NA>
## 1623 <NA> <NA>
## 1624 <NA> <NA>
## 1625 <NA> <NA>
## 1626 <NA> <NA>
## 1627 <NA> <NA>
## 1628 <NA> <NA>
## 1629 <NA> <NA>
## 1630 <NA> <NA>
## 1631 <NA> <NA>
## 1632 <NA> <NA>
## 1633 <NA> <NA>
## 1634 <NA> <NA>
## 1635 <NA> <NA>
## 1636 <NA> <NA>
## 1637 <NA> <NA>
## 1638 <NA> <NA>
## 1639 <NA> <NA>
## 1640 <NA> <NA>
## 1641 <NA> <NA>
## 1642 <NA> <NA>
## 1643 <NA> <NA>
## 1644 <NA> <NA>
## 1645 <NA> <NA>
## 1646 <NA> <NA>
## 1647 <NA> <NA>
## 1648 <NA> <NA>
## 1649 <NA> <NA>
## 1650 <NA> <NA>
## 1651 <NA> <NA>
## 1652 <NA> <NA>
## 1653 <NA> <NA>
## 1654 <NA> <NA>
## 1655 <NA> <NA>
## 1656 <NA> <NA>
## 1657 <NA> <NA>
## 1658 <NA> <NA>
## 1659 <NA> <NA>
## 1660 <NA> <NA>
## 1661 <NA> <NA>
## 1662 <NA> <NA>
## 1663 <NA> <NA>
## 1664 <NA> <NA>
## 1665 <NA> <NA>
## 1666 <NA> <NA>
## 1667 <NA> <NA>
## 1668 <NA> <NA>
## 1669 <NA> <NA>
## 1670 <NA> <NA>
## 1671 <NA> <NA>
## 1672 <NA> <NA>
## 1673 <NA> <NA>
## 1674 <NA> <NA>
## 1675 <NA> <NA>
## 1676 <NA> <NA>
## 1677 <NA> <NA>
## 1678 <NA> <NA>
## 1679 <NA> <NA>
## 1680 <NA> <NA>
## 1681 <NA> <NA>
## 1682 <NA> <NA>
## 1683 <NA> <NA>
## 1684 <NA> <NA>
## 1685 <NA> <NA>
## 1686 <NA> <NA>
## 1687 <NA> <NA>
## 1688 <NA> <NA>
## 1689 <NA> <NA>
## 1690 <NA> <NA>
## 1691 <NA> <NA>
## 1692 <NA> <NA>
## 1693 <NA> <NA>
## 1694 <NA> <NA>
## 1695 <NA> <NA>
## 1696 <NA> <NA>
## 1697 <NA> <NA>
## 1698 <NA> <NA>
## 1699 <NA> <NA>
## 1700 <NA> <NA>
## 1701 <NA> <NA>
## 1702 <NA> <NA>
## 1703 <NA> <NA>
## 1704 <NA> <NA>
## 1705 <NA> <NA>
## 1706 <NA> <NA>
## 1707 <NA> <NA>
## 1708 <NA> <NA>
## 1709 <NA> <NA>
## 1710 <NA> <NA>
## 1711 <NA> <NA>
## 1712 <NA> <NA>
## 1713 <NA> <NA>
## 1714 <NA> <NA>
## 1715 <NA> <NA>
## 1716 <NA> <NA>
## 1717 <NA> <NA>
## 1718 <NA> <NA>
## 1719 <NA> <NA>
## 1720 <NA> <NA>
## 1721 <NA> <NA>
## 1722 <NA> <NA>
## 1723 <NA> <NA>
## 1724 <NA> <NA>
## 1725 <NA> <NA>
## 1726 <NA> <NA>
## 1727 <NA> <NA>
## 1728 <NA> <NA>
## 1729 <NA> <NA>
## 1730 <NA> <NA>
## 1731 <NA> <NA>
## 1732 <NA> <NA>
## 1733 <NA> <NA>
## 1734 <NA> <NA>
## 1735 <NA> <NA>
## 1736 <NA> <NA>
## 1737 <NA> <NA>
## 1738 <NA> <NA>
## 1739 <NA> <NA>
## 1740 <NA> <NA>
## 1741 <NA> <NA>
## 1742 <NA> <NA>
## 1743 <NA> <NA>
## 1744 <NA> <NA>
## 1745 <NA> <NA>
## 1746 <NA> <NA>
## 1747 <NA> <NA>
## 1748 <NA> <NA>
## 1749 <NA> <NA>
## 1750 <NA> <NA>
## 1751 <NA> <NA>
## 1752 <NA> <NA>
## 1753 <NA> <NA>
## 1754 <NA> <NA>
## 1755 <NA> <NA>
## 1756 <NA> <NA>
## 1757 <NA> <NA>
## 1758 <NA> <NA>
## 1759 <NA> <NA>
## 1760 <NA> <NA>
## 1761 <NA> <NA>
## 1762 <NA> <NA>
## 1763 <NA> <NA>
## 1764 <NA> <NA>
## 1765 <NA> <NA>
## 1766 <NA> <NA>
## 1767 <NA> <NA>
## 1768 <NA> <NA>
## 1769 <NA> <NA>
## 1770 <NA> <NA>
## 1771 <NA> <NA>
## 1772 <NA> <NA>
## 1773 <NA> <NA>
## 1774 <NA> <NA>
## 1775 <NA> <NA>
## 1776 <NA> <NA>
## 1777 <NA> <NA>
## 1778 <NA> <NA>
## 1779 <NA> <NA>
## 1780 <NA> <NA>
## 1781 <NA> <NA>
## 1782 <NA> <NA>
## 1783 <NA> <NA>
## 1784 <NA> <NA>
## 1785 <NA> <NA>
## 1786 <NA> <NA>
## 1787 <NA> <NA>
## 1788 <NA> <NA>
## 1789 <NA> <NA>
## 1790 <NA> <NA>
## 1791 <NA> <NA>
## 1792 <NA> <NA>
## 1793 <NA> <NA>
## 1794 <NA> <NA>
## 1795 <NA> <NA>
## 1796 <NA> <NA>
## 1797 <NA> <NA>
## 1798 <NA> <NA>
## 1799 <NA> <NA>
## 1800 <NA> <NA>
## 1801 <NA> <NA>
## 1802 <NA> <NA>
## 1803 <NA> <NA>
## 1804 <NA> <NA>
## 1805 <NA> <NA>
## 1806 <NA> <NA>
## 1807 <NA> <NA>
## 1808 <NA> <NA>
## 1809 <NA> <NA>
## 1810 <NA> <NA>
## 1811 <NA> <NA>
## 1812 <NA> <NA>
## 1813 <NA> <NA>
## 1814 <NA> <NA>
## 1815 <NA> <NA>
## 1816 <NA> <NA>
## 1817 <NA> <NA>
## 1818 <NA> <NA>
## 1819 <NA> <NA>
## 1820 <NA> <NA>
## 1821 <NA> <NA>
## 1822 <NA> <NA>
## 1823 <NA> <NA>
## 1824 <NA> <NA>
## 1825 <NA> <NA>
## 1826 <NA> <NA>
## 1827 <NA> <NA>
## 1828 <NA> <NA>
## 1829 <NA> <NA>
## 1830 <NA> <NA>
## 1831 <NA> <NA>
## 1832 <NA> <NA>
## 1833 <NA> <NA>
## 1834 <NA> <NA>
## 1835 <NA> <NA>
## 1836 <NA> <NA>
## 1837 <NA> <NA>
## 1838 <NA> <NA>
## 1839 <NA> <NA>
## 1840 <NA> <NA>
## 1841 <NA> <NA>
## 1842 <NA> <NA>
## 1843 <NA> <NA>
## 1844 <NA> <NA>
## 1845 <NA> <NA>
## 1846 <NA> <NA>
## 1847 <NA> <NA>
## 1848 <NA> <NA>
## 1849 <NA> <NA>
## 1850 <NA> <NA>
## 1851 <NA> <NA>
## 1852 <NA> <NA>
## 1853 <NA> <NA>
## 1854 <NA> <NA>
## 1855 <NA> <NA>
## 1856 <NA> <NA>
## 1857 <NA> <NA>
## 1858 <NA> <NA>
## 1859 <NA> <NA>
## 1860 <NA> <NA>
## 1861 <NA> <NA>
## 1862 <NA> <NA>
## 1863 <NA> <NA>
## 1864 <NA> <NA>
## 1865 <NA> <NA>
## 1866 <NA> <NA>
## 1867 <NA> <NA>
## 1868 <NA> <NA>
## 1869 <NA> <NA>
## 1870 <NA> <NA>
## 1871 <NA> <NA>
## 1872 <NA> <NA>
## 1873 <NA> <NA>
## 1874 <NA> <NA>
## 1875 <NA> <NA>
## 1876 <NA> <NA>
## 1877 <NA> <NA>
## 1878 <NA> <NA>
## 1879 <NA> <NA>
## 1880 <NA> <NA>
## 1881 <NA> <NA>
## 1882 <NA> <NA>
## 1883 <NA> <NA>
## 1884 <NA> <NA>
## 1885 <NA> <NA>
## 1886 <NA> <NA>
## 1887 <NA> <NA>
## 1888 <NA> <NA>
## 1889 <NA> <NA>
## 1890 <NA> <NA>
## 1891 <NA> <NA>
## 1892 <NA> <NA>
## 1893 <NA> <NA>
## 1894 <NA> <NA>
## 1895 <NA> <NA>
## 1896 <NA> <NA>
## 1897 <NA> <NA>
## 1898 <NA> <NA>
## 1899 <NA> <NA>
## 1900 <NA> <NA>
## 1901 <NA> <NA>
## 1902 <NA> <NA>
## 1903 <NA> <NA>
## 1904 <NA> <NA>
## 1905 <NA> <NA>
## 1906 <NA> <NA>
## 1907 <NA> <NA>
## 1908 <NA> <NA>
## 1909 <NA> <NA>
## 1910 <NA> <NA>
## 1911 <NA> <NA>
## 1912 <NA> <NA>
## 1913 <NA> <NA>
## 1914 <NA> <NA>
## 1915 <NA> <NA>
## 1916 <NA> <NA>
## 1917 <NA> <NA>
## 1918 <NA> <NA>
## 1919 <NA> <NA>
## 1920 <NA> <NA>
## 1921 <NA> <NA>
## 1922 <NA> <NA>
## 1923 <NA> <NA>
## 1924 <NA> <NA>
## 1925 <NA> <NA>
## 1926 <NA> <NA>
## 1927 <NA> <NA>
## 1928 <NA> <NA>
## 1929 <NA> <NA>
## 1930 <NA> <NA>
## 1931 <NA> <NA>
## 1932 <NA> <NA>
## 1933 <NA> <NA>
## 1934 <NA> <NA>
## 1935 <NA> <NA>
## 1936 <NA> <NA>
## 1937 <NA> <NA>
## 1938 <NA> <NA>
## 1939 <NA> <NA>
## 1940 <NA> <NA>
## 1941 <NA> <NA>
## 1942 <NA> <NA>
## 1943 <NA> <NA>
## 1944 <NA> <NA>
## 1945 <NA> <NA>
## 1946 <NA> <NA>
## 1947 <NA> <NA>
## 1948 <NA> <NA>
## 1949 <NA> <NA>
## 1950 <NA> <NA>
## 1951 <NA> <NA>
## 1952 <NA> <NA>
## 1953 <NA> <NA>
## 1954 <NA> <NA>
## 1955 <NA> <NA>
## 1956 <NA> <NA>
## 1957 <NA> <NA>
## 1958 <NA> <NA>
## 1959 <NA> <NA>
## 1960 <NA> <NA>
## 1961 <NA> <NA>
## 1962 <NA> <NA>
## 1963 <NA> <NA>
## 1964 <NA> <NA>
## 1965 <NA> <NA>
## 1966 <NA> <NA>
## 1967 <NA> <NA>
## 1968 <NA> <NA>
## 1969 <NA> <NA>
## 1970 <NA> <NA>
## 1971 <NA> <NA>
## 1972 <NA> <NA>
## 1973 <NA> <NA>
## 1974 <NA> <NA>
## 1975 <NA> <NA>
## 1976 <NA> <NA>
## 1977 <NA> <NA>
## 1978 <NA> <NA>
## 1979 <NA> <NA>
## 1980 <NA> <NA>
## 1981 <NA> <NA>
## 1982 <NA> <NA>
## 1983 <NA> <NA>
## 1984 <NA> <NA>
## 1985 <NA> <NA>
## 1986 <NA> <NA>
## 1987 <NA> <NA>
## 1988 <NA> <NA>
## 1989 <NA> <NA>
## 1990 <NA> <NA>
## 1991 <NA> <NA>
## 1992 <NA> <NA>
## 1993 <NA> <NA>
## 1994 <NA> <NA>
## 1995 <NA> <NA>
## 1996 <NA> <NA>
## 1997 <NA> <NA>
## 1998 <NA> <NA>
## 1999 <NA> <NA>
## 2000 <NA> <NA>
## 2001 <NA> <NA>
## 2002 <NA> <NA>
## 2003 <NA> <NA>
## 2004 <NA> <NA>
## 2005 <NA> <NA>
## 2006 <NA> <NA>
## 2007 <NA> <NA>
## 2008 <NA> <NA>
## 2009 <NA> <NA>
## 2010 <NA> <NA>
## 2011 <NA> <NA>
## 2012 <NA> <NA>
## 2013 <NA> <NA>
## 2014 <NA> <NA>
## 2015 <NA> <NA>
## 2016 <NA> <NA>
## 2017 <NA> <NA>
## 2018 <NA> <NA>
## 2019 <NA> <NA>
## 2020 <NA> <NA>
## 2021 <NA> <NA>
## 2022 <NA> <NA>
## 2023 <NA> <NA>
## 2024 <NA> <NA>
## 2025 <NA> <NA>
## 2026 <NA> <NA>
## 2027 <NA> <NA>
## 2028 <NA> <NA>
## 2029 <NA> <NA>
## 2030 <NA> <NA>
## 2031 <NA> <NA>
## 2032 <NA> <NA>
## 2033 <NA> <NA>
## 2034 <NA> <NA>
## 2035 <NA> <NA>
## 2036 <NA> <NA>
## 2037 <NA> <NA>
## 2038 <NA> <NA>
## 2039 <NA> <NA>
## 2040 <NA> <NA>
## 2041 <NA> <NA>
## 2042 <NA> <NA>
## 2043 <NA> <NA>
## 2044 <NA> <NA>
## 2045 <NA> <NA>
## 2046 <NA> <NA>
## 2047 <NA> <NA>
## 2048 <NA> <NA>
## 2049 <NA> <NA>
## 2050 <NA> <NA>
## 2051 <NA> <NA>
## 2052 <NA> <NA>
## 2053 <NA> <NA>
## 2054 <NA> <NA>
## 2055 <NA> <NA>
## 2056 <NA> <NA>
## 2057 <NA> <NA>
## 2058 <NA> <NA>
## 2059 <NA> <NA>
## 2060 <NA> <NA>
## 2061 <NA> <NA>
## 2062 <NA> <NA>
## 2063 <NA> <NA>
## 2064 <NA> <NA>
## 2065 <NA> <NA>
## 2066 <NA> <NA>
## 2067 <NA> <NA>
## 2068 <NA> <NA>
## 2069 <NA> <NA>
## 2070 <NA> <NA>
## 2071 <NA> <NA>
## 2072 <NA> <NA>
## 2073 <NA> <NA>
## 2074 <NA> <NA>
## 2075 <NA> <NA>
## 2076 <NA> <NA>
## 2077 <NA> <NA>
## 2078 <NA> <NA>
## 2079 <NA> <NA>
## 2080 <NA> <NA>
## 2081 <NA> <NA>
## 2082 <NA> <NA>
## 2083 <NA> <NA>
## 2084 <NA> <NA>
## 2085 <NA> <NA>
## 2086 <NA> <NA>
## 2087 <NA> <NA>
## 2088 <NA> <NA>
## 2089 <NA> <NA>
## 2090 <NA> <NA>
## 2091 <NA> <NA>
## 2092 <NA> <NA>
## 2093 <NA> <NA>
## 2094 <NA> <NA>
## 2095 <NA> <NA>
## 2096 <NA> <NA>
## 2097 <NA> <NA>
## 2098 <NA> <NA>
## 2099 <NA> <NA>
## 2100 <NA> <NA>
## 2101 <NA> <NA>
## 2102 <NA> <NA>
## 2103 <NA> <NA>
## 2104 <NA> <NA>
## 2105 <NA> <NA>
## 2106 <NA> <NA>
## 2107 <NA> <NA>
## 2108 <NA> <NA>
## 2109 <NA> <NA>
## 2110 <NA> <NA>
## 2111 <NA> <NA>
## 2112 <NA> <NA>
## 2113 <NA> <NA>
## 2114 <NA> <NA>
## 2115 <NA> <NA>
## 2116 <NA> <NA>
## 2117 <NA> <NA>
## 2118 <NA> <NA>
## 2119 <NA> <NA>
## 2120 <NA> <NA>
## 2121 <NA> <NA>
## 2122 <NA> <NA>
## 2123 <NA> <NA>
## 2124 <NA> <NA>
## 2125 <NA> <NA>
## 2126 <NA> <NA>
## 2127 <NA> <NA>
## 2128 <NA> <NA>
## 2129 <NA> <NA>
## 2130 <NA> <NA>
## 2131 <NA> <NA>
## 2132 <NA> <NA>
## 2133 <NA> <NA>
## 2134 <NA> <NA>
## 2135 <NA> <NA>
## 2136 <NA> <NA>
## 2137 <NA> <NA>
## 2138 <NA> <NA>
## 2139 <NA> <NA>
## 2140 <NA> <NA>
## 2141 <NA> <NA>
## 2142 <NA> <NA>
## 2143 <NA> <NA>
## 2144 <NA> <NA>
## 2145 <NA> <NA>
## 2146 <NA> <NA>
## 2147 <NA> <NA>
## 2148 <NA> <NA>
## 2149 <NA> <NA>
## 2150 <NA> <NA>
## 2151 <NA> <NA>
## 2152 <NA> <NA>
## 2153 <NA> <NA>
## 2154 <NA> <NA>
## 2155 <NA> <NA>
## 2156 <NA> <NA>
## 2157 <NA> <NA>
## 2158 <NA> <NA>
## 2159 <NA> <NA>
## 2160 <NA> <NA>
## 2161 <NA> <NA>
## 2162 <NA> <NA>
## 2163 <NA> <NA>
## 2164 <NA> <NA>
## 2165 <NA> <NA>
## 2166 <NA> <NA>
## 2167 <NA> <NA>
## 2168 <NA> <NA>
## 2169 <NA> <NA>
## 2170 <NA> <NA>
## 2171 <NA> <NA>
## 2172 <NA> <NA>
## 2173 <NA> <NA>
## 2174 <NA> <NA>
## 2175 <NA> <NA>
## 2176 <NA> <NA>
## 2177 <NA> <NA>
## 2178 <NA> <NA>
## 2179 <NA> <NA>
## 2180 <NA> <NA>
## 2181 <NA> <NA>
## 2182 <NA> <NA>
## 2183 <NA> <NA>
## 2184 <NA> <NA>
## 2185 <NA> <NA>
## 2186 <NA> <NA>
## 2187 <NA> <NA>
## 2188 <NA> <NA>
## 2189 <NA> <NA>
## 2190 <NA> <NA>
## 2191 <NA> <NA>
## 2192 <NA> <NA>
## 2193 <NA> <NA>
## 2194 <NA> <NA>
## 2195 <NA> <NA>
## 2196 <NA> <NA>
## 2197 <NA> <NA>
## 2198 <NA> <NA>
## 2199 <NA> <NA>
## 2200 <NA> <NA>
## 2201 <NA> <NA>
## 2202 <NA> <NA>
## 2203 <NA> <NA>
## 2204 <NA> <NA>
## 2205 <NA> <NA>
## 2206 <NA> <NA>
## 2207 <NA> <NA>
## 2208 <NA> <NA>
## 2209 <NA> <NA>
## 2210 <NA> <NA>
## 2211 <NA> <NA>
## 2212 <NA> <NA>
## 2213 <NA> <NA>
## 2214 <NA> <NA>
## 2215 <NA> <NA>
## 2216 <NA> <NA>
## 2217 <NA> <NA>
## 2218 <NA> <NA>
## 2219 <NA> <NA>
## 2220 <NA> <NA>
## 2221 <NA> <NA>
## 2222 <NA> <NA>
## 2223 <NA> <NA>
## 2224 <NA> <NA>
## 2225 <NA> <NA>
## 2226 <NA> <NA>
## 2227 <NA> <NA>
## 2228 <NA> <NA>
## 2229 <NA> <NA>
## 2230 <NA> <NA>
## 2231 <NA> <NA>
## 2232 <NA> <NA>
## 2233 <NA> <NA>
## 2234 <NA> <NA>
## 2235 <NA> <NA>
## 2236 <NA> <NA>
## 2237 <NA> <NA>
## 2238 <NA> <NA>
## 2239 <NA> <NA>
## 2240 <NA> <NA>
## 2241 <NA> <NA>
## 2242 <NA> <NA>
## 2243 <NA> <NA>
## 2244 <NA> <NA>
## 2245 <NA> <NA>
## 2246 <NA> <NA>
## 2247 <NA> <NA>
## 2248 <NA> <NA>
## 2249 <NA> <NA>
## 2250 <NA> <NA>
## 2251 <NA> <NA>
## 2252 <NA> <NA>
## 2253 <NA> <NA>
## 2254 <NA> <NA>
## 2255 <NA> <NA>
## 2256 <NA> <NA>
## 2257 <NA> <NA>
## 2258 <NA> <NA>
## 2259 <NA> <NA>
## 2260 <NA> <NA>
## 2261 <NA> <NA>
## 2262 <NA> <NA>
## 2263 <NA> <NA>
## 2264 <NA> <NA>
## 2265 <NA> <NA>
## 2266 <NA> <NA>
## 2267 <NA> <NA>
## 2268 <NA> <NA>
## 2269 <NA> <NA>
## 2270 <NA> <NA>
## 2271 <NA> <NA>
## 2272 <NA> <NA>
## 2273 <NA> <NA>
## 2274 <NA> <NA>
## 2275 <NA> <NA>
## 2276 <NA> <NA>
## 2277 <NA> <NA>
## 2278 <NA> <NA>
## 2279 <NA> <NA>
## 2280 <NA> <NA>
## 2281 <NA> <NA>
## 2282 <NA> <NA>
## 2283 <NA> <NA>
## 2284 <NA> <NA>
## 2285 <NA> <NA>
## 2286 <NA> <NA>
## 2287 <NA> <NA>
## 2288 <NA> <NA>
## 2289 <NA> <NA>
## 2290 <NA> <NA>
## 2291 <NA> <NA>
## 2292 <NA> <NA>
## 2293 <NA> <NA>
## 2294 <NA> <NA>
## 2295 <NA> <NA>
## 2296 <NA> <NA>
## 2297 <NA> <NA>
## 2298 <NA> <NA>
## 2299 <NA> <NA>
## 2300 <NA> <NA>
## 2301 <NA> <NA>
## 2302 <NA> <NA>
## 2303 <NA> <NA>
## 2304 <NA> <NA>
## 2305 <NA> <NA>
## 2306 <NA> <NA>
## 2307 <NA> <NA>
## 2308 <NA> <NA>
## 2309 <NA> <NA>
## 2310 <NA> <NA>
## 2311 <NA> <NA>
## 2312 <NA> <NA>
## 2313 <NA> <NA>
## 2314 <NA> <NA>
## 2315 <NA> <NA>
## 2316 <NA> <NA>
## 2317 <NA> <NA>
## 2318 <NA> <NA>
## 2319 <NA> <NA>
## 2320 <NA> <NA>
## 2321 <NA> <NA>
## 2322 <NA> <NA>
## 2323 <NA> <NA>
## 2324 <NA> <NA>
## 2325 <NA> <NA>
## 2326 <NA> <NA>
## 2327 <NA> <NA>
## 2328 <NA> <NA>
## 2329 <NA> <NA>
## 2330 <NA> <NA>
## 2331 <NA> <NA>
## 2332 <NA> <NA>
## 2333 <NA> <NA>
## 2334 <NA> <NA>
## 2335 <NA> <NA>
## 2336 <NA> <NA>
## 2337 <NA> <NA>
## 2338 <NA> <NA>
## 2339 <NA> <NA>
## 2340 <NA> <NA>
## 2341 <NA> <NA>
## 2342 <NA> <NA>
## 2343 <NA> <NA>
## 2344 <NA> <NA>
## 2345 <NA> <NA>
## 2346 <NA> <NA>
## 2347 <NA> <NA>
## 2348 <NA> <NA>
## 2349 <NA> <NA>
## 2350 <NA> <NA>
## 2351 <NA> <NA>
## 2352 <NA> <NA>
## 2353 <NA> <NA>
## 2354 <NA> <NA>
## 2355 <NA> <NA>
## 2356 <NA> <NA>
## 2357 <NA> <NA>
## 2358 <NA> <NA>
## 2359 <NA> <NA>
## 2360 <NA> <NA>
## 2361 <NA> <NA>
## 2362 <NA> <NA>
## 2363 <NA> <NA>
## 2364 <NA> <NA>
## 2365 <NA> <NA>
## 2366 <NA> <NA>
## 2367 <NA> <NA>
## 2368 <NA> <NA>
## 2369 <NA> <NA>
## 2370 <NA> <NA>
## 2371 <NA> <NA>
## 2372 <NA> <NA>
## 2373 <NA> <NA>
## 2374 <NA> <NA>
## 2375 <NA> <NA>
## 2376 <NA> <NA>
## 2377 <NA> <NA>
## 2378 <NA> <NA>
## 2379 <NA> <NA>
## 2380 <NA> <NA>
## 2381 <NA> <NA>
## 2382 <NA> <NA>
## 2383 <NA> <NA>
## 2384 <NA> <NA>
## 2385 <NA> <NA>
## 2386 <NA> <NA>
## 2387 <NA> <NA>
## 2388 <NA> <NA>
## 2389 <NA> <NA>
## 2390 <NA> <NA>
## 2391 <NA> <NA>
## 2392 <NA> <NA>
## 2393 <NA> <NA>
## 2394 <NA> <NA>
## 2395 <NA> <NA>
## 2396 <NA> <NA>
## 2397 <NA> <NA>
## 2398 <NA> <NA>
## 2399 <NA> <NA>
## 2400 <NA> <NA>
## 2401 <NA> <NA>
## 2402 <NA> <NA>
## 2403 <NA> <NA>
## 2404 <NA> <NA>
## 2405 <NA> <NA>
## 2406 <NA> <NA>
## 2407 <NA> <NA>
## 2408 <NA> <NA>
## 2409 <NA> <NA>
## 2410 <NA> <NA>
## 2411 <NA> <NA>
## 2412 <NA> <NA>
## 2413 <NA> <NA>
## 2414 <NA> <NA>
## 2415 <NA> <NA>
## 2416 <NA> <NA>
## 2417 <NA> <NA>
## 2418 <NA> <NA>
## 2419 <NA> <NA>
## 2420 <NA> <NA>
## 2421 <NA> <NA>
## 2422 <NA> <NA>
## 2423 <NA> <NA>
## 2424 <NA> <NA>
## 2425 <NA> <NA>
## 2426 <NA> <NA>
## 2427 <NA> <NA>
## 2428 <NA> <NA>
## 2429 <NA> <NA>
## 2430 <NA> <NA>
## 2431 <NA> <NA>
## 2432 <NA> <NA>
## 2433 <NA> <NA>
## 2434 <NA> <NA>
## 2435 <NA> <NA>
## 2436 <NA> <NA>
## 2437 <NA> <NA>
## 2438 <NA> <NA>
## 2439 <NA> <NA>
## 2440 <NA> <NA>
## 2441 <NA> <NA>
## 2442 <NA> <NA>
## 2443 <NA> <NA>
## 2444 <NA> <NA>
## 2445 <NA> <NA>
## 2446 <NA> <NA>
## 2447 <NA> <NA>
## 2448 <NA> <NA>
## 2449 <NA> <NA>
## 2450 <NA> <NA>
## 2451 <NA> <NA>
## 2452 <NA> <NA>
## 2453 <NA> <NA>
## 2454 <NA> <NA>
## 2455 <NA> <NA>
## 2456 <NA> <NA>
## 2457 <NA> <NA>
## 2458 <NA> <NA>
## 2459 <NA> <NA>
## 2460 <NA> <NA>
## 2461 <NA> <NA>
## 2462 <NA> <NA>
## 2463 <NA> <NA>
## 2464 <NA> <NA>
## 2465 <NA> <NA>
## 2466 <NA> <NA>
## 2467 <NA> <NA>
## 2468 <NA> <NA>
## 2469 <NA> <NA>
## 2470 <NA> <NA>
## 2471 <NA> <NA>
## 2472 <NA> <NA>
## 2473 <NA> <NA>
## 2474 <NA> <NA>
## 2475 <NA> <NA>
## 2476 <NA> <NA>
## 2477 <NA> <NA>
## 2478 <NA> <NA>
## 2479 <NA> <NA>
## 2480 <NA> <NA>
## 2481 <NA> <NA>
## 2482 <NA> <NA>
## 2483 <NA> <NA>
## 2484 <NA> <NA>
## 2485 <NA> <NA>
## 2486 <NA> <NA>
## 2487 <NA> <NA>
## 2488 <NA> <NA>
## 2489 <NA> <NA>
## 2490 <NA> <NA>
## 2491 <NA> <NA>
## 2492 <NA> <NA>
## 2493 <NA> <NA>
## 2494 <NA> <NA>
## 2495 <NA> <NA>
## 2496 <NA> <NA>
## 2497 <NA> <NA>
## 2498 <NA> <NA>
## 2499 <NA> <NA>
## 2500 <NA> <NA>
## 2501 <NA> <NA>
## 2502 <NA> <NA>
## 2503 <NA> <NA>
## 2504 <NA> <NA>
## 2505 <NA> <NA>
## 2506 <NA> <NA>
## 2507 <NA> <NA>
## 2508 <NA> <NA>
## 2509 <NA> <NA>
## 2510 <NA> <NA>
## 2511 <NA> <NA>
## 2512 <NA> <NA>
## 2513 <NA> <NA>
## 2514 <NA> <NA>
## 2515 <NA> <NA>
## 2516 <NA> <NA>
## 2517 <NA> <NA>
## 2518 <NA> <NA>
## 2519 <NA> <NA>
## 2520 <NA> <NA>
## 2521 <NA> <NA>
## 2522 <NA> <NA>
## 2523 <NA> <NA>
## 2524 <NA> <NA>
## 2525 <NA> <NA>
## 2526 <NA> <NA>
## 2527 <NA> <NA>
## 2528 <NA> <NA>
## 2529 <NA> <NA>
## 2530 <NA> <NA>
## 2531 <NA> <NA>
## 2532 <NA> <NA>
## 2533 <NA> <NA>
## 2534 <NA> <NA>
## 2535 <NA> <NA>
## 2536 <NA> <NA>
## 2537 <NA> <NA>
## 2538 <NA> <NA>
## 2539 <NA> <NA>
## 2540 <NA> <NA>
## 2541 <NA> <NA>
## 2542 <NA> <NA>
## 2543 <NA> <NA>
## 2544 <NA> <NA>
## 2545 <NA> <NA>
## 2546 <NA> <NA>
## 2547 <NA> <NA>
## 2548 <NA> <NA>
## 2549 <NA> <NA>
## 2550 <NA> <NA>
## 2551 <NA> <NA>
## 2552 <NA> <NA>
## 2553 <NA> <NA>
## 2554 <NA> <NA>
## 2555 <NA> <NA>
## 2556 <NA> <NA>
## 2557 <NA> <NA>
## 2558 <NA> <NA>
## 2559 <NA> <NA>
## 2560 <NA> <NA>
## 2561 <NA> <NA>
## 2562 <NA> <NA>
## 2563 <NA> <NA>
## 2564 <NA> <NA>
## 2565 <NA> <NA>
## 2566 <NA> <NA>
## 2567 <NA> <NA>
## 2568 <NA> <NA>
## 2569 <NA> <NA>
## 2570 <NA> <NA>
## 2571 <NA> <NA>
## 2572 <NA> <NA>
## 2573 <NA> <NA>
## 2574 <NA> <NA>
## 2575 <NA> <NA>
## 2576 <NA> <NA>
## 2577 <NA> <NA>
## 2578 <NA> <NA>
## 2579 <NA> <NA>
## 2580 <NA> <NA>
## 2581 <NA> <NA>
## 2582 <NA> <NA>
## 2583 <NA> <NA>
## 2584 <NA> <NA>
## 2585 <NA> <NA>
## 2586 <NA> <NA>
## 2587 <NA> <NA>
## 2588 <NA> <NA>
## 2589 <NA> <NA>
## 2590 <NA> <NA>
## 2591 <NA> <NA>
## 2592 <NA> <NA>
## 2593 <NA> <NA>
## 2594 <NA> <NA>
## 2595 <NA> <NA>
## 2596 <NA> <NA>
## 2597 <NA> <NA>
## 2598 <NA> <NA>
## 2599 <NA> <NA>
## 2600 <NA> <NA>
## 2601 <NA> <NA>
## 2602 <NA> <NA>
## 2603 <NA> <NA>
## 2604 <NA> <NA>
## 2605 <NA> <NA>
## 2606 <NA> <NA>
## 2607 <NA> <NA>
## 2608 <NA> <NA>
## 2609 <NA> <NA>
## 2610 <NA> <NA>
## 2611 <NA> <NA>
## 2612 <NA> <NA>
## 2613 <NA> <NA>
## 2614 <NA> <NA>
## 2615 <NA> <NA>
## 2616 <NA> <NA>
## 2617 <NA> <NA>
## 2618 <NA> <NA>
## 2619 <NA> <NA>
## 2620 <NA> <NA>
## 2621 <NA> <NA>
## 2622 <NA> <NA>
## 2623 <NA> <NA>
## 2624 <NA> <NA>
## 2625 <NA> <NA>
## 2626 <NA> <NA>
## 2627 <NA> <NA>
## 2628 <NA> <NA>
## 2629 <NA> <NA>
## 2630 <NA> <NA>
## 2631 <NA> <NA>
## 2632 <NA> <NA>
## 2633 <NA> <NA>
## 2634 <NA> <NA>
## 2635 <NA> <NA>
## 2636 <NA> <NA>
## 2637 <NA> <NA>
## 2638 <NA> <NA>
## 2639 <NA> <NA>
## 2640 <NA> <NA>
## 2641 <NA> <NA>
## 2642 <NA> <NA>
## 2643 <NA> <NA>
## 2644 <NA> <NA>
## 2645 <NA> <NA>
## 2646 <NA> <NA>
## 2647 <NA> <NA>
## 2648 <NA> <NA>
## 2649 <NA> <NA>
## 2650 <NA> <NA>
## 2651 <NA> <NA>
## 2652 <NA> <NA>
## 2653 <NA> <NA>
## 2654 <NA> <NA>
## 2655 <NA> <NA>
## 2656 <NA> <NA>
## 2657 <NA> <NA>
## 2658 <NA> <NA>
## 2659 <NA> <NA>
## 2660 <NA> <NA>
## 2661 <NA> <NA>
## 2662 <NA> <NA>
## 2663 <NA> <NA>
## 2664 <NA> <NA>
## 2665 <NA> <NA>
## 2666 <NA> <NA>
## 2667 <NA> <NA>
## 2668 <NA> <NA>
## 2669 <NA> <NA>
## 2670 <NA> <NA>
## 2671 <NA> <NA>
## 2672 <NA> <NA>
## 2673 <NA> <NA>
## 2674 <NA> <NA>
## 2675 <NA> <NA>
## 2676 <NA> <NA>
## 2677 <NA> <NA>
## 2678 <NA> <NA>
## 2679 <NA> <NA>
## 2680 <NA> <NA>
## 2681 <NA> <NA>
## 2682 <NA> <NA>
## 2683 <NA> <NA>
## 2684 <NA> <NA>
## 2685 <NA> <NA>
## 2686 <NA> <NA>
## 2687 <NA> <NA>
## 2688 <NA> <NA>
## 2689 <NA> <NA>
## 2690 <NA> <NA>
## 2691 <NA> <NA>
## 2692 <NA> <NA>
## 2693 <NA> <NA>
## 2694 <NA> <NA>
## 2695 <NA> <NA>
## 2696 <NA> <NA>
## 2697 <NA> <NA>
## 2698 <NA> <NA>
## 2699 <NA> <NA>
## 2700 <NA> <NA>
## 2701 <NA> <NA>
## 2702 <NA> <NA>
## 2703 <NA> <NA>
## 2704 <NA> <NA>
## 2705 <NA> <NA>
## 2706 <NA> <NA>
## 2707 <NA> <NA>
## 2708 <NA> <NA>
## 2709 <NA> <NA>
## 2710 <NA> <NA>
## 2711 <NA> <NA>
## 2712 <NA> <NA>
## 2713 <NA> <NA>
## 2714 <NA> <NA>
## 2715 <NA> <NA>
## 2716 <NA> <NA>
## 2717 <NA> <NA>
## 2718 <NA> <NA>
## 2719 <NA> <NA>
## 2720 <NA> <NA>
## 2721 <NA> <NA>
## 2722 <NA> <NA>
## 2723 <NA> <NA>
## 2724 <NA> <NA>
## 2725 <NA> <NA>
## 2726 <NA> <NA>
## 2727 <NA> <NA>
## 2728 <NA> <NA>
## 2729 <NA> <NA>
## 2730 <NA> <NA>
## 2731 <NA> <NA>
## 2732 <NA> <NA>
## 2733 <NA> <NA>
## 2734 <NA> <NA>
## 2735 <NA> <NA>
## 2736 <NA> <NA>
## 2737 <NA> <NA>
## 2738 <NA> <NA>
## 2739 <NA> <NA>
## 2740 <NA> <NA>
## 2741 <NA> <NA>
## 2742 <NA> <NA>
## 2743 <NA> <NA>
## 2744 <NA> <NA>
## 2745 <NA> <NA>
## 2746 <NA> <NA>
## 2747 <NA> <NA>
## 2748 <NA> <NA>
## 2749 <NA> <NA>
## 2750 <NA> <NA>
## 2751 <NA> <NA>
## 2752 <NA> <NA>
## 2753 <NA> <NA>
## 2754 <NA> <NA>
## 2755 <NA> <NA>
## 2756 <NA> <NA>
## 2757 <NA> <NA>
## 2758 <NA> <NA>
## 2759 <NA> <NA>
## 2760 <NA> <NA>
## 2761 <NA> <NA>
## 2762 <NA> <NA>
## 2763 <NA> <NA>
## 2764 <NA> <NA>
## 2765 <NA> <NA>
## 2766 <NA> <NA>
## 2767 <NA> <NA>
## 2768 <NA> <NA>
## 2769 <NA> <NA>
## 2770 <NA> <NA>
## 2771 <NA> <NA>
## 2772 <NA> <NA>
## 2773 <NA> <NA>
## 2774 <NA> <NA>
## 2775 <NA> <NA>
## 2776 <NA> <NA>
## 2777 <NA> <NA>
## 2778 <NA> <NA>
## 2779 <NA> <NA>
## 2780 <NA> <NA>
## 2781 <NA> <NA>
## 2782 <NA> <NA>
## 2783 <NA> <NA>
## 2784 <NA> <NA>
## 2785 <NA> <NA>
## 2786 <NA> <NA>
## 2787 <NA> <NA>
## 2788 <NA> <NA>
## 2789 <NA> <NA>
## 2790 <NA> <NA>
## 2791 <NA> <NA>
## 2792 <NA> <NA>
## 2793 <NA> <NA>
## 2794 <NA> <NA>
## 2795 <NA> <NA>
## 2796 <NA> <NA>
## 2797 <NA> <NA>
## 2798 <NA> <NA>
## 2799 <NA> <NA>
## 2800 <NA> <NA>
## 2801 <NA> <NA>
## 2802 <NA> <NA>
## 2803 <NA> <NA>
## 2804 <NA> <NA>
## 2805 <NA> <NA>
## 2806 <NA> <NA>
## 2807 <NA> <NA>
## 2808 <NA> <NA>
## 2809 <NA> <NA>
## 2810 <NA> <NA>
## 2811 <NA> <NA>
## 2812 <NA> <NA>
## 2813 <NA> <NA>
## 2814 <NA> <NA>
## 2815 <NA> <NA>
## 2816 <NA> <NA>
## 2817 <NA> <NA>
## 2818 <NA> <NA>
## 2819 <NA> <NA>
## 2820 <NA> <NA>
## 2821 <NA> <NA>
## 2822 <NA> <NA>
## 2823 <NA> <NA>
## 2824 <NA> <NA>
## 2825 <NA> <NA>
## 2826 <NA> <NA>
## 2827 <NA> <NA>
## 2828 <NA> <NA>
## 2829 <NA> <NA>
## 2830 <NA> <NA>
## 2831 <NA> <NA>
## 2832 <NA> <NA>
## 2833 <NA> <NA>
## 2834 <NA> <NA>
## 2835 <NA> <NA>
## 2836 <NA> <NA>
## 2837 <NA> <NA>
## 2838 <NA> <NA>
## 2839 <NA> <NA>
## 2840 <NA> <NA>
## 2841 <NA> <NA>
## 2842 <NA> <NA>
## 2843 <NA> <NA>
## 2844 <NA> <NA>
## 2845 <NA> <NA>
## 2846 <NA> <NA>
## 2847 <NA> <NA>
## 2848 <NA> <NA>
## 2849 <NA> <NA>
## 2850 <NA> <NA>
## 2851 <NA> <NA>
## 2852 <NA> <NA>
## 2853 <NA> <NA>
## 2854 <NA> <NA>
## 2855 <NA> <NA>
## 2856 <NA> <NA>
## 2857 <NA> <NA>
## 2858 <NA> <NA>
## 2859 <NA> <NA>
## 2860 <NA> <NA>
## 2861 <NA> <NA>
## 2862 <NA> <NA>
## 2863 <NA> <NA>
## 2864 <NA> <NA>
## 2865 <NA> <NA>
## 2866 <NA> <NA>
## 2867 <NA> <NA>
## 2868 <NA> <NA>
## 2869 <NA> <NA>
## 2870 <NA> <NA>
## 2871 <NA> <NA>
## 2872 <NA> <NA>
## 2873 <NA> <NA>
## 2874 <NA> <NA>
## 2875 <NA> <NA>
## 2876 <NA> <NA>
## 2877 <NA> <NA>
## 2878 <NA> <NA>
## 2879 <NA> <NA>
## 2880 <NA> <NA>
## 2881 <NA> <NA>
## 2882 <NA> <NA>
## 2883 <NA> <NA>
## 2884 <NA> <NA>
## 2885 <NA> <NA>
## 2886 <NA> <NA>
## 2887 <NA> <NA>
## 2888 <NA> <NA>
## 2889 <NA> <NA>
## 2890 <NA> <NA>
## 2891 <NA> <NA>
## 2892 <NA> <NA>
## 2893 <NA> <NA>
## 2894 <NA> <NA>
## 2895 <NA> <NA>
## 2896 <NA> <NA>
## 2897 <NA> <NA>
## 2898 <NA> <NA>
## 2899 <NA> <NA>
## 2900 <NA> <NA>
## 2901 <NA> <NA>
## 2902 <NA> <NA>
## 2903 <NA> <NA>
## 2904 <NA> <NA>
## 2905 <NA> <NA>
## 2906 <NA> <NA>
## 2907 <NA> <NA>
## 2908 <NA> <NA>
## 2909 <NA> <NA>
## 2910 <NA> <NA>
## 2911 <NA> <NA>
## 2912 <NA> <NA>
## 2913 <NA> <NA>
## 2914 <NA> <NA>
## 2915 <NA> <NA>
## 2916 <NA> <NA>
## 2917 <NA> <NA>
## 2918 <NA> <NA>
## 2919 <NA> <NA>
## 2920 <NA> <NA>
## 2921 <NA> <NA>
## 2922 <NA> <NA>
## 2923 <NA> <NA>
## 2924 <NA> <NA>
## 2925 <NA> <NA>
## 2926 <NA> <NA>
## 2927 <NA> <NA>
## 2928 <NA> <NA>
## 2929 <NA> <NA>
## 2930 <NA> <NA>
## 2931 <NA> <NA>
## 2932 <NA> <NA>
## 2933 <NA> <NA>
## 2934 <NA> <NA>
## 2935 <NA> <NA>
## 2936 <NA> <NA>
## 2937 <NA> <NA>
## 2938 <NA> <NA>
## 2939 <NA> <NA>
## 2940 <NA> <NA>
## 2941 <NA> <NA>
## 2942 <NA> <NA>
## 2943 <NA> <NA>
## 2944 <NA> <NA>
## 2945 <NA> <NA>
## 2946 <NA> <NA>
## 2947 <NA> <NA>
## 2948 <NA> <NA>
## 2949 <NA> <NA>
## 2950 <NA> <NA>
## 2951 <NA> <NA>
## 2952 <NA> <NA>
## 2953 <NA> <NA>
## 2954 <NA> <NA>
## 2955 <NA> <NA>
## 2956 <NA> <NA>
## 2957 <NA> <NA>
## 2958 <NA> <NA>
## 2959 <NA> <NA>
## 2960 <NA> <NA>
## 2961 <NA> <NA>
## 2962 <NA> <NA>
## 2963 <NA> <NA>
## 2964 <NA> <NA>
## 2965 <NA> <NA>
## 2966 <NA> <NA>
## 2967 <NA> <NA>
## 2968 <NA> <NA>
## 2969 <NA> <NA>
## 2970 <NA> <NA>
## 2971 <NA> <NA>
## 2972 <NA> <NA>
## 2973 <NA> <NA>
## 2974 <NA> <NA>
## 2975 <NA> <NA>
## 2976 <NA> <NA>
## 2977 <NA> <NA>
## 2978 <NA> <NA>
## 2979 <NA> <NA>
## 2980 <NA> <NA>
## 2981 <NA> <NA>
## 2982 <NA> <NA>
## 2983 <NA> <NA>
## 2984 <NA> <NA>
## 2985 <NA> <NA>
## 2986 <NA> <NA>
## 2987 <NA> <NA>
## 2988 <NA> <NA>
## 2989 <NA> <NA>
## 2990 <NA> <NA>
## 2991 <NA> <NA>
## 2992 <NA> <NA>
## 2993 <NA> <NA>
## 2994 <NA> <NA>
## 2995 <NA> <NA>
## 2996 <NA> <NA>
## 2997 <NA> <NA>
## 2998 <NA> <NA>
## 2999 <NA> <NA>
## 3000 <NA> <NA>
## 3001 <NA> <NA>
## 3002 <NA> <NA>
## 3003 <NA> <NA>
## 3004 <NA> <NA>
## 3005 <NA> <NA>
## 3006 <NA> <NA>
## 3007 <NA> <NA>
## 3008 <NA> <NA>
## 3009 <NA> <NA>
## 3010 <NA> <NA>
## 3011 <NA> <NA>
## 3012 <NA> <NA>
## 3013 <NA> <NA>
## 3014 <NA> <NA>
## 3015 <NA> <NA>
## 3016 <NA> <NA>
## 3017 <NA> <NA>
## 3018 <NA> <NA>
## 3019 <NA> <NA>
## 3020 <NA> <NA>
## 3021 <NA> <NA>
## 3022 <NA> <NA>
## 3023 <NA> <NA>
## 3024 <NA> <NA>
## 3025 <NA> <NA>
## 3026 <NA> <NA>
## 3027 <NA> <NA>
## 3028 <NA> <NA>
## 3029 <NA> <NA>
## 3030 <NA> <NA>
## 3031 <NA> <NA>
## 3032 <NA> <NA>
## 3033 <NA> <NA>
## 3034 <NA> <NA>
## 3035 <NA> <NA>
## 3036 <NA> <NA>
## 3037 <NA> <NA>
## 3038 <NA> <NA>
## 3039 <NA> <NA>
## 3040 <NA> <NA>
## 3041 <NA> <NA>
## 3042 <NA> <NA>
## 3043 <NA> <NA>
## 3044 <NA> <NA>
## 3045 <NA> <NA>
## 3046 <NA> <NA>
## 3047 <NA> <NA>
## 3048 <NA> <NA>
## 3049 <NA> <NA>
## 3050 <NA> <NA>
## 3051 <NA> <NA>
## 3052 <NA> <NA>
## 3053 <NA> <NA>
## 3054 <NA> <NA>
## 3055 <NA> <NA>
## 3056 <NA> <NA>
## 3057 <NA> <NA>
## 3058 <NA> <NA>
## 3059 <NA> <NA>
## 3060 <NA> <NA>
## 3061 <NA> <NA>
## 3062 <NA> <NA>
## 3063 <NA> <NA>
## 3064 <NA> <NA>
## 3065 <NA> <NA>
## 3066 <NA> <NA>
## 3067 <NA> <NA>
## 3068 <NA> <NA>
## 3069 <NA> <NA>
## 3070 <NA> <NA>
## 3071 <NA> <NA>
## 3072 <NA> <NA>
## 3073 <NA> <NA>
## 3074 <NA> <NA>
## 3075 <NA> <NA>
## 3076 <NA> <NA>
## 3077 <NA> <NA>
## 3078 <NA> <NA>
## 3079 <NA> <NA>
## 3080 <NA> <NA>
## 3081 <NA> <NA>
## 3082 <NA> <NA>
## 3083 <NA> <NA>
## 3084 <NA> <NA>
## 3085 <NA> <NA>
## 3086 <NA> <NA>
## 3087 <NA> <NA>
## 3088 <NA> <NA>
## 3089 <NA> <NA>
## 3090 <NA> <NA>
## 3091 <NA> <NA>
## 3092 <NA> <NA>
## 3093 <NA> <NA>
## 3094 <NA> <NA>
## 3095 <NA> <NA>
## 3096 <NA> <NA>
## 3097 <NA> <NA>
## 3098 <NA> <NA>
## 3099 <NA> <NA>
## 3100 <NA> <NA>
## 3101 <NA> <NA>
## 3102 <NA> <NA>
## 3103 <NA> <NA>
## 3104 <NA> <NA>
## 3105 <NA> <NA>
## 3106 <NA> <NA>
## 3107 <NA> <NA>
## 3108 <NA> <NA>
## 3109 <NA> <NA>
## 3110 <NA> <NA>
## 3111 <NA> <NA>
## 3112 <NA> <NA>
## 3113 <NA> <NA>
## 3114 <NA> <NA>
## 3115 <NA> <NA>
## 3116 <NA> <NA>
## 3117 <NA> <NA>
## 3118 <NA> <NA>
## 3119 <NA> <NA>
## 3120 <NA> <NA>
## 3121 <NA> <NA>
## 3122 <NA> <NA>
## 3123 <NA> <NA>
## 3124 <NA> <NA>
## 3125 <NA> <NA>
## 3126 <NA> <NA>
## 3127 <NA> <NA>
## 3128 <NA> <NA>
## 3129 <NA> <NA>
## 3130 <NA> <NA>
## 3131 <NA> <NA>
## 3132 <NA> <NA>
## 3133 <NA> <NA>
## 3134 <NA> <NA>
## 3135 <NA> <NA>
## 3136 <NA> <NA>
## 3137 <NA> <NA>
## 3138 <NA> <NA>
## 3139 <NA> <NA>
## 3140 <NA> <NA>
## 3141 <NA> <NA>
## 3142 <NA> <NA>
## 3143 <NA> <NA>
## 3144 <NA> <NA>
## 3145 <NA> <NA>
## 3146 <NA> <NA>
## 3147 <NA> <NA>
## 3148 <NA> <NA>
## 3149 <NA> <NA>
## 3150 <NA> <NA>
## 3151 <NA> <NA>
## 3152 <NA> <NA>
## 3153 <NA> <NA>
## 3154 <NA> <NA>
## 3155 <NA> <NA>
## 3156 <NA> <NA>
## 3157 <NA> <NA>
## 3158 <NA> <NA>
## 3159 <NA> <NA>
## 3160 <NA> <NA>
## 3161 <NA> <NA>
## 3162 <NA> <NA>
## 3163 <NA> <NA>
## 3164 <NA> <NA>
## 3165 <NA> <NA>
## 3166 <NA> <NA>
## 3167 <NA> <NA>
## 3168 <NA> <NA>
## 3169 <NA> <NA>
## 3170 <NA> <NA>
## 3171 <NA> <NA>
## 3172 <NA> <NA>
## 3173 <NA> <NA>
## 3174 <NA> <NA>
## 3175 <NA> <NA>
## 3176 <NA> <NA>
## 3177 <NA> <NA>
## 3178 <NA> <NA>
## 3179 <NA> <NA>
## 3180 <NA> <NA>
## 3181 <NA> <NA>
## 3182 <NA> <NA>
## 3183 <NA> <NA>
## 3184 <NA> <NA>
## 3185 <NA> <NA>
## 3186 <NA> <NA>
## 3187 <NA> <NA>
## 3188 <NA> <NA>
## 3189 <NA> <NA>
## 3190 <NA> <NA>
## 3191 <NA> <NA>
## 3192 <NA> <NA>
## 3193 <NA> <NA>
## 3194 <NA> <NA>
## 3195 <NA> <NA>
## 3196 <NA> <NA>
## 3197 <NA> <NA>
## 3198 <NA> <NA>
## 3199 <NA> <NA>
## 3200 <NA> <NA>
## 3201 <NA> <NA>
## 3202 <NA> <NA>
## 3203 <NA> <NA>
## 3204 <NA> <NA>
## 3205 <NA> <NA>
## 3206 <NA> <NA>
## 3207 <NA> <NA>
## 3208 <NA> <NA>
## 3209 <NA> <NA>
## 3210 <NA> <NA>
## 3211 <NA> <NA>
## 3212 <NA> <NA>
## 3213 <NA> <NA>
## 3214 <NA> <NA>
## 3215 <NA> <NA>
## 3216 <NA> <NA>
## 3217 <NA> <NA>
## 3218 <NA> <NA>
## 3219 <NA> <NA>
## 3220 <NA> <NA>
## 3221 <NA> <NA>
## 3222 <NA> <NA>
## 3223 <NA> <NA>
## 3224 <NA> <NA>
## 3225 <NA> <NA>
## 3226 <NA> <NA>
## 3227 <NA> <NA>
## 3228 <NA> <NA>
## 3229 <NA> <NA>
## 3230 <NA> <NA>
## 3231 <NA> <NA>
## 3232 <NA> <NA>
## 3233 <NA> <NA>
## 3234 <NA> <NA>
## 3235 <NA> <NA>
## 3236 <NA> <NA>
## 3237 <NA> <NA>
## 3238 <NA> <NA>
## 3239 <NA> <NA>
## 3240 <NA> <NA>
## 3241 <NA> <NA>
## 3242 <NA> <NA>
## 3243 <NA> <NA>
## 3244 <NA> <NA>
## 3245 <NA> <NA>
## 3246 <NA> <NA>
## 3247 <NA> <NA>
## 3248 <NA> <NA>
## 3249 <NA> <NA>
## 3250 <NA> <NA>
## 3251 <NA> <NA>
## 3252 <NA> <NA>
## 3253 <NA> <NA>
## 3254 <NA> <NA>
## 3255 <NA> <NA>
## 3256 <NA> <NA>
## 3257 <NA> <NA>
## 3258 <NA> <NA>
## 3259 <NA> <NA>
## 3260 <NA> <NA>
## 3261 <NA> <NA>
## 3262 <NA> <NA>
## 3263 <NA> <NA>
## 3264 <NA> <NA>
## 3265 <NA> <NA>
## 3266 <NA> <NA>
## 3267 <NA> <NA>
## 3268 <NA> <NA>
## 3269 <NA> <NA>
## 3270 <NA> <NA>
## 3271 <NA> <NA>
## 3272 <NA> <NA>
## 3273 <NA> <NA>
## 3274 <NA> <NA>
## 3275 <NA> <NA>
## 3276 <NA> <NA>
## 3277 <NA> <NA>
## 3278 <NA> <NA>
## 3279 <NA> <NA>
## 3280 <NA> <NA>
## 3281 <NA> <NA>
## 3282 <NA> <NA>
## 3283 <NA> <NA>
## 3284 <NA> <NA>
## 3285 <NA> <NA>
## 3286 <NA> <NA>
## 3287 <NA> <NA>
## 3288 <NA> <NA>
## 3289 <NA> <NA>
## 3290 <NA> <NA>
## 3291 <NA> <NA>
## 3292 <NA> <NA>
## 3293 <NA> <NA>
## 3294 <NA> <NA>
## 3295 <NA> <NA>
## 3296 <NA> <NA>
## 3297 <NA> <NA>
## 3298 <NA> <NA>
## 3299 <NA> <NA>
## 3300 <NA> <NA>
## 3301 <NA> <NA>
## 3302 <NA> <NA>
## 3303 <NA> <NA>
## 3304 <NA> <NA>
## 3305 <NA> <NA>
## 3306 <NA> <NA>
## 3307 <NA> <NA>
## 3308 <NA> <NA>
## 3309 <NA> <NA>
## 3310 <NA> <NA>
## 3311 <NA> <NA>
## 3312 <NA> <NA>
## 3313 <NA> <NA>
## 3314 <NA> <NA>
## 3315 <NA> <NA>
## 3316 <NA> <NA>
## 3317 <NA> <NA>
## 3318 <NA> <NA>
## 3319 <NA> <NA>
## 3320 <NA> <NA>
## 3321 <NA> <NA>
## 3322 <NA> <NA>
## 3323 <NA> <NA>
## 3324 <NA> <NA>
## 3325 <NA> <NA>
## 3326 <NA> <NA>
## 3327 <NA> <NA>
## 3328 <NA> <NA>
## 3329 <NA> <NA>
## 3330 <NA> <NA>
## 3331 <NA> <NA>
## 3332 <NA> <NA>
## 3333 <NA> <NA>
## 3334 <NA> <NA>
## 3335 <NA> <NA>
## 3336 <NA> <NA>
## 3337 <NA> <NA>
## 3338 <NA> <NA>
## 3339 <NA> <NA>
## 3340 <NA> <NA>
## 3341 <NA> <NA>
## 3342 <NA> <NA>
## 3343 <NA> <NA>
## 3344 <NA> <NA>
## 3345 <NA> <NA>
## 3346 <NA> <NA>
## 3347 <NA> <NA>
## 3348 <NA> <NA>
## 3349 <NA> <NA>
## 3350 <NA> <NA>
## 3351 <NA> <NA>
## 3352 <NA> <NA>
## 3353 <NA> <NA>
## 3354 <NA> <NA>
## 3355 <NA> <NA>
## 3356 <NA> <NA>
## 3357 <NA> <NA>
## 3358 <NA> <NA>
## 3359 <NA> <NA>
## 3360 <NA> <NA>
## 3361 <NA> <NA>
## 3362 <NA> <NA>
## 3363 <NA> <NA>
## 3364 <NA> <NA>
## 3365 <NA> <NA>
## 3366 <NA> <NA>
## 3367 <NA> <NA>
## 3368 <NA> <NA>
## 3369 <NA> <NA>
## 3370 <NA> <NA>
## 3371 <NA> <NA>
## 3372 <NA> <NA>
## 3373 <NA> <NA>
## 3374 <NA> <NA>
## 3375 <NA> <NA>
## 3376 <NA> <NA>
## 3377 <NA> <NA>
## 3378 <NA> <NA>
## 3379 <NA> <NA>
## 3380 <NA> <NA>
## 3381 <NA> <NA>
## 3382 <NA> <NA>
## 3383 <NA> <NA>
## 3384 <NA> <NA>
## 3385 <NA> <NA>
## 3386 <NA> <NA>
## 3387 <NA> <NA>
## 3388 <NA> <NA>
## 3389 <NA> <NA>
## 3390 <NA> <NA>
## 3391 <NA> <NA>
## 3392 <NA> <NA>
## 3393 <NA> <NA>
## 3394 <NA> <NA>
## 3395 <NA> <NA>
## 3396 <NA> <NA>
## 3397 <NA> <NA>
## 3398 <NA> <NA>
## 3399 <NA> <NA>
## 3400 <NA> <NA>
## 3401 <NA> <NA>
## 3402 <NA> <NA>
## 3403 <NA> <NA>
## 3404 <NA> <NA>
## 3405 <NA> <NA>
## 3406 <NA> <NA>
## 3407 <NA> <NA>
## 3408 <NA> <NA>
## 3409 <NA> <NA>
## 3410 <NA> <NA>
## 3411 <NA> <NA>
## 3412 <NA> <NA>
## 3413 <NA> <NA>
## 3414 <NA> <NA>
## 3415 <NA> <NA>
## 3416 <NA> <NA>
## 3417 <NA> <NA>
## 3418 <NA> <NA>
## 3419 <NA> <NA>
## 3420 <NA> <NA>
## 3421 <NA> <NA>
## 3422 <NA> <NA>
## 3423 <NA> <NA>
## 3424 <NA> <NA>
## 3425 <NA> <NA>
## 3426 <NA> <NA>
## 3427 <NA> <NA>
## 3428 <NA> <NA>
## 3429 <NA> <NA>
## 3430 <NA> <NA>
## 3431 <NA> <NA>
## 3432 <NA> <NA>
## 3433 <NA> <NA>
## 3434 <NA> <NA>
## 3435 <NA> <NA>
## 3436 <NA> <NA>
## 3437 <NA> <NA>
## 3438 <NA> <NA>
## 3439 <NA> <NA>
## 3440 <NA> <NA>
## 3441 <NA> <NA>
## 3442 <NA> <NA>
## 3443 <NA> <NA>
## 3444 <NA> <NA>
## 3445 <NA> <NA>
## 3446 <NA> <NA>
## 3447 <NA> <NA>
## 3448 <NA> <NA>
## 3449 <NA> <NA>
## 3450 <NA> <NA>
## 3451 <NA> <NA>
## 3452 <NA> <NA>
## 3453 <NA> <NA>
## 3454 <NA> <NA>
## 3455 <NA> <NA>
## 3456 <NA> <NA>
## 3457 <NA> <NA>
## 3458 <NA> <NA>
## 3459 <NA> <NA>
## 3460 <NA> <NA>
## 3461 <NA> <NA>
## 3462 <NA> <NA>
## 3463 <NA> <NA>
## 3464 <NA> <NA>
## 3465 <NA> <NA>
## 3466 <NA> <NA>
## 3467 <NA> <NA>
## 3468 <NA> <NA>
## 3469 <NA> <NA>
## 3470 <NA> <NA>
## 3471 <NA> <NA>
## 3472 <NA> <NA>
## 3473 <NA> <NA>
## 3474 <NA> <NA>
## 3475 <NA> <NA>
## 3476 <NA> <NA>
## 3477 <NA> <NA>
## 3478 <NA> <NA>
## 3479 <NA> <NA>
## 3480 <NA> <NA>
## 3481 <NA> <NA>
## 3482 <NA> <NA>
## 3483 <NA> <NA>
## 3484 <NA> <NA>
## 3485 <NA> <NA>
## 3486 <NA> <NA>
## 3487 <NA> <NA>
## 3488 <NA> <NA>
## 3489 <NA> <NA>
## 3490 <NA> <NA>
## 3491 <NA> <NA>
## 3492 <NA> <NA>
## 3493 <NA> <NA>
## 3494 <NA> <NA>
## 3495 <NA> <NA>
## 3496 <NA> <NA>
## 3497 <NA> <NA>
## 3498 <NA> <NA>
## 3499 <NA> <NA>
## 3500 <NA> <NA>
## 3501 <NA> <NA>
## 3502 <NA> <NA>
## 3503 <NA> <NA>
## 3504 <NA> <NA>
## 3505 <NA> <NA>
## 3506 <NA> <NA>
## 3507 <NA> <NA>
## 3508 <NA> <NA>
## 3509 <NA> <NA>
## 3510 <NA> <NA>
## 3511 <NA> <NA>
## 3512 <NA> <NA>
## 3513 <NA> <NA>
## 3514 <NA> <NA>
## 3515 <NA> <NA>
## 3516 <NA> <NA>
## 3517 <NA> <NA>
## 3518 <NA> <NA>
## 3519 <NA> <NA>
## 3520 <NA> <NA>
## 3521 <NA> <NA>
## 3522 <NA> <NA>
## 3523 <NA> <NA>
## 3524 <NA> <NA>
## 3525 <NA> <NA>
## 3526 <NA> <NA>
## 3527 <NA> <NA>
## 3528 <NA> <NA>
## 3529 <NA> <NA>
## 3530 <NA> <NA>
## 3531 <NA> <NA>
## 3532 <NA> <NA>
## 3533 <NA> <NA>
## 3534 <NA> <NA>
## 3535 <NA> <NA>
## 3536 <NA> <NA>
## 3537 <NA> <NA>
## 3538 <NA> <NA>
## 3539 <NA> <NA>
## 3540 <NA> <NA>
## 3541 <NA> <NA>
## 3542 <NA> <NA>
## 3543 <NA> <NA>
## 3544 <NA> <NA>
## 3545 <NA> <NA>
## 3546 <NA> <NA>
## 3547 <NA> <NA>
## 3548 <NA> <NA>
## 3549 <NA> <NA>
## 3550 <NA> <NA>
## 3551 <NA> <NA>
## 3552 <NA> <NA>
## 3553 <NA> <NA>
## 3554 <NA> <NA>
## 3555 <NA> <NA>
## 3556 <NA> <NA>
## 3557 <NA> <NA>
## 3558 <NA> <NA>
## 3559 <NA> <NA>
## 3560 <NA> <NA>
## 3561 <NA> <NA>
## 3562 <NA> <NA>
## 3563 <NA> <NA>
## 3564 <NA> <NA>
## 3565 <NA> <NA>
## 3566 <NA> <NA>
## 3567 <NA> <NA>
## 3568 <NA> <NA>
## 3569 <NA> <NA>
## 3570 <NA> <NA>
## 3571 <NA> <NA>
## 3572 <NA> <NA>
## 3573 <NA> <NA>
## 3574 <NA> <NA>
## 3575 <NA> <NA>
## 3576 <NA> <NA>
## 3577 <NA> <NA>
## 3578 <NA> <NA>
## 3579 <NA> <NA>
## 3580 <NA> <NA>
## 3581 <NA> <NA>
## 3582 <NA> <NA>
## 3583 <NA> <NA>
## 3584 <NA> <NA>
## 3585 <NA> <NA>
## 3586 <NA> <NA>
## 3587 <NA> <NA>
## 3588 <NA> <NA>
## 3589 <NA> <NA>
## 3590 <NA> <NA>
## 3591 <NA> <NA>
## 3592 <NA> <NA>
## 3593 <NA> <NA>
## 3594 <NA> <NA>
## 3595 <NA> <NA>
## 3596 <NA> <NA>
## 3597 <NA> <NA>
## 3598 <NA> <NA>
## 3599 <NA> <NA>
## 3600 <NA> <NA>
## 3601 <NA> <NA>
## 3602 <NA> <NA>
## 3603 <NA> <NA>
## 3604 <NA> <NA>
## 3605 <NA> <NA>
## 3606 <NA> <NA>
## 3607 <NA> <NA>
## 3608 <NA> <NA>
## 3609 <NA> <NA>
## 3610 <NA> <NA>
## 3611 <NA> <NA>
## 3612 <NA> <NA>
## 3613 <NA> <NA>
## 3614 <NA> <NA>
## 3615 <NA> <NA>
## 3616 <NA> <NA>
## 3617 <NA> <NA>
## 3618 <NA> <NA>
## 3619 <NA> <NA>
## 3620 <NA> <NA>
## 3621 <NA> <NA>
## 3622 <NA> <NA>
## 3623 <NA> <NA>
## 3624 <NA> <NA>
## 3625 <NA> <NA>
## 3626 <NA> <NA>
## 3627 <NA> <NA>
## 3628 <NA> <NA>
## 3629 <NA> <NA>
## 3630 <NA> <NA>
## 3631 <NA> <NA>
## 3632 <NA> <NA>
## 3633 <NA> <NA>
## 3634 <NA> <NA>
## 3635 <NA> <NA>
## 3636 <NA> <NA>
## 3637 <NA> <NA>
## 3638 <NA> <NA>
## 3639 <NA> <NA>
## 3640 <NA> <NA>
## 3641 <NA> <NA>
## 3642 <NA> <NA>
## 3643 <NA> <NA>
## 3644 <NA> <NA>
## 3645 <NA> <NA>
## 3646 <NA> <NA>
## 3647 <NA> <NA>
## 3648 <NA> <NA>
## 3649 <NA> <NA>
## 3650 <NA> <NA>
## 3651 <NA> <NA>
## 3652 <NA> <NA>
## 3653 <NA> <NA>
## 3654 <NA> <NA>
## 3655 <NA> <NA>
## 3656 <NA> <NA>
## 3657 <NA> <NA>
## 3658 <NA> <NA>
## 3659 <NA> <NA>
## 3660 <NA> <NA>
## 3661 <NA> <NA>
## 3662 <NA> <NA>
## 3663 <NA> <NA>
## 3664 <NA> <NA>
## 3665 <NA> <NA>
## 3666 <NA> <NA>
## 3667 <NA> <NA>
## 3668 <NA> <NA>
## 3669 <NA> <NA>
## 3670 <NA> <NA>
## 3671 <NA> <NA>
## 3672 <NA> <NA>
## 3673 <NA> <NA>
## 3674 <NA> <NA>
## 3675 <NA> <NA>
## 3676 <NA> <NA>
## 3677 <NA> <NA>
## 3678 <NA> <NA>
## 3679 <NA> <NA>
## 3680 <NA> <NA>
## 3681 <NA> <NA>
## 3682 <NA> <NA>
## 3683 <NA> <NA>
## 3684 <NA> <NA>
## 3685 <NA> <NA>
## 3686 <NA> <NA>
## 3687 <NA> <NA>
## 3688 <NA> <NA>
## 3689 <NA> <NA>
## 3690 <NA> <NA>
## 3691 <NA> <NA>
## 3692 <NA> <NA>
## 3693 <NA> <NA>
## 3694 <NA> <NA>
## 3695 <NA> <NA>
## 3696 <NA> <NA>
## 3697 <NA> <NA>
## 3698 <NA> <NA>
## 3699 <NA> <NA>
## 3700 <NA> <NA>
## 3701 <NA> <NA>
## 3702 <NA> <NA>
## 3703 <NA> <NA>
## 3704 <NA> <NA>
## 3705 <NA> <NA>
## 3706 <NA> <NA>
## 3707 <NA> <NA>
## 3708 <NA> <NA>
## 3709 <NA> <NA>
## 3710 <NA> <NA>
## 3711 <NA> <NA>
## 3712 <NA> <NA>
## 3713 <NA> <NA>
## 3714 <NA> <NA>
## 3715 <NA> <NA>
## 3716 <NA> <NA>
## 3717 <NA> <NA>
## 3718 <NA> <NA>
## 3719 <NA> <NA>
## 3720 <NA> <NA>
## 3721 <NA> <NA>
## 3722 <NA> <NA>
## 3723 <NA> <NA>
## 3724 <NA> <NA>
## 3725 <NA> <NA>
## 3726 <NA> <NA>
## 3727 <NA> <NA>
## 3728 <NA> <NA>
## 3729 <NA> <NA>
## 3730 <NA> <NA>
## 3731 <NA> <NA>
## 3732 <NA> <NA>
## 3733 <NA> <NA>
## 3734 <NA> <NA>
## 3735 <NA> <NA>
## 3736 <NA> <NA>
## 3737 <NA> <NA>
## 3738 <NA> <NA>
## 3739 <NA> <NA>
## 3740 <NA> <NA>
## 3741 <NA> <NA>
## 3742 <NA> <NA>
## 3743 <NA> <NA>
## 3744 <NA> <NA>
## 3745 <NA> <NA>
## 3746 <NA> <NA>
## 3747 <NA> <NA>
## 3748 <NA> <NA>
## 3749 <NA> <NA>
## 3750 <NA> <NA>
## 3751 <NA> <NA>
## 3752 <NA> <NA>
## 3753 <NA> <NA>
## 3754 <NA> <NA>
## 3755 <NA> <NA>
## 3756 <NA> <NA>
## 3757 <NA> <NA>
## 3758 <NA> <NA>
## 3759 <NA> <NA>
## 3760 <NA> <NA>
## 3761 <NA> <NA>
## 3762 <NA> <NA>
## 3763 <NA> <NA>
## 3764 <NA> <NA>
## 3765 <NA> <NA>
## 3766 <NA> <NA>
## 3767 <NA> <NA>
## 3768 <NA> <NA>
## 3769 <NA> <NA>
## 3770 <NA> <NA>
## 3771 <NA> <NA>
## 3772 <NA> <NA>
## 3773 <NA> <NA>
## 3774 <NA> <NA>
## 3775 <NA> <NA>
## 3776 <NA> <NA>
## 3777 <NA> <NA>
## 3778 <NA> <NA>
## 3779 <NA> <NA>
## 3780 <NA> <NA>
## 3781 <NA> <NA>
## 3782 <NA> <NA>
## 3783 <NA> <NA>
## 3784 <NA> <NA>
## 3785 <NA> <NA>
## 3786 <NA> <NA>
## 3787 <NA> <NA>
## 3788 <NA> <NA>
## 3789 <NA> <NA>
## 3790 <NA> <NA>
## 3791 <NA> <NA>
## 3792 <NA> <NA>
## 3793 <NA> <NA>
## 3794 <NA> <NA>
## 3795 <NA> <NA>
## 3796 <NA> <NA>
## 3797 <NA> <NA>
## 3798 <NA> <NA>
## 3799 <NA> <NA>
## 3800 <NA> <NA>
## 3801 <NA> <NA>
## 3802 <NA> <NA>
## 3803 <NA> <NA>
## 3804 <NA> <NA>
## 3805 <NA> <NA>
## 3806 <NA> <NA>
## 3807 <NA> <NA>
## 3808 <NA> <NA>
## 3809 <NA> <NA>
## 3810 <NA> <NA>
## 3811 <NA> <NA>
## 3812 <NA> <NA>
## 3813 <NA> <NA>
## 3814 <NA> <NA>
## 3815 <NA> <NA>
## 3816 <NA> <NA>
## 3817 <NA> <NA>
## 3818 <NA> <NA>
## 3819 <NA> <NA>
## 3820 <NA> <NA>
## 3821 <NA> <NA>
## 3822 <NA> <NA>
## 3823 <NA> <NA>
## 3824 <NA> <NA>
## 3825 <NA> <NA>
## 3826 <NA> <NA>
## 3827 <NA> <NA>
## 3828 <NA> <NA>
## 3829 <NA> <NA>
## 3830 <NA> <NA>
## 3831 <NA> <NA>
## 3832 <NA> <NA>
## 3833 <NA> <NA>
## 3834 <NA> <NA>
## 3835 <NA> <NA>
## 3836 <NA> <NA>
## 3837 <NA> <NA>
## 3838 <NA> <NA>
## 3839 <NA> <NA>
## 3840 <NA> <NA>
## 3841 <NA> <NA>
## 3842 <NA> <NA>
## 3843 <NA> <NA>
## 3844 <NA> <NA>
## 3845 <NA> <NA>
## 3846 <NA> <NA>
## 3847 <NA> <NA>
## 3848 <NA> <NA>
## 3849 <NA> <NA>
## 3850 <NA> <NA>
## 3851 <NA> <NA>
## 3852 <NA> <NA>
## 3853 <NA> <NA>
## 3854 <NA> <NA>
## 3855 <NA> <NA>
## 3856 <NA> <NA>
## 3857 <NA> <NA>
## 3858 <NA> <NA>
## 3859 <NA> <NA>
## 3860 <NA> <NA>
## 3861 <NA> <NA>
## 3862 <NA> <NA>
## 3863 <NA> <NA>
## 3864 <NA> <NA>
## 3865 <NA> <NA>
## 3866 <NA> <NA>
## 3867 <NA> <NA>
## 3868 <NA> <NA>
## 3869 <NA> <NA>
## 3870 <NA> <NA>
## 3871 <NA> <NA>
## 3872 <NA> <NA>
## 3873 <NA> <NA>
## 3874 <NA> <NA>
## 3875 <NA> <NA>
## 3876 <NA> <NA>
## 3877 <NA> <NA>
## 3878 <NA> <NA>
## 3879 <NA> <NA>
## 3880 <NA> <NA>
## 3881 <NA> <NA>
## 3882 <NA> <NA>
## 3883 <NA> <NA>
## 3884 <NA> <NA>
## 3885 <NA> <NA>
## 3886 <NA> <NA>
## 3887 <NA> <NA>
## 3888 <NA> <NA>
## 3889 <NA> <NA>
## 3890 <NA> <NA>
## 3891 <NA> <NA>
## 3892 <NA> <NA>
## 3893 <NA> <NA>
## 3894 <NA> <NA>
## 3895 <NA> <NA>
## 3896 <NA> <NA>
## 3897 <NA> <NA>
## 3898 <NA> <NA>
## 3899 <NA> <NA>
## 3900 <NA> <NA>
## 3901 <NA> <NA>
## 3902 <NA> <NA>
## 3903 <NA> <NA>
## 3904 <NA> <NA>
## 3905 <NA> <NA>
## 3906 <NA> <NA>
## 3907 <NA> <NA>
## 3908 <NA> <NA>
## 3909 <NA> <NA>
## 3910 <NA> <NA>
## 3911 <NA> <NA>
## 3912 <NA> <NA>
## 3913 <NA> <NA>
## 3914 <NA> <NA>
## 3915 <NA> <NA>
## 3916 <NA> <NA>
## 3917 <NA> <NA>
## 3918 <NA> <NA>
## 3919 <NA> <NA>
## 3920 <NA> <NA>
## 3921 <NA> <NA>
## 3922 <NA> <NA>
## 3923 <NA> <NA>
## 3924 <NA> <NA>
## 3925 <NA> <NA>
## 3926 <NA> <NA>
## 3927 <NA> <NA>
## 3928 <NA> <NA>
## 3929 <NA> <NA>
## 3930 <NA> <NA>
## 3931 <NA> <NA>
## 3932 <NA> <NA>
## 3933 <NA> <NA>
## 3934 <NA> <NA>
## 3935 <NA> <NA>
## 3936 <NA> <NA>
## 3937 <NA> <NA>
## 3938 <NA> <NA>
## 3939 <NA> <NA>
## 3940 <NA> <NA>
## 3941 <NA> <NA>
## 3942 <NA> <NA>
## 3943 <NA> <NA>
## 3944 <NA> <NA>
## 3945 <NA> <NA>
## 3946 <NA> <NA>
## 3947 <NA> <NA>
## 3948 <NA> <NA>
## 3949 <NA> <NA>
## 3950 <NA> <NA>
## 3951 <NA> <NA>
## 3952 <NA> <NA>
## 3953 <NA> <NA>
## 3954 <NA> <NA>
## 3955 <NA> <NA>
## 3956 <NA> <NA>
## 3957 <NA> <NA>
## 3958 <NA> <NA>
## 3959 <NA> <NA>
## 3960 <NA> <NA>
## 3961 <NA> <NA>
## 3962 <NA> <NA>
## 3963 <NA> <NA>
## 3964 <NA> <NA>
## 3965 <NA> <NA>
## 3966 <NA> <NA>
## 3967 <NA> <NA>
## 3968 <NA> <NA>
## 3969 <NA> <NA>
## 3970 <NA> <NA>
## 3971 <NA> <NA>
## 3972 <NA> <NA>
## 3973 <NA> <NA>
## 3974 <NA> <NA>
## 3975 <NA> <NA>
## 3976 <NA> <NA>
## 3977 <NA> <NA>
## 3978 <NA> <NA>
## 3979 <NA> <NA>
## 3980 <NA> <NA>
## 3981 <NA> <NA>
## 3982 <NA> <NA>
## 3983 <NA> <NA>
## 3984 <NA> <NA>
## 3985 <NA> <NA>
## 3986 <NA> <NA>
## 3987 <NA> <NA>
## 3988 <NA> <NA>
## 3989 <NA> <NA>
## 3990 <NA> <NA>
## 3991 <NA> <NA>
## 3992 <NA> <NA>
## 3993 <NA> <NA>
## 3994 <NA> <NA>
## 3995 <NA> <NA>
## 3996 <NA> <NA>
## 3997 <NA> <NA>
## 3998 <NA> <NA>
## 3999 <NA> <NA>
## 4000 <NA> <NA>
## 4001 <NA> <NA>
## 4002 <NA> <NA>
## 4003 <NA> <NA>
## 4004 <NA> <NA>
## 4005 <NA> <NA>
## 4006 <NA> <NA>
## 4007 <NA> <NA>
## 4008 <NA> <NA>
## 4009 <NA> <NA>
## 4010 <NA> <NA>
## 4011 <NA> <NA>
## 4012 <NA> <NA>
## 4013 <NA> <NA>
## 4014 <NA> <NA>
## 4015 <NA> <NA>
## 4016 <NA> <NA>
## 4017 <NA> <NA>
## 4018 <NA> <NA>
## 4019 <NA> <NA>
## 4020 <NA> <NA>
## 4021 <NA> <NA>
## 4022 <NA> <NA>
## 4023 <NA> <NA>
## 4024 <NA> <NA>
## 4025 <NA> <NA>
## 4026 <NA> <NA>
## 4027 <NA> <NA>
## 4028 <NA> <NA>
## 4029 <NA> <NA>
## 4030 <NA> <NA>
## 4031 <NA> <NA>
## 4032 <NA> <NA>
## 4033 <NA> <NA>
## 4034 <NA> <NA>
## 4035 <NA> <NA>
## 4036 <NA> <NA>
## 4037 <NA> <NA>
## 4038 <NA> <NA>
## 4039 <NA> <NA>
## 4040 <NA> <NA>
## 4041 <NA> <NA>
## 4042 <NA> <NA>
## 4043 <NA> <NA>
## 4044 <NA> <NA>
## 4045 <NA> <NA>
## 4046 <NA> <NA>
## 4047 <NA> <NA>
## 4048 <NA> <NA>
## 4049 <NA> <NA>
## 4050 <NA> <NA>
## 4051 <NA> <NA>
## 4052 <NA> <NA>
## 4053 <NA> <NA>
## 4054 <NA> <NA>
## 4055 <NA> <NA>
## 4056 <NA> <NA>
## 4057 <NA> <NA>
## 4058 <NA> <NA>
## 4059 <NA> <NA>
## 4060 <NA> <NA>
## 4061 <NA> <NA>
## 4062 <NA> <NA>
## 4063 <NA> <NA>
## 4064 <NA> <NA>
## 4065 <NA> <NA>
## 4066 <NA> <NA>
## 4067 <NA> <NA>
## 4068 <NA> <NA>
## 4069 <NA> <NA>
## 4070 <NA> <NA>
## 4071 <NA> <NA>
## 4072 <NA> <NA>
## 4073 <NA> <NA>
## 4074 <NA> <NA>
## 4075 <NA> <NA>
## 4076 <NA> <NA>
## 4077 <NA> <NA>
## 4078 <NA> <NA>
## 4079 <NA> <NA>
## 4080 <NA> <NA>
## 4081 <NA> <NA>
## 4082 <NA> <NA>
## 4083 <NA> <NA>
## 4084 <NA> <NA>
## 4085 <NA> <NA>
## 4086 <NA> <NA>
## 4087 <NA> <NA>
## 4088 <NA> <NA>
## 4089 <NA> <NA>
## 4090 <NA> <NA>
## 4091 <NA> <NA>
## 4092 <NA> <NA>
## 4093 <NA> <NA>
## 4094 <NA> <NA>
## 4095 <NA> <NA>
## 4096 <NA> <NA>
## 4097 <NA> <NA>
## 4098 <NA> <NA>
## 4099 <NA> <NA>
## 4100 <NA> <NA>
## 4101 <NA> <NA>
## 4102 <NA> <NA>
## 4103 <NA> <NA>
## 4104 <NA> <NA>
## 4105 <NA> <NA>
## 4106 <NA> <NA>
## 4107 <NA> <NA>
## 4108 <NA> <NA>
## 4109 <NA> <NA>
## 4110 <NA> <NA>
## 4111 <NA> <NA>
## 4112 <NA> <NA>
## 4113 <NA> <NA>
## 4114 <NA> <NA>
## 4115 <NA> <NA>
## 4116 <NA> <NA>
## 4117 <NA> <NA>
## 4118 <NA> <NA>
## 4119 <NA> <NA>
## 4120 <NA> <NA>
## 4121 <NA> <NA>
## 4122 <NA> <NA>
## 4123 <NA> <NA>
## 4124 <NA> <NA>
## 4125 <NA> <NA>
## 4126 <NA> <NA>
## 4127 <NA> <NA>
## 4128 <NA> <NA>
## 4129 <NA> <NA>
## 4130 <NA> <NA>
## 4131 <NA> <NA>
## 4132 <NA> <NA>
## 4133 <NA> <NA>
## 4134 <NA> <NA>
## 4135 <NA> <NA>
## 4136 <NA> <NA>
## 4137 <NA> <NA>
## 4138 <NA> <NA>
## 4139 <NA> <NA>
## 4140 <NA> <NA>
## 4141 <NA> <NA>
## 4142 <NA> <NA>
## 4143 <NA> <NA>
## 4144 <NA> <NA>
## 4145 <NA> <NA>
## 4146 <NA> <NA>
## 4147 <NA> <NA>
## 4148 <NA> <NA>
## 4149 <NA> <NA>
## 4150 <NA> <NA>
## 4151 <NA> <NA>
## 4152 <NA> <NA>
## 4153 <NA> <NA>
## 4154 <NA> <NA>
## 4155 <NA> <NA>
## 4156 <NA> <NA>
## 4157 <NA> <NA>
## 4158 <NA> <NA>
## 4159 <NA> <NA>
## 4160 <NA> <NA>
## 4161 <NA> <NA>
## 4162 <NA> <NA>
## 4163 <NA> <NA>
## 4164 <NA> <NA>
## 4165 <NA> <NA>
## 4166 <NA> <NA>
## 4167 <NA> <NA>
## 4168 <NA> <NA>
## 4169 <NA> <NA>
## 4170 <NA> <NA>
## 4171 <NA> <NA>
## 4172 <NA> <NA>
## 4173 <NA> <NA>
## 4174 <NA> <NA>
## 4175 <NA> <NA>
## 4176 <NA> <NA>
## 4177 <NA> <NA>
## 4178 <NA> <NA>
## 4179 <NA> <NA>
## 4180 <NA> <NA>
## 4181 <NA> <NA>
## 4182 <NA> <NA>
## 4183 <NA> <NA>
## 4184 <NA> <NA>
## 4185 <NA> <NA>
## 4186 <NA> <NA>
## 4187 <NA> <NA>
## 4188 <NA> <NA>
## 4189 <NA> <NA>
## 4190 <NA> <NA>
## 4191 <NA> <NA>
## 4192 <NA> <NA>
## 4193 <NA> <NA>
## 4194 <NA> <NA>
## 4195 <NA> <NA>
## 4196 <NA> <NA>
## 4197 <NA> <NA>
## 4198 <NA> <NA>
## 4199 <NA> <NA>
## 4200 <NA> <NA>
## 4201 <NA> <NA>
## 4202 <NA> <NA>
## 4203 <NA> <NA>
## 4204 <NA> <NA>
## 4205 <NA> <NA>
## 4206 <NA> <NA>
## 4207 <NA> <NA>
## 4208 <NA> <NA>
## 4209 <NA> <NA>
## 4210 <NA> <NA>
## 4211 <NA> <NA>
## 4212 <NA> <NA>
## 4213 <NA> <NA>
## 4214 <NA> <NA>
## 4215 <NA> <NA>
## 4216 <NA> <NA>
## 4217 <NA> <NA>
## 4218 <NA> <NA>
## 4219 <NA> <NA>
## 4220 <NA> <NA>
## 4221 <NA> <NA>
## 4222 <NA> <NA>
## 4223 <NA> <NA>
## 4224 <NA> <NA>
## 4225 <NA> <NA>
## 4226 <NA> <NA>
## 4227 <NA> <NA>
## 4228 <NA> <NA>
## 4229 <NA> <NA>
## 4230 <NA> <NA>
## 4231 <NA> <NA>
## 4232 <NA> <NA>
## 4233 <NA> <NA>
## 4234 <NA> <NA>
## 4235 <NA> <NA>
## 4236 <NA> <NA>
## 4237 <NA> <NA>
## 4238 <NA> <NA>
## 4239 <NA> <NA>
## 4240 <NA> <NA>
## 4241 <NA> <NA>
## 4242 <NA> <NA>
## 4243 <NA> <NA>
## 4244 <NA> <NA>
## 4245 <NA> <NA>
## 4246 <NA> <NA>
## 4247 <NA> <NA>
## 4248 <NA> <NA>
## 4249 <NA> <NA>
## 4250 <NA> <NA>
## 4251 <NA> <NA>
## 4252 <NA> <NA>
## 4253 <NA> <NA>
## 4254 <NA> <NA>
## 4255 <NA> <NA>
## 4256 <NA> <NA>
## 4257 <NA> <NA>
## 4258 <NA> <NA>
## 4259 <NA> <NA>
## 4260 <NA> <NA>
## 4261 <NA> <NA>
## 4262 <NA> <NA>
## 4263 <NA> <NA>
## 4264 <NA> <NA>
## 4265 <NA> <NA>
## 4266 <NA> <NA>
## 4267 <NA> <NA>
## 4268 <NA> <NA>
## 4269 <NA> <NA>
## 4270 <NA> <NA>
## 4271 <NA> <NA>
## 4272 <NA> <NA>
## 4273 <NA> <NA>
## 4274 <NA> <NA>
## 4275 <NA> <NA>
## 4276 <NA> <NA>
## 4277 <NA> <NA>
## 4278 <NA> <NA>
## 4279 <NA> <NA>
## 4280 <NA> <NA>
## 4281 <NA> <NA>
## 4282 <NA> <NA>
## 4283 <NA> <NA>
## 4284 <NA> <NA>
## 4285 <NA> <NA>
## 4286 <NA> <NA>
## 4287 <NA> <NA>
## 4288 <NA> <NA>
## 4289 <NA> <NA>
## 4290 <NA> <NA>
## 4291 <NA> <NA>
## 4292 <NA> <NA>
## 4293 <NA> <NA>
## 4294 <NA> <NA>
## 4295 <NA> <NA>
## 4296 <NA> <NA>
## 4297 <NA> <NA>
## 4298 <NA> <NA>
## 4299 <NA> <NA>
## 4300 <NA> <NA>
## 4301 <NA> <NA>
## 4302 <NA> <NA>
## 4303 <NA> <NA>
## 4304 <NA> <NA>
## 4305 <NA> <NA>
## 4306 <NA> <NA>
## 4307 <NA> <NA>
## 4308 <NA> <NA>
## 4309 <NA> <NA>
## 4310 <NA> <NA>
## 4311 <NA> <NA>
## 4312 <NA> <NA>
## 4313 <NA> <NA>
## 4314 <NA> <NA>
## 4315 <NA> <NA>
## 4316 <NA> <NA>
## 4317 <NA> <NA>
## 4318 <NA> <NA>
## 4319 <NA> <NA>
## 4320 <NA> <NA>
## 4321 <NA> <NA>
## 4322 <NA> <NA>
## 4323 <NA> <NA>
## 4324 <NA> <NA>
## 4325 <NA> <NA>
## 4326 <NA> <NA>
## 4327 <NA> <NA>
## 4328 <NA> <NA>
## 4329 <NA> <NA>
## 4330 <NA> <NA>
## 4331 <NA> <NA>
## 4332 <NA> <NA>
## 4333 <NA> <NA>
## 4334 <NA> <NA>
## 4335 <NA> <NA>
## 4336 <NA> <NA>
## 4337 <NA> <NA>
## 4338 <NA> <NA>
## 4339 <NA> <NA>
## 4340 <NA> <NA>
## 4341 <NA> <NA>
## 4342 <NA> <NA>
## 4343 <NA> <NA>
## 4344 <NA> <NA>
## 4345 <NA> <NA>
## 4346 <NA> <NA>
## 4347 <NA> <NA>
## 4348 <NA> <NA>
## 4349 <NA> <NA>
## 4350 <NA> <NA>
## 4351 <NA> <NA>
## 4352 <NA> <NA>
## 4353 <NA> <NA>
## 4354 <NA> <NA>
## 4355 <NA> <NA>
## 4356 <NA> <NA>
## 4357 <NA> <NA>
## 4358 <NA> <NA>
## 4359 <NA> <NA>
## 4360 <NA> <NA>
## 4361 <NA> <NA>
## 4362 <NA> <NA>
## 4363 <NA> <NA>
## 4364 <NA> <NA>
## 4365 <NA> <NA>
## 4366 <NA> <NA>
## 4367 <NA> <NA>
## 4368 <NA> <NA>
## 4369 <NA> <NA>
## 4370 <NA> <NA>
## 4371 <NA> <NA>
## 4372 <NA> <NA>
## 4373 <NA> <NA>
## 4374 <NA> <NA>
## 4375 <NA> <NA>
## 4376 <NA> <NA>
## 4377 <NA> <NA>
## 4378 <NA> <NA>
## 4379 <NA> <NA>
## 4380 <NA> <NA>
## 4381 <NA> <NA>
## 4382 <NA> <NA>
## 4383 <NA> <NA>
## 4384 <NA> <NA>
## 4385 <NA> <NA>
## 4386 <NA> <NA>
## 4387 <NA> <NA>
## 4388 <NA> <NA>
## 4389 <NA> <NA>
## 4390 <NA> <NA>
## 4391 <NA> <NA>
## 4392 <NA> <NA>
## 4393 <NA> <NA>
## 4394 <NA> <NA>
## 4395 <NA> <NA>
## 4396 <NA> <NA>
## 4397 <NA> <NA>
## 4398 <NA> <NA>
## 4399 <NA> <NA>
## 4400 <NA> <NA>
## 4401 <NA> <NA>
## 4402 <NA> <NA>
## 4403 <NA> <NA>
## 4404 <NA> <NA>
## 4405 <NA> <NA>
## 4406 <NA> <NA>
## 4407 <NA> <NA>
## 4408 <NA> <NA>
## 4409 <NA> <NA>
## 4410 <NA> <NA>
## 4411 <NA> <NA>
## 4412 <NA> <NA>
## 4413 <NA> <NA>
## 4414 <NA> <NA>
## 4415 <NA> <NA>
## 4416 <NA> <NA>
## 4417 <NA> <NA>
## 4418 <NA> <NA>
## 4419 <NA> <NA>
## 4420 <NA> <NA>
## 4421 <NA> <NA>
## 4422 <NA> <NA>
## 4423 <NA> <NA>
## 4424 <NA> <NA>
## 4425 <NA> <NA>
## 4426 <NA> <NA>
## 4427 <NA> <NA>
## 4428 <NA> <NA>
## 4429 <NA> <NA>
## 4430 <NA> <NA>
## 4431 <NA> <NA>
## 4432 <NA> <NA>
## 4433 <NA> <NA>
## 4434 <NA> <NA>
## 4435 <NA> <NA>
## 4436 <NA> <NA>
## 4437 <NA> <NA>
## 4438 <NA> <NA>
## 4439 <NA> <NA>
## 4440 <NA> <NA>
## 4441 <NA> <NA>
## 4442 <NA> <NA>
## 4443 <NA> <NA>
## 4444 <NA> <NA>
## 4445 <NA> <NA>
## 4446 <NA> <NA>
## 4447 <NA> <NA>
## 4448 <NA> <NA>
## 4449 <NA> <NA>
## 4450 <NA> <NA>
## 4451 <NA> <NA>
## 4452 <NA> <NA>
## 4453 <NA> <NA>
## 4454 <NA> <NA>
## 4455 <NA> <NA>
## 4456 <NA> <NA>
## 4457 <NA> <NA>
## 4458 <NA> <NA>
## 4459 <NA> <NA>
## 4460 <NA> <NA>
## 4461 <NA> <NA>
## 4462 <NA> <NA>
## 4463 <NA> <NA>
## 4464 <NA> <NA>
## 4465 <NA> <NA>
## 4466 <NA> <NA>
## 4467 <NA> <NA>
## 4468 <NA> <NA>
## 4469 <NA> <NA>
## 4470 <NA> <NA>
## 4471 <NA> <NA>
## 4472 <NA> <NA>
## 4473 <NA> <NA>
## 4474 <NA> <NA>
## 4475 <NA> <NA>
## 4476 <NA> <NA>
## 4477 <NA> <NA>
## 4478 <NA> <NA>
## 4479 <NA> <NA>
## 4480 <NA> <NA>
## 4481 <NA> <NA>
## 4482 <NA> <NA>
## 4483 <NA> <NA>
## 4484 <NA> <NA>
## 4485 <NA> <NA>
## 4486 <NA> <NA>
## 4487 <NA> <NA>
## 4488 <NA> <NA>
## 4489 <NA> <NA>
## 4490 <NA> <NA>
## 4491 <NA> <NA>
## 4492 <NA> <NA>
## 4493 <NA> <NA>
## 4494 <NA> <NA>
## 4495 <NA> <NA>
## 4496 <NA> <NA>
## 4497 <NA> <NA>
## 4498 <NA> <NA>
## 4499 <NA> <NA>
## 4500 <NA> <NA>
## 4501 <NA> <NA>
## 4502 <NA> <NA>
## 4503 <NA> <NA>
## 4504 <NA> <NA>
## 4505 <NA> <NA>
## 4506 <NA> <NA>
## 4507 <NA> <NA>
## 4508 <NA> <NA>
## 4509 <NA> <NA>
## 4510 <NA> <NA>
## 4511 <NA> <NA>
## 4512 <NA> <NA>
## 4513 <NA> <NA>
## 4514 <NA> <NA>
## 4515 <NA> <NA>
## 4516 <NA> <NA>
## 4517 <NA> <NA>
## 4518 <NA> <NA>
## 4519 <NA> <NA>
## 4520 <NA> <NA>
## 4521 <NA> <NA>
## 4522 <NA> <NA>
## 4523 <NA> <NA>
## 4524 <NA> <NA>
## 4525 <NA> <NA>
## 4526 <NA> <NA>
## 4527 <NA> <NA>
## 4528 <NA> <NA>
## 4529 <NA> <NA>
## 4530 <NA> <NA>
## 4531 <NA> <NA>
## 4532 <NA> <NA>
## 4533 <NA> <NA>
## 4534 <NA> <NA>
## 4535 <NA> <NA>
## 4536 <NA> <NA>
## 4537 <NA> <NA>
## 4538 <NA> <NA>
## 4539 <NA> <NA>
## 4540 <NA> <NA>
## 4541 <NA> <NA>
## 4542 <NA> <NA>
## 4543 <NA> <NA>
## 4544 <NA> <NA>
## 4545 <NA> <NA>
## 4546 <NA> <NA>
## 4547 <NA> <NA>
## 4548 <NA> <NA>
## 4549 <NA> <NA>
## 4550 <NA> <NA>
## 4551 <NA> <NA>
## 4552 <NA> <NA>
## 4553 <NA> <NA>
## 4554 <NA> <NA>
## 4555 <NA> <NA>
## 4556 <NA> <NA>
## 4557 <NA> <NA>
## 4558 <NA> <NA>
## 4559 <NA> <NA>
## 4560 <NA> <NA>
## 4561 <NA> <NA>
## 4562 <NA> <NA>
## 4563 <NA> <NA>
## 4564 <NA> <NA>
## 4565 <NA> <NA>
## 4566 <NA> <NA>
## 4567 <NA> <NA>
## 4568 <NA> <NA>
## 4569 <NA> <NA>
## 4570 <NA> <NA>
## 4571 <NA> <NA>
## 4572 <NA> <NA>
## 4573 <NA> <NA>
## 4574 <NA> <NA>
## 4575 <NA> <NA>
## 4576 <NA> <NA>
## 4577 <NA> <NA>
## 4578 <NA> <NA>
## 4579 <NA> <NA>
## 4580 <NA> <NA>
## 4581 <NA> <NA>
## 4582 <NA> <NA>
## 4583 <NA> <NA>
## 4584 <NA> <NA>
## 4585 <NA> <NA>
## 4586 <NA> <NA>
## 4587 <NA> <NA>
## 4588 <NA> <NA>
## 4589 <NA> <NA>
## 4590 <NA> <NA>
## 4591 <NA> <NA>
## 4592 <NA> <NA>
## 4593 <NA> <NA>
## 4594 <NA> <NA>
## 4595 <NA> <NA>
## 4596 <NA> <NA>
## 4597 <NA> <NA>
## 4598 <NA> <NA>
## 4599 <NA> <NA>
## 4600 <NA> <NA>
## 4601 <NA> <NA>
## 4602 <NA> <NA>
## 4603 <NA> <NA>
## 4604 <NA> <NA>
## 4605 <NA> <NA>
## 4606 <NA> <NA>
## 4607 <NA> <NA>
## 4608 <NA> <NA>
## 4609 <NA> <NA>
## 4610 <NA> <NA>
## 4611 <NA> <NA>
## 4612 <NA> <NA>
## 4613 <NA> <NA>
## 4614 <NA> <NA>
## 4615 <NA> <NA>
## 4616 <NA> <NA>
## 4617 <NA> <NA>
## 4618 <NA> <NA>
## 4619 <NA> <NA>
## 4620 <NA> <NA>
## 4621 <NA> <NA>
## 4622 <NA> <NA>
## 4623 <NA> <NA>
## 4624 <NA> <NA>
## 4625 <NA> <NA>
## 4626 <NA> <NA>
## 4627 <NA> <NA>
## 4628 <NA> <NA>
## 4629 <NA> <NA>
## 4630 <NA> <NA>
## 4631 <NA> <NA>
## 4632 <NA> <NA>
## 4633 <NA> <NA>
## 4634 <NA> <NA>
## 4635 <NA> <NA>
## 4636 <NA> <NA>
## 4637 <NA> <NA>
## 4638 <NA> <NA>
## 4639 <NA> <NA>
## 4640 <NA> <NA>
## 4641 <NA> <NA>
## 4642 <NA> <NA>
## 4643 <NA> <NA>
## 4644 <NA> <NA>
## 4645 <NA> <NA>
## 4646 <NA> <NA>
## 4647 <NA> <NA>
## 4648 <NA> <NA>
## 4649 <NA> <NA>
## 4650 <NA> <NA>
## 4651 <NA> <NA>
## 4652 <NA> <NA>
## 4653 <NA> <NA>
## 4654 <NA> <NA>
## 4655 <NA> <NA>
## 4656 <NA> <NA>
## 4657 <NA> <NA>
## 4658 <NA> <NA>
## 4659 <NA> <NA>
## 4660 <NA> <NA>
## 4661 <NA> <NA>
## 4662 <NA> <NA>
## 4663 <NA> <NA>
## 4664 <NA> <NA>
## 4665 <NA> <NA>
## 4666 <NA> <NA>
## 4667 <NA> <NA>
## 4668 <NA> <NA>
## 4669 <NA> <NA>
## 4670 <NA> <NA>
## 4671 <NA> <NA>
## 4672 <NA> <NA>
## 4673 <NA> <NA>
## 4674 <NA> <NA>
## 4675 <NA> <NA>
## 4676 <NA> <NA>
## 4677 <NA> <NA>
## 4678 <NA> <NA>
## 4679 <NA> <NA>
## 4680 <NA> <NA>
## 4681 <NA> <NA>
## 4682 <NA> <NA>
## 4683 <NA> <NA>
## 4684 <NA> <NA>
## 4685 <NA> <NA>
## 4686 <NA> <NA>
## 4687 <NA> <NA>
## 4688 <NA> <NA>
## 4689 <NA> <NA>
## 4690 <NA> <NA>
## 4691 <NA> <NA>
## 4692 <NA> <NA>
## 4693 <NA> <NA>
## 4694 <NA> <NA>
## 4695 <NA> <NA>
## 4696 <NA> <NA>
## 4697 <NA> <NA>
## 4698 <NA> <NA>
## 4699 <NA> <NA>
## 4700 <NA> <NA>
## 4701 <NA> <NA>
## 4702 <NA> <NA>
## 4703 <NA> <NA>
## 4704 <NA> <NA>
## 4705 <NA> <NA>
## 4706 <NA> <NA>
## 4707 <NA> <NA>
## 4708 <NA> <NA>
## 4709 <NA> <NA>
## 4710 <NA> <NA>
## 4711 <NA> <NA>
## 4712 <NA> <NA>
## 4713 <NA> <NA>
## 4714 <NA> <NA>
## 4715 <NA> <NA>
## 4716 <NA> <NA>
## 4717 <NA> <NA>
## 4718 <NA> <NA>
## 4719 <NA> <NA>
## 4720 <NA> <NA>
## 4721 <NA> <NA>
## 4722 <NA> <NA>
## 4723 <NA> <NA>
## 4724 <NA> <NA>
## 4725 <NA> <NA>
## 4726 <NA> <NA>
## 4727 <NA> <NA>
## 4728 <NA> <NA>
## 4729 <NA> <NA>
## 4730 <NA> <NA>
## 4731 <NA> <NA>
## 4732 <NA> <NA>
## 4733 <NA> <NA>
## 4734 <NA> <NA>
## 4735 <NA> <NA>
## 4736 <NA> <NA>
## 4737 <NA> <NA>
## 4738 <NA> <NA>
## 4739 <NA> <NA>
## 4740 <NA> <NA>
## 4741 <NA> <NA>
## 4742 <NA> <NA>
## 4743 <NA> <NA>
## 4744 <NA> <NA>
## 4745 <NA> <NA>
## 4746 <NA> <NA>
## 4747 <NA> <NA>
## 4748 <NA> <NA>
## 4749 <NA> <NA>
## 4750 <NA> <NA>
## 4751 <NA> <NA>
## 4752 <NA> <NA>
## 4753 <NA> <NA>
## 4754 <NA> <NA>
## 4755 <NA> <NA>
## 4756 <NA> <NA>
## 4757 <NA> <NA>
## 4758 <NA> <NA>
## 4759 <NA> <NA>
## 4760 <NA> <NA>
## 4761 <NA> <NA>
## 4762 <NA> <NA>
## 4763 <NA> <NA>
## 4764 <NA> <NA>
## 4765 <NA> <NA>
## 4766 <NA> <NA>
## 4767 <NA> <NA>
## 4768 <NA> <NA>
## 4769 <NA> <NA>
## 4770 <NA> <NA>
## 4771 <NA> <NA>
## 4772 <NA> <NA>
## 4773 <NA> <NA>
## 4774 <NA> <NA>
## 4775 <NA> <NA>
## 4776 <NA> <NA>
## 4777 <NA> <NA>
## 4778 <NA> <NA>
## 4779 <NA> <NA>
## 4780 <NA> <NA>
## 4781 <NA> <NA>
## 4782 <NA> <NA>
## 4783 <NA> <NA>
## 4784 <NA> <NA>
## 4785 <NA> <NA>
## 4786 <NA> <NA>
## 4787 <NA> <NA>
## 4788 <NA> <NA>
## 4789 <NA> <NA>
## 4790 <NA> <NA>
## 4791 <NA> <NA>
## 4792 <NA> <NA>
## 4793 <NA> <NA>
## 4794 <NA> <NA>
## 4795 <NA> <NA>
## 4796 <NA> <NA>
## 4797 <NA> <NA>
## 4798 <NA> <NA>
## 4799 <NA> <NA>
## 4800 <NA> <NA>
## 4801 <NA> <NA>
## 4802 <NA> <NA>
## 4803 <NA> <NA>
## 4804 <NA> <NA>
## 4805 <NA> <NA>
## 4806 <NA> <NA>
## 4807 <NA> <NA>
## 4808 <NA> <NA>
## 4809 <NA> <NA>
## 4810 <NA> <NA>
## 4811 <NA> <NA>
## 4812 <NA> <NA>
## 4813 <NA> <NA>
## 4814 <NA> <NA>
## 4815 <NA> <NA>
## 4816 <NA> <NA>
## 4817 <NA> <NA>
## 4818 <NA> <NA>
## 4819 <NA> <NA>
## 4820 <NA> <NA>
## 4821 <NA> <NA>
## 4822 <NA> <NA>
## 4823 <NA> <NA>
## 4824 <NA> <NA>
## 4825 <NA> <NA>
## 4826 <NA> <NA>
## 4827 <NA> <NA>
## 4828 <NA> <NA>
## 4829 <NA> <NA>
## 4830 <NA> <NA>
## 4831 <NA> <NA>
## 4832 <NA> <NA>
## 4833 <NA> <NA>
## 4834 <NA> <NA>
## 4835 <NA> <NA>
## 4836 <NA> <NA>
## 4837 <NA> <NA>
## 4838 <NA> <NA>
## 4839 <NA> <NA>
## 4840 <NA> <NA>
## 4841 <NA> <NA>
## 4842 <NA> <NA>
## 4843 <NA> <NA>
## 4844 <NA> <NA>
## 4845 <NA> <NA>
## 4846 <NA> <NA>
## 4847 <NA> <NA>
## 4848 <NA> <NA>
## 4849 <NA> <NA>
## 4850 <NA> <NA>
## 4851 <NA> <NA>
## 4852 <NA> <NA>
## 4853 <NA> <NA>
## 4854 <NA> <NA>
## 4855 <NA> <NA>
## 4856 <NA> <NA>
## 4857 <NA> <NA>
## 4858 <NA> <NA>
## 4859 <NA> <NA>
## 4860 <NA> <NA>
## 4861 <NA> <NA>
## 4862 <NA> <NA>
## 4863 <NA> <NA>
## 4864 <NA> <NA>
## 4865 <NA> <NA>
## 4866 <NA> <NA>
## 4867 <NA> <NA>
## 4868 <NA> <NA>
## 4869 <NA> <NA>
## 4870 <NA> <NA>
## 4871 <NA> <NA>
## 4872 <NA> <NA>
## 4873 <NA> <NA>
## 4874 <NA> <NA>
## 4875 <NA> <NA>
## 4876 <NA> <NA>
## 4877 <NA> <NA>
## 4878 <NA> <NA>
## 4879 <NA> <NA>
## 4880 <NA> <NA>
## 4881 <NA> <NA>
## 4882 <NA> <NA>
## 4883 <NA> <NA>
## 4884 <NA> <NA>
## 4885 <NA> <NA>
## 4886 <NA> <NA>
## 4887 <NA> <NA>
## 4888 <NA> <NA>
## 4889 <NA> <NA>
## 4890 <NA> <NA>
## 4891 <NA> <NA>
## 4892 <NA> <NA>
## 4893 <NA> <NA>
## 4894 <NA> <NA>
## 4895 <NA> <NA>
## 4896 <NA> <NA>
## 4897 <NA> <NA>
## 4898 <NA> <NA>
## 4899 <NA> <NA>
## 4900 <NA> <NA>
## 4901 <NA> <NA>
## 4902 <NA> <NA>
## 4903 <NA> <NA>
## 4904 <NA> <NA>
## 4905 <NA> <NA>
## 4906 <NA> <NA>
## 4907 <NA> <NA>
## 4908 <NA> <NA>
## 4909 <NA> <NA>
## 4910 <NA> <NA>
## 4911 <NA> <NA>
## 4912 <NA> <NA>
## 4913 <NA> <NA>
## 4914 <NA> <NA>
## 4915 <NA> <NA>
## 4916 <NA> <NA>
## 4917 <NA> <NA>
## 4918 <NA> <NA>
## 4919 <NA> <NA>
## 4920 <NA> <NA>
## 4921 <NA> <NA>
## 4922 <NA> <NA>
## 4923 <NA> <NA>
## 4924 <NA> <NA>
## 4925 <NA> <NA>
## 4926 <NA> <NA>
## 4927 <NA> <NA>
## 4928 <NA> <NA>
## 4929 <NA> <NA>
## 4930 <NA> <NA>
## 4931 <NA> <NA>
## 4932 <NA> <NA>
## 4933 <NA> <NA>
## 4934 <NA> <NA>
## 4935 <NA> <NA>
## 4936 <NA> <NA>
## 4937 <NA> <NA>
## 4938 <NA> <NA>
## 4939 <NA> <NA>
## 4940 <NA> <NA>
## 4941 <NA> <NA>
## 4942 <NA> <NA>
## 4943 <NA> <NA>
## 4944 <NA> <NA>
## 4945 <NA> <NA>
## 4946 <NA> <NA>
## 4947 <NA> <NA>
## 4948 <NA> <NA>
## 4949 <NA> <NA>
## 4950 <NA> <NA>
## 4951 <NA> <NA>
## 4952 <NA> <NA>
## 4953 <NA> <NA>
## 4954 <NA> <NA>
## 4955 <NA> <NA>
## 4956 <NA> <NA>
## 4957 <NA> <NA>
## 4958 <NA> <NA>
## 4959 <NA> <NA>
## 4960 <NA> <NA>
## 4961 <NA> <NA>
## 4962 <NA> <NA>
## 4963 <NA> <NA>
## 4964 <NA> <NA>
## 4965 <NA> <NA>
## 4966 <NA> <NA>
## 4967 <NA> <NA>
## 4968 <NA> <NA>
## 4969 <NA> <NA>
## 4970 <NA> <NA>
## 4971 <NA> <NA>
## 4972 <NA> <NA>
## 4973 <NA> <NA>
## 4974 <NA> <NA>
## 4975 <NA> <NA>
## 4976 <NA> <NA>
## 4977 <NA> <NA>
## 4978 <NA> <NA>
## 4979 <NA> <NA>
## 4980 <NA> <NA>
## 4981 <NA> <NA>
## 4982 <NA> <NA>
## 4983 <NA> <NA>
## 4984 <NA> <NA>
## 4985 <NA> <NA>
## 4986 <NA> <NA>
## 4987 <NA> <NA>
## 4988 <NA> <NA>
## 4989 <NA> <NA>
## 4990 <NA> <NA>
## 4991 <NA> <NA>
## 4992 <NA> <NA>
## 4993 <NA> <NA>
## 4994 <NA> <NA>
## 4995 <NA> <NA>
## 4996 <NA> <NA>
## 4997 <NA> <NA>
## 4998 <NA> <NA>
## 4999 <NA> <NA>
## 5000 <NA> <NA>
## 5001 <NA> <NA>
## 5002 <NA> <NA>
## 5003 <NA> <NA>
## 5004 <NA> <NA>
## 5005 <NA> <NA>
## 5006 <NA> <NA>
## 5007 <NA> <NA>
## 5008 <NA> <NA>
## 5009 <NA> <NA>
## 5010 <NA> <NA>
## 5011 <NA> <NA>
## 5012 <NA> <NA>
## 5013 <NA> <NA>
## 5014 <NA> <NA>
## 5015 <NA> <NA>
## 5016 <NA> <NA>
## 5017 <NA> <NA>
## 5018 <NA> <NA>
## 5019 <NA> <NA>
## 5020 <NA> <NA>
## 5021 <NA> <NA>
## 5022 <NA> <NA>
## 5023 <NA> <NA>
## 5024 <NA> <NA>
## 5025 <NA> <NA>
## 5026 <NA> <NA>
## 5027 <NA> <NA>
## 5028 <NA> <NA>
## 5029 <NA> <NA>
## 5030 <NA> <NA>
## 5031 <NA> <NA>
## 5032 <NA> <NA>
## 5033 <NA> <NA>
## 5034 <NA> <NA>
## 5035 <NA> <NA>
## 5036 <NA> <NA>
## 5037 <NA> <NA>
## 5038 <NA> <NA>
## 5039 <NA> <NA>
## 5040 <NA> <NA>
## 5041 <NA> <NA>
## 5042 <NA> <NA>
## 5043 <NA> <NA>
## 5044 <NA> <NA>
## 5045 <NA> <NA>
## 5046 <NA> <NA>
## 5047 <NA> <NA>
## 5048 <NA> <NA>
## 5049 <NA> <NA>
## 5050 <NA> <NA>
## 5051 <NA> <NA>
## 5052 <NA> <NA>
## 5053 <NA> <NA>
## 5054 <NA> <NA>
## 5055 <NA> <NA>
## 5056 <NA> <NA>
## 5057 <NA> <NA>
## 5058 <NA> <NA>
## 5059 <NA> <NA>
## 5060 <NA> <NA>
## 5061 <NA> <NA>
## 5062 <NA> <NA>
## 5063 <NA> <NA>
## 5064 <NA> <NA>
## 5065 <NA> <NA>
## 5066 <NA> <NA>
## 5067 <NA> <NA>
## 5068 <NA> <NA>
## 5069 <NA> <NA>
## 5070 <NA> <NA>
## 5071 <NA> <NA>
## 5072 <NA> <NA>
## 5073 <NA> <NA>
## 5074 <NA> <NA>
## 5075 <NA> <NA>
## 5076 <NA> <NA>
## 5077 <NA> <NA>
## 5078 <NA> <NA>
## 5079 <NA> <NA>
## 5080 <NA> <NA>
## 5081 <NA> <NA>
## 5082 <NA> <NA>
## 5083 <NA> <NA>
## 5084 <NA> <NA>
## 5085 <NA> <NA>
## 5086 <NA> <NA>
## 5087 <NA> <NA>
## 5088 <NA> <NA>
## 5089 <NA> <NA>
## 5090 <NA> <NA>
## 5091 <NA> <NA>
## 5092 <NA> <NA>
## 5093 <NA> <NA>
## 5094 <NA> <NA>
## 5095 <NA> <NA>
## 5096 <NA> <NA>
## 5097 <NA> <NA>
## 5098 <NA> <NA>
## 5099 <NA> <NA>
## 5100 <NA> <NA>
## 5101 <NA> <NA>
## 5102 <NA> <NA>
## 5103 <NA> <NA>
## 5104 <NA> <NA>
## 5105 <NA> <NA>
## 5106 <NA> <NA>
## 5107 <NA> <NA>
## 5108 <NA> <NA>
## 5109 <NA> <NA>
## 5110 <NA> <NA>
## 5111 <NA> <NA>
## 5112 <NA> <NA>
## 5113 <NA> <NA>
## 5114 <NA> <NA>
## 5115 <NA> <NA>
## 5116 <NA> <NA>
## 5117 <NA> <NA>
## 5118 <NA> <NA>
## 5119 <NA> <NA>
## 5120 <NA> <NA>
## 5121 <NA> <NA>
## 5122 <NA> <NA>
## 5123 <NA> <NA>
## 5124 <NA> <NA>
## 5125 <NA> <NA>
## 5126 <NA> <NA>
## 5127 <NA> <NA>
## 5128 <NA> <NA>
## 5129 <NA> <NA>
## 5130 <NA> <NA>
## 5131 <NA> <NA>
## 5132 <NA> <NA>
## 5133 <NA> <NA>
## 5134 <NA> <NA>
## 5135 <NA> <NA>
## 5136 <NA> <NA>
## 5137 <NA> <NA>
## 5138 <NA> <NA>
## 5139 <NA> <NA>
## 5140 <NA> <NA>
## 5141 <NA> <NA>
## 5142 <NA> <NA>
## 5143 <NA> <NA>
## 5144 <NA> <NA>
## 5145 <NA> <NA>
## 5146 <NA> <NA>
## 5147 <NA> <NA>
## 5148 <NA> <NA>
## 5149 <NA> <NA>
## 5150 <NA> <NA>
## 5151 <NA> <NA>
## 5152 <NA> <NA>
## 5153 <NA> <NA>
## 5154 <NA> <NA>
## 5155 <NA> <NA>
## 5156 <NA> <NA>
## 5157 <NA> <NA>
## 5158 <NA> <NA>
## 5159 <NA> <NA>
## 5160 <NA> <NA>
## 5161 <NA> <NA>
## 5162 <NA> <NA>
## 5163 <NA> <NA>
## 5164 <NA> <NA>
## 5165 <NA> <NA>
## 5166 <NA> <NA>
## 5167 <NA> <NA>
## 5168 <NA> <NA>
## 5169 <NA> <NA>
## 5170 <NA> <NA>
## 5171 <NA> <NA>
## 5172 <NA> <NA>
## 5173 <NA> <NA>
## 5174 <NA> <NA>
## 5175 <NA> <NA>
## 5176 <NA> <NA>
## 5177 <NA> <NA>
## 5178 <NA> <NA>
## 5179 <NA> <NA>
## 5180 <NA> <NA>
## 5181 <NA> <NA>
## 5182 <NA> <NA>
## 5183 <NA> <NA>
## 5184 <NA> <NA>
## 5185 <NA> <NA>
## 5186 <NA> <NA>
## 5187 <NA> <NA>
## 5188 <NA> <NA>
## 5189 <NA> <NA>
## 5190 <NA> <NA>
## 5191 <NA> <NA>
## 5192 <NA> <NA>
## 5193 <NA> <NA>
## 5194 <NA> <NA>
## 5195 <NA> <NA>
## 5196 <NA> <NA>
## 5197 <NA> <NA>
## 5198 <NA> <NA>
## 5199 <NA> <NA>
## 5200 <NA> <NA>
## 5201 <NA> <NA>
## 5202 <NA> <NA>
## 5203 <NA> <NA>
## 5204 <NA> <NA>
## 5205 <NA> <NA>
## 5206 <NA> <NA>
## 5207 <NA> <NA>
## 5208 <NA> <NA>
## 5209 <NA> <NA>
## 5210 <NA> <NA>
## 5211 <NA> <NA>
## 5212 <NA> <NA>
## 5213 <NA> <NA>
## 5214 <NA> <NA>
## 5215 <NA> <NA>
## 5216 <NA> <NA>
## 5217 <NA> <NA>
## 5218 <NA> <NA>
## 5219 <NA> <NA>
## 5220 <NA> <NA>
## 5221 <NA> <NA>
## 5222 <NA> <NA>
## 5223 <NA> <NA>
## 5224 <NA> <NA>
## 5225 <NA> <NA>
## 5226 <NA> <NA>
## 5227 <NA> <NA>
## 5228 <NA> <NA>
## 5229 <NA> <NA>
## 5230 <NA> <NA>
## 5231 <NA> <NA>
## 5232 <NA> <NA>
## 5233 <NA> <NA>
## 5234 <NA> <NA>
## 5235 <NA> <NA>
## 5236 <NA> <NA>
## 5237 <NA> <NA>
## 5238 <NA> <NA>
## 5239 <NA> <NA>
## 5240 <NA> <NA>
## 5241 <NA> <NA>
## 5242 <NA> <NA>
## 5243 <NA> <NA>
## 5244 <NA> <NA>
## 5245 <NA> <NA>
## 5246 <NA> <NA>
## 5247 <NA> <NA>
## 5248 <NA> <NA>
## 5249 <NA> <NA>
## 5250 <NA> <NA>
## 5251 <NA> <NA>
## 5252 <NA> <NA>
## 5253 <NA> <NA>
## 5254 <NA> <NA>
## 5255 <NA> <NA>
## 5256 <NA> <NA>
## 5257 <NA> <NA>
## 5258 <NA> <NA>
## 5259 <NA> <NA>
## 5260 <NA> <NA>
## 5261 <NA> <NA>
## 5262 <NA> <NA>
## 5263 <NA> <NA>
## 5264 <NA> <NA>
## 5265 <NA> <NA>
## 5266 <NA> <NA>
## 5267 <NA> <NA>
## 5268 <NA> <NA>
## 5269 <NA> <NA>
## 5270 <NA> <NA>
## 5271 <NA> <NA>
## 5272 <NA> <NA>
## 5273 <NA> <NA>
## 5274 <NA> <NA>
## 5275 <NA> <NA>
## 5276 <NA> <NA>
## 5277 <NA> <NA>
## 5278 <NA> <NA>
## 5279 <NA> <NA>
## 5280 <NA> <NA>
## 5281 <NA> <NA>
## 5282 <NA> <NA>
## 5283 <NA> <NA>
## 5284 <NA> <NA>
## 5285 <NA> <NA>
## 5286 <NA> <NA>
## 5287 <NA> <NA>
## 5288 <NA> <NA>
## 5289 <NA> <NA>
## 5290 <NA> <NA>
## 5291 <NA> <NA>
## 5292 <NA> <NA>
## 5293 <NA> <NA>
## 5294 <NA> <NA>
## 5295 <NA> <NA>
## 5296 <NA> <NA>
## 5297 <NA> <NA>
## 5298 <NA> <NA>
## 5299 <NA> <NA>
## 5300 <NA> <NA>
## 5301 <NA> <NA>
## 5302 <NA> <NA>
## 5303 <NA> <NA>
## 5304 <NA> <NA>
## 5305 <NA> <NA>
## 5306 <NA> <NA>
## 5307 <NA> <NA>
## 5308 <NA> <NA>
## 5309 <NA> <NA>
## 5310 <NA> <NA>
## 5311 <NA> <NA>
## 5312 <NA> <NA>
## 5313 <NA> <NA>
## 5314 <NA> <NA>
## 5315 <NA> <NA>
## 5316 <NA> <NA>
## 5317 <NA> <NA>
## 5318 <NA> <NA>
## 5319 <NA> <NA>
## 5320 <NA> <NA>
## 5321 <NA> <NA>
## 5322 <NA> <NA>
## 5323 <NA> <NA>
## 5324 <NA> <NA>
## 5325 <NA> <NA>
## 5326 <NA> <NA>
## 5327 <NA> <NA>
## 5328 <NA> <NA>
## 5329 <NA> <NA>
## 5330 <NA> <NA>
## 5331 <NA> <NA>
## 5332 <NA> <NA>
## 5333 <NA> <NA>
## 5334 <NA> <NA>
## 5335 <NA> <NA>
## 5336 <NA> <NA>
## 5337 <NA> <NA>
## 5338 <NA> <NA>
## 5339 <NA> <NA>
## 5340 <NA> <NA>
## 5341 <NA> <NA>
## 5342 <NA> <NA>
## 5343 <NA> <NA>
## 5344 <NA> <NA>
## 5345 <NA> <NA>
## 5346 <NA> <NA>
## 5347 <NA> <NA>
## 5348 <NA> <NA>
## 5349 <NA> <NA>
## 5350 <NA> <NA>
## 5351 <NA> <NA>
## 5352 <NA> <NA>
## 5353 <NA> <NA>
## 5354 <NA> <NA>
## 5355 <NA> <NA>
## 5356 <NA> <NA>
## 5357 <NA> <NA>
## 5358 <NA> <NA>
## 5359 <NA> <NA>
## 5360 <NA> <NA>
## 5361 <NA> <NA>
## 5362 <NA> <NA>
## 5363 <NA> <NA>
## 5364 <NA> <NA>
## 5365 <NA> <NA>
## 5366 <NA> <NA>
## 5367 <NA> <NA>
## 5368 <NA> <NA>
## 5369 <NA> <NA>
## 5370 <NA> <NA>
## 5371 <NA> <NA>
## 5372 <NA> <NA>
## 5373 <NA> <NA>
## 5374 <NA> <NA>
## 5375 <NA> <NA>
## 5376 <NA> <NA>
## 5377 <NA> <NA>
## 5378 <NA> <NA>
## 5379 <NA> <NA>
## 5380 <NA> <NA>
## 5381 <NA> <NA>
## 5382 <NA> <NA>
## 5383 <NA> <NA>
## 5384 <NA> <NA>
## 5385 <NA> <NA>
## 5386 <NA> <NA>
## 5387 <NA> <NA>
## 5388 <NA> <NA>
## 5389 <NA> <NA>
## 5390 <NA> <NA>
## 5391 <NA> <NA>
## 5392 <NA> <NA>
## 5393 <NA> <NA>
## 5394 <NA> <NA>
## 5395 <NA> <NA>
## 5396 <NA> <NA>
## 5397 <NA> <NA>
## 5398 <NA> <NA>
## 5399 <NA> <NA>
## 5400 <NA> <NA>
## 5401 <NA> <NA>
## 5402 <NA> <NA>
## 5403 <NA> <NA>
## 5404 <NA> <NA>
## 5405 <NA> <NA>
## 5406 <NA> <NA>
## 5407 <NA> <NA>
## 5408 <NA> <NA>
## 5409 <NA> <NA>
## 5410 <NA> <NA>
## 5411 <NA> <NA>
## 5412 <NA> <NA>
## 5413 <NA> <NA>
## 5414 <NA> <NA>
## 5415 <NA> <NA>
## 5416 <NA> <NA>
## 5417 <NA> <NA>
## 5418 <NA> <NA>
## 5419 <NA> <NA>
## 5420 <NA> <NA>
## 5421 <NA> <NA>
## 5422 <NA> <NA>
## 5423 <NA> <NA>
## 5424 <NA> <NA>
## 5425 <NA> <NA>
## 5426 <NA> <NA>
## 5427 <NA> <NA>
## 5428 <NA> <NA>
## 5429 <NA> <NA>
## 5430 <NA> <NA>
## 5431 <NA> <NA>
## 5432 <NA> <NA>
## 5433 <NA> <NA>
## 5434 <NA> <NA>
## 5435 <NA> <NA>
## 5436 <NA> <NA>
## 5437 <NA> <NA>
## 5438 <NA> <NA>
## 5439 <NA> <NA>
## 5440 <NA> <NA>
## 5441 <NA> <NA>
## 5442 <NA> <NA>
## 5443 <NA> <NA>
## 5444 <NA> <NA>
## 5445 <NA> <NA>
## 5446 <NA> <NA>
## 5447 <NA> <NA>
## 5448 <NA> <NA>
## 5449 <NA> <NA>
## 5450 <NA> <NA>
## 5451 <NA> <NA>
## 5452 <NA> <NA>
## 5453 <NA> <NA>
## 5454 <NA> <NA>
## 5455 <NA> <NA>
## 5456 <NA> <NA>
## 5457 <NA> <NA>
## 5458 <NA> <NA>
## 5459 <NA> <NA>
## 5460 <NA> <NA>
## 5461 <NA> <NA>
## 5462 <NA> <NA>
## 5463 <NA> <NA>
## 5464 <NA> <NA>
## 5465 <NA> <NA>
## 5466 <NA> <NA>
## 5467 <NA> <NA>
## 5468 <NA> <NA>
## 5469 <NA> <NA>
## 5470 <NA> <NA>
## 5471 <NA> <NA>
## 5472 <NA> <NA>
## 5473 <NA> <NA>
## 5474 <NA> <NA>
## 5475 <NA> <NA>
## 5476 <NA> <NA>
## 5477 <NA> <NA>
## 5478 <NA> <NA>
## 5479 <NA> <NA>
## 5480 <NA> <NA>
## 5481 <NA> <NA>
## 5482 <NA> <NA>
## 5483 <NA> <NA>
## 5484 <NA> <NA>
## 5485 <NA> <NA>
## 5486 <NA> <NA>
## 5487 <NA> <NA>
## 5488 <NA> <NA>
## 5489 <NA> <NA>
## 5490 <NA> <NA>
## 5491 <NA> <NA>
## 5492 <NA> <NA>
## 5493 <NA> <NA>
## 5494 <NA> <NA>
## 5495 <NA> <NA>
## 5496 <NA> <NA>
## 5497 <NA> <NA>
## 5498 <NA> <NA>
## 5499 <NA> <NA>
## 5500 <NA> <NA>
## 5501 <NA> <NA>
## 5502 <NA> <NA>
## 5503 <NA> <NA>
## 5504 <NA> <NA>
## 5505 <NA> <NA>
## 5506 <NA> <NA>
## 5507 <NA> <NA>
## 5508 <NA> <NA>
## 5509 <NA> <NA>
## 5510 <NA> <NA>
## 5511 <NA> <NA>
## 5512 <NA> <NA>
## 5513 <NA> <NA>
## 5514 <NA> <NA>
## 5515 <NA> <NA>
## 5516 <NA> <NA>
## 5517 <NA> <NA>
## 5518 <NA> <NA>
## 5519 <NA> <NA>
## 5520 <NA> <NA>
## 5521 <NA> <NA>
## 5522 <NA> <NA>
## 5523 <NA> <NA>
## 5524 <NA> <NA>
## 5525 <NA> <NA>
## 5526 <NA> <NA>
## 5527 <NA> <NA>
## 5528 <NA> <NA>
## 5529 <NA> <NA>
## 5530 <NA> <NA>
## 5531 <NA> <NA>
## 5532 <NA> <NA>
## 5533 <NA> <NA>
## 5534 <NA> <NA>
## 5535 <NA> <NA>
## 5536 <NA> <NA>
## 5537 <NA> <NA>
## 5538 <NA> <NA>
## 5539 <NA> <NA>
## 5540 <NA> <NA>
## 5541 <NA> <NA>
## 5542 <NA> <NA>
## 5543 <NA> <NA>
## 5544 <NA> <NA>
## 5545 <NA> <NA>
## 5546 <NA> <NA>
## 5547 <NA> <NA>
## 5548 <NA> <NA>
## 5549 <NA> <NA>
## 5550 <NA> <NA>
## 5551 <NA> <NA>
## 5552 <NA> <NA>
## 5553 <NA> <NA>
## 5554 <NA> <NA>
## 5555 <NA> <NA>
## 5556 <NA> <NA>
## 5557 <NA> <NA>
## 5558 <NA> <NA>
## 5559 <NA> <NA>
## 5560 <NA> <NA>
## 5561 <NA> <NA>
## 5562 <NA> <NA>
## 5563 <NA> <NA>
## 5564 <NA> <NA>
## 5565 <NA> <NA>
## 5566 <NA> <NA>
## 5567 <NA> <NA>
## 5568 <NA> <NA>
## 5569 <NA> <NA>
## 5570 <NA> <NA>
## 5571 <NA> <NA>
## 5572 <NA> <NA>
## 5573 <NA> <NA>
## 5574 <NA> <NA>
## 5575 <NA> <NA>
## 5576 <NA> <NA>
## 5577 <NA> <NA>
## 5578 <NA> <NA>
## 5579 <NA> <NA>
## 5580 <NA> <NA>
## 5581 <NA> <NA>
## 5582 <NA> <NA>
## 5583 <NA> <NA>
## 5584 <NA> <NA>
## 5585 <NA> <NA>
## 5586 <NA> <NA>
## 5587 <NA> <NA>
## 5588 <NA> <NA>
## 5589 <NA> <NA>
## 5590 <NA> <NA>
## 5591 <NA> <NA>
## 5592 <NA> <NA>
## 5593 <NA> <NA>
## 5594 <NA> <NA>
## 5595 <NA> <NA>
## 5596 <NA> <NA>
## 5597 <NA> <NA>
## 5598 <NA> <NA>
## 5599 <NA> <NA>
## 5600 <NA> <NA>
## 5601 <NA> <NA>
## 5602 <NA> <NA>
## 5603 <NA> <NA>
## 5604 <NA> <NA>
## 5605 <NA> <NA>
## 5606 <NA> <NA>
## 5607 <NA> <NA>
## 5608 <NA> <NA>
## 5609 <NA> <NA>
## 5610 <NA> <NA>
## 5611 <NA> <NA>
## 5612 <NA> <NA>
## 5613 <NA> <NA>
## 5614 <NA> <NA>
## 5615 <NA> <NA>
## 5616 <NA> <NA>
## 5617 <NA> <NA>
## 5618 <NA> <NA>
## 5619 <NA> <NA>
## 5620 <NA> <NA>
## 5621 <NA> <NA>
## 5622 <NA> <NA>
## 5623 <NA> <NA>
## 5624 <NA> <NA>
## 5625 <NA> <NA>
## 5626 <NA> <NA>
## 5627 <NA> <NA>
## 5628 <NA> <NA>
## 5629 <NA> <NA>
## 5630 <NA> <NA>
## 5631 <NA> <NA>
## 5632 <NA> <NA>
## 5633 <NA> <NA>
## 5634 <NA> <NA>
## 5635 <NA> <NA>
## 5636 <NA> <NA>
## 5637 <NA> <NA>
## 5638 <NA> <NA>
## 5639 <NA> <NA>
## 5640 <NA> <NA>
## 5641 <NA> <NA>
## 5642 <NA> <NA>
## 5643 <NA> <NA>
## 5644 <NA> <NA>
## 5645 <NA> <NA>
## 5646 <NA> <NA>
## 5647 <NA> <NA>
## 5648 <NA> <NA>
## 5649 <NA> <NA>
## 5650 <NA> <NA>
## 5651 <NA> <NA>
## 5652 <NA> <NA>
## 5653 <NA> <NA>
## 5654 <NA> <NA>
## 5655 <NA> <NA>
## 5656 <NA> <NA>
## 5657 <NA> <NA>
## 5658 <NA> <NA>
## 5659 <NA> <NA>
## 5660 <NA> <NA>
## 5661 <NA> <NA>
## 5662 <NA> <NA>
## 5663 <NA> <NA>
## 5664 <NA> <NA>
## 5665 <NA> <NA>
## 5666 <NA> <NA>
## 5667 <NA> <NA>
## 5668 <NA> <NA>
## 5669 <NA> <NA>
## 5670 <NA> <NA>
## 5671 <NA> <NA>
## 5672 <NA> <NA>
## 5673 <NA> <NA>
## 5674 <NA> <NA>
## 5675 <NA> <NA>
## 5676 <NA> <NA>
## 5677 <NA> <NA>
## 5678 <NA> <NA>
## 5679 <NA> <NA>
## 5680 <NA> <NA>
## 5681 <NA> <NA>
## 5682 <NA> <NA>
## 5683 <NA> <NA>
## 5684 <NA> <NA>
## 5685 <NA> <NA>
## 5686 <NA> <NA>
## 5687 <NA> <NA>
## 5688 <NA> <NA>
## 5689 <NA> <NA>
## 5690 <NA> <NA>
## 5691 <NA> <NA>
## 5692 <NA> <NA>
## 5693 <NA> <NA>
## 5694 <NA> <NA>
## 5695 <NA> <NA>
## 5696 <NA> <NA>
## 5697 <NA> <NA>
## 5698 <NA> <NA>
## 5699 <NA> <NA>
## 5700 <NA> <NA>
## 5701 <NA> <NA>
## 5702 <NA> <NA>
## 5703 <NA> <NA>
## 5704 <NA> <NA>
## 5705 <NA> <NA>
## 5706 <NA> <NA>
## 5707 <NA> <NA>
## 5708 <NA> <NA>
## 5709 <NA> <NA>
## 5710 <NA> <NA>
## 5711 <NA> <NA>
## 5712 <NA> <NA>
## 5713 <NA> <NA>
## 5714 <NA> <NA>
## 5715 <NA> <NA>
## 5716 <NA> <NA>
## 5717 <NA> <NA>
## 5718 <NA> <NA>
## 5719 <NA> <NA>
## 5720 <NA> <NA>
## 5721 <NA> <NA>
## 5722 <NA> <NA>
## 5723 <NA> <NA>
## 5724 <NA> <NA>
## 5725 <NA> <NA>
## 5726 <NA> <NA>
## 5727 <NA> <NA>
## 5728 <NA> <NA>
## 5729 <NA> <NA>
## 5730 <NA> <NA>
## 5731 <NA> <NA>
## 5732 <NA> <NA>
## 5733 <NA> <NA>
## 5734 <NA> <NA>
## 5735 <NA> <NA>
## 5736 <NA> <NA>
## 5737 <NA> <NA>
## 5738 <NA> <NA>
## 5739 <NA> <NA>
## 5740 <NA> <NA>
## 5741 <NA> <NA>
## 5742 <NA> <NA>
## 5743 <NA> <NA>
## 5744 <NA> <NA>
## 5745 <NA> <NA>
## 5746 <NA> <NA>
## 5747 <NA> <NA>
## 5748 <NA> <NA>
## 5749 <NA> <NA>
## 5750 <NA> <NA>
## 5751 <NA> <NA>
## 5752 <NA> <NA>
## 5753 <NA> <NA>
## 5754 <NA> <NA>
## 5755 <NA> <NA>
## 5756 <NA> <NA>
## 5757 <NA> <NA>
## 5758 <NA> <NA>
## 5759 <NA> <NA>
## 5760 <NA> <NA>
## 5761 <NA> <NA>
## 5762 <NA> <NA>
## 5763 <NA> <NA>
## 5764 <NA> <NA>
## 5765 <NA> <NA>
## 5766 <NA> <NA>
## 5767 <NA> <NA>
## 5768 <NA> <NA>
## 5769 <NA> <NA>
## 5770 <NA> <NA>
## 5771 <NA> <NA>
## 5772 <NA> <NA>
## 5773 <NA> <NA>
## 5774 <NA> <NA>
## 5775 <NA> <NA>
## 5776 <NA> <NA>
## 5777 <NA> <NA>
## 5778 <NA> <NA>
## 5779 <NA> <NA>
## 5780 <NA> <NA>
## 5781 <NA> <NA>
## 5782 <NA> <NA>
## 5783 <NA> <NA>
## 5784 <NA> <NA>
## 5785 <NA> <NA>
## 5786 <NA> <NA>
## 5787 <NA> <NA>
## 5788 <NA> <NA>
## 5789 <NA> <NA>
## 5790 <NA> <NA>
## 5791 <NA> <NA>
## 5792 <NA> <NA>
## 5793 <NA> <NA>
## 5794 <NA> <NA>
## 5795 <NA> <NA>
## 5796 <NA> <NA>
## 5797 <NA> <NA>
## 5798 <NA> <NA>
## 5799 <NA> <NA>
## 5800 <NA> <NA>
## 5801 <NA> <NA>
## 5802 <NA> <NA>
## 5803 <NA> <NA>
## 5804 <NA> <NA>
## 5805 <NA> <NA>
## 5806 <NA> <NA>
## 5807 <NA> <NA>
## 5808 <NA> <NA>
## 5809 <NA> <NA>
## 5810 <NA> <NA>
## 5811 <NA> <NA>
## 5812 <NA> <NA>
## 5813 <NA> <NA>
## 5814 <NA> <NA>
## 5815 <NA> <NA>
## 5816 <NA> <NA>
## 5817 <NA> <NA>
## 5818 <NA> <NA>
## 5819 <NA> <NA>
## 5820 <NA> <NA>
## 5821 <NA> <NA>
## 5822 <NA> <NA>
## 5823 <NA> <NA>
## 5824 <NA> <NA>
## 5825 <NA> <NA>
## 5826 <NA> <NA>
## 5827 <NA> <NA>
## 5828 <NA> <NA>
## 5829 <NA> <NA>
## 5830 <NA> <NA>
## 5831 <NA> <NA>
## 5832 <NA> <NA>
## 5833 <NA> <NA>
## 5834 <NA> <NA>
## 5835 <NA> <NA>
## 5836 <NA> <NA>
## 5837 <NA> <NA>
## 5838 <NA> <NA>
## 5839 <NA> <NA>
## 5840 <NA> <NA>
## 5841 <NA> <NA>
## 5842 <NA> <NA>
## 5843 <NA> <NA>
## 5844 <NA> <NA>
## 5845 <NA> <NA>
## 5846 <NA> <NA>
## 5847 <NA> <NA>
## 5848 <NA> <NA>
## 5849 <NA> <NA>
## 5850 <NA> <NA>
## 5851 <NA> <NA>
## 5852 <NA> <NA>
## 5853 <NA> <NA>
## 5854 <NA> <NA>
## 5855 <NA> <NA>
## 5856 <NA> <NA>
## 5857 <NA> <NA>
## 5858 <NA> <NA>
## 5859 <NA> <NA>
## 5860 <NA> <NA>
## 5861 <NA> <NA>
## 5862 <NA> <NA>
## 5863 <NA> <NA>
## 5864 <NA> <NA>
## 5865 <NA> <NA>
## 5866 <NA> <NA>
## 5867 <NA> <NA>
## 5868 <NA> <NA>
## 5869 <NA> <NA>
## 5870 <NA> <NA>
## 5871 <NA> <NA>
## 5872 <NA> <NA>
## 5873 <NA> <NA>
## 5874 <NA> <NA>
## 5875 <NA> <NA>
## 5876 <NA> <NA>
## 5877 <NA> <NA>
## 5878 <NA> <NA>
## 5879 <NA> <NA>
## 5880 <NA> <NA>
## 5881 <NA> <NA>
## 5882 <NA> <NA>
## 5883 <NA> <NA>
## 5884 <NA> <NA>
## 5885 <NA> <NA>
## 5886 <NA> <NA>
## 5887 <NA> <NA>
## 5888 <NA> <NA>
## 5889 <NA> <NA>
## 5890 <NA> <NA>
## 5891 <NA> <NA>
## 5892 <NA> <NA>
## 5893 <NA> <NA>
## 5894 <NA> <NA>
## 5895 <NA> <NA>
## 5896 <NA> <NA>
## 5897 <NA> <NA>
## 5898 <NA> <NA>
## 5899 <NA> <NA>
## 5900 <NA> <NA>
## 5901 <NA> <NA>
## 5902 <NA> <NA>
## 5903 <NA> <NA>
## 5904 <NA> <NA>
## 5905 <NA> <NA>
## 5906 <NA> <NA>
## 5907 <NA> <NA>
## 5908 <NA> <NA>
## 5909 <NA> <NA>
## 5910 <NA> <NA>
## 5911 <NA> <NA>
## 5912 <NA> <NA>
## 5913 <NA> <NA>
## 5914 <NA> <NA>
## 5915 <NA> <NA>
## 5916 <NA> <NA>
## 5917 <NA> <NA>
## 5918 <NA> <NA>
## 5919 <NA> <NA>
## 5920 <NA> <NA>
## 5921 <NA> <NA>
## 5922 <NA> <NA>
## 5923 <NA> <NA>
## 5924 <NA> <NA>
## 5925 <NA> <NA>
## 5926 <NA> <NA>
## 5927 <NA> <NA>
## 5928 <NA> <NA>
## 5929 <NA> <NA>
## 5930 <NA> <NA>
## 5931 <NA> <NA>
## 5932 <NA> <NA>
## 5933 <NA> <NA>
## 5934 <NA> <NA>
## 5935 <NA> <NA>
## 5936 <NA> <NA>
## 5937 <NA> <NA>
## 5938 <NA> <NA>
## 5939 <NA> <NA>
## 5940 <NA> <NA>
## 5941 <NA> <NA>
## 5942 <NA> <NA>
## 5943 <NA> <NA>
## 5944 <NA> <NA>
## 5945 <NA> <NA>
## 5946 <NA> <NA>
## 5947 <NA> <NA>
## 5948 <NA> <NA>
## 5949 <NA> <NA>
## 5950 <NA> <NA>
## 5951 <NA> <NA>
## 5952 <NA> <NA>
## 5953 <NA> <NA>
## 5954 <NA> <NA>
## 5955 <NA> <NA>
## 5956 <NA> <NA>
## 5957 <NA> <NA>
## 5958 <NA> <NA>
## 5959 <NA> <NA>
## 5960 <NA> <NA>
## 5961 <NA> <NA>
## 5962 <NA> <NA>
## 5963 <NA> <NA>
## 5964 <NA> <NA>
## 5965 <NA> <NA>
## 5966 <NA> <NA>
## 5967 <NA> <NA>
## 5968 <NA> <NA>
## 5969 <NA> <NA>
## 5970 <NA> <NA>
## 5971 <NA> <NA>
## 5972 <NA> <NA>
## 5973 <NA> <NA>
## 5974 <NA> <NA>
## 5975 <NA> <NA>
## 5976 <NA> <NA>
## 5977 <NA> <NA>
## 5978 <NA> <NA>
## 5979 <NA> <NA>
## 5980 <NA> <NA>
## 5981 <NA> <NA>
## 5982 <NA> <NA>
## 5983 <NA> <NA>
## 5984 <NA> <NA>
## 5985 <NA> <NA>
## 5986 <NA> <NA>
## 5987 <NA> <NA>
## 5988 <NA> <NA>
## 5989 <NA> <NA>
## 5990 <NA> <NA>
## 5991 <NA> <NA>
## 5992 <NA> <NA>
## 5993 <NA> <NA>
## 5994 <NA> <NA>
## 5995 <NA> <NA>
## 5996 <NA> <NA>
## 5997 <NA> <NA>
## 5998 <NA> <NA>
## 5999 <NA> <NA>
## 6000 <NA> <NA>
## 6001 <NA> <NA>
## 6002 <NA> <NA>
## 6003 <NA> <NA>
## 6004 <NA> <NA>
## 6005 <NA> <NA>
## 6006 <NA> <NA>
## 6007 <NA> <NA>
## 6008 <NA> <NA>
## 6009 <NA> <NA>
## 6010 <NA> <NA>
## 6011 <NA> <NA>
## 6012 <NA> <NA>
## 6013 <NA> <NA>
## 6014 <NA> <NA>
## 6015 <NA> <NA>
## 6016 <NA> <NA>
## 6017 <NA> <NA>
## 6018 <NA> <NA>
## 6019 <NA> <NA>
## 6020 <NA> <NA>
## 6021 <NA> <NA>
## 6022 <NA> <NA>
## 6023 <NA> <NA>
## 6024 <NA> <NA>
## 6025 <NA> <NA>
## 6026 <NA> <NA>
## 6027 <NA> <NA>
## 6028 <NA> <NA>
## 6029 <NA> <NA>
## 6030 <NA> <NA>
## 6031 <NA> <NA>
## 6032 <NA> <NA>
## 6033 <NA> <NA>
## 6034 <NA> <NA>
## 6035 <NA> <NA>
## 6036 <NA> <NA>
## 6037 <NA> <NA>
## 6038 <NA> <NA>
## 6039 <NA> <NA>
## 6040 <NA> <NA>
## 6041 <NA> <NA>
## 6042 <NA> <NA>
## 6043 <NA> <NA>
## 6044 <NA> <NA>
## 6045 <NA> <NA>
## 6046 <NA> <NA>
## 6047 <NA> <NA>
## 6048 <NA> <NA>
## 6049 <NA> <NA>
## 6050 <NA> <NA>
## 6051 <NA> <NA>
## 6052 <NA> <NA>
## 6053 <NA> <NA>
## 6054 <NA> <NA>
## 6055 <NA> <NA>
## 6056 <NA> <NA>
## 6057 <NA> <NA>
## 6058 <NA> <NA>
## 6059 <NA> <NA>
## 6060 <NA> <NA>
## 6061 <NA> <NA>
## 6062 <NA> <NA>
## 6063 <NA> <NA>
## 6064 <NA> <NA>
## 6065 <NA> <NA>
## 6066 <NA> <NA>
## 6067 <NA> <NA>
## 6068 <NA> <NA>
## 6069 <NA> <NA>
## 6070 <NA> <NA>
## 6071 <NA> <NA>
## 6072 <NA> <NA>
## 6073 <NA> <NA>
## 6074 <NA> <NA>
## 6075 <NA> <NA>
## 6076 <NA> <NA>
## 6077 <NA> <NA>
## 6078 <NA> <NA>
## 6079 <NA> <NA>
## 6080 <NA> <NA>
## 6081 <NA> <NA>
## 6082 <NA> <NA>
## 6083 <NA> <NA>
## 6084 <NA> <NA>
## 6085 <NA> <NA>
## 6086 <NA> <NA>
## 6087 <NA> <NA>
## 6088 <NA> <NA>
## 6089 <NA> <NA>
## 6090 <NA> <NA>
## 6091 <NA> <NA>
## 6092 <NA> <NA>
## 6093 <NA> <NA>
## 6094 <NA> <NA>
## 6095 <NA> <NA>
## 6096 <NA> <NA>
## 6097 <NA> <NA>
## 6098 <NA> <NA>
## 6099 <NA> <NA>
## 6100 <NA> <NA>
## 6101 <NA> <NA>
## 6102 <NA> <NA>
## 6103 <NA> <NA>
## 6104 <NA> <NA>
## 6105 <NA> <NA>
## 6106 <NA> <NA>
## 6107 <NA> <NA>
## 6108 <NA> <NA>
## 6109 <NA> <NA>
## 6110 <NA> <NA>
## 6111 <NA> <NA>
## 6112 <NA> <NA>
## 6113 <NA> <NA>
## 6114 <NA> <NA>
## 6115 <NA> <NA>
## 6116 <NA> <NA>
## 6117 <NA> <NA>
## 6118 <NA> <NA>
## 6119 <NA> <NA>
## 6120 <NA> <NA>
## 6121 <NA> <NA>
## 6122 <NA> <NA>
## 6123 <NA> <NA>
## 6124 <NA> <NA>
## 6125 <NA> <NA>
## 6126 <NA> <NA>
## 6127 <NA> <NA>
## 6128 <NA> <NA>
## 6129 <NA> <NA>
## 6130 <NA> <NA>
## 6131 <NA> <NA>
## 6132 <NA> <NA>
## 6133 <NA> <NA>
## 6134 <NA> <NA>
## 6135 <NA> <NA>
## 6136 <NA> <NA>
## 6137 <NA> <NA>
## 6138 <NA> <NA>
## 6139 <NA> <NA>
## 6140 <NA> <NA>
## 6141 <NA> <NA>
## 6142 <NA> <NA>
## 6143 <NA> <NA>
## 6144 <NA> <NA>
## 6145 <NA> <NA>
## 6146 <NA> <NA>
## 6147 <NA> <NA>
## 6148 <NA> <NA>
## 6149 <NA> <NA>
## 6150 <NA> <NA>
## 6151 <NA> <NA>
## 6152 <NA> <NA>
## 6153 <NA> <NA>
## 6154 <NA> <NA>
## 6155 <NA> <NA>
## 6156 <NA> <NA>
## 6157 <NA> <NA>
## 6158 <NA> <NA>
## 6159 <NA> <NA>
## 6160 <NA> <NA>
## 6161 <NA> <NA>
## 6162 <NA> <NA>
## 6163 <NA> <NA>
## 6164 <NA> <NA>
## 6165 <NA> <NA>
## 6166 <NA> <NA>
## 6167 <NA> <NA>
## 6168 <NA> <NA>
## 6169 <NA> <NA>
## 6170 <NA> <NA>
## 6171 <NA> <NA>
## 6172 <NA> <NA>
## 6173 <NA> <NA>
## 6174 <NA> <NA>
## 6175 <NA> <NA>
## 6176 <NA> <NA>
## 6177 <NA> <NA>
## 6178 <NA> <NA>
## 6179 <NA> <NA>
## 6180 <NA> <NA>
## 6181 <NA> <NA>
## 6182 <NA> <NA>
## 6183 <NA> <NA>
## 6184 <NA> <NA>
## 6185 <NA> <NA>
## 6186 <NA> <NA>
## 6187 <NA> <NA>
## 6188 <NA> <NA>
## 6189 <NA> <NA>
## 6190 <NA> <NA>
## 6191 <NA> <NA>
## 6192 <NA> <NA>
## 6193 <NA> <NA>
## 6194 <NA> <NA>
## 6195 <NA> <NA>
## 6196 <NA> <NA>
## 6197 <NA> <NA>
## 6198 <NA> <NA>
## 6199 <NA> <NA>
## 6200 <NA> <NA>
## 6201 <NA> <NA>
## 6202 <NA> <NA>
## 6203 <NA> <NA>
## 6204 <NA> <NA>
## 6205 <NA> <NA>
## 6206 <NA> <NA>
## 6207 <NA> <NA>
## 6208 <NA> <NA>
## 6209 <NA> <NA>
## 6210 <NA> <NA>
## 6211 <NA> <NA>
## 6212 <NA> <NA>
## 6213 <NA> <NA>
## 6214 <NA> <NA>
## 6215 <NA> <NA>
## 6216 <NA> <NA>
## 6217 <NA> <NA>
## 6218 <NA> <NA>
## 6219 <NA> <NA>
## 6220 <NA> <NA>
## 6221 <NA> <NA>
## 6222 <NA> <NA>
## 6223 <NA> <NA>
## 6224 <NA> <NA>
## 6225 <NA> <NA>
## 6226 <NA> <NA>
## 6227 <NA> <NA>
## 6228 <NA> <NA>
## 6229 <NA> <NA>
## 6230 <NA> <NA>
## 6231 <NA> <NA>
## 6232 <NA> <NA>
## 6233 <NA> <NA>
## 6234 <NA> <NA>
## 6235 <NA> <NA>
## 6236 <NA> <NA>
## 6237 <NA> <NA>
## 6238 <NA> <NA>
## 6239 <NA> <NA>
## 6240 <NA> <NA>
## 6241 <NA> <NA>
## 6242 <NA> <NA>
## 6243 <NA> <NA>
## 6244 <NA> <NA>
## 6245 <NA> <NA>
## 6246 <NA> <NA>
## 6247 <NA> <NA>
## 6248 <NA> <NA>
## 6249 <NA> <NA>
## 6250 <NA> <NA>
## 6251 <NA> <NA>
## 6252 <NA> <NA>
## 6253 <NA> <NA>
## 6254 <NA> <NA>
## 6255 <NA> <NA>
## 6256 <NA> <NA>
## 6257 <NA> <NA>
## 6258 <NA> <NA>
## 6259 <NA> <NA>
## 6260 <NA> <NA>
## 6261 <NA> <NA>
## 6262 <NA> <NA>
## 6263 <NA> <NA>
## 6264 <NA> <NA>
## 6265 <NA> <NA>
## 6266 <NA> <NA>
## 6267 <NA> <NA>
## 6268 <NA> <NA>
## 6269 <NA> <NA>
## 6270 <NA> <NA>
## 6271 <NA> <NA>
## 6272 <NA> <NA>
## 6273 <NA> <NA>
## 6274 <NA> <NA>
## 6275 <NA> <NA>
## 6276 <NA> <NA>
## 6277 <NA> <NA>
## 6278 <NA> <NA>
## 6279 <NA> <NA>
## 6280 <NA> <NA>
## 6281 <NA> <NA>
## 6282 <NA> <NA>
## 6283 <NA> <NA>
## 6284 <NA> <NA>
## 6285 <NA> <NA>
## 6286 <NA> <NA>
## 6287 <NA> <NA>
## 6288 <NA> <NA>
## 6289 <NA> <NA>
## 6290 <NA> <NA>
## 6291 <NA> <NA>
## 6292 <NA> <NA>
## 6293 <NA> <NA>
## 6294 <NA> <NA>
## 6295 <NA> <NA>
## 6296 <NA> <NA>
## 6297 <NA> <NA>
## 6298 <NA> <NA>
## 6299 <NA> <NA>
## 6300 <NA> <NA>
## 6301 <NA> <NA>
## 6302 <NA> <NA>
## 6303 <NA> <NA>
## 6304 <NA> <NA>
## 6305 <NA> <NA>
## 6306 <NA> <NA>
## 6307 <NA> <NA>
## 6308 <NA> <NA>
## 6309 <NA> <NA>
## 6310 <NA> <NA>
## 6311 <NA> <NA>
## 6312 <NA> <NA>
## 6313 <NA> <NA>
## 6314 <NA> <NA>
## 6315 <NA> <NA>
## 6316 <NA> <NA>
## 6317 <NA> <NA>
## 6318 <NA> <NA>
## 6319 <NA> <NA>
## 6320 <NA> <NA>
## 6321 <NA> <NA>
## 6322 <NA> <NA>
## 6323 <NA> <NA>
## 6324 <NA> <NA>
## 6325 <NA> <NA>
## 6326 <NA> <NA>
## 6327 <NA> <NA>
## 6328 <NA> <NA>
## 6329 <NA> <NA>
## 6330 <NA> <NA>
## 6331 <NA> <NA>
## 6332 <NA> <NA>
## 6333 <NA> <NA>
## 6334 <NA> <NA>
## 6335 <NA> <NA>
## 6336 <NA> <NA>
## 6337 <NA> <NA>
## 6338 <NA> <NA>
## 6339 <NA> <NA>
## 6340 <NA> <NA>
## 6341 <NA> <NA>
## 6342 <NA> <NA>
## 6343 <NA> <NA>
## 6344 <NA> <NA>
## 6345 <NA> <NA>
## 6346 <NA> <NA>
## 6347 <NA> <NA>
## 6348 <NA> <NA>
## 6349 <NA> <NA>
## 6350 <NA> <NA>
## 6351 <NA> <NA>
## 6352 <NA> <NA>
## 6353 <NA> <NA>
## 6354 <NA> <NA>
## 6355 <NA> <NA>
## 6356 <NA> <NA>
## 6357 <NA> <NA>
## 6358 <NA> <NA>
## 6359 <NA> <NA>
## 6360 <NA> <NA>
## 6361 <NA> <NA>
## 6362 <NA> <NA>
## 6363 <NA> <NA>
## 6364 <NA> <NA>
## 6365 <NA> <NA>
## 6366 <NA> <NA>
## 6367 <NA> <NA>
## 6368 <NA> <NA>
## 6369 <NA> <NA>
## 6370 <NA> <NA>
## 6371 <NA> <NA>
## 6372 <NA> <NA>
## 6373 <NA> <NA>
## 6374 <NA> <NA>
## 6375 <NA> <NA>
## 6376 <NA> <NA>
## 6377 <NA> <NA>
## 6378 <NA> <NA>
## 6379 <NA> <NA>
## 6380 <NA> <NA>
## 6381 <NA> <NA>
## 6382 <NA> <NA>
## 6383 <NA> <NA>
## 6384 <NA> <NA>
## 6385 <NA> <NA>
## 6386 <NA> <NA>
## 6387 <NA> <NA>
## 6388 <NA> <NA>
## 6389 <NA> <NA>
## 6390 <NA> <NA>
## 6391 <NA> <NA>
## 6392 <NA> <NA>
## 6393 <NA> <NA>
## 6394 <NA> <NA>
## 6395 <NA> <NA>
## 6396 <NA> <NA>
## 6397 <NA> <NA>
## 6398 <NA> <NA>
## 6399 <NA> <NA>
## 6400 <NA> <NA>
## 6401 <NA> <NA>
## 6402 <NA> <NA>
## 6403 <NA> <NA>
## 6404 <NA> <NA>
## 6405 <NA> <NA>
## 6406 <NA> <NA>
## 6407 <NA> <NA>
## 6408 <NA> <NA>
## 6409 <NA> <NA>
## 6410 <NA> <NA>
## 6411 <NA> <NA>
## 6412 <NA> <NA>
## 6413 <NA> <NA>
## 6414 <NA> <NA>
## 6415 <NA> <NA>
## 6416 <NA> <NA>
## 6417 <NA> <NA>
## 6418 <NA> <NA>
## 6419 <NA> <NA>
## 6420 <NA> <NA>
## 6421 <NA> <NA>
## 6422 <NA> <NA>
## 6423 <NA> <NA>
## 6424 <NA> <NA>
## 6425 <NA> <NA>
## 6426 <NA> <NA>
## 6427 <NA> <NA>
## 6428 <NA> <NA>
## 6429 <NA> <NA>
## 6430 <NA> <NA>
## 6431 <NA> <NA>
## 6432 <NA> <NA>
## 6433 <NA> <NA>
## 6434 <NA> <NA>
## 6435 <NA> <NA>
## 6436 <NA> <NA>
## 6437 <NA> <NA>
## 6438 <NA> <NA>
## 6439 <NA> <NA>
## 6440 <NA> <NA>
## 6441 <NA> <NA>
## 6442 <NA> <NA>
## 6443 <NA> <NA>
## 6444 <NA> <NA>
## 6445 <NA> <NA>
## 6446 <NA> <NA>
## 6447 <NA> <NA>
## 6448 <NA> <NA>
## 6449 <NA> <NA>
## 6450 <NA> <NA>
## 6451 <NA> <NA>
## 6452 <NA> <NA>
## 6453 <NA> <NA>
## 6454 <NA> <NA>
## 6455 <NA> <NA>
## 6456 <NA> <NA>
## 6457 <NA> <NA>
## 6458 <NA> <NA>
## 6459 <NA> <NA>
## 6460 <NA> <NA>
## 6461 <NA> <NA>
## 6462 <NA> <NA>
## 6463 <NA> <NA>
## 6464 <NA> <NA>
## 6465 <NA> <NA>
## 6466 <NA> <NA>
## 6467 <NA> <NA>
## 6468 <NA> <NA>
## 6469 <NA> <NA>
## 6470 <NA> <NA>
## 6471 <NA> <NA>
## 6472 <NA> <NA>
## 6473 <NA> <NA>
## 6474 <NA> <NA>
## 6475 <NA> <NA>
## 6476 <NA> <NA>
## 6477 <NA> <NA>
## 6478 <NA> <NA>
## 6479 <NA> <NA>
## 6480 <NA> <NA>
## 6481 <NA> <NA>
## 6482 <NA> <NA>
## 6483 <NA> <NA>
## 6484 <NA> <NA>
## 6485 <NA> <NA>
## 6486 <NA> <NA>
## 6487 <NA> <NA>
## 6488 <NA> <NA>
## 6489 <NA> <NA>
## 6490 <NA> <NA>
## 6491 <NA> <NA>
## 6492 <NA> <NA>
## 6493 <NA> <NA>
## 6494 <NA> <NA>
## 6495 <NA> <NA>
## 6496 <NA> <NA>
## 6497 <NA> <NA>
## 6498 <NA> <NA>
## 6499 <NA> <NA>
## 6500 <NA> <NA>
## 6501 <NA> <NA>
## 6502 <NA> <NA>
## 6503 <NA> <NA>
## 6504 <NA> <NA>
## 6505 <NA> <NA>
## 6506 <NA> <NA>
## 6507 <NA> <NA>
## 6508 <NA> <NA>
## 6509 <NA> <NA>
## 6510 <NA> <NA>
## 6511 <NA> <NA>
## 6512 <NA> <NA>
## 6513 <NA> <NA>
## 6514 <NA> <NA>
## 6515 <NA> <NA>
## 6516 <NA> <NA>
## 6517 <NA> <NA>
## 6518 <NA> <NA>
## 6519 <NA> <NA>
## 6520 <NA> <NA>
## 6521 <NA> <NA>
## 6522 <NA> <NA>
## 6523 <NA> <NA>
## 6524 <NA> <NA>
## 6525 <NA> <NA>
## 6526 <NA> <NA>
## 6527 <NA> <NA>
## 6528 <NA> <NA>
## 6529 <NA> <NA>
## 6530 <NA> <NA>
## 6531 <NA> <NA>
## 6532 <NA> <NA>
## 6533 <NA> <NA>
## 6534 <NA> <NA>
## 6535 <NA> <NA>
## 6536 <NA> <NA>
## 6537 <NA> <NA>
## 6538 <NA> <NA>
## 6539 <NA> <NA>
## 6540 <NA> <NA>
## 6541 <NA> <NA>
## 6542 <NA> <NA>
## 6543 <NA> <NA>
## 6544 <NA> <NA>
## 6545 <NA> <NA>
## 6546 <NA> <NA>
## 6547 <NA> <NA>
## 6548 <NA> <NA>
## 6549 <NA> <NA>
## 6550 <NA> <NA>
## 6551 <NA> <NA>
## 6552 <NA> <NA>
## 6553 <NA> <NA>
## 6554 <NA> <NA>
## 6555 <NA> <NA>
## 6556 <NA> <NA>
## 6557 <NA> <NA>
## 6558 <NA> <NA>
## 6559 <NA> <NA>
## 6560 <NA> <NA>
## 6561 <NA> <NA>
## 6562 <NA> <NA>
## 6563 <NA> <NA>
## 6564 <NA> <NA>
## 6565 <NA> <NA>
## 6566 <NA> <NA>
## 6567 <NA> <NA>
## 6568 <NA> <NA>
## 6569 <NA> <NA>
## 6570 <NA> <NA>
## 6571 <NA> <NA>
## 6572 <NA> <NA>
## 6573 <NA> <NA>
## 6574 <NA> <NA>
## 6575 <NA> <NA>
## 6576 <NA> <NA>
## 6577 <NA> <NA>
## 6578 <NA> <NA>
## 6579 <NA> <NA>
## 6580 <NA> <NA>
## 6581 <NA> <NA>
## 6582 <NA> <NA>
## 6583 <NA> <NA>
## 6584 <NA> <NA>
## 6585 <NA> <NA>
## 6586 <NA> <NA>
## 6587 <NA> <NA>
## 6588 <NA> <NA>
## 6589 <NA> <NA>
## 6590 <NA> <NA>
## 6591 <NA> <NA>
## 6592 <NA> <NA>
## 6593 <NA> <NA>
## 6594 <NA> <NA>
## 6595 <NA> <NA>
## 6596 <NA> <NA>
## 6597 <NA> <NA>
## 6598 <NA> <NA>
## 6599 <NA> <NA>
## 6600 <NA> <NA>
## 6601 <NA> <NA>
## 6602 <NA> <NA>
## 6603 <NA> <NA>
## 6604 <NA> <NA>
## 6605 <NA> <NA>
## 6606 <NA> <NA>
## 6607 <NA> <NA>
## 6608 <NA> <NA>
## 6609 <NA> <NA>
## 6610 <NA> <NA>
## 6611 <NA> <NA>
## 6612 <NA> <NA>
## 6613 <NA> <NA>
## 6614 <NA> <NA>
## 6615 <NA> <NA>
## 6616 <NA> <NA>
## 6617 <NA> <NA>
## 6618 <NA> <NA>
## 6619 <NA> <NA>
## 6620 <NA> <NA>
## 6621 <NA> <NA>
## 6622 <NA> <NA>
## 6623 <NA> <NA>
## 6624 <NA> <NA>
## 6625 <NA> <NA>
## 6626 <NA> <NA>
## 6627 <NA> <NA>
## 6628 <NA> <NA>
## 6629 <NA> <NA>
## 6630 <NA> <NA>
## 6631 <NA> <NA>
## 6632 <NA> <NA>
## 6633 <NA> <NA>
## 6634 <NA> <NA>
## 6635 <NA> <NA>
## 6636 <NA> <NA>
## 6637 <NA> <NA>
## 6638 <NA> <NA>
## 6639 <NA> <NA>
## 6640 <NA> <NA>
## 6641 <NA> <NA>
## 6642 <NA> <NA>
## 6643 <NA> <NA>
## 6644 <NA> <NA>
## 6645 <NA> <NA>
## 6646 <NA> <NA>
## 6647 <NA> <NA>
## 6648 <NA> <NA>
## 6649 <NA> <NA>
## 6650 <NA> <NA>
## 6651 <NA> <NA>
## 6652 <NA> <NA>
## 6653 <NA> <NA>
## 6654 <NA> <NA>
## 6655 <NA> <NA>
## 6656 <NA> <NA>
## 6657 <NA> <NA>
## 6658 <NA> <NA>
## 6659 <NA> <NA>
## 6660 <NA> <NA>
## 6661 <NA> <NA>
## 6662 <NA> <NA>
## 6663 <NA> <NA>
## 6664 <NA> <NA>
## 6665 <NA> <NA>
## 6666 <NA> <NA>
## 6667 <NA> <NA>
## 6668 <NA> <NA>
## 6669 <NA> <NA>
## 6670 <NA> <NA>
## 6671 <NA> <NA>
## 6672 <NA> <NA>
## 6673 <NA> <NA>
## 6674 <NA> <NA>
## 6675 <NA> <NA>
## 6676 <NA> <NA>
## 6677 <NA> <NA>
## 6678 <NA> <NA>
## 6679 <NA> <NA>
## 6680 <NA> <NA>
## 6681 <NA> <NA>
## 6682 <NA> <NA>
## 6683 <NA> <NA>
## 6684 <NA> <NA>
## 6685 <NA> <NA>
## 6686 <NA> <NA>
## 6687 <NA> <NA>
## 6688 <NA> <NA>
## 6689 <NA> <NA>
## 6690 <NA> <NA>
## 6691 <NA> <NA>
## 6692 <NA> <NA>
## 6693 <NA> <NA>
## 6694 <NA> <NA>
## 6695 <NA> <NA>
## 6696 <NA> <NA>
## 6697 <NA> <NA>
## 6698 <NA> <NA>
## 6699 <NA> <NA>
## 6700 <NA> <NA>
## 6701 <NA> <NA>
## 6702 <NA> <NA>
## 6703 <NA> <NA>
## 6704 <NA> <NA>
## 6705 <NA> <NA>
## 6706 <NA> <NA>
## 6707 <NA> <NA>
## 6708 <NA> <NA>
## 6709 <NA> <NA>
## 6710 <NA> <NA>
## 6711 <NA> <NA>
## 6712 <NA> <NA>
## 6713 <NA> <NA>
## 6714 <NA> <NA>
## 6715 <NA> <NA>
## 6716 <NA> <NA>
## 6717 <NA> <NA>
## 6718 <NA> <NA>
## 6719 <NA> <NA>
## 6720 <NA> <NA>
## 6721 <NA> <NA>
## 6722 <NA> <NA>
## 6723 <NA> <NA>
## 6724 <NA> <NA>
## 6725 <NA> <NA>
## 6726 <NA> <NA>
## 6727 <NA> <NA>
## 6728 <NA> <NA>
## 6729 <NA> <NA>
## 6730 <NA> <NA>
## 6731 <NA> <NA>
## 6732 <NA> <NA>
## 6733 <NA> <NA>
## 6734 <NA> <NA>
## 6735 <NA> <NA>
## 6736 <NA> <NA>
## 6737 <NA> <NA>
## 6738 <NA> <NA>
## 6739 <NA> <NA>
## 6740 <NA> <NA>
## 6741 <NA> <NA>
## 6742 <NA> <NA>
## 6743 <NA> <NA>
## 6744 <NA> <NA>
## 6745 <NA> <NA>
## 6746 <NA> <NA>
## 6747 <NA> <NA>
## 6748 <NA> <NA>
## 6749 <NA> <NA>
## 6750 <NA> <NA>
## 6751 <NA> <NA>
## 6752 <NA> <NA>
## 6753 <NA> <NA>
## 6754 <NA> <NA>
## 6755 <NA> <NA>
## 6756 <NA> <NA>
## 6757 <NA> <NA>
## 6758 <NA> <NA>
## 6759 <NA> <NA>
## 6760 <NA> <NA>
## 6761 <NA> <NA>
## 6762 <NA> <NA>
## 6763 <NA> <NA>
## 6764 <NA> <NA>
## 6765 <NA> <NA>
## 6766 <NA> <NA>
## 6767 <NA> <NA>
## 6768 <NA> <NA>
## 6769 <NA> <NA>
## 6770 <NA> <NA>
## 6771 <NA> <NA>
## 6772 <NA> <NA>
## 6773 <NA> <NA>
## 6774 <NA> <NA>
## 6775 <NA> <NA>
## 6776 <NA> <NA>
## 6777 <NA> <NA>
## 6778 <NA> <NA>
## 6779 <NA> <NA>
## 6780 <NA> <NA>
## 6781 <NA> <NA>
## 6782 <NA> <NA>
## 6783 <NA> <NA>
## 6784 <NA> <NA>
## 6785 <NA> <NA>
## 6786 <NA> <NA>
## 6787 <NA> <NA>
## 6788 <NA> <NA>
## 6789 <NA> <NA>
## 6790 <NA> <NA>
## 6791 <NA> <NA>
## 6792 <NA> <NA>
## 6793 <NA> <NA>
## 6794 <NA> <NA>
## 6795 <NA> <NA>
## 6796 <NA> <NA>
## 6797 <NA> <NA>
## 6798 <NA> <NA>
## 6799 <NA> <NA>
## 6800 <NA> <NA>
## 6801 <NA> <NA>
## 6802 <NA> <NA>
## 6803 <NA> <NA>
## 6804 <NA> <NA>
## 6805 <NA> <NA>
## 6806 <NA> <NA>
## 6807 <NA> <NA>
## 6808 <NA> <NA>
## 6809 <NA> <NA>
## 6810 <NA> <NA>
## 6811 <NA> <NA>
## 6812 <NA> <NA>
## 6813 <NA> <NA>
## 6814 <NA> <NA>
## 6815 <NA> <NA>
## 6816 <NA> <NA>
## 6817 <NA> <NA>
## 6818 <NA> <NA>
## 6819 <NA> <NA>
## 6820 <NA> <NA>
## 6821 <NA> <NA>
## 6822 <NA> <NA>
## 6823 <NA> <NA>
## 6824 <NA> <NA>
## 6825 <NA> <NA>
## 6826 <NA> <NA>
## 6827 <NA> <NA>
## 6828 <NA> <NA>
## 6829 <NA> <NA>
## 6830 <NA> <NA>
## 6831 <NA> <NA>
## 6832 <NA> <NA>
## 6833 <NA> <NA>
## 6834 <NA> <NA>
## 6835 <NA> <NA>
## 6836 <NA> <NA>
## 6837 <NA> <NA>
## 6838 <NA> <NA>
## 6839 <NA> <NA>
## 6840 <NA> <NA>
## 6841 <NA> <NA>
## 6842 <NA> <NA>
## 6843 <NA> <NA>
## 6844 <NA> <NA>
## 6845 <NA> <NA>
## 6846 <NA> <NA>
## 6847 <NA> <NA>
## 6848 <NA> <NA>
## 6849 <NA> <NA>
## 6850 <NA> <NA>
## 6851 <NA> <NA>
## 6852 <NA> <NA>
## 6853 <NA> <NA>
## 6854 <NA> <NA>
## 6855 <NA> <NA>
## 6856 <NA> <NA>
## 6857 <NA> <NA>
## 6858 <NA> <NA>
## 6859 <NA> <NA>
## 6860 <NA> <NA>
## 6861 <NA> <NA>
## 6862 <NA> <NA>
## 6863 <NA> <NA>
## 6864 <NA> <NA>
## 6865 <NA> <NA>
## 6866 <NA> <NA>
## 6867 <NA> <NA>
## 6868 <NA> <NA>
## 6869 <NA> <NA>
## 6870 <NA> <NA>
## 6871 <NA> <NA>
## 6872 <NA> <NA>
## 6873 <NA> <NA>
## 6874 <NA> <NA>
## 6875 <NA> <NA>
## 6876 <NA> <NA>
## 6877 <NA> <NA>
## 6878 <NA> <NA>
## 6879 <NA> <NA>
## 6880 <NA> <NA>
## 6881 <NA> <NA>
## 6882 <NA> <NA>
## 6883 <NA> <NA>
## 6884 <NA> <NA>
## 6885 <NA> <NA>
## 6886 <NA> <NA>
## 6887 <NA> <NA>
## 6888 <NA> <NA>
## 6889 <NA> <NA>
## 6890 <NA> <NA>
## 6891 <NA> <NA>
## 6892 <NA> <NA>
## 6893 <NA> <NA>
## 6894 <NA> <NA>
## 6895 <NA> <NA>
## 6896 <NA> <NA>
## 6897 <NA> <NA>
## 6898 <NA> <NA>
## 6899 <NA> <NA>
## 6900 <NA> <NA>
## 6901 <NA> <NA>
## 6902 <NA> <NA>
## 6903 <NA> <NA>
## 6904 <NA> <NA>
## 6905 <NA> <NA>
## 6906 <NA> <NA>
## 6907 <NA> <NA>
## 6908 <NA> <NA>
## 6909 <NA> <NA>
## 6910 <NA> <NA>
## 6911 <NA> <NA>
## 6912 <NA> <NA>
## 6913 <NA> <NA>
## 6914 <NA> <NA>
## 6915 <NA> <NA>
## 6916 <NA> <NA>
## 6917 <NA> <NA>
## 6918 <NA> <NA>
## 6919 <NA> <NA>
## 6920 <NA> <NA>
## 6921 <NA> <NA>
## 6922 <NA> <NA>
## 6923 <NA> <NA>
## 6924 <NA> <NA>
## 6925 <NA> <NA>
## 6926 <NA> <NA>
## 6927 <NA> <NA>
## 6928 <NA> <NA>
## 6929 <NA> <NA>
## 6930 <NA> <NA>
## 6931 <NA> <NA>
## 6932 <NA> <NA>
## 6933 <NA> <NA>
## 6934 <NA> <NA>
## 6935 <NA> <NA>
## 6936 <NA> <NA>
## 6937 <NA> <NA>
## 6938 <NA> <NA>
## 6939 <NA> <NA>
## 6940 <NA> <NA>
## 6941 <NA> <NA>
## 6942 <NA> <NA>
## 6943 <NA> <NA>
## 6944 <NA> <NA>
## 6945 <NA> <NA>
## 6946 <NA> <NA>
## 6947 <NA> <NA>
## 6948 <NA> <NA>
## 6949 <NA> <NA>
## 6950 <NA> <NA>
## 6951 <NA> <NA>
## 6952 <NA> <NA>
## 6953 <NA> <NA>
## 6954 <NA> <NA>
## 6955 <NA> <NA>
## 6956 <NA> <NA>
## 6957 <NA> <NA>
## 6958 <NA> <NA>
## 6959 <NA> <NA>
## 6960 <NA> <NA>
## 6961 <NA> <NA>
## 6962 <NA> <NA>
## 6963 <NA> <NA>
## 6964 <NA> <NA>
## 6965 <NA> <NA>
## 6966 <NA> <NA>
## 6967 <NA> <NA>
## 6968 <NA> <NA>
## 6969 <NA> <NA>
## 6970 <NA> <NA>
## 6971 <NA> <NA>
## 6972 <NA> <NA>
## 6973 <NA> <NA>
## 6974 <NA> <NA>
## 6975 <NA> <NA>
## 6976 <NA> <NA>
## 6977 <NA> <NA>
## 6978 <NA> <NA>
## 6979 <NA> <NA>
## 6980 <NA> <NA>
## 6981 <NA> <NA>
## 6982 <NA> <NA>
## 6983 <NA> <NA>
## 6984 <NA> <NA>
## 6985 <NA> <NA>
## 6986 <NA> <NA>
## 6987 <NA> <NA>
## 6988 <NA> <NA>
## 6989 <NA> <NA>
## 6990 <NA> <NA>
## 6991 <NA> <NA>
## 6992 <NA> <NA>
## 6993 <NA> <NA>
## 6994 <NA> <NA>
## 6995 <NA> <NA>
## 6996 <NA> <NA>
## 6997 <NA> <NA>
## 6998 <NA> <NA>
## 6999 <NA> <NA>
## 7000 <NA> <NA>
## 7001 <NA> <NA>
## 7002 <NA> <NA>
## 7003 <NA> <NA>
## 7004 <NA> <NA>
## 7005 <NA> <NA>
## 7006 <NA> <NA>
## 7007 <NA> <NA>
## 7008 <NA> <NA>
## 7009 <NA> <NA>
## 7010 <NA> <NA>
## 7011 <NA> <NA>
## 7012 <NA> <NA>
## 7013 <NA> <NA>
## 7014 <NA> <NA>
## 7015 <NA> <NA>
## 7016 <NA> <NA>
## 7017 <NA> <NA>
## 7018 <NA> <NA>
## 7019 <NA> <NA>
## 7020 <NA> <NA>
## 7021 <NA> <NA>
## 7022 <NA> <NA>
## 7023 <NA> <NA>
## 7024 <NA> <NA>
## 7025 <NA> <NA>
## 7026 <NA> <NA>
## 7027 <NA> <NA>
## 7028 <NA> <NA>
## 7029 <NA> <NA>
## 7030 <NA> <NA>
## 7031 <NA> <NA>
## 7032 <NA> <NA>
## 7033 <NA> <NA>
## 7034 <NA> <NA>
## 7035 <NA> <NA>
## 7036 <NA> <NA>
## 7037 <NA> <NA>
## 7038 <NA> <NA>
## 7039 <NA> <NA>
## 7040 <NA> <NA>
## 7041 <NA> <NA>
## 7042 <NA> <NA>
## 7043 <NA> <NA>
## 7044 <NA> <NA>
## 7045 <NA> <NA>
## 7046 <NA> <NA>
## 7047 <NA> <NA>
## 7048 <NA> <NA>
## 7049 <NA> <NA>
## 7050 <NA> <NA>
## 7051 <NA> <NA>
## 7052 <NA> <NA>
## 7053 <NA> <NA>
## 7054 <NA> <NA>
## 7055 <NA> <NA>
## 7056 <NA> <NA>
## 7057 <NA> <NA>
## 7058 <NA> <NA>
## 7059 <NA> <NA>
## 7060 <NA> <NA>
## 7061 <NA> <NA>
## 7062 <NA> <NA>
## 7063 <NA> <NA>
## 7064 <NA> <NA>
## 7065 <NA> <NA>
## 7066 <NA> <NA>
## 7067 <NA> <NA>
## 7068 <NA> <NA>
## 7069 <NA> <NA>
## 7070 <NA> <NA>
## 7071 <NA> <NA>
## 7072 <NA> <NA>
## 7073 <NA> <NA>
## 7074 <NA> <NA>
## 7075 <NA> <NA>
## 7076 <NA> <NA>
## 7077 <NA> <NA>
## 7078 <NA> <NA>
## 7079 <NA> <NA>
## 7080 <NA> <NA>
## 7081 <NA> <NA>
## 7082 <NA> <NA>
## 7083 <NA> <NA>
## 7084 <NA> <NA>
## 7085 <NA> <NA>
## 7086 <NA> <NA>
## 7087 <NA> <NA>
## 7088 <NA> <NA>
## 7089 <NA> <NA>
## 7090 <NA> <NA>
## 7091 <NA> <NA>
## 7092 <NA> <NA>
## 7093 <NA> <NA>
## 7094 <NA> <NA>
## 7095 <NA> <NA>
## 7096 <NA> <NA>
## 7097 <NA> <NA>
## 7098 <NA> <NA>
## 7099 <NA> <NA>
## 7100 <NA> <NA>
## 7101 <NA> <NA>
## 7102 <NA> <NA>
## 7103 <NA> <NA>
## 7104 <NA> <NA>
## 7105 <NA> <NA>
## 7106 <NA> <NA>
## 7107 <NA> <NA>
## 7108 <NA> <NA>
## 7109 <NA> <NA>
## 7110 <NA> <NA>
## 7111 <NA> <NA>
## 7112 <NA> <NA>
## 7113 <NA> <NA>
## 7114 <NA> <NA>
## 7115 <NA> <NA>
## 7116 <NA> <NA>
## 7117 <NA> <NA>
## 7118 <NA> <NA>
## 7119 <NA> <NA>
## 7120 <NA> <NA>
## 7121 <NA> <NA>
## 7122 <NA> <NA>
## 7123 <NA> <NA>
## 7124 <NA> <NA>
## 7125 <NA> <NA>
## 7126 <NA> <NA>
## 7127 <NA> <NA>
## 7128 <NA> <NA>
## 7129 <NA> <NA>
## 7130 <NA> <NA>
## 7131 <NA> <NA>
## 7132 <NA> <NA>
## 7133 <NA> <NA>
## 7134 <NA> <NA>
## 7135 <NA> <NA>
## 7136 <NA> <NA>
## 7137 <NA> <NA>
## 7138 <NA> <NA>
## 7139 <NA> <NA>
## 7140 <NA> <NA>
## 7141 <NA> <NA>
## 7142 <NA> <NA>
## 7143 <NA> <NA>
## 7144 <NA> <NA>
## 7145 <NA> <NA>
## 7146 <NA> <NA>
## 7147 <NA> <NA>
## 7148 <NA> <NA>
## 7149 <NA> <NA>
## 7150 <NA> <NA>
## 7151 <NA> <NA>
## 7152 <NA> <NA>
## 7153 <NA> <NA>
## 7154 <NA> <NA>
## 7155 <NA> <NA>
## 7156 <NA> <NA>
## 7157 <NA> <NA>
## 7158 <NA> <NA>
## 7159 <NA> <NA>
## 7160 <NA> <NA>
## 7161 <NA> <NA>
## 7162 <NA> <NA>
## 7163 <NA> <NA>
## 7164 <NA> <NA>
## 7165 <NA> <NA>
## 7166 <NA> <NA>
## 7167 <NA> <NA>
## 7168 <NA> <NA>
## 7169 <NA> <NA>
## 7170 <NA> <NA>
## 7171 <NA> <NA>
## 7172 <NA> <NA>
## 7173 <NA> <NA>
## 7174 <NA> <NA>
## 7175 <NA> <NA>
## 7176 <NA> <NA>
## 7177 <NA> <NA>
## 7178 <NA> <NA>
## 7179 <NA> <NA>
## 7180 <NA> <NA>
## 7181 <NA> <NA>
## 7182 <NA> <NA>
## 7183 <NA> <NA>
## 7184 <NA> <NA>
## 7185 <NA> <NA>
## 7186 <NA> <NA>
## 7187 <NA> <NA>
## 7188 <NA> <NA>
## 7189 <NA> <NA>
## 7190 <NA> <NA>
## 7191 <NA> <NA>
## 7192 <NA> <NA>
## 7193 <NA> <NA>
## 7194 <NA> <NA>
## 7195 <NA> <NA>
## 7196 <NA> <NA>
## 7197 <NA> <NA>
## 7198 <NA> <NA>
## 7199 <NA> <NA>
## 7200 <NA> <NA>
## 7201 <NA> <NA>
## 7202 <NA> <NA>
## 7203 <NA> <NA>
## 7204 <NA> <NA>
## 7205 <NA> <NA>
## 7206 <NA> <NA>
## 7207 <NA> <NA>
## 7208 <NA> <NA>
## 7209 <NA> <NA>
## 7210 <NA> <NA>
## 7211 <NA> <NA>
## 7212 <NA> <NA>
## 7213 <NA> <NA>
## 7214 <NA> <NA>
## 7215 <NA> <NA>
## 7216 <NA> <NA>
## 7217 <NA> <NA>
## 7218 <NA> <NA>
## 7219 <NA> <NA>
## 7220 <NA> <NA>
## 7221 <NA> <NA>
## 7222 <NA> <NA>
## 7223 <NA> <NA>
## 7224 <NA> <NA>
## 7225 <NA> <NA>
## 7226 <NA> <NA>
## 7227 <NA> <NA>
## 7228 <NA> <NA>
## 7229 <NA> <NA>
## 7230 <NA> <NA>
## 7231 <NA> <NA>
## 7232 <NA> <NA>
## 7233 <NA> <NA>
## 7234 <NA> <NA>
## 7235 <NA> <NA>
## 7236 <NA> <NA>
## 7237 <NA> <NA>
## 7238 <NA> <NA>
## 7239 <NA> <NA>
## 7240 <NA> <NA>
## 7241 <NA> <NA>
## 7242 <NA> <NA>
## 7243 <NA> <NA>
## 7244 <NA> <NA>
## 7245 <NA> <NA>
## 7246 <NA> <NA>
## 7247 <NA> <NA>
## 7248 <NA> <NA>
## 7249 <NA> <NA>
## 7250 <NA> <NA>
## 7251 <NA> <NA>
## 7252 <NA> <NA>
## 7253 <NA> <NA>
## 7254 <NA> <NA>
## 7255 <NA> <NA>
## 7256 <NA> <NA>
## 7257 <NA> <NA>
## 7258 <NA> <NA>
## 7259 <NA> <NA>
## 7260 <NA> <NA>
## 7261 <NA> <NA>
## 7262 <NA> <NA>
## 7263 <NA> <NA>
## 7264 <NA> <NA>
## 7265 <NA> <NA>
## 7266 <NA> <NA>
## 7267 <NA> <NA>
## 7268 <NA> <NA>
## 7269 <NA> <NA>
## 7270 <NA> <NA>
## 7271 <NA> <NA>
## 7272 <NA> <NA>
## 7273 <NA> <NA>
## 7274 <NA> <NA>
## 7275 <NA> <NA>
## 7276 <NA> <NA>
## 7277 <NA> <NA>
## 7278 <NA> <NA>
## 7279 <NA> <NA>
## 7280 <NA> <NA>
## 7281 <NA> <NA>
## 7282 <NA> <NA>
## 7283 <NA> <NA>
## 7284 <NA> <NA>
## 7285 <NA> <NA>
## 7286 <NA> <NA>
## 7287 <NA> <NA>
## 7288 <NA> <NA>
## 7289 <NA> <NA>
## 7290 <NA> <NA>
## 7291 <NA> <NA>
## 7292 <NA> <NA>
## 7293 <NA> <NA>
## 7294 <NA> <NA>
## 7295 <NA> <NA>
## 7296 <NA> <NA>
## 7297 <NA> <NA>
## 7298 <NA> <NA>
## 7299 <NA> <NA>
## 7300 <NA> <NA>
## 7301 <NA> <NA>
## 7302 <NA> <NA>
## 7303 <NA> <NA>
## 7304 <NA> <NA>
## 7305 <NA> <NA>
## 7306 <NA> <NA>
## 7307 <NA> <NA>
## 7308 <NA> <NA>
## 7309 <NA> <NA>
## 7310 <NA> <NA>
## 7311 <NA> <NA>
## 7312 <NA> <NA>
## 7313 <NA> <NA>
## 7314 <NA> <NA>
## 7315 <NA> <NA>
## 7316 <NA> <NA>
## 7317 <NA> <NA>
## 7318 <NA> <NA>
## 7319 <NA> <NA>
## 7320 <NA> <NA>
## 7321 <NA> <NA>
## 7322 <NA> <NA>
## 7323 <NA> <NA>
## 7324 <NA> <NA>
## 7325 <NA> <NA>
## 7326 <NA> <NA>
## 7327 <NA> <NA>
## 7328 <NA> <NA>
## 7329 <NA> <NA>
## 7330 <NA> <NA>
## 7331 <NA> <NA>
## 7332 <NA> <NA>
## 7333 <NA> <NA>
## 7334 <NA> <NA>
## 7335 <NA> <NA>
## 7336 <NA> <NA>
## 7337 <NA> <NA>
## 7338 <NA> <NA>
## 7339 <NA> <NA>
## 7340 <NA> <NA>
## 7341 <NA> <NA>
## 7342 <NA> <NA>
## 7343 <NA> <NA>
## 7344 <NA> <NA>
## 7345 <NA> <NA>
## 7346 <NA> <NA>
## 7347 <NA> <NA>
## 7348 <NA> <NA>
## 7349 <NA> <NA>
## 7350 <NA> <NA>
## 7351 <NA> <NA>
## 7352 <NA> <NA>
## 7353 <NA> <NA>
## 7354 <NA> <NA>
## 7355 <NA> <NA>
## 7356 <NA> <NA>
## 7357 <NA> <NA>
## 7358 <NA> <NA>
## 7359 <NA> <NA>
## 7360 <NA> <NA>
## 7361 <NA> <NA>
## 7362 <NA> <NA>
## 7363 <NA> <NA>
## 7364 <NA> <NA>
## 7365 <NA> <NA>
## 7366 <NA> <NA>
## 7367 <NA> <NA>
## 7368 <NA> <NA>
## 7369 <NA> <NA>
## 7370 <NA> <NA>
## 7371 <NA> <NA>
## 7372 <NA> <NA>
## 7373 <NA> <NA>
## 7374 <NA> <NA>
## 7375 <NA> <NA>
## 7376 <NA> <NA>
## 7377 <NA> <NA>
## 7378 <NA> <NA>
## 7379 <NA> <NA>
## 7380 <NA> <NA>
## 7381 <NA> <NA>
## 7382 <NA> <NA>
## 7383 <NA> <NA>
## 7384 <NA> <NA>
## 7385 <NA> <NA>
## 7386 <NA> <NA>
## 7387 <NA> <NA>
## 7388 <NA> <NA>
## 7389 <NA> <NA>
## 7390 <NA> <NA>
## 7391 <NA> <NA>
## 7392 <NA> <NA>
## 7393 <NA> <NA>
## 7394 <NA> <NA>
## 7395 <NA> <NA>
## 7396 <NA> <NA>
## 7397 <NA> <NA>
## 7398 <NA> <NA>
## 7399 <NA> <NA>
## 7400 <NA> <NA>
## 7401 <NA> <NA>
## 7402 <NA> <NA>
## 7403 <NA> <NA>
## 7404 <NA> <NA>
## 7405 <NA> <NA>
## 7406 <NA> <NA>
## 7407 <NA> <NA>
## 7408 <NA> <NA>
## 7409 <NA> <NA>
## 7410 <NA> <NA>
## 7411 <NA> <NA>
## 7412 <NA> <NA>
## 7413 <NA> <NA>
## 7414 <NA> <NA>
## 7415 <NA> <NA>
## 7416 <NA> <NA>
## 7417 <NA> <NA>
## 7418 <NA> <NA>
## 7419 <NA> <NA>
## 7420 <NA> <NA>
## 7421 <NA> <NA>
## 7422 <NA> <NA>
## 7423 <NA> <NA>
## 7424 <NA> <NA>
## 7425 <NA> <NA>
## 7426 <NA> <NA>
## 7427 <NA> <NA>
## 7428 <NA> <NA>
## 7429 <NA> <NA>
## 7430 <NA> <NA>
## 7431 <NA> <NA>
## 7432 <NA> <NA>
## 7433 <NA> <NA>
## 7434 <NA> <NA>
## 7435 <NA> <NA>
## 7436 <NA> <NA>
## 7437 <NA> <NA>
## 7438 <NA> <NA>
## 7439 <NA> <NA>
## 7440 <NA> <NA>
## 7441 <NA> <NA>
## 7442 <NA> <NA>
## 7443 <NA> <NA>
## 7444 <NA> <NA>
## 7445 <NA> <NA>
## 7446 <NA> <NA>
## 7447 <NA> <NA>
## 7448 <NA> <NA>
## 7449 <NA> <NA>
## 7450 <NA> <NA>
## 7451 <NA> <NA>
## 7452 <NA> <NA>
## 7453 <NA> <NA>
## 7454 <NA> <NA>
## 7455 <NA> <NA>
## 7456 <NA> <NA>
## 7457 <NA> <NA>
## 7458 <NA> <NA>
## 7459 <NA> <NA>
## 7460 <NA> <NA>
## 7461 <NA> <NA>
## 7462 <NA> <NA>
## 7463 <NA> <NA>
## 7464 <NA> <NA>
## 7465 <NA> <NA>
## 7466 <NA> <NA>
## 7467 <NA> <NA>
## 7468 <NA> <NA>
## 7469 <NA> <NA>
## 7470 <NA> <NA>
## 7471 <NA> <NA>
## 7472 <NA> <NA>
## 7473 <NA> <NA>
## 7474 <NA> <NA>
## 7475 <NA> <NA>
## 7476 <NA> <NA>
## 7477 <NA> <NA>
## 7478 <NA> <NA>
## 7479 <NA> <NA>
## 7480 <NA> <NA>
## 7481 <NA> <NA>
## 7482 <NA> <NA>
## 7483 <NA> <NA>
## 7484 <NA> <NA>
## 7485 <NA> <NA>
## 7486 <NA> <NA>
## 7487 <NA> <NA>
## 7488 <NA> <NA>
## 7489 <NA> <NA>
## 7490 <NA> <NA>
## 7491 <NA> <NA>
## 7492 <NA> <NA>
## 7493 <NA> <NA>
## 7494 <NA> <NA>
## 7495 <NA> <NA>
## 7496 <NA> <NA>
## 7497 <NA> <NA>
## 7498 <NA> <NA>
## 7499 <NA> <NA>
## 7500 <NA> <NA>
## 7501 <NA> <NA>
## 7502 <NA> <NA>
## 7503 <NA> <NA>
## 7504 <NA> <NA>
## 7505 <NA> <NA>
## 7506 <NA> <NA>
## 7507 <NA> <NA>
## 7508 <NA> <NA>
## 7509 <NA> <NA>
## 7510 <NA> <NA>
## 7511 <NA> <NA>
## 7512 <NA> <NA>
## 7513 <NA> <NA>
## 7514 <NA> <NA>
## 7515 <NA> <NA>
## 7516 <NA> <NA>
## 7517 <NA> <NA>
## 7518 <NA> <NA>
## 7519 <NA> <NA>
## 7520 <NA> <NA>
## 7521 <NA> <NA>
## 7522 <NA> <NA>
## 7523 <NA> <NA>
## 7524 <NA> <NA>
## 7525 <NA> <NA>
## 7526 <NA> <NA>
## 7527 <NA> <NA>
## 7528 <NA> <NA>
## 7529 <NA> <NA>
## 7530 <NA> <NA>
## 7531 <NA> <NA>
## 7532 <NA> <NA>
## 7533 <NA> <NA>
## 7534 <NA> <NA>
## 7535 <NA> <NA>
## 7536 <NA> <NA>
## 7537 <NA> <NA>
## 7538 <NA> <NA>
## 7539 <NA> <NA>
## 7540 <NA> <NA>
## 7541 <NA> <NA>
## 7542 <NA> <NA>
## 7543 <NA> <NA>
## 7544 <NA> <NA>
## 7545 <NA> <NA>
## 7546 <NA> <NA>
## 7547 <NA> <NA>
## 7548 <NA> <NA>
## 7549 <NA> <NA>
## 7550 <NA> <NA>
## 7551 <NA> <NA>
## 7552 <NA> <NA>
## 7553 <NA> <NA>
## 7554 <NA> <NA>
## 7555 <NA> <NA>
## 7556 <NA> <NA>
## 7557 <NA> <NA>
## 7558 <NA> <NA>
## 7559 <NA> <NA>
## 7560 <NA> <NA>
## 7561 <NA> <NA>
## 7562 <NA> <NA>
## 7563 <NA> <NA>
## 7564 <NA> <NA>
## 7565 <NA> <NA>
## 7566 <NA> <NA>
## 7567 <NA> <NA>
## 7568 <NA> <NA>
## 7569 <NA> <NA>
## 7570 <NA> <NA>
## 7571 <NA> <NA>
## 7572 <NA> <NA>
## 7573 <NA> <NA>
## 7574 <NA> <NA>
## 7575 <NA> <NA>
## 7576 <NA> <NA>
## 7577 <NA> <NA>
## 7578 <NA> <NA>
## 7579 <NA> <NA>
## 7580 <NA> <NA>
## 7581 <NA> <NA>
## 7582 <NA> <NA>
## 7583 <NA> <NA>
## 7584 <NA> <NA>
## 7585 <NA> <NA>
## 7586 <NA> <NA>
## 7587 <NA> <NA>
## 7588 <NA> <NA>
## 7589 <NA> <NA>
## 7590 <NA> <NA>
## 7591 <NA> <NA>
## 7592 <NA> <NA>
## 7593 <NA> <NA>
## 7594 <NA> <NA>
## 7595 <NA> <NA>
## 7596 <NA> <NA>
## 7597 <NA> <NA>
## 7598 <NA> <NA>
## 7599 <NA> <NA>
## 7600 <NA> <NA>
## 7601 <NA> <NA>
## 7602 <NA> <NA>
## 7603 <NA> <NA>
## 7604 <NA> <NA>
## 7605 <NA> <NA>
## 7606 <NA> <NA>
## 7607 <NA> <NA>
## 7608 <NA> <NA>
## 7609 <NA> <NA>
## 7610 <NA> <NA>
## 7611 <NA> <NA>
## 7612 <NA> <NA>
## 7613 <NA> <NA>
## 7614 <NA> <NA>
## 7615 <NA> <NA>
## 7616 <NA> <NA>
## 7617 <NA> <NA>
## 7618 <NA> <NA>
## 7619 <NA> <NA>
## 7620 <NA> <NA>
## 7621 <NA> <NA>
## 7622 <NA> <NA>
## 7623 <NA> <NA>
## 7624 <NA> <NA>
## 7625 <NA> <NA>
## 7626 <NA> <NA>
## 7627 <NA> <NA>
## 7628 <NA> <NA>
## 7629 <NA> <NA>
## 7630 <NA> <NA>
## 7631 <NA> <NA>
## 7632 <NA> <NA>
## 7633 <NA> <NA>
## 7634 <NA> <NA>
## 7635 <NA> <NA>
## 7636 <NA> <NA>
## 7637 <NA> <NA>
## 7638 <NA> <NA>
## 7639 <NA> <NA>
## 7640 <NA> <NA>
## 7641 <NA> <NA>
## 7642 <NA> <NA>
## 7643 <NA> <NA>
## 7644 <NA> <NA>
## 7645 <NA> <NA>
## 7646 <NA> <NA>
## 7647 <NA> <NA>
## 7648 <NA> <NA>
## 7649 <NA> <NA>
## 7650 <NA> <NA>
## 7651 <NA> <NA>
## 7652 <NA> <NA>
## 7653 <NA> <NA>
## 7654 <NA> <NA>
## 7655 <NA> <NA>
## 7656 <NA> <NA>
## 7657 <NA> <NA>
## 7658 <NA> <NA>
## 7659 <NA> <NA>
## 7660 <NA> <NA>
## 7661 <NA> <NA>
## 7662 <NA> <NA>
## 7663 <NA> <NA>
## 7664 <NA> <NA>
## 7665 <NA> <NA>
## 7666 <NA> <NA>
## 7667 <NA> <NA>
## 7668 <NA> <NA>
## 7669 <NA> <NA>
## 7670 <NA> <NA>
## 7671 <NA> <NA>
## 7672 <NA> <NA>
## 7673 <NA> <NA>
## 7674 <NA> <NA>
## 7675 <NA> <NA>
## 7676 <NA> <NA>
## 7677 <NA> <NA>
## 7678 <NA> <NA>
## 7679 <NA> <NA>
## 7680 <NA> <NA>
## 7681 <NA> <NA>
## 7682 <NA> <NA>
## 7683 <NA> <NA>
## 7684 <NA> <NA>
## 7685 <NA> <NA>
## 7686 <NA> <NA>
## 7687 <NA> <NA>
## 7688 <NA> <NA>
## 7689 <NA> <NA>
## 7690 <NA> <NA>
## 7691 <NA> <NA>
## 7692 <NA> <NA>
## 7693 <NA> <NA>
## 7694 <NA> <NA>
## 7695 <NA> <NA>
## 7696 <NA> <NA>
## 7697 <NA> <NA>
## 7698 <NA> <NA>
## 7699 <NA> <NA>
## 7700 <NA> <NA>
## 7701 <NA> <NA>
## 7702 <NA> <NA>
## 7703 <NA> <NA>
## 7704 <NA> <NA>
## 7705 <NA> <NA>
## 7706 <NA> <NA>
## 7707 <NA> <NA>
## 7708 <NA> <NA>
## 7709 <NA> <NA>
## 7710 <NA> <NA>
## 7711 <NA> <NA>
## 7712 <NA> <NA>
## 7713 <NA> <NA>
## 7714 <NA> <NA>
## 7715 <NA> <NA>
## 7716 <NA> <NA>
## 7717 <NA> <NA>
## 7718 <NA> <NA>
## 7719 <NA> <NA>
## 7720 <NA> <NA>
## 7721 <NA> <NA>
## 7722 <NA> <NA>
## 7723 <NA> <NA>
## 7724 <NA> <NA>
## 7725 <NA> <NA>
## 7726 <NA> <NA>
## 7727 <NA> <NA>
## 7728 <NA> <NA>
## 7729 <NA> <NA>
## 7730 <NA> <NA>
## 7731 <NA> <NA>
## 7732 <NA> <NA>
## 7733 <NA> <NA>
## 7734 <NA> <NA>
## 7735 <NA> <NA>
## 7736 <NA> <NA>
## 7737 <NA> <NA>
## 7738 <NA> <NA>
## 7739 <NA> <NA>
## 7740 <NA> <NA>
## 7741 <NA> <NA>
## 7742 <NA> <NA>
## 7743 <NA> <NA>
## 7744 <NA> <NA>
## 7745 <NA> <NA>
## 7746 <NA> <NA>
## 7747 <NA> <NA>
## 7748 <NA> <NA>
## 7749 <NA> <NA>
## 7750 <NA> <NA>
## 7751 <NA> <NA>
## 7752 <NA> <NA>
## 7753 <NA> <NA>
## 7754 <NA> <NA>
## 7755 <NA> <NA>
## 7756 <NA> <NA>
## 7757 <NA> <NA>
## 7758 <NA> <NA>
## 7759 <NA> <NA>
## 7760 <NA> <NA>
## 7761 <NA> <NA>
## 7762 <NA> <NA>
## 7763 <NA> <NA>
## 7764 <NA> <NA>
## 7765 <NA> <NA>
## 7766 <NA> <NA>
## 7767 <NA> <NA>
## 7768 <NA> <NA>
## 7769 <NA> <NA>
## 7770 <NA> <NA>
## 7771 <NA> <NA>
## 7772 <NA> <NA>
## 7773 <NA> <NA>
## 7774 <NA> <NA>
## 7775 <NA> <NA>
## 7776 <NA> <NA>
## 7777 <NA> <NA>
## 7778 <NA> <NA>
## 7779 <NA> <NA>
## 7780 <NA> <NA>
## 7781 <NA> <NA>
## 7782 <NA> <NA>
## 7783 <NA> <NA>
## 7784 <NA> <NA>
## 7785 <NA> <NA>
## 7786 <NA> <NA>
## 7787 <NA> <NA>
## 7788 <NA> <NA>
## 7789 <NA> <NA>
## 7790 <NA> <NA>
## 7791 <NA> <NA>
## 7792 <NA> <NA>
## 7793 <NA> <NA>
## 7794 <NA> <NA>
## 7795 <NA> <NA>
## 7796 <NA> <NA>
## 7797 <NA> <NA>
## 7798 <NA> <NA>
## 7799 <NA> <NA>
## 7800 <NA> <NA>
## 7801 <NA> <NA>
## 7802 <NA> <NA>
## 7803 <NA> <NA>
## 7804 <NA> <NA>
## 7805 <NA> <NA>
## 7806 <NA> <NA>
## 7807 <NA> <NA>
## 7808 <NA> <NA>
## 7809 <NA> <NA>
## 7810 <NA> <NA>
## 7811 <NA> <NA>
## 7812 <NA> <NA>
## 7813 <NA> <NA>
## 7814 <NA> <NA>
## 7815 <NA> <NA>
## 7816 <NA> <NA>
## 7817 <NA> <NA>
## 7818 <NA> <NA>
## 7819 <NA> <NA>
## 7820 <NA> <NA>
## 7821 <NA> <NA>
## 7822 <NA> <NA>
## 7823 <NA> <NA>
## 7824 <NA> <NA>
## 7825 <NA> <NA>
## 7826 <NA> <NA>
## 7827 <NA> <NA>
## 7828 <NA> <NA>
## 7829 <NA> <NA>
## 7830 <NA> <NA>
## 7831 <NA> <NA>
## 7832 <NA> <NA>
## 7833 <NA> <NA>
## 7834 <NA> <NA>
## 7835 <NA> <NA>
## 7836 <NA> <NA>
## 7837 <NA> <NA>
## 7838 <NA> <NA>
## 7839 <NA> <NA>
## 7840 <NA> <NA>
## 7841 <NA> <NA>
## 7842 <NA> <NA>
## 7843 <NA> <NA>
## 7844 <NA> <NA>
## 7845 <NA> <NA>
## 7846 <NA> <NA>
## 7847 <NA> <NA>
## 7848 <NA> <NA>
## 7849 <NA> <NA>
## 7850 <NA> <NA>
## 7851 <NA> <NA>
## 7852 <NA> <NA>
## 7853 <NA> <NA>
## 7854 <NA> <NA>
## 7855 <NA> <NA>
## 7856 <NA> <NA>
## 7857 <NA> <NA>
## 7858 <NA> <NA>
## 7859 <NA> <NA>
## 7860 <NA> <NA>
## 7861 <NA> <NA>
## 7862 <NA> <NA>
## 7863 <NA> <NA>
## 7864 <NA> <NA>
## 7865 <NA> <NA>
## 7866 <NA> <NA>
## 7867 <NA> <NA>
## 7868 <NA> <NA>
## 7869 <NA> <NA>
## 7870 <NA> <NA>
## 7871 <NA> <NA>
## 7872 <NA> <NA>
## 7873 <NA> <NA>
## 7874 <NA> <NA>
## 7875 <NA> <NA>
## 7876 <NA> <NA>
## 7877 <NA> <NA>
## 7878 <NA> <NA>
## 7879 <NA> <NA>
## 7880 <NA> <NA>
## 7881 <NA> <NA>
## 7882 <NA> <NA>
## 7883 <NA> <NA>
## 7884 <NA> <NA>
## 7885 <NA> <NA>
## 7886 <NA> <NA>
## 7887 <NA> <NA>
## 7888 <NA> <NA>
## 7889 <NA> <NA>
## 7890 <NA> <NA>
## 7891 <NA> <NA>
## 7892 <NA> <NA>
## 7893 <NA> <NA>
## 7894 <NA> <NA>
## 7895 <NA> <NA>
## 7896 <NA> <NA>
## 7897 <NA> <NA>
## 7898 <NA> <NA>
## 7899 <NA> <NA>
## 7900 <NA> <NA>
## 7901 <NA> <NA>
## 7902 <NA> <NA>
## 7903 <NA> <NA>
## 7904 <NA> <NA>
## 7905 <NA> <NA>
## 7906 <NA> <NA>
## 7907 <NA> <NA>
## 7908 <NA> <NA>
## 7909 <NA> <NA>
## 7910 <NA> <NA>
## 7911 <NA> <NA>
## 7912 <NA> <NA>
## 7913 <NA> <NA>
## 7914 <NA> <NA>
## 7915 <NA> <NA>
## 7916 <NA> <NA>
## 7917 <NA> <NA>
## 7918 <NA> <NA>
## 7919 <NA> <NA>
## 7920 <NA> <NA>
## 7921 <NA> <NA>
## 7922 <NA> <NA>
## 7923 <NA> <NA>
## 7924 <NA> <NA>
## 7925 <NA> <NA>
## 7926 <NA> <NA>
## 7927 <NA> <NA>
## 7928 <NA> <NA>
## 7929 <NA> <NA>
## 7930 <NA> <NA>
## 7931 <NA> <NA>
## 7932 <NA> <NA>
## 7933 <NA> <NA>
## 7934 <NA> <NA>
## 7935 <NA> <NA>
## 7936 <NA> <NA>
## 7937 <NA> <NA>
## 7938 <NA> <NA>
## 7939 <NA> <NA>
## 7940 <NA> <NA>
## 7941 <NA> <NA>
## 7942 <NA> <NA>
## 7943 <NA> <NA>
## 7944 <NA> <NA>
## 7945 <NA> <NA>
## 7946 <NA> <NA>
## 7947 <NA> <NA>
## 7948 <NA> <NA>
## 7949 <NA> <NA>
## 7950 <NA> <NA>
## 7951 <NA> <NA>
## 7952 <NA> <NA>
## 7953 <NA> <NA>
## 7954 <NA> <NA>
## 7955 <NA> <NA>
## 7956 <NA> <NA>
## 7957 <NA> <NA>
## 7958 <NA> <NA>
## 7959 <NA> <NA>
## 7960 <NA> <NA>
## 7961 <NA> <NA>
## 7962 <NA> <NA>
## 7963 <NA> <NA>
## 7964 <NA> <NA>
## 7965 <NA> <NA>
## 7966 <NA> <NA>
## 7967 <NA> <NA>
## 7968 <NA> <NA>
## 7969 <NA> <NA>
## 7970 <NA> <NA>
## 7971 <NA> <NA>
## 7972 <NA> <NA>
## 7973 <NA> <NA>
## 7974 <NA> <NA>
## 7975 <NA> <NA>
## 7976 <NA> <NA>
## 7977 <NA> <NA>
## 7978 <NA> <NA>
## 7979 <NA> <NA>
## 7980 <NA> <NA>
## 7981 <NA> <NA>
## 7982 <NA> <NA>
## 7983 <NA> <NA>
## 7984 <NA> <NA>
## 7985 <NA> <NA>
## 7986 <NA> <NA>
## 7987 <NA> <NA>
## 7988 <NA> <NA>
## 7989 <NA> <NA>
## 7990 <NA> <NA>
## 7991 <NA> <NA>
## 7992 <NA> <NA>
## 7993 <NA> <NA>
## 7994 <NA> <NA>
## 7995 <NA> <NA>
## 7996 <NA> <NA>
## 7997 <NA> <NA>
## 7998 <NA> <NA>
## 7999 <NA> <NA>
## 8000 <NA> <NA>
## 8001 <NA> <NA>
## 8002 <NA> <NA>
## 8003 <NA> <NA>
## 8004 <NA> <NA>
## 8005 <NA> <NA>
## 8006 <NA> <NA>
## 8007 <NA> <NA>
## 8008 <NA> <NA>
## 8009 <NA> <NA>
## 8010 <NA> <NA>
## 8011 <NA> <NA>
## 8012 <NA> <NA>
## 8013 <NA> <NA>
## 8014 <NA> <NA>
## 8015 <NA> <NA>
## 8016 <NA> <NA>
## 8017 <NA> <NA>
## 8018 <NA> <NA>
## 8019 <NA> <NA>
## 8020 <NA> <NA>
## 8021 <NA> <NA>
## 8022 <NA> <NA>
## 8023 <NA> <NA>
## 8024 <NA> <NA>
## 8025 <NA> <NA>
## 8026 <NA> <NA>
## 8027 <NA> <NA>
## 8028 <NA> <NA>
## 8029 <NA> <NA>
## 8030 <NA> <NA>
## 8031 <NA> <NA>
## 8032 <NA> <NA>
## 8033 <NA> <NA>
## 8034 <NA> <NA>
## 8035 <NA> <NA>
## 8036 <NA> <NA>
## 8037 <NA> <NA>
## 8038 <NA> <NA>
## 8039 <NA> <NA>
## 8040 <NA> <NA>
## 8041 <NA> <NA>
## 8042 <NA> <NA>
## 8043 <NA> <NA>
## 8044 <NA> <NA>
## 8045 <NA> <NA>
## 8046 <NA> <NA>
## 8047 <NA> <NA>
## 8048 <NA> <NA>
## 8049 <NA> <NA>
## 8050 <NA> <NA>
## 8051 <NA> <NA>
## 8052 <NA> <NA>
## 8053 <NA> <NA>
## 8054 <NA> <NA>
## 8055 <NA> <NA>
## 8056 <NA> <NA>
## 8057 <NA> <NA>
## 8058 <NA> <NA>
## 8059 <NA> <NA>
## 8060 <NA> <NA>
## 8061 <NA> <NA>
## 8062 <NA> <NA>
## 8063 <NA> <NA>
## 8064 <NA> <NA>
## 8065 <NA> <NA>
## 8066 <NA> <NA>
## 8067 <NA> <NA>
## 8068 <NA> <NA>
## 8069 <NA> <NA>
## 8070 <NA> <NA>
## 8071 <NA> <NA>
## 8072 <NA> <NA>
## 8073 <NA> <NA>
## 8074 <NA> <NA>
## 8075 <NA> <NA>
## 8076 <NA> <NA>
## 8077 <NA> <NA>
## 8078 <NA> <NA>
## 8079 <NA> <NA>
## 8080 <NA> <NA>
## 8081 <NA> <NA>
## 8082 <NA> <NA>
## 8083 <NA> <NA>
## 8084 <NA> <NA>
## 8085 <NA> <NA>
## 8086 <NA> <NA>
## 8087 <NA> <NA>
## 8088 <NA> <NA>
## 8089 <NA> <NA>
## 8090 <NA> <NA>
## 8091 <NA> <NA>
## 8092 <NA> <NA>
## 8093 <NA> <NA>
## 8094 <NA> <NA>
## 8095 <NA> <NA>
## 8096 <NA> <NA>
## 8097 <NA> <NA>
## 8098 <NA> <NA>
## 8099 <NA> <NA>
## 8100 <NA> <NA>
## 8101 <NA> <NA>
## 8102 <NA> <NA>
## 8103 <NA> <NA>
## 8104 <NA> <NA>
## 8105 <NA> <NA>
## 8106 <NA> <NA>
## 8107 <NA> <NA>
## 8108 <NA> <NA>
## 8109 <NA> <NA>
## 8110 <NA> <NA>
## 8111 <NA> <NA>
## 8112 <NA> <NA>
## 8113 <NA> <NA>
## 8114 <NA> <NA>
## 8115 <NA> <NA>
## 8116 <NA> <NA>
## 8117 <NA> <NA>
## 8118 <NA> <NA>
## 8119 <NA> <NA>
## 8120 <NA> <NA>
## 8121 <NA> <NA>
## 8122 <NA> <NA>
## 8123 <NA> <NA>
## 8124 <NA> <NA>
## 8125 <NA> <NA>
## 8126 <NA> <NA>
## 8127 <NA> <NA>
## 8128 <NA> <NA>
## 8129 <NA> <NA>
## 8130 <NA> <NA>
## 8131 <NA> <NA>
## 8132 <NA> <NA>
## 8133 <NA> <NA>
## 8134 <NA> <NA>
## 8135 <NA> <NA>
## 8136 <NA> <NA>
## 8137 <NA> <NA>
## 8138 <NA> <NA>
## 8139 <NA> <NA>
## 8140 <NA> <NA>
## 8141 <NA> <NA>
## 8142 <NA> <NA>
## 8143 <NA> <NA>
## 8144 <NA> <NA>
## 8145 <NA> <NA>
## 8146 <NA> <NA>
## 8147 <NA> <NA>
## 8148 <NA> <NA>
## 8149 <NA> <NA>
## 8150 <NA> <NA>
## 8151 <NA> <NA>
## 8152 <NA> <NA>
## 8153 <NA> <NA>
## 8154 <NA> <NA>
## 8155 <NA> <NA>
## 8156 <NA> <NA>
## 8157 <NA> <NA>
## 8158 <NA> <NA>
## 8159 <NA> <NA>
## 8160 <NA> <NA>
## 8161 <NA> <NA>
## 8162 <NA> <NA>
## 8163 <NA> <NA>
## 8164 <NA> <NA>
## 8165 <NA> <NA>
## 8166 <NA> <NA>
## 8167 <NA> <NA>
## 8168 <NA> <NA>
## 8169 <NA> <NA>
## 8170 <NA> <NA>
## 8171 <NA> <NA>
## 8172 <NA> <NA>
## 8173 <NA> <NA>
## 8174 <NA> <NA>
## 8175 <NA> <NA>
## 8176 <NA> <NA>
## 8177 <NA> <NA>
## 8178 <NA> <NA>
## 8179 <NA> <NA>
## 8180 <NA> <NA>
## 8181 <NA> <NA>
## 8182 <NA> <NA>
## 8183 <NA> <NA>
## 8184 <NA> <NA>
## 8185 <NA> <NA>
## 8186 <NA> <NA>
## 8187 <NA> <NA>
## 8188 <NA> <NA>
## 8189 <NA> <NA>
## 8190 <NA> <NA>
## 8191 <NA> <NA>
## 8192 <NA> <NA>
## 8193 <NA> <NA>
## 8194 <NA> <NA>
## 8195 <NA> <NA>
## 8196 <NA> <NA>
## 8197 <NA> <NA>
## 8198 <NA> <NA>
## 8199 <NA> <NA>
## 8200 <NA> <NA>
## 8201 <NA> <NA>
## 8202 <NA> <NA>
## 8203 <NA> <NA>
## 8204 <NA> <NA>
## 8205 <NA> <NA>
## 8206 <NA> <NA>
## 8207 <NA> <NA>
## 8208 <NA> <NA>
## 8209 <NA> <NA>
## 8210 <NA> <NA>
## 8211 <NA> <NA>
## 8212 <NA> <NA>
## 8213 <NA> <NA>
## 8214 <NA> <NA>
## 8215 <NA> <NA>
## 8216 <NA> <NA>
## 8217 <NA> <NA>
## 8218 <NA> <NA>
## 8219 <NA> <NA>
## 8220 <NA> <NA>
## 8221 <NA> <NA>
## 8222 <NA> <NA>
## 8223 <NA> <NA>
## 8224 <NA> <NA>
## 8225 <NA> <NA>
## 8226 <NA> <NA>
## 8227 <NA> <NA>
## 8228 <NA> <NA>
## 8229 <NA> <NA>
## 8230 <NA> <NA>
## 8231 <NA> <NA>
## 8232 <NA> <NA>
## 8233 <NA> <NA>
## 8234 <NA> <NA>
## 8235 <NA> <NA>
## 8236 <NA> <NA>
## 8237 <NA> <NA>
## 8238 <NA> <NA>
## 8239 <NA> <NA>
## 8240 <NA> <NA>
## 8241 <NA> <NA>
## 8242 <NA> <NA>
## 8243 <NA> <NA>
## 8244 <NA> <NA>
## 8245 <NA> <NA>
## 8246 <NA> <NA>
## 8247 <NA> <NA>
## 8248 <NA> <NA>
## 8249 <NA> <NA>
## 8250 <NA> <NA>
## 8251 <NA> <NA>
## 8252 <NA> <NA>
## 8253 <NA> <NA>
## 8254 <NA> <NA>
## 8255 <NA> <NA>
## 8256 <NA> <NA>
## 8257 <NA> <NA>
## 8258 <NA> <NA>
## 8259 <NA> <NA>
## 8260 <NA> <NA>
## 8261 <NA> <NA>
## 8262 <NA> <NA>
## 8263 <NA> <NA>
## 8264 <NA> <NA>
## 8265 <NA> <NA>
## 8266 <NA> <NA>
## 8267 <NA> <NA>
## 8268 <NA> <NA>
## 8269 <NA> <NA>
## 8270 <NA> <NA>
## 8271 <NA> <NA>
## 8272 <NA> <NA>
## 8273 <NA> <NA>
## 8274 <NA> <NA>
## 8275 <NA> <NA>
## 8276 <NA> <NA>
## 8277 <NA> <NA>
## 8278 <NA> <NA>
## 8279 <NA> <NA>
## 8280 <NA> <NA>
## 8281 <NA> <NA>
## 8282 <NA> <NA>
## 8283 <NA> <NA>
## 8284 <NA> <NA>
## 8285 <NA> <NA>
## 8286 <NA> <NA>
## 8287 <NA> <NA>
## 8288 <NA> <NA>
## 8289 <NA> <NA>
## 8290 <NA> <NA>
## 8291 <NA> <NA>
## 8292 <NA> <NA>
## 8293 <NA> <NA>
## 8294 <NA> <NA>
## 8295 <NA> <NA>
## 8296 <NA> <NA>
## 8297 <NA> <NA>
## 8298 <NA> <NA>
## 8299 <NA> <NA>
## 8300 <NA> <NA>
## 8301 <NA> <NA>
## 8302 <NA> <NA>
## 8303 <NA> <NA>
## 8304 <NA> <NA>
## 8305 <NA> <NA>
## 8306 <NA> <NA>
## 8307 <NA> <NA>
## 8308 <NA> <NA>
## 8309 <NA> <NA>
## 8310 <NA> <NA>
## 8311 <NA> <NA>
## 8312 <NA> <NA>
## 8313 <NA> <NA>
## 8314 <NA> <NA>
## 8315 <NA> <NA>
## 8316 <NA> <NA>
## 8317 <NA> <NA>
## 8318 <NA> <NA>
## 8319 <NA> <NA>
## 8320 <NA> <NA>
## 8321 <NA> <NA>
## 8322 <NA> <NA>
## 8323 <NA> <NA>
## 8324 <NA> <NA>
## 8325 <NA> <NA>
## 8326 <NA> <NA>
## 8327 <NA> <NA>
## 8328 <NA> <NA>
## 8329 <NA> <NA>
## 8330 <NA> <NA>
## 8331 <NA> <NA>
## 8332 <NA> <NA>
## 8333 <NA> <NA>
## 8334 <NA> <NA>
## 8335 <NA> <NA>
## 8336 <NA> <NA>
## 8337 <NA> <NA>
## 8338 <NA> <NA>
## 8339 <NA> <NA>
## 8340 <NA> <NA>
## 8341 <NA> <NA>
## 8342 <NA> <NA>
## 8343 <NA> <NA>
## 8344 <NA> <NA>
## 8345 <NA> <NA>
## 8346 <NA> <NA>
## 8347 <NA> <NA>
## 8348 <NA> <NA>
## 8349 <NA> <NA>
## 8350 <NA> <NA>
## 8351 <NA> <NA>
## 8352 <NA> <NA>
## 8353 <NA> <NA>
## 8354 <NA> <NA>
## 8355 <NA> <NA>
## 8356 <NA> <NA>
## 8357 <NA> <NA>
## 8358 <NA> <NA>
## 8359 <NA> <NA>
## 8360 <NA> <NA>
## 8361 <NA> <NA>
## 8362 <NA> <NA>
## 8363 <NA> <NA>
## 8364 <NA> <NA>
## 8365 <NA> <NA>
## 8366 <NA> <NA>
## 8367 <NA> <NA>
## 8368 <NA> <NA>
## 8369 <NA> <NA>
## 8370 <NA> <NA>
## 8371 <NA> <NA>
## 8372 <NA> <NA>
## 8373 <NA> <NA>
## 8374 <NA> <NA>
## 8375 <NA> <NA>
## 8376 <NA> <NA>
## 8377 <NA> <NA>
## 8378 <NA> <NA>
## 8379 <NA> <NA>
## 8380 <NA> <NA>
## 8381 <NA> <NA>
## 8382 <NA> <NA>
## 8383 <NA> <NA>
## 8384 <NA> <NA>
## 8385 <NA> <NA>
## 8386 <NA> <NA>
## 8387 <NA> <NA>
## 8388 <NA> <NA>
## 8389 <NA> <NA>
## 8390 <NA> <NA>
## 8391 <NA> <NA>
## 8392 <NA> <NA>
## 8393 <NA> <NA>
## 8394 <NA> <NA>
## 8395 <NA> <NA>
## 8396 <NA> <NA>
## 8397 <NA> <NA>
## 8398 <NA> <NA>
## 8399 <NA> <NA>
## 8400 <NA> <NA>
## 8401 <NA> <NA>
## 8402 <NA> <NA>
## 8403 <NA> <NA>
## 8404 <NA> <NA>
## 8405 <NA> <NA>
## 8406 <NA> <NA>
## 8407 <NA> <NA>
## 8408 <NA> <NA>
## 8409 <NA> <NA>
## 8410 <NA> <NA>
## 8411 <NA> <NA>
## 8412 <NA> <NA>
## 8413 <NA> <NA>
## 8414 <NA> <NA>
## 8415 <NA> <NA>
## 8416 <NA> <NA>
## 8417 <NA> <NA>
## 8418 <NA> <NA>
## 8419 <NA> <NA>
## 8420 <NA> <NA>
## 8421 <NA> <NA>
## 8422 <NA> <NA>
## 8423 <NA> <NA>
## 8424 <NA> <NA>
## 8425 <NA> <NA>
## 8426 <NA> <NA>
## 8427 <NA> <NA>
## 8428 <NA> <NA>
## 8429 <NA> <NA>
## 8430 <NA> <NA>
## 8431 <NA> <NA>
## 8432 <NA> <NA>
## 8433 <NA> <NA>
## 8434 <NA> <NA>
## 8435 <NA> <NA>
## 8436 <NA> <NA>
## 8437 <NA> <NA>
## 8438 <NA> <NA>
## 8439 <NA> <NA>
## 8440 <NA> <NA>
## 8441 <NA> <NA>
## 8442 <NA> <NA>
## 8443 <NA> <NA>
## 8444 <NA> <NA>
## 8445 <NA> <NA>
## 8446 <NA> <NA>
## 8447 <NA> <NA>
## 8448 <NA> <NA>
## 8449 <NA> <NA>
## 8450 <NA> <NA>
## 8451 <NA> <NA>
## 8452 <NA> <NA>
## 8453 <NA> <NA>
## 8454 <NA> <NA>
## 8455 <NA> <NA>
## 8456 <NA> <NA>
## 8457 <NA> <NA>
## 8458 <NA> <NA>
## 8459 <NA> <NA>
## 8460 <NA> <NA>
## 8461 <NA> <NA>
## 8462 <NA> <NA>
## 8463 <NA> <NA>
## 8464 <NA> <NA>
## 8465 <NA> <NA>
## 8466 <NA> <NA>
## 8467 <NA> <NA>
## 8468 <NA> <NA>
## 8469 <NA> <NA>
## 8470 <NA> <NA>
## 8471 <NA> <NA>
## 8472 <NA> <NA>
## 8473 <NA> <NA>
## 8474 <NA> <NA>
## 8475 <NA> <NA>
## 8476 <NA> <NA>
## 8477 <NA> <NA>
## 8478 <NA> <NA>
## 8479 <NA> <NA>
## 8480 <NA> <NA>
## 8481 <NA> <NA>
## 8482 <NA> <NA>
## 8483 <NA> <NA>
## 8484 <NA> <NA>
## 8485 <NA> <NA>
## 8486 <NA> <NA>
## 8487 <NA> <NA>
## 8488 <NA> <NA>
## 8489 <NA> <NA>
## 8490 <NA> <NA>
## 8491 <NA> <NA>
## 8492 <NA> <NA>
## 8493 <NA> <NA>
## 8494 <NA> <NA>
## 8495 <NA> <NA>
## 8496 <NA> <NA>
## 8497 <NA> <NA>
## 8498 <NA> <NA>
## 8499 <NA> <NA>
## 8500 <NA> <NA>
## 8501 <NA> <NA>
## 8502 <NA> <NA>
## 8503 <NA> <NA>
## 8504 <NA> <NA>
## 8505 <NA> <NA>
## 8506 <NA> <NA>
## 8507 <NA> <NA>
## 8508 <NA> <NA>
## 8509 <NA> <NA>
## 8510 <NA> <NA>
## 8511 <NA> <NA>
## 8512 <NA> <NA>
## 8513 <NA> <NA>
## 8514 <NA> <NA>
## 8515 <NA> <NA>
## 8516 <NA> <NA>
## 8517 <NA> <NA>
## 8518 <NA> <NA>
## 8519 <NA> <NA>
## 8520 <NA> <NA>
## 8521 <NA> <NA>
## 8522 <NA> <NA>
## 8523 <NA> <NA>
## 8524 <NA> <NA>
## 8525 <NA> <NA>
## 8526 <NA> <NA>
## 8527 <NA> <NA>
## 8528 <NA> <NA>
## 8529 <NA> <NA>
## 8530 <NA> <NA>
## 8531 <NA> <NA>
## 8532 <NA> <NA>
## 8533 <NA> <NA>
## 8534 <NA> <NA>
## 8535 <NA> <NA>
## 8536 <NA> <NA>
## 8537 <NA> <NA>
## 8538 <NA> <NA>
## 8539 <NA> <NA>
## 8540 <NA> <NA>
## 8541 <NA> <NA>
## 8542 <NA> <NA>
## 8543 <NA> <NA>
## 8544 <NA> <NA>
## 8545 <NA> <NA>
## 8546 <NA> <NA>
## 8547 <NA> <NA>
## 8548 <NA> <NA>
## 8549 <NA> <NA>
## 8550 <NA> <NA>
## 8551 <NA> <NA>
## 8552 <NA> <NA>
## 8553 <NA> <NA>
## 8554 <NA> <NA>
## 8555 <NA> <NA>
## 8556 <NA> <NA>
## 8557 <NA> <NA>
## 8558 <NA> <NA>
## 8559 <NA> <NA>
## 8560 <NA> <NA>
## 8561 <NA> <NA>
## 8562 <NA> <NA>
## 8563 <NA> <NA>
## 8564 <NA> <NA>
## 8565 <NA> <NA>
## 8566 <NA> <NA>
## 8567 <NA> <NA>
## 8568 <NA> <NA>
## 8569 <NA> <NA>
## 8570 <NA> <NA>
## 8571 <NA> <NA>
## 8572 <NA> <NA>
## 8573 <NA> <NA>
## 8574 <NA> <NA>
## 8575 <NA> <NA>
## 8576 <NA> <NA>
## 8577 <NA> <NA>
## 8578 <NA> <NA>
## 8579 <NA> <NA>
## 8580 <NA> <NA>
## 8581 <NA> <NA>
## 8582 <NA> <NA>
## 8583 <NA> <NA>
## 8584 <NA> <NA>
## 8585 <NA> <NA>
## 8586 <NA> <NA>
## 8587 <NA> <NA>
## 8588 <NA> <NA>
## 8589 <NA> <NA>
## 8590 <NA> <NA>
## 8591 <NA> <NA>
## 8592 <NA> <NA>
## 8593 <NA> <NA>
## 8594 <NA> <NA>
## 8595 <NA> <NA>
## 8596 <NA> <NA>
## 8597 <NA> <NA>
## 8598 <NA> <NA>
## 8599 <NA> <NA>
## 8600 <NA> <NA>
## 8601 <NA> <NA>
## 8602 <NA> <NA>
## 8603 <NA> <NA>
## 8604 <NA> <NA>
## 8605 <NA> <NA>
## 8606 <NA> <NA>
## 8607 <NA> <NA>
## 8608 <NA> <NA>
## 8609 <NA> <NA>
## 8610 <NA> <NA>
## 8611 <NA> <NA>
## 8612 <NA> <NA>
## 8613 <NA> <NA>
## 8614 <NA> <NA>
## 8615 <NA> <NA>
## 8616 <NA> <NA>
## 8617 <NA> <NA>
## 8618 <NA> <NA>
## 8619 <NA> <NA>
## 8620 <NA> <NA>
## 8621 <NA> <NA>
## 8622 <NA> <NA>
## 8623 <NA> <NA>
## 8624 <NA> <NA>
## 8625 <NA> <NA>
## 8626 <NA> <NA>
## 8627 <NA> <NA>
## 8628 <NA> <NA>
## 8629 <NA> <NA>
## 8630 <NA> <NA>
## 8631 <NA> <NA>
## 8632 <NA> <NA>
## 8633 <NA> <NA>
## 8634 <NA> <NA>
## 8635 <NA> <NA>
## 8636 <NA> <NA>
## 8637 <NA> <NA>
## 8638 <NA> <NA>
## 8639 <NA> <NA>
## 8640 <NA> <NA>
## 8641 <NA> <NA>
## 8642 <NA> <NA>
## 8643 <NA> <NA>
## 8644 <NA> <NA>
## 8645 <NA> <NA>
## 8646 <NA> <NA>
## 8647 <NA> <NA>
## 8648 <NA> <NA>
## 8649 <NA> <NA>
## 8650 <NA> <NA>
## 8651 <NA> <NA>
## 8652 <NA> <NA>
## 8653 <NA> <NA>
## 8654 <NA> <NA>
## 8655 <NA> <NA>
## 8656 <NA> <NA>
## 8657 <NA> <NA>
## 8658 <NA> <NA>
## 8659 <NA> <NA>
## 8660 <NA> <NA>
## 8661 <NA> <NA>
## 8662 <NA> <NA>
## 8663 <NA> <NA>
## 8664 <NA> <NA>
## 8665 <NA> <NA>
## 8666 <NA> <NA>
## 8667 <NA> <NA>
## 8668 <NA> <NA>
## 8669 <NA> <NA>
## 8670 <NA> <NA>
## 8671 <NA> <NA>
## 8672 <NA> <NA>
## 8673 <NA> <NA>
## 8674 <NA> <NA>
## 8675 <NA> <NA>
## 8676 <NA> <NA>
## 8677 <NA> <NA>
## 8678 <NA> <NA>
## 8679 <NA> <NA>
## 8680 <NA> <NA>
## 8681 <NA> <NA>
## 8682 <NA> <NA>
## 8683 <NA> <NA>
## 8684 <NA> <NA>
## 8685 <NA> <NA>
## 8686 <NA> <NA>
## 8687 <NA> <NA>
## 8688 <NA> <NA>
## 8689 <NA> <NA>
## 8690 <NA> <NA>
## 8691 <NA> <NA>
## 8692 <NA> <NA>
## 8693 <NA> <NA>
## 8694 <NA> <NA>
## 8695 <NA> <NA>
## 8696 <NA> <NA>
## 8697 <NA> <NA>
## 8698 <NA> <NA>
## 8699 <NA> <NA>
## 8700 <NA> <NA>
## 8701 <NA> <NA>
## 8702 <NA> <NA>
## 8703 <NA> <NA>
## 8704 <NA> <NA>
## 8705 <NA> <NA>
## 8706 <NA> <NA>
## 8707 <NA> <NA>
## 8708 <NA> <NA>
## 8709 <NA> <NA>
## 8710 <NA> <NA>
## 8711 <NA> <NA>
## 8712 <NA> <NA>
## 8713 <NA> <NA>
## 8714 <NA> <NA>
## 8715 <NA> <NA>
## 8716 <NA> <NA>
## 8717 <NA> <NA>
## 8718 <NA> <NA>
## 8719 <NA> <NA>
## 8720 <NA> <NA>
## 8721 <NA> <NA>
## 8722 <NA> <NA>
## 8723 <NA> <NA>
## 8724 <NA> <NA>
## 8725 <NA> <NA>
## 8726 <NA> <NA>
## 8727 <NA> <NA>
## 8728 <NA> <NA>
## 8729 <NA> <NA>
## 8730 <NA> <NA>
## 8731 <NA> <NA>
## 8732 <NA> <NA>
## 8733 <NA> <NA>
## 8734 <NA> <NA>
## 8735 <NA> <NA>
## 8736 <NA> <NA>
## 8737 <NA> <NA>
## 8738 <NA> <NA>
## 8739 <NA> <NA>
## 8740 <NA> <NA>
## 8741 <NA> <NA>
## 8742 <NA> <NA>
## 8743 <NA> <NA>
## 8744 <NA> <NA>
## 8745 <NA> <NA>
## 8746 <NA> <NA>
## 8747 <NA> <NA>
## 8748 <NA> <NA>
## 8749 <NA> <NA>
## 8750 <NA> <NA>
## 8751 <NA> <NA>
## 8752 <NA> <NA>
## 8753 <NA> <NA>
## 8754 <NA> <NA>
## 8755 <NA> <NA>
## 8756 <NA> <NA>
## 8757 <NA> <NA>
## 8758 <NA> <NA>
## 8759 <NA> <NA>
## 8760 <NA> <NA>
## 8761 <NA> <NA>
## 8762 <NA> <NA>
## 8763 <NA> <NA>
## 8764 <NA> <NA>
## 8765 <NA> <NA>
## 8766 <NA> <NA>
## 8767 <NA> <NA>
## 8768 <NA> <NA>
## 8769 <NA> <NA>
## 8770 <NA> <NA>
## 8771 <NA> <NA>
## 8772 <NA> <NA>
## 8773 <NA> <NA>
## 8774 <NA> <NA>
## 8775 <NA> <NA>
## 8776 <NA> <NA>
## 8777 <NA> <NA>
## 8778 <NA> <NA>
## 8779 <NA> <NA>
## 8780 <NA> <NA>
## 8781 <NA> <NA>
## 8782 <NA> <NA>
## 8783 <NA> <NA>
## 8784 <NA> <NA>
## 8785 <NA> <NA>
## 8786 <NA> <NA>
## 8787 <NA> <NA>
## 8788 <NA> <NA>
## 8789 <NA> <NA>
## 8790 <NA> <NA>
## 8791 <NA> <NA>
## 8792 <NA> <NA>
## 8793 <NA> <NA>
## 8794 <NA> <NA>
## 8795 <NA> <NA>
## 8796 <NA> <NA>
## 8797 <NA> <NA>
## 8798 <NA> <NA>
## 8799 <NA> <NA>
## 8800 <NA> <NA>
## 8801 <NA> <NA>
## 8802 <NA> <NA>
## 8803 <NA> <NA>
## 8804 <NA> <NA>
## 8805 <NA> <NA>
## 8806 <NA> <NA>
## 8807 <NA> <NA>
## 8808 <NA> <NA>
## 8809 <NA> <NA>
## 8810 <NA> <NA>
## 8811 <NA> <NA>
## 8812 <NA> <NA>
## 8813 <NA> <NA>
## 8814 <NA> <NA>
## 8815 <NA> <NA>
## 8816 <NA> <NA>
## 8817 <NA> <NA>
## 8818 <NA> <NA>
## 8819 <NA> <NA>
## 8820 <NA> <NA>
## 8821 <NA> <NA>
## 8822 <NA> <NA>
## 8823 <NA> <NA>
## 8824 <NA> <NA>
## 8825 <NA> <NA>
## 8826 <NA> <NA>
## 8827 <NA> <NA>
## 8828 <NA> <NA>
## 8829 <NA> <NA>
## 8830 <NA> <NA>
## 8831 <NA> <NA>
## 8832 <NA> <NA>
## 8833 <NA> <NA>
## 8834 <NA> <NA>
## 8835 <NA> <NA>
## 8836 <NA> <NA>
## 8837 <NA> <NA>
## 8838 <NA> <NA>
## 8839 <NA> <NA>
## 8840 <NA> <NA>
## 8841 <NA> <NA>
## 8842 <NA> <NA>
## 8843 <NA> <NA>
## 8844 <NA> <NA>
## 8845 <NA> <NA>
## 8846 <NA> <NA>
## 8847 <NA> <NA>
## 8848 <NA> <NA>
## 8849 <NA> <NA>
## 8850 <NA> <NA>
## 8851 <NA> <NA>
## 8852 <NA> <NA>
## 8853 <NA> <NA>
## 8854 <NA> <NA>
## 8855 <NA> <NA>
## 8856 <NA> <NA>
## 8857 <NA> <NA>
## 8858 <NA> <NA>
## 8859 <NA> <NA>
## 8860 <NA> <NA>
## 8861 <NA> <NA>
## 8862 <NA> <NA>
## 8863 <NA> <NA>
## 8864 <NA> <NA>
## 8865 <NA> <NA>
## 8866 <NA> <NA>
## 8867 <NA> <NA>
## 8868 <NA> <NA>
## 8869 <NA> <NA>
## 8870 <NA> <NA>
## 8871 <NA> <NA>
## 8872 <NA> <NA>
## 8873 <NA> <NA>
## 8874 <NA> <NA>
## 8875 <NA> <NA>
## 8876 <NA> <NA>
## 8877 <NA> <NA>
## 8878 <NA> <NA>
## 8879 <NA> <NA>
## 8880 <NA> <NA>
## 8881 <NA> <NA>
## 8882 <NA> <NA>
## 8883 <NA> <NA>
## 8884 <NA> <NA>
## 8885 <NA> <NA>
## 8886 <NA> <NA>
## 8887 <NA> <NA>
## 8888 <NA> <NA>
## 8889 <NA> <NA>
## 8890 <NA> <NA>
## 8891 <NA> <NA>
## 8892 <NA> <NA>
## 8893 <NA> <NA>
## 8894 <NA> <NA>
## 8895 <NA> <NA>
## 8896 <NA> <NA>
## 8897 <NA> <NA>
## 8898 <NA> <NA>
## 8899 <NA> <NA>
## 8900 <NA> <NA>
## 8901 <NA> <NA>
## 8902 <NA> <NA>
## 8903 <NA> <NA>
## 8904 <NA> <NA>
## 8905 <NA> <NA>
## 8906 <NA> <NA>
## 8907 <NA> <NA>
## 8908 <NA> <NA>
## 8909 <NA> <NA>
## 8910 <NA> <NA>
## 8911 <NA> <NA>
## 8912 <NA> <NA>
## 8913 <NA> <NA>
## 8914 <NA> <NA>
## 8915 <NA> <NA>
## 8916 <NA> <NA>
## 8917 <NA> <NA>
## 8918 <NA> <NA>
## 8919 <NA> <NA>
## 8920 <NA> <NA>
## 8921 <NA> <NA>
## 8922 <NA> <NA>
## 8923 <NA> <NA>
## 8924 <NA> <NA>
## 8925 <NA> <NA>
## 8926 <NA> <NA>
## 8927 <NA> <NA>
## 8928 <NA> <NA>
## 8929 <NA> <NA>
## 8930 <NA> <NA>
## 8931 <NA> <NA>
## 8932 <NA> <NA>
## 8933 <NA> <NA>
## 8934 <NA> <NA>
## 8935 <NA> <NA>
## 8936 <NA> <NA>
## 8937 <NA> <NA>
## 8938 <NA> <NA>
## 8939 <NA> <NA>
## 8940 <NA> <NA>
## 8941 <NA> <NA>
## 8942 <NA> <NA>
## 8943 <NA> <NA>
## 8944 <NA> <NA>
## 8945 <NA> <NA>
## 8946 <NA> <NA>
## 8947 <NA> <NA>
## 8948 <NA> <NA>
## 8949 <NA> <NA>
## 8950 <NA> <NA>
## 8951 <NA> <NA>
## 8952 <NA> <NA>
## 8953 <NA> <NA>
## 8954 <NA> <NA>
## 8955 <NA> <NA>
## 8956 <NA> <NA>
## 8957 <NA> <NA>
## 8958 <NA> <NA>
## 8959 <NA> <NA>
## 8960 <NA> <NA>
## 8961 <NA> <NA>
## 8962 <NA> <NA>
## 8963 <NA> <NA>
## 8964 <NA> <NA>
## 8965 <NA> <NA>
## 8966 <NA> <NA>
## 8967 <NA> <NA>
## 8968 <NA> <NA>
## 8969 <NA> <NA>
## 8970 <NA> <NA>
## 8971 <NA> <NA>
## 8972 <NA> <NA>
## 8973 <NA> <NA>
## 8974 <NA> <NA>
## 8975 <NA> <NA>
## 8976 <NA> <NA>
## 8977 <NA> <NA>
## 8978 <NA> <NA>
## 8979 <NA> <NA>
## 8980 <NA> <NA>
## 8981 <NA> <NA>
## 8982 <NA> <NA>
## 8983 <NA> <NA>
## 8984 <NA> <NA>
## 8985 <NA> <NA>
## 8986 <NA> <NA>
## 8987 <NA> <NA>
## 8988 <NA> <NA>
## 8989 <NA> <NA>
## 8990 <NA> <NA>
## 8991 <NA> <NA>
## 8992 <NA> <NA>
## 8993 <NA> <NA>
## 8994 <NA> <NA>
## 8995 <NA> <NA>
## 8996 <NA> <NA>
## 8997 <NA> <NA>
## 8998 <NA> <NA>
## 8999 <NA> <NA>
## 9000 <NA> <NA>
## 9001 <NA> <NA>
## 9002 <NA> <NA>
## 9003 <NA> <NA>
## 9004 <NA> <NA>
## 9005 <NA> <NA>
## 9006 <NA> <NA>
## 9007 <NA> <NA>
## 9008 <NA> <NA>
## 9009 <NA> <NA>
## 9010 <NA> <NA>
## 9011 <NA> <NA>
## 9012 <NA> <NA>
## 9013 <NA> <NA>
## 9014 <NA> <NA>
## 9015 <NA> <NA>
## 9016 <NA> <NA>
## 9017 <NA> <NA>
## 9018 <NA> <NA>
## 9019 <NA> <NA>
## 9020 <NA> <NA>
## 9021 <NA> <NA>
## 9022 <NA> <NA>
## 9023 <NA> <NA>
## 9024 <NA> <NA>
## 9025 <NA> <NA>
## 9026 <NA> <NA>
## 9027 <NA> <NA>
## 9028 <NA> <NA>
## 9029 <NA> <NA>
## 9030 <NA> <NA>
## 9031 <NA> <NA>
## 9032 <NA> <NA>
## 9033 <NA> <NA>
## 9034 <NA> <NA>
## 9035 <NA> <NA>
## 9036 <NA> <NA>
## 9037 <NA> <NA>
## 9038 <NA> <NA>
## 9039 <NA> <NA>
## 9040 <NA> <NA>
## 9041 <NA> <NA>
## 9042 <NA> <NA>
## 9043 <NA> <NA>
## 9044 <NA> <NA>
## 9045 <NA> <NA>
## 9046 <NA> <NA>
## 9047 <NA> <NA>
## 9048 <NA> <NA>
## 9049 <NA> <NA>
## 9050 <NA> <NA>
## 9051 <NA> <NA>
## 9052 <NA> <NA>
## 9053 <NA> <NA>
## 9054 <NA> <NA>
## 9055 <NA> <NA>
## 9056 <NA> <NA>
## 9057 <NA> <NA>
## 9058 <NA> <NA>
## 9059 <NA> <NA>
## 9060 <NA> <NA>
## 9061 <NA> <NA>
## 9062 <NA> <NA>
## 9063 <NA> <NA>
## 9064 <NA> <NA>
## 9065 <NA> <NA>
## 9066 <NA> <NA>
## 9067 <NA> <NA>
## 9068 <NA> <NA>
## 9069 <NA> <NA>
## 9070 <NA> <NA>
## 9071 <NA> <NA>
## 9072 <NA> <NA>
## 9073 <NA> <NA>
## 9074 <NA> <NA>
## 9075 <NA> <NA>
## 9076 <NA> <NA>
## 9077 <NA> <NA>
## 9078 <NA> <NA>
## 9079 <NA> <NA>
## 9080 <NA> <NA>
## 9081 <NA> <NA>
## 9082 <NA> <NA>
## 9083 <NA> <NA>
## 9084 <NA> <NA>
## 9085 <NA> <NA>
## 9086 <NA> <NA>
## 9087 <NA> <NA>
## 9088 <NA> <NA>
## 9089 <NA> <NA>
## 9090 <NA> <NA>
## 9091 <NA> <NA>
## 9092 <NA> <NA>
## 9093 <NA> <NA>
## 9094 <NA> <NA>
## 9095 <NA> <NA>
## 9096 <NA> <NA>
## 9097 <NA> <NA>
## 9098 <NA> <NA>
## 9099 <NA> <NA>
## 9100 <NA> <NA>
## 9101 <NA> <NA>
## 9102 <NA> <NA>
## 9103 <NA> <NA>
## 9104 <NA> <NA>
## 9105 <NA> <NA>
## 9106 <NA> <NA>
## 9107 <NA> <NA>
## 9108 <NA> <NA>
## 9109 <NA> <NA>
## 9110 <NA> <NA>
## 9111 <NA> <NA>
## 9112 <NA> <NA>
## 9113 <NA> <NA>
## 9114 <NA> <NA>
## 9115 <NA> <NA>
## 9116 <NA> <NA>
## 9117 <NA> <NA>
## 9118 <NA> <NA>
## 9119 <NA> <NA>
## 9120 <NA> <NA>
## 9121 <NA> <NA>
## 9122 <NA> <NA>
## 9123 <NA> <NA>
## 9124 <NA> <NA>
## 9125 <NA> <NA>
## 9126 <NA> <NA>
## 9127 <NA> <NA>
## 9128 <NA> <NA>
## 9129 <NA> <NA>
## 9130 <NA> <NA>
## 9131 <NA> <NA>
## 9132 <NA> <NA>
## 9133 <NA> <NA>
## 9134 <NA> <NA>
## 9135 <NA> <NA>
## 9136 <NA> <NA>
## 9137 <NA> <NA>
## 9138 <NA> <NA>
## 9139 <NA> <NA>
## 9140 <NA> <NA>
## 9141 <NA> <NA>
## 9142 <NA> <NA>
## 9143 <NA> <NA>
## 9144 <NA> <NA>
## 9145 <NA> <NA>
## 9146 <NA> <NA>
## 9147 <NA> <NA>
## 9148 <NA> <NA>
## 9149 <NA> <NA>
## 9150 <NA> <NA>
## 9151 <NA> <NA>
## 9152 <NA> <NA>
## 9153 <NA> <NA>
## 9154 <NA> <NA>
## 9155 <NA> <NA>
## 9156 <NA> <NA>
## 9157 <NA> <NA>
## 9158 <NA> <NA>
## 9159 <NA> <NA>
## 9160 <NA> <NA>
## 9161 <NA> <NA>
## 9162 <NA> <NA>
## 9163 <NA> <NA>
## 9164 <NA> <NA>
## 9165 <NA> <NA>
## 9166 <NA> <NA>
## 9167 <NA> <NA>
## 9168 <NA> <NA>
## 9169 <NA> <NA>
## 9170 <NA> <NA>
## 9171 <NA> <NA>
## 9172 <NA> <NA>
## 9173 <NA> <NA>
## 9174 <NA> <NA>
## 9175 <NA> <NA>
## 9176 <NA> <NA>
## 9177 <NA> <NA>
## 9178 <NA> <NA>
## 9179 <NA> <NA>
## 9180 <NA> <NA>
## 9181 <NA> <NA>
## 9182 <NA> <NA>
## 9183 <NA> <NA>
## 9184 <NA> <NA>
## 9185 <NA> <NA>
## 9186 <NA> <NA>
## 9187 <NA> <NA>
## 9188 <NA> <NA>
## 9189 <NA> <NA>
## 9190 <NA> <NA>
## 9191 <NA> <NA>
## 9192 <NA> <NA>
## 9193 <NA> <NA>
## 9194 <NA> <NA>
## 9195 <NA> <NA>
## 9196 <NA> <NA>
## 9197 <NA> <NA>
## 9198 <NA> <NA>
## 9199 <NA> <NA>
## 9200 <NA> <NA>
## 9201 <NA> <NA>
## 9202 <NA> <NA>
## 9203 <NA> <NA>
## 9204 <NA> <NA>
## 9205 <NA> <NA>
## 9206 <NA> <NA>
## 9207 <NA> <NA>
## 9208 <NA> <NA>
## 9209 <NA> <NA>
## 9210 <NA> <NA>
## 9211 <NA> <NA>
## 9212 <NA> <NA>
## 9213 <NA> <NA>
## 9214 <NA> <NA>
## 9215 <NA> <NA>
## 9216 <NA> <NA>
## 9217 <NA> <NA>
## 9218 <NA> <NA>
## 9219 <NA> <NA>
## 9220 <NA> <NA>
## 9221 <NA> <NA>
## 9222 <NA> <NA>
## 9223 <NA> <NA>
## 9224 <NA> <NA>
## 9225 <NA> <NA>
## 9226 <NA> <NA>
## 9227 <NA> <NA>
## 9228 <NA> <NA>
## 9229 <NA> <NA>
## 9230 <NA> <NA>
## 9231 <NA> <NA>
## 9232 <NA> <NA>
## 9233 <NA> <NA>
## 9234 <NA> <NA>
## 9235 <NA> <NA>
## 9236 <NA> <NA>
## 9237 <NA> <NA>
## 9238 <NA> <NA>
## 9239 <NA> <NA>
## 9240 <NA> <NA>
## 9241 <NA> <NA>
## 9242 <NA> <NA>
## 9243 <NA> <NA>
## 9244 <NA> <NA>
## 9245 <NA> <NA>
## 9246 <NA> <NA>
## 9247 <NA> <NA>
## 9248 <NA> <NA>
## 9249 <NA> <NA>
## 9250 <NA> <NA>
## 9251 <NA> <NA>
## 9252 <NA> <NA>
## 9253 <NA> <NA>
## 9254 <NA> <NA>
## 9255 <NA> <NA>
## 9256 <NA> <NA>
## 9257 <NA> <NA>
## 9258 <NA> <NA>
## 9259 <NA> <NA>
## 9260 <NA> <NA>
## 9261 <NA> <NA>
## 9262 <NA> <NA>
## 9263 <NA> <NA>
## 9264 <NA> <NA>
## 9265 <NA> <NA>
## 9266 <NA> <NA>
## 9267 <NA> <NA>
## 9268 <NA> <NA>
## 9269 <NA> <NA>
## 9270 <NA> <NA>
## 9271 <NA> <NA>
## 9272 <NA> <NA>
## 9273 <NA> <NA>
## 9274 <NA> <NA>
## 9275 <NA> <NA>
## 9276 <NA> <NA>
## 9277 <NA> <NA>
## 9278 <NA> <NA>
## 9279 <NA> <NA>
## 9280 <NA> <NA>
## 9281 <NA> <NA>
## 9282 <NA> <NA>
## 9283 <NA> <NA>
## 9284 <NA> <NA>
## 9285 <NA> <NA>
## 9286 <NA> <NA>
## 9287 <NA> <NA>
## 9288 <NA> <NA>
## 9289 <NA> <NA>
## 9290 <NA> <NA>
## 9291 <NA> <NA>
## 9292 <NA> <NA>
## 9293 <NA> <NA>
## 9294 <NA> <NA>
## 9295 <NA> <NA>
## 9296 <NA> <NA>
## 9297 <NA> <NA>
## 9298 <NA> <NA>
## 9299 <NA> <NA>
## 9300 <NA> <NA>
## 9301 <NA> <NA>
## 9302 <NA> <NA>
## 9303 <NA> <NA>
## 9304 <NA> <NA>
## 9305 <NA> <NA>
## 9306 <NA> <NA>
## 9307 <NA> <NA>
## 9308 <NA> <NA>
## 9309 <NA> <NA>
## 9310 <NA> <NA>
## 9311 <NA> <NA>
## 9312 <NA> <NA>
## 9313 <NA> <NA>
## 9314 <NA> <NA>
## 9315 <NA> <NA>
## 9316 <NA> <NA>
## 9317 <NA> <NA>
## 9318 <NA> <NA>
## 9319 <NA> <NA>
## 9320 <NA> <NA>
## 9321 <NA> <NA>
## 9322 <NA> <NA>
## 9323 <NA> <NA>
## 9324 <NA> <NA>
## 9325 <NA> <NA>
## 9326 <NA> <NA>
## 9327 <NA> <NA>
## 9328 <NA> <NA>
## 9329 <NA> <NA>
## 9330 <NA> <NA>
## 9331 <NA> <NA>
## 9332 <NA> <NA>
## 9333 <NA> <NA>
## 9334 <NA> <NA>
## 9335 <NA> <NA>
## 9336 <NA> <NA>
## 9337 <NA> <NA>
## 9338 <NA> <NA>
## 9339 <NA> <NA>
## 9340 <NA> <NA>
## 9341 <NA> <NA>
## 9342 <NA> <NA>
## 9343 <NA> <NA>
## 9344 <NA> <NA>
## 9345 <NA> <NA>
## 9346 <NA> <NA>
## 9347 <NA> <NA>
## 9348 <NA> <NA>
## 9349 <NA> <NA>
## 9350 <NA> <NA>
## 9351 <NA> <NA>
## 9352 <NA> <NA>
## 9353 <NA> <NA>
## 9354 <NA> <NA>
## 9355 <NA> <NA>
## 9356 <NA> <NA>
## 9357 <NA> <NA>
## 9358 <NA> <NA>
## 9359 <NA> <NA>
## 9360 <NA> <NA>
## 9361 <NA> <NA>
## 9362 <NA> <NA>
## 9363 <NA> <NA>
## 9364 <NA> <NA>
## 9365 <NA> <NA>
## 9366 <NA> <NA>
## 9367 <NA> <NA>
## 9368 <NA> <NA>
## 9369 <NA> <NA>
## 9370 <NA> <NA>
## 9371 <NA> <NA>
## 9372 <NA> <NA>
## 9373 <NA> <NA>
## 9374 <NA> <NA>
## 9375 <NA> <NA>
## 9376 <NA> <NA>
## 9377 <NA> <NA>
## 9378 <NA> <NA>
## 9379 <NA> <NA>
## 9380 <NA> <NA>
## 9381 <NA> <NA>
## 9382 <NA> <NA>
## 9383 <NA> <NA>
## 9384 <NA> <NA>
## 9385 <NA> <NA>
## 9386 <NA> <NA>
## 9387 <NA> <NA>
## 9388 <NA> <NA>
## 9389 <NA> <NA>
## 9390 <NA> <NA>
## 9391 <NA> <NA>
## 9392 <NA> <NA>
## 9393 <NA> <NA>
## 9394 <NA> <NA>
## 9395 <NA> <NA>
## 9396 <NA> <NA>
## 9397 <NA> <NA>
## 9398 <NA> <NA>
## 9399 <NA> <NA>
## 9400 <NA> <NA>
## 9401 <NA> <NA>
## 9402 <NA> <NA>
## 9403 <NA> <NA>
## 9404 <NA> <NA>
## 9405 <NA> <NA>
## 9406 <NA> <NA>
## 9407 <NA> <NA>
## 9408 <NA> <NA>
## 9409 <NA> <NA>
## 9410 <NA> <NA>
## 9411 <NA> <NA>
## 9412 <NA> <NA>
## 9413 <NA> <NA>
## 9414 <NA> <NA>
## 9415 <NA> <NA>
## 9416 <NA> <NA>
## 9417 <NA> <NA>
## 9418 <NA> <NA>
## 9419 <NA> <NA>
## 9420 <NA> <NA>
## 9421 <NA> <NA>
## 9422 <NA> <NA>
## 9423 <NA> <NA>
## 9424 <NA> <NA>
## 9425 <NA> <NA>
## 9426 <NA> <NA>
## 9427 <NA> <NA>
## 9428 <NA> <NA>
## 9429 <NA> <NA>
## 9430 <NA> <NA>
## 9431 <NA> <NA>
## 9432 <NA> <NA>
## 9433 <NA> <NA>
## 9434 <NA> <NA>
## 9435 <NA> <NA>
## 9436 <NA> <NA>
## 9437 <NA> <NA>
## 9438 <NA> <NA>
## 9439 <NA> <NA>
## 9440 <NA> <NA>
## 9441 <NA> <NA>
## 9442 <NA> <NA>
## 9443 <NA> <NA>
## 9444 <NA> <NA>
## 9445 <NA> <NA>
## 9446 <NA> <NA>
## 9447 <NA> <NA>
## 9448 <NA> <NA>
## 9449 <NA> <NA>
## 9450 <NA> <NA>
## 9451 <NA> <NA>
## 9452 <NA> <NA>
## 9453 <NA> <NA>
## 9454 <NA> <NA>
## 9455 <NA> <NA>
## 9456 <NA> <NA>
## 9457 <NA> <NA>
## 9458 <NA> <NA>
## 9459 <NA> <NA>
## 9460 <NA> <NA>
## 9461 <NA> <NA>
## 9462 <NA> <NA>
## 9463 <NA> <NA>
## 9464 <NA> <NA>
## 9465 <NA> <NA>
## 9466 <NA> <NA>
## 9467 <NA> <NA>
## 9468 <NA> <NA>
## 9469 <NA> <NA>
## 9470 <NA> <NA>
## 9471 <NA> <NA>
## 9472 <NA> <NA>
## 9473 <NA> <NA>
## 9474 <NA> <NA>
## 9475 <NA> <NA>
## 9476 <NA> <NA>
## 9477 <NA> <NA>
## 9478 <NA> <NA>
## 9479 <NA> <NA>
## 9480 <NA> <NA>
## 9481 <NA> <NA>
## 9482 <NA> <NA>
## 9483 <NA> <NA>
## 9484 <NA> <NA>
## 9485 <NA> <NA>
## 9486 <NA> <NA>
## 9487 <NA> <NA>
## 9488 <NA> <NA>
## 9489 <NA> <NA>
## 9490 <NA> <NA>
## 9491 <NA> <NA>
## 9492 <NA> <NA>
## 9493 <NA> <NA>
## 9494 <NA> <NA>
## 9495 <NA> <NA>
## 9496 <NA> <NA>
## 9497 <NA> <NA>
## 9498 <NA> <NA>
## 9499 <NA> <NA>
## 9500 <NA> <NA>
## 9501 <NA> <NA>
## 9502 <NA> <NA>
## 9503 <NA> <NA>
## 9504 <NA> <NA>
## 9505 <NA> <NA>
## 9506 <NA> <NA>
## 9507 <NA> <NA>
## 9508 <NA> <NA>
## 9509 <NA> <NA>
## 9510 <NA> <NA>
## 9511 <NA> <NA>
## 9512 <NA> <NA>
## 9513 <NA> <NA>
## 9514 <NA> <NA>
## 9515 <NA> <NA>
## 9516 <NA> <NA>
## 9517 <NA> <NA>
## 9518 <NA> <NA>
## 9519 <NA> <NA>
## 9520 <NA> <NA>
## 9521 <NA> <NA>
## 9522 <NA> <NA>
## 9523 <NA> <NA>
## 9524 <NA> <NA>
## 9525 <NA> <NA>
## 9526 <NA> <NA>
## 9527 <NA> <NA>
## 9528 <NA> <NA>
## 9529 <NA> <NA>
## 9530 <NA> <NA>
## 9531 <NA> <NA>
## 9532 <NA> <NA>
## 9533 <NA> <NA>
## 9534 <NA> <NA>
## 9535 <NA> <NA>
## 9536 <NA> <NA>
## 9537 <NA> <NA>
## 9538 <NA> <NA>
## 9539 <NA> <NA>
## 9540 <NA> <NA>
## 9541 <NA> <NA>
## 9542 <NA> <NA>
## 9543 <NA> <NA>
## 9544 <NA> <NA>
## 9545 <NA> <NA>
## 9546 <NA> <NA>
## 9547 <NA> <NA>
## 9548 <NA> <NA>
## 9549 <NA> <NA>
## 9550 <NA> <NA>
## 9551 <NA> <NA>
## 9552 <NA> <NA>
## 9553 <NA> <NA>
## 9554 <NA> <NA>
## 9555 <NA> <NA>
## 9556 <NA> <NA>
## 9557 <NA> <NA>
## 9558 <NA> <NA>
## 9559 <NA> <NA>
## 9560 <NA> <NA>
## 9561 <NA> <NA>
## 9562 <NA> <NA>
## 9563 <NA> <NA>
## 9564 <NA> <NA>
## 9565 <NA> <NA>
## 9566 <NA> <NA>
## 9567 <NA> <NA>
## 9568 <NA> <NA>
## 9569 <NA> <NA>
## 9570 <NA> <NA>
## 9571 <NA> <NA>
## 9572 <NA> <NA>
## 9573 <NA> <NA>
## 9574 <NA> <NA>
## 9575 <NA> <NA>
## 9576 <NA> <NA>
## 9577 <NA> <NA>
## 9578 <NA> <NA>
## 9579 <NA> <NA>
## 9580 <NA> <NA>
## 9581 <NA> <NA>
## 9582 <NA> <NA>
## 9583 <NA> <NA>
## 9584 <NA> <NA>
## 9585 <NA> <NA>
## 9586 <NA> <NA>
## 9587 <NA> <NA>
## 9588 <NA> <NA>
## 9589 <NA> <NA>
## 9590 <NA> <NA>
## 9591 <NA> <NA>
## 9592 <NA> <NA>
## 9593 <NA> <NA>
## 9594 <NA> <NA>
## 9595 <NA> <NA>
## 9596 <NA> <NA>
## 9597 <NA> <NA>
## 9598 <NA> <NA>
## 9599 <NA> <NA>
## 9600 <NA> <NA>
## 9601 <NA> <NA>
## 9602 <NA> <NA>
## 9603 <NA> <NA>
## 9604 <NA> <NA>
## 9605 <NA> <NA>
## 9606 <NA> <NA>
## 9607 <NA> <NA>
## 9608 <NA> <NA>
## 9609 <NA> <NA>
## 9610 <NA> <NA>
## 9611 <NA> <NA>
## 9612 <NA> <NA>
## 9613 <NA> <NA>
## 9614 <NA> <NA>
## 9615 <NA> <NA>
## 9616 <NA> <NA>
## 9617 <NA> <NA>
## 9618 <NA> <NA>
## 9619 <NA> <NA>
## 9620 <NA> <NA>
## 9621 <NA> <NA>
## 9622 <NA> <NA>
## 9623 <NA> <NA>
## 9624 <NA> <NA>
## 9625 <NA> <NA>
## 9626 <NA> <NA>
## 9627 <NA> <NA>
## 9628 <NA> <NA>
## 9629 <NA> <NA>
## 9630 <NA> <NA>
## 9631 <NA> <NA>
## 9632 <NA> <NA>
## 9633 <NA> <NA>
## 9634 <NA> <NA>
## 9635 <NA> <NA>
## 9636 <NA> <NA>
## 9637 <NA> <NA>
## 9638 <NA> <NA>
## 9639 <NA> <NA>
## 9640 <NA> <NA>
## 9641 <NA> <NA>
## 9642 <NA> <NA>
## 9643 <NA> <NA>
## 9644 <NA> <NA>
## 9645 <NA> <NA>
## 9646 <NA> <NA>
## 9647 <NA> <NA>
## 9648 <NA> <NA>
## 9649 <NA> <NA>
## 9650 <NA> <NA>
## 9651 <NA> <NA>
## 9652 <NA> <NA>
## 9653 <NA> <NA>
## 9654 <NA> <NA>
## 9655 <NA> <NA>
## 9656 <NA> <NA>
## 9657 <NA> <NA>
## 9658 <NA> <NA>
## 9659 <NA> <NA>
## 9660 <NA> <NA>
## 9661 <NA> <NA>
## 9662 <NA> <NA>
## 9663 <NA> <NA>
## 9664 <NA> <NA>
## 9665 <NA> <NA>
## 9666 <NA> <NA>
## 9667 <NA> <NA>
## 9668 <NA> <NA>
## 9669 <NA> <NA>
## 9670 <NA> <NA>
## 9671 <NA> <NA>
## 9672 <NA> <NA>
## 9673 <NA> <NA>
## 9674 <NA> <NA>
## 9675 <NA> <NA>
## 9676 <NA> <NA>
## 9677 <NA> <NA>
## 9678 <NA> <NA>
## 9679 <NA> <NA>
## 9680 <NA> <NA>
## 9681 <NA> <NA>
## 9682 <NA> <NA>
## 9683 <NA> <NA>
## 9684 <NA> <NA>
## 9685 <NA> <NA>
## 9686 <NA> <NA>
## 9687 <NA> <NA>
## 9688 <NA> <NA>
## 9689 <NA> <NA>
## 9690 <NA> <NA>
## 9691 <NA> <NA>
## 9692 <NA> <NA>
## 9693 <NA> <NA>
## 9694 <NA> <NA>
## 9695 <NA> <NA>
## 9696 <NA> <NA>
## 9697 <NA> <NA>
## 9698 <NA> <NA>
## 9699 <NA> <NA>
## 9700 <NA> <NA>
## 9701 <NA> <NA>
## 9702 <NA> <NA>
## 9703 <NA> <NA>
## 9704 <NA> <NA>
## 9705 <NA> <NA>
## 9706 <NA> <NA>
## 9707 <NA> <NA>
## 9708 <NA> <NA>
## 9709 <NA> <NA>
## 9710 <NA> <NA>
## 9711 <NA> <NA>
## 9712 <NA> <NA>
## 9713 <NA> <NA>
## 9714 <NA> <NA>
## 9715 <NA> <NA>
## 9716 <NA> <NA>
## 9717 <NA> <NA>
## 9718 <NA> <NA>
## 9719 <NA> <NA>
## 9720 <NA> <NA>
## 9721 <NA> <NA>
## 9722 <NA> <NA>
## 9723 <NA> <NA>
## 9724 <NA> <NA>
## 9725 <NA> <NA>
## 9726 <NA> <NA>
## 9727 <NA> <NA>
## 9728 <NA> <NA>
## 9729 <NA> <NA>
## 9730 <NA> <NA>
## 9731 <NA> <NA>
## 9732 <NA> <NA>
## 9733 <NA> <NA>
## 9734 <NA> <NA>
## 9735 <NA> <NA>
## 9736 <NA> <NA>
## 9737 <NA> <NA>
## 9738 <NA> <NA>
## 9739 <NA> <NA>
## 9740 <NA> <NA>
## 9741 <NA> <NA>
## 9742 <NA> <NA>
## 9743 <NA> <NA>
## 9744 <NA> <NA>
## 9745 <NA> <NA>
## 9746 <NA> <NA>
## 9747 <NA> <NA>
## 9748 <NA> <NA>
## 9749 <NA> <NA>
## 9750 <NA> <NA>
## 9751 <NA> <NA>
## 9752 <NA> <NA>
## 9753 <NA> <NA>
## 9754 <NA> <NA>
## 9755 <NA> <NA>
## 9756 <NA> <NA>
## 9757 <NA> <NA>
## 9758 <NA> <NA>
## 9759 <NA> <NA>
## 9760 <NA> <NA>
## 9761 <NA> <NA>
## 9762 <NA> <NA>
## 9763 <NA> <NA>
## 9764 <NA> <NA>
## 9765 <NA> <NA>
## 9766 <NA> <NA>
## 9767 <NA> <NA>
## 9768 <NA> <NA>
## 9769 <NA> <NA>
## 9770 <NA> <NA>
## 9771 <NA> <NA>
## 9772 <NA> <NA>
## 9773 <NA> <NA>
## 9774 <NA> <NA>
## 9775 <NA> <NA>
## 9776 <NA> <NA>
## 9777 <NA> <NA>
## 9778 <NA> <NA>
## 9779 <NA> <NA>
## 9780 <NA> <NA>
## 9781 <NA> <NA>
## 9782 <NA> <NA>
## 9783 <NA> <NA>
## 9784 <NA> <NA>
## 9785 <NA> <NA>
## 9786 <NA> <NA>
## 9787 <NA> <NA>
## 9788 <NA> <NA>
## 9789 <NA> <NA>
## 9790 <NA> <NA>
## 9791 <NA> <NA>
## 9792 <NA> <NA>
## 9793 <NA> <NA>
## 9794 <NA> <NA>
## 9795 <NA> <NA>
## 9796 <NA> <NA>
## 9797 <NA> <NA>
## 9798 <NA> <NA>
## 9799 <NA> <NA>
## 9800 <NA> <NA>
## 9801 <NA> <NA>
## 9802 <NA> <NA>
## 9803 <NA> <NA>
## 9804 <NA> <NA>
## 9805 <NA> <NA>
## 9806 <NA> <NA>
## 9807 <NA> <NA>
## 9808 <NA> <NA>
## 9809 <NA> <NA>
## 9810 <NA> <NA>
## 9811 <NA> <NA>
## 9812 <NA> <NA>
## 9813 <NA> <NA>
## 9814 <NA> <NA>
## 9815 <NA> <NA>
## 9816 <NA> <NA>
## 9817 <NA> <NA>
## 9818 <NA> <NA>
## 9819 <NA> <NA>
## 9820 <NA> <NA>
## 9821 <NA> <NA>
## 9822 <NA> <NA>
## 9823 <NA> <NA>
## 9824 <NA> <NA>
## 9825 <NA> <NA>
## 9826 <NA> <NA>
## 9827 <NA> <NA>
## 9828 <NA> <NA>
## 9829 <NA> <NA>
## 9830 <NA> <NA>
## 9831 <NA> <NA>
## 9832 <NA> <NA>
## 9833 <NA> <NA>
## 9834 <NA> <NA>
## 9835 <NA> <NA>
## 9836 <NA> <NA>
## 9837 <NA> <NA>
## 9838 <NA> <NA>
## 9839 <NA> <NA>
## 9840 <NA> <NA>
## 9841 <NA> <NA>
## 9842 <NA> <NA>
## 9843 <NA> <NA>
## 9844 <NA> <NA>
## 9845 <NA> <NA>
## 9846 <NA> <NA>
## 9847 <NA> <NA>
## 9848 <NA> <NA>
## 9849 <NA> <NA>
## 9850 <NA> <NA>
## 9851 <NA> <NA>
## 9852 <NA> <NA>
## 9853 <NA> <NA>
## 9854 <NA> <NA>
## 9855 <NA> <NA>
## 9856 <NA> <NA>
## 9857 <NA> <NA>
## 9858 <NA> <NA>
## 9859 <NA> <NA>
## 9860 <NA> <NA>
## 9861 <NA> <NA>
## 9862 <NA> <NA>
## 9863 <NA> <NA>
## 9864 <NA> <NA>
## 9865 <NA> <NA>
## 9866 <NA> <NA>
## 9867 <NA> <NA>
## 9868 <NA> <NA>
## 9869 <NA> <NA>
## 9870 <NA> <NA>
## 9871 <NA> <NA>
## 9872 <NA> <NA>
## 9873 <NA> <NA>
## 9874 <NA> <NA>
## 9875 <NA> <NA>
## 9876 <NA> <NA>
## 9877 <NA> <NA>
## 9878 <NA> <NA>
## 9879 <NA> <NA>
## 9880 <NA> <NA>
## 9881 <NA> <NA>
## 9882 <NA> <NA>
## 9883 <NA> <NA>
## 9884 <NA> <NA>
## 9885 <NA> <NA>
## 9886 <NA> <NA>
## 9887 <NA> <NA>
## 9888 <NA> <NA>
## 9889 <NA> <NA>
## 9890 <NA> <NA>
## 9891 <NA> <NA>
## 9892 <NA> <NA>
## 9893 <NA> <NA>
## 9894 <NA> <NA>
## 9895 <NA> <NA>
## 9896 <NA> <NA>
## 9897 <NA> <NA>
## 9898 <NA> <NA>
## 9899 <NA> <NA>
## 9900 <NA> <NA>
## 9901 <NA> <NA>
## 9902 <NA> <NA>
## 9903 <NA> <NA>
## 9904 <NA> <NA>
## 9905 <NA> <NA>
## 9906 <NA> <NA>
## 9907 <NA> <NA>
## 9908 <NA> <NA>
## 9909 <NA> <NA>
## 9910 <NA> <NA>
## 9911 <NA> <NA>
## 9912 <NA> <NA>
## 9913 <NA> <NA>
## 9914 <NA> <NA>
## 9915 <NA> <NA>
## 9916 <NA> <NA>
## 9917 <NA> <NA>
## 9918 <NA> <NA>
## 9919 <NA> <NA>
## 9920 <NA> <NA>
## 9921 <NA> <NA>
## 9922 <NA> <NA>
## 9923 <NA> <NA>
## 9924 <NA> <NA>
## 9925 <NA> <NA>
## 9926 <NA> <NA>
## 9927 <NA> <NA>
## 9928 <NA> <NA>
## 9929 <NA> <NA>
## 9930 <NA> <NA>
## 9931 <NA> <NA>
## 9932 <NA> <NA>
## 9933 <NA> <NA>
## 9934 <NA> <NA>
## 9935 <NA> <NA>
## 9936 <NA> <NA>
## 9937 <NA> <NA>
## 9938 <NA> <NA>
## 9939 <NA> <NA>
## 9940 <NA> <NA>
## 9941 <NA> <NA>
## 9942 <NA> <NA>
## 9943 <NA> <NA>
## 9944 <NA> <NA>
## 9945 <NA> <NA>
## 9946 <NA> <NA>
## 9947 <NA> <NA>
## 9948 <NA> <NA>
## 9949 <NA> <NA>
## 9950 <NA> <NA>
## 9951 <NA> <NA>
## 9952 <NA> <NA>
## 9953 <NA> <NA>
## 9954 <NA> <NA>
## 9955 <NA> <NA>
## 9956 <NA> <NA>
## 9957 <NA> <NA>
## 9958 <NA> <NA>
## 9959 <NA> <NA>
## 9960 <NA> <NA>
## 9961 <NA> <NA>
## 9962 <NA> <NA>
## 9963 <NA> <NA>
## 9964 <NA> <NA>
## 9965 <NA> <NA>
## 9966 <NA> <NA>
## 9967 <NA> <NA>
## 9968 <NA> <NA>
## 9969 <NA> <NA>
## 9970 <NA> <NA>
## 9971 <NA> <NA>
## 9972 <NA> <NA>
## 9973 <NA> <NA>
## 9974 <NA> <NA>
## 9975 <NA> <NA>
## 9976 <NA> <NA>
## 9977 <NA> <NA>
## 9978 <NA> <NA>
## 9979 <NA> <NA>
## 9980 <NA> <NA>
## 9981 <NA> <NA>
## 9982 <NA> <NA>
## 9983 <NA> <NA>
## 9984 <NA> <NA>
## 9985 <NA> <NA>
## 9986 <NA> <NA>
## 9987 <NA> <NA>
## 9988 <NA> <NA>
## 9989 <NA> <NA>
## 9990 <NA> <NA>
## 9991 <NA> <NA>
## 9992 <NA> <NA>
## 9993 <NA> <NA>
## 9994 <NA> <NA>
## 9995 <NA> <NA>
## 9996 <NA> <NA>
## 9997 <NA> <NA>
## 9998 <NA> <NA>
## 9999 <NA> <NA>
## 10000 <NA> <NA>
## 10001 <NA> <NA>
## 10002 <NA> <NA>
## 10003 <NA> <NA>
## 10004 <NA> <NA>
## 10005 <NA> <NA>
## 10006 <NA> <NA>
## 10007 <NA> <NA>
## 10008 <NA> <NA>
## 10009 <NA> <NA>
## 10010 <NA> <NA>
## 10011 <NA> <NA>
## 10012 <NA> <NA>
## 10013 <NA> <NA>
## 10014 <NA> <NA>
## 10015 <NA> <NA>
## 10016 <NA> <NA>
## 10017 <NA> <NA>
## 10018 <NA> <NA>
## 10019 <NA> <NA>
## 10020 <NA> <NA>
## 10021 <NA> <NA>
## 10022 <NA> <NA>
## 10023 <NA> <NA>
## 10024 <NA> <NA>
## 10025 <NA> <NA>
## 10026 <NA> <NA>
## 10027 <NA> <NA>
## 10028 <NA> <NA>
## 10029 <NA> <NA>
## 10030 <NA> <NA>
## 10031 <NA> <NA>
## 10032 <NA> <NA>
## 10033 <NA> <NA>
## 10034 <NA> <NA>
## 10035 <NA> <NA>
## 10036 <NA> <NA>
## 10037 <NA> <NA>
## 10038 <NA> <NA>
## 10039 <NA> <NA>
## 10040 <NA> <NA>
## 10041 <NA> <NA>
## 10042 <NA> <NA>
## 10043 <NA> <NA>
## 10044 <NA> <NA>
## 10045 <NA> <NA>
## 10046 <NA> <NA>
## 10047 <NA> <NA>
## 10048 <NA> <NA>
## 10049 <NA> <NA>
## 10050 <NA> <NA>
## 10051 <NA> <NA>
## 10052 <NA> <NA>
## 10053 <NA> <NA>
## 10054 <NA> <NA>
## 10055 <NA> <NA>
## 10056 <NA> <NA>
## 10057 <NA> <NA>
## 10058 <NA> <NA>
## 10059 <NA> <NA>
## 10060 <NA> <NA>
## 10061 <NA> <NA>
## 10062 <NA> <NA>
## 10063 <NA> <NA>
## 10064 <NA> <NA>
## 10065 <NA> <NA>
## 10066 <NA> <NA>
## 10067 <NA> <NA>
## 10068 <NA> <NA>
## 10069 <NA> <NA>
## 10070 <NA> <NA>
## 10071 <NA> <NA>
## 10072 <NA> <NA>
## 10073 <NA> <NA>
## 10074 <NA> <NA>
## 10075 <NA> <NA>
## 10076 <NA> <NA>
## 10077 <NA> <NA>
## 10078 <NA> <NA>
## 10079 <NA> <NA>
## 10080 <NA> <NA>
## 10081 <NA> <NA>
## 10082 <NA> <NA>
## 10083 <NA> <NA>
## 10084 <NA> <NA>
## 10085 <NA> <NA>
## 10086 <NA> <NA>
## 10087 <NA> <NA>
## 10088 <NA> <NA>
## 10089 <NA> <NA>
## 10090 <NA> <NA>
## 10091 <NA> <NA>
## 10092 <NA> <NA>
## 10093 <NA> <NA>
## 10094 <NA> <NA>
## 10095 <NA> <NA>
## 10096 <NA> <NA>
## 10097 <NA> <NA>
## 10098 <NA> <NA>
## 10099 <NA> <NA>
## 10100 <NA> <NA>
## 10101 <NA> <NA>
## 10102 <NA> <NA>
## 10103 <NA> <NA>
## 10104 <NA> <NA>
## 10105 <NA> <NA>
## 10106 <NA> <NA>
## 10107 <NA> <NA>
## 10108 <NA> <NA>
## 10109 <NA> <NA>
## 10110 <NA> <NA>
## 10111 <NA> <NA>
## 10112 <NA> <NA>
## 10113 <NA> <NA>
## 10114 <NA> <NA>
## 10115 <NA> <NA>
## 10116 <NA> <NA>
## 10117 <NA> <NA>
## 10118 <NA> <NA>
## 10119 <NA> <NA>
## 10120 <NA> <NA>
## 10121 <NA> <NA>
## 10122 <NA> <NA>
## 10123 <NA> <NA>
## 10124 <NA> <NA>
## 10125 <NA> <NA>
## 10126 <NA> <NA>
## 10127 <NA> <NA>
## 10128 <NA> <NA>
## 10129 <NA> <NA>
## 10130 <NA> <NA>
## 10131 <NA> <NA>
## 10132 <NA> <NA>
## 10133 <NA> <NA>
## 10134 <NA> <NA>
## 10135 <NA> <NA>
## 10136 <NA> <NA>
## 10137 <NA> <NA>
## 10138 <NA> <NA>
## 10139 <NA> <NA>
## 10140 <NA> <NA>
## 10141 <NA> <NA>
## 10142 <NA> <NA>
## 10143 <NA> <NA>
## 10144 <NA> <NA>
## 10145 <NA> <NA>
## 10146 <NA> <NA>
## 10147 <NA> <NA>
## 10148 <NA> <NA>
## 10149 <NA> <NA>
## 10150 <NA> <NA>
## 10151 <NA> <NA>
## 10152 <NA> <NA>
## 10153 <NA> <NA>
## 10154 <NA> <NA>
## 10155 <NA> <NA>
## 10156 <NA> <NA>
## 10157 <NA> <NA>
## 10158 <NA> <NA>
## 10159 <NA> <NA>
## 10160 <NA> <NA>
## 10161 <NA> <NA>
## 10162 <NA> <NA>
## 10163 <NA> <NA>
## 10164 <NA> <NA>
## 10165 <NA> <NA>
## 10166 <NA> <NA>
## 10167 <NA> <NA>
## 10168 <NA> <NA>
## 10169 <NA> <NA>
## 10170 <NA> <NA>
## 10171 <NA> <NA>
## 10172 <NA> <NA>
## 10173 <NA> <NA>
## 10174 <NA> <NA>
## 10175 <NA> <NA>
## 10176 <NA> <NA>
## 10177 <NA> <NA>
## 10178 <NA> <NA>
## 10179 <NA> <NA>
## 10180 <NA> <NA>
## 10181 <NA> <NA>
## 10182 <NA> <NA>
## 10183 <NA> <NA>
## 10184 <NA> <NA>
## 10185 <NA> <NA>
## 10186 <NA> <NA>
## 10187 <NA> <NA>
## 10188 <NA> <NA>
## 10189 <NA> <NA>
## 10190 <NA> <NA>
## 10191 <NA> <NA>
## 10192 <NA> <NA>
## 10193 <NA> <NA>
## 10194 <NA> <NA>
## 10195 <NA> <NA>
## 10196 <NA> <NA>
## 10197 <NA> <NA>
## 10198 <NA> <NA>
## 10199 <NA> <NA>
## 10200 <NA> <NA>
## 10201 <NA> <NA>
## 10202 <NA> <NA>
## 10203 <NA> <NA>
## 10204 <NA> <NA>
## 10205 <NA> <NA>
## 10206 <NA> <NA>
## 10207 <NA> <NA>
## 10208 <NA> <NA>
## 10209 <NA> <NA>
## 10210 <NA> <NA>
## 10211 <NA> <NA>
## 10212 <NA> <NA>
## 10213 <NA> <NA>
## 10214 <NA> <NA>
## 10215 <NA> <NA>
## 10216 <NA> <NA>
## 10217 <NA> <NA>
## 10218 <NA> <NA>
## 10219 <NA> <NA>
## 10220 <NA> <NA>
## 10221 <NA> <NA>
## 10222 <NA> <NA>
## 10223 <NA> <NA>
## 10224 <NA> <NA>
## 10225 <NA> <NA>
## 10226 <NA> <NA>
## 10227 <NA> <NA>
## 10228 <NA> <NA>
## 10229 <NA> <NA>
## 10230 <NA> <NA>
## 10231 <NA> <NA>
## 10232 <NA> <NA>
## 10233 <NA> <NA>
## 10234 <NA> <NA>
## 10235 <NA> <NA>
## 10236 <NA> <NA>
## 10237 <NA> <NA>
## 10238 <NA> <NA>
## 10239 <NA> <NA>
## 10240 <NA> <NA>
## 10241 <NA> <NA>
## 10242 <NA> <NA>
## 10243 <NA> <NA>
## 10244 <NA> <NA>
## 10245 <NA> <NA>
## 10246 <NA> <NA>
## 10247 <NA> <NA>
## 10248 <NA> <NA>
## 10249 <NA> <NA>
## 10250 <NA> <NA>
## 10251 <NA> <NA>
## 10252 <NA> <NA>
## 10253 <NA> <NA>
## 10254 <NA> <NA>
## 10255 <NA> <NA>
## 10256 <NA> <NA>
## 10257 <NA> <NA>
## 10258 <NA> <NA>
## 10259 <NA> <NA>
## 10260 <NA> <NA>
## 10261 <NA> <NA>
## 10262 <NA> <NA>
## 10263 <NA> <NA>
## 10264 <NA> <NA>
## 10265 <NA> <NA>
## 10266 <NA> <NA>
## 10267 <NA> <NA>
## 10268 <NA> <NA>
## 10269 <NA> <NA>
## 10270 <NA> <NA>
## 10271 <NA> <NA>
## 10272 <NA> <NA>
## 10273 <NA> <NA>
## 10274 <NA> <NA>
## 10275 <NA> <NA>
## 10276 <NA> <NA>
## 10277 <NA> <NA>
## 10278 <NA> <NA>
## 10279 <NA> <NA>
## 10280 <NA> <NA>
## 10281 <NA> <NA>
## 10282 <NA> <NA>
## 10283 <NA> <NA>
## 10284 <NA> <NA>
## 10285 <NA> <NA>
## 10286 <NA> <NA>
## 10287 <NA> <NA>
## 10288 <NA> <NA>
## 10289 <NA> <NA>
## 10290 <NA> <NA>
## 10291 <NA> <NA>
## 10292 <NA> <NA>
## 10293 <NA> <NA>
## 10294 <NA> <NA>
## 10295 <NA> <NA>
## 10296 <NA> <NA>
## 10297 <NA> <NA>
## 10298 <NA> <NA>
## 10299 <NA> <NA>
## 10300 <NA> <NA>
## 10301 <NA> <NA>
## 10302 <NA> <NA>
## 10303 <NA> <NA>
## 10304 <NA> <NA>
## 10305 <NA> <NA>
## 10306 <NA> <NA>
## 10307 <NA> <NA>
## 10308 <NA> <NA>
## 10309 <NA> <NA>
## 10310 <NA> <NA>
## 10311 <NA> <NA>
## 10312 <NA> <NA>
## 10313 <NA> <NA>
## 10314 <NA> <NA>
## 10315 <NA> <NA>
## 10316 <NA> <NA>
## 10317 <NA> <NA>
## 10318 <NA> <NA>
## 10319 <NA> <NA>
## 10320 <NA> <NA>
## 10321 <NA> <NA>
## 10322 <NA> <NA>
## 10323 <NA> <NA>
## 10324 <NA> <NA>
## 10325 <NA> <NA>
## 10326 <NA> <NA>
## 10327 <NA> <NA>
## 10328 <NA> <NA>
## 10329 <NA> <NA>
## 10330 <NA> <NA>
## 10331 <NA> <NA>
## 10332 <NA> <NA>
## 10333 <NA> <NA>
## 10334 <NA> <NA>
## 10335 <NA> <NA>
## 10336 <NA> <NA>
## 10337 <NA> <NA>
## 10338 <NA> <NA>
## 10339 <NA> <NA>
## 10340 <NA> <NA>
## 10341 <NA> <NA>
## 10342 <NA> <NA>
## 10343 <NA> <NA>
## 10344 <NA> <NA>
## 10345 <NA> <NA>
## 10346 <NA> <NA>
## 10347 <NA> <NA>
## 10348 <NA> <NA>
## 10349 <NA> <NA>
## 10350 <NA> <NA>
## 10351 <NA> <NA>
## 10352 <NA> <NA>
## 10353 <NA> <NA>
## 10354 <NA> <NA>
## 10355 <NA> <NA>
## 10356 <NA> <NA>
## 10357 <NA> <NA>
## 10358 <NA> <NA>
## 10359 <NA> <NA>
## 10360 <NA> <NA>
## 10361 <NA> <NA>
## 10362 <NA> <NA>
## 10363 <NA> <NA>
## 10364 <NA> <NA>
## 10365 <NA> <NA>
## 10366 <NA> <NA>
## 10367 <NA> <NA>
## 10368 <NA> <NA>
## 10369 <NA> <NA>
## 10370 <NA> <NA>
## 10371 <NA> <NA>
## 10372 <NA> <NA>
## 10373 <NA> <NA>
## 10374 <NA> <NA>
## 10375 <NA> <NA>
## 10376 <NA> <NA>
## 10377 <NA> <NA>
## 10378 <NA> <NA>
## 10379 <NA> <NA>
## 10380 <NA> <NA>
## 10381 <NA> <NA>
## 10382 <NA> <NA>
## 10383 <NA> <NA>
## 10384 <NA> <NA>
## 10385 <NA> <NA>
## 10386 <NA> <NA>
## 10387 <NA> <NA>
## 10388 <NA> <NA>
## 10389 <NA> <NA>
## 10390 <NA> <NA>
## 10391 <NA> <NA>
## 10392 <NA> <NA>
## 10393 <NA> <NA>
## 10394 <NA> <NA>
## 10395 <NA> <NA>
## 10396 <NA> <NA>
## 10397 <NA> <NA>
## 10398 <NA> <NA>
## 10399 <NA> <NA>
## 10400 <NA> <NA>
## 10401 <NA> <NA>
## 10402 <NA> <NA>
## 10403 <NA> <NA>
## 10404 <NA> <NA>
## 10405 <NA> <NA>
## 10406 <NA> <NA>
## 10407 <NA> <NA>
## 10408 <NA> <NA>
## 10409 <NA> <NA>
## 10410 <NA> <NA>
## 10411 <NA> <NA>
## 10412 <NA> <NA>
## 10413 <NA> <NA>
## 10414 <NA> <NA>
## 10415 <NA> <NA>
## 10416 <NA> <NA>
## 10417 <NA> <NA>
## 10418 <NA> <NA>
## 10419 <NA> <NA>
## 10420 <NA> <NA>
## 10421 <NA> <NA>
## 10422 <NA> <NA>
## 10423 <NA> <NA>
## 10424 <NA> <NA>
## 10425 <NA> <NA>
## 10426 <NA> <NA>
## 10427 <NA> <NA>
## 10428 <NA> <NA>
## 10429 <NA> <NA>
## 10430 <NA> <NA>
## 10431 <NA> <NA>
## 10432 <NA> <NA>
## 10433 <NA> <NA>
## 10434 <NA> <NA>
## 10435 <NA> <NA>
## 10436 <NA> <NA>
## 10437 <NA> <NA>
## 10438 <NA> <NA>
## 10439 <NA> <NA>
## 10440 <NA> <NA>
## 10441 <NA> <NA>
## 10442 <NA> <NA>
## 10443 <NA> <NA>
## 10444 <NA> <NA>
## 10445 <NA> <NA>
## 10446 <NA> <NA>
## 10447 <NA> <NA>
## 10448 <NA> <NA>
## 10449 <NA> <NA>
## 10450 <NA> <NA>
## 10451 <NA> <NA>
## 10452 <NA> <NA>
## 10453 <NA> <NA>
## 10454 <NA> <NA>
## 10455 <NA> <NA>
## 10456 <NA> <NA>
## 10457 <NA> <NA>
## 10458 <NA> <NA>
## 10459 <NA> <NA>
## 10460 <NA> <NA>
## 10461 <NA> <NA>
## 10462 <NA> <NA>
## 10463 <NA> <NA>
## 10464 <NA> <NA>
## 10465 <NA> <NA>
## 10466 <NA> <NA>
## 10467 <NA> <NA>
## 10468 <NA> <NA>
## 10469 <NA> <NA>
## 10470 <NA> <NA>
## 10471 <NA> <NA>
## 10472 <NA> <NA>
## 10473 <NA> <NA>
## 10474 <NA> <NA>
## 10475 <NA> <NA>
## 10476 <NA> <NA>
## 10477 <NA> <NA>
## 10478 <NA> <NA>
## 10479 <NA> <NA>
## 10480 <NA> <NA>
## 10481 <NA> <NA>
## 10482 <NA> <NA>
## 10483 <NA> <NA>
## 10484 <NA> <NA>
## 10485 <NA> <NA>
## 10486 <NA> <NA>
## 10487 <NA> <NA>
## 10488 <NA> <NA>
## 10489 <NA> <NA>
## 10490 <NA> <NA>
## 10491 <NA> <NA>
## 10492 <NA> <NA>
## 10493 <NA> <NA>
## 10494 <NA> <NA>
## 10495 <NA> <NA>
## 10496 <NA> <NA>
## 10497 <NA> <NA>
## 10498 <NA> <NA>
## 10499 <NA> <NA>
## 10500 <NA> <NA>
## 10501 <NA> <NA>
## 10502 <NA> <NA>
## 10503 <NA> <NA>
## 10504 <NA> <NA>
## 10505 <NA> <NA>
## 10506 <NA> <NA>
## 10507 <NA> <NA>
## 10508 <NA> <NA>
## 10509 <NA> <NA>
## 10510 <NA> <NA>
## 10511 <NA> <NA>
## 10512 <NA> <NA>
## 10513 <NA> <NA>
## 10514 <NA> <NA>
## 10515 <NA> <NA>
## 10516 <NA> <NA>
## 10517 <NA> <NA>
## 10518 <NA> <NA>
## 10519 <NA> <NA>
## 10520 <NA> <NA>
## 10521 <NA> <NA>
## 10522 <NA> <NA>
## 10523 <NA> <NA>
## 10524 <NA> <NA>
## 10525 <NA> <NA>
## 10526 <NA> <NA>
## 10527 <NA> <NA>
## 10528 <NA> <NA>
## 10529 <NA> <NA>
## 10530 <NA> <NA>
## 10531 <NA> <NA>
## 10532 <NA> <NA>
## 10533 <NA> <NA>
## 10534 <NA> <NA>
## 10535 <NA> <NA>
## 10536 <NA> <NA>
## 10537 <NA> <NA>
## 10538 <NA> <NA>
## 10539 <NA> <NA>
## 10540 <NA> <NA>
## 10541 <NA> <NA>
## 10542 <NA> <NA>
## 10543 <NA> <NA>
## 10544 <NA> <NA>
## 10545 <NA> <NA>
## 10546 <NA> <NA>
## 10547 <NA> <NA>
## 10548 <NA> <NA>
## 10549 <NA> <NA>
## 10550 <NA> <NA>
## 10551 <NA> <NA>
## 10552 <NA> <NA>
## 10553 <NA> <NA>
## 10554 <NA> <NA>
## 10555 <NA> <NA>
## 10556 <NA> <NA>
## 10557 <NA> <NA>
## 10558 <NA> <NA>
## 10559 <NA> <NA>
## 10560 <NA> <NA>
## 10561 <NA> <NA>
## 10562 <NA> <NA>
## 10563 <NA> <NA>
## 10564 <NA> <NA>
## 10565 <NA> <NA>
## 10566 <NA> <NA>
## 10567 <NA> <NA>
## 10568 <NA> <NA>
## 10569 <NA> <NA>
## 10570 <NA> <NA>
## 10571 <NA> <NA>
## 10572 <NA> <NA>
## 10573 <NA> <NA>
## 10574 <NA> <NA>
## 10575 <NA> <NA>
## 10576 <NA> <NA>
## 10577 <NA> <NA>
## 10578 <NA> <NA>
## 10579 <NA> <NA>
## 10580 <NA> <NA>
## 10581 <NA> <NA>
## 10582 <NA> <NA>
## 10583 <NA> <NA>
## 10584 <NA> <NA>
## 10585 <NA> <NA>
## 10586 <NA> <NA>
## 10587 <NA> <NA>
## 10588 <NA> <NA>
## 10589 <NA> <NA>
## 10590 <NA> <NA>
## 10591 <NA> <NA>
## 10592 <NA> <NA>
## 10593 <NA> <NA>
## 10594 <NA> <NA>
## 10595 <NA> <NA>
## 10596 <NA> <NA>
## 10597 <NA> <NA>
## 10598 <NA> <NA>
## 10599 <NA> <NA>
## 10600 <NA> <NA>
## 10601 <NA> <NA>
## 10602 <NA> <NA>
## 10603 <NA> <NA>
## 10604 <NA> <NA>
## 10605 <NA> <NA>
## 10606 <NA> <NA>
## 10607 <NA> <NA>
## 10608 <NA> <NA>
## 10609 <NA> <NA>
## 10610 <NA> <NA>
## 10611 <NA> <NA>
## 10612 <NA> <NA>
## 10613 <NA> <NA>
## 10614 <NA> <NA>
## 10615 <NA> <NA>
## 10616 <NA> <NA>
## 10617 <NA> <NA>
## 10618 <NA> <NA>
## 10619 <NA> <NA>
## 10620 <NA> <NA>
## 10621 <NA> <NA>
## 10622 <NA> <NA>
## 10623 <NA> <NA>
## 10624 <NA> <NA>
## 10625 <NA> <NA>
## 10626 <NA> <NA>
## 10627 <NA> <NA>
## 10628 <NA> <NA>
## 10629 <NA> <NA>
## 10630 <NA> <NA>
## 10631 <NA> <NA>
## 10632 <NA> <NA>
## 10633 <NA> <NA>
## 10634 <NA> <NA>
## 10635 <NA> <NA>
## 10636 <NA> <NA>
## 10637 <NA> <NA>
## 10638 <NA> <NA>
## 10639 <NA> <NA>
## 10640 <NA> <NA>
## 10641 <NA> <NA>
## 10642 <NA> <NA>
## 10643 <NA> <NA>
## 10644 <NA> <NA>
## 10645 <NA> <NA>
## 10646 <NA> <NA>
## 10647 <NA> <NA>
## 10648 <NA> <NA>
## 10649 <NA> <NA>
## 10650 <NA> <NA>
## 10651 <NA> <NA>
## 10652 <NA> <NA>
## 10653 <NA> <NA>
## 10654 <NA> <NA>
## 10655 <NA> <NA>
## 10656 <NA> <NA>
## 10657 <NA> <NA>
## 10658 <NA> <NA>
## 10659 <NA> <NA>
## 10660 <NA> <NA>
## 10661 <NA> <NA>
## 10662 <NA> <NA>
## 10663 <NA> <NA>
## 10664 <NA> <NA>
## 10665 <NA> <NA>
## 10666 <NA> <NA>
## 10667 <NA> <NA>
## 10668 <NA> <NA>
## 10669 <NA> <NA>
## 10670 <NA> <NA>
## 10671 <NA> <NA>
## 10672 <NA> <NA>
## 10673 <NA> <NA>
## 10674 <NA> <NA>
## 10675 <NA> <NA>
## 10676 <NA> <NA>
## 10677 <NA> <NA>
## 10678 <NA> <NA>
## 10679 <NA> <NA>
## 10680 <NA> <NA>
## 10681 <NA> <NA>
## 10682 <NA> <NA>
## 10683 <NA> <NA>
## 10684 <NA> <NA>
## 10685 <NA> <NA>
## 10686 <NA> <NA>
## 10687 <NA> <NA>
## 10688 <NA> <NA>
## 10689 <NA> <NA>
## 10690 <NA> <NA>
## 10691 <NA> <NA>
## 10692 <NA> <NA>
## 10693 <NA> <NA>
## 10694 <NA> <NA>
## 10695 <NA> <NA>
## 10696 <NA> <NA>
## 10697 <NA> <NA>
## 10698 <NA> <NA>
## 10699 <NA> <NA>
## 10700 <NA> <NA>
## 10701 <NA> <NA>
## 10702 <NA> <NA>
## 10703 <NA> <NA>
## 10704 <NA> <NA>
## 10705 <NA> <NA>
## 10706 <NA> <NA>
## 10707 <NA> <NA>
## 10708 <NA> <NA>
## 10709 <NA> <NA>
## 10710 <NA> <NA>
## 10711 <NA> <NA>
## 10712 <NA> <NA>
## 10713 <NA> <NA>
## 10714 <NA> <NA>
## 10715 <NA> <NA>
## 10716 <NA> <NA>
## 10717 <NA> <NA>
## 10718 <NA> <NA>
## 10719 <NA> <NA>
## 10720 <NA> <NA>
## 10721 <NA> <NA>
## 10722 <NA> <NA>
## 10723 <NA> <NA>
## 10724 <NA> <NA>
## 10725 <NA> <NA>
## 10726 <NA> <NA>
## 10727 <NA> <NA>
## 10728 <NA> <NA>
## 10729 <NA> <NA>
## 10730 <NA> <NA>
## 10731 <NA> <NA>
## 10732 <NA> <NA>
## 10733 <NA> <NA>
## 10734 <NA> <NA>
## 10735 <NA> <NA>
## 10736 <NA> <NA>
## 10737 <NA> <NA>
## 10738 <NA> <NA>
## 10739 <NA> <NA>
## 10740 <NA> <NA>
## 10741 <NA> <NA>
## 10742 <NA> <NA>
## 10743 <NA> <NA>
## 10744 <NA> <NA>
## 10745 <NA> <NA>
## 10746 <NA> <NA>
## 10747 <NA> <NA>
## 10748 <NA> <NA>
## 10749 <NA> <NA>
## 10750 <NA> <NA>
## 10751 <NA> <NA>
## 10752 <NA> <NA>
## 10753 <NA> <NA>
## 10754 <NA> <NA>
## 10755 <NA> <NA>
## 10756 <NA> <NA>
## 10757 <NA> <NA>
## 10758 <NA> <NA>
## 10759 <NA> <NA>
## 10760 <NA> <NA>
## 10761 <NA> <NA>
## 10762 <NA> <NA>
## 10763 <NA> <NA>
## 10764 <NA> <NA>
## 10765 <NA> <NA>
## 10766 <NA> <NA>
## 10767 <NA> <NA>
## 10768 <NA> <NA>
## 10769 <NA> <NA>
## 10770 <NA> <NA>
## 10771 <NA> <NA>
## 10772 <NA> <NA>
## 10773 <NA> <NA>
## 10774 <NA> <NA>
## 10775 <NA> <NA>
## 10776 <NA> <NA>
## 10777 <NA> <NA>
## 10778 <NA> <NA>
## 10779 <NA> <NA>
## 10780 <NA> <NA>
## 10781 <NA> <NA>
## 10782 <NA> <NA>
## 10783 <NA> <NA>
## 10784 <NA> <NA>
## 10785 <NA> <NA>
## 10786 <NA> <NA>
## 10787 <NA> <NA>
## 10788 <NA> <NA>
## 10789 <NA> <NA>
## 10790 <NA> <NA>
## 10791 <NA> <NA>
## 10792 <NA> <NA>
## 10793 <NA> <NA>
## 10794 <NA> <NA>
## 10795 <NA> <NA>
## 10796 <NA> <NA>
## 10797 <NA> <NA>
## 10798 <NA> <NA>
## 10799 <NA> <NA>
## 10800 <NA> <NA>
## 10801 <NA> <NA>
## 10802 <NA> <NA>
## 10803 <NA> <NA>
## 10804 <NA> <NA>
## 10805 <NA> <NA>
## 10806 <NA> <NA>
## 10807 <NA> <NA>
## 10808 <NA> <NA>
## 10809 <NA> <NA>
## 10810 <NA> <NA>
## 10811 <NA> <NA>
## 10812 <NA> <NA>
## 10813 <NA> <NA>
## 10814 <NA> <NA>
## 10815 <NA> <NA>
## 10816 <NA> <NA>
## 10817 <NA> <NA>
## 10818 <NA> <NA>
## 10819 <NA> <NA>
## 10820 <NA> <NA>
## 10821 <NA> <NA>
## 10822 <NA> <NA>
## 10823 <NA> <NA>
## 10824 <NA> <NA>
## 10825 <NA> <NA>
## 10826 <NA> <NA>
## 10827 <NA> <NA>
## 10828 <NA> <NA>
## 10829 <NA> <NA>
## 10830 <NA> <NA>
## 10831 <NA> <NA>
## 10832 <NA> <NA>
## 10833 <NA> <NA>
## 10834 <NA> <NA>
## 10835 <NA> <NA>
## 10836 <NA> <NA>
## 10837 <NA> <NA>
## 10838 <NA> <NA>
## 10839 <NA> <NA>
## 10840 <NA> <NA>
## 10841 <NA> <NA>
## 10842 <NA> <NA>
## 10843 <NA> <NA>
## 10844 <NA> <NA>
## 10845 <NA> <NA>
## 10846 <NA> <NA>
## 10847 <NA> <NA>
## 10848 <NA> <NA>
## 10849 <NA> <NA>
## 10850 <NA> <NA>
## 10851 <NA> <NA>
## 10852 <NA> <NA>
## 10853 <NA> <NA>
## 10854 <NA> <NA>
## 10855 <NA> <NA>
## 10856 <NA> <NA>
## 10857 <NA> <NA>
## 10858 <NA> <NA>
## 10859 <NA> <NA>
## 10860 <NA> <NA>
## 10861 <NA> <NA>
## 10862 <NA> <NA>
## 10863 <NA> <NA>
## 10864 <NA> <NA>
## 10865 <NA> <NA>
## 10866 <NA> <NA>
## 10867 <NA> <NA>
## 10868 <NA> <NA>
## 10869 <NA> <NA>
## 10870 <NA> <NA>
## 10871 <NA> <NA>
## 10872 <NA> <NA>
## 10873 <NA> <NA>
## 10874 <NA> <NA>
## 10875 <NA> <NA>
## 10876 <NA> <NA>
## 10877 <NA> <NA>
## 10878 <NA> <NA>
## 10879 <NA> <NA>
## 10880 <NA> <NA>
## 10881 <NA> <NA>
## 10882 <NA> <NA>
## 10883 <NA> <NA>
## 10884 <NA> <NA>
## 10885 <NA> <NA>
## 10886 <NA> <NA>
## 10887 <NA> <NA>
## 10888 <NA> <NA>
## 10889 <NA> <NA>
## 10890 <NA> <NA>
## 10891 <NA> <NA>
## 10892 <NA> <NA>
## 10893 <NA> <NA>
## 10894 <NA> <NA>
## 10895 <NA> <NA>
## 10896 <NA> <NA>
## 10897 <NA> <NA>
## 10898 <NA> <NA>
## 10899 <NA> <NA>
## 10900 <NA> <NA>
## 10901 <NA> <NA>
## 10902 <NA> <NA>
## 10903 <NA> <NA>
## 10904 <NA> <NA>
## 10905 <NA> <NA>
## 10906 <NA> <NA>
## 10907 <NA> <NA>
## 10908 <NA> <NA>
## 10909 <NA> <NA>
## 10910 <NA> <NA>
## 10911 <NA> <NA>
## 10912 <NA> <NA>
## 10913 <NA> <NA>
## 10914 <NA> <NA>
## 10915 <NA> <NA>
## 10916 <NA> <NA>
## 10917 <NA> <NA>
## 10918 <NA> <NA>
## 10919 <NA> <NA>
## 10920 <NA> <NA>
## 10921 <NA> <NA>
## 10922 <NA> <NA>
## 10923 <NA> <NA>
## 10924 <NA> <NA>
## 10925 <NA> <NA>
## 10926 <NA> <NA>
## 10927 <NA> <NA>
## 10928 <NA> <NA>
## 10929 <NA> <NA>
## 10930 <NA> <NA>
## 10931 <NA> <NA>
## 10932 <NA> <NA>
## 10933 <NA> <NA>
## 10934 <NA> <NA>
## 10935 <NA> <NA>
## 10936 <NA> <NA>
## 10937 <NA> <NA>
## 10938 <NA> <NA>
## 10939 <NA> <NA>
## 10940 <NA> <NA>
## 10941 <NA> <NA>
## 10942 <NA> <NA>
## 10943 <NA> <NA>
## 10944 <NA> <NA>
## 10945 <NA> <NA>
## 10946 <NA> <NA>
## 10947 <NA> <NA>
## 10948 <NA> <NA>
## 10949 <NA> <NA>
## 10950 <NA> <NA>
## 10951 <NA> <NA>
## 10952 <NA> <NA>
## 10953 <NA> <NA>
## 10954 <NA> <NA>
## 10955 <NA> <NA>
## 10956 <NA> <NA>
## 10957 <NA> <NA>
## 10958 <NA> <NA>
## 10959 <NA> <NA>
## 10960 <NA> <NA>
## 10961 <NA> <NA>
## 10962 <NA> <NA>
## 10963 <NA> <NA>
## 10964 <NA> <NA>
## 10965 <NA> <NA>
## 10966 <NA> <NA>
## 10967 <NA> <NA>
## 10968 <NA> <NA>
## 10969 <NA> <NA>
## 10970 <NA> <NA>
## 10971 <NA> <NA>
## 10972 <NA> <NA>
## 10973 <NA> <NA>
## 10974 <NA> <NA>
## 10975 <NA> <NA>
## 10976 <NA> <NA>
## 10977 <NA> <NA>
## 10978 <NA> <NA>
## 10979 <NA> <NA>
## 10980 <NA> <NA>
## 10981 <NA> <NA>
## 10982 <NA> <NA>
## 10983 <NA> <NA>
## 10984 <NA> <NA>
## 10985 <NA> <NA>
## 10986 <NA> <NA>
## 10987 <NA> <NA>
## 10988 <NA> <NA>
## 10989 <NA> <NA>
## 10990 <NA> <NA>
## 10991 <NA> <NA>
## 10992 <NA> <NA>
## 10993 <NA> <NA>
## 10994 <NA> <NA>
## 10995 <NA> <NA>
## 10996 <NA> <NA>
## 10997 <NA> <NA>
## 10998 <NA> <NA>
## 10999 <NA> <NA>
## 11000 <NA> <NA>
## 11001 <NA> <NA>
## 11002 <NA> <NA>
## 11003 <NA> <NA>
## 11004 <NA> <NA>
## 11005 <NA> <NA>
## 11006 <NA> <NA>
## 11007 <NA> <NA>
## 11008 <NA> <NA>
## 11009 <NA> <NA>
## 11010 <NA> <NA>
## 11011 <NA> <NA>
## 11012 <NA> <NA>
## 11013 <NA> <NA>
## 11014 <NA> <NA>
## 11015 <NA> <NA>
## 11016 <NA> <NA>
## 11017 <NA> <NA>
## 11018 <NA> <NA>
## 11019 <NA> <NA>
## 11020 <NA> <NA>
## 11021 <NA> <NA>
## 11022 <NA> <NA>
## 11023 <NA> <NA>
## 11024 <NA> <NA>
## 11025 <NA> <NA>
## 11026 <NA> <NA>
## 11027 <NA> <NA>
## 11028 <NA> <NA>
## 11029 <NA> <NA>
## 11030 <NA> <NA>
## 11031 <NA> <NA>
## 11032 <NA> <NA>
## 11033 <NA> <NA>
## 11034 <NA> <NA>
## 11035 <NA> <NA>
## 11036 <NA> <NA>
## 11037 <NA> <NA>
## 11038 <NA> <NA>
## 11039 <NA> <NA>
## 11040 <NA> <NA>
## 11041 <NA> <NA>
## 11042 <NA> <NA>
## 11043 <NA> <NA>
## 11044 <NA> <NA>
## 11045 <NA> <NA>
## 11046 <NA> <NA>
## 11047 <NA> <NA>
## 11048 <NA> <NA>
## 11049 <NA> <NA>
## 11050 <NA> <NA>
## 11051 <NA> <NA>
## 11052 <NA> <NA>
## 11053 <NA> <NA>
## 11054 <NA> <NA>
## 11055 <NA> <NA>
## 11056 <NA> <NA>
## 11057 <NA> <NA>
## 11058 <NA> <NA>
## 11059 <NA> <NA>
## 11060 <NA> <NA>
## 11061 <NA> <NA>
## 11062 <NA> <NA>
## 11063 <NA> <NA>
## 11064 <NA> <NA>
## 11065 <NA> <NA>
## 11066 <NA> <NA>
## 11067 <NA> <NA>
## 11068 <NA> <NA>
## 11069 <NA> <NA>
## 11070 <NA> <NA>
## 11071 <NA> <NA>
## 11072 <NA> <NA>
## 11073 <NA> <NA>
## 11074 <NA> <NA>
## 11075 <NA> <NA>
## 11076 <NA> <NA>
## 11077 <NA> <NA>
## 11078 <NA> <NA>
## 11079 <NA> <NA>
## 11080 <NA> <NA>
## 11081 <NA> <NA>
## 11082 <NA> <NA>
## 11083 <NA> <NA>
## 11084 <NA> <NA>
## 11085 <NA> <NA>
## 11086 <NA> <NA>
## 11087 <NA> <NA>
## 11088 <NA> <NA>
## 11089 <NA> <NA>
## 11090 <NA> <NA>
## 11091 <NA> <NA>
## 11092 <NA> <NA>
## 11093 <NA> <NA>
## 11094 <NA> <NA>
## 11095 <NA> <NA>
## 11096 <NA> <NA>
## 11097 <NA> <NA>
## 11098 <NA> <NA>
## 11099 <NA> <NA>
## 11100 <NA> <NA>
## 11101 <NA> <NA>
## 11102 <NA> <NA>
## 11103 <NA> <NA>
## 11104 <NA> <NA>
## 11105 <NA> <NA>
## 11106 <NA> <NA>
## 11107 <NA> <NA>
## 11108 <NA> <NA>
## 11109 <NA> <NA>
## 11110 <NA> <NA>
## 11111 <NA> <NA>
## [ reached 'max' / getOption("max.print") -- omitted 1509697 rows ]
When we try to associate the employee status with the email address of sender and recipient we can only label 10% of the data set. This suggested that the employeelist isn’t exhaustive and/or some email exchange are with person external to the company.
First we focus on the email address for sender and recipient with a enron domain for the email address.
#We used regexp to research the enron domain in the email address, the $ sign all us to obtain the string whose match with the pattern
Enron_email <- df_message_status %>%
filter(str_detect(rvalue,"@enron.com$"))%>% filter(str_detect(sender,"@enron.com$")) %>% transform(
sender = as.factor(sender),
rvalue = as.factor(rvalue))
#To get only the number of rows in the new data set
dim(Enron_email)[1]
## [1] 1701271
We have 1,701,271 rows describing email exchange between Enron’s employee. This represent 82% of the total email exchange.
Enron_email %>% filter((!is.na(sender_status)) | (!is.na(recipient_status)))
## rid mid rtype rvalue
## 1 75 59 TO robert.badeer@enron.com
## 2 77 60 TO robert.badeer@enron.com
## 3 83 60 CC elizabeth.sager@enron.com
## 4 84 60 BCC elizabeth.sager@enron.com
## 5 85 61 TO robert.badeer@enron.com
## 6 87 61 TO mike.swerzbin@enron.com
## 7 88 61 TO matt.motley@enron.com
## 8 102 62 CC robert.badeer@enron.com
## 9 104 62 CC elizabeth.sager@enron.com
## 10 107 62 BCC robert.badeer@enron.com
## 11 109 62 BCC elizabeth.sager@enron.com
## 12 110 63 TO robert.badeer@enron.com
## 13 118 64 TO james.d.steffes@enron.com
## 14 119 64 TO richard.shapiro@enron.com
## 15 132 64 TO robert.badeer@enron.com
## 16 137 66 TO matt.motley@enron.com
## 17 138 66 TO robert.badeer@enron.com
## 18 139 66 TO sean.crandall@enron.com
## 19 140 66 TO diana.scholtes@enron.com
## 20 145 66 TO phillip.platter@enron.com
## 21 147 66 TO m..forney@enron.com
## 22 158 67 TO robert.badeer@enron.com
## 23 163 67 TO jeff.dasovich@enron.com
## 24 180 69 CC james.d.steffes@enron.com
## 25 182 69 CC richard.shapiro@enron.com
## 26 185 69 BCC james.d.steffes@enron.com
## 27 187 69 BCC richard.shapiro@enron.com
## 28 191 70 TO robert.badeer@enron.com
## 29 196 70 TO jeff.dasovich@enron.com
## 30 203 71 TO robert.badeer@enron.com
## 31 205 71 TO phillip.platter@enron.com
## 32 206 71 TO mike.swerzbin@enron.com
## 33 207 71 TO diana.scholtes@enron.com
## 34 208 71 TO sean.crandall@enron.com
## 35 209 71 TO matt.motley@enron.com
## 36 210 71 TO mark.guzman@enron.com
## 37 219 72 TO robert.badeer@enron.com
## 38 235 73 TO robert.badeer@enron.com
## 39 237 74 TO robert.badeer@enron.com
## 40 240 75 TO robert.badeer@enron.com
## 41 242 76 TO sean.crandall@enron.com
## 42 243 76 TO mike.swerzbin@enron.com
## 43 244 76 TO robert.badeer@enron.com
## 44 248 80 TO robert.badeer@enron.com
## 45 253 82 TO robert.badeer@enron.com
## 46 257 83 CC robert.badeer@enron.com
## 47 258 83 BCC robert.badeer@enron.com
## 48 277 90 TO robert.badeer@enron.com
## 49 279 90 TO phillip.platter@enron.com
## 50 280 90 TO mike.swerzbin@enron.com
## 51 281 90 TO diana.scholtes@enron.com
## 52 282 90 TO sean.crandall@enron.com
## 53 283 90 TO matt.motley@enron.com
## 54 284 90 TO mark.guzman@enron.com
## 55 315 93 TO chris.mallory@enron.com
## 56 316 93 TO paul.choi@enron.com
## 57 317 93 TO greg.wolfe@enron.com
## 58 318 93 TO stewart.rosman@enron.com
## 59 319 93 TO robert.badeer@enron.com
## 60 348 95 TO robert.badeer@enron.com
## 61 350 95 TO phillip.platter@enron.com
## 62 351 95 TO mike.swerzbin@enron.com
## 63 352 95 TO diana.scholtes@enron.com
## 64 353 95 TO sean.crandall@enron.com
## 65 354 95 TO matt.motley@enron.com
## 66 355 95 TO mark.guzman@enron.com
## 67 361 97 TO robert.badeer@enron.com
## 68 364 99 TO robert.badeer@enron.com
## 69 366 99 TO phillip.platter@enron.com
## 70 367 99 TO mike.swerzbin@enron.com
## 71 368 99 TO diana.scholtes@enron.com
## 72 369 99 TO sean.crandall@enron.com
## 73 370 99 TO matt.motley@enron.com
## 74 371 99 TO mark.guzman@enron.com
## 75 378 100 CC robert.badeer@enron.com
## 76 380 100 BCC robert.badeer@enron.com
## 77 383 101 TO robert.badeer@enron.com
## 78 385 101 TO phillip.platter@enron.com
## 79 386 101 TO mike.swerzbin@enron.com
## 80 387 101 TO diana.scholtes@enron.com
## 81 388 101 TO sean.crandall@enron.com
## 82 389 101 TO matt.motley@enron.com
## 83 390 101 TO mark.guzman@enron.com
## 84 416 104 CC robert.badeer@enron.com
## 85 417 104 CC matt.motley@enron.com
## 86 418 104 CC phillip.k.ellen@enron.com
## 87 420 104 BCC robert.badeer@enron.com
## 88 421 104 BCC matt.motley@enron.com
## 89 422 104 BCC phillip.k.ellen@enron.com
## 90 424 105 CC louise.kitchen@enron.com
## 91 425 105 CC andy.zipper@enron.com
## 92 427 105 BCC louise.kitchen@enron.com
## 93 428 105 BCC andy.zipper@enron.com
## 94 505 113 CC robert.badeer@enron.com
## 95 506 113 CC matt.motley@enron.com
## 96 507 113 CC mike.swerzbin@enron.com
## 97 511 113 CC sean.crandall@enron.com
## 98 515 113 BCC robert.badeer@enron.com
## 99 516 113 BCC matt.motley@enron.com
## 100 517 113 BCC mike.swerzbin@enron.com
## 101 521 113 BCC sean.crandall@enron.com
## 102 617 119 TO mike.swerzbin@enron.com
## 103 618 119 TO robert.badeer@enron.com
## 104 619 119 TO sean.crandall@enron.com
## 105 621 119 TO diana.scholtes@enron.com
## 106 624 119 TO m..forney@enron.com
## 107 634 120 TO dana.davis@enron.com
## 108 647 120 TO cara.semperger@enron.com
## 109 650 120 TO mike.swerzbin@enron.com
## 110 654 120 TO elizabeth.sager@enron.com
## 111 681 120 TO sean.crandall@enron.com
## 112 682 120 TO diana.scholtes@enron.com
## 113 685 120 TO phillip.platter@enron.com
## 114 687 120 TO robert.badeer@enron.com
## 115 690 120 TO m..forney@enron.com
## 116 695 120 TO robert.benson@enron.com
## 117 702 120 TO kevin.m.presto@enron.com
## 118 708 120 TO doug.gilbert-smith@enron.com
## 119 729 126 TO robert.badeer@enron.com
## 120 731 126 TO phillip.platter@enron.com
## 121 732 126 TO mike.swerzbin@enron.com
## 122 733 126 TO diana.scholtes@enron.com
## 123 734 126 TO sean.crandall@enron.com
## 124 735 126 TO matt.motley@enron.com
## 125 736 126 TO mark.guzman@enron.com
## 126 744 132 TO m..forney@enron.com
## 127 745 132 TO robert.badeer@enron.com
## 128 752 136 TO mike.swerzbin@enron.com
## 129 753 136 TO robert.badeer@enron.com
## 130 754 136 TO sean.crandall@enron.com
## 131 757 136 TO m..forney@enron.com
## 132 758 136 TO matt.motley@enron.com
## 133 771 144 TO m..forney@enron.com
## 134 773 144 TO mike.swerzbin@enron.com
## 135 774 144 TO robert.badeer@enron.com
## 136 775 144 TO sean.crandall@enron.com
## 137 779 144 TO matt.motley@enron.com
## 138 783 144 TO diana.scholtes@enron.com
## 139 802 146 CC james.d.steffes@enron.com
## 140 805 146 CC richard.shapiro@enron.com
## 141 807 146 BCC james.d.steffes@enron.com
## 142 810 146 BCC richard.shapiro@enron.com
## 143 1005 159 TO m..forney@enron.com
## 144 1007 159 TO robert.badeer@enron.com
## 145 1008 159 TO mike.swerzbin@enron.com
## 146 1011 161 TO robert.badeer@enron.com
## 147 1013 161 TO phillip.platter@enron.com
## 148 1014 161 TO mike.swerzbin@enron.com
## 149 1015 161 TO diana.scholtes@enron.com
## 150 1016 161 TO sean.crandall@enron.com
## 151 1017 161 TO matt.motley@enron.com
## 152 1018 161 TO mark.guzman@enron.com
## 153 1022 162 TO robert.badeer@enron.com
## 154 1024 162 TO phillip.platter@enron.com
## 155 1025 162 TO mike.swerzbin@enron.com
## 156 1026 162 TO diana.scholtes@enron.com
## 157 1027 162 TO sean.crandall@enron.com
## 158 1028 162 TO matt.motley@enron.com
## 159 1029 162 TO mark.guzman@enron.com
## 160 1054 167 TO brad.mckay@enron.com
## 161 1056 167 TO chris.dorland@enron.com
## 162 1057 167 TO chris.germany@enron.com
## 163 1067 167 TO doug.gilbert-smith@enron.com
## 164 1071 167 TO frank.ermis@enron.com
## 165 1073 167 TO fletcher.j.sturm@enron.com
## 166 1077 167 TO geoff.storey@enron.com
## 167 1078 167 TO greg.whalley@enron.com
## 168 1082 167 TO harry.arora@enron.com
## 169 1084 167 TO hunter.s.shively@enron.com
## 170 1085 167 TO john.arnold@enron.com
## 171 1086 167 TO diana.scholtes@enron.com
## 172 1091 167 TO m..forney@enron.com
## 173 1096 167 TO jonathan.mckay@enron.com
## 174 1100 167 TO jeffrey.a.shankman@enron.com
## 175 1102 167 TO jane.tholt@enron.com
## 176 1103 167 TO judy.townsend@enron.com
## 177 1104 167 TO john.zufferli@enron.com
## 178 1107 167 TO keith.holst@enron.com
## 179 1108 167 TO kevin.ruscitti@enron.com
## 180 1113 167 TO larry.may@enron.com
## 181 1115 167 TO mike.carson@enron.com
## 182 1117 167 TO martin.cuilla@enron.com
## 183 1120 167 TO mike.grigsby@enron.com
## 184 1122 167 TO matthew.lenhart@enron.com
## 185 1123 167 TO mike.maggi@enron.com
## 186 1124 167 TO matt.motley@enron.com
## 187 1125 167 TO mike.swerzbin@enron.com
## 188 1127 167 TO phillip.k.ellen@enron.com
## 189 1132 167 TO peter.keavey@enron.com
## 190 1139 167 TO robert.badeer@enron.com
## 191 1141 167 TO robert.benson@enron.com
## 192 1148 167 TO sandra.f.brawner@enron.com
## 193 1150 167 TO sean.crandall@enron.com
## 194 1161 167 TO tom.donohoe@enron.com
## 195 1163 167 TO tori.kuykendall@enron.com
## 196 1164 167 TO thomas.a.martin@enron.com
## 197 1171 167 TO andy.zipper@enron.com
## 198 1172 167 TO andy.zipper@enron.com
## 199 1183 167 TO daren.j.farmer@enron.com
## 200 1203 167 TO jay.reitmeyer@enron.com
## 201 1206 167 TO jeff.king@enron.com
## 202 1214 167 TO kevin.m.presto@enron.com
## 203 1228 167 TO paul.lucci@enron.com
## 204 1237 167 TO scott.neal@enron.com
## 205 1256 167 CC andy.zipper@enron.com
## 206 1258 167 CC louise.kitchen@enron.com
## 207 1259 167 BCC andy.zipper@enron.com
## 208 1261 167 BCC louise.kitchen@enron.com
## 209 1390 180 TO robert.badeer@enron.com
## 210 1392 180 TO phillip.platter@enron.com
## 211 1393 180 TO mike.swerzbin@enron.com
## 212 1394 180 TO diana.scholtes@enron.com
## 213 1395 180 TO sean.crandall@enron.com
## 214 1396 180 TO matt.motley@enron.com
## 215 1397 180 TO mark.guzman@enron.com
## 216 1406 181 TO robert.badeer@enron.com
## 217 1408 181 TO phillip.platter@enron.com
## 218 1409 181 TO mike.swerzbin@enron.com
## 219 1410 181 TO diana.scholtes@enron.com
## 220 1411 181 TO sean.crandall@enron.com
## 221 1412 181 TO matt.motley@enron.com
## 222 1413 181 TO mark.guzman@enron.com
## 223 1422 182 TO robert.badeer@enron.com
## 224 1424 182 TO phillip.platter@enron.com
## 225 1425 182 TO mike.swerzbin@enron.com
## 226 1426 182 TO diana.scholtes@enron.com
## 227 1427 182 TO sean.crandall@enron.com
## 228 1428 182 TO matt.motley@enron.com
## 229 1429 182 TO mark.guzman@enron.com
## 230 1437 183 TO robert.badeer@enron.com
## 231 1439 183 TO phillip.platter@enron.com
## 232 1440 183 TO mike.swerzbin@enron.com
## 233 1441 183 TO diana.scholtes@enron.com
## 234 1442 183 TO sean.crandall@enron.com
## 235 1443 183 TO matt.motley@enron.com
## 236 1444 183 TO mark.guzman@enron.com
## 237 1452 184 TO robert.badeer@enron.com
## 238 1454 184 TO phillip.platter@enron.com
## 239 1455 184 TO mike.swerzbin@enron.com
## 240 1456 184 TO diana.scholtes@enron.com
## 241 1457 184 TO sean.crandall@enron.com
## 242 1458 184 TO matt.motley@enron.com
## 243 1459 184 TO mark.guzman@enron.com
## 244 1467 185 TO robert.badeer@enron.com
## 245 1469 185 TO phillip.platter@enron.com
## 246 1470 185 TO mike.swerzbin@enron.com
## 247 1471 185 TO diana.scholtes@enron.com
## 248 1472 185 TO sean.crandall@enron.com
## 249 1473 185 TO matt.motley@enron.com
## 250 1474 185 TO mark.guzman@enron.com
## 251 3514 464 TO robert.badeer@enron.com
## 252 3518 464 CC mark.guzman@enron.com
## 253 3522 464 BCC mark.guzman@enron.com
## 254 3523 465 TO james.d.steffes@enron.com
## 255 3524 465 TO mona.petrochko@enron.com
## 256 3525 465 TO sandra.mccubbin@enron.com
## 257 3526 465 TO dennis.benevides@enron.com
## 258 3527 465 TO roger.yang@enron.com
## 259 3528 465 TO snovosel@enron.com
## 260 3529 465 TO joe.hartsoe@enron.com
## 261 3530 465 TO susan.mara@enron.com
## 262 3531 465 TO bruno.gaillard@enron.com
## 263 3532 465 TO richard.shapiro@enron.com
## 264 3533 465 TO karen.denne@enron.com
## 265 3534 465 TO peggy.mahoney@enron.com
## 266 3535 466 TO robert.badeer@enron.com
## 267 3562 473 CC robert.badeer@enron.com
## 268 3564 473 BCC robert.badeer@enron.com
## 269 3588 477 TO robert.badeer@enron.com
## 270 3590 477 TO m..forney@enron.com
## 271 3594 477 TO jeff.dasovich@enron.com
## 272 3596 477 TO james.d.steffes@enron.com
## 273 3603 477 TO richard.shapiro@enron.com
## 274 3620 480 TO james.d.steffes@enron.com
## 275 3623 480 CC richard.shapiro@enron.com
## 276 3626 480 BCC richard.shapiro@enron.com
## 277 3681 486 TO robert.badeer@enron.com
## 278 3866 509 TO robert.badeer@enron.com
## 279 3870 509 TO james.d.steffes@enron.com
## 280 3873 509 TO jeff.dasovich@enron.com
## 281 3878 509 TO steven.j.kean@enron.com
## 282 3880 510 TO jeff.dasovich@enron.com
## 283 3881 510 CC robert.badeer@enron.com
## 284 3883 510 BCC robert.badeer@enron.com
## 285 3888 514 TO robert.badeer@enron.com
## 286 3893 517 TO susan.mara@enron.com
## 287 3894 517 TO mona.petrochko@enron.com
## 288 3895 517 TO sandra.mccubbin@enron.com
## 289 3896 517 TO james.d.steffes@enron.com
## 290 3897 517 TO richard.shapiro@enron.com
## 291 3898 517 TO joe.hartsoe@enron.com
## 292 3899 517 TO cynthia.sandherr@enron.com
## 293 3900 517 TO dennis.benevides@enron.com
## 294 3901 517 TO roger.yang@enron.com
## 295 3902 517 TO douglas.condon@enron.com
## 296 3903 517 TO sarah.novosel@enron.com
## 297 3904 517 TO bruno.gaillard@enron.com
## 298 3915 527 TO sarah.novosel@enron.com
## 299 3916 527 TO james.d.steffes@enron.com
## 300 3930 529 TO robert.badeer@enron.com
## 301 3940 537 TO jeff.dasovich@enron.com
## 302 3955 537 TO james.d.steffes@enron.com
## 303 3961 538 TO james.d.steffes@enron.com
## 304 3962 538 TO richard.shapiro@enron.com
## 305 3963 538 TO joe.hartsoe@enron.com
## 306 3964 538 TO sarah.novosel@enron.com
## 307 3965 538 TO susan.mara@enron.com
## 308 3966 538 TO mona.petrochko@enron.com
## 309 3967 538 TO sandra.mccubbin@enron.com
## 310 3968 538 TO bruno.gaillard@enron.com
## 311 3969 538 TO karen.denne@enron.com
## 312 3970 538 TO peggy.mahoney@enron.com
## 313 3971 538 TO mpalmer@enron.com
## 314 3976 539 CC james.d.steffes@enron.com
## 315 3978 539 BCC james.d.steffes@enron.com
## 316 3980 540 TO jeff.dasovich@enron.com
## 317 3995 540 TO james.d.steffes@enron.com
## 318 4001 541 TO richard.shapiro@enron.com
## 319 4002 541 TO sandra.mccubbin@enron.com
## 320 4003 541 TO mona.petrochko@enron.com
## 321 4004 541 TO susan.mara@enron.com
## 322 4005 541 TO bruno.gaillard@enron.com
## 323 4006 541 TO james.d.steffes@enron.com
## 324 4007 541 TO karen.denne@enron.com
## 325 4008 541 TO peggy.mahoney@enron.com
## 326 4009 541 TO mpalmer@enron.com
## 327 4010 541 TO joe.hartsoe@enron.com
## 328 4011 541 TO cynthia.sandherr@enron.com
## 329 4012 541 TO sarah.novosel@enron.com
## 330 4013 541 TO dennis.benevides@enron.com
## 331 4014 541 TO roger.yang@enron.com
## 332 4015 541 TO douglas.condon@enron.com
## 333 4016 542 TO dennis.benevides@enron.com
## 334 4017 542 TO roger.yang@enron.com
## 335 4018 542 TO douglas.condon@enron.com
## 336 6076 841 TO no.address@enron.com
## 337 6077 842 TO robert.badeer@enron.com
## 338 6080 845 TO monaco@enron.com
## 339 6082 846 TO ina.rangel@enron.com
## 340 6083 847 TO mike.grigsby@enron.com
## 341 6084 848 TO mike.grigsby@enron.com
## 342 6085 849 TO ina.rangel@enron.com
## 343 6086 850 TO danny.mccarty@enron.com
## 344 6088 850 CC kevin.hyatt@enron.com
## 345 6095 850 BCC kevin.hyatt@enron.com
## 346 6101 851 TO kevin.hyatt@enron.com
## 347 6106 852 TO kevin.hyatt@enron.com
## 348 6111 853 TO kevin.hyatt@enron.com
## 349 6116 854 TO kevin.hyatt@enron.com
## 350 6126 857 CC kevin.hyatt@enron.com
## 351 6138 857 BCC kevin.hyatt@enron.com
## 352 6148 858 CC kevin.hyatt@enron.com
## 353 6161 858 BCC kevin.hyatt@enron.com
## 354 6176 859 TO kevin.hyatt@enron.com
## 355 6202 861 CC kevin.hyatt@enron.com
## 356 6212 861 CC larry.f.campbell@enron.com
## 357 6215 861 BCC kevin.hyatt@enron.com
## 358 6225 861 BCC larry.f.campbell@enron.com
## 359 6230 862 CC kevin.hyatt@enron.com
## 360 6241 862 CC larry.f.campbell@enron.com
## 361 6243 862 BCC kevin.hyatt@enron.com
## 362 6254 862 BCC larry.f.campbell@enron.com
## 363 6260 864 CC kevin.hyatt@enron.com
## 364 6271 864 CC larry.f.campbell@enron.com
## 365 6275 864 BCC kevin.hyatt@enron.com
## 366 6286 864 BCC larry.f.campbell@enron.com
## 367 6293 865 CC kevin.hyatt@enron.com
## 368 6305 865 BCC kevin.hyatt@enron.com
## 369 6317 866 TO kevin.hyatt@enron.com
## 370 6327 866 TO larry.f.campbell@enron.com
## 371 6335 867 CC kevin.hyatt@enron.com
## 372 6347 867 BCC kevin.hyatt@enron.com
## 373 6353 868 TO dean.mccallister@enron.com
## 374 6354 868 TO bill.rapp@enron.com
## 375 6355 868 CC bob.bandel@enron.com
## 376 6356 868 CC eric.gadd@enron.com
## 377 6357 868 BCC bob.bandel@enron.com
## 378 6358 868 BCC eric.gadd@enron.com
## 379 6359 869 TO kevin.hyatt@enron.com
## 380 6368 870 CC kevin.hyatt@enron.com
## 381 6370 870 BCC kevin.hyatt@enron.com
## 382 6372 871 CC kevin.hyatt@enron.com
## 383 6374 871 BCC kevin.hyatt@enron.com
## 384 6376 872 TO kevin.hyatt@enron.com
## 385 6383 873 TO team.monahans@enron.com
## 386 6384 873 TO bob.bandel@enron.com
## 387 6385 873 TO robert.baker@enron.com
## 388 6386 873 CC darrell.schoolcraft@enron.com
## 389 6387 873 CC eric.gadd@enron.com
## 390 6388 873 BCC darrell.schoolcraft@enron.com
## 391 6389 873 BCC eric.gadd@enron.com
## 392 6391 875 TO kevin.hyatt@enron.com
## 393 6399 876 TO kevin.hyatt@enron.com
## 394 6408 877 TO kevin.hyatt@enron.com
## 395 6420 878 TO kevin.hyatt@enron.com
## 396 6436 879 TO kevin.hyatt@enron.com
## 397 6455 880 TO kevin.hyatt@enron.com
## 398 6461 881 TO kevin.hyatt@enron.com
## 399 6464 882 TO danny.mccarty@enron.com
## 400 6466 882 TO kevin.hyatt@enron.com
## 401 6469 883 TO kevin.hyatt@enron.com
## 402 6473 885 TO kevin.hyatt@enron.com
## 403 6474 885 TO lindy.donoho@enron.com
## 404 6476 886 CC kevin.hyatt@enron.com
## 405 6477 886 BCC kevin.hyatt@enron.com
## 406 6478 887 TO lorna.brennan@enron.com
## 407 6483 888 CC kevin.hyatt@enron.com
## 408 6488 888 BCC kevin.hyatt@enron.com
## 409 6505 891 CC kevin.hyatt@enron.com
## 410 6511 891 BCC kevin.hyatt@enron.com
## 411 6516 892 TO kevin.hyatt@enron.com
## 412 6523 893 CC kevin.hyatt@enron.com
## 413 6526 893 BCC kevin.hyatt@enron.com
## 414 6529 894 TO lorraine.lindberg@enron.com
## 415 6530 894 CC eric.gadd@enron.com
## 416 6531 894 BCC eric.gadd@enron.com
## 417 6532 895 TO kevin.hyatt@enron.com
## 418 6535 896 TO kevin.hyatt@enron.com
## 419 6536 897 TO kevin.hyatt@enron.com
## 420 6541 898 TO kevin.hyatt@enron.com
## 421 6542 899 TO eric.gadd@enron.com
## 422 6543 899 TO steven.harris@enron.com
## 423 6544 899 CC susan.wadle@enron.com
## 424 6545 899 CC bruce.tuttle@enron.com
## 425 6546 899 BCC susan.wadle@enron.com
## 426 6547 899 BCC bruce.tuttle@enron.com
## 427 6582 902 TO kevin.hyatt@enron.com
## 428 6587 904 TO kevin.hyatt@enron.com
## 429 6589 905 TO eric.gadd@enron.com
## 430 6590 905 TO susan.wadle@enron.com
## 431 6591 905 CC bruce.tuttle@enron.com
## 432 6592 905 BCC bruce.tuttle@enron.com
## 433 6593 906 TO kevin.hyatt@enron.com
## 434 6594 907 TO eric.gadd@enron.com
## 435 6595 907 TO steven.harris@enron.com
## 436 6596 907 TO stanley.horton@enron.com
## 437 6597 907 TO steve.dowd@enron.com
## 438 6598 907 CC susan.wadle@enron.com
## 439 6599 907 CC cindy.stark@enron.com
## 440 6600 907 BCC susan.wadle@enron.com
## 441 6601 907 BCC cindy.stark@enron.com
## 442 6603 908 TO kevin.hyatt@enron.com
## 443 6604 909 TO kevin.hyatt@enron.com
## 444 6607 910 CC kevin.hyatt@enron.com
## 445 6610 910 BCC kevin.hyatt@enron.com
## 446 6612 911 TO kevin.hyatt@enron.com
## 447 6616 912 CC kevin.hyatt@enron.com
## 448 6618 912 BCC kevin.hyatt@enron.com
## 449 6619 913 TO kevin.hyatt@enron.com
## 450 6620 914 TO kevin.hyatt@enron.com
## 451 6621 915 TO kevin.hyatt@enron.com
## 452 6624 916 TO kevin.hyatt@enron.com
## 453 6625 917 TO steven.harris@enron.com
## 454 6626 917 TO kevin.hyatt@enron.com
## 455 6627 918 TO kevin.hyatt@enron.com
## 456 6628 919 TO eric.gadd@enron.com
## 457 6629 919 TO susan.wadle@enron.com
## 458 6630 919 CC steven.harris@enron.com
## 459 6631 919 BCC steven.harris@enron.com
## 460 6632 920 TO kevin.hyatt@enron.com
## 461 6633 921 TO kevin.hyatt@enron.com
## 462 6636 922 TO kevin.hyatt@enron.com
## 463 6641 923 CC kevin.hyatt@enron.com
## 464 6642 923 BCC kevin.hyatt@enron.com
## 465 6646 924 CC kevin.hyatt@enron.com
## 466 6647 924 BCC kevin.hyatt@enron.com
## 467 6649 925 TO kevin.hyatt@enron.com
## 468 6650 926 TO eric.gadd@enron.com
## 469 6651 926 TO susan.wadle@enron.com
## 470 6652 927 TO kevin.hyatt@enron.com
## 471 6658 928 TO eric.gadd@enron.com
## 472 6659 928 TO susan.wadle@enron.com
## 473 6660 929 TO kevin.hyatt@enron.com
## 474 6666 931 TO eric.gadd@enron.com
## 475 6667 931 TO susan.wadle@enron.com
## 476 6668 932 TO eric.gadd@enron.com
## 477 6669 932 TO susan.wadle@enron.com
## 478 6671 934 TO kevin.hyatt@enron.com
## 479 6674 935 TO kevin.hyatt@enron.com
## 480 6682 937 CC eric.gadd@enron.com
## 481 6683 937 CC michelle.lokay@enron.com
## 482 6684 937 BCC eric.gadd@enron.com
## 483 6685 937 BCC michelle.lokay@enron.com
## 484 6686 938 TO kevin.hyatt@enron.com
## 485 6687 939 TO kevin.hyatt@enron.com
## 486 6690 940 CC kevin.hyatt@enron.com
## 487 6691 940 BCC kevin.hyatt@enron.com
## 488 6692 941 TO kevin.hyatt@enron.com
## 489 6693 942 TO kevin.hyatt@enron.com
## 490 6694 943 TO kevin.hyatt@enron.com
## 491 6703 944 TO kevin.hyatt@enron.com
## 492 6706 945 TO kevin.hyatt@enron.com
## 493 6717 947 TO alstad@enron.com
## 494 6719 947 CC scott.patti@enron.com
## 495 6720 947 CC john.shafer@enron.com
## 496 6721 947 CC eric.gadd@enron.com
## 497 6722 947 CC kevin.hyatt@enron.com
## 498 6723 947 CC robert.kilmer@enron.com
## 499 6724 947 CC doug.cebryk@enron.com
## 500 6725 947 CC jon.schmidt@enron.com
## 501 6726 947 BCC scott.patti@enron.com
## 502 6727 947 BCC john.shafer@enron.com
## 503 6728 947 BCC eric.gadd@enron.com
## 504 6729 947 BCC kevin.hyatt@enron.com
## 505 6730 947 BCC robert.kilmer@enron.com
## 506 6731 947 BCC doug.cebryk@enron.com
## 507 6732 947 BCC jon.schmidt@enron.com
## 508 6733 948 TO kevin.hyatt@enron.com
## 509 6734 949 TO patti@enron.com
## 510 6736 949 CC john.shafer@enron.com
## 511 6737 949 CC eric.gadd@enron.com
## 512 6738 949 CC larry.f.campbell@enron.com
## 513 6739 949 CC kevin.hyatt@enron.com
## 514 6740 949 CC robert.kilmer@enron.com
## 515 6741 949 CC doug.cebryk@enron.com
## 516 6742 949 CC jon.schmidt@enron.com
## 517 6743 949 CC jon.alstad@enron.com
## 518 6744 949 BCC john.shafer@enron.com
## 519 6745 949 BCC eric.gadd@enron.com
## 520 6746 949 BCC larry.f.campbell@enron.com
## 521 6747 949 BCC kevin.hyatt@enron.com
## 522 6748 949 BCC robert.kilmer@enron.com
## 523 6749 949 BCC doug.cebryk@enron.com
## 524 6750 949 BCC jon.schmidt@enron.com
## 525 6751 949 BCC jon.alstad@enron.com
## 526 6752 950 TO kevin.hyatt@enron.com
## 527 6802 954 TO kevin.hyatt@enron.com
## 528 6843 958 TO kevin.hyatt@enron.com
## 529 6878 961 TO kevin.hyatt@enron.com
## 530 6904 964 TO kevin.hyatt@enron.com
## 531 6907 966 CC kevin.hyatt@enron.com
## 532 6908 966 CC larry.f.campbell@enron.com
## 533 6914 966 BCC kevin.hyatt@enron.com
## 534 6915 966 BCC larry.f.campbell@enron.com
## 535 6921 967 TO kevin.hyatt@enron.com
## 536 6926 967 CC danny.mccarty@enron.com
## 537 6927 967 CC steven.harris@enron.com
## 538 6928 967 BCC danny.mccarty@enron.com
## 539 6929 967 BCC steven.harris@enron.com
## 540 6931 968 TO kevin.hyatt@enron.com
## 541 6932 969 TO kevin.hyatt@enron.com
## 542 6936 970 TO kevin.hyatt@enron.com
## 543 6941 971 TO larry.f.campbell@enron.com
## 544 6945 971 CC kevin.hyatt@enron.com
## 545 6949 971 BCC kevin.hyatt@enron.com
## 546 6951 972 CC kevin.hyatt@enron.com
## 547 6952 972 BCC kevin.hyatt@enron.com
## 548 6954 973 TO larry.f.campbell@enron.com
## 549 6956 973 CC kevin.hyatt@enron.com
## 550 6959 973 BCC kevin.hyatt@enron.com
## 551 6962 974 TO larry.f.campbell@enron.com
## 552 6964 974 CC kevin.hyatt@enron.com
## 553 6966 974 BCC kevin.hyatt@enron.com
## 554 6973 975 CC kevin.hyatt@enron.com
## 555 6978 975 BCC kevin.hyatt@enron.com
## 556 6982 976 TO kevin.hyatt@enron.com
## 557 6983 977 TO kevin.hyatt@enron.com
## 558 6989 978 TO kevin.hyatt@enron.com
## 559 6990 979 TO kevin.hyatt@enron.com
## 560 6992 979 TO teb.lokey@enron.com
## 561 6993 980 TO kevin.hyatt@enron.com
## 562 6994 980 TO teb.lokey@enron.com
## 563 6996 981 TO teb.lokey@enron.com
## 564 6997 981 TO kevin.hyatt@enron.com
## 565 6999 982 TO kevin.hyatt@enron.com
## 566 7001 983 CC kevin.hyatt@enron.com
## 567 7002 983 BCC kevin.hyatt@enron.com
## 568 7003 984 TO kevin.hyatt@enron.com
## 569 7009 985 TO kevin.hyatt@enron.com
## 570 7015 986 TO stanley.horton@enron.com
## 571 7016 986 TO danny.mccarty@enron.com
## 572 7017 986 TO steven.harris@enron.com
## 573 7021 986 TO kevin.hyatt@enron.com
## 574 7023 986 TO rod.hayslett@enron.com
## 575 7028 987 TO rod.hayslett@enron.com
## 576 7032 987 CC kevin.hyatt@enron.com
## 577 7034 987 CC teb.lokey@enron.com
## 578 7035 987 CC danny.mccarty@enron.com
## 579 7038 987 CC shelley.corman@enron.com
## 580 7044 987 BCC kevin.hyatt@enron.com
## 581 7046 987 BCC teb.lokey@enron.com
## 582 7047 987 BCC danny.mccarty@enron.com
## 583 7050 987 BCC shelley.corman@enron.com
## 584 7053 988 TO danny.mccarty@enron.com
## 585 7054 988 CC kevin.hyatt@enron.com
## 586 7055 988 BCC kevin.hyatt@enron.com
## 587 7056 989 TO gina.taylor@enron.com
## 588 7061 990 TO kevin.hyatt@enron.com
## 589 7063 990 TO teb.lokey@enron.com
## 590 7064 990 TO danny.mccarty@enron.com
## 591 7067 990 TO shelley.corman@enron.com
## 592 7072 992 TO larry.f.campbell@enron.com
## 593 7076 992 CC kevin.hyatt@enron.com
## 594 7085 992 BCC kevin.hyatt@enron.com
## 595 7091 993 TO kevin.hyatt@enron.com
## 596 7097 994 TO kevin.hyatt@enron.com
## 597 7105 995 CC drew.fossum@enron.com
## 598 7106 995 CC kevin.hyatt@enron.com
## 599 7107 995 BCC drew.fossum@enron.com
## 600 7108 995 BCC kevin.hyatt@enron.com
## 601 7120 997 TO kevin.hyatt@enron.com
## 602 7126 998 CC kevin.hyatt@enron.com
## 603 7129 998 BCC kevin.hyatt@enron.com
## 604 7137 1001 TO kevin.hyatt@enron.com
## 605 7144 1002 TO kevin.hyatt@enron.com
## 606 7145 1003 TO kevin.hyatt@enron.com
## 607 7146 1004 TO kevin.hyatt@enron.com
## 608 7147 1005 TO kevin.hyatt@enron.com
## 609 7159 1007 TO scott . patti@enron.com
## 610 7160 1007 TO doug.cebryk@enron.com
## 611 7164 1011 TO kevin.hyatt@enron.com
## 612 7167 1013 TO kevin.hyatt@enron.com
## 613 7172 1013 CC larry.f.campbell@enron.com
## 614 7177 1013 BCC larry.f.campbell@enron.com
## 615 7179 1014 TO kevin.hyatt@enron.com
## 616 7183 1014 CC larry.f.campbell@enron.com
## 617 7189 1014 BCC larry.f.campbell@enron.com
## 618 7192 1015 TO kevin.hyatt@enron.com
## 619 7193 1016 TO kevin.hyatt@enron.com
## 620 7196 1016 CC larry.f.campbell@enron.com
## 621 7200 1016 BCC larry.f.campbell@enron.com
## 622 7202 1017 TO kevin.hyatt@enron.com
## 623 7204 1017 CC larry.f.campbell@enron.com
## 624 7207 1017 BCC larry.f.campbell@enron.com
## 625 7209 1018 TO kevin.hyatt@enron.com
## 626 7210 1018 CC john.shafer@enron.com
## 627 7211 1018 BCC john.shafer@enron.com
## 628 7212 1019 TO kevin.hyatt@enron.com
## 629 7213 1020 TO kevin.hyatt@enron.com
## 630 7214 1020 TO larry.f.campbell@enron.com
## 631 7219 1021 TO kevin.hyatt@enron.com
## 632 7222 1022 TO kevin.hyatt@enron.com
## 633 7229 1025 TO kevin.hyatt@enron.com
## 634 7235 1027 TO kevin.hyatt@enron.com
## 635 7239 1028 TO kevin.hyatt@enron.com
## 636 7247 1028 TO steven.harris@enron.com
## 637 7248 1028 TO lindy.donoho@enron.com
## 638 7252 1028 TO michelle.lokay@enron.com
## 639 7255 1029 TO kevin.hyatt@enron.com
## 640 7256 1030 TO kevin.hyatt@enron.com
## 641 7257 1031 TO kevin.hyatt@enron.com
## 642 7258 1032 TO kevin.hyatt@enron.com
## 643 7260 1032 TO shelley.corman@enron.com
## 644 7261 1033 TO kevin.hyatt@enron.com
## 645 7262 1034 TO kevin.hyatt@enron.com
## 646 7264 1035 TO kevin.hyatt@enron.com
## 647 7273 1036 TO kevin.hyatt@enron.com
## 648 7277 1038 TO kevin.hyatt@enron.com
## 649 7279 1039 CC kevin.hyatt@enron.com
## 650 7280 1039 BCC kevin.hyatt@enron.com
## 651 7281 1040 TO kevin.hyatt@enron.com
## 652 7284 1041 CC kevin.hyatt@enron.com
## 653 7287 1041 BCC kevin.hyatt@enron.com
## 654 7292 1042 CC kevin.hyatt@enron.com
## 655 7294 1042 BCC kevin.hyatt@enron.com
## 656 7295 1043 TO kevin.hyatt@enron.com
## 657 7306 1044 TO kevin.hyatt@enron.com
## 658 7309 1045 CC kevin.hyatt@enron.com
## 659 7310 1045 BCC kevin.hyatt@enron.com
## 660 7312 1046 CC kevin.hyatt@enron.com
## 661 7314 1046 BCC kevin.hyatt@enron.com
## 662 7317 1047 TO kevin.hyatt@enron.com
## 663 7318 1048 TO kevin.hyatt@enron.com
## 664 7320 1049 CC kevin.hyatt@enron.com
## 665 7321 1049 BCC kevin.hyatt@enron.com
## 666 7322 1050 TO kevin.hyatt@enron.com
## 667 7327 1051 TO kevin.hyatt@enron.com
## 668 7329 1052 CC kevin.hyatt@enron.com
## 669 7331 1052 BCC kevin.hyatt@enron.com
## 670 7333 1053 TO eric.faucheaux@enron.com
## 671 7334 1053 TO gale.ramsaran@enron.com
## 672 7335 1053 CC morgan.gottsponer@enron.com
## 673 7336 1053 CC john.millar@enron.com
## 674 7337 1053 BCC morgan.gottsponer@enron.com
## 675 7338 1053 BCC john.millar@enron.com
## 676 7339 1054 TO kevin.hyatt@enron.com
## 677 7341 1055 CC kevin.hyatt@enron.com
## 678 7342 1055 BCC kevin.hyatt@enron.com
## 679 7347 1056 CC kevin.hyatt@enron.com
## 680 7353 1056 BCC kevin.hyatt@enron.com
## 681 7356 1057 TO kevin.hyatt@enron.com
## 682 7358 1058 TO kevin.hyatt@enron.com
## 683 7365 1059 TO kevin.hyatt@enron.com
## 684 7367 1060 TO kevin.hyatt@enron.com
## 685 7369 1061 TO kevin.hyatt@enron.com
## 686 7370 1062 TO kevin.hyatt@enron.com
## 687 7373 1063 TO kevin.hyatt@enron.com
## 688 7390 1064 TO kevin.hyatt@enron.com
## 689 7403 1065 TO kevin.hyatt@enron.com
## 690 7415 1066 TO kevin.hyatt@enron.com
## 691 7419 1066 CC steven.harris@enron.com
## 692 7420 1066 CC shelley.corman@enron.com
## 693 7423 1066 BCC steven.harris@enron.com
## 694 7424 1066 BCC shelley.corman@enron.com
## 695 7427 1067 TO kevin.hyatt@enron.com
## 696 7428 1068 TO jeffery.fawcett@enron.com
## 697 7429 1068 CC morgan.gottsponer@enron.com
## 698 7430 1068 CC eric.faucheaux@enron.com
## 699 7431 1068 CC kevin.hyatt@enron.com
## 700 7432 1068 CC steven.harris@enron.com
## 701 7433 1068 CC lorraine.lindberg@enron.com
## 702 7434 1068 CC darrell.schoolcraft@enron.com
## 703 7435 1068 CC susan.scott@enron.com
## 704 7436 1068 CC earl.chanley@enron.com
## 705 7437 1068 BCC morgan.gottsponer@enron.com
## 706 7438 1068 BCC eric.faucheaux@enron.com
## 707 7439 1068 BCC kevin.hyatt@enron.com
## 708 7440 1068 BCC steven.harris@enron.com
## 709 7441 1068 BCC lorraine.lindberg@enron.com
## 710 7442 1068 BCC darrell.schoolcraft@enron.com
## 711 7443 1068 BCC susan.scott@enron.com
## 712 7444 1068 BCC earl.chanley@enron.com
## 713 7451 1069 CC steven.harris@enron.com
## 714 7452 1069 CC kevin.hyatt@enron.com
## 715 7458 1069 BCC steven.harris@enron.com
## 716 7459 1069 BCC kevin.hyatt@enron.com
## 717 7460 1070 TO steven.harris@enron.com
## 718 7462 1070 TO kevin.hyatt@enron.com
## 719 7473 1070 CC lindy.donoho@enron.com
## 720 7474 1070 CC michelle.lokay@enron.com
## 721 7484 1070 BCC lindy.donoho@enron.com
## 722 7485 1070 BCC michelle.lokay@enron.com
## 723 7486 1071 TO danny.mccarty@enron.com
## 724 7487 1071 TO steven.harris@enron.com
## 725 7488 1071 TO kevin.hyatt@enron.com
## 726 7499 1071 TO drew.fossum@enron.com
## 727 7500 1071 TO rod.hayslett@enron.com
## 728 7503 1072 TO kevin.hyatt@enron.com
## 729 7508 1073 TO kevin.hyatt@enron.com
## 730 7517 1073 CC steven.harris@enron.com
## 731 7518 1073 CC shelley.corman@enron.com
## 732 7520 1073 BCC steven.harris@enron.com
## 733 7521 1073 BCC shelley.corman@enron.com
## 734 7543 1075 CC steven.harris@enron.com
## 735 7544 1075 CC kevin.hyatt@enron.com
## 736 7558 1075 BCC steven.harris@enron.com
## 737 7559 1075 BCC kevin.hyatt@enron.com
## 738 7576 1076 CC steven.harris@enron.com
## 739 7577 1076 CC kevin.hyatt@enron.com
## 740 7579 1076 BCC steven.harris@enron.com
## 741 7580 1076 BCC kevin.hyatt@enron.com
## 742 7592 1077 TO kevin.hyatt@enron.com
## 743 7608 1078 CC kevin.hyatt@enron.com
## 744 7623 1078 BCC kevin.hyatt@enron.com
## 745 7646 1081 TO steven.harris@enron.com
## 746 7647 1081 TO kevin.hyatt@enron.com
## 747 7650 1081 TO michelle.lokay@enron.com
## 748 7651 1082 TO drew.fossum@enron.com
## 749 7652 1082 CC susan.scott@enron.com
## 750 7654 1082 CC mary.miller@enron.com
## 751 7655 1082 CC keith.petersen@enron.com
## 752 7656 1082 CC shelley.corman@enron.com
## 753 7657 1082 CC maria.pavlou@enron.com
## 754 7658 1082 CC jeffery.fawcett@enron.com
## 755 7659 1082 CC kevin.hyatt@enron.com
## 756 7660 1082 CC lorraine.lindberg@enron.com
## 757 7661 1082 BCC susan.scott@enron.com
## 758 7663 1082 BCC mary.miller@enron.com
## 759 7664 1082 BCC keith.petersen@enron.com
## 760 7665 1082 BCC shelley.corman@enron.com
## 761 7666 1082 BCC maria.pavlou@enron.com
## 762 7667 1082 BCC jeffery.fawcett@enron.com
## 763 7668 1082 BCC kevin.hyatt@enron.com
## 764 7669 1082 BCC lorraine.lindberg@enron.com
## 765 7675 1083 TO kevin.hyatt@enron.com
## 766 7677 1084 CC steven.harris@enron.com
## 767 7678 1084 CC kevin.hyatt@enron.com
## 768 7681 1084 BCC steven.harris@enron.com
## 769 7682 1084 BCC kevin.hyatt@enron.com
## 770 7690 1085 CC steven.harris@enron.com
## 771 7691 1085 CC kevin.hyatt@enron.com
## 772 7692 1085 CC drew.fossum@enron.com
## 773 7700 1085 BCC steven.harris@enron.com
## 774 7701 1085 BCC kevin.hyatt@enron.com
## 775 7702 1085 BCC drew.fossum@enron.com
## 776 7720 1088 TO steven.harris@enron.com
## 777 7722 1088 TO kevin.hyatt@enron.com
## 778 7729 1088 CC rod.hayslett@enron.com
## 779 7733 1088 CC tracy.geaccone@enron.com
## 780 7734 1088 BCC rod.hayslett@enron.com
## 781 7738 1088 BCC tracy.geaccone@enron.com
## 782 7746 1090 CC drew.fossum@enron.com
## 783 7747 1090 CC steven.harris@enron.com
## 784 7748 1090 CC kevin.hyatt@enron.com
## 785 7752 1090 BCC drew.fossum@enron.com
## 786 7753 1090 BCC steven.harris@enron.com
## 787 7754 1090 BCC kevin.hyatt@enron.com
## 788 7763 1093 CC steven.harris@enron.com
## 789 7774 1093 CC kevin.hyatt@enron.com
## 790 7783 1093 BCC steven.harris@enron.com
## 791 7794 1093 BCC kevin.hyatt@enron.com
## 792 7800 1094 TO kevin.hyatt@enron.com
## 793 7801 1095 TO steven.harris@enron.com
## 794 7803 1095 TO kevin.hyatt@enron.com
## 795 7804 1095 CC rod.hayslett@enron.com
## 796 7805 1095 BCC rod.hayslett@enron.com
## 797 7806 1096 TO no.address@enron.com
## 798 7807 1097 TO no.address@enron.com
## 799 7808 1098 TO no.address@enron.com
## 800 7809 1099 TO no.address@enron.com
## 801 7810 1100 TO no.address@enron.com
## 802 7811 1101 TO no.address@enron.com
## 803 7812 1102 TO no.address@enron.com
## 804 7813 1103 TO no.address@enron.com
## 805 7814 1104 TO no.address@enron.com
## 806 7815 1105 TO no.address@enron.com
## 807 7816 1106 TO no.address@enron.com
## 808 7817 1107 TO no.address@enron.com
## 809 7818 1108 TO no.address@enron.com
## 810 7819 1109 TO no.address@enron.com
## 811 7820 1110 TO no.address@enron.com
## 812 7821 1111 TO no.address@enron.com
## 813 7822 1112 TO no.address@enron.com
## 814 7823 1113 TO no.address@enron.com
## 815 7824 1114 TO no.address@enron.com
## 816 7825 1115 TO no.address@enron.com
## 817 7826 1116 TO no.address@enron.com
## 818 7827 1117 TO no.address@enron.com
## 819 7828 1118 TO no.address@enron.com
## 820 7829 1119 TO no.address@enron.com
## 821 7830 1120 TO no.address@enron.com
## 822 7831 1121 TO no.address@enron.com
## 823 7832 1122 TO no.address@enron.com
## 824 7833 1123 TO no.address@enron.com
## 825 7834 1124 TO no.address@enron.com
## 826 7835 1125 TO no.address@enron.com
## 827 7836 1126 TO no.address@enron.com
## 828 7837 1127 TO no.address@enron.com
## 829 7838 1128 TO no.address@enron.com
## 830 7839 1129 TO no.address@enron.com
## 831 7840 1130 TO no.address@enron.com
## 832 7841 1131 TO no.address@enron.com
## 833 7842 1132 TO no.address@enron.com
## 834 7843 1133 TO no.address@enron.com
## 835 7844 1134 TO no.address@enron.com
## 836 7845 1135 TO no.address@enron.com
## 837 7846 1136 TO no.address@enron.com
## 838 7847 1137 TO no.address@enron.com
## 839 7848 1138 TO no.address@enron.com
## 840 7849 1139 TO no.address@enron.com
## 841 7850 1140 TO no.address@enron.com
## 842 7851 1141 TO no.address@enron.com
## 843 7852 1142 TO no.address@enron.com
## 844 7853 1143 TO no.address@enron.com
## 845 7854 1144 TO no.address@enron.com
## 846 7855 1145 TO no.address@enron.com
## 847 7856 1146 TO no.address@enron.com
## 848 7857 1147 TO no.address@enron.com
## 849 7858 1148 TO no.address@enron.com
## 850 7859 1149 TO no.address@enron.com
## 851 7860 1150 TO no.address@enron.com
## 852 7861 1151 TO no.address@enron.com
## 853 7862 1152 TO no.address@enron.com
## 854 7863 1153 TO no.address@enron.com
## 855 7864 1154 TO no.address@enron.com
## 856 7865 1155 TO no.address@enron.com
## 857 7866 1156 TO no.address@enron.com
## 858 7867 1157 TO no.address@enron.com
## 859 7868 1158 TO no.address@enron.com
## 860 7869 1159 TO no.address@enron.com
## 861 7870 1160 TO no.address@enron.com
## 862 7871 1161 TO no.address@enron.com
## 863 7872 1162 TO no.address@enron.com
## 864 7920 1182 TO no.address@enron.com
## 865 7932 1191 TO kevin.hyatt@enron.com
## 866 7934 1193 TO kevin.hyatt@enron.com
## 867 7941 1196 TO kevin.hyatt@enron.com
## 868 7949 1197 TO kevin.hyatt@enron.com
## 869 7954 1199 CC kevin.hyatt@enron.com
## 870 7955 1199 BCC kevin.hyatt@enron.com
## 871 7958 1201 TO kevin.hyatt@enron.com
## 872 7963 1203 TO kevin.hyatt@enron.com
## 873 7964 1204 TO kevin.hyatt@enron.com
## 874 7969 1208 TO teb.lokey@enron.com
## 875 7971 1208 TO kevin.hyatt@enron.com
## 876 7973 1208 TO michelle.lokay@enron.com
## 877 7982 1211 TO kevin.hyatt@enron.com
## 878 7983 1212 TO kevin.hyatt@enron.com
## 879 7985 1213 TO teb.lokey@enron.com
## 880 7987 1213 TO kevin.hyatt@enron.com
## 881 8007 1223 TO kevin.hyatt@enron.com
## 882 8008 1224 TO kevin.hyatt@enron.com
## 883 8017 1226 CC kevin.hyatt@enron.com
## 884 8019 1226 BCC kevin.hyatt@enron.com
## 885 8051 1229 TO kevin.hyatt@enron.com
## 886 8052 1230 TO kevin.hyatt@enron.com
## 887 8056 1233 TO kevin.hyatt@enron.com
## 888 8057 1234 TO kevin.hyatt@enron.com
## 889 8084 1239 TO kevin.hyatt@enron.com
## 890 8086 1241 TO kevin.hyatt@enron.com
## 891 8087 1241 CC lindy.donoho@enron.com
## 892 8088 1241 BCC lindy.donoho@enron.com
## 893 8091 1244 TO eric.gadd@enron.com
## 894 8092 1245 TO eric.gadd@enron.com
## 895 8093 1246 TO eric.gadd@enron.com
## 896 8095 1247 CC lorraine.lindberg@enron.com
## 897 8096 1247 BCC lorraine.lindberg@enron.com
## 898 8097 1248 TO faggard@enron.com
## 899 8100 1250 TO mark.brand@enron.com
## 900 8101 1251 TO eric.gadd@enron.com
## 901 8102 1251 CC michelle.lokay@enron.com
## 902 8103 1251 BCC michelle.lokay@enron.com
## 903 8104 1252 TO julie.armstrong@enron.com
## 904 8105 1253 TO steven.harris@enron.com
## 905 8106 1253 TO lindy.donoho@enron.com
## 906 8107 1253 TO tracy.geaccone@enron.com
## 907 8108 1253 TO rod.hayslett@enron.com
## 908 8109 1254 TO v.dickerson@enron.com
## 909 8110 1255 TO dennis.lee@enron.com
## 910 8111 1256 TO mike.nelson@enron.com
## 911 8112 1257 TO bob.chandler@enron.com
## 912 8113 1258 TO a..smith@enron.com
## 913 8114 1259 TO debra.thompson@enron.com
## 914 8115 1260 TO dennis.alters@enron.com
## 915 8116 1260 TO larry.f.campbell@enron.com
## 916 8117 1260 TO doug.cebryk@enron.com
## 917 8118 1260 TO sarah.haden@enron.com
## 918 8119 1260 TO blair.lichtenwalter@enron.com
## 919 8120 1260 TO teb.lokey@enron.com
## 920 8121 1260 TO ron.matthews@enron.com
## 921 8122 1260 TO johnny.mcgee@enron.com
## 922 8123 1260 TO john.shafer@enron.com
## 923 8124 1260 TO gina.taylor@enron.com
## 924 8125 1260 TO stephen.veatch@enron.com
## 925 8126 1260 TO kimberly.watson@enron.com
## 926 8127 1261 TO jesse.morris@enron.com
## 927 8129 1263 TO susan.wadle@enron.com
## 928 8130 1263 CC eric.gadd@enron.com
## 929 8131 1263 BCC eric.gadd@enron.com
## 930 8133 1265 TO steven.harris@enron.com
## 931 8134 1265 TO lindy.donoho@enron.com
## 932 8135 1265 TO kimberly.watson@enron.com
## 933 8136 1265 TO eric.gadd@enron.com
## 934 8137 1265 CC susan.wadle@enron.com
## 935 8138 1265 CC audrey.robertson@enron.com
## 936 8139 1265 CC v.dickerson@enron.com
## 937 8140 1265 BCC susan.wadle@enron.com
## 938 8141 1265 BCC audrey.robertson@enron.com
## 939 8142 1265 BCC v.dickerson@enron.com
## 940 8143 1266 TO susan.wadle@enron.com
## 941 8144 1266 TO audrey.robertson@enron.com
## 942 8145 1267 TO steven.harris@enron.com
## 943 8146 1267 TO lindy.donoho@enron.com
## 944 8147 1267 TO kimberly.watson@enron.com
## 945 8148 1267 TO eric.gadd@enron.com
## 946 8149 1267 CC v.dickerson@enron.com
## 947 8150 1267 BCC v.dickerson@enron.com
## 948 8152 1268 CC michelle.lokay@enron.com
## 949 8153 1268 BCC michelle.lokay@enron.com
## 950 8154 1269 TO john.millar@enron.com
## 951 8155 1270 TO susan.wadle@enron.com
## 952 8156 1271 TO john.millar@enron.com
## 953 8157 1272 TO rector@enron.com
## 954 8160 1274 TO lillian.villarreal@enron.com
## 955 8161 1274 TO geneva.davis@enron.com
## 956 8162 1274 TO pamela.rush@enron.com
## 957 8163 1275 TO rector@enron.com
## 958 8167 1278 TO rector@enron.com
## 959 8169 1279 TO james.centilli@enron.com
## 960 8170 1279 TO david.junus@enron.com
## 961 8171 1279 CC eric.gadd@enron.com
## 962 8172 1279 BCC eric.gadd@enron.com
## 963 8173 1280 TO susan.wadle@enron.com
## 964 8174 1280 TO dennis.alters@enron.com
## 965 8175 1280 TO larry.f.campbell@enron.com
## 966 8176 1280 TO doug.cebryk@enron.com
## 967 8177 1280 TO sarah.haden@enron.com
## 968 8178 1280 TO blair.lichtenwalter@enron.com
## 969 8179 1280 TO teb.lokey@enron.com
## 970 8180 1280 TO ron.matthews@enron.com
## 971 8181 1280 TO johnny.mcgee@enron.com
## 972 8182 1280 TO john.shafer@enron.com
## 973 8183 1280 TO gina.taylor@enron.com
## 974 8184 1280 TO stephen.veatch@enron.com
## 975 8185 1280 TO kimberly.watson@enron.com
## 976 8186 1281 TO eric.gadd@enron.com
## 977 8187 1281 TO susan.wadle@enron.com
## 978 8190 1284 TO ron.matthews@enron.com
## 979 8192 1286 TO ron.matthews@enron.com
## 980 8193 1286 TO ben.asante@enron.com
## 981 8194 1286 CC david.junus@enron.com
## 982 8195 1286 CC eric.gadd@enron.com
## 983 8196 1286 BCC david.junus@enron.com
## 984 8197 1286 BCC eric.gadd@enron.com
## 985 8198 1287 TO lillian.villarreal@enron.com
## 986 8199 1287 TO geneva.davis@enron.com
## 987 8200 1288 TO ben.asante@enron.com
## 988 8201 1288 TO ron.matthews@enron.com
## 989 8202 1288 CC michelle.lokay@enron.com
## 990 8203 1288 CC david.junus@enron.com
## 991 8204 1288 CC james.centilli@enron.com
## 992 8205 1288 CC darrell.schoolcraft@enron.com
## 993 8206 1288 CC dennis.alters@enron.com
## 994 8207 1288 CC eric.gadd@enron.com
## 995 8208 1288 BCC michelle.lokay@enron.com
## 996 8209 1288 BCC david.junus@enron.com
## 997 8210 1288 BCC james.centilli@enron.com
## 998 8211 1288 BCC darrell.schoolcraft@enron.com
## 999 8212 1288 BCC dennis.alters@enron.com
## 1000 8213 1288 BCC eric.gadd@enron.com
## 1001 8214 1289 TO ron.matthews@enron.com
## 1002 8215 1289 TO ben.asante@enron.com
## 1003 8216 1289 CC darrell.schoolcraft@enron.com
## 1004 8217 1289 CC michelle.lokay@enron.com
## 1005 8218 1289 CC james.centilli@enron.com
## 1006 8219 1289 CC david.junus@enron.com
## 1007 8220 1289 CC eric.gadd@enron.com
## 1008 8221 1289 CC dennis.alters@enron.com
## 1009 8222 1289 BCC darrell.schoolcraft@enron.com
## 1010 8223 1289 BCC michelle.lokay@enron.com
## 1011 8224 1289 BCC james.centilli@enron.com
## 1012 8225 1289 BCC david.junus@enron.com
## 1013 8226 1289 BCC eric.gadd@enron.com
## 1014 8227 1289 BCC dennis.alters@enron.com
## 1015 8228 1290 TO lillian.villarreal@enron.com
## 1016 8232 1294 TO lorna.brennan@enron.com
## 1017 8233 1295 TO michelle.foust@enron.com
## 1018 8234 1296 TO ron.matthews@enron.com
## 1019 8235 1297 TO eric.gadd@enron.com
## 1020 8236 1297 CC susan.wadle@enron.com
## 1021 8237 1297 BCC susan.wadle@enron.com
## 1022 8238 1298 TO buzz.smith@enron.com
## 1023 8239 1298 CC dennis.alters@enron.com
## 1024 8240 1298 BCC dennis.alters@enron.com
## 1025 8241 1299 TO v.dickerson@enron.com
## 1026 8242 1299 CC eric.gadd@enron.com
## 1027 8243 1299 BCC eric.gadd@enron.com
## 1028 8245 1301 TO a..howard@enron.com
## 1029 8246 1301 CC eric.gadd@enron.com
## 1030 8247 1301 BCC eric.gadd@enron.com
## 1031 8249 1303 TO gapinski@enron.com
## 1032 8257 1306 TO anzer@enron.com
## 1033 8259 1307 TO lorna.brennan@enron.com
## 1034 8260 1308 TO ron.matthews@enron.com
## 1035 8261 1308 TO darrell.schoolcraft@enron.com
## 1036 8262 1309 TO eric.gadd@enron.com
## 1037 8263 1309 TO susan.wadle@enron.com
## 1038 8265 1311 TO julie.armstrong@enron.com
## 1039 8266 1311 CC julie.armstrong@enron.com
## 1040 8267 1311 BCC julie.armstrong@enron.com
## 1041 8271 1315 TO no.address@enron.com
## 1042 8272 1315 TO no.address@enron.com
## 1043 8273 1315 TO no.address@enron.com
## 1044 8274 1315 TO no.address@enron.com
## 1045 8275 1315 TO john.millar@enron.com
## 1046 8276 1315 TO no.address@enron.com
## 1047 8277 1315 TO no.address@enron.com
## 1048 8278 1315 TO no.address@enron.com
## 1049 8279 1315 TO no.address@enron.com
## 1050 8280 1316 TO nancy.bagot@enron.com
## 1051 8281 1317 TO steven.harris@enron.com
## 1052 8282 1318 TO herrera@enron.com
## 1053 8284 1319 TO doug.cebryk@enron.com
## 1054 8286 1320 CC michelle.lokay@enron.com
## 1055 8287 1320 BCC michelle.lokay@enron.com
## 1056 8288 1321 TO lillian.villarreal@enron.com
## 1057 8289 1322 TO elberg.gelin@enron.com
## 1058 8290 1322 TO v.dickerson@enron.com
## 1059 8292 1324 TO kenneth.lay@enron.com
## 1060 8293 1325 TO kimberly.watson@enron.com
## 1061 8294 1325 CC tracy.geaccone@enron.com
## 1062 8295 1325 BCC tracy.geaccone@enron.com
## 1063 8298 1328 TO eric.gadd@enron.com
## 1064 8303 1333 TO stephen.dowd@enron.com
## 1065 8304 1334 TO lorraine.lindberg@enron.com
## 1066 8306 1336 TO no.address@enron.com
## 1067 8309 1337 TO lorraine.lindberg@enron.com
## 1068 8310 1338 TO kimberly.watson@enron.com
## 1069 8311 1338 CC tracy.geaccone@enron.com
## 1070 8312 1338 BCC tracy.geaccone@enron.com
## 1071 8313 1339 TO susan.wadle@enron.com
## 1072 8314 1339 TO eric.gadd@enron.com
## 1073 8315 1339 TO steve.dowd@enron.com
## 1074 8317 1341 TO blair.lichtenwalter@enron.com
## 1075 8318 1342 TO janet.butler@enron.com
## 1076 8321 1345 TO blair.lichtenwalter@enron.com
## 1077 8322 1345 TO teb.lokey@enron.com
## 1078 8323 1345 TO robert.kilmer@enron.com
## 1079 8324 1345 TO eric.gadd@enron.com
## 1080 8325 1345 TO steven.harris@enron.com
## 1081 8326 1346 TO deyoung@enron.com
## 1082 8328 1347 TO susan.wadle@enron.com
## 1083 8329 1348 TO james.centilli@enron.com
## 1084 8330 1348 CC eric.gadd@enron.com
## 1085 8331 1348 BCC eric.gadd@enron.com
## 1086 8332 1349 TO susan.wadle@enron.com
## 1087 8335 1352 TO susan.wadle@enron.com
## 1088 8336 1353 TO lorraine.lindberg@enron.com
## 1089 8338 1355 TO dean.mccallister@enron.com
## 1090 8339 1355 CC bob.bandel@enron.com
## 1091 8340 1355 BCC bob.bandel@enron.com
## 1092 8345 1360 TO miller@enron.com
## 1093 8348 1362 TO paul.cherry@enron.com
## 1094 8349 1363 TO eric.gadd@enron.com
## 1095 8350 1364 TO victoria.wilbeck@enron.com
## 1096 8351 1365 TO donna.lowry@enron.com
## 1097 8353 1367 TO lindy.donoho@enron.com
## 1098 8354 1367 TO lorraine.lindberg@enron.com
## 1099 8355 1367 TO tk.lohman@enron.com
## 1100 8356 1367 TO michelle.lokay@enron.com
## 1101 8357 1367 TO mark.mcconnell@enron.com
## 1102 8358 1367 TO audrey.robertson@enron.com
## 1103 8359 1367 TO kimberly.watson@enron.com
## 1104 8360 1367 TO paul.y barbo@enron.com
## 1105 8361 1368 TO ron.matthews@enron.com
## 1106 8362 1368 TO l..eisenstein@enron.com
## 1107 8363 1368 TO l..smith@enron.com
## 1108 8364 1368 CC eric.gadd@enron.com
## 1109 8365 1368 BCC eric.gadd@enron.com
## 1110 8366 1369 TO l..eisenstein@enron.com
## 1111 8368 1371 TO fawcett@enron.com
## 1112 8370 1372 TO karen.brostad@enron.com
## 1113 8371 1373 TO eric.gadd@enron.com
## 1114 8372 1374 TO glen.hass@enron.com
## 1115 8373 1374 CC eric.gadd@enron.com
## 1116 8374 1374 CC steven.harris@enron.com
## 1117 8375 1374 BCC eric.gadd@enron.com
## 1118 8376 1374 BCC steven.harris@enron.com
## 1119 8377 1375 TO karen.brostad@enron.com
## 1120 8378 1376 TO steven.harris@enron.com
## 1121 8379 1376 TO kimberly.watson@enron.com
## 1122 8380 1376 CC eric.gadd@enron.com
## 1123 8381 1376 BCC eric.gadd@enron.com
## 1124 8384 1379 TO bill.rapp@enron.com
## 1125 8385 1380 TO bill.rapp@enron.com
## 1126 8386 1380 CC eric.gadd@enron.com
## 1127 8387 1380 BCC eric.gadd@enron.com
## 1128 8389 1382 TO communications@enron.com
## 1129 8390 1383 TO eric.gadd@enron.com
## 1130 8392 1385 TO eric.gadd@enron.com
## 1131 8394 1387 TO susan.wadle@enron.com
## 1132 8395 1387 TO eric.gadd@enron.com
## 1133 8396 1388 TO no.address@enron.com
## 1134 8397 1388 TO mark.brand@enron.com
## 1135 8398 1389 TO e..rosenberg@enron.com
## 1136 8399 1389 CC eric.gadd@enron.com
## 1137 8400 1389 BCC eric.gadd@enron.com
## 1138 8403 1392 TO krejci@enron.com
## 1139 8405 1393 TO lindy.donoho@enron.com
## 1140 8406 1393 TO lorraine.lindberg@enron.com
## 1141 8407 1393 TO tk.lohman@enron.com
## 1142 8408 1393 TO michelle.lokay@enron.com
## 1143 8409 1393 TO mark.mcconnell@enron.com
## 1144 8410 1393 TO audrey.robertson@enron.com
## 1145 8411 1393 TO kimberly.watson@enron.com
## 1146 8412 1393 TO paul.y barbo@enron.com
## 1147 8413 1393 CC eric.gadd@enron.com
## 1148 8414 1393 BCC eric.gadd@enron.com
## 1149 8415 1394 TO roger.westbrook@enron.com
## 1150 8416 1395 TO eric.gadd@enron.com
## 1151 8417 1395 TO lorraine.lindberg@enron.com
## 1152 8418 1395 TO kimberly.watson@enron.com
## 1153 8419 1395 TO mark.mcconnell@enron.com
## 1154 8420 1395 CC steve.dowd@enron.com
## 1155 8421 1395 BCC steve.dowd@enron.com
## 1156 8422 1396 TO john.buchanan@enron.com
## 1157 8423 1397 TO glen.hass@enron.com
## 1158 8424 1398 TO leticia.flores@enron.com
## 1159 8425 1399 TO bruce.tuttle@enron.com
## 1160 8426 1400 TO kovin@enron.com
## 1161 8428 1401 TO l..smith@enron.com
## 1162 8429 1402 TO rehrig@enron.com
## 1163 8431 1403 TO ron.matthews@enron.com
## 1164 8433 1405 TO susan.wadle@enron.com
## 1165 8434 1406 TO eric.gadd@enron.com
## 1166 8435 1407 TO susan.wadle@enron.com
## 1167 8437 1409 TO eric.gadd@enron.com
## 1168 8438 1409 CC susan.wadle@enron.com
## 1169 8439 1409 BCC susan.wadle@enron.com
## 1170 8440 1410 TO bob.bandel@enron.com
## 1171 8441 1411 TO roger.westbrook@enron.com
## 1172 8442 1412 TO eric.gadd@enron.com
## 1173 8443 1413 TO eric.gadd@enron.com
## 1174 8444 1414 TO eric.gadd@enron.com
## 1175 8447 1417 TO susan.wadle@enron.com
## 1176 8448 1417 TO eric.gadd@enron.com
## 1177 8454 1423 TO jean.mcfarland@enron.com
## 1178 8455 1424 TO eric.gadd@enron.com
## 1179 8456 1424 TO lorraine.lindberg@enron.com
## 1180 8458 1426 TO susan.wadle@enron.com
## 1181 8459 1427 TO susan.wadle@enron.com
## 1182 8461 1429 TO eric.gadd@enron.com
## 1183 8462 1430 TO jean.mcfarland@enron.com
## 1184 8464 1432 TO bill.rapp@enron.com
## 1185 8466 1434 TO frank.carriere@enron.com
## 1186 8467 1434 CC john.cobb@enron.com
## 1187 8468 1434 CC james.saunders@enron.com
## 1188 8469 1434 CC mary.hubbard@enron.com
## 1189 8470 1434 BCC john.cobb@enron.com
## 1190 8471 1434 BCC james.saunders@enron.com
## 1191 8472 1434 BCC mary.hubbard@enron.com
## 1192 8477 1439 TO mark.mcconnell@enron.com
## 1193 8478 1440 TO mary.hubbard@enron.com
## 1194 8479 1440 CC frank.carriere@enron.com
## 1195 8480 1440 BCC frank.carriere@enron.com
## 1196 8483 1443 TO ron.matthews@enron.com
## 1197 8484 1444 TO james.centilli@enron.com
## 1198 8485 1445 TO james.centilli@enron.com
## 1199 8486 1445 CC eric.gadd@enron.com
## 1200 8487 1445 BCC eric.gadd@enron.com
## 1201 8488 1446 TO dennis.alters@enron.com
## 1202 8489 1446 TO larry.f.campbell@enron.com
## 1203 8490 1446 TO sarah.haden@enron.com
## 1204 8491 1446 TO blair.lichtenwalter@enron.com
## 1205 8492 1446 TO teb.lokey@enron.com
## 1206 8493 1446 TO ron.matthews@enron.com
## 1207 8494 1446 TO johnny.mcgee@enron.com
## 1208 8495 1446 TO john.shafer@enron.com
## 1209 8496 1446 TO gina.taylor@enron.com
## 1210 8497 1446 TO stephen.veatch@enron.com
## 1211 8498 1446 TO kimberly.watson@enron.com
## 1212 8499 1446 CC eric.gadd@enron.com
## 1213 8500 1446 CC susan.wadle@enron.com
## 1214 8501 1446 BCC eric.gadd@enron.com
## 1215 8502 1446 BCC susan.wadle@enron.com
## 1216 8505 1449 TO darrell.schoolcraft@enron.com
## 1217 8506 1449 TO ron.matthews@enron.com
## 1218 8507 1450 TO frank.carriere@enron.com
## 1219 8508 1450 TO mary.hubbard@enron.com
## 1220 8509 1451 TO michelle.lokay@enron.com
## 1221 8510 1452 TO bruce.tuttle@enron.com
## 1222 8512 1454 TO darrell.schoolcraft@enron.com
## 1223 8513 1455 TO eric.gadd@enron.com
## 1224 8514 1456 TO dennis.lee@enron.com
## 1225 8515 1457 TO susan.wadle@enron.com
## 1226 8516 1458 TO robert.baker@enron.com
## 1227 8517 1458 TO team.monahans@enron.com
## 1228 8518 1459 TO rbaker2@enron.com
## 1229 8519 1460 TO eric.gadd@enron.com
## 1230 8520 1461 TO eric.gadd@enron.com
## 1231 8522 1463 TO susan.wadle@enron.com
## 1232 8523 1464 TO susan.wadle@enron.com
## 1233 8524 1465 TO susan.wadle@enron.com
## 1234 8527 1468 TO eric.gadd@enron.com
## 1235 8528 1469 TO michael.ratner@enron.com
## 1236 8532 1472 CC eric.gadd@enron.com
## 1237 8533 1472 BCC eric.gadd@enron.com
## 1238 8534 1473 TO a..howard@enron.com
## 1239 8535 1474 TO a..howard@enron.com
## 1240 8536 1475 TO jean.mcfarland@enron.com
## 1241 8538 1477 TO a..howard@enron.com
## 1242 8539 1477 CC eric.gadd@enron.com
## 1243 8540 1477 BCC eric.gadd@enron.com
## 1244 8542 1479 TO a..howard@enron.com
## 1245 8545 1482 TO a..howard@enron.com
## 1246 8546 1482 CC eric.gadd@enron.com
## 1247 8547 1482 BCC eric.gadd@enron.com
## 1248 8548 1483 TO a..howard@enron.com
## 1249 8549 1484 TO eric.gadd@enron.com
## 1250 8550 1485 TO eric.gadd@enron.com
## 1251 8551 1485 TO susan.wadle@enron.com
## 1252 8553 1487 TO david.roensch@enron.com
## 1253 8554 1488 TO a..howard@enron.com
## 1254 8555 1489 TO no.address@enron.com
## 1255 8556 1489 TO no.address@enron.com
## 1256 8557 1489 TO no.address@enron.com
## 1257 8558 1489 TO no.address@enron.com
## 1258 8559 1489 TO no.address@enron.com
## 1259 8560 1489 TO no.address@enron.com
## 1260 8561 1489 TO no.address@enron.com
## 1261 8562 1489 TO no.address@enron.com
## 1262 8563 1489 TO john.millar@enron.com
## 1263 8564 1489 TO no.address@enron.com
## 1264 8565 1489 TO no.address@enron.com
## 1265 8566 1489 TO no.address@enron.com
## 1266 8567 1489 TO no.address@enron.com
## 1267 8568 1489 TO no.address@enron.com
## 1268 8569 1489 TO no.address@enron.com
## 1269 8570 1489 TO no.address@enron.com
## 1270 8571 1490 TO no.address@enron.com
## 1271 8572 1490 CC a..howard@enron.com
## 1272 8573 1490 CC davis.thames@enron.com
## 1273 8574 1490 BCC a..howard@enron.com
## 1274 8575 1490 BCC davis.thames@enron.com
## 1275 8576 1491 TO eric.gadd@enron.com
## 1276 8580 1495 TO a..howard@enron.com
## 1277 8581 1496 TO a..howard@enron.com
## 1278 8583 1498 TO dennis.alters@enron.com
## 1279 8584 1498 TO larry.f.campbell@enron.com
## 1280 8585 1498 TO sarah.haden@enron.com
## 1281 8586 1498 TO blair.lichtenwalter@enron.com
## 1282 8587 1498 TO teb.lokey@enron.com
## 1283 8588 1498 TO ron.matthews@enron.com
## 1284 8589 1498 TO johnny.mcgee@enron.com
## 1285 8590 1498 TO john.shafer@enron.com
## 1286 8591 1498 TO gina.taylor@enron.com
## 1287 8592 1498 TO stephen.veatch@enron.com
## 1288 8593 1498 TO kimberly.watson@enron.com
## 1289 8594 1499 TO eric.gadd@enron.com
## 1290 8596 1501 TO eric.gadd@enron.com
## 1291 8599 1504 TO a..howard@enron.com
## 1292 8601 1506 TO ron.matthews@enron.com
## 1293 8602 1506 TO eric.gadd@enron.com
## 1294 8603 1506 TO james.centilli@enron.com
## 1295 8604 1507 TO steven.harris@enron.com
## 1296 8605 1507 TO kimberly.watson@enron.com
## 1297 8606 1507 TO lorraine.lindberg@enron.com
## 1298 8607 1507 TO michelle.lokay@enron.com
## 1299 8608 1507 TO tk.lohman@enron.com
## 1300 8609 1507 TO mark.mcconnell@enron.com
## 1301 8610 1508 TO a..howard@enron.com
## 1302 8611 1509 TO a..howard@enron.com
## 1303 8614 1512 TO bruce.tuttle@enron.com
## 1304 8615 1513 TO james.saunders@enron.com
## 1305 8616 1514 TO a..howard@enron.com
## 1306 8617 1514 CC eric.gadd@enron.com
## 1307 8618 1514 BCC eric.gadd@enron.com
## 1308 8620 1516 TO jean.mcfarland@enron.com
## 1309 8621 1517 TO hrgim@enron.com
## 1310 8622 1518 TO eric.gadd@enron.com
## 1311 8623 1519 TO doug.cebryk@enron.com
## 1312 8624 1519 CC eric.gadd@enron.com
## 1313 8625 1519 BCC eric.gadd@enron.com
## 1314 8626 1520 TO tony.pryor@enron.com
## 1315 8629 1523 TO tk.lohman@enron.com
## 1316 8632 1526 TO dennis.alters@enron.com
## 1317 8633 1526 TO larry.f.campbell@enron.com
## 1318 8634 1526 TO doug.cebryk@enron.com
## 1319 8635 1526 TO sarah.haden@enron.com
## 1320 8636 1526 TO blair.lichtenwalter@enron.com
## 1321 8637 1526 TO teb.lokey@enron.com
## 1322 8638 1526 TO ron.matthews@enron.com
## 1323 8639 1526 TO johnny.mcgee@enron.com
## 1324 8640 1526 TO john.shafer@enron.com
## 1325 8641 1526 TO gina.taylor@enron.com
## 1326 8642 1526 TO stephen.veatch@enron.com
## 1327 8643 1526 TO kimberly.watson@enron.com
## 1328 8644 1526 CC eric.gadd@enron.com
## 1329 8645 1526 CC susan.wadle@enron.com
## 1330 8646 1526 BCC eric.gadd@enron.com
## 1331 8647 1526 BCC susan.wadle@enron.com
## 1332 8649 1528 TO george.margoliner@enron.com
## 1333 8655 1534 TO lindy.donoho@enron.com
## 1334 8656 1534 TO darrell.schoolcraft@enron.com
## 1335 8657 1534 TO lynn.blair@enron.com
## 1336 8658 1534 TO steve.january@enron.com
## 1337 8659 1534 CC eric.gadd@enron.com
## 1338 8660 1534 CC kimberly.watson@enron.com
## 1339 8661 1534 BCC eric.gadd@enron.com
## 1340 8662 1534 BCC kimberly.watson@enron.com
## 1341 8663 1535 TO james.saunders@enron.com
## 1342 8664 1535 TO teb.lokey@enron.com
## 1343 8665 1535 TO blair.lichtenwalter@enron.com
## 1344 8666 1535 TO stephen.veatch@enron.com
## 1345 8667 1535 TO eric.gadd@enron.com
## 1346 8668 1535 TO james.centilli@enron.com
## 1347 8669 1536 TO susan.wadle@enron.com
## 1348 8670 1537 TO dennis.alters@enron.com
## 1349 8671 1537 TO larry.f.campbell@enron.com
## 1350 8672 1537 TO doug.cebryk@enron.com
## 1351 8673 1537 TO sarah.haden@enron.com
## 1352 8674 1537 TO blair.lichtenwalter@enron.com
## 1353 8675 1537 TO teb.lokey@enron.com
## 1354 8676 1537 TO ron.matthews@enron.com
## 1355 8677 1537 TO johnny.mcgee@enron.com
## 1356 8678 1537 TO john.shafer@enron.com
## 1357 8679 1537 TO gina.taylor@enron.com
## 1358 8680 1537 TO stephen.veatch@enron.com
## 1359 8681 1537 TO kimberly.watson@enron.com
## 1360 8683 1539 TO doug.cebryk@enron.com
## 1361 8691 1545 TO james.centilli@enron.com
## 1362 8692 1546 TO james.centilli@enron.com
## 1363 8695 1549 TO eric.gadd@enron.com
## 1364 8697 1551 TO kathy.sturr@enron.com
## 1365 8703 1557 TO eric.gadd@enron.com
## 1366 8705 1559 TO preston.roobaert@enron.com
## 1367 8707 1561 TO preston.roobaert@enron.com
## 1368 8716 1570 TO kevin.hyatt@enron.com
## 1369 8718 1572 TO kevin.hyatt@enron.com
## 1370 8727 1573 TO kevin.hyatt@enron.com
## 1371 8784 1573 TO steven.harris@enron.com
## 1372 8785 1573 TO lindy.donoho@enron.com
## 1373 8789 1573 TO michelle.lokay@enron.com
## 1374 8793 1573 TO paul.y barbo@enron.com
## 1375 8794 1574 TO kevin.hyatt@enron.com
## 1376 8797 1576 TO kevin.hyatt@enron.com
## 1377 8804 1577 TO kevin.hyatt@enron.com
## 1378 8809 1577 TO steven.harris@enron.com
## 1379 8810 1577 TO lindy.donoho@enron.com
## 1380 8814 1577 TO michelle.lokay@enron.com
## 1381 8818 1577 TO paul.y barbo@enron.com
## 1382 8822 1579 TO kevin.hyatt@enron.com
## 1383 8829 1586 TO kevin.hyatt@enron.com
## 1384 8832 1589 TO kevin.hyatt@enron.com
## 1385 8835 1592 TO kevin.hyatt@enron.com
## 1386 8841 1598 TO kevin.hyatt@enron.com
## 1387 8850 1599 TO kevin.hyatt@enron.com
## 1388 8853 1600 CC kevin.hyatt@enron.com
## 1389 8856 1600 BCC kevin.hyatt@enron.com
## 1390 8860 1602 TO kevin.hyatt@enron.com
## 1391 8861 1602 CC steven.harris@enron.com
## 1392 8871 1602 BCC steven.harris@enron.com
## 1393 8887 1603 CC kevin.hyatt@enron.com
## 1394 8893 1603 BCC kevin.hyatt@enron.com
## 1395 8898 1604 TO kevin.hyatt@enron.com
## 1396 8899 1605 TO kevin.hyatt@enron.com
## 1397 8900 1606 TO kevin.hyatt@enron.com
## 1398 8901 1606 TO lindy.donoho@enron.com
## 1399 8902 1606 TO steven.harris@enron.com
## 1400 8905 1606 TO michelle.lokay@enron.com
## 1401 8912 1607 TO kevin.hyatt@enron.com
## 1402 8915 1607 TO steven.harris@enron.com
## 1403 8916 1607 TO lindy.donoho@enron.com
## 1404 8920 1607 TO michelle.lokay@enron.com
## 1405 8931 1609 TO kevin.hyatt@enron.com
## 1406 8939 1609 TO steven.harris@enron.com
## 1407 8940 1609 TO lindy.donoho@enron.com
## 1408 8944 1609 TO michelle.lokay@enron.com
## 1409 8949 1610 TO kevin.hyatt@enron.com
## 1410 8957 1611 TO steven.harris@enron.com
## 1411 8958 1611 TO lindy.donoho@enron.com
## 1412 8963 1611 TO michelle.lokay@enron.com
## 1413 8969 1611 TO kevin.hyatt@enron.com
## 1414 8971 1612 TO kevin.hyatt@enron.com
## 1415 8973 1612 CC steven.harris@enron.com
## 1416 8974 1612 BCC steven.harris@enron.com
## 1417 8979 1617 TO kevin.hyatt@enron.com
## 1418 8983 1620 TO kevin.hyatt@enron.com
## 1419 8987 1622 TO kevin.hyatt@enron.com
## 1420 9002 1626 CC kevin.hyatt@enron.com
## 1421 9004 1626 BCC kevin.hyatt@enron.com
## 1422 9005 1627 TO kevin.hyatt@enron.com
## 1423 9010 1628 TO kevin.hyatt@enron.com
## 1424 9021 1629 CC steven.harris@enron.com
## 1425 9022 1629 CC kevin.hyatt@enron.com
## 1426 9025 1629 CC drew.fossum@enron.com
## 1427 9029 1629 BCC steven.harris@enron.com
## 1428 9030 1629 BCC kevin.hyatt@enron.com
## 1429 9033 1629 BCC drew.fossum@enron.com
## 1430 9041 1630 CC michelle.lokay@enron.com
## 1431 9044 1630 CC kevin.hyatt@enron.com
## 1432 9051 1630 BCC michelle.lokay@enron.com
## 1433 9054 1630 BCC kevin.hyatt@enron.com
## 1434 9057 1631 TO kevin.hyatt@enron.com
## 1435 9062 1632 CC kevin.hyatt@enron.com
## 1436 9063 1632 CC steven.harris@enron.com
## 1437 9065 1632 CC drew.fossum@enron.com
## 1438 9068 1632 BCC kevin.hyatt@enron.com
## 1439 9069 1632 BCC steven.harris@enron.com
## 1440 9071 1632 BCC drew.fossum@enron.com
## 1441 9074 1633 TO kevin.hyatt@enron.com
## 1442 9075 1634 TO alvarado@enron.com
## 1443 9077 1635 TO dennis.alters@enron.com
## 1444 9078 1635 TO larry.f.campbell@enron.com
## 1445 9079 1635 TO doug.cebryk@enron.com
## 1446 9080 1635 TO sarah.haden@enron.com
## 1447 9081 1635 TO blair.lichtenwalter@enron.com
## 1448 9082 1635 TO teb.lokey@enron.com
## 1449 9083 1635 TO ron.matthews@enron.com
## 1450 9084 1635 TO johnny.mcgee@enron.com
## 1451 9085 1635 TO john.shafer@enron.com
## 1452 9086 1635 TO gina.taylor@enron.com
## 1453 9087 1635 TO stephen.veatch@enron.com
## 1454 9088 1635 TO kimberly.watson@enron.com
## 1455 9089 1635 CC susan.wadle@enron.com
## 1456 9090 1635 BCC susan.wadle@enron.com
## 1457 9093 1638 TO harris@enron.com
## 1458 9096 1640 TO susan.wadle@enron.com
## 1459 9097 1641 TO david.junus@enron.com
## 1460 9100 1644 TO lillian.villarreal@enron.com
## 1461 9101 1645 TO susan.wadle@enron.com
## 1462 9103 1646 CC kevin.hyatt@enron.com
## 1463 9104 1646 BCC kevin.hyatt@enron.com
## 1464 9114 1647 CC kevin.hyatt@enron.com
## 1465 9122 1647 BCC kevin.hyatt@enron.com
## 1466 9132 1648 CC kevin.hyatt@enron.com
## 1467 9141 1648 BCC kevin.hyatt@enron.com
## 1468 9151 1649 CC kevin.hyatt@enron.com
## 1469 9160 1649 BCC kevin.hyatt@enron.com
## 1470 9163 1650 CC kevin.hyatt@enron.com
## 1471 9173 1650 BCC kevin.hyatt@enron.com
## 1472 9183 1651 TO john.shafer@enron.com
## 1473 9184 1651 CC mike.riedel@enron.com
## 1474 9185 1651 CC william.kendrick@enron.com
## 1475 9186 1651 CC louis.soldano@enron.com
## 1476 9187 1651 CC kevin.hyatt@enron.com
## 1477 9188 1651 CC doug.cebryk@enron.com
## 1478 9189 1651 CC randy.rice@enron.com
## 1479 9190 1651 CC stephen.veatch@enron.com
## 1480 9191 1651 CC joe.hartsoe@enron.com
## 1481 9192 1651 CC gina.taylor@enron.com
## 1482 9193 1651 BCC mike.riedel@enron.com
## 1483 9194 1651 BCC william.kendrick@enron.com
## 1484 9195 1651 BCC louis.soldano@enron.com
## 1485 9196 1651 BCC kevin.hyatt@enron.com
## 1486 9197 1651 BCC doug.cebryk@enron.com
## 1487 9198 1651 BCC randy.rice@enron.com
## 1488 9199 1651 BCC stephen.veatch@enron.com
## 1489 9200 1651 BCC joe.hartsoe@enron.com
## 1490 9201 1651 BCC gina.taylor@enron.com
## 1491 9202 1652 TO kevin.hyatt@enron.com
## 1492 9203 1653 TO kevin.hyatt@enron.com
## 1493 9216 1655 TO teb.lokey@enron.com
## 1494 9220 1655 TO larry.f.campbell@enron.com
## 1495 9221 1655 CC kevin.hyatt@enron.com
## 1496 9222 1655 BCC kevin.hyatt@enron.com
## 1497 9224 1656 TO kevin.hyatt@enron.com
## 1498 9232 1658 TO kevin.hyatt@enron.com
## 1499 9242 1662 TO kevin.hyatt@enron.com
## 1500 9245 1664 TO kevin.hyatt@enron.com
## 1501 9247 1666 TO kevin.hyatt@enron.com
## 1502 9251 1670 TO kevin.hyatt@enron.com
## 1503 9252 1671 TO kevin.hyatt@enron.com
## 1504 9253 1672 TO kevin.hyatt@enron.com
## 1505 9254 1673 TO kevin.hyatt@enron.com
## 1506 9257 1676 TO kevin.hyatt@enron.com
## 1507 9259 1677 TO kevin.hyatt@enron.com
## 1508 9274 1679 TO michelle.lokay@enron.com
## 1509 9277 1679 TO kevin.hyatt@enron.com
## 1510 9317 1679 TO teb.lokey@enron.com
## 1511 9323 1682 TO kevin.hyatt@enron.com
## 1512 9324 1683 TO kevin.hyatt@enron.com
## 1513 9326 1685 TO kevin.hyatt@enron.com
## 1514 9340 1691 TO kevin.hyatt@enron.com
## 1515 9356 1693 TO lindy.donoho@enron.com
## 1516 9363 1693 TO steven.harris@enron.com
## 1517 9365 1693 TO kevin.hyatt@enron.com
## 1518 9374 1693 TO michelle.lokay@enron.com
## 1519 9414 1696 TO kevin.hyatt@enron.com
## 1520 9415 1697 TO kevin.hyatt@enron.com
## 1521 9418 1700 TO kevin.hyatt@enron.com
## 1522 9425 1707 TO kevin.hyatt@enron.com
## 1523 9428 1710 TO kevin.hyatt@enron.com
## 1524 9433 1715 TO kevin.hyatt@enron.com
## 1525 9442 1722 TO kevin.hyatt@enron.com
## 1526 9452 1727 TO kevin.hyatt@enron.com
## 1527 9457 1727 TO michelle.lokay@enron.com
## 1528 9472 1729 TO kevin.hyatt@enron.com
## 1529 9477 1732 CC kevin.hyatt@enron.com
## 1530 9479 1732 BCC kevin.hyatt@enron.com
## 1531 9483 1734 CC kevin.hyatt@enron.com
## 1532 9484 1734 BCC kevin.hyatt@enron.com
## 1533 9485 1735 TO kevin.hyatt@enron.com
## 1534 9563 1746 TO paul.y barbo@enron.com
## 1535 9564 1746 TO michelle.lokay@enron.com
## 1536 9566 1746 CC kevin.hyatt@enron.com
## 1537 9567 1746 BCC kevin.hyatt@enron.com
## 1538 9575 1754 TO kevin.hyatt@enron.com
## 1539 9602 1756 TO kevin.hyatt@enron.com
## 1540 9603 1756 TO lindy.donoho@enron.com
## 1541 9604 1756 TO steven.harris@enron.com
## 1542 9607 1756 TO michelle.lokay@enron.com
## 1543 9611 1756 TO paul.y barbo@enron.com
## 1544 9613 1758 TO kevin.hyatt@enron.com
## 1545 9615 1759 TO kevin.hyatt@enron.com
## 1546 9636 1767 TO michelle.lokay@enron.com
## 1547 9637 1767 TO paul.y barbo@enron.com
## 1548 9638 1767 TO lindy.donoho@enron.com
## 1549 9640 1767 TO steven.harris@enron.com
## 1550 9643 1767 TO kevin.hyatt@enron.com
## 1551 9653 1772 TO kevin.hyatt@enron.com
## 1552 9654 1773 TO kevin.hyatt@enron.com
## 1553 9655 1774 TO kevin.hyatt@enron.com
## 1554 9669 1778 TO steven.harris@enron.com
## 1555 9673 1778 TO michelle.lokay@enron.com
## 1556 9676 1778 TO kevin.hyatt@enron.com
## 1557 9680 1778 TO danny.mccarty@enron.com
## 1558 9682 1780 TO kevin.hyatt@enron.com
## 1559 9683 1781 TO kevin.hyatt@enron.com
## 1560 9689 1783 TO kevin.hyatt@enron.com
## 1561 9690 1784 TO steven.harris@enron.com
## 1562 9694 1784 TO michelle.lokay@enron.com
## 1563 9697 1784 TO kevin.hyatt@enron.com
## 1564 9701 1784 TO danny.mccarty@enron.com
## 1565 9706 1786 CC kevin.hyatt@enron.com
## 1566 9708 1786 BCC kevin.hyatt@enron.com
## 1567 9726 1789 TO kevin.hyatt@enron.com
## 1568 9728 1791 TO kevin.hyatt@enron.com
## 1569 9732 1795 TO kevin.hyatt@enron.com
## 1570 9744 1803 TO kevin.hyatt@enron.com
## 1571 9746 1805 TO kevin.hyatt@enron.com
## 1572 9749 1807 TO kevin.hyatt@enron.com
## 1573 9752 1809 TO kevin.hyatt@enron.com
## 1574 9981 1830 TO kevin.hyatt@enron.com
## 1575 10006 1834 TO kevin.hyatt@enron.com
## 1576 10044 1852 TO kevin.hyatt@enron.com
## 1577 10046 1853 TO kevin.hyatt@enron.com
## 1578 10054 1858 TO kevin.hyatt@enron.com
## 1579 10076 1862 TO lindy.donoho@enron.com
## 1580 10086 1862 TO steven.harris@enron.com
## 1581 10088 1862 TO kevin.hyatt@enron.com
## 1582 10095 1862 TO michelle.lokay@enron.com
## 1583 10115 1862 TO paul.y barbo@enron.com
## 1584 10139 1867 CC kevin.hyatt@enron.com
## 1585 10141 1867 BCC kevin.hyatt@enron.com
## 1586 10143 1868 TO kevin.hyatt@enron.com
## 1587 10146 1869 TO kevin.hyatt@enron.com
## 1588 10147 1870 TO kevin.hyatt@enron.com
## 1589 10151 1872 TO kevin.hyatt@enron.com
## 1590 10152 1873 TO kevin.hyatt@enron.com
## 1591 10156 1875 CC kevin.hyatt@enron.com
## 1592 10158 1875 BCC kevin.hyatt@enron.com
## 1593 10160 1876 TO kevin.hyatt@enron.com
## 1594 10164 1880 TO kevin.hyatt@enron.com
## 1595 10167 1883 TO kevin.hyatt@enron.com
## 1596 10190 1896 TO kevin.hyatt@enron.com
## 1597 10191 1896 TO eric.gadd@enron.com
## 1598 10192 1897 TO gina.taylor@enron.com
## 1599 10193 1897 TO kevin.hyatt@enron.com
## 1600 10195 1899 TO kevin.hyatt@enron.com
## 1601 10198 1901 TO kevin.hyatt@enron.com
## 1602 10203 1905 CC kevin.hyatt@enron.com
## 1603 10205 1905 BCC kevin.hyatt@enron.com
## 1604 10207 1906 TO kevin.hyatt@enron.com
## 1605 10214 1912 TO kevin.hyatt@enron.com
## 1606 10218 1912 TO danny.mccarty@enron.com
## 1607 10229 1921 CC kevin.hyatt@enron.com
## 1608 10231 1921 BCC kevin.hyatt@enron.com
## 1609 10234 1923 TO kevin.hyatt@enron.com
## 1610 10235 1924 TO kevin.hyatt@enron.com
## 1611 10236 1925 TO kevin.hyatt@enron.com
## 1612 10237 1926 TO kevin.hyatt@enron.com
## 1613 10241 1930 TO kevin.hyatt@enron.com
## 1614 10242 1931 TO kevin.hyatt@enron.com
## 1615 10245 1934 TO kevin.hyatt@enron.com
## 1616 10252 1938 TO kevin.hyatt@enron.com
## 1617 10254 1940 TO kevin.hyatt@enron.com
## 1618 10256 1942 TO kevin.hyatt@enron.com
## 1619 10258 1944 TO kevin.hyatt@enron.com
## 1620 10260 1946 TO kevin.hyatt@enron.com
## 1621 10261 1947 TO kevin.hyatt@enron.com
## 1622 10263 1949 TO kevin.hyatt@enron.com
## 1623 10273 1953 TO kevin.hyatt@enron.com
## 1624 10308 1973 TO kevin.hyatt@enron.com
## 1625 10318 1979 CC kevin.hyatt@enron.com
## 1626 10320 1979 BCC kevin.hyatt@enron.com
## 1627 10361 1991 CC kevin.hyatt@enron.com
## 1628 10364 1991 BCC kevin.hyatt@enron.com
## 1629 10367 1992 TO kevin.hyatt@enron.com
## 1630 10368 1993 TO kevin.hyatt@enron.com
## 1631 10370 1994 TO kevin.hyatt@enron.com
## 1632 10401 2008 TO kevin.hyatt@enron.com
## 1633 10402 2009 TO kevin.hyatt@enron.com
## 1634 10403 2010 TO kevin.hyatt@enron.com
## 1635 10404 2011 TO danny.mccarty@enron.com
## 1636 10405 2011 TO steven.harris@enron.com
## 1637 10408 2011 TO kevin.hyatt@enron.com
## 1638 10638 2045 TO julie.armstrong@enron.com
## 1639 10642 2049 TO john.buchanan@enron.com
## 1640 10643 2050 TO bruce.tuttle@enron.com
## 1641 10644 2051 TO tk.lohman@enron.com
## 1642 10652 2059 TO kevin.hyatt@enron.com
## 1643 10653 2060 TO kevin.hyatt@enron.com
## 1644 10654 2061 TO kevin.hyatt@enron.com
## 1645 10659 2062 TO kevin.hyatt@enron.com
## 1646 10664 2063 TO kevin.hyatt@enron.com
## 1647 10669 2064 TO kevin.hyatt@enron.com
## 1648 10672 2065 CC kevin.hyatt@enron.com
## 1649 10673 2065 BCC kevin.hyatt@enron.com
## 1650 10674 2066 TO kevin.hyatt@enron.com
## 1651 10677 2069 TO kevin.hyatt@enron.com
## 1652 10678 2070 TO kevin.hyatt@enron.com
## 1653 10695 2083 TO kevin.hyatt@enron.com
## 1654 10698 2086 TO kevin.hyatt@enron.com
## 1655 10699 2087 TO kevin.hyatt@enron.com
## 1656 10701 2088 TO kevin.hyatt@enron.com
## 1657 10708 2089 TO kevin.hyatt@enron.com
## 1658 10714 2090 TO kevin.hyatt@enron.com
## 1659 10718 2091 TO kevin.hyatt@enron.com
## 1660 10732 2092 TO lindy.donoho@enron.com
## 1661 10739 2092 TO steven.harris@enron.com
## 1662 10741 2092 TO kevin.hyatt@enron.com
## 1663 10750 2092 TO michelle.lokay@enron.com
## 1664 10790 2094 TO kevin.hyatt@enron.com
## 1665 10793 2096 TO kevin.hyatt@enron.com
## 1666 10821 2100 TO kevin.hyatt@enron.com
## 1667 10842 2110 TO kevin.hyatt@enron.com
## 1668 10852 2114 TO no.address@enron.com
## 1669 10853 2114 TO no.address@enron.com
## 1670 10854 2114 TO ruth.mann@enron.com
## 1671 10855 2114 CC george.margoliner@enron.com
## 1672 10856 2114 CC j.smith@enron.com
## 1673 10857 2114 CC pamela.rush@enron.com
## 1674 10858 2114 CC dennis.lee@enron.com
## 1675 10859 2114 BCC george.margoliner@enron.com
## 1676 10860 2114 BCC j.smith@enron.com
## 1677 10861 2114 BCC pamela.rush@enron.com
## 1678 10862 2114 BCC dennis.lee@enron.com
## 1679 10863 2115 TO ruth.mann@enron.com
## 1680 10876 2122 TO kevin.hyatt@enron.com
## 1681 10877 2123 TO kevin.hyatt@enron.com
## 1682 10878 2124 TO kevin.hyatt@enron.com
## 1683 10879 2124 TO danny.mccarty@enron.com
## 1684 10880 2125 TO kevin.hyatt@enron.com
## 1685 10881 2126 TO kevin.hyatt@enron.com
## 1686 10882 2127 TO kevin.hyatt@enron.com
## 1687 10883 2128 TO kevin.hyatt@enron.com
## 1688 10884 2129 TO kevin.hyatt@enron.com
## 1689 10888 2133 TO kevin.hyatt@enron.com
## 1690 10896 2141 TO kevin.hyatt@enron.com
## 1691 10898 2143 TO david.roensch@enron.com
## 1692 10899 2143 TO kimberly.watson@enron.com
## 1693 10900 2143 TO kevin.hyatt@enron.com
## 1694 10901 2143 CC team.kingman-needles@enron.com
## 1695 10902 2143 BCC team.kingman-needles@enron.com
## 1696 10911 2144 TO larry.f.campbell@enron.com
## 1697 10934 2144 TO kevin.hyatt@enron.com
## 1698 10966 2147 TO steven.harris@enron.com
## 1699 10968 2147 TO kevin.hyatt@enron.com
## 1700 10973 2150 TO kevin.hyatt@enron.com
## 1701 10999 2155 TO kevin.hyatt@enron.com
## 1702 11005 2157 TO kevin.hyatt@enron.com
## 1703 11006 2158 TO kevin.hyatt@enron.com
## 1704 11028 2164 TO eric.gadd@enron.com
## 1705 11029 2165 TO dennis.alters@enron.com
## 1706 11030 2165 TO larry.f.campbell@enron.com
## 1707 11031 2165 TO doug.cebryk@enron.com
## 1708 11032 2165 TO sarah.haden@enron.com
## 1709 11033 2165 TO blair.lichtenwalter@enron.com
## 1710 11034 2165 TO teb.lokey@enron.com
## 1711 11035 2165 TO ron.matthews@enron.com
## 1712 11036 2165 TO johnny.mcgee@enron.com
## 1713 11037 2165 TO john.shafer@enron.com
## 1714 11038 2165 TO gina.taylor@enron.com
## 1715 11039 2165 TO stephen.veatch@enron.com
## 1716 11040 2165 TO kimberly.watson@enron.com
## 1717 11041 2165 CC susan.wadle@enron.com
## 1718 11042 2165 BCC susan.wadle@enron.com
## 1719 11045 2168 TO eric.gadd@enron.com
## 1720 11047 2170 TO bruce.tuttle@enron.com
## 1721 11049 2172 TO bruce.tuttle@enron.com
## 1722 11050 2172 TO lorraine.lindberg@enron.com
## 1723 11051 2172 TO tk.lohman@enron.com
## 1724 11052 2172 TO julie.armstrong@enron.com
## 1725 11053 2172 TO susan.wadle@enron.com
## 1726 11058 2175 TO eric.gadd@enron.com
## 1727 11059 2176 TO terrie.james@enron.com
## 1728 11061 2178 TO lorna.brennan@enron.com
## 1729 11063 2180 TO sheila.nacey@enron.com
## 1730 11064 2180 CC shelley.corman@enron.com
## 1731 11065 2180 CC no.address@enron.com
## 1732 11066 2180 CC elizabeth.brown@enron.com
## 1733 11067 2180 CC lindy.donoho@enron.com
## 1734 11068 2180 CC jeffery.fawcett@enron.com
## 1735 11069 2180 CC lorraine.lindberg@enron.com
## 1736 11070 2180 CC tk.lohman@enron.com
## 1737 11071 2180 CC michelle.lokay@enron.com
## 1738 11072 2180 CC audrey.robertson@enron.com
## 1739 11073 2180 BCC shelley.corman@enron.com
## 1740 11074 2180 BCC no.address@enron.com
## 1741 11075 2180 BCC elizabeth.brown@enron.com
## 1742 11076 2180 BCC lindy.donoho@enron.com
## 1743 11077 2180 BCC jeffery.fawcett@enron.com
## 1744 11078 2180 BCC lorraine.lindberg@enron.com
## 1745 11079 2180 BCC tk.lohman@enron.com
## 1746 11080 2180 BCC michelle.lokay@enron.com
## 1747 11081 2180 BCC audrey.robertson@enron.com
## 1748 11083 2181 CC kevin.hyatt@enron.com
## 1749 11084 2181 BCC kevin.hyatt@enron.com
## 1750 11085 2182 TO steven.harris@enron.com
## 1751 11086 2182 TO kevin.hyatt@enron.com
## 1752 11087 2183 TO kevin.hyatt@enron.com
## 1753 11088 2184 TO kevin.hyatt@enron.com
## 1754 11094 2185 TO kevin.hyatt@enron.com
## 1755 11099 2185 TO steven.harris@enron.com
## 1756 11100 2185 TO lindy.donoho@enron.com
## 1757 11104 2185 TO michelle.lokay@enron.com
## 1758 11107 2185 TO paul.y barbo@enron.com
## 1759 11139 2187 TO kevin.hyatt@enron.com
## 1760 11140 2188 TO kevin.hyatt@enron.com
## 1761 11144 2192 TO kevin.hyatt@enron.com
## 1762 11145 2193 TO kevin.hyatt@enron.com
## 1763 11147 2195 TO kevin.hyatt@enron.com
## 1764 11153 2196 TO kevin.hyatt@enron.com
## 1765 11158 2196 TO steven.harris@enron.com
## 1766 11159 2196 TO lindy.donoho@enron.com
## 1767 11163 2196 TO michelle.lokay@enron.com
## 1768 11166 2196 TO paul.y barbo@enron.com
## 1769 11215 2201 TO kevin.hyatt@enron.com
## 1770 11216 2202 TO kevin.hyatt@enron.com
## 1771 11218 2204 TO kevin.hyatt@enron.com
## 1772 11219 2205 TO kevin.hyatt@enron.com
## 1773 11223 2209 TO kevin.hyatt@enron.com
## 1774 11225 2211 TO kevin.hyatt@enron.com
## 1775 11228 2214 TO kevin.hyatt@enron.com
## 1776 11231 2217 TO kevin.hyatt@enron.com
## 1777 11240 2220 TO lynn.blair@enron.com
## 1778 11255 2220 TO shelley.corman@enron.com
## 1779 11257 2220 TO lindy.donoho@enron.com
## 1780 11271 2220 TO kevin.hyatt@enron.com
## 1781 11279 2220 TO michelle.lokay@enron.com
## 1782 11312 2224 TO kevin.hyatt@enron.com
## 1783 11313 2225 TO no.address@enron.com
## 1784 11314 2226 TO no.address@enron.com
## 1785 11315 2227 TO no.address@enron.com
## 1786 11316 2228 TO no.address@enron.com
## 1787 11332 2229 TO kevin.hyatt@enron.com
## 1788 11389 2229 TO lynn.blair@enron.com
## 1789 11399 2229 TO shelley.corman@enron.com
## 1790 11400 2229 TO drew.fossum@enron.com
## 1791 11401 2229 TO rod.hayslett@enron.com
## 1792 11414 2229 TO steven.harris@enron.com
## 1793 11415 2229 TO lindy.donoho@enron.com
## 1794 11419 2229 TO michelle.lokay@enron.com
## 1795 11423 2229 TO paul.y barbo@enron.com
## 1796 11446 2230 TO kevin.hyatt@enron.com
## 1797 11496 2230 TO lynn.blair@enron.com
## 1798 11506 2230 TO shelley.corman@enron.com
## 1799 11507 2230 TO drew.fossum@enron.com
## 1800 11508 2230 TO rod.hayslett@enron.com
## 1801 11529 2230 TO steven.harris@enron.com
## 1802 11530 2230 TO lindy.donoho@enron.com
## 1803 11534 2230 TO michelle.lokay@enron.com
## 1804 11538 2230 TO paul.y barbo@enron.com
## 1805 11551 2240 TO kevin.hyatt@enron.com
## 1806 11573 2254 TO danny.mccarty@enron.com
## 1807 11574 2254 TO shelley.corman@enron.com
## 1808 11575 2254 TO drew.fossum@enron.com
## 1809 11579 2254 TO kevin.hyatt@enron.com
## 1810 11582 2254 TO stanley.horton@enron.com
## 1811 11586 2254 TO rod.hayslett@enron.com
## 1812 11595 2254 TO lynn.blair@enron.com
## 1813 11600 2254 TO steven.harris@enron.com
## 1814 11606 2254 TO teb.lokey@enron.com
## 1815 11647 2256 TO larry.f.campbell@enron.com
## 1816 11665 2256 TO steven.harris@enron.com
## 1817 11669 2256 TO kevin.hyatt@enron.com
## 1818 11711 2258 CC kevin.hyatt@enron.com
## 1819 11714 2258 BCC kevin.hyatt@enron.com
## 1820 11760 2265 CC kevin.hyatt@enron.com
## 1821 11763 2265 BCC kevin.hyatt@enron.com
## 1822 11764 2266 TO kevin.hyatt@enron.com
## 1823 11767 2267 TO kevin.hyatt@enron.com
## 1824 11768 2268 TO kevin.hyatt@enron.com
## 1825 11792 2269 TO kevin.hyatt@enron.com
## 1826 11821 2270 CC kevin.hyatt@enron.com
## 1827 11823 2270 BCC kevin.hyatt@enron.com
## 1828 11851 2272 TO kevin.hyatt@enron.com
## 1829 11878 2273 TO kevin.hyatt@enron.com
## 1830 11884 2274 TO kevin.hyatt@enron.com
## 1831 11885 2275 TO kevin.hyatt@enron.com
## 1832 11889 2276 TO kevin.hyatt@enron.com
## 1833 11890 2277 TO kevin.hyatt@enron.com
## 1834 11912 2278 TO kevin.hyatt@enron.com
## 1835 11939 2279 TO kevin.hyatt@enron.com
## 1836 11954 2280 TO kevin.hyatt@enron.com
## 1837 11976 2281 CC kevin.hyatt@enron.com
## 1838 11979 2281 BCC kevin.hyatt@enron.com
## 1839 11980 2282 TO kevin.hyatt@enron.com
## 1840 11986 2283 TO kevin.hyatt@enron.com
## 1841 12008 2284 TO kevin.hyatt@enron.com
## 1842 12059 2284 TO lynn.blair@enron.com
## 1843 12065 2284 TO shelley.corman@enron.com
## 1844 12066 2284 TO drew.fossum@enron.com
## 1845 12067 2284 TO rod.hayslett@enron.com
## 1846 12088 2284 TO steven.harris@enron.com
## 1847 12089 2284 TO lindy.donoho@enron.com
## 1848 12093 2284 TO michelle.lokay@enron.com
## 1849 12098 2287 TO kevin.hyatt@enron.com
## 1850 12163 2289 TO martin.cuilla@enron.com
## 1851 12185 2289 TO kevin.hyatt@enron.com
## 1852 12205 2289 TO brad.mckay@enron.com
## 1853 12206 2289 TO brad.mckay@enron.com
## 1854 12227 2289 TO benjamin.rogers@enron.com
## 1855 12228 2289 TO kevin.ruscitti@enron.com
## 1856 12251 2290 TO kevin.hyatt@enron.com
## 1857 12253 2292 TO steven.harris@enron.com
## 1858 12254 2292 TO lindy.donoho@enron.com
## 1859 12258 2292 TO michelle.lokay@enron.com
## 1860 12262 2292 TO paul.y barbo@enron.com
## 1861 12267 2292 TO kevin.hyatt@enron.com
## 1862 12273 2293 TO kevin.hyatt@enron.com
## 1863 12321 2293 TO lynn.blair@enron.com
## 1864 12337 2293 TO steven.harris@enron.com
## 1865 12338 2293 TO lindy.donoho@enron.com
## 1866 12342 2293 TO michelle.lokay@enron.com
## 1867 12346 2293 TO paul.y barbo@enron.com
## 1868 12347 2294 TO kevin.hyatt@enron.com
## 1869 12355 2295 TO kevin.hyatt@enron.com
## 1870 12360 2295 TO steven.harris@enron.com
## 1871 12361 2295 TO lindy.donoho@enron.com
## 1872 12365 2295 TO michelle.lokay@enron.com
## 1873 12369 2295 TO paul.y barbo@enron.com
## 1874 12381 2298 TO kevin.hyatt@enron.com
## 1875 12398 2299 TO kevin.hyatt@enron.com
## 1876 12457 2299 TO steven.harris@enron.com
## 1877 12458 2299 TO lindy.donoho@enron.com
## 1878 12462 2299 TO michelle.lokay@enron.com
## 1879 12465 2300 TO kevin.hyatt@enron.com
## 1880 12468 2301 TO kevin.hyatt@enron.com
## 1881 12469 2301 TO lindy.donoho@enron.com
## 1882 12470 2301 TO steven.harris@enron.com
## 1883 12473 2301 TO michelle.lokay@enron.com
## 1884 12489 2302 TO kevin.hyatt@enron.com
## 1885 12539 2302 TO lynn.blair@enron.com
## 1886 12547 2302 TO shelley.corman@enron.com
## 1887 12555 2302 TO steven.harris@enron.com
## 1888 12556 2302 TO lindy.donoho@enron.com
## 1889 12560 2302 TO michelle.lokay@enron.com
## 1890 12563 2303 TO kevin.hyatt@enron.com
## 1891 12564 2303 TO lindy.donoho@enron.com
## 1892 12586 2304 TO kevin.hyatt@enron.com
## 1893 12635 2304 TO lynn.blair@enron.com
## 1894 12644 2304 TO shelley.corman@enron.com
## 1895 12645 2304 TO drew.fossum@enron.com
## 1896 12646 2304 TO rod.hayslett@enron.com
## 1897 12665 2304 TO steven.harris@enron.com
## 1898 12666 2304 TO lindy.donoho@enron.com
## 1899 12670 2304 TO michelle.lokay@enron.com
## 1900 12677 2305 TO kevin.hyatt@enron.com
## 1901 12727 2305 TO lynn.blair@enron.com
## 1902 12734 2305 TO shelley.corman@enron.com
## 1903 12742 2305 TO steven.harris@enron.com
## 1904 12743 2305 TO lindy.donoho@enron.com
## 1905 12747 2305 TO michelle.lokay@enron.com
## 1906 12752 2306 TO lindy.donoho@enron.com
## 1907 12753 2306 TO kevin.hyatt@enron.com
## 1908 12767 2307 TO kevin.hyatt@enron.com
## 1909 12817 2307 TO lynn.blair@enron.com
## 1910 12831 2307 TO lindy.donoho@enron.com
## 1911 12835 2307 TO michelle.lokay@enron.com
## 1912 12838 2307 TO steven.harris@enron.com
## 1913 12841 2308 TO kevin.hyatt@enron.com
## 1914 12842 2309 TO kevin.hyatt@enron.com
## 1915 12895 2310 TO steven.harris@enron.com
## 1916 12896 2310 TO lindy.donoho@enron.com
## 1917 12900 2310 TO michelle.lokay@enron.com
## 1918 12906 2310 TO kevin.hyatt@enron.com
## 1919 12910 2311 TO kevin.hyatt@enron.com
## 1920 12922 2312 TO kevin.hyatt@enron.com
## 1921 12981 2312 TO steven.harris@enron.com
## 1922 12982 2312 TO lindy.donoho@enron.com
## 1923 12986 2312 TO michelle.lokay@enron.com
## 1924 12989 2313 TO kevin.hyatt@enron.com
## 1925 12990 2313 TO lindy.donoho@enron.com
## 1926 12993 2314 TO lindy.donoho@enron.com
## 1927 12995 2314 TO kevin.hyatt@enron.com
## 1928 12996 2315 TO kevin.hyatt@enron.com
## 1929 12998 2316 TO lindy.donoho@enron.com
## 1930 12999 2316 TO kevin.hyatt@enron.com
## 1931 13073 2317 TO shelley.corman@enron.com
## 1932 13081 2317 TO steven.harris@enron.com
## 1933 13082 2317 TO lindy.donoho@enron.com
## 1934 13084 2317 TO kevin.hyatt@enron.com
## 1935 13087 2317 TO michelle.lokay@enron.com
## 1936 13090 2318 TO steven.harris@enron.com
## 1937 13091 2318 TO lindy.donoho@enron.com
## 1938 13093 2318 TO kevin.hyatt@enron.com
## 1939 13096 2318 TO michelle.lokay@enron.com
## 1940 13154 2319 TO lynn.blair@enron.com
## 1941 13161 2319 TO shelley.corman@enron.com
## 1942 13162 2319 TO steven.harris@enron.com
## 1943 13163 2319 TO lindy.donoho@enron.com
## 1944 13165 2319 TO kevin.hyatt@enron.com
## 1945 13168 2319 TO michelle.lokay@enron.com
## 1946 13179 2320 TO steven.harris@enron.com
## 1947 13180 2320 TO lindy.donoho@enron.com
## 1948 13182 2320 TO kevin.hyatt@enron.com
## 1949 13185 2320 TO michelle.lokay@enron.com
## 1950 13186 2321 TO steven.harris@enron.com
## 1951 13187 2321 TO kevin.hyatt@enron.com
## 1952 13189 2321 TO michelle.lokay@enron.com
## 1953 13192 2322 TO steven.harris@enron.com
## 1954 13193 2322 TO kevin.hyatt@enron.com
## 1955 13195 2322 TO jeff.dasovich@enron.com
## 1956 13198 2322 CC michelle.lokay@enron.com
## 1957 13202 2322 BCC michelle.lokay@enron.com
## 1958 13205 2323 TO kevin.hyatt@enron.com
## 1959 13207 2324 TO steven.harris@enron.com
## 1960 13208 2324 TO kevin.hyatt@enron.com
## 1961 13209 2324 TO jeff.dasovich@enron.com
## 1962 13212 2324 TO michelle.lokay@enron.com
## 1963 13214 2325 TO steven.harris@enron.com
## 1964 13215 2325 TO kevin.hyatt@enron.com
## 1965 13216 2325 TO jeffery.fawcett@enron.com
## 1966 13217 2325 TO danny.mccarty@enron.com
## 1967 13218 2326 TO steven.harris@enron.com
## 1968 13219 2326 TO kevin.hyatt@enron.com
## 1969 13221 2326 TO michelle.lokay@enron.com
## 1970 13266 2327 TO drew.fossum@enron.com
## 1971 13271 2327 TO steven.harris@enron.com
## 1972 13272 2327 TO lindy.donoho@enron.com
## 1973 13274 2327 TO kevin.hyatt@enron.com
## 1974 13277 2327 TO michelle.lokay@enron.com
## 1975 13280 2328 TO danny.mccarty@enron.com
## 1976 13319 2328 TO shelley.corman@enron.com
## 1977 13320 2328 TO steven.harris@enron.com
## 1978 13321 2328 TO lindy.donoho@enron.com
## 1979 13323 2328 TO kevin.hyatt@enron.com
## 1980 13326 2328 TO michelle.lokay@enron.com
## 1981 13329 2329 TO steven.harris@enron.com
## 1982 13330 2329 TO drew.fossum@enron.com
## 1983 13332 2329 TO danny.mccarty@enron.com
## 1984 13335 2329 TO michelle.lokay@enron.com
## 1985 13336 2329 TO kevin.hyatt@enron.com
## 1986 13338 2331 TO kevin.hyatt@enron.com
## 1987 13341 2334 TO kevin.hyatt@enron.com
## 1988 13361 2336 TO lindy.donoho@enron.com
## 1989 13364 2336 TO michelle.lokay@enron.com
## 1990 13368 2336 TO kevin.hyatt@enron.com
## 1991 13386 2348 TO kevin.hyatt@enron.com
## 1992 13388 2348 CC michelle.lokay@enron.com
## 1993 13389 2348 BCC michelle.lokay@enron.com
## 1994 13480 2361 TO kevin.hyatt@enron.com
## 1995 13482 2363 TO kevin.hyatt@enron.com
## 1996 13489 2370 TO kevin.hyatt@enron.com
## 1997 13492 2372 TO kevin.hyatt@enron.com
## 1998 13495 2374 TO kevin.hyatt@enron.com
## 1999 13498 2375 TO kevin.hyatt@enron.com
## 2000 13532 2377 TO kevin.hyatt@enron.com
## 2001 13539 2380 CC kevin.hyatt@enron.com
## 2002 13541 2380 BCC kevin.hyatt@enron.com
## 2003 13562 2385 TO lindy.donoho@enron.com
## 2004 13572 2385 TO steven.harris@enron.com
## 2005 13574 2385 TO kevin.hyatt@enron.com
## 2006 13581 2385 TO michelle.lokay@enron.com
## 2007 13601 2385 TO paul.y barbo@enron.com
## 2008 13644 2394 TO steven.harris@enron.com
## 2009 13645 2394 TO kevin.hyatt@enron.com
## 2010 13647 2396 TO kevin.hyatt@enron.com
## 2011 13676 2406 TO kevin.hyatt@enron.com
## 2012 13689 2413 TO kevin.hyatt@enron.com
## 2013 13697 2415 TO lindy.donoho@enron.com
## 2014 13702 2415 TO steven.harris@enron.com
## 2015 13704 2415 TO kevin.hyatt@enron.com
## 2016 13709 2415 TO michelle.lokay@enron.com
## 2017 13771 2422 TO kevin.hyatt@enron.com
## 2018 13782 2426 TO kevin.hyatt@enron.com
## 2019 13784 2428 TO kevin.hyatt@enron.com
## 2020 13785 2429 TO kevin.hyatt@enron.com
## 2021 13787 2431 TO audrey.robertson@enron.com
## 2022 13817 2440 TO kevin.hyatt@enron.com
## 2023 13819 2441 TO kevin.hyatt@enron.com
## 2024 13830 2444 TO kevin.hyatt@enron.com
## 2025 13863 2463 TO kevin.hyatt@enron.com
## 2026 13871 2469 TO kevin.hyatt@enron.com
## 2027 13873 2471 TO kevin.hyatt@enron.com
## 2028 13881 2478 CC kevin.hyatt@enron.com
## 2029 13882 2478 BCC kevin.hyatt@enron.com
## 2030 13883 2479 TO kevin.hyatt@enron.com
## 2031 13896 2492 TO kevin.hyatt@enron.com
## 2032 13897 2493 TO kevin.hyatt@enron.com
## 2033 13900 2494 TO steven.harris@enron.com
## 2034 13905 2494 TO kevin.hyatt@enron.com
## 2035 13967 2495 TO danny.mccarty@enron.com
## 2036 14059 2495 TO kevin.hyatt@enron.com
## 2037 14077 2495 TO lindy.donoho@enron.com
## 2038 14084 2495 TO lynn.blair@enron.com
## 2039 14106 2495 TO michelle.lokay@enron.com
## 2040 14153 2495 TO shelley.corman@enron.com
## 2041 14165 2495 TO steven.harris@enron.com
## 2042 14250 2495 CC drew.fossum@enron.com
## 2043 14422 2495 BCC drew.fossum@enron.com
## 2044 14549 2497 TO kevin.hyatt@enron.com
## 2045 14551 2497 TO michelle.lokay@enron.com
## 2046 14554 2497 TO jeff.dasovich@enron.com
## 2047 14610 2506 TO lindy.donoho@enron.com
## 2048 14615 2506 TO steven.harris@enron.com
## 2049 14617 2506 TO kevin.hyatt@enron.com
## 2050 14622 2506 TO michelle.lokay@enron.com
## 2051 14641 2508 TO kevin.hyatt@enron.com
## 2052 14643 2510 TO kevin.hyatt@enron.com
## 2053 14646 2512 TO kevin.hyatt@enron.com
## 2054 14647 2512 CC michelle.lokay@enron.com
## 2055 14648 2512 BCC michelle.lokay@enron.com
## 2056 18155 2890 TO cara.semperger@enron.com
## 2057 18172 2891 CC cara.semperger@enron.com
## 2058 18180 2891 BCC cara.semperger@enron.com
## 2059 18185 2894 TO steve.walton@enron.com
## 2060 18186 2894 CC tim.belden@enron.com
## 2061 18187 2894 CC mary.hain@enron.com
## 2062 18188 2894 BCC tim.belden@enron.com
## 2063 18189 2894 BCC mary.hain@enron.com
## 2064 18297 2899 CC james.d.steffes@enron.com
## 2065 18299 2899 BCC james.d.steffes@enron.com
## 2066 18302 2901 TO christi.nicolay@enron.com
## 2067 18303 2901 CC janet.dietrich@enron.com
## 2068 18304 2901 CC mary.hain@enron.com
## 2069 18305 2901 CC david.w.delainey@enron.com
## 2070 18306 2901 CC john.lavorato@enron.com
## 2071 18307 2901 CC james.d.steffes@enron.com
## 2072 18308 2901 BCC janet.dietrich@enron.com
## 2073 18309 2901 BCC mary.hain@enron.com
## 2074 18310 2901 BCC david.w.delainey@enron.com
## 2075 18311 2901 BCC john.lavorato@enron.com
## 2076 18312 2901 BCC james.d.steffes@enron.com
## 2077 18316 2902 TO cara.semperger@enron.com
## 2078 18326 2903 TO linda.lawrence@enron.com
## 2079 18327 2903 CC mary.hain@enron.com
## 2080 18328 2903 CC tim.belden@enron.com
## 2081 18329 2903 BCC mary.hain@enron.com
## 2082 18330 2903 BCC tim.belden@enron.com
## 2083 18333 2905 TO mary.hain@enron.com
## 2084 18334 2905 CC tim.belden@enron.com
## 2085 18335 2905 CC linda.lawrence@enron.com
## 2086 18336 2905 CC kelley.huntley@enron.com
## 2087 18337 2905 CC valarie.sabo@enron.com
## 2088 18338 2905 BCC tim.belden@enron.com
## 2089 18339 2905 BCC linda.lawrence@enron.com
## 2090 18340 2905 BCC kelley.huntley@enron.com
## 2091 18341 2905 BCC valarie.sabo@enron.com
## 2092 18342 2906 TO cara.semperger@enron.com
## 2093 18355 2907 TO kelley.huntley@enron.com
## 2094 18356 2907 CC tim.belden@enron.com
## 2095 18357 2907 CC mary.hain@enron.com
## 2096 18358 2907 CC linda.lawrence@enron.com
## 2097 18359 2907 CC leslie.reeves@enron.com
## 2098 18360 2907 BCC tim.belden@enron.com
## 2099 18361 2907 BCC mary.hain@enron.com
## 2100 18362 2907 BCC linda.lawrence@enron.com
## 2101 18363 2907 BCC leslie.reeves@enron.com
## 2102 18382 2908 TO richard.shapiro@enron.com
## 2103 18387 2908 TO steven.j.kean@enron.com
## 2104 18390 2908 TO kevin.m.presto@enron.com
## 2105 18394 2908 TO fletcher.j.sturm@enron.com
## 2106 18408 2908 TO shelley.corman@enron.com
## 2107 18413 2908 TO james.d.steffes@enron.com
## 2108 18434 2908 TO kay.mann@enron.com
## 2109 18459 2912 CC james.d.steffes@enron.com
## 2110 18461 2912 BCC james.d.steffes@enron.com
## 2111 18477 2914 TO kevin.m.presto@enron.com
## 2112 18497 2914 CC james.d.steffes@enron.com
## 2113 18501 2914 CC richard.shapiro@enron.com
## 2114 18502 2914 BCC james.d.steffes@enron.com
## 2115 18506 2914 BCC richard.shapiro@enron.com
## 2116 18634 2920 TO james.d.steffes@enron.com
## 2117 18683 2920 TO louise.kitchen@enron.com
## 2118 18686 2920 TO teb.lokey@enron.com
## 2119 18688 2920 TO shelley.corman@enron.com
## 2120 18690 2920 TO m..forney@enron.com
## 2121 18691 2920 TO kevin.m.presto@enron.com
## 2122 18709 2923 TO jeff.dasovich@enron.com
## 2123 18711 2923 CC james.d.steffes@enron.com
## 2124 18715 2923 BCC james.d.steffes@enron.com
## 2125 18721 2924 TO james.d.steffes@enron.com
## 2126 18745 2924 TO kevin.m.presto@enron.com
## 2127 18867 2926 TO shelley.corman@enron.com
## 2128 18868 2926 TO jeff.dasovich@enron.com
## 2129 18913 2926 TO steven.j.kean@enron.com
## 2130 18946 2926 TO richard.shapiro@enron.com
## 2131 18949 2926 TO jeff.skilling@enron.com
## 2132 18951 2926 TO james.d.steffes@enron.com
## 2133 18962 2927 TO tim.belden@enron.com
## 2134 18963 2927 CC james.d.steffes@enron.com
## 2135 18964 2927 CC christi.nicolay@enron.com
## 2136 18965 2927 CC sarah.novosel@enron.com
## 2137 18966 2927 CC joe.hartsoe@enron.com
## 2138 18967 2927 CC steve.walton@enron.com
## 2139 18968 2927 CC alan.comnes@enron.com
## 2140 18969 2927 CC mary.hain@enron.com
## 2141 18970 2927 BCC james.d.steffes@enron.com
## 2142 18971 2927 BCC christi.nicolay@enron.com
## 2143 18972 2927 BCC sarah.novosel@enron.com
## 2144 18973 2927 BCC joe.hartsoe@enron.com
## 2145 18974 2927 BCC steve.walton@enron.com
## 2146 18975 2927 BCC alan.comnes@enron.com
## 2147 18976 2927 BCC mary.hain@enron.com
## 2148 18978 2929 TO steven.j.kean@enron.com
## 2149 18979 2929 TO richard.shapiro@enron.com
## 2150 18981 2929 TO james.d.steffes@enron.com
## 2151 18984 2929 TO jeff.dasovich@enron.com
## 2152 18990 2933 TO mary.hain@enron.com
## 2153 18993 2934 TO james.d.steffes@enron.com
## 2154 19017 2934 TO kevin.m.presto@enron.com
## 2155 19029 2934 TO shelley.corman@enron.com
## 2156 19030 2934 TO m..forney@enron.com
## 2157 19031 2934 TO fletcher.j.sturm@enron.com
## 2158 19033 2934 TO richard.shapiro@enron.com
## 2159 19034 2934 TO steven.j.kean@enron.com
## 2160 19076 2937 TO james.d.steffes@enron.com
## 2161 19083 2937 TO jeff.dasovich@enron.com
## 2162 19120 2937 TO richard.shapiro@enron.com
## 2163 19136 2937 TO steven.j.kean@enron.com
## 2164 19162 2937 TO james.d.steffes@enron.com
## 2165 19188 2940 CC james.d.steffes@enron.com
## 2166 19191 2940 BCC james.d.steffes@enron.com
## 2167 19214 2947 TO chris.calger@enron.com
## 2168 19215 2947 TO tim.belden@enron.com
## 2169 19216 2947 TO mary.hain@enron.com
## 2170 19217 2947 TO paul.kaufman@enron.com
## 2171 19218 2947 TO steve.walton@enron.com
## 2172 19219 2947 TO richard.ingersoll@enron.com
## 2173 19220 2947 TO alan.comnes@enron.com
## 2174 19221 2947 TO leslie.lawner@enron.com
## 2175 19222 2947 CC robert.frank@enron.com
## 2176 19223 2947 BCC robert.frank@enron.com
## 2177 19226 2948 TO james.d.steffes@enron.com
## 2178 19248 2949 TO james.d.steffes@enron.com
## 2179 19267 2950 TO james.d.steffes@enron.com
## 2180 19352 2950 TO steven.j.kean@enron.com
## 2181 19353 2950 TO richard.shapiro@enron.com
## 2182 19357 2950 TO kevin.m.presto@enron.com
## 2183 19371 2951 TO shelley.corman@enron.com
## 2184 19372 2951 TO jeff.dasovich@enron.com
## 2185 19413 2951 TO steven.j.kean@enron.com
## 2186 19444 2951 TO jeff.skilling@enron.com
## 2187 19446 2951 TO james.d.steffes@enron.com
## 2188 19562 2954 TO james.d.steffes@enron.com
## 2189 19711 2965 TO mary.hain@enron.com
## 2190 19721 2969 TO james.d.steffes@enron.com
## 2191 19756 2973 TO susan.mara@enron.com
## 2192 19757 2973 TO alan.comnes@enron.com
## 2193 19758 2973 TO mary.hain@enron.com
## 2194 19759 2973 CC jeff.dasovich@enron.com
## 2195 19760 2973 CC steve.walton@enron.com
## 2196 19761 2973 CC joe.hartsoe@enron.com
## 2197 19762 2973 BCC jeff.dasovich@enron.com
## 2198 19763 2973 BCC steve.walton@enron.com
## 2199 19764 2973 BCC joe.hartsoe@enron.com
## 2200 19788 2975 TO cara.semperger@enron.com
## 2201 19808 2975 TO diana.scholtes@enron.com
## 2202 19819 2975 TO geir.solberg@enron.com
## 2203 19823 2975 TO holden.salisbury@enron.com
## 2204 19841 2975 TO kate.symes@enron.com
## 2205 19854 2975 TO mark.guzman@enron.com
## 2206 19858 2975 TO matt.motley@enron.com
## 2207 19863 2975 TO mike.swerzbin@enron.com
## 2208 19865 2975 TO monika.causholli@enron.com
## 2209 19870 2975 TO phillip.platter@enron.com
## 2210 19874 2975 TO robert.badeer@enron.com
## 2211 19875 2975 TO ryan.slinger@enron.com
## 2212 19877 2975 TO sean.crandall@enron.com
## 2213 20126 2978 TO james.d.steffes@enron.com
## 2214 20133 2978 TO jeff.dasovich@enron.com
## 2215 20170 2978 TO richard.shapiro@enron.com
## 2216 20186 2978 TO steven.j.kean@enron.com
## 2217 20212 2978 TO james.d.steffes@enron.com
## 2218 20216 2978 CC richard.shapiro@enron.com
## 2219 20223 2978 BCC richard.shapiro@enron.com
## 2220 20239 2981 TO james.d.steffes@enron.com
## 2221 20310 2981 TO kevin.m.presto@enron.com
## 2222 20312 2981 TO richard.shapiro@enron.com
## 2223 20313 2981 TO david.w.delainey@enron.com
## 2224 20318 2984 TO richard.shapiro@enron.com
## 2225 20319 2984 TO jeff.dasovich@enron.com
## 2226 20320 2984 TO susan.mara@enron.com
## 2227 20321 2984 TO harry.kingerski@enron.com
## 2228 20322 2984 TO sandra.mccubbin@enron.com
## 2229 20323 2984 TO mona.petrochko@enron.com
## 2230 20324 2984 TO marcie.milner@enron.com
## 2231 20325 2984 TO karen.denne@enron.com
## 2232 20326 2984 TO paul.kaufman@enron.com
## 2233 20327 2984 TO mary.hain@enron.com
## 2234 20328 2984 TO alan.comnes@enron.com
## 2235 20329 2984 TO joe.hartsoe@enron.com
## 2236 20330 2984 TO linda.robertson@enron.com
## 2237 20377 2985 TO james.d.steffes@enron.com
## 2238 20384 2985 TO jeff.dasovich@enron.com
## 2239 20421 2985 TO richard.shapiro@enron.com
## 2240 20437 2985 TO steven.j.kean@enron.com
## 2241 20463 2985 TO james.d.steffes@enron.com
## 2242 20467 2985 CC richard.shapiro@enron.com
## 2243 20474 2985 BCC richard.shapiro@enron.com
## 2244 20482 2986 TO james.d.steffes@enron.com
## 2245 20494 2989 TO james.d.steffes@enron.com
## 2246 20516 2989 TO kevin.m.presto@enron.com
## 2247 20567 2993 TO steven.j.kean@enron.com
## 2248 20575 2993 TO richard.shapiro@enron.com
## 2249 20722 2997 TO shelley.corman@enron.com
## 2250 20723 2997 TO jeff.dasovich@enron.com
## 2251 20788 2997 TO jeff.skilling@enron.com
## 2252 20792 2999 TO mary.hain@enron.com
## 2253 21022 3001 TO david.w.delainey@enron.com
## 2254 21031 3001 TO james.d.steffes@enron.com
## 2255 21032 3001 TO james.derrick@enron.com
## 2256 21033 3001 TO jeff.dasovich@enron.com
## 2257 21039 3001 TO keith.holst@enron.com
## 2258 21041 3001 TO e..haedicke@enron.com
## 2259 21052 3001 TO mike.grigsby@enron.com
## 2260 21055 3001 TO phillip.k.ellen@enron.com
## 2261 21056 3001 TO richard.b.sanders@enron.com
## 2262 21058 3001 TO richard.shapiro@enron.com
## 2263 21059 3001 TO rick.buy@enron.com
## 2264 21060 3001 TO robert.badeer@enron.com
## 2265 21069 3001 TO shelley.corman@enron.com
## 2266 21072 3001 TO steven.j.kean@enron.com
## 2267 21262 3004 TO mary.hain@enron.com
## 2268 21484 3013 TO mary.hain@enron.com
## 2269 21495 3016 TO susan.mara@enron.com
## 2270 21496 3016 TO joe.hartsoe@enron.com
## 2271 21497 3016 TO alan.comnes@enron.com
## 2272 21498 3016 TO steve.walton@enron.com
## 2273 21499 3016 TO mary.hain@enron.com
## 2274 21500 3016 TO paul.kaufman@enron.com
## 2275 21501 3016 CC richard.shapiro@enron.com
## 2276 21502 3016 CC harry.kingerski@enron.com
## 2277 21503 3016 CC linda.robertson@enron.com
## 2278 21504 3016 BCC richard.shapiro@enron.com
## 2279 21505 3016 BCC harry.kingerski@enron.com
## 2280 21506 3016 BCC linda.robertson@enron.com
## 2281 21512 3018 TO mary.hain@enron.com
## 2282 21513 3019 TO joe.hartsoe@enron.com
## 2283 21514 3019 TO susan.mara@enron.com
## 2284 21515 3019 TO mary.hain@enron.com
## 2285 21516 3019 TO alan.comnes@enron.com
## 2286 21517 3019 TO steve.walton@enron.com
## 2287 21518 3020 TO mary.hain@enron.com
## 2288 21546 3022 TO james.d.steffes@enron.com
## 2289 21552 3022 TO jeff.dasovich@enron.com
## 2290 21585 3022 TO richard.shapiro@enron.com
## 2291 21600 3022 TO steven.j.kean@enron.com
## 2292 22170 3030 TO joe.hartsoe@enron.com
## 2293 22171 3030 TO christi.nicolay@enron.com
## 2294 22172 3030 TO mary.hain@enron.com
## 2295 22173 3030 CC richard.shapiro@enron.com
## 2296 22174 3030 BCC richard.shapiro@enron.com
## 2297 22176 3032 TO mary.hain@enron.com
## 2298 22177 3033 TO james.d.steffes@enron.com
## 2299 22180 3033 CC richard.shapiro@enron.com
## 2300 22185 3033 BCC richard.shapiro@enron.com
## 2301 22274 3039 TO james.d.steffes@enron.com
## 2302 22281 3039 TO jeff.dasovich@enron.com
## 2303 22318 3039 TO richard.shapiro@enron.com
## 2304 22334 3039 TO steven.j.kean@enron.com
## 2305 22386 3042 TO james.d.steffes@enron.com
## 2306 22393 3042 TO jeff.dasovich@enron.com
## 2307 22430 3042 TO richard.shapiro@enron.com
## 2308 22446 3042 TO steven.j.kean@enron.com
## 2309 22459 3043 TO kevin.m.presto@enron.com
## 2310 22463 3043 CC james.d.steffes@enron.com
## 2311 22465 3043 BCC james.d.steffes@enron.com
## 2312 22467 3044 TO james.d.steffes@enron.com
## 2313 22469 3044 TO richard.shapiro@enron.com
## 2314 22819 3052 CC james.d.steffes@enron.com
## 2315 22821 3052 BCC james.d.steffes@enron.com
## 2316 22884 3057 CC richard.shapiro@enron.com
## 2317 22885 3057 CC james.d.steffes@enron.com
## 2318 22887 3057 CC jeff.dasovich@enron.com
## 2319 22891 3057 CC steven.j.kean@enron.com
## 2320 22897 3057 BCC richard.shapiro@enron.com
## 2321 22898 3057 BCC james.d.steffes@enron.com
## 2322 22900 3057 BCC jeff.dasovich@enron.com
## 2323 22904 3057 BCC steven.j.kean@enron.com
## 2324 23138 3062 TO jeff.dasovich@enron.com
## 2325 23139 3062 TO paul.kaufman@enron.com
## 2326 23140 3062 TO mary.hain@enron.com
## 2327 23141 3062 TO alan.comnes@enron.com
## 2328 23142 3062 TO susan.mara@enron.com
## 2329 23143 3062 TO steve.walton@enron.com
## 2330 23364 3065 TO james.d.steffes@enron.com
## 2331 23390 3067 TO james.d.steffes@enron.com
## 2332 23392 3067 CC jeff.dasovich@enron.com
## 2333 23396 3067 CC richard.shapiro@enron.com
## 2334 23401 3067 BCC jeff.dasovich@enron.com
## 2335 23405 3067 BCC richard.shapiro@enron.com
## 2336 23499 3070 CC james.d.steffes@enron.com
## 2337 23502 3070 CC richard.shapiro@enron.com
## 2338 23504 3070 BCC james.d.steffes@enron.com
## 2339 23507 3070 BCC richard.shapiro@enron.com
## 2340 23509 3071 TO joe.hartsoe@enron.com
## 2341 23510 3071 TO alan.comnes@enron.com
## 2342 23511 3071 TO mary.hain@enron.com
## 2343 23571 3077 TO james.d.steffes@enron.com
## 2344 24040 3091 TO james.d.steffes@enron.com
## 2345 24046 3091 TO jeff.dasovich@enron.com
## 2346 24079 3091 TO richard.shapiro@enron.com
## 2347 24094 3091 TO steven.j.kean@enron.com
## 2348 24235 3094 TO lynn.blair@enron.com
## 2349 24245 3094 TO shelley.corman@enron.com
## 2350 24253 3094 TO drew.fossum@enron.com
## 2351 24258 3094 TO steven.harris@enron.com
## 2352 24262 3094 TO rod.hayslett@enron.com
## 2353 24268 3094 TO stanley.horton@enron.com
## 2354 24272 3094 TO steven.j.kean@enron.com
## 2355 24281 3094 TO teb.lokey@enron.com
## 2356 24318 3094 TO richard.shapiro@enron.com
## 2357 24322 3094 TO james.d.steffes@enron.com
## 2358 24363 3099 CC james.d.steffes@enron.com
## 2359 24365 3099 BCC james.d.steffes@enron.com
## 2360 24425 3101 CC james.d.steffes@enron.com
## 2361 24429 3101 BCC james.d.steffes@enron.com
## 2362 24461 3107 TO james.d.steffes@enron.com
## 2363 24464 3107 TO jeff.dasovich@enron.com
## 2364 24483 3107 TO richard.shapiro@enron.com
## 2365 24486 3107 TO shelley.corman@enron.com
## 2366 24488 3107 TO steven.j.kean@enron.com
## 2367 24497 3108 TO richard.shapiro@enron.com
## 2368 24498 3108 TO james.d.steffes@enron.com
## 2369 24530 3110 TO james.d.steffes@enron.com
## 2370 24536 3110 TO jeff.dasovich@enron.com
## 2371 24569 3110 TO richard.shapiro@enron.com
## 2372 24584 3110 TO steven.j.kean@enron.com
## 2373 24611 3114 TO sandra.mccubbin@enron.com
## 2374 24612 3114 TO susan.mara@enron.com
## 2375 24613 3114 TO paul.kaufman@enron.com
## 2376 24614 3114 TO harry.kingerski@enron.com
## 2377 24615 3114 TO james.d.steffes@enron.com
## 2378 24616 3114 TO richard.shapiro@enron.com
## 2379 24617 3114 TO steven.j.kean@enron.com
## 2380 24618 3114 TO karen.denne@enron.com
## 2381 24619 3114 TO mpalmer@enron.com
## 2382 24620 3114 TO janel.guerrero@enron.com
## 2383 24621 3114 TO mary.hain@enron.com
## 2384 24622 3114 TO alan.comnes@enron.com
## 2385 24623 3114 TO joe.hartsoe@enron.com
## 2386 24624 3114 TO linda.robertson@enron.com
## 2387 24625 3114 TO sarah.novosel@enron.com
## 2388 24626 3114 TO donna.fulton@enron.com
## 2389 24875 3119 TO james.d.steffes@enron.com
## 2390 24902 3119 TO richard.shapiro@enron.com
## 2391 24904 3119 TO robert.badeer@enron.com
## 2392 24911 3119 TO steven.j.kean@enron.com
## 2393 24925 3119 TO richard.b.sanders@enron.com
## 2394 24937 3119 TO phillip.k.ellen@enron.com
## 2395 24943 3119 TO jeff.dasovich@enron.com
## 2396 24948 3119 TO richard.shapiro@enron.com
## 2397 25109 3121 TO steven.j.kean@enron.com
## 2398 25117 3121 TO richard.shapiro@enron.com
## 2399 25181 3124 CC james.d.steffes@enron.com
## 2400 25184 3124 BCC james.d.steffes@enron.com
## 2401 25188 3125 CC james.d.steffes@enron.com
## 2402 25191 3125 BCC james.d.steffes@enron.com
## 2403 25258 3126 TO james.d.steffes@enron.com
## 2404 25265 3126 TO jeff.dasovich@enron.com
## 2405 25342 3126 TO richard.shapiro@enron.com
## 2406 25364 3126 TO steven.j.kean@enron.com
## 2407 25380 3127 CC james.d.steffes@enron.com
## 2408 25385 3127 CC richard.shapiro@enron.com
## 2409 25389 3127 BCC james.d.steffes@enron.com
## 2410 25394 3127 BCC richard.shapiro@enron.com
## 2411 25426 3128 TO james.d.steffes@enron.com
## 2412 25453 3128 TO richard.shapiro@enron.com
## 2413 25455 3128 TO robert.badeer@enron.com
## 2414 25462 3128 TO steven.j.kean@enron.com
## 2415 25476 3128 TO richard.b.sanders@enron.com
## 2416 25488 3128 TO phillip.k.ellen@enron.com
## 2417 25494 3128 TO jeff.dasovich@enron.com
## 2418 25499 3128 TO richard.shapiro@enron.com
## 2419 25549 3130 TO steven.j.kean@enron.com
## 2420 25557 3130 TO richard.shapiro@enron.com
## 2421 25834 3134 TO james.d.steffes@enron.com
## 2422 26593 3141 TO joe.hartsoe@enron.com
## 2423 26594 3141 TO sarah.novosel@enron.com
## 2424 26595 3141 TO mary.hain@enron.com
## 2425 26596 3141 TO susan.mara@enron.com
## 2426 26597 3141 TO alan.comnes@enron.com
## 2427 26598 3141 TO donna.fulton@enron.com
## 2428 26599 3141 TO linda.robertson@enron.com
## 2429 26600 3141 TO richard.shapiro@enron.com
## 2430 26601 3141 TO paul.kaufman@enron.com
## 2431 26602 3141 TO james.d.steffes@enron.com
## 2432 26735 3148 TO jeff.dasovich@enron.com
## 2433 26745 3148 TO james.d.steffes@enron.com
## 2434 26746 3148 TO richard.shapiro@enron.com
## 2435 26767 3148 CC steven.j.kean@enron.com
## 2436 26768 3148 BCC steven.j.kean@enron.com
## 2437 26769 3149 TO joe.hartsoe@enron.com
## 2438 26770 3149 TO sarah.novosel@enron.com
## 2439 26771 3149 TO mary.hain@enron.com
## 2440 26772 3149 TO donna.fulton@enron.com
## 2441 26773 3149 TO linda.robertson@enron.com
## 2442 26774 3149 TO james.d.steffes@enron.com
## 2443 26775 3149 TO richard.shapiro@enron.com
## 2444 26776 3149 TO paul.kaufman@enron.com
## 2445 26777 3149 TO susan.mara@enron.com
## 2446 26928 3157 TO james.d.steffes@enron.com
## 2447 26955 3157 TO richard.shapiro@enron.com
## 2448 26957 3157 TO robert.badeer@enron.com
## 2449 26964 3157 TO steven.j.kean@enron.com
## 2450 26978 3157 TO richard.b.sanders@enron.com
## 2451 26990 3157 TO phillip.k.ellen@enron.com
## 2452 26996 3157 TO jeff.dasovich@enron.com
## 2453 27001 3157 TO richard.shapiro@enron.com
## 2454 27018 3158 TO james.d.steffes@enron.com
## 2455 27042 3161 TO james.d.steffes@enron.com
## 2456 27056 3163 TO james.d.steffes@enron.com
## 2457 27082 3165 TO david.w.delainey@enron.com
## 2458 27091 3165 TO james.d.steffes@enron.com
## 2459 27092 3165 TO james.derrick@enron.com
## 2460 27093 3165 TO jeff.dasovich@enron.com
## 2461 27099 3165 TO keith.holst@enron.com
## 2462 27101 3165 TO e..haedicke@enron.com
## 2463 27112 3165 TO mike.grigsby@enron.com
## 2464 27115 3165 TO phillip.k.ellen@enron.com
## 2465 27116 3165 TO richard.b.sanders@enron.com
## 2466 27118 3165 TO richard.shapiro@enron.com
## 2467 27119 3165 TO rick.buy@enron.com
## 2468 27120 3165 TO robert.badeer@enron.com
## 2469 27129 3165 TO shelley.corman@enron.com
## 2470 27132 3165 TO steven.j.kean@enron.com
## 2471 27252 3167 TO james.d.steffes@enron.com
## 2472 27279 3167 TO richard.shapiro@enron.com
## 2473 27281 3167 TO robert.badeer@enron.com
## 2474 27288 3167 TO steven.j.kean@enron.com
## 2475 27302 3167 TO richard.b.sanders@enron.com
## 2476 27314 3167 TO phillip.k.ellen@enron.com
## 2477 27320 3167 TO jeff.dasovich@enron.com
## 2478 27325 3167 TO richard.shapiro@enron.com
## 2479 27438 3171 TO james.d.steffes@enron.com
## 2480 27445 3171 TO jeff.dasovich@enron.com
## 2481 27482 3171 TO richard.shapiro@enron.com
## 2482 27498 3171 TO steven.j.kean@enron.com
## 2483 27575 3174 TO james.d.steffes@enron.com
## 2484 27774 3184 TO james.d.steffes@enron.com
## 2485 27798 3184 CC richard.shapiro@enron.com
## 2486 27799 3184 BCC richard.shapiro@enron.com
## 2487 27834 3185 TO james.d.steffes@enron.com
## 2488 27841 3185 TO jeff.dasovich@enron.com
## 2489 27878 3185 TO richard.shapiro@enron.com
## 2490 27894 3185 TO steven.j.kean@enron.com
## 2491 27908 3186 TO james.d.steffes@enron.com
## 2492 27931 3186 TO richard.shapiro@enron.com
## 2493 27932 3187 TO mary.hain@enron.com
## 2494 27933 3187 CC alan.comnes@enron.com
## 2495 27935 3187 CC christian.yoder@enron.com
## 2496 27936 3187 CC donna.fulton@enron.com
## 2497 27938 3187 CC ray.alvarez@enron.com
## 2498 27939 3187 CC richard.b.sanders@enron.com
## 2499 27940 3187 CC sarah.novosel@enron.com
## 2500 27942 3187 CC steve.c.hall@enron.com
## 2501 27943 3187 CC susan.mara@enron.com
## 2502 27944 3187 CC richard.shapiro@enron.com
## 2503 27945 3187 BCC alan.comnes@enron.com
## 2504 27947 3187 BCC christian.yoder@enron.com
## 2505 27948 3187 BCC donna.fulton@enron.com
## 2506 27950 3187 BCC ray.alvarez@enron.com
## 2507 27951 3187 BCC richard.b.sanders@enron.com
## 2508 27952 3187 BCC sarah.novosel@enron.com
## 2509 27954 3187 BCC steve.c.hall@enron.com
## 2510 27955 3187 BCC susan.mara@enron.com
## 2511 27956 3187 BCC richard.shapiro@enron.com
## 2512 27966 3189 TO shelley.corman@enron.com
## 2513 27974 3189 TO rod.hayslett@enron.com
## 2514 27978 3189 TO steven.j.kean@enron.com
## 2515 27991 3189 TO richard.shapiro@enron.com
## 2516 27993 3189 TO james.d.steffes@enron.com
## 2517 28028 3193 TO james.d.steffes@enron.com
## 2518 28031 3193 TO jeff.dasovich@enron.com
## 2519 28050 3193 TO richard.shapiro@enron.com
## 2520 28053 3193 TO shelley.corman@enron.com
## 2521 28055 3193 TO steven.j.kean@enron.com
## 2522 28077 3196 TO christopher.calger@enron.com
## 2523 28078 3196 TO christian.yoder@enron.com
## 2524 28079 3196 TO james.d.steffes@enron.com
## 2525 28080 3196 TO mary.hain@enron.com
## 2526 28081 3196 TO joe.hartsoe@enron.com
## 2527 28082 3196 TO sarah.novosel@enron.com
## 2528 28083 3196 TO richard.b.sanders@enron.com
## 2529 28085 3196 TO susan.mara@enron.com
## 2530 28086 3196 TO richard.shapiro@enron.com
## 2531 28087 3197 TO richard.b.sanders@enron.com
## 2532 28092 3197 TO james.d.steffes@enron.com
## 2533 28095 3197 TO jeff.dasovich@enron.com
## 2534 28096 3197 TO richard.shapiro@enron.com
## 2535 28182 3199 TO james.d.steffes@enron.com
## 2536 28233 3199 TO kevin.m.presto@enron.com
## 2537 28234 3199 TO m..forney@enron.com
## 2538 28236 3199 TO mike.carson@enron.com
## 2539 28237 3199 TO eric.saibi@enron.com
## 2540 28305 3201 TO james.d.steffes@enron.com
## 2541 28332 3201 TO richard.shapiro@enron.com
## 2542 28334 3201 TO robert.badeer@enron.com
## 2543 28341 3201 TO steven.j.kean@enron.com
## 2544 28355 3201 TO richard.b.sanders@enron.com
## 2545 28367 3201 TO phillip.k.ellen@enron.com
## 2546 28373 3201 TO jeff.dasovich@enron.com
## 2547 28378 3201 TO richard.shapiro@enron.com
## 2548 28854 3211 TO james.d.steffes@enron.com
## 2549 28881 3211 TO richard.shapiro@enron.com
## 2550 28883 3211 TO robert.badeer@enron.com
## 2551 28890 3211 TO steven.j.kean@enron.com
## 2552 28904 3211 TO richard.b.sanders@enron.com
## 2553 28916 3211 TO phillip.k.ellen@enron.com
## 2554 28922 3211 TO jeff.dasovich@enron.com
## 2555 28927 3211 TO richard.shapiro@enron.com
## 2556 28953 3213 TO richard.shapiro@enron.com
## 2557 28954 3213 TO jeff.dasovich@enron.com
## 2558 28955 3213 TO susan.mara@enron.com
## 2559 28956 3213 TO harry.kingerski@enron.com
## 2560 28957 3213 TO sandra.mccubbin@enron.com
## 2561 28958 3213 TO mona.petrochko@enron.com
## 2562 28959 3213 TO marcie.milner@enron.com
## 2563 28960 3213 TO karen.denne@enron.com
## 2564 28961 3213 TO paul.kaufman@enron.com
## 2565 28962 3213 TO mary.hain@enron.com
## 2566 28963 3213 TO alan.comnes@enron.com
## 2567 28964 3213 TO joe.hartsoe@enron.com
## 2568 28965 3213 TO linda.robertson@enron.com
## 2569 29471 3221 TO jeff.dasovich@enron.com
## 2570 29476 3222 TO james.d.steffes@enron.com
## 2571 29477 3222 TO richard.shapiro@enron.com
## 2572 29491 3225 CC james.d.steffes@enron.com
## 2573 29497 3225 BCC james.d.steffes@enron.com
## 2574 29510 3226 TO cara.semperger@enron.com
## 2575 29512 3226 TO mike.swerzbin@enron.com
## 2576 29516 3226 TO elizabeth.sager@enron.com
## 2577 29540 3226 TO sean.crandall@enron.com
## 2578 29542 3226 TO phillip.platter@enron.com
## 2579 29544 3226 TO robert.badeer@enron.com
## 2580 29546 3226 TO m..forney@enron.com
## 2581 29550 3226 TO robert.benson@enron.com
## 2582 29557 3226 TO kevin.m.presto@enron.com
## 2583 29561 3226 TO doug.gilbert-smith@enron.com
## 2584 29570 3226 TO don.baughman@enron.com
## 2585 29573 3226 TO mark.guzman@enron.com
## 2586 29574 3226 TO larry.f.campbell@enron.com
## 2587 29575 3226 TO mike.carson@enron.com
## 2588 29594 3226 TO juan.hernandez@enron.com
## 2589 29604 3226 TO jeff.king@enron.com
## 2590 29620 3226 TO joe.quenet@enron.com
## 2591 29623 3226 TO eric.saibi@enron.com
## 2592 29631 3226 TO joe.stepenovitch@enron.com
## 2593 29646 3226 TO kate.symes@enron.com
## 2594 29658 3226 TO benjamin.rogers@enron.com
## 2595 29663 3226 TO chris.dorland@enron.com
## 2596 29673 3226 TO fletcher.j.sturm@enron.com
## 2597 29677 3226 TO diana.scholtes@enron.com
## 2598 29681 3226 TO matt.motley@enron.com
## 2599 29683 3226 TO holden.salisbury@enron.com
## 2600 29685 3226 TO geir.solberg@enron.com
## 2601 29686 3226 TO ryan.slinger@enron.com
## 2602 29689 3226 TO monika.causholli@enron.com
## 2603 29690 3226 TO mark.guzman@enron.com
## 2604 29697 3226 TO jason.williams@enron.com
## 2605 30122 3231 TO james.d.steffes@enron.com
## 2606 30128 3231 TO richard.shapiro@enron.com
## 2607 30148 3231 TO james.d.steffes@enron.com
## 2608 30169 3231 TO kevin.m.presto@enron.com
## 2609 30201 3232 TO james.d.steffes@enron.com
## 2610 30228 3232 TO richard.shapiro@enron.com
## 2611 30230 3232 TO robert.badeer@enron.com
## 2612 30237 3232 TO steven.j.kean@enron.com
## 2613 30251 3232 TO richard.b.sanders@enron.com
## 2614 30263 3232 TO phillip.k.ellen@enron.com
## 2615 30269 3232 TO jeff.dasovich@enron.com
## 2616 30274 3232 TO richard.shapiro@enron.com
## 2617 30291 3233 TO jeff.dasovich@enron.com
## 2618 30299 3234 TO james.d.steffes@enron.com
## 2619 30438 3236 TO james.d.steffes@enron.com
## 2620 30465 3236 TO richard.shapiro@enron.com
## 2621 30467 3236 TO robert.badeer@enron.com
## 2622 30474 3236 TO steven.j.kean@enron.com
## 2623 30488 3236 TO richard.b.sanders@enron.com
## 2624 30500 3236 TO phillip.k.ellen@enron.com
## 2625 30506 3236 TO jeff.dasovich@enron.com
## 2626 30511 3236 TO richard.shapiro@enron.com
## 2627 31301 3248 CC eric.saibi@enron.com
## 2628 31307 3248 CC james.d.steffes@enron.com
## 2629 31315 3248 CC m..forney@enron.com
## 2630 31319 3248 CC kevin.m.presto@enron.com
## 2631 31324 3248 CC mike.carson@enron.com
## 2632 31359 3248 BCC eric.saibi@enron.com
## 2633 31365 3248 BCC james.d.steffes@enron.com
## 2634 31373 3248 BCC m..forney@enron.com
## 2635 31377 3248 BCC kevin.m.presto@enron.com
## 2636 31382 3248 BCC mike.carson@enron.com
## 2637 31423 3251 TO james.d.steffes@enron.com
## 2638 31479 3254 TO james.d.steffes@enron.com
## 2639 31482 3254 TO jeff.dasovich@enron.com
## 2640 31501 3254 TO richard.shapiro@enron.com
## 2641 31504 3254 TO shelley.corman@enron.com
## 2642 31506 3254 TO steven.j.kean@enron.com
## 2643 31521 3256 CC alan.comnes@enron.com
## 2644 31522 3256 CC christian.yoder@enron.com
## 2645 31523 3256 CC james.d.steffes@enron.com
## 2646 31524 3256 CC jeff.dasovich@enron.com
## 2647 31525 3256 CC joe.hartsoe@enron.com
## 2648 31526 3256 CC mary.hain@enron.com
## 2649 31527 3256 CC michael.tribolet@enron.com
## 2650 31528 3256 CC paul.kaufman@enron.com
## 2651 31529 3256 CC ray.alvarez@enron.com
## 2652 31531 3256 CC richard.b.sanders@enron.com
## 2653 31532 3256 CC richard.shapiro@enron.com
## 2654 31533 3256 CC susan.j.mara@enron.com
## 2655 31534 3256 BCC alan.comnes@enron.com
## 2656 31535 3256 BCC christian.yoder@enron.com
## 2657 31536 3256 BCC james.d.steffes@enron.com
## 2658 31537 3256 BCC jeff.dasovich@enron.com
## 2659 31538 3256 BCC joe.hartsoe@enron.com
## 2660 31539 3256 BCC mary.hain@enron.com
## 2661 31540 3256 BCC michael.tribolet@enron.com
## 2662 31541 3256 BCC paul.kaufman@enron.com
## 2663 31542 3256 BCC ray.alvarez@enron.com
## 2664 31544 3256 BCC richard.b.sanders@enron.com
## 2665 31545 3256 BCC richard.shapiro@enron.com
## 2666 31546 3256 BCC susan.j.mara@enron.com
## 2667 31547 3257 TO jeff.dasovich@enron.com
## 2668 31548 3257 CC donna.fulton@enron.com
## 2669 31549 3257 CC jeff.dasovich@enron.com
## 2670 31550 3257 CC joe.hartsoe@enron.com
## 2671 31551 3257 CC linda.robertson@enron.com
## 2672 31552 3257 CC mary.hain@enron.com
## 2673 31553 3257 CC paul.kaufman@enron.com
## 2674 31554 3257 CC richard.shapiro@enron.com
## 2675 31555 3257 CC sarah.novosel@enron.com
## 2676 31556 3257 CC susan.mara@enron.com
## 2677 31557 3257 BCC donna.fulton@enron.com
## 2678 31558 3257 BCC jeff.dasovich@enron.com
## 2679 31559 3257 BCC joe.hartsoe@enron.com
## 2680 31560 3257 BCC linda.robertson@enron.com
## 2681 31561 3257 BCC mary.hain@enron.com
## 2682 31562 3257 BCC paul.kaufman@enron.com
## 2683 31563 3257 BCC richard.shapiro@enron.com
## 2684 31564 3257 BCC sarah.novosel@enron.com
## 2685 31565 3257 BCC susan.mara@enron.com
## 2686 31570 3258 TO lynn.blair@enron.com
## 2687 31580 3258 TO shelley.corman@enron.com
## 2688 31588 3258 TO drew.fossum@enron.com
## 2689 31593 3258 TO steven.harris@enron.com
## 2690 31597 3258 TO rod.hayslett@enron.com
## 2691 31603 3258 TO stanley.horton@enron.com
## 2692 31607 3258 TO steven.j.kean@enron.com
## 2693 31616 3258 TO teb.lokey@enron.com
## 2694 31653 3258 TO richard.shapiro@enron.com
## 2695 31657 3258 TO james.d.steffes@enron.com
## 2696 32018 3269 TO richard.shapiro@enron.com
## 2697 32021 3269 TO jeff.dasovich@enron.com
## 2698 32022 3269 TO james.d.steffes@enron.com
## 2699 32023 3269 TO phillip.k.ellen@enron.com
## 2700 32030 3269 TO steven.j.kean@enron.com
## 2701 32040 3270 TO richard.shapiro@enron.com
## 2702 32043 3270 TO jeff.dasovich@enron.com
## 2703 32044 3270 TO james.d.steffes@enron.com
## 2704 32045 3270 TO phillip.k.ellen@enron.com
## 2705 32052 3270 TO steven.j.kean@enron.com
## 2706 32063 3270 TO richard.b.sanders@enron.com
## 2707 32073 3271 TO james.d.steffes@enron.com
## 2708 32101 3275 TO richard.shapiro@enron.com
## 2709 32104 3275 TO jeff.dasovich@enron.com
## 2710 32105 3275 TO james.d.steffes@enron.com
## 2711 32106 3275 TO phillip.k.ellen@enron.com
## 2712 32113 3275 TO steven.j.kean@enron.com
## 2713 32123 3275 TO richard.b.sanders@enron.com
## 2714 32129 3276 TO james.d.steffes@enron.com
## 2715 32151 3276 TO richard.shapiro@enron.com
## 2716 32169 3276 TO elizabeth.sager@enron.com
## 2717 32173 3276 TO kay.mann@enron.com
## 2718 32385 3288 TO cara.semperger@enron.com
## 2719 32387 3288 CC james.d.steffes@enron.com
## 2720 32389 3288 BCC james.d.steffes@enron.com
## 2721 32391 3290 TO sean.crandall@enron.com
## 2722 32392 3290 TO diana.scholtes@enron.com
## 2723 32393 3290 TO mark.fischer@enron.com
## 2724 32394 3290 TO tom.alonso@enron.com
## 2725 32395 3290 TO mary.hain@enron.com
## 2726 32396 3290 TO tim.belden@enron.com
## 2727 32397 3290 TO jeff.richter@enron.com
## 2728 32398 3290 TO donald.robinson@enron.com
## 2729 32399 3290 TO lisa.gang@enron.com
## 2730 32400 3290 TO mike.purcell@enron.com
## 2731 32401 3290 TO stacy.runswick@enron.com
## 2732 32402 3290 TO carla.hoffman@enron.com
## 2733 32403 3290 TO phillip.platter@enron.com
## 2734 32404 3290 TO chris.mallory@enron.com
## 2735 32405 3290 TO jesse.bryson@enron.com
## 2736 32406 3290 TO bill.iii@enron.com
## 2737 32413 3291 TO james.d.steffes@enron.com
## 2738 32416 3291 TO jeff.dasovich@enron.com
## 2739 32435 3291 TO richard.shapiro@enron.com
## 2740 32438 3291 TO shelley.corman@enron.com
## 2741 32440 3291 TO steven.j.kean@enron.com
## 2742 32485 3298 CC james.d.steffes@enron.com
## 2743 32487 3298 BCC james.d.steffes@enron.com
## 2744 32514 3318 TO james.d.steffes@enron.com
## 2745 32517 3318 TO jeff.dasovich@enron.com
## 2746 32535 3318 TO richard.shapiro@enron.com
## 2747 32538 3318 TO shelley.corman@enron.com
## 2748 32540 3318 TO steven.j.kean@enron.com
## 2749 32630 3325 CC alan.comnes@enron.com
## 2750 32631 3325 CC susan.j.mara@enron.com
## 2751 32632 3325 CC chris.h.foster@enron.com
## 2752 32633 3325 CC christian.yoder@enron.com
## 2753 32634 3325 CC christopher.f.calger@enron.com
## 2754 32635 3325 CC david.leboe@enron.com
## 2755 32636 3325 CC david.parquet@enron.com
## 2756 32637 3325 CC dbenevid@enron.com
## 2757 32638 3325 CC harry.kingerski@enron.com
## 2758 32639 3325 CC james.d.steffes@enron.com
## 2759 32640 3325 CC janel.guerrero@enron.com
## 2760 32641 3325 CC jeff.dasovich@enron.com
## 2761 32642 3325 CC joe.hartsoe@enron.com
## 2762 32643 3325 CC lavorato@enron.com
## 2763 32644 3325 CC karen.denne@enron.com
## 2764 32645 3325 CC leslie.lawner@enron.com
## 2765 32646 3325 CC mark.palmer@enron.com
## 2766 32647 3325 CC mary.hain@enron.com
## 2767 32648 3325 CC nbresnan@enron.com
## 2768 32649 3325 CC phillip.k.allen@enron.com
## 2769 32650 3325 CC ray.alvarez@enron.com
## 2770 32651 3325 CC richard.b.sanders@enron.com
## 2771 32652 3325 CC richard.shapiro@enron.com
## 2772 32653 3325 CC sandra.mccubbin@enron.com
## 2773 32654 3325 CC steve.hall@enron.com
## 2774 32655 3325 CC steven.j.kean@enron.com
## 2775 32656 3325 CC tim.belden@enron.com
## 2776 32657 3325 CC tim.heizenrader@enron.com
## 2777 32658 3325 BCC alan.comnes@enron.com
## 2778 32659 3325 BCC susan.j.mara@enron.com
## 2779 32660 3325 BCC chris.h.foster@enron.com
## 2780 32661 3325 BCC christian.yoder@enron.com
## 2781 32662 3325 BCC christopher.f.calger@enron.com
## 2782 32663 3325 BCC david.leboe@enron.com
## 2783 32664 3325 BCC david.parquet@enron.com
## 2784 32665 3325 BCC dbenevid@enron.com
## 2785 32666 3325 BCC harry.kingerski@enron.com
## 2786 32667 3325 BCC james.d.steffes@enron.com
## 2787 32668 3325 BCC janel.guerrero@enron.com
## 2788 32669 3325 BCC jeff.dasovich@enron.com
## 2789 32670 3325 BCC joe.hartsoe@enron.com
## 2790 32671 3325 BCC lavorato@enron.com
## 2791 32672 3325 BCC karen.denne@enron.com
## 2792 32673 3325 BCC leslie.lawner@enron.com
## 2793 32674 3325 BCC mark.palmer@enron.com
## 2794 32675 3325 BCC mary.hain@enron.com
## 2795 32676 3325 BCC nbresnan@enron.com
## 2796 32677 3325 BCC phillip.k.allen@enron.com
## 2797 32678 3325 BCC ray.alvarez@enron.com
## 2798 32679 3325 BCC richard.b.sanders@enron.com
## 2799 32680 3325 BCC richard.shapiro@enron.com
## 2800 32681 3325 BCC sandra.mccubbin@enron.com
## 2801 32682 3325 BCC steve.hall@enron.com
## 2802 32683 3325 BCC steven.j.kean@enron.com
## 2803 32684 3325 BCC tim.belden@enron.com
## 2804 32685 3325 BCC tim.heizenrader@enron.com
## 2805 32690 3326 TO lynn.blair@enron.com
## 2806 32700 3326 TO shelley.corman@enron.com
## 2807 32708 3326 TO drew.fossum@enron.com
## 2808 32713 3326 TO steven.harris@enron.com
## 2809 32717 3326 TO rod.hayslett@enron.com
## 2810 32723 3326 TO stanley.horton@enron.com
## 2811 32727 3326 TO steven.j.kean@enron.com
## 2812 32736 3326 TO teb.lokey@enron.com
## 2813 32773 3326 TO richard.shapiro@enron.com
## 2814 32777 3326 TO james.d.steffes@enron.com
## 2815 32936 3329 TO james.d.steffes@enron.com
## 2816 32942 3329 TO jeff.dasovich@enron.com
## 2817 32974 3329 TO richard.shapiro@enron.com
## 2818 32989 3329 TO steven.j.kean@enron.com
## 2819 33463 3352 TO james.d.steffes@enron.com
## 2820 33466 3352 TO jeff.dasovich@enron.com
## 2821 33484 3352 TO richard.shapiro@enron.com
## 2822 33487 3352 TO shelley.corman@enron.com
## 2823 33489 3352 TO steven.j.kean@enron.com
## 2824 33529 3353 TO james.d.steffes@enron.com
## 2825 33556 3353 TO richard.shapiro@enron.com
## 2826 33558 3353 TO robert.badeer@enron.com
## 2827 33565 3353 TO steven.j.kean@enron.com
## 2828 33579 3353 TO richard.b.sanders@enron.com
## 2829 33591 3353 TO phillip.k.ellen@enron.com
## 2830 33597 3353 TO jeff.dasovich@enron.com
## 2831 33602 3353 TO richard.shapiro@enron.com
## 2832 33781 3356 TO james.d.steffes@enron.com
## 2833 33788 3356 TO jeff.dasovich@enron.com
## 2834 33858 3356 TO richard.shapiro@enron.com
## 2835 33878 3356 TO steven.j.kean@enron.com
## 2836 33894 3356 CC louise.kitchen@enron.com
## 2837 33895 3356 CC david.w.delainey@enron.com
## 2838 33904 3356 CC jeffrey.a.shankman@enron.com
## 2839 33910 3356 BCC louise.kitchen@enron.com
## 2840 33911 3356 BCC david.w.delainey@enron.com
## 2841 33920 3356 BCC jeffrey.a.shankman@enron.com
## 2842 34014 3369 TO james.d.steffes@enron.com
## 2843 34017 3369 TO jeff.dasovich@enron.com
## 2844 34035 3369 TO richard.shapiro@enron.com
## 2845 34038 3369 TO shelley.corman@enron.com
## 2846 34040 3369 TO steven.j.kean@enron.com
## 2847 34059 3370 TO james.d.steffes@enron.com
## 2848 34062 3370 TO jeff.dasovich@enron.com
## 2849 34080 3370 TO richard.shapiro@enron.com
## 2850 34083 3370 TO shelley.corman@enron.com
## 2851 34085 3370 TO steven.j.kean@enron.com
## 2852 34128 3374 TO lynn.blair@enron.com
## 2853 34138 3374 TO shelley.corman@enron.com
## 2854 34146 3374 TO drew.fossum@enron.com
## 2855 34151 3374 TO steven.harris@enron.com
## 2856 34155 3374 TO rod.hayslett@enron.com
## 2857 34161 3374 TO stanley.horton@enron.com
## 2858 34165 3374 TO steven.j.kean@enron.com
## 2859 34174 3374 TO teb.lokey@enron.com
## 2860 34211 3374 TO richard.shapiro@enron.com
## 2861 34215 3374 TO james.d.steffes@enron.com
## 2862 34303 3383 TO lynn.blair@enron.com
## 2863 34313 3383 TO shelley.corman@enron.com
## 2864 34321 3383 TO drew.fossum@enron.com
## 2865 34326 3383 TO steven.harris@enron.com
## 2866 34330 3383 TO rod.hayslett@enron.com
## 2867 34336 3383 TO stanley.horton@enron.com
## 2868 34340 3383 TO steven.j.kean@enron.com
## 2869 34349 3383 TO teb.lokey@enron.com
## 2870 34386 3383 TO richard.shapiro@enron.com
## 2871 34390 3383 TO james.d.steffes@enron.com
## 2872 34412 3384 TO james.d.steffes@enron.com
## 2873 34415 3384 TO jeff.dasovich@enron.com
## 2874 34433 3384 TO richard.shapiro@enron.com
## 2875 34436 3384 TO shelley.corman@enron.com
## 2876 34438 3384 TO steven.j.kean@enron.com
## 2877 34552 3385 TO e..haedicke@enron.com
## 2878 34673 3385 TO phillip.platter@enron.com
## 2879 34676 3385 TO kevin.m.presto@enron.com
## 2880 34692 3385 TO richard.b.sanders@enron.com
## 2881 34697 3385 TO diana.scholtes@enron.com
## 2882 34699 3385 TO cara.semperger@enron.com
## 2883 34701 3385 TO richard.shapiro@enron.com
## 2884 34717 3385 TO james.d.steffes@enron.com
## 2885 34718 3385 TO james.d.steffes@enron.com
## 2886 34723 3385 TO mike.swerzbin@enron.com
## 2887 34763 3385 TO steven.j.kean@enron.com
## 2888 34775 3385 TO jeff.dasovich@enron.com
## 2889 34776 3385 TO sean.crandall@enron.com
## 2890 34783 3385 TO robert.badeer@enron.com
## 2891 34784 3385 TO phillip.k.ellen@enron.com
## 2892 34822 3385 TO james.d.steffes@enron.com
## 2893 34828 3385 TO jeff.dasovich@enron.com
## 2894 34865 3385 TO richard.shapiro@enron.com
## 2895 34881 3385 TO steven.j.kean@enron.com
## 2896 34895 3385 TO steven.j.kean@enron.com
## 2897 34902 3385 TO richard.shapiro@enron.com
## 2898 34917 3385 TO shelley.corman@enron.com
## 2899 34919 3385 TO kevin.m.presto@enron.com
## 2900 34951 3387 TO michelle.cash@enron.com
## 2901 34985 3387 TO drew.fossum@enron.com
## 2902 34996 3387 TO e..haedicke@enron.com
## 2903 35019 3387 TO steven.j.kean@enron.com
## 2904 35115 3398 TO shelley.corman@enron.com
## 2905 35123 3398 TO rod.hayslett@enron.com
## 2906 35127 3398 TO steven.j.kean@enron.com
## 2907 35140 3398 TO richard.shapiro@enron.com
## 2908 35142 3398 TO james.d.steffes@enron.com
## 2909 35152 3400 TO shelley.corman@enron.com
## 2910 35160 3400 TO rod.hayslett@enron.com
## 2911 35164 3400 TO steven.j.kean@enron.com
## 2912 35177 3400 TO richard.shapiro@enron.com
## 2913 35179 3400 TO james.d.steffes@enron.com
## 2914 35213 3403 TO james.d.steffes@enron.com
## 2915 35240 3403 TO richard.shapiro@enron.com
## 2916 35242 3403 TO robert.badeer@enron.com
## 2917 35249 3403 TO steven.j.kean@enron.com
## 2918 35263 3403 TO richard.b.sanders@enron.com
## 2919 35274 3403 TO phillip.k.ellen@enron.com
## 2920 35280 3403 TO jeff.dasovich@enron.com
## 2921 35285 3403 TO richard.shapiro@enron.com
## 2922 35304 3404 TO james.d.steffes@enron.com
## 2923 35349 3404 TO don.baughman@enron.com
## 2924 35355 3404 TO jeff.king@enron.com
## 2925 35356 3404 TO robert.benson@enron.com
## 2926 35357 3404 TO fletcher.j.sturm@enron.com
## 2927 35376 3404 TO richard.shapiro@enron.com
## 2928 35377 3404 TO steven.j.kean@enron.com
## 2929 35378 3404 TO kevin.m.presto@enron.com
## 2930 35381 3404 TO m..forney@enron.com
## 2931 35385 3404 TO shelley.corman@enron.com
## 2932 35390 3409 TO daniel.allegretti@enron.com
## 2933 35391 3409 TO nancy.bagot@enron.com
## 2934 35392 3409 TO martha.benner@enron.com
## 2935 35393 3409 TO donna.bily@enron.com
## 2936 35394 3409 TO lynn.blair@enron.com
## 2937 35395 3409 TO jack.boatman@enron.com
## 2938 35396 3409 TO rob.bradley@enron.com
## 2939 35397 3409 TO theresa.branney@enron.com
## 2940 35398 3409 TO lorna.brennan@enron.com
## 2941 35399 3409 TO tom.briggs@enron.com
## 2942 35400 3409 TO janet.butler@enron.com
## 2943 35401 3409 TO bob.chandler@enron.com
## 2944 35402 3409 TO alan.comnes@enron.com
## 2945 35403 3409 TO bill.cordes@enron.com
## 2946 35404 3409 TO shelley.corman@enron.com
## 2947 35405 3409 TO christi.culwell@enron.com
## 2948 35406 3409 TO shonnie.daniel@enron.com
## 2949 35407 3409 TO mary.darveaux@enron.com
## 2950 35408 3409 TO rick.dietz@enron.com
## 2951 35409 3409 TO dari.dornan@enron.com
## 2952 35410 3409 TO john.dushinske@enron.com
## 2953 35411 3409 TO sharon.farrell@enron.com
## 2954 35412 3409 TO drew.fossum@enron.com
## 2955 35413 3409 TO bret.fritch@enron.com
## 2956 35414 3409 TO donna.fulton@enron.com
## 2957 35415 3409 TO john.goodpasture@enron.com
## 2958 35416 3409 TO mary.hain@enron.com
## 2959 35417 3409 TO steven.harris@enron.com
## 2960 35418 3409 TO joe.hartsoe@enron.com
## 2961 35419 3409 TO glen.hass@enron.com
## 2962 35420 3409 TO robert.hayes@enron.com
## 2963 35421 3409 TO rod.hayslett@enron.com
## 2964 35422 3409 TO bambi.heckerman@enron.com
## 2965 35423 3409 TO theresa.hess@enron.com
## 2966 35424 3409 TO robert.hill@enron.com
## 2967 35425 3409 TO staci.holtzman@enron.com
## 2968 35426 3409 TO tamara.hopkins@enron.com
## 2969 35427 3409 TO stanley.horton@enron.com
## 2970 35428 3409 TO lee.huber@enron.com
## 2971 35429 3409 TO martha.janousek@enron.com
## 2972 35430 3409 TO steven.january@enron.com
## 2973 35431 3409 TO steven.j.kean@enron.com
## 2974 35432 3409 TO robert.kilmer@enron.com
## 2975 35433 3409 TO frazier.king@enron.com
## 2976 35434 3409 TO steve.kirk@enron.com
## 2977 35435 3409 TO tim.kissner@enron.com
## 2978 35436 3409 TO laura.lantefield@enron.com
## 2979 35437 3409 TO linda.lawrence@enron.com
## 2980 35438 3409 TO blair.lichtenwalter@enron.com
## 2981 35439 3409 TO elizabeth.linnell@enron.com
## 2982 35440 3409 TO teb.lokey@enron.com
## 2983 35441 3409 TO phil.lowry@enron.com
## 2984 35442 3409 TO susan.mara@enron.com
## 2985 35443 3409 TO donna.martens@enron.com
## 2986 35444 3409 TO jerry.martin@enron.com
## 2987 35445 3409 TO dorothy.mccoppin@enron.com
## 2988 35446 3409 TO mike.mcgowan@enron.com
## 2989 35447 3409 TO mary.miller@enron.com
## 2990 35448 3409 TO michael.moran@enron.com
## 2991 35449 3409 TO sheila.nacey@enron.com
## 2992 35450 3409 TO kimberly.nelson@enron.com
## 2993 35451 3409 TO michel.nelson@enron.com
## 2994 35452 3409 TO ray.neppl@enron.com
## 2995 35453 3409 TO dave.neubauer@enron.com
## 2996 35454 3409 TO robert.neustaedter@enron.com
## 2997 35455 3409 TO christi.nicolay@enron.com
## 2998 35456 3409 TO sarah.novosel@enron.com
## 2999 35457 3409 TO ranelle.paladino@enron.com
## 3000 35458 3409 TO maureen.palmer@enron.com
## 3001 35459 3409 TO zelda.paschal@enron.com
## 3002 35460 3409 TO geneva.patterson@enron.com
## 3003 35461 3409 TO maria.pavlou@enron.com
## 3004 35462 3409 TO eileen.peebles@enron.com
## 3005 35463 3409 TO keith.petersen@enron.com
## 3006 35464 3409 TO peggy.phillips@enron.com
## 3007 35465 3409 TO janet.place@enron.com
## 3008 35466 3409 TO dan.pribble@enron.com
## 3009 35467 3409 TO tony.pryor@enron.com
## 3010 35468 3409 TO colleen.raker@enron.com
## 3011 35469 3409 TO randy.rice@enron.com
## 3012 35470 3409 TO kathy.ringblom@enron.com
## 3013 35471 3409 TO linda.robertson@enron.com
## 3014 35472 3409 TO james.saunders@enron.com
## 3015 35473 3409 TO lisa.sawyer@enron.com
## 3016 35474 3409 TO donna.scott@enron.com
## 3017 35475 3409 TO susan.scott@enron.com
## 3018 35476 3409 TO john.shafer@enron.com
## 3019 35477 3409 TO richard.shapiro@enron.com
## 3020 35478 3409 TO mike.smith@enron.com
## 3021 35479 3409 TO louis.soldano@enron.com
## 3022 35480 3409 TO lon.stanton@enron.com
## 3023 35481 3409 TO james.d.steffes@enron.com
## 3024 35482 3409 TO james.studebaker@enron.com
## 3025 35483 3409 TO jim.talcott@enron.com
## 3026 35484 3409 TO gina.taylor@enron.com
## 3027 35485 3409 TO denis.tu@enron.com
## 3028 35486 3409 TO michael.norden@enron.com
## 3029 35487 3409 TO stephen.veatch@enron.com
## 3030 35488 3409 TO donald.vignaroli@enron.com
## 3031 35489 3409 TO jody.warner@enron.com
## 3032 35490 3409 TO kimberly.watson@enron.com
## 3033 35491 3409 TO julia.white@enron.com
## 3034 35492 3409 TO kim.wilkie@enron.com
## 3035 35493 3409 TO jane.wilson@enron.com
## 3036 35494 3409 TO rob.wilson@enron.com
## 3037 35495 3409 TO michele.winckowski@enron.com
## 3038 35496 3409 TO lisa.yoho@enron.com
## 3039 36614 3432 TO james.d.steffes@enron.com
## 3040 36641 3432 TO richard.shapiro@enron.com
## 3041 36643 3432 TO robert.badeer@enron.com
## 3042 36650 3432 TO steven.j.kean@enron.com
## 3043 36664 3432 TO richard.b.sanders@enron.com
## 3044 36675 3432 TO phillip.k.ellen@enron.com
## 3045 36681 3432 TO jeff.dasovich@enron.com
## 3046 36686 3432 TO richard.shapiro@enron.com
## 3047 36722 3437 TO jeff.dasovich@enron.com
## 3048 36740 3437 CC james.d.steffes@enron.com
## 3049 36742 3437 BCC james.d.steffes@enron.com
## 3050 36770 3438 TO james.d.steffes@enron.com
## 3051 36797 3438 TO richard.shapiro@enron.com
## 3052 36799 3438 TO robert.badeer@enron.com
## 3053 36806 3438 TO steven.j.kean@enron.com
## 3054 36820 3438 TO richard.b.sanders@enron.com
## 3055 36831 3438 TO phillip.k.ellen@enron.com
## 3056 36837 3438 TO jeff.dasovich@enron.com
## 3057 36842 3438 TO richard.shapiro@enron.com
## 3058 36886 3439 TO james.d.steffes@enron.com
## 3059 36913 3439 TO richard.shapiro@enron.com
## 3060 36915 3439 TO robert.badeer@enron.com
## 3061 36922 3439 TO steven.j.kean@enron.com
## 3062 36936 3439 TO richard.b.sanders@enron.com
## 3063 36947 3439 TO phillip.k.ellen@enron.com
## 3064 36953 3439 TO jeff.dasovich@enron.com
## 3065 36958 3439 TO richard.shapiro@enron.com
## 3066 37002 3440 TO james.d.steffes@enron.com
## 3067 37029 3440 TO richard.shapiro@enron.com
## 3068 37031 3440 TO robert.badeer@enron.com
## 3069 37038 3440 TO steven.j.kean@enron.com
## 3070 37052 3440 TO richard.b.sanders@enron.com
## 3071 37063 3440 TO phillip.k.ellen@enron.com
## 3072 37069 3440 TO jeff.dasovich@enron.com
## 3073 37074 3440 TO richard.shapiro@enron.com
## 3074 37118 3441 TO james.d.steffes@enron.com
## 3075 37145 3441 TO richard.shapiro@enron.com
## 3076 37147 3441 TO robert.badeer@enron.com
## 3077 37154 3441 TO steven.j.kean@enron.com
## 3078 37168 3441 TO richard.b.sanders@enron.com
## 3079 37179 3441 TO phillip.k.ellen@enron.com
## 3080 37185 3441 TO jeff.dasovich@enron.com
## 3081 37190 3441 TO richard.shapiro@enron.com
## 3082 37234 3442 TO james.d.steffes@enron.com
## 3083 37261 3442 TO richard.shapiro@enron.com
## 3084 37263 3442 TO robert.badeer@enron.com
## 3085 37270 3442 TO steven.j.kean@enron.com
## 3086 37284 3442 TO richard.b.sanders@enron.com
## 3087 37295 3442 TO phillip.k.ellen@enron.com
## 3088 37301 3442 TO jeff.dasovich@enron.com
## 3089 37306 3442 TO richard.shapiro@enron.com
## 3090 37432 3446 TO james.d.steffes@enron.com
## 3091 37459 3446 TO richard.shapiro@enron.com
## 3092 37461 3446 TO robert.badeer@enron.com
## 3093 37468 3446 TO steven.j.kean@enron.com
## 3094 37482 3446 TO richard.b.sanders@enron.com
## 3095 37493 3446 TO phillip.k.ellen@enron.com
## 3096 37499 3446 TO jeff.dasovich@enron.com
## 3097 37504 3446 TO richard.shapiro@enron.com
## 3098 37548 3447 TO james.d.steffes@enron.com
## 3099 37554 3447 TO jeff.dasovich@enron.com
## 3100 37585 3447 TO richard.shapiro@enron.com
## 3101 37600 3447 TO steven.j.kean@enron.com
## 3102 37639 3448 TO james.d.steffes@enron.com
## 3103 37666 3448 TO richard.shapiro@enron.com
## 3104 37668 3448 TO robert.badeer@enron.com
## 3105 37675 3448 TO steven.j.kean@enron.com
## 3106 37689 3448 TO richard.b.sanders@enron.com
## 3107 37700 3448 TO phillip.k.ellen@enron.com
## 3108 37706 3448 TO jeff.dasovich@enron.com
## 3109 37711 3448 TO richard.shapiro@enron.com
## 3110 37767 3449 CC james.d.steffes@enron.com
## 3111 37772 3449 CC jeff.dasovich@enron.com
## 3112 37807 3449 CC phillip.k.ellen@enron.com
## 3113 37813 3449 CC richard.b.sanders@enron.com
## 3114 37816 3449 CC richard.shapiro@enron.com
## 3115 37818 3449 CC robert.badeer@enron.com
## 3116 37826 3449 CC steven.j.kean@enron.com
## 3117 37882 3449 BCC james.d.steffes@enron.com
## 3118 37887 3449 BCC jeff.dasovich@enron.com
## 3119 37922 3449 BCC phillip.k.ellen@enron.com
## 3120 37928 3449 BCC richard.b.sanders@enron.com
## 3121 37931 3449 BCC richard.shapiro@enron.com
## 3122 37933 3449 BCC robert.badeer@enron.com
## 3123 37941 3449 BCC steven.j.kean@enron.com
## 3124 37991 3451 TO james.d.steffes@enron.com
## 3125 38015 3451 TO richard.shapiro@enron.com
## 3126 38044 3452 TO james.d.steffes@enron.com
## 3127 38071 3452 TO richard.shapiro@enron.com
## 3128 38073 3452 TO robert.badeer@enron.com
## 3129 38080 3452 TO steven.j.kean@enron.com
## 3130 38094 3452 TO richard.b.sanders@enron.com
## 3131 38105 3452 TO phillip.k.ellen@enron.com
## 3132 38111 3452 TO jeff.dasovich@enron.com
## 3133 38116 3452 TO richard.shapiro@enron.com
## 3134 38147 3462 TO alan.comnes@enron.com
## 3135 38148 3462 TO chris.foster@enron.com
## 3136 38149 3462 TO christian.yoder@enron.com
## 3137 38150 3462 TO christopher.calger@enron.com
## 3138 38151 3462 TO cynthia.sandherr@enron.com
## 3139 38152 3462 TO dan.leff@enron.com
## 3140 38153 3462 TO david.w.delainey@enron.com
## 3141 38154 3462 TO dennis.benevides@enron.com
## 3142 38155 3462 TO don.black@enron.com
## 3143 38156 3462 TO elizabeth.sager@enron.com
## 3144 38157 3462 TO elizabeth.tilney@enron.com
## 3145 38158 3462 TO eric.thode@enron.com
## 3146 38159 3462 TO gordon.savage@enron.com
## 3147 38160 3462 TO greg.wolfe@enron.com
## 3148 38161 3462 TO harry.kingerski@enron.com
## 3149 38162 3462 TO jubran.whalan@enron.com
## 3150 38163 3462 TO jeff.dasovich@enron.com
## 3151 38164 3462 TO jeffrey.hodge@enron.com
## 3152 38165 3462 TO joe.hartsoe@enron.com
## 3153 38166 3462 TO john.lavorato@enron.com
## 3154 38167 3462 TO john.neslage@enron.com
## 3155 38168 3462 TO kathryn.corbally@enron.com
## 3156 38169 3462 TO keith.holst@enron.com
## 3157 38170 3462 TO kristin.walsh@enron.com
## 3158 38171 3462 TO leslie.lawner@enron.com
## 3159 38172 3462 TO linda.robertson@enron.com
## 3160 38173 3462 TO louise.kitchen@enron.com
## 3161 38174 3462 TO marcia.linton@enron.com
## 3162 38175 3462 TO mary.schoen@enron.com
## 3163 38177 3462 TO mark.palmer@enron.com
## 3164 38178 3462 TO marty.sunde@enron.com
## 3165 38179 3462 TO mary.hain@enron.com
## 3166 38180 3462 TO michael.tribolet@enron.com
## 3167 38181 3462 TO mike.smith@enron.com
## 3168 38182 3462 TO mike.grigsby@enron.com
## 3169 38183 3462 TO neil.bresnan@enron.com
## 3170 38184 3462 TO paul.kaufman@enron.com
## 3171 38185 3462 TO phillip.k.ellen@enron.com
## 3172 38186 3462 TO robert.badeer@enron.com
## 3173 38187 3462 TO rebecca.cantrell@enron.com
## 3174 38188 3462 TO richard.b.sanders@enron.com
## 3175 38189 3462 TO richard.shapiro@enron.com
## 3176 38190 3462 TO rob.bradley@enron.com
## 3177 38191 3462 TO robert.williams@enron.com
## 3178 38192 3462 TO robert.frank@enron.com
## 3179 38193 3462 TO robert.frank@enron.com
## 3180 38194 3462 TO robert.johnston@enron.com
## 3181 38195 3462 TO robert.neustaedter@enron.com
## 3182 38196 3462 TO sandra.mccubbin@enron.com
## 3183 38197 3462 TO scott.stoness@enron.com
## 3184 38198 3462 TO shelley.corman@enron.com
## 3185 38199 3462 TO steve.hall@enron.com
## 3186 38200 3462 TO steve.walton@enron.com
## 3187 38201 3462 TO steven.j.kean@enron.com
## 3188 38202 3462 TO susan.mara@enron.com
## 3189 38203 3462 TO tim.belden@enron.com
## 3190 38204 3462 TO tom.briggs@enron.com
## 3191 38205 3462 TO travis.mccullough@enron.com
## 3192 38206 3462 TO vance.meyer@enron.com
## 3193 38207 3462 TO vicki.sharp@enron.com
## 3194 38208 3462 TO wendy.conwell@enron.com
## 3195 38209 3462 TO william.bradford@enron.com
## 3196 38236 3463 TO james.d.steffes@enron.com
## 3197 38242 3463 TO jeff.dasovich@enron.com
## 3198 38273 3463 TO richard.shapiro@enron.com
## 3199 38288 3463 TO steven.j.kean@enron.com
## 3200 38563 3468 TO james.d.steffes@enron.com
## 3201 38590 3468 TO richard.shapiro@enron.com
## 3202 38592 3468 TO robert.badeer@enron.com
## 3203 38599 3468 TO steven.j.kean@enron.com
## 3204 38613 3468 TO richard.b.sanders@enron.com
## 3205 38624 3468 TO phillip.k.ellen@enron.com
## 3206 38630 3468 TO jeff.dasovich@enron.com
## 3207 38635 3468 TO richard.shapiro@enron.com
## 3208 38681 3470 TO james.d.steffes@enron.com
## 3209 38687 3470 TO jeff.dasovich@enron.com
## 3210 38718 3470 TO richard.shapiro@enron.com
## 3211 38733 3470 TO steven.j.kean@enron.com
## 3212 39837 3506 CC james.d.steffes@enron.com
## 3213 39838 3506 CC richard.shapiro@enron.com
## 3214 39842 3506 BCC james.d.steffes@enron.com
## 3215 39843 3506 BCC richard.shapiro@enron.com
## 3216 39871 3507 TO james.d.steffes@enron.com
## 3217 39877 3507 TO jeff.dasovich@enron.com
## 3218 39908 3507 TO richard.shapiro@enron.com
## 3219 39923 3507 TO steven.j.kean@enron.com
## 3220 39949 3514 TO james.d.steffes@enron.com
## 3221 39980 3517 CC james.d.steffes@enron.com
## 3222 39981 3517 CC richard.shapiro@enron.com
## 3223 39985 3517 BCC james.d.steffes@enron.com
## 3224 39986 3517 BCC richard.shapiro@enron.com
## 3225 40022 3520 CC james.d.steffes@enron.com
## 3226 40023 3520 CC richard.shapiro@enron.com
## 3227 40035 3520 BCC james.d.steffes@enron.com
## 3228 40036 3520 BCC richard.shapiro@enron.com
## 3229 40067 3522 TO james.d.steffes@enron.com
## 3230 40094 3522 TO richard.shapiro@enron.com
## 3231 40096 3522 TO robert.badeer@enron.com
## 3232 40103 3522 TO steven.j.kean@enron.com
## 3233 40117 3522 TO richard.b.sanders@enron.com
## 3234 40128 3522 TO phillip.k.ellen@enron.com
## 3235 40134 3522 TO jeff.dasovich@enron.com
## 3236 40139 3522 TO richard.shapiro@enron.com
## 3237 40163 3525 TO james.d.steffes@enron.com
## 3238 40201 3525 TO don.baughman@enron.com
## 3239 40207 3525 TO jeff.king@enron.com
## 3240 40208 3525 TO robert.benson@enron.com
## 3241 40209 3525 TO fletcher.j.sturm@enron.com
## 3242 40248 3525 TO kevin.m.presto@enron.com
## 3243 40250 3525 TO elizabeth.sager@enron.com
## 3244 40251 3525 TO kay.mann@enron.com
## 3245 40291 3526 TO james.d.steffes@enron.com
## 3246 40318 3526 TO richard.shapiro@enron.com
## 3247 40320 3526 TO robert.badeer@enron.com
## 3248 40327 3526 TO steven.j.kean@enron.com
## 3249 40341 3526 TO richard.b.sanders@enron.com
## 3250 40352 3526 TO phillip.k.ellen@enron.com
## 3251 40358 3526 TO jeff.dasovich@enron.com
## 3252 40363 3526 TO richard.shapiro@enron.com
## 3253 40410 3528 TO james.d.steffes@enron.com
## 3254 40437 3528 TO richard.shapiro@enron.com
## 3255 40439 3528 TO robert.badeer@enron.com
## 3256 40446 3528 TO steven.j.kean@enron.com
## 3257 40460 3528 TO richard.b.sanders@enron.com
## 3258 40471 3528 TO phillip.k.ellen@enron.com
## 3259 40477 3528 TO jeff.dasovich@enron.com
## 3260 40482 3528 TO richard.shapiro@enron.com
## 3261 40531 3532 TO james.d.steffes@enron.com
## 3262 40558 3532 TO richard.shapiro@enron.com
## 3263 40560 3532 TO robert.badeer@enron.com
## 3264 40567 3532 TO steven.j.kean@enron.com
## 3265 40581 3532 TO richard.b.sanders@enron.com
## 3266 40592 3532 TO phillip.k.ellen@enron.com
## 3267 40598 3532 TO jeff.dasovich@enron.com
## 3268 40603 3532 TO richard.shapiro@enron.com
## 3269 40694 3544 TO james.d.steffes@enron.com
## 3270 41246 3552 TO james.d.steffes@enron.com
## 3271 41252 3552 TO jeff.dasovich@enron.com
## 3272 41283 3552 TO richard.shapiro@enron.com
## 3273 41298 3552 TO steven.j.kean@enron.com
## 3274 41354 3553 CC james.d.steffes@enron.com
## 3275 41359 3553 CC jeff.dasovich@enron.com
## 3276 41390 3553 CC richard.shapiro@enron.com
## 3277 41405 3553 CC steven.j.kean@enron.com
## 3278 41458 3553 BCC james.d.steffes@enron.com
## 3279 41463 3553 BCC jeff.dasovich@enron.com
## 3280 41494 3553 BCC richard.shapiro@enron.com
## 3281 41509 3553 BCC steven.j.kean@enron.com
## 3282 41676 3555 TO james.d.steffes@enron.com
## 3283 41683 3555 TO jeff.dasovich@enron.com
## 3284 41719 3555 TO richard.shapiro@enron.com
## 3285 41735 3555 TO steven.j.kean@enron.com
## 3286 41828 3561 TO james.d.steffes@enron.com
## 3287 41834 3561 TO jeff.dasovich@enron.com
## 3288 41865 3561 TO richard.shapiro@enron.com
## 3289 41880 3561 TO steven.j.kean@enron.com
## 3290 41903 3562 TO jeff.dasovich@enron.com
## 3291 41921 3562 CC james.d.steffes@enron.com
## 3292 41922 3562 CC richard.shapiro@enron.com
## 3293 41923 3562 BCC james.d.steffes@enron.com
## 3294 41924 3562 BCC richard.shapiro@enron.com
## 3295 41942 3565 TO james.d.steffes@enron.com
## 3296 41964 3565 TO richard.shapiro@enron.com
## 3297 41966 3565 TO kevin.m.presto@enron.com
## 3298 41999 3567 TO james.d.steffes@enron.com
## 3299 42026 3567 TO richard.shapiro@enron.com
## 3300 42028 3567 TO robert.badeer@enron.com
## 3301 42035 3567 TO steven.j.kean@enron.com
## 3302 42049 3567 TO richard.b.sanders@enron.com
## 3303 42060 3567 TO phillip.k.ellen@enron.com
## 3304 42066 3567 TO jeff.dasovich@enron.com
## 3305 42071 3567 TO richard.shapiro@enron.com
## 3306 42118 3569 TO james.d.steffes@enron.com
## 3307 42145 3569 TO richard.shapiro@enron.com
## 3308 42147 3569 TO robert.badeer@enron.com
## 3309 42154 3569 TO steven.j.kean@enron.com
## 3310 42168 3569 TO richard.b.sanders@enron.com
## 3311 42179 3569 TO phillip.k.ellen@enron.com
## 3312 42185 3569 TO jeff.dasovich@enron.com
## 3313 42190 3569 TO richard.shapiro@enron.com
## 3314 42258 3583 TO james.d.steffes@enron.com
## 3315 42285 3583 TO richard.shapiro@enron.com
## 3316 42287 3583 TO robert.badeer@enron.com
## 3317 42294 3583 TO steven.j.kean@enron.com
## 3318 42308 3583 TO richard.b.sanders@enron.com
## 3319 42319 3583 TO phillip.k.ellen@enron.com
## 3320 42325 3583 TO jeff.dasovich@enron.com
## 3321 42330 3583 TO richard.shapiro@enron.com
## 3322 42504 3647 TO john.arnold@enron.com
## 3323 42507 3647 TO don.baughman@enron.com
## 3324 42514 3647 TO sandra.f.brawner@enron.com
## 3325 42517 3647 TO michelle.cash@enron.com
## 3326 42556 3647 TO dan.hyvl@enron.com
## 3327 42593 3647 TO debra.perlingiere@enron.com
## 3328 42597 3647 TO cooper.richey@enron.com
## 3329 42611 3647 TO fletcher.j.sturm@enron.com
## 3330 42624 3647 TO john.zufferli@enron.com
## 3331 42688 3651 TO james.d.steffes@enron.com
## 3332 42694 3651 TO jeff.dasovich@enron.com
## 3333 42767 3651 TO richard.shapiro@enron.com
## 3334 42788 3651 TO steven.j.kean@enron.com
## 3335 42829 3664 TO jeff.dasovich@enron.com
## 3336 42849 3664 CC james.d.steffes@enron.com
## 3337 42850 3664 CC richard.shapiro@enron.com
## 3338 42851 3664 BCC james.d.steffes@enron.com
## 3339 42852 3664 BCC richard.shapiro@enron.com
## 3340 43021 3751 TO james.d.steffes@enron.com
## 3341 43023 3751 TO jeff.dasovich@enron.com
## 3342 43033 3751 TO richard.shapiro@enron.com
## 3343 43036 3751 TO shelley.corman@enron.com
## 3344 43037 3751 TO steven.j.kean@enron.com
## 3345 72044 5166 TO tracy.geaccone@enron.com
## 3346 72084 5167 TO tracy.geaccone@enron.com
## 3347 72088 5168 TO tracy.geaccone@enron.com
## 3348 72089 5169 TO tracy.geaccone@enron.com
## 3349 72099 5170 TO tracy.geaccone@enron.com
## 3350 72106 5171 TO tracy.geaccone@enron.com
## 3351 72126 5172 TO tracy.geaccone@enron.com
## 3352 72165 5173 TO tracy.geaccone@enron.com
## 3353 72190 5174 TO tracy.geaccone@enron.com
## 3354 72218 5175 TO tracy.geaccone@enron.com
## 3355 72245 5176 TO tracy.geaccone@enron.com
## 3356 72277 5177 TO tracy.geaccone@enron.com
## 3357 72299 5178 TO tracy.geaccone@enron.com
## 3358 72334 5190 TO tracy.geaccone@enron.com
## 3359 72338 5191 CC tracy.geaccone@enron.com
## 3360 72339 5191 BCC tracy.geaccone@enron.com
## 3361 72340 5192 TO rod.hayslett@enron.com
## 3362 72341 5192 TO tracy.geaccone@enron.com
## 3363 72349 5193 TO tracy.geaccone@enron.com
## 3364 72350 5193 TO james.saunders@enron.com
## 3365 72351 5193 TO jerry.peters@enron.com
## 3366 72352 5194 TO tracy.geaccone@enron.com
## 3367 72353 5195 TO tracy.geaccone@enron.com
## 3368 72355 5196 TO tracy.geaccone@enron.com
## 3369 72363 5197 TO tracy.geaccone@enron.com
## 3370 72364 5198 TO tracy.geaccone@enron.com
## 3371 72385 5199 TO tracy.geaccone@enron.com
## 3372 72388 5200 TO tracy.geaccone@enron.com
## 3373 72389 5201 TO tracy.geaccone@enron.com
## 3374 72392 5202 TO james.saunders@enron.com
## 3375 72393 5202 TO bob.chandler@enron.com
## 3376 72394 5202 TO jerry.peters@enron.com
## 3377 72395 5202 TO patricia.wiederholt@enron.com
## 3378 72396 5202 TO tracy.geaccone@enron.com
## 3379 72397 5202 TO john.keiser@enron.com
## 3380 72398 5202 TO elaine.concklin@enron.com
## 3381 72399 5202 TO james.centilli@enron.com
## 3382 72400 5202 TO maggie.schroeder@enron.com
## 3383 72401 5202 TO steve.gilbert@enron.com
## 3384 72402 5202 TO dave.waymire@enron.com
## 3385 72403 5202 TO thomas.meers@enron.com
## 3386 72404 5203 TO sharron.westbrook@enron.com
## 3387 72405 5203 TO mark.lindsey@enron.com
## 3388 72406 5203 CC james.saunders@enron.com
## 3389 72407 5203 CC tracy.geaccone@enron.com
## 3390 72408 5203 BCC james.saunders@enron.com
## 3391 72409 5203 BCC tracy.geaccone@enron.com
## 3392 72410 5204 TO tracy.geaccone@enron.com
## 3393 72415 5205 TO denis.tu@enron.com
## 3394 72416 5205 CC tracy.geaccone@enron.com
## 3395 72417 5205 CC james.centilli@enron.com
## 3396 72418 5205 CC dave.waymire@enron.com
## 3397 72419 5205 CC michael.ratner@enron.com
## 3398 72420 5205 CC steve.gilbert@enron.com
## 3399 72421 5205 CC john.keiser@enron.com
## 3400 72422 5205 CC david.rosenberg@enron.com
## 3401 72423 5205 BCC tracy.geaccone@enron.com
## 3402 72424 5205 BCC james.centilli@enron.com
## 3403 72425 5205 BCC dave.waymire@enron.com
## 3404 72426 5205 BCC michael.ratner@enron.com
## 3405 72427 5205 BCC steve.gilbert@enron.com
## 3406 72428 5205 BCC john.keiser@enron.com
## 3407 72429 5205 BCC david.rosenberg@enron.com
## 3408 72430 5206 TO tracy.geaccone@enron.com
## 3409 72431 5207 TO tracy.geaccone@enron.com
## 3410 72432 5208 TO tracy.geaccone@enron.com
## 3411 72433 5209 TO tracy.geaccone@enron.com
## 3412 72434 5210 TO tracy.geaccone@enron.com
## 3413 72435 5211 TO tracy.geaccone@enron.com
## 3414 72436 5212 TO steven.harris@enron.com
## 3415 72437 5213 TO tracy.geaccone@enron.com
## 3416 72438 5214 TO tracy.geaccone@enron.com
## 3417 72441 5215 TO tracy.geaccone@enron.com
## 3418 72445 5217 TO tracy.geaccone@enron.com
## 3419 72448 5218 CC tracy.geaccone@enron.com
## 3420 72452 5218 BCC tracy.geaccone@enron.com
## 3421 72455 5219 TO tracy.geaccone@enron.com
## 3422 72456 5219 TO rod.hayslett@enron.com
## 3423 72459 5219 TO teb.lokey@enron.com
## 3424 72463 5219 CC steven.harris@enron.com
## 3425 72465 5219 BCC steven.harris@enron.com
## 3426 72467 5220 TO tracy.geaccone@enron.com
## 3427 72468 5220 CC michael.ratner@enron.com
## 3428 72469 5220 BCC michael.ratner@enron.com
## 3429 72470 5221 TO tracy.geaccone@enron.com
## 3430 72482 5222 CC tracy.geaccone@enron.com
## 3431 72487 5222 BCC tracy.geaccone@enron.com
## 3432 72492 5223 TO tracy.geaccone@enron.com
## 3433 72497 5224 TO rod.hayslett@enron.com
## 3434 72499 5224 TO tracy.geaccone@enron.com
## 3435 72502 5225 CC tracy.geaccone@enron.com
## 3436 72505 5225 BCC tracy.geaccone@enron.com
## 3437 72507 5226 TO steven.harris@enron.com
## 3438 72508 5226 CC tracy.geaccone@enron.com
## 3439 72509 5226 BCC tracy.geaccone@enron.com
## 3440 72511 5227 TO tracy.geaccone@enron.com
## 3441 72512 5228 TO tracy.geaccone@enron.com
## 3442 72513 5229 TO rebecca.carter@enron.com
## 3443 72514 5229 CC tracy.geaccone@enron.com
## 3444 72515 5229 CC stanley.horton@enron.com
## 3445 72516 5229 BCC tracy.geaccone@enron.com
## 3446 72517 5229 BCC stanley.horton@enron.com
## 3447 72518 5230 TO tracy.geaccone@enron.com
## 3448 72520 5230 TO steven.harris@enron.com
## 3449 72525 5231 TO tracy.geaccone@enron.com
## 3450 72526 5232 TO tracy.geaccone@enron.com
## 3451 72527 5233 TO tracy.geaccone@enron.com
## 3452 72528 5234 TO tracy.geaccone@enron.com
## 3453 72535 5235 TO lynn.blair@enron.com
## 3454 72540 5235 TO lindy.donoho@enron.com
## 3455 72542 5235 TO drew.fossum@enron.com
## 3456 72543 5235 TO tracy.geaccone@enron.com
## 3457 72546 5235 TO steven.harris@enron.com
## 3458 72548 5235 TO kevin.hyatt@enron.com
## 3459 72553 5235 TO michelle.lokay@enron.com
## 3460 72566 5236 TO tracy.geaccone@enron.com
## 3461 72572 5237 CC tracy.geaccone@enron.com
## 3462 72573 5237 BCC tracy.geaccone@enron.com
## 3463 72575 5238 TO tracy.geaccone@enron.com
## 3464 72576 5239 TO tracy.geaccone@enron.com
## 3465 72577 5239 CC james.saunders@enron.com
## 3466 72578 5239 BCC james.saunders@enron.com
## 3467 72579 5240 TO sarabeth.smith@enron.com
## 3468 72580 5240 TO john.dushinske@enron.com
## 3469 72581 5240 CC g..stage@enron.com
## 3470 72582 5240 CC david.marye@enron.com
## 3471 72583 5240 CC don.hawkins@enron.com
## 3472 72584 5240 CC tracy.geaccone@enron.com
## 3473 72585 5240 BCC g..stage@enron.com
## 3474 72586 5240 BCC david.marye@enron.com
## 3475 72587 5240 BCC don.hawkins@enron.com
## 3476 72588 5240 BCC tracy.geaccone@enron.com
## 3477 72593 5241 CC rod.hayslett@enron.com
## 3478 72594 5241 CC tracy.geaccone@enron.com
## 3479 72598 5241 BCC rod.hayslett@enron.com
## 3480 72599 5241 BCC tracy.geaccone@enron.com
## 3481 72602 5242 TO lynn.blair@enron.com
## 3482 72607 5242 TO lindy.donoho@enron.com
## 3483 72609 5242 TO drew.fossum@enron.com
## 3484 72610 5242 TO tracy.geaccone@enron.com
## 3485 72613 5242 TO steven.harris@enron.com
## 3486 72615 5242 TO kevin.hyatt@enron.com
## 3487 72620 5242 TO michelle.lokay@enron.com
## 3488 72635 5243 TO tracy.geaccone@enron.com
## 3489 72638 5244 TO lynn.blair@enron.com
## 3490 72642 5244 TO lindy.donoho@enron.com
## 3491 72644 5244 TO drew.fossum@enron.com
## 3492 72646 5244 TO tracy.geaccone@enron.com
## 3493 72649 5244 TO steven.harris@enron.com
## 3494 72651 5244 TO kevin.hyatt@enron.com
## 3495 72656 5244 TO michelle.lokay@enron.com
## 3496 72671 5245 TO james.saunders@enron.com
## 3497 72672 5245 TO tracy.geaccone@enron.com
## 3498 72673 5246 TO steven.harris@enron.com
## 3499 72674 5246 TO lindy.donoho@enron.com
## 3500 72676 5246 TO kevin.hyatt@enron.com
## 3501 72679 5246 TO michelle.lokay@enron.com
## 3502 72681 5246 TO tracy.geaccone@enron.com
## 3503 72687 5246 TO lynn.blair@enron.com
## 3504 72705 5246 TO drew.fossum@enron.com
## 3505 72709 5247 TO steven.harris@enron.com
## 3506 72710 5247 TO lindy.donoho@enron.com
## 3507 72712 5247 TO kevin.hyatt@enron.com
## 3508 72715 5247 TO michelle.lokay@enron.com
## 3509 72717 5247 TO tracy.geaccone@enron.com
## 3510 72723 5247 TO lynn.blair@enron.com
## 3511 72741 5247 TO drew.fossum@enron.com
## 3512 72745 5248 TO steven.harris@enron.com
## 3513 72746 5248 TO lindy.donoho@enron.com
## 3514 72748 5248 TO kevin.hyatt@enron.com
## 3515 72751 5248 TO michelle.lokay@enron.com
## 3516 72753 5248 TO tracy.geaccone@enron.com
## 3517 72759 5248 TO lynn.blair@enron.com
## 3518 72777 5248 TO drew.fossum@enron.com
## 3519 72782 5250 TO tracy.geaccone@enron.com
## 3520 72783 5251 TO tracy.geaccone@enron.com
## 3521 72784 5252 TO tracy.geaccone@enron.com
## 3522 72786 5254 TO james.saunders@enron.com
## 3523 72787 5254 TO a..howard@enron.com
## 3524 72788 5254 TO tracy.geaccone@enron.com
## 3525 72789 5254 CC harry.walters@enron.com
## 3526 72790 5254 CC john.cobb@enron.com
## 3527 72791 5254 CC lisa.sutton@enron.com
## 3528 72792 5254 BCC harry.walters@enron.com
## 3529 72793 5254 BCC john.cobb@enron.com
## 3530 72794 5254 BCC lisa.sutton@enron.com
## 3531 72795 5255 TO rod.hayslett@enron.com
## 3532 72797 5255 TO tracy.geaccone@enron.com
## 3533 72821 5256 TO tracy.geaccone@enron.com
## 3534 72864 5258 TO sarah.taylor@enron.com
## 3535 72865 5258 TO a..howard@enron.com
## 3536 72866 5258 TO drew.fossum@enron.com
## 3537 72867 5258 TO shelley.corman@enron.com
## 3538 72868 5258 TO tracy.geaccone@enron.com
## 3539 72869 5258 TO james.saunders@enron.com
## 3540 72870 5259 TO rod.hayslett@enron.com
## 3541 72871 5259 TO shelley.corman@enron.com
## 3542 72872 5259 TO tracy.geaccone@enron.com
## 3543 72873 5260 TO shelley.corman@enron.com
## 3544 72874 5260 TO tracy.geaccone@enron.com
## 3545 72875 5260 CC sarah.taylor@enron.com
## 3546 72876 5260 BCC sarah.taylor@enron.com
## 3547 72877 5261 TO shelley.corman@enron.com
## 3548 72878 5261 TO tracy.geaccone@enron.com
## 3549 72879 5261 CC sarah.taylor@enron.com
## 3550 72880 5261 BCC sarah.taylor@enron.com
## 3551 72881 5262 TO tracy.geaccone@enron.com
## 3552 72882 5263 TO tracy.geaccone@enron.com
## 3553 72883 5264 TO tracy.geaccone@enron.com
## 3554 72901 5265 TO tracy.geaccone@enron.com
## 3555 72936 5266 TO rod.hayslett@enron.com
## 3556 72937 5266 TO tracy.geaccone@enron.com
## 3557 72938 5267 TO tracy.geaccone@enron.com
## 3558 72944 5269 TO tracy.geaccone@enron.com
## 3559 72946 5270 TO tracy.geaccone@enron.com
## 3560 72947 5271 TO tracy.geaccone@enron.com
## 3561 72948 5271 CC a..howard@enron.com
## 3562 72949 5271 BCC a..howard@enron.com
## 3563 72950 5272 TO tracy.geaccone@enron.com
## 3564 72951 5273 TO tracy.geaccone@enron.com
## 3565 72952 5274 TO rod.hayslett@enron.com
## 3566 72953 5274 TO tracy.geaccone@enron.com
## 3567 72955 5275 TO tracy.geaccone@enron.com
## 3568 72956 5276 TO tracy.geaccone@enron.com
## 3569 72957 5277 TO tracy.geaccone@enron.com
## 3570 72958 5277 CC a..howard@enron.com
## 3571 72959 5277 BCC a..howard@enron.com
## 3572 72960 5278 TO tracy.geaccone@enron.com
## 3573 72962 5279 CC tracy.geaccone@enron.com
## 3574 72963 5279 BCC tracy.geaccone@enron.com
## 3575 72964 5280 TO tracy.geaccone@enron.com
## 3576 72965 5280 TO steve.gilbert@enron.com
## 3577 72968 5281 CC tracy.geaccone@enron.com
## 3578 72969 5281 BCC tracy.geaccone@enron.com
## 3579 72970 5282 TO tracy.geaccone@enron.com
## 3580 72971 5282 CC steven.harris@enron.com
## 3581 72972 5282 BCC steven.harris@enron.com
## 3582 72973 5283 TO rod.hayslett@enron.com
## 3583 72974 5283 TO tracy.geaccone@enron.com
## 3584 72998 5284 CC tracy.geaccone@enron.com
## 3585 73002 5284 BCC tracy.geaccone@enron.com
## 3586 73004 5285 TO tracy.geaccone@enron.com
## 3587 73006 5287 TO tracy.geaccone@enron.com
## 3588 73007 5288 TO steve.kleb@enron.com
## 3589 73008 5288 CC tracy.geaccone@enron.com
## 3590 73009 5288 BCC tracy.geaccone@enron.com
## 3591 73011 5290 TO tracy.geaccone@enron.com
## 3592 73017 5291 TO rod.hayslett@enron.com
## 3593 73018 5291 CC tracy.geaccone@enron.com
## 3594 73019 5291 BCC tracy.geaccone@enron.com
## 3595 73022 5292 CC tracy.geaccone@enron.com
## 3596 73024 5292 BCC tracy.geaccone@enron.com
## 3597 73032 5293 TO tracy.geaccone@enron.com
## 3598 73039 5294 TO tracy.geaccone@enron.com
## 3599 73040 5295 TO rod.hayslett@enron.com
## 3600 73041 5295 CC tracy.geaccone@enron.com
## 3601 73042 5295 BCC tracy.geaccone@enron.com
## 3602 73043 5296 TO tracy.geaccone@enron.com
## 3603 73044 5297 TO steven.harris@enron.com
## 3604 73045 5297 CC rod.hayslett@enron.com
## 3605 73046 5297 CC tracy.geaccone@enron.com
## 3606 73047 5297 BCC rod.hayslett@enron.com
## 3607 73048 5297 BCC tracy.geaccone@enron.com
## 3608 73049 5298 TO steven.harris@enron.com
## 3609 73050 5298 TO lindy.donoho@enron.com
## 3610 73051 5298 TO tracy.geaccone@enron.com
## 3611 73052 5298 TO rod.hayslett@enron.com
## 3612 73053 5299 TO james.centilli@enron.com
## 3613 73054 5299 CC tracy.geaccone@enron.com
## 3614 73055 5299 BCC tracy.geaccone@enron.com
## 3615 73056 5300 TO tracy.geaccone@enron.com
## 3616 73057 5301 TO rod.hayslett@enron.com
## 3617 73058 5301 CC tracy.geaccone@enron.com
## 3618 73059 5301 BCC tracy.geaccone@enron.com
## 3619 73060 5302 TO rod.hayslett@enron.com
## 3620 73061 5302 TO tracy.geaccone@enron.com
## 3621 73062 5302 CC steven.harris@enron.com
## 3622 73063 5302 BCC steven.harris@enron.com
## 3623 73064 5303 TO tracy.geaccone@enron.com
## 3624 73082 5304 TO tracy.geaccone@enron.com
## 3625 73116 5305 TO tracy.geaccone@enron.com
## 3626 73117 5305 CC lindy.donoho@enron.com
## 3627 73118 5305 BCC lindy.donoho@enron.com
## 3628 73120 5307 TO tracy.geaccone@enron.com
## 3629 73122 5308 TO tracy.geaccone@enron.com
## 3630 73123 5308 TO rod.hayslett@enron.com
## 3631 73125 5310 TO tracy.geaccone@enron.com
## 3632 73126 5310 TO rod.hayslett@enron.com
## 3633 73129 5311 TO tracy.geaccone@enron.com
## 3634 73130 5311 TO rod.hayslett@enron.com
## 3635 73133 5312 TO tracy.geaccone@enron.com
## 3636 73134 5312 TO rod.hayslett@enron.com
## 3637 73138 5314 TO danny.mccarty@enron.com
## 3638 73139 5314 TO steven.harris@enron.com
## 3639 73140 5314 TO lindy.donoho@enron.com
## 3640 73141 5314 CC tracy.geaccone@enron.com
## 3641 73142 5314 CC a..howard@enron.com
## 3642 73143 5314 CC jeff.donahue@enron.com
## 3643 73144 5314 CC mitch.taylor@enron.com
## 3644 73145 5314 CC sarah.taylor@enron.com
## 3645 73146 5314 CC jayshree.desai@enron.com
## 3646 73147 5314 BCC tracy.geaccone@enron.com
## 3647 73148 5314 BCC a..howard@enron.com
## 3648 73149 5314 BCC jeff.donahue@enron.com
## 3649 73150 5314 BCC mitch.taylor@enron.com
## 3650 73151 5314 BCC sarah.taylor@enron.com
## 3651 73152 5314 BCC jayshree.desai@enron.com
## 3652 73162 5316 TO tracy.geaccone@enron.com
## 3653 73163 5316 TO rod.hayslett@enron.com
## 3654 73174 5317 TO caroline.barnes@enron.com
## 3655 73175 5317 TO morris.brassfield@enron.com
## 3656 73176 5317 TO kathy.campos@enron.com
## 3657 73177 5317 TO james.centilli@enron.com
## 3658 73178 5317 TO pamela.daily@enron.com
## 3659 73179 5317 TO tracy.geaccone@enron.com
## 3660 73180 5317 TO steve.gilbert@enron.com
## 3661 73181 5317 TO john.keiser@enron.com
## 3662 73182 5317 TO jerry.peters@enron.com
## 3663 73183 5317 TO e..rosenberg@enron.com
## 3664 73184 5317 TO james.saunders@enron.com
## 3665 73185 5317 TO denis.tu@enron.com
## 3666 73186 5318 TO caroline.barnes@enron.com
## 3667 73187 5318 TO morris.brassfield@enron.com
## 3668 73188 5318 TO kathy.campos@enron.com
## 3669 73189 5318 TO james.centilli@enron.com
## 3670 73190 5318 TO pamela.daily@enron.com
## 3671 73191 5318 TO tracy.geaccone@enron.com
## 3672 73192 5318 TO steve.gilbert@enron.com
## 3673 73193 5318 TO john.keiser@enron.com
## 3674 73194 5318 TO jerry.peters@enron.com
## 3675 73195 5318 TO e..rosenberg@enron.com
## 3676 73196 5318 TO james.saunders@enron.com
## 3677 73197 5318 TO denis.tu@enron.com
## 3678 73200 5321 TO tracy.geaccone@enron.com
## 3679 73203 5322 TO tracy.geaccone@enron.com
## 3680 73204 5323 TO rod.hayslett@enron.com
## 3681 73206 5323 TO tracy.geaccone@enron.com
## 3682 73216 5328 CC tracy.geaccone@enron.com
## 3683 73218 5328 BCC tracy.geaccone@enron.com
## 3684 73220 5329 TO tracy.geaccone@enron.com
## 3685 73224 5333 TO tracy.geaccone@enron.com
## 3686 73225 5334 TO tracy.geaccone@enron.com
## 3687 73226 5335 TO tracy.geaccone@enron.com
## 3688 73227 5335 TO james.saunders@enron.com
## 3689 73228 5335 TO morris.brassfield@enron.com
## 3690 73229 5336 TO tracy.geaccone@enron.com
## 3691 73230 5337 TO morris.brassfield@enron.com
## 3692 73231 5337 TO james.saunders@enron.com
## 3693 73232 5337 TO tracy.geaccone@enron.com
## 3694 73233 5337 TO steve.gilbert@enron.com
## 3695 73234 5337 TO john.keiser@enron.com
## 3696 73235 5337 TO caroline.barnes@enron.com
## 3697 73236 5337 TO michael.ratner@enron.com
## 3698 73237 5337 TO jerry.peters@enron.com
## 3699 73238 5337 TO e..rosenberg@enron.com
## 3700 73239 5337 TO denis.tu@enron.com
## 3701 73240 5337 TO james.centilli@enron.com
## 3702 73241 5337 TO pamela.daily@enron.com
## 3703 73243 5339 TO tracy.geaccone@enron.com
## 3704 73244 5340 TO tracy.geaccone@enron.com
## 3705 73245 5341 TO tracy.geaccone@enron.com
## 3706 73249 5342 TO tracy.geaccone@enron.com
## 3707 73254 5343 TO tracy.geaccone@enron.com
## 3708 73257 5344 TO tracy.geaccone@enron.com
## 3709 73258 5345 TO tracy.geaccone@enron.com
## 3710 73259 5346 TO tracy.geaccone@enron.com
## 3711 73261 5348 TO tracy.geaccone@enron.com
## 3712 73266 5349 TO tracy.geaccone@enron.com
## 3713 73276 5351 TO tracy.geaccone@enron.com
## 3714 73292 5352 TO tracy.geaccone@enron.com
## 3715 73336 5353 TO tracy.geaccone@enron.com
## 3716 73337 5354 TO rod.hayslett@enron.com
## 3717 73338 5354 CC tracy.geaccone@enron.com
## 3718 73341 5354 BCC tracy.geaccone@enron.com
## 3719 73344 5355 TO steve.kleb@enron.com
## 3720 73345 5355 CC tracy.geaccone@enron.com
## 3721 73346 5355 CC steve.gilbert@enron.com
## 3722 73347 5355 CC john.fiscus@enron.com
## 3723 73348 5355 BCC tracy.geaccone@enron.com
## 3724 73349 5355 BCC steve.gilbert@enron.com
## 3725 73350 5355 BCC john.fiscus@enron.com
## 3726 73353 5358 TO tracy.geaccone@enron.com
## 3727 73356 5361 TO tracy.geaccone@enron.com
## 3728 73357 5362 TO rod.hayslett@enron.com
## 3729 73358 5362 CC tracy.geaccone@enron.com
## 3730 73361 5362 BCC tracy.geaccone@enron.com
## 3731 73366 5363 CC tracy.geaccone@enron.com
## 3732 73368 5363 BCC tracy.geaccone@enron.com
## 3733 73369 5364 TO rod.hayslett@enron.com
## 3734 73370 5364 TO tracy.geaccone@enron.com
## 3735 73383 5365 TO tracy.geaccone@enron.com
## 3736 73384 5365 TO steve.gilbert@enron.com
## 3737 73385 5365 TO john.keiser@enron.com
## 3738 73386 5365 CC james.saunders@enron.com
## 3739 73387 5365 BCC james.saunders@enron.com
## 3740 73390 5368 TO tracy.geaccone@enron.com
## 3741 73396 5370 TO tracy.geaccone@enron.com
## 3742 73397 5371 TO tracy.geaccone@enron.com
## 3743 73398 5372 TO tracy.geaccone@enron.com
## 3744 73399 5373 TO tracy.geaccone@enron.com
## 3745 73400 5374 TO tracy.geaccone@enron.com
## 3746 73401 5375 TO tracy.geaccone@enron.com
## 3747 73404 5376 TO tracy.geaccone@enron.com
## 3748 73405 5377 TO tracy.geaccone@enron.com
## 3749 73406 5378 TO tracy.geaccone@enron.com
## 3750 73407 5378 TO jan.moore@enron.com
## 3751 73414 5380 TO rod.hayslett@enron.com
## 3752 73417 5380 CC tracy.geaccone@enron.com
## 3753 73420 5380 BCC tracy.geaccone@enron.com
## 3754 73425 5381 TO tracy.geaccone@enron.com
## 3755 73452 5386 TO tracy.geaccone@enron.com
## 3756 73454 5387 TO tracy.geaccone@enron.com
## 3757 73474 5389 CC tracy.geaccone@enron.com
## 3758 73480 5389 BCC tracy.geaccone@enron.com
## 3759 73483 5390 TO tracy.geaccone@enron.com
## 3760 73485 5392 TO tracy.geaccone@enron.com
## 3761 73495 5393 CC tracy.geaccone@enron.com
## 3762 73499 5393 BCC tracy.geaccone@enron.com
## 3763 73503 5394 TO tracy.geaccone@enron.com
## 3764 73518 5395 TO tracy.geaccone@enron.com
## 3765 73523 5396 TO tracy.geaccone@enron.com
## 3766 73524 5397 TO tracy.geaccone@enron.com
## 3767 73525 5398 TO tracy.geaccone@enron.com
## 3768 73531 5401 TO tracy.geaccone@enron.com
## 3769 73542 5404 TO tracy.geaccone@enron.com
## 3770 73550 5407 TO tracy.geaccone@enron.com
## 3771 73555 5408 TO caroline.barnes@enron.com
## 3772 73556 5408 CC a..lindholm@enron.com
## 3773 73557 5408 CC e..sommers@enron.com
## 3774 73558 5408 CC keith.marlow@enron.com
## 3775 73559 5408 CC caroline.barnes@enron.com
## 3776 73560 5408 CC morris.brassfield@enron.com
## 3777 73561 5408 CC kathy.campos@enron.com
## 3778 73562 5408 CC james.centilli@enron.com
## 3779 73563 5408 CC pamela.daily@enron.com
## 3780 73564 5408 CC tracy.geaccone@enron.com
## 3781 73565 5408 CC steve.gilbert@enron.com
## 3782 73566 5408 CC john.keiser@enron.com
## 3783 73567 5408 CC jerry.peters@enron.com
## 3784 73568 5408 CC e..rosenberg@enron.com
## 3785 73569 5408 CC james.saunders@enron.com
## 3786 73570 5408 CC denis.tu@enron.com
## 3787 73571 5408 BCC a..lindholm@enron.com
## 3788 73572 5408 BCC e..sommers@enron.com
## 3789 73573 5408 BCC keith.marlow@enron.com
## 3790 73574 5408 BCC caroline.barnes@enron.com
## 3791 73575 5408 BCC morris.brassfield@enron.com
## 3792 73576 5408 BCC kathy.campos@enron.com
## 3793 73577 5408 BCC james.centilli@enron.com
## 3794 73578 5408 BCC pamela.daily@enron.com
## 3795 73579 5408 BCC tracy.geaccone@enron.com
## 3796 73580 5408 BCC steve.gilbert@enron.com
## 3797 73581 5408 BCC john.keiser@enron.com
## 3798 73582 5408 BCC jerry.peters@enron.com
## 3799 73583 5408 BCC e..rosenberg@enron.com
## 3800 73584 5408 BCC james.saunders@enron.com
## 3801 73585 5408 BCC denis.tu@enron.com
## 3802 73587 5410 TO kathy.campos@enron.com
## 3803 73588 5410 CC tracy.geaccone@enron.com
## 3804 73589 5410 BCC tracy.geaccone@enron.com
## 3805 73590 5411 TO tracy.geaccone@enron.com
## 3806 73607 5412 TO kevin.hyatt@enron.com
## 3807 73614 5412 TO tracy.geaccone@enron.com
## 3808 73662 5412 CC rod.hayslett@enron.com
## 3809 73663 5412 CC dana.davis@enron.com
## 3810 73664 5412 BCC rod.hayslett@enron.com
## 3811 73665 5412 BCC dana.davis@enron.com
## 3812 73669 5416 TO tracy.geaccone@enron.com
## 3813 73701 5418 TO kevin.hyatt@enron.com
## 3814 73708 5418 TO tracy.geaccone@enron.com
## 3815 73756 5418 CC rod.hayslett@enron.com
## 3816 73757 5418 CC dana.davis@enron.com
## 3817 73758 5418 BCC rod.hayslett@enron.com
## 3818 73759 5418 BCC dana.davis@enron.com
## 3819 73760 5419 TO tracy.geaccone@enron.com
## 3820 73761 5420 TO tracy.geaccone@enron.com
## 3821 73763 5421 CC tracy.geaccone@enron.com
## 3822 73764 5421 BCC tracy.geaccone@enron.com
## 3823 73765 5422 TO tracy.geaccone@enron.com
## 3824 73768 5424 TO tracy.geaccone@enron.com
## 3825 73769 5425 TO tracy.geaccone@enron.com
## 3826 73771 5426 TO tracy.geaccone@enron.com
## 3827 73772 5427 TO tracy.geaccone@enron.com
## 3828 73781 5428 TO james.saunders@enron.com
## 3829 73782 5428 TO a..howard@enron.com
## 3830 73783 5428 CC tracy.geaccone@enron.com
## 3831 73784 5428 BCC tracy.geaccone@enron.com
## 3832 73786 5429 CC tracy.geaccone@enron.com
## 3833 73787 5429 CC rod.hayslett@enron.com
## 3834 73788 5429 BCC tracy.geaccone@enron.com
## 3835 73789 5429 BCC rod.hayslett@enron.com
## 3836 73790 5430 TO tracy.geaccone@enron.com
## 3837 73791 5431 TO tracy.geaccone@enron.com
## 3838 73792 5432 TO tracy.geaccone@enron.com
## 3839 73801 5433 TO tracy.geaccone@enron.com
## 3840 73811 5433 CC rod.hayslett@enron.com
## 3841 73817 5433 BCC rod.hayslett@enron.com
## 3842 73824 5435 TO tracy.geaccone@enron.com
## 3843 73829 5437 TO tracy.geaccone@enron.com
## 3844 73830 5437 CC rod.hayslett@enron.com
## 3845 73831 5437 BCC rod.hayslett@enron.com
## 3846 73833 5439 TO tracy.geaccone@enron.com
## 3847 73835 5440 CC tracy.geaccone@enron.com
## 3848 73836 5440 BCC tracy.geaccone@enron.com
## 3849 73840 5444 TO tracy.geaccone@enron.com
## 3850 73844 5446 TO tracy.geaccone@enron.com
## 3851 73846 5448 TO tracy.geaccone@enron.com
## 3852 73855 5451 TO tracy.geaccone@enron.com
## 3853 73856 5451 TO rod.hayslett@enron.com
## 3854 73882 5452 TO shelley.corman@enron.com
## 3855 73886 5452 TO lindy.donoho@enron.com
## 3856 73890 5452 TO drew.fossum@enron.com
## 3857 73895 5452 TO tracy.geaccone@enron.com
## 3858 73904 5452 TO steven.harris@enron.com
## 3859 73907 5452 TO rod.hayslett@enron.com
## 3860 73910 5452 TO kevin.hyatt@enron.com
## 3861 73925 5452 TO michelle.lokay@enron.com
## 3862 73931 5452 TO danny.mccarty@enron.com
## 3863 73984 5453 TO tracy.geaccone@enron.com
## 3864 73987 5454 TO tracy.geaccone@enron.com
## 3865 73992 5458 TO tracy.geaccone@enron.com
## 3866 73995 5459 TO tracy.geaccone@enron.com
## 3867 73997 5460 TO tracy.geaccone@enron.com
## 3868 74008 5462 TO tracy.geaccone@enron.com
## 3869 74018 5464 TO tracy.geaccone@enron.com
## 3870 74019 5465 TO tracy.geaccone@enron.com
## 3871 74021 5467 TO tracy.geaccone@enron.com
## 3872 74022 5468 TO tracy.geaccone@enron.com
## 3873 74023 5469 TO tracy.geaccone@enron.com
## 3874 74024 5470 TO tracy.geaccone@enron.com
## 3875 74035 5475 TO tracy.geaccone@enron.com
## 3876 74049 5476 TO tracy.geaccone@enron.com
## 3877 74082 5477 TO tracy.geaccone@enron.com
## 3878 74088 5479 TO tracy.geaccone@enron.com
## 3879 74092 5480 TO tracy.geaccone@enron.com
## 3880 74093 5480 CC rod.hayslett@enron.com
## 3881 74094 5480 BCC rod.hayslett@enron.com
## 3882 74095 5481 TO tracy.geaccone@enron.com
## 3883 74101 5482 TO tracy.geaccone@enron.com
## 3884 74104 5483 TO tracy.geaccone@enron.com
## 3885 74106 5485 TO tracy.geaccone@enron.com
## 3886 74108 5486 TO tracy.geaccone@enron.com
## 3887 74109 5487 TO tracy.geaccone@enron.com
## 3888 74110 5487 TO danny.mccarty@enron.com
## 3889 74118 5489 TO tracy.geaccone@enron.com
## 3890 74121 5490 TO tracy.geaccone@enron.com
## 3891 74122 5490 CC rod.hayslett@enron.com
## 3892 74123 5490 BCC rod.hayslett@enron.com
## 3893 74126 5493 TO tracy.geaccone@enron.com
## 3894 74128 5494 TO tracy.geaccone@enron.com
## 3895 74129 5495 TO rod.hayslett@enron.com
## 3896 74132 5495 TO tracy.geaccone@enron.com
## 3897 74135 5496 TO robert.kilmer@enron.com
## 3898 74136 5496 TO kay.miller@enron.com
## 3899 74137 5496 TO ray.neppl@enron.com
## 3900 74138 5496 TO tracy.geaccone@enron.com
## 3901 74139 5496 CC gay.mayeux@enron.com
## 3902 74140 5496 BCC gay.mayeux@enron.com
## 3903 74143 5497 CC tracy.geaccone@enron.com
## 3904 74144 5497 BCC tracy.geaccone@enron.com
## 3905 74145 5498 TO tracy.geaccone@enron.com
## 3906 74146 5499 TO tracy.geaccone@enron.com
## 3907 74147 5500 TO tracy.geaccone@enron.com
## 3908 74151 5501 TO tracy.geaccone@enron.com
## 3909 74152 5502 TO tracy.geaccone@enron.com
## 3910 74153 5503 TO tracy.geaccone@enron.com
## 3911 74154 5504 TO tracy.geaccone@enron.com
## 3912 74159 5506 TO tracy.geaccone@enron.com
## 3913 74160 5507 TO tracy.geaccone@enron.com
## 3914 74163 5508 TO stanley.horton@enron.com
## 3915 74166 5508 TO rod.hayslett@enron.com
## 3916 74167 5508 TO tracy.geaccone@enron.com
## 3917 74181 5509 TO tracy.geaccone@enron.com
## 3918 74198 5511 TO tracy.geaccone@enron.com
## 3919 74204 5512 TO steve.gilbert@enron.com
## 3920 74205 5512 CC tracy.geaccone@enron.com
## 3921 74206 5512 BCC tracy.geaccone@enron.com
## 3922 74207 5513 TO tracy.geaccone@enron.com
## 3923 74208 5514 TO tracy.geaccone@enron.com
## 3924 74210 5515 TO tracy.geaccone@enron.com
## 3925 74215 5516 TO tracy.geaccone@enron.com
## 3926 74222 5519 TO tracy.geaccone@enron.com
## 3927 74223 5520 TO tracy.geaccone@enron.com
## 3928 74231 5522 TO tracy.geaccone@enron.com
## 3929 74232 5523 TO tracy.geaccone@enron.com
## 3930 74234 5525 TO tracy.geaccone@enron.com
## 3931 74237 5526 TO tracy.geaccone@enron.com
## 3932 74238 5527 TO tracy.geaccone@enron.com
## 3933 74239 5528 TO tracy.geaccone@enron.com
## 3934 74244 5529 TO tracy.geaccone@enron.com
## 3935 74245 5530 TO tracy.geaccone@enron.com
## 3936 74249 5531 CC tracy.geaccone@enron.com
## 3937 74254 5531 BCC tracy.geaccone@enron.com
## 3938 74257 5532 TO tracy.geaccone@enron.com
## 3939 74262 5533 TO tracy.geaccone@enron.com
## 3940 74263 5534 TO tracy.geaccone@enron.com
## 3941 74264 5535 TO tracy.geaccone@enron.com
## 3942 74265 5536 TO tracy.geaccone@enron.com
## 3943 74266 5537 TO tracy.geaccone@enron.com
## 3944 74267 5538 TO james.saunders@enron.com
## 3945 74268 5538 TO jerry.peters@enron.com
## 3946 74269 5538 TO l..bouillion@enron.com
## 3947 74270 5538 TO a..howard@enron.com
## 3948 74271 5538 TO tracy.geaccone@enron.com
## 3949 74272 5538 CC lawrence.clayton@enron.com
## 3950 74273 5538 BCC lawrence.clayton@enron.com
## 3951 74274 5539 TO rod.hayslett@enron.com
## 3952 74281 5539 TO tracy.geaccone@enron.com
## 3953 74290 5540 TO rod.hayslett@enron.com
## 3954 74297 5540 TO tracy.geaccone@enron.com
## 3955 74307 5542 TO tracy.geaccone@enron.com
## 3956 74312 5543 CC rod.hayslett@enron.com
## 3957 74313 5543 CC tracy.geaccone@enron.com
## 3958 74316 5543 BCC rod.hayslett@enron.com
## 3959 74317 5543 BCC tracy.geaccone@enron.com
## 3960 74322 5544 CC tracy.geaccone@enron.com
## 3961 74326 5544 BCC tracy.geaccone@enron.com
## 3962 74327 5545 TO michael.anderson@enron.com
## 3963 74328 5545 TO jim.piro@enron.com
## 3964 74329 5545 TO a..lindholm@enron.com
## 3965 74330 5545 TO e..sommers@enron.com
## 3966 74331 5545 TO jerry.peters@enron.com
## 3967 74332 5545 TO james.saunders@enron.com
## 3968 74333 5545 TO tracy.geaccone@enron.com
## 3969 74334 5545 TO michael.norris@enron.com
## 3970 74335 5545 TO keith.marlow@enron.com
## 3971 74336 5545 TO steve.gilbert@enron.com
## 3972 74337 5545 TO john.keiser@enron.com
## 3973 74338 5545 TO michael.ratner@enron.com
## 3974 74339 5545 TO lawrence.clayton@enron.com
## 3975 74340 5545 CC kathy.campos@enron.com
## 3976 74341 5545 BCC kathy.campos@enron.com
## 3977 74342 5546 TO tracy.geaccone@enron.com
## 3978 74344 5547 TO tracy.geaccone@enron.com
## 3979 74350 5548 TO tracy.geaccone@enron.com
## 3980 74355 5550 CC no.address@enron.com
## 3981 74356 5550 CC no.address@enron.com
## 3982 74357 5550 CC michael.anderson@enron.com
## 3983 74358 5550 CC l..bouillion@enron.com
## 3984 74359 5550 BCC no.address@enron.com
## 3985 74360 5550 BCC no.address@enron.com
## 3986 74361 5550 BCC michael.anderson@enron.com
## 3987 74362 5550 BCC l..bouillion@enron.com
## 3988 74363 5551 TO tracy.geaccone@enron.com
## 3989 74364 5552 TO tracy.geaccone@enron.com
## 3990 74373 5553 CC tracy.geaccone@enron.com
## 3991 74375 5553 BCC tracy.geaccone@enron.com
## 3992 74376 5554 TO tracy.geaccone@enron.com
## 3993 74388 5555 CC tracy.geaccone@enron.com
## 3994 74393 5555 BCC tracy.geaccone@enron.com
## 3995 74396 5556 TO tracy.geaccone@enron.com
## 3996 74420 5558 CC tracy.geaccone@enron.com
## 3997 74430 5558 BCC tracy.geaccone@enron.com
## 3998 74439 5559 TO tracy.geaccone@enron.com
## 3999 74440 5560 TO tracy.geaccone@enron.com
## 4000 74441 5561 TO james.saunders@enron.com
## 4001 74442 5561 TO steve.gilbert@enron.com
## 4002 74443 5561 CC tracy.geaccone@enron.com
## 4003 74444 5561 CC dana.jones@enron.com
## 4004 74445 5561 CC john.cobb@enron.com
## 4005 74446 5561 CC dan.fancler@enron.com
## 4006 74447 5561 CC bob.chandler@enron.com
## 4007 74448 5561 BCC tracy.geaccone@enron.com
## 4008 74449 5561 BCC dana.jones@enron.com
## 4009 74450 5561 BCC john.cobb@enron.com
## 4010 74451 5561 BCC dan.fancler@enron.com
## 4011 74452 5561 BCC bob.chandler@enron.com
## 4012 74453 5562 TO tracy.geaccone@enron.com
## 4013 74455 5563 TO rod.hayslett@enron.com
## 4014 74456 5563 CC tracy.geaccone@enron.com
## 4015 74461 5563 BCC tracy.geaccone@enron.com
## 4016 74466 5564 TO rod.hayslett@enron.com
## 4017 74467 5564 CC tracy.geaccone@enron.com
## 4018 74473 5564 BCC tracy.geaccone@enron.com
## 4019 74479 5565 TO tracy.geaccone@enron.com
## 4020 74480 5566 TO tracy.geaccone@enron.com
## 4021 74481 5566 CC steven.harris@enron.com
## 4022 74482 5566 BCC steven.harris@enron.com
## 4023 74483 5567 TO tracy.geaccone@enron.com
## 4024 74484 5568 TO tracy.geaccone@enron.com
## 4025 74485 5568 CC rod.hayslett@enron.com
## 4026 74486 5568 BCC rod.hayslett@enron.com
## 4027 74487 5569 TO tracy.geaccone@enron.com
## 4028 74488 5570 TO tracy.geaccone@enron.com
## 4029 74489 5571 TO tracy.geaccone@enron.com
## 4030 74490 5571 TO rod.hayslett@enron.com
## 4031 74504 5572 TO tracy.geaccone@enron.com
## 4032 74519 5573 TO tracy.geaccone@enron.com
## 4033 74520 5574 TO sally.beck@enron.com
## 4034 74521 5574 CC tracy.geaccone@enron.com
## 4035 74522 5574 CC steve.hotte@enron.com
## 4036 74523 5574 CC e..sommers@enron.com
## 4037 74524 5574 BCC tracy.geaccone@enron.com
## 4038 74525 5574 BCC steve.hotte@enron.com
## 4039 74526 5574 BCC e..sommers@enron.com
## 4040 74527 5575 TO tracy.geaccone@enron.com
## 4041 74531 5576 TO steve.hotte@enron.com
## 4042 74532 5576 CC tracy.geaccone@enron.com
## 4043 74533 5576 BCC tracy.geaccone@enron.com
## 4044 74534 5577 TO caroline.barnes@enron.com
## 4045 74535 5577 TO morris.brassfield@enron.com
## 4046 74536 5577 TO kathy.campos@enron.com
## 4047 74537 5577 TO james.centilli@enron.com
## 4048 74538 5577 TO pamela.daily@enron.com
## 4049 74539 5577 TO tracy.geaccone@enron.com
## 4050 74540 5577 TO steve.gilbert@enron.com
## 4051 74541 5577 TO john.keiser@enron.com
## 4052 74542 5577 TO thomas.meers@enron.com
## 4053 74543 5577 TO jerry.peters@enron.com
## 4054 74544 5577 TO e..rosenberg@enron.com
## 4055 74545 5577 TO james.saunders@enron.com
## 4056 74546 5577 TO denis.tu@enron.com
## 4057 74547 5578 TO tracy.geaccone@enron.com
## 4058 74550 5579 TO tracy.geaccone@enron.com
## 4059 74553 5580 TO james.saunders@enron.com
## 4060 74554 5580 CC tracy.geaccone@enron.com
## 4061 74555 5580 BCC tracy.geaccone@enron.com
## 4062 74557 5581 CC tracy.geaccone@enron.com
## 4063 74559 5581 BCC tracy.geaccone@enron.com
## 4064 74561 5582 TO tracy.geaccone@enron.com
## 4065 74564 5583 CC tracy.geaccone@enron.com
## 4066 74567 5583 BCC tracy.geaccone@enron.com
## 4067 74569 5584 TO tracy.geaccone@enron.com
## 4068 74571 5585 TO tracy.geaccone@enron.com
## 4069 74572 5586 TO tracy.geaccone@enron.com
## 4070 74573 5587 TO tracy.geaccone@enron.com
## 4071 74574 5587 TO steve.gilbert@enron.com
## 4072 74575 5587 TO john.keiser@enron.com
## 4073 74576 5588 TO tracy.geaccone@enron.com
## 4074 74579 5591 TO tracy.geaccone@enron.com
## 4075 74586 5592 TO tracy.geaccone@enron.com
## 4076 74587 5592 TO rod.hayslett@enron.com
## 4077 74600 5594 TO tracy.geaccone@enron.com
## 4078 74601 5595 TO tracy.geaccone@enron.com
## 4079 74602 5596 TO tracy.geaccone@enron.com
## 4080 74605 5597 TO tracy.geaccone@enron.com
## 4081 74611 5597 CC rod.hayslett@enron.com
## 4082 74617 5597 BCC rod.hayslett@enron.com
## 4083 74618 5598 TO tracy.geaccone@enron.com
## 4084 74619 5599 TO james.saunders@enron.com
## 4085 74620 5599 CC tracy.geaccone@enron.com
## 4086 74621 5599 BCC tracy.geaccone@enron.com
## 4087 74623 5601 TO tracy.geaccone@enron.com
## 4088 74625 5602 TO tracy.geaccone@enron.com
## 4089 74626 5602 TO rod.hayslett@enron.com
## 4090 74634 5604 TO tracy.geaccone@enron.com
## 4091 74724 5605 TO tracy.geaccone@enron.com
## 4092 74726 5606 TO caroline.barnes@enron.com
## 4093 74727 5606 TO morris.brassfield@enron.com
## 4094 74728 5606 TO kathy.campos@enron.com
## 4095 74729 5606 TO james.centilli@enron.com
## 4096 74730 5606 TO pamela.daily@enron.com
## 4097 74731 5606 TO tracy.geaccone@enron.com
## 4098 74732 5606 TO steve.gilbert@enron.com
## 4099 74733 5606 TO john.keiser@enron.com
## 4100 74734 5606 TO thomas.meers@enron.com
## 4101 74735 5606 TO jerry.peters@enron.com
## 4102 74736 5606 TO e..rosenberg@enron.com
## 4103 74737 5606 TO james.saunders@enron.com
## 4104 74738 5606 TO denis.tu@enron.com
## 4105 74739 5607 TO tracy.geaccone@enron.com
## 4106 74740 5607 TO lindy.donoho@enron.com
## 4107 74745 5607 CC steven.harris@enron.com
## 4108 74749 5607 BCC steven.harris@enron.com
## 4109 74756 5608 CC tracy.geaccone@enron.com
## 4110 74761 5608 BCC tracy.geaccone@enron.com
## 4111 74764 5611 TO tracy.geaccone@enron.com
## 4112 74767 5612 TO tracy.geaccone@enron.com
## 4113 74779 5613 TO caroline.barnes@enron.com
## 4114 74780 5613 TO morris.brassfield@enron.com
## 4115 74781 5613 TO kathy.campos@enron.com
## 4116 74782 5613 TO james.centilli@enron.com
## 4117 74783 5613 TO pamela.daily@enron.com
## 4118 74784 5613 TO tracy.geaccone@enron.com
## 4119 74785 5613 TO steve.gilbert@enron.com
## 4120 74786 5613 TO john.keiser@enron.com
## 4121 74787 5613 TO thomas.meers@enron.com
## 4122 74788 5613 TO jerry.peters@enron.com
## 4123 74789 5613 TO e..rosenberg@enron.com
## 4124 74790 5613 TO james.saunders@enron.com
## 4125 74791 5613 TO denis.tu@enron.com
## 4126 74792 5614 TO rod.hayslett@enron.com
## 4127 74793 5614 CC tracy.geaccone@enron.com
## 4128 74797 5614 BCC tracy.geaccone@enron.com
## 4129 74802 5616 TO james.saunders@enron.com
## 4130 74803 5616 TO john.cobb@enron.com
## 4131 74804 5616 TO jennifer.lev@enron.com
## 4132 74805 5616 TO lori.maddox@enron.com
## 4133 74806 5616 CC tracy.geaccone@enron.com
## 4134 74807 5616 BCC tracy.geaccone@enron.com
## 4135 74808 5617 TO caroline.barnes@enron.com
## 4136 74809 5617 TO morris.brassfield@enron.com
## 4137 74810 5617 TO kathy.campos@enron.com
## 4138 74811 5617 TO james.centilli@enron.com
## 4139 74812 5617 TO pamela.daily@enron.com
## 4140 74813 5617 TO tracy.geaccone@enron.com
## 4141 74814 5617 TO steve.gilbert@enron.com
## 4142 74815 5617 TO john.keiser@enron.com
## 4143 74816 5617 TO thomas.meers@enron.com
## 4144 74817 5617 TO jerry.peters@enron.com
## 4145 74818 5617 TO e..rosenberg@enron.com
## 4146 74819 5617 TO james.saunders@enron.com
## 4147 74820 5617 TO denis.tu@enron.com
## 4148 74821 5618 TO tracy.geaccone@enron.com
## 4149 74822 5619 TO tracy.geaccone@enron.com
## 4150 74826 5620 TO james.saunders@enron.com
## 4151 74827 5620 TO tracy.geaccone@enron.com
## 4152 74828 5621 TO james.saunders@enron.com
## 4153 74829 5621 TO tracy.geaccone@enron.com
## 4154 74830 5622 TO tracy.geaccone@enron.com
## 4155 74836 5623 TO tracy.geaccone@enron.com
## 4156 74838 5624 TO tracy.geaccone@enron.com
## 4157 74843 5625 TO tracy.geaccone@enron.com
## 4158 74844 5626 TO james.saunders@enron.com
## 4159 74845 5626 CC tracy.geaccone@enron.com
## 4160 74846 5626 BCC tracy.geaccone@enron.com
## 4161 74927 5628 TO tracy.geaccone@enron.com
## 4162 75087 5630 TO tracy.geaccone@enron.com
## 4163 75088 5631 TO tracy.geaccone@enron.com
## 4164 75089 5631 TO james.centilli@enron.com
## 4165 75091 5633 TO rod.hayslett@enron.com
## 4166 75094 5633 CC tracy.geaccone@enron.com
## 4167 75096 5633 BCC tracy.geaccone@enron.com
## 4168 75097 5634 TO danny.mccarty@enron.com
## 4169 75098 5634 TO steven.harris@enron.com
## 4170 75099 5634 CC tracy.geaccone@enron.com
## 4171 75100 5634 BCC tracy.geaccone@enron.com
## 4172 75101 5635 TO tracy.geaccone@enron.com
## 4173 75105 5638 CC tracy.geaccone@enron.com
## 4174 75106 5638 CC rod.hayslett@enron.com
## 4175 75107 5638 BCC tracy.geaccone@enron.com
## 4176 75108 5638 BCC rod.hayslett@enron.com
## 4177 75109 5639 TO tracy.geaccone@enron.com
## 4178 75114 5640 TO tracy.geaccone@enron.com
## 4179 75117 5641 TO tracy.geaccone@enron.com
## 4180 75118 5642 TO rod.hayslett@enron.com
## 4181 75126 5642 TO tracy.geaccone@enron.com
## 4182 75132 5643 TO tracy.geaccone@enron.com
## 4183 75135 5644 TO tracy.geaccone@enron.com
## 4184 75138 5645 TO tracy.geaccone@enron.com
## 4185 75139 5646 TO steven.harris@enron.com
## 4186 75140 5646 TO teb.lokey@enron.com
## 4187 75142 5646 TO tracy.geaccone@enron.com
## 4188 75145 5647 TO tracy.geaccone@enron.com
## 4189 75146 5648 TO tracy.geaccone@enron.com
## 4190 75149 5649 TO tracy.geaccone@enron.com
## 4191 75156 5650 TO sally.beck@enron.com
## 4192 75182 5650 TO tracy.geaccone@enron.com
## 4193 75190 5650 TO rod.hayslett@enron.com
## 4194 75284 5651 TO tracy.geaccone@enron.com
## 4195 75348 5652 TO tracy.geaccone@enron.com
## 4196 75368 5653 TO tracy.geaccone@enron.com
## 4197 75369 5654 TO tracy.geaccone@enron.com
## 4198 75389 5655 TO tracy.geaccone@enron.com
## 4199 75390 5656 TO tracy.geaccone@enron.com
## 4200 75392 5658 TO tracy.geaccone@enron.com
## 4201 75394 5659 TO tracy.geaccone@enron.com
## 4202 75400 5660 TO tracy.geaccone@enron.com
## 4203 75404 5661 TO tracy.geaccone@enron.com
## 4204 75405 5661 TO danny.mccarty@enron.com
## 4205 75428 5666 TO tracy.geaccone@enron.com
## 4206 75429 5667 TO caroline.barnes@enron.com
## 4207 75430 5667 TO morris.brassfield@enron.com
## 4208 75431 5667 TO kathy.campos@enron.com
## 4209 75432 5667 TO james.centilli@enron.com
## 4210 75433 5667 TO pamela.daily@enron.com
## 4211 75434 5667 TO tracy.geaccone@enron.com
## 4212 75435 5667 TO steve.gilbert@enron.com
## 4213 75436 5667 TO john.keiser@enron.com
## 4214 75437 5667 TO thomas.meers@enron.com
## 4215 75438 5667 TO jerry.peters@enron.com
## 4216 75439 5667 TO e..rosenberg@enron.com
## 4217 75440 5667 TO james.saunders@enron.com
## 4218 75441 5667 TO denis.tu@enron.com
## 4219 75442 5668 TO tracy.geaccone@enron.com
## 4220 75451 5669 TO sally.beck@enron.com
## 4221 75478 5669 TO tracy.geaccone@enron.com
## 4222 75488 5669 TO rod.hayslett@enron.com
## 4223 75561 5670 TO tracy.geaccone@enron.com
## 4224 75562 5671 TO tracy.geaccone@enron.com
## 4225 75566 5673 TO tracy.geaccone@enron.com
## 4226 75569 5674 CC tracy.geaccone@enron.com
## 4227 75571 5674 BCC tracy.geaccone@enron.com
## 4228 75572 5675 TO tracy.geaccone@enron.com
## 4229 75574 5676 CC tracy.geaccone@enron.com
## 4230 75576 5676 BCC tracy.geaccone@enron.com
## 4231 75578 5677 TO tracy.geaccone@enron.com
## 4232 75582 5678 TO tracy.geaccone@enron.com
## 4233 75594 5680 TO tracy.geaccone@enron.com
## 4234 75606 5681 TO tracy.geaccone@enron.com
## 4235 75608 5682 CC rod.hayslett@enron.com
## 4236 75612 5682 CC tracy.geaccone@enron.com
## 4237 75613 5682 BCC rod.hayslett@enron.com
## 4238 75617 5682 BCC tracy.geaccone@enron.com
## 4239 75618 5683 TO tracy.geaccone@enron.com
## 4240 75620 5684 TO tracy.geaccone@enron.com
## 4241 75621 5685 TO kathy.campos@enron.com
## 4242 75622 5685 CC tracy.geaccone@enron.com
## 4243 75623 5685 BCC tracy.geaccone@enron.com
## 4244 75624 5686 TO tracy.geaccone@enron.com
## 4245 75633 5688 TO sally.beck@enron.com
## 4246 75661 5688 TO tracy.geaccone@enron.com
## 4247 75671 5688 TO rod.hayslett@enron.com
## 4248 75744 5689 TO tracy.geaccone@enron.com
## 4249 75746 5690 CC tracy.geaccone@enron.com
## 4250 75749 5690 BCC tracy.geaccone@enron.com
## 4251 75752 5691 TO tracy.geaccone@enron.com
## 4252 75753 5691 CC rod.hayslett@enron.com
## 4253 75755 5691 BCC rod.hayslett@enron.com
## 4254 75758 5692 TO tracy.geaccone@enron.com
## 4255 75780 5693 TO tracy.geaccone@enron.com
## 4256 75802 5694 TO tracy.geaccone@enron.com
## 4257 75831 5695 TO cindy.stark@enron.com
## 4258 75832 5695 CC tracy.geaccone@enron.com
## 4259 75833 5695 BCC tracy.geaccone@enron.com
## 4260 75834 5696 TO tracy.geaccone@enron.com
## 4261 75837 5697 CC tracy.geaccone@enron.com
## 4262 75839 5697 BCC tracy.geaccone@enron.com
## 4263 75840 5698 TO tracy.geaccone@enron.com
## 4264 75841 5698 TO a..lindholm@enron.com
## 4265 75842 5698 TO jim.piro@enron.com
## 4266 75843 5698 TO keith.harris@enron.com
## 4267 75844 5698 CC e..sommers@enron.com
## 4268 75845 5698 BCC e..sommers@enron.com
## 4269 75846 5699 TO tracy.geaccone@enron.com
## 4270 75847 5699 TO sharron.westbrook@enron.com
## 4271 75848 5699 CC e..sommers@enron.com
## 4272 75849 5699 CC kathy.campos@enron.com
## 4273 75850 5699 CC cindy.stark@enron.com
## 4274 75851 5699 BCC e..sommers@enron.com
## 4275 75852 5699 BCC kathy.campos@enron.com
## 4276 75853 5699 BCC cindy.stark@enron.com
## 4277 75854 5700 TO tracy.geaccone@enron.com
## 4278 75856 5702 TO tracy.geaccone@enron.com
## 4279 75857 5703 TO tracy.geaccone@enron.com
## 4280 75870 5704 TO tracy.geaccone@enron.com
## 4281 75876 5706 TO lynn.blair@enron.com
## 4282 75887 5706 TO shelley.corman@enron.com
## 4283 75888 5706 TO tracy.geaccone@enron.com
## 4284 75894 5706 TO steven.harris@enron.com
## 4285 75955 5707 TO tracy.geaccone@enron.com
## 4286 75957 5708 TO danny.mccarty@enron.com
## 4287 75958 5708 TO steven.harris@enron.com
## 4288 75960 5708 TO tracy.geaccone@enron.com
## 4289 75961 5708 TO lindy.donoho@enron.com
## 4290 75968 5709 TO tracy.geaccone@enron.com
## 4291 75970 5711 TO tracy.geaccone@enron.com
## 4292 75971 5711 TO michael.ratner@enron.com
## 4293 75972 5711 TO james.centilli@enron.com
## 4294 75973 5711 TO paul.cherry@enron.com
## 4295 75974 5711 CC jerry.peters@enron.com
## 4296 75975 5711 CC james.saunders@enron.com
## 4297 75976 5711 BCC jerry.peters@enron.com
## 4298 75977 5711 BCC james.saunders@enron.com
## 4299 75978 5712 TO tracy.geaccone@enron.com
## 4300 75979 5713 TO danny.mccarty@enron.com
## 4301 75980 5713 TO phil.lowry@enron.com
## 4302 75981 5713 TO robert.hayes@enron.com
## 4303 75982 5713 TO steven.harris@enron.com
## 4304 75983 5713 TO dave.neubauer@enron.com
## 4305 75984 5713 TO bill.cordes@enron.com
## 4306 75985 5713 TO peggy.fowler@enron.com
## 4307 75986 5713 TO jim.piro@enron.com
## 4308 75987 5713 TO a..lindholm@enron.com
## 4309 75988 5713 TO adam.umanoff@enron.com
## 4310 75989 5713 CC kathy.campos@enron.com
## 4311 75990 5713 CC julie.armstrong@enron.com
## 4312 75991 5713 CC amelia.alder@enron.com
## 4313 75992 5713 CC audrey.robertson@enron.com
## 4314 75993 5713 CC martha.benner@enron.com
## 4315 75994 5713 CC mary.trosper@enron.com
## 4316 75995 5713 CC lorraine.telles@enron.com
## 4317 75996 5713 CC sandy.lewelling@enron.com
## 4318 75997 5713 CC deborah.cappiello@enron.com
## 4319 75998 5713 CC martha.benner@enron.com
## 4320 75999 5713 CC tracy.geaccone@enron.com
## 4321 76000 5713 BCC kathy.campos@enron.com
## 4322 76001 5713 BCC julie.armstrong@enron.com
## 4323 76002 5713 BCC amelia.alder@enron.com
## 4324 76003 5713 BCC audrey.robertson@enron.com
## 4325 76004 5713 BCC martha.benner@enron.com
## 4326 76005 5713 BCC mary.trosper@enron.com
## 4327 76006 5713 BCC lorraine.telles@enron.com
## 4328 76007 5713 BCC sandy.lewelling@enron.com
## 4329 76008 5713 BCC deborah.cappiello@enron.com
## 4330 76009 5713 BCC martha.benner@enron.com
## 4331 76010 5713 BCC tracy.geaccone@enron.com
## 4332 76027 5714 TO tracy.geaccone@enron.com
## 4333 76090 5715 TO lindy.donoho@enron.com
## 4334 76095 5715 TO drew.fossum@enron.com
## 4335 76097 5715 TO tracy.geaccone@enron.com
## 4336 76105 5715 TO kevin.hyatt@enron.com
## 4337 76115 5715 TO michelle.lokay@enron.com
## 4338 76116 5715 TO teb.lokey@enron.com
## 4339 76120 5715 TO danny.mccarty@enron.com
## 4340 76159 5717 TO tracy.geaccone@enron.com
## 4341 76167 5721 TO caroline.barnes@enron.com
## 4342 76168 5721 TO morris.brassfield@enron.com
## 4343 76169 5721 TO kathy.campos@enron.com
## 4344 76170 5721 TO james.centilli@enron.com
## 4345 76171 5721 TO pamela.daily@enron.com
## 4346 76172 5721 TO tracy.geaccone@enron.com
## 4347 76173 5721 TO steve.gilbert@enron.com
## 4348 76174 5721 TO john.keiser@enron.com
## 4349 76175 5721 TO thomas.meers@enron.com
## 4350 76176 5721 TO jerry.peters@enron.com
## 4351 76177 5721 TO e..rosenberg@enron.com
## 4352 76178 5721 TO james.saunders@enron.com
## 4353 76179 5721 TO denis.tu@enron.com
## 4354 76181 5722 CC tracy.geaccone@enron.com
## 4355 76183 5722 BCC tracy.geaccone@enron.com
## 4356 76185 5723 TO tracy.geaccone@enron.com
## 4357 76187 5724 TO tracy.geaccone@enron.com
## 4358 76189 5724 CC steven.harris@enron.com
## 4359 76192 5724 BCC steven.harris@enron.com
## 4360 76195 5725 TO tracy.geaccone@enron.com
## 4361 76226 5726 TO tracy.geaccone@enron.com
## 4362 76231 5726 CC steven.harris@enron.com
## 4363 76235 5726 BCC steven.harris@enron.com
## 4364 76239 5727 CC tracy.geaccone@enron.com
## 4365 76240 5727 BCC tracy.geaccone@enron.com
## 4366 76241 5728 TO tracy.geaccone@enron.com
## 4367 76242 5729 TO tracy.geaccone@enron.com
## 4368 76249 5730 TO tracy.geaccone@enron.com
## 4369 76254 5730 CC steven.harris@enron.com
## 4370 76259 5730 BCC steven.harris@enron.com
## 4371 76264 5731 TO tracy.geaccone@enron.com
## 4372 76266 5731 CC steven.harris@enron.com
## 4373 76268 5731 BCC steven.harris@enron.com
## 4374 76269 5732 TO tracy.geaccone@enron.com
## 4375 76272 5733 TO tracy.geaccone@enron.com
## 4376 76273 5734 TO tracy.geaccone@enron.com
## 4377 76276 5734 CC steven.harris@enron.com
## 4378 76281 5734 BCC steven.harris@enron.com
## 4379 76286 5735 TO drew.fossum@enron.com
## 4380 76289 5735 TO shelley.corman@enron.com
## 4381 76291 5735 TO danny.mccarty@enron.com
## 4382 76292 5735 TO steven.harris@enron.com
## 4383 76296 5735 TO rod.hayslett@enron.com
## 4384 76312 5735 CC tracy.geaccone@enron.com
## 4385 76328 5735 BCC tracy.geaccone@enron.com
## 4386 76330 5736 TO tracy.geaccone@enron.com
## 4387 76364 5737 TO tracy.geaccone@enron.com
## 4388 76369 5737 CC steven.harris@enron.com
## 4389 76374 5737 BCC steven.harris@enron.com
## 4390 76378 5738 TO tracy.geaccone@enron.com
## 4391 76393 5739 CC tracy.geaccone@enron.com
## 4392 76395 5739 BCC tracy.geaccone@enron.com
## 4393 76397 5740 TO tracy.geaccone@enron.com
## 4394 76407 5741 TO tracy.geaccone@enron.com
## 4395 76409 5742 TO tracy.geaccone@enron.com
## 4396 76410 5742 CC kirk.stevens@enron.com
## 4397 76411 5742 BCC kirk.stevens@enron.com
## 4398 76412 5743 TO tracy.geaccone@enron.com
## 4399 76415 5744 TO tracy.geaccone@enron.com
## 4400 76416 5745 TO tracy.geaccone@enron.com
## 4401 76423 5747 TO tracy.geaccone@enron.com
## 4402 76428 5747 CC steven.harris@enron.com
## 4403 76433 5747 BCC steven.harris@enron.com
## 4404 76438 5748 CC tracy.geaccone@enron.com
## 4405 76439 5748 BCC tracy.geaccone@enron.com
## 4406 76440 5749 TO tracy.geaccone@enron.com
## 4407 76441 5750 TO john.keiser@enron.com
## 4408 76442 5750 TO steve.gilbert@enron.com
## 4409 76443 5750 TO elaine.concklin@enron.com
## 4410 76444 5750 TO patricia.wiederholt@enron.com
## 4411 76445 5750 TO john.jesse@enron.com
## 4412 76446 5750 TO morris.brassfield@enron.com
## 4413 76447 5750 TO barney.brasher@enron.com
## 4414 76448 5750 TO david.clements@enron.com
## 4415 76449 5750 TO john.cobb@enron.com
## 4416 76450 5750 TO bob.chandler@enron.com
## 4417 76451 5750 CC tracy.geaccone@enron.com
## 4418 76452 5750 CC james.saunders@enron.com
## 4419 76453 5750 CC jerry.peters@enron.com
## 4420 76454 5750 CC laura.kinningham@enron.com
## 4421 76455 5750 CC brian.schaffer@enron.com
## 4422 76456 5750 BCC tracy.geaccone@enron.com
## 4423 76457 5750 BCC james.saunders@enron.com
## 4424 76458 5750 BCC jerry.peters@enron.com
## 4425 76459 5750 BCC laura.kinningham@enron.com
## 4426 76460 5750 BCC brian.schaffer@enron.com
## 4427 76462 5751 TO tracy.geaccone@enron.com
## 4428 76465 5752 TO tracy.geaccone@enron.com
## 4429 76472 5753 TO tracy.geaccone@enron.com
## 4430 76478 5754 TO tracy.geaccone@enron.com
## 4431 76479 5755 TO tracy.geaccone@enron.com
## 4432 76480 5756 TO tracy.geaccone@enron.com
## 4433 76487 5757 CC tracy.geaccone@enron.com
## 4434 76490 5757 BCC tracy.geaccone@enron.com
## 4435 76497 5760 TO tracy.geaccone@enron.com
## 4436 76503 5761 TO tracy.geaccone@enron.com
## 4437 76504 5762 TO tracy.geaccone@enron.com
## 4438 76505 5763 TO tracy.geaccone@enron.com
## 4439 76506 5764 TO tracy.geaccone@enron.com
## 4440 76514 5766 TO tracy.geaccone@enron.com
## 4441 76515 5766 CC karl.jackson@enron.com
## 4442 76516 5766 BCC karl.jackson@enron.com
## 4443 76518 5768 TO tracy.geaccone@enron.com
## 4444 76523 5769 CC tracy.geaccone@enron.com
## 4445 76526 5769 BCC tracy.geaccone@enron.com
## 4446 76527 5770 TO tracy.geaccone@enron.com
## 4447 76534 5773 TO tracy.geaccone@enron.com
## 4448 76552 5776 CC tracy.geaccone@enron.com
## 4449 76553 5776 BCC tracy.geaccone@enron.com
## 4450 76563 5778 TO greg.lewis@enron.com
## 4451 76564 5778 TO michael.sullivan@enron.com
## 4452 76565 5778 CC christine.schlaudraff@enron.com
## 4453 76566 5778 CC tracy.geaccone@enron.com
## 4454 76567 5778 CC caroline.barnes@enron.com
## 4455 76568 5778 CC james.saunders@enron.com
## 4456 76569 5778 BCC christine.schlaudraff@enron.com
## 4457 76570 5778 BCC tracy.geaccone@enron.com
## 4458 76571 5778 BCC caroline.barnes@enron.com
## 4459 76572 5778 BCC james.saunders@enron.com
## 4460 76573 5779 TO tracy.geaccone@enron.com
## 4461 76622 5780 TO tracy.geaccone@enron.com
## 4462 76624 5780 TO rod.hayslett@enron.com
## 4463 76648 5781 TO tracy.geaccone@enron.com
## 4464 76649 5782 TO caroline.barnes@enron.com
## 4465 76650 5782 TO morris.brassfield@enron.com
## 4466 76651 5782 TO kathy.campos@enron.com
## 4467 76652 5782 TO james.centilli@enron.com
## 4468 76653 5782 TO pamela.daily@enron.com
## 4469 76654 5782 TO tracy.geaccone@enron.com
## 4470 76655 5782 TO steve.gilbert@enron.com
## 4471 76656 5782 TO john.keiser@enron.com
## 4472 76657 5782 TO thomas.meers@enron.com
## 4473 76658 5782 TO jerry.peters@enron.com
## 4474 76659 5782 TO e..rosenberg@enron.com
## 4475 76660 5782 TO james.saunders@enron.com
## 4476 76661 5782 TO denis.tu@enron.com
## 4477 76689 5783 TO tracy.geaccone@enron.com
## 4478 76693 5783 TO rod.hayslett@enron.com
## 4479 76777 5784 TO tracy.geaccone@enron.com
## 4480 76779 5785 TO steven.harris@enron.com
## 4481 76781 5785 TO tracy.geaccone@enron.com
## 4482 76795 5786 TO steven.harris@enron.com
## 4483 76798 5786 TO tracy.geaccone@enron.com
## 4484 76804 5786 TO rod.hayslett@enron.com
## 4485 76816 5787 TO tracy.geaccone@enron.com
## 4486 76819 5787 CC danny.mccarty@enron.com
## 4487 76820 5787 BCC danny.mccarty@enron.com
## 4488 76826 5790 CC tracy.geaccone@enron.com
## 4489 76827 5790 BCC tracy.geaccone@enron.com
## 4490 76828 5791 TO tracy.geaccone@enron.com
## 4491 76829 5792 TO tracy.geaccone@enron.com
## 4492 76835 5793 TO tracy.geaccone@enron.com
## 4493 76843 5795 TO tracy.geaccone@enron.com
## 4494 76845 5796 TO tracy.geaccone@enron.com
## 4495 76847 5797 CC tracy.geaccone@enron.com
## 4496 76848 5797 BCC tracy.geaccone@enron.com
## 4497 76850 5798 CC tracy.geaccone@enron.com
## 4498 76851 5798 BCC tracy.geaccone@enron.com
## 4499 76854 5801 TO tracy.geaccone@enron.com
## 4500 76857 5802 TO tracy.geaccone@enron.com
## 4501 76858 5803 TO tracy.geaccone@enron.com
## 4502 76863 5804 TO rod.hayslett@enron.com
## 4503 76864 5804 TO tracy.geaccone@enron.com
## 4504 76865 5805 TO tracy.geaccone@enron.com
## 4505 76871 5806 TO steven.harris@enron.com
## 4506 76872 5806 TO drew.fossum@enron.com
## 4507 76877 5806 CC tracy.geaccone@enron.com
## 4508 76880 5806 CC steven.harris@enron.com
## 4509 76885 5806 BCC tracy.geaccone@enron.com
## 4510 76888 5806 BCC steven.harris@enron.com
## 4511 76891 5807 TO kay.miller@enron.com
## 4512 76892 5807 TO robert.kilmer@enron.com
## 4513 76893 5807 CC tim.kissner@enron.com
## 4514 76894 5807 CC steve.gilbert@enron.com
## 4515 76895 5807 CC john.fiscus@enron.com
## 4516 76896 5807 CC tracy.geaccone@enron.com
## 4517 76897 5807 CC dave.waymire@enron.com
## 4518 76898 5807 CC keith.petersen@enron.com
## 4519 76899 5807 CC steve.kirk@enron.com
## 4520 76900 5807 CC patrick.brennan@enron.com
## 4521 76901 5807 BCC tim.kissner@enron.com
## 4522 76902 5807 BCC steve.gilbert@enron.com
## 4523 76903 5807 BCC john.fiscus@enron.com
## 4524 76904 5807 BCC tracy.geaccone@enron.com
## 4525 76905 5807 BCC dave.waymire@enron.com
## 4526 76906 5807 BCC keith.petersen@enron.com
## 4527 76907 5807 BCC steve.kirk@enron.com
## 4528 76908 5807 BCC patrick.brennan@enron.com
## 4529 76911 5808 TO tracy.geaccone@enron.com
## 4530 76912 5808 CC drew.fossum@enron.com
## 4531 76915 5808 BCC drew.fossum@enron.com
## 4532 76918 5809 TO tracy.geaccone@enron.com
## 4533 76919 5810 TO caroline.barnes@enron.com
## 4534 76920 5810 TO morris.brassfield@enron.com
## 4535 76921 5810 TO kathy.campos@enron.com
## 4536 76922 5810 TO james.centilli@enron.com
## 4537 76923 5810 TO pamela.daily@enron.com
## 4538 76924 5810 TO tracy.geaccone@enron.com
## 4539 76925 5810 TO steve.gilbert@enron.com
## 4540 76926 5810 TO john.keiser@enron.com
## 4541 76927 5810 TO thomas.meers@enron.com
## 4542 76928 5810 TO jerry.peters@enron.com
## 4543 76929 5810 TO e..rosenberg@enron.com
## 4544 76930 5810 TO james.saunders@enron.com
## 4545 76931 5810 TO denis.tu@enron.com
## 4546 76942 5816 TO tracy.geaccone@enron.com
## 4547 76943 5817 TO tracy.geaccone@enron.com
## 4548 76944 5818 TO tracy.geaccone@enron.com
## 4549 76945 5819 TO tracy.geaccone@enron.com
## 4550 76946 5820 TO tracy.geaccone@enron.com
## 4551 76947 5821 TO steve.kleb@enron.com
## 4552 76948 5822 TO maggie.schroeder@enron.com
## 4553 76949 5823 TO james.saunders@enron.com
## 4554 76950 5823 TO steve.gilbert@enron.com
## 4555 76951 5823 TO jerry.peters@enron.com
## 4556 76952 5823 TO john.keiser@enron.com
## 4557 76953 5823 TO james.centilli@enron.com
## 4558 76954 5823 TO a..howard@enron.com
## 4559 76955 5823 TO morris.brassfield@enron.com
## 4560 76956 5823 TO paul.cherry@enron.com
## 4561 76957 5823 TO caroline.barnes@enron.com
## 4562 76958 5823 TO denis.tu@enron.com
## 4563 76959 5823 TO e..rosenberg@enron.com
## 4564 76960 5824 TO rod.hayslett@enron.com
## 4565 76961 5825 TO security.sap@enron.com
## 4566 76962 5826 TO rod.hayslett@enron.com
## 4567 76963 5827 TO rod.hayslett@enron.com
## 4568 76964 5828 TO a..howard@enron.com
## 4569 76965 5828 CC steve.kleb@enron.com
## 4570 76966 5828 BCC steve.kleb@enron.com
## 4571 76967 5829 TO sarah.taylor@enron.com
## 4572 76968 5830 TO sarah.taylor@enron.com
## 4573 76969 5831 TO sarah.taylor@enron.com
## 4574 76970 5832 TO kimberly.watson@enron.com
## 4575 76971 5833 TO kimberly.watson@enron.com
## 4576 76972 5834 TO jan.moore@enron.com
## 4577 76973 5835 TO sarah.taylor@enron.com
## 4578 76974 5835 TO jayshree.desai@enron.com
## 4579 76975 5835 CC rod.hayslett@enron.com
## 4580 76976 5835 BCC rod.hayslett@enron.com
## 4581 76977 5836 TO rod.hayslett@enron.com
## 4582 76978 5836 TO sarah.taylor@enron.com
## 4583 76979 5836 TO jayshree.desai@enron.com
## 4584 76980 5837 TO rod.hayslett@enron.com
## 4585 76981 5838 TO rod. michael@enron.com
## 4586 76982 5839 TO rod.hayslett@enron.com
## 4587 76983 5840 TO kwatson@enron.com
## 4588 76984 5841 TO kim.watson@enron.com
## 4589 76985 5842 TO a..howard@enron.com
## 4590 76986 5843 TO james.weitekamp@enron.com
## 4591 76987 5844 TO a..howard@enron.com
## 4592 76988 5844 TO rod.hayslett@enron.com
## 4593 76989 5845 TO jan.moore@enron.com
## 4594 76990 5846 TO caroline.barnes@enron.com
## 4595 76991 5847 TO steve.kleb@enron.com
## 4596 76992 5848 TO rod.hayslett@enron.com
## 4597 76993 5849 TO rod.hayslett@enron.com
## 4598 76994 5850 TO rod.hayslett@enron.com
## 4599 76995 5851 TO mary.botello@enron.com
## 4600 76996 5852 TO bob.chandler@enron.com
## 4601 76997 5852 TO john.cobb@enron.com
## 4602 76998 5853 TO steven.harris@enron.com
## 4603 76999 5854 TO steven.harris@enron.com
## 4604 77000 5855 TO rod.hayslett@enron.com
## 4605 77001 5856 TO rod.hayslett@enron.com
## 4606 77002 5857 TO rod.hayslett@enron.com
## 4607 77003 5858 TO debbie.moore@enron.com
## 4608 77004 5859 TO rod.hayslett@enron.com
## 4609 77005 5860 TO rod.hayslett@enron.com
## 4610 77006 5861 TO rod.hayslett@enron.com
## 4611 77007 5862 TO julie.armstrong@enron.com
## 4612 77008 5863 TO jan.moore@enron.com
## 4613 77009 5864 TO james.saunders@enron.com
## 4614 77010 5865 TO julie.armstrong@enron.com
## 4615 77011 5866 TO rod.hayslett@enron.com
## 4616 77012 5867 TO rod.hayslett@enron.com
## 4617 77013 5868 TO rod.hayslett@enron.com
## 4618 77014 5869 TO pallavi.goradia@enron.com
## 4619 77015 5869 TO jan.moore@enron.com
## 4620 77016 5870 TO kimberly.bragg@enron.com
## 4621 77017 5870 CC john.cobb@enron.com
## 4622 77018 5870 BCC john.cobb@enron.com
## 4623 77019 5871 TO jan.moore@enron.com
## 4624 77020 5871 TO lindy.donoho@enron.com
## 4625 77021 5872 TO rod.hayslett@enron.com
## 4626 77022 5873 TO rod.hayslett@enron.com
## 4627 77023 5874 TO rod.hayslett@enron.com
## 4628 77024 5875 TO rod.hayslett@enron.com
## 4629 77025 5876 TO rod.hayslett@enron.com
## 4630 77026 5877 TO rod.hayslett@enron.com
## 4631 77027 5878 TO rod.hayslett@enron.com
## 4632 77028 5879 TO steven.harris@enron.com
## 4633 77029 5880 TO rod.hayslett@enron.com
## 4634 77030 5881 TO john.cobb@enron.com
## 4635 77031 5882 TO steven.harris@enron.com
## 4636 77032 5883 TO rod.hayslett@enron.com
## 4637 77033 5884 TO e..sommers@enron.com
## 4638 77034 5885 TO stanley.horton@enron.com
## 4639 77035 5886 TO jeff.sommers@enron.com
## 4640 77036 5887 TO blake.walker@enron.com
## 4641 77037 5887 TO chris.lambert@enron.com
## 4642 77038 5887 TO jeff.poche@enron.com
## 4643 77039 5888 TO agatha.tran@enron.com
## 4644 77040 5888 TO stephen.schwarzbach@enron.com
## 4645 77041 5889 TO stephen.schwarzbach@enron.com
## 4646 77042 5890 TO stephen.schwarzbach@enron.com
## 4647 77043 5891 TO stephen.schwarzbach@enron.com
## 4648 77044 5892 TO stephen.schwarzbach@enron.com
## 4649 77045 5893 TO chris.lambert@enron.com
## 4650 77046 5894 TO valerie.giles@enron.com
## 4651 77047 5894 TO kirk.stevens@enron.com
## 4652 77048 5895 TO steve.kleb@enron.com
## 4653 77049 5896 TO james.saunders@enron.com
## 4654 77050 5896 TO bob.chandler@enron.com
## 4655 77051 5896 TO e..sommers@enron.com
## 4656 77052 5896 TO michael.anderson@enron.com
## 4657 77053 5896 TO kirk.stevens@enron.com
## 4658 77054 5896 TO valerie.giles@enron.com
## 4659 77055 5896 TO a..lindholm@enron.com
## 4660 77056 5896 TO blake.walker@enron.com
## 4661 77057 5896 CC gary.zahn@enron.com
## 4662 77058 5896 CC harry.walters@enron.com
## 4663 77059 5896 BCC gary.zahn@enron.com
## 4664 77060 5896 BCC harry.walters@enron.com
## 4665 77061 5897 TO jan.moore@enron.com
## 4666 77062 5898 TO steven.harris@enron.com
## 4667 77063 5899 TO steven.harris@enron.com
## 4668 77064 5900 TO steven.harris@enron.com
## 4669 77065 5901 TO steven.harris@enron.com
## 4670 77066 5902 TO steve.kleb@enron.com
## 4671 77067 5903 TO rod.hayslett@enron.com
## 4672 77068 5904 TO e..lindsey@enron.com
## 4673 77069 5905 TO rod.hayslett@enron.com
## 4674 77070 5906 TO rod.hayslett@enron.com
## 4675 77071 5907 TO stephen.schwarzbach@enron.com
## 4676 77072 5907 CC rod.hayslett@enron.com
## 4677 77073 5907 BCC rod.hayslett@enron.com
## 4678 77074 5908 TO john.ambler@enron.com
## 4679 77075 5909 TO debbie.moore@enron.com
## 4680 77076 5910 TO debbie.moore@enron.com
## 4681 77077 5911 TO steven.harris@enron.com
## 4682 77078 5912 TO debbie.moore@enron.com
## 4683 77079 5913 TO security.sap@enron.com
## 4684 77080 5913 TO jan.moore@enron.com
## 4685 77081 5914 TO steven.harris@enron.com
## 4686 77082 5915 TO steven.harris@enron.com
## 4687 77083 5916 TO ruthann.frausto@enron.com
## 4688 77084 5916 CC pamela.daily@enron.com
## 4689 77085 5916 BCC pamela.daily@enron.com
## 4690 77086 5917 TO steve.kleb@enron.com
## 4691 77087 5917 TO jan.moore@enron.com
## 4692 77088 5917 TO mary.botello@enron.com
## 4693 77089 5917 TO james.weitekamp@enron.com
## 4694 77090 5918 TO cheryl.perchal@enron.com
## 4695 77091 5918 TO jerry.peters@enron.com
## 4696 77092 5918 CC james.weitekamp@enron.com
## 4697 77093 5918 BCC james.weitekamp@enron.com
## 4698 77094 5919 TO julie.armstrong@enron.com
## 4699 77095 5920 TO j..parrish@enron.com
## 4700 77096 5921 TO rod.hayslett@enron.com
## 4701 77097 5922 TO rod.hayslett@enron.com
## 4702 77098 5923 TO rod.hayslett@enron.com
## 4703 77099 5924 TO a..howard@enron.com
## 4704 77100 5925 TO a..howard@enron.com
## 4705 77101 5926 TO lee.baker@enron.com
## 4706 77102 5926 CC elaine.concklin@enron.com
## 4707 77103 5926 CC greg.lewis@enron.com
## 4708 77104 5926 BCC elaine.concklin@enron.com
## 4709 77105 5926 BCC greg.lewis@enron.com
## 4710 77106 5927 TO jeanette.doll@enron.com
## 4711 77107 5928 TO dan.fancler@enron.com
## 4712 77108 5928 TO steve.weller@enron.com
## 4713 77109 5928 TO g..stage@enron.com
## 4714 77110 5928 TO jennifer.lev@enron.com
## 4715 77111 5928 CC john.cobb@enron.com
## 4716 77112 5928 CC bob.chandler@enron.com
## 4717 77113 5928 BCC john.cobb@enron.com
## 4718 77114 5928 BCC bob.chandler@enron.com
## 4719 77115 5929 TO danny.mccarty@enron.com
## 4720 77116 5929 TO steven.harris@enron.com
## 4721 77117 5929 TO robert.hayes@enron.com
## 4722 77118 5929 TO dave.neubauer@enron.com
## 4723 77119 5929 TO steve.hotte@enron.com
## 4724 77120 5929 TO bill.cordes@enron.com
## 4725 77121 5929 TO phil.lowry@enron.com
## 4726 77122 5929 TO shelley.corman@enron.com
## 4727 77123 5929 TO drew.fossum@enron.com
## 4728 77124 5929 TO gary.smith@enron.com
## 4729 77125 5929 TO eric.gadd@enron.com
## 4730 77126 5929 TO rod.hayslett@enron.com
## 4731 77127 5929 CC cindy.stark@enron.com
## 4732 77128 5929 CC julie.armstrong@enron.com
## 4733 77129 5929 CC audrey.robertson@enron.com
## 4734 77130 5929 CC rita.houser@enron.com
## 4735 77131 5929 CC martha.benner@enron.com
## 4736 77132 5929 CC amelia.alder@enron.com
## 4737 77133 5929 CC ricki.winters@enron.com
## 4738 77134 5929 CC deborah.cappiello@enron.com
## 4739 77135 5929 CC tammy.kovalcik@enron.com
## 4740 77136 5929 CC susan.wadle@enron.com
## 4741 77137 5929 CC emily.sellers@enron.com
## 4742 77138 5929 CC carolyn.perry@enron.com
## 4743 77139 5929 CC kathy.campos@enron.com
## 4744 77140 5929 CC james.saunders@enron.com
## 4745 77141 5929 CC steve.gilbert@enron.com
## 4746 77142 5929 CC morris.brassfield@enron.com
## 4747 77143 5929 CC elaine.concklin@enron.com
## 4748 77144 5929 CC caroline.barnes@enron.com
## 4749 77145 5929 CC john.keiser@enron.com
## 4750 77146 5929 BCC cindy.stark@enron.com
## 4751 77147 5929 BCC julie.armstrong@enron.com
## 4752 77148 5929 BCC audrey.robertson@enron.com
## 4753 77149 5929 BCC rita.houser@enron.com
## 4754 77150 5929 BCC martha.benner@enron.com
## 4755 77151 5929 BCC amelia.alder@enron.com
## 4756 77152 5929 BCC ricki.winters@enron.com
## 4757 77153 5929 BCC deborah.cappiello@enron.com
## 4758 77154 5929 BCC tammy.kovalcik@enron.com
## 4759 77155 5929 BCC susan.wadle@enron.com
## 4760 77156 5929 BCC emily.sellers@enron.com
## 4761 77157 5929 BCC carolyn.perry@enron.com
## 4762 77158 5929 BCC kathy.campos@enron.com
## 4763 77159 5929 BCC james.saunders@enron.com
## 4764 77160 5929 BCC steve.gilbert@enron.com
## 4765 77161 5929 BCC morris.brassfield@enron.com
## 4766 77162 5929 BCC elaine.concklin@enron.com
## 4767 77163 5929 BCC caroline.barnes@enron.com
## 4768 77164 5929 BCC john.keiser@enron.com
## 4769 77166 5931 TO rod.hayslett@enron.com
## 4770 77167 5932 TO rod.hayslett@enron.com
## 4771 77168 5933 TO steve.kleb@enron.com
## 4772 77170 5935 TO steve.kleb@enron.com
## 4773 77171 5936 TO jana.domke@enron.com
## 4774 77172 5937 TO james.weitekamp@enron.com
## 4775 77173 5938 TO james.weitekamp@enron.com
## 4776 77174 5939 TO jeanette.doll@enron.com
## 4777 77175 5940 TO e..sommers@enron.com
## 4778 77176 5941 TO rod.hayslett@enron.com
## 4779 77177 5941 TO stanley.horton@enron.com
## 4780 77178 5941 CC cindy.stark@enron.com
## 4781 77179 5941 BCC cindy.stark@enron.com
## 4782 77180 5942 TO james.saunders@enron.com
## 4783 77181 5943 TO rod.hayslett@enron.com
## 4784 77182 5943 TO a..howard@enron.com
## 4785 77183 5944 TO rod.hayslett@enron.com
## 4786 77184 5944 TO john.keiser@enron.com
## 4787 77185 5944 TO steve.gilbert@enron.com
## 4788 77186 5944 TO steve.kleb@enron.com
## 4789 77187 5944 TO james.weitekamp@enron.com
## 4790 77188 5944 TO jan.moore@enron.com
## 4791 77189 5944 TO mary.botello@enron.com
## 4792 77190 5944 TO caroline.barnes@enron.com
## 4793 77191 5944 TO elaine.concklin@enron.com
## 4794 77192 5944 CC kathy.campos@enron.com
## 4795 77193 5944 CC cindy.stark@enron.com
## 4796 77194 5944 BCC kathy.campos@enron.com
## 4797 77195 5944 BCC cindy.stark@enron.com
## 4798 77196 5945 TO caroline.barnes@enron.com
## 4799 77197 5945 TO nancy.carpenter@enron.com
## 4800 77198 5945 TO elaine.concklin@enron.com
## 4801 77199 5946 TO a..howard@enron.com
## 4802 77200 5946 CC james.saunders@enron.com
## 4803 77201 5946 CC rod.hayslett@enron.com
## 4804 77202 5946 BCC james.saunders@enron.com
## 4805 77203 5946 BCC rod.hayslett@enron.com
## 4806 77204 5947 TO nancy.carpenter@enron.com
## 4807 77205 5948 TO nancy.carpenter@enron.com
## 4808 77206 5948 TO elaine.concklin@enron.com
## 4809 77207 5948 CC caroline.barnes@enron.com
## 4810 77208 5948 BCC caroline.barnes@enron.com
## 4811 77209 5949 TO james.saunders@enron.com
## 4812 77210 5950 TO a..howard@enron.com
## 4813 77211 5951 TO a..howard@enron.com
## 4814 77212 5952 TO no.address@enron.com
## 4815 77213 5953 TO rod.hayslett@enron.com
## 4816 77214 5954 TO rod.hayslett@enron.com
## 4817 77215 5955 TO rod.hayslett@enron.com
## 4818 77216 5956 TO rod.hayslett@enron.com
## 4819 77219 5959 TO a..howard@enron.com
## 4820 77221 5961 TO rod.hayslett@enron.com
## 4821 77224 5964 TO dan.fancler@enron.com
## 4822 77225 5965 TO henry.baker@enron.com
## 4823 77226 5965 TO steve.gilbert@enron.com
## 4824 77227 5965 CC jan.moore@enron.com
## 4825 77228 5965 BCC jan.moore@enron.com
## 4826 77230 5966 TO jweitek@enron.com
## 4827 77233 5966 CC tgeacco@enron.com
## 4828 77235 5966 BCC tgeacco@enron.com
## 4829 77236 5967 TO eric.gadd@enron.com
## 4830 77237 5967 TO danny.mccarty@enron.com
## 4831 77238 5967 CC stephen.dowd@enron.com
## 4832 77239 5967 BCC stephen.dowd@enron.com
## 4833 77240 5968 TO michael.anderson@enron.com
## 4834 77241 5969 TO greg.lewis@enron.com
## 4835 77243 5971 TO cheryl.perchal@enron.com
## 4836 77244 5972 TO agatha.tran@enron.com
## 4837 77245 5972 TO a..lindholm@enron.com
## 4838 77246 5972 TO cheryl.perchal@enron.com
## 4839 77247 5972 TO blake.walker@enron.com
## 4840 77248 5972 TO michael.anderson@enron.com
## 4841 77249 5972 TO e..sommers@enron.com
## 4842 77250 5972 TO jim.barnes@enron.com
## 4843 77251 5973 TO brian.stanley@enron.com
## 4844 77252 5973 CC rachael.venable@enron.com
## 4845 77253 5973 CC cindy.stark@enron.com
## 4846 77254 5973 BCC rachael.venable@enron.com
## 4847 77255 5973 BCC cindy.stark@enron.com
## 4848 77258 5974 CC tyson.demetrics@enron.com
## 4849 77259 5974 CC james.weitekamp@enron.com
## 4850 77260 5974 BCC tyson.demetrics@enron.com
## 4851 77261 5974 BCC james.weitekamp@enron.com
## 4852 77262 5975 TO james.weitekamp@enron.com
## 4853 77266 5976 CC jweitek@enron.com
## 4854 77269 5976 BCC jweitek@enron.com
## 4855 77270 5977 TO cindy.stark@enron.com
## 4856 77271 5977 CC rod.hayslett@enron.com
## 4857 77272 5977 BCC rod.hayslett@enron.com
## 4858 77273 5978 TO cindy.stark@enron.com
## 4859 77274 5979 TO cindy.stark@enron.com
## 4860 77275 5979 CC julie.armstrong@enron.com
## 4861 77276 5979 BCC julie.armstrong@enron.com
## 4862 77277 5980 TO kathy.campos@enron.com
## 4863 77278 5981 TO gay.mayeux@enron.com
## 4864 77279 5981 CC jan.moore@enron.com
## 4865 77280 5981 BCC jan.moore@enron.com
## 4866 77281 5982 TO kathy.campos@enron.com
## 4867 77282 5983 TO lorraine.telles@enron.com
## 4868 77283 5983 CC cindy.stark@enron.com
## 4869 77284 5983 BCC cindy.stark@enron.com
## 4870 77285 5984 TO steven.harris@enron.com
## 4871 77286 5985 TO steven.harris@enron.com
## 4872 77287 5986 TO john.keiser@enron.com
## 4873 77288 5987 TO jan.moore@enron.com
## 4874 77289 5987 CC kimberly.watson@enron.com
## 4875 77290 5987 BCC kimberly.watson@enron.com
## 4876 77291 5988 TO morris.brassfield@enron.com
## 4877 77292 5988 CC mary.botello@enron.com
## 4878 77293 5988 BCC mary.botello@enron.com
## 4879 77294 5989 TO cindy.stark@enron.com
## 4880 77295 5990 TO stephen.schwarzbach@enron.com
## 4881 77296 5990 CC rod.hayslett@enron.com
## 4882 77297 5990 BCC rod.hayslett@enron.com
## 4883 77298 5991 TO stephen.schwarzbach@enron.com
## 4884 77299 5992 TO agatha.tran@enron.com
## 4885 77300 5992 TO a..lindholm@enron.com
## 4886 77301 5992 TO cheryl.perchal@enron.com
## 4887 77302 5992 TO blake.walker@enron.com
## 4888 77303 5992 TO michael.anderson@enron.com
## 4889 77304 5992 TO e..sommers@enron.com
## 4890 77305 5992 TO jim.barnes@enron.com
## 4891 77306 5993 TO cindy.stark@enron.com
## 4892 77307 5994 TO john.keiser@enron.com
## 4893 77308 5994 TO steve.gilbert@enron.com
## 4894 77309 5994 TO jan.moore@enron.com
## 4895 77310 5995 TO marian.bryant@enron.com
## 4896 77311 5995 CC caroline.barnes@enron.com
## 4897 77312 5995 CC rod.hayslett@enron.com
## 4898 77313 5995 CC james.saunders@enron.com
## 4899 77314 5995 CC ron.nightingale@enron.com
## 4900 77315 5995 CC timothy.bayles@enron.com
## 4901 77316 5995 BCC caroline.barnes@enron.com
## 4902 77317 5995 BCC rod.hayslett@enron.com
## 4903 77318 5995 BCC james.saunders@enron.com
## 4904 77319 5995 BCC ron.nightingale@enron.com
## 4905 77320 5995 BCC timothy.bayles@enron.com
## 4906 77322 5997 TO lindy.donoho@enron.com
## 4907 77323 5998 TO steven.harris@enron.com
## 4908 77324 5999 TO jan.moore@enron.com
## 4909 77325 6000 TO james.weitekamp@enron.com
## 4910 77326 6000 TO mary.botello@enron.com
## 4911 77327 6001 TO rod.hayslett@enron.com
## 4912 77328 6002 TO john.keiser@enron.com
## 4913 77329 6002 TO steve.gilbert@enron.com
## 4914 77330 6003 TO love@enron.com
## 4915 77332 6004 TO steve.gilbert@enron.com
## 4916 77333 6005 TO steven.harris@enron.com
## 4917 77334 6006 TO love@enron.com
## 4918 77336 6007 TO john.ambler@enron.com
## 4919 77337 6008 TO rod.hayslett@enron.com
## 4920 77338 6009 TO love@enron.com
## 4921 77340 6010 TO caroline.barnes@enron.com
## 4922 77341 6011 TO michelle.lokay@enron.com
## 4923 77342 6012 TO steven.harris@enron.com
## 4924 77343 6012 TO kimberly.watson@enron.com
## 4925 77344 6012 TO michelle.lokay@enron.com
## 4926 77345 6012 TO lorraine.lindberg@enron.com
## 4927 77346 6012 TO audrey.robertson@enron.com
## 4928 77347 6012 TO rod.hayslett@enron.com
## 4929 77348 6012 TO steve.gilbert@enron.com
## 4930 77349 6013 TO steven.harris@enron.com
## 4931 77350 6014 TO caroline.barnes@enron.com
## 4932 77351 6015 TO no.address@enron.com
## 4933 77352 6016 TO kathy.campos@enron.com
## 4934 77353 6017 TO agatha.tran@enron.com
## 4935 77354 6018 TO mary.botello@enron.com
## 4936 77355 6019 TO a..howard@enron.com
## 4937 77356 6019 TO john.ambler@enron.com
## 4938 77357 6020 TO steven.harris@enron.com
## 4939 77358 6020 TO dave.neubauer@enron.com
## 4940 77359 6020 TO robert.hayes@enron.com
## 4941 77360 6020 TO eric.gadd@enron.com
## 4942 77361 6020 TO kay.miller@enron.com
## 4943 77362 6020 TO robert.kilmer@enron.com
## 4944 77363 6020 CC danny.mccarty@enron.com
## 4945 77364 6020 CC julie.armstrong@enron.com
## 4946 77365 6020 CC audrey.robertson@enron.com
## 4947 77366 6020 CC tammy.kovalcik@enron.com
## 4948 77367 6020 CC susan.wadle@enron.com
## 4949 77368 6020 CC john.keiser@enron.com
## 4950 77369 6020 CC steve.gilbert@enron.com
## 4951 77370 6020 CC rod.hayslett@enron.com
## 4952 77371 6020 BCC danny.mccarty@enron.com
## 4953 77372 6020 BCC julie.armstrong@enron.com
## 4954 77373 6020 BCC audrey.robertson@enron.com
## 4955 77374 6020 BCC tammy.kovalcik@enron.com
## 4956 77375 6020 BCC susan.wadle@enron.com
## 4957 77376 6020 BCC john.keiser@enron.com
## 4958 77377 6020 BCC steve.gilbert@enron.com
## 4959 77378 6020 BCC rod.hayslett@enron.com
## 4960 77379 6021 TO steven.harris@enron.com
## 4961 77380 6021 TO robert.hayes@enron.com
## 4962 77381 6021 TO dave.neubauer@enron.com
## 4963 77382 6021 TO eric.gadd@enron.com
## 4964 77383 6021 CC steve.gilbert@enron.com
## 4965 77384 6021 CC john.keiser@enron.com
## 4966 77385 6021 CC julie.armstrong@enron.com
## 4967 77386 6021 CC audrey.robertson@enron.com
## 4968 77387 6021 CC tammy.kovalcik@enron.com
## 4969 77388 6021 CC susan.wadle@enron.com
## 4970 77389 6021 BCC steve.gilbert@enron.com
## 4971 77390 6021 BCC john.keiser@enron.com
## 4972 77391 6021 BCC julie.armstrong@enron.com
## 4973 77392 6021 BCC audrey.robertson@enron.com
## 4974 77393 6021 BCC tammy.kovalcik@enron.com
## 4975 77394 6021 BCC susan.wadle@enron.com
## 4976 77395 6022 TO steven.harris@enron.com
## 4977 77396 6022 TO dave.neubauer@enron.com
## 4978 77397 6022 TO robert.hayes@enron.com
## 4979 77398 6022 TO eric.gadd@enron.com
## 4980 77399 6022 TO kay.miller@enron.com
## 4981 77400 6022 TO robert.kilmer@enron.com
## 4982 77401 6022 CC danny.mccarty@enron.com
## 4983 77402 6022 CC julie.armstrong@enron.com
## 4984 77403 6022 CC audrey.robertson@enron.com
## 4985 77404 6022 CC tammy.kovalcik@enron.com
## 4986 77405 6022 CC susan.wadle@enron.com
## 4987 77406 6022 CC john.keiser@enron.com
## 4988 77407 6022 CC steve.gilbert@enron.com
## 4989 77408 6022 CC rod.hayslett@enron.com
## 4990 77409 6022 BCC danny.mccarty@enron.com
## 4991 77410 6022 BCC julie.armstrong@enron.com
## 4992 77411 6022 BCC audrey.robertson@enron.com
## 4993 77412 6022 BCC tammy.kovalcik@enron.com
## 4994 77413 6022 BCC susan.wadle@enron.com
## 4995 77414 6022 BCC john.keiser@enron.com
## 4996 77415 6022 BCC steve.gilbert@enron.com
## 4997 77416 6022 BCC rod.hayslett@enron.com
## 4998 77417 6023 TO judy.lin@enron.com
## 4999 77418 6023 CC michael.ratner@enron.com
## 5000 77419 6023 CC jennifer.lev@enron.com
## 5001 77420 6023 BCC michael.ratner@enron.com
## 5002 77421 6023 BCC jennifer.lev@enron.com
## 5003 77422 6024 TO steven.harris@enron.com
## 5004 77423 6024 TO dave.neubauer@enron.com
## 5005 77424 6024 TO robert.hayes@enron.com
## 5006 77425 6024 TO eric.gadd@enron.com
## 5007 77426 6024 TO kay.miller@enron.com
## 5008 77427 6024 TO robert.kilmer@enron.com
## 5009 77428 6024 CC danny.mccarty@enron.com
## 5010 77429 6024 CC julie.armstrong@enron.com
## 5011 77430 6024 CC audrey.robertson@enron.com
## 5012 77431 6024 CC tammy.kovalcik@enron.com
## 5013 77432 6024 CC susan.wadle@enron.com
## 5014 77433 6024 CC john.keiser@enron.com
## 5015 77434 6024 CC steve.gilbert@enron.com
## 5016 77435 6024 BCC danny.mccarty@enron.com
## 5017 77436 6024 BCC julie.armstrong@enron.com
## 5018 77437 6024 BCC audrey.robertson@enron.com
## 5019 77438 6024 BCC tammy.kovalcik@enron.com
## 5020 77439 6024 BCC susan.wadle@enron.com
## 5021 77440 6024 BCC john.keiser@enron.com
## 5022 77441 6024 BCC steve.gilbert@enron.com
## 5023 77442 6025 TO kimberly.watson@enron.com
## 5024 77443 6026 TO steven.harris@enron.com
## 5025 77444 6027 TO jim.barnes@enron.com
## 5026 77445 6027 TO valerie.giles@enron.com
## 5027 77446 6027 TO peggy.fowler@enron.com
## 5028 77447 6027 TO mary.trosper@enron.com
## 5029 77448 6028 TO valerie.giles@enron.com
## 5030 77449 6029 TO blake.walker@enron.com
## 5031 77450 6030 TO mary.botello@enron.com
## 5032 77451 6030 TO a..lindholm@enron.com
## 5033 77452 6030 TO agatha.tran@enron.com
## 5034 77453 6030 TO erin.copeland@enron.com
## 5035 77454 6030 TO michael.anderson@enron.com
## 5036 77455 6030 TO jim.barnes@enron.com
## 5037 77456 6030 TO valerie.giles@enron.com
## 5038 77457 6031 TO mary.botello@enron.com
## 5039 77458 6032 TO james.centilli@enron.com
## 5040 77459 6033 TO james.centilli@enron.com
## 5041 77460 6034 TO adam.umanoff@enron.com
## 5042 77461 6034 CC a..lindholm@enron.com
## 5043 77462 6034 BCC a..lindholm@enron.com
## 5044 77463 6035 TO dan.fancler@enron.com
## 5045 77464 6035 TO james.saunders@enron.com
## 5046 77465 6035 CC john.cobb@enron.com
## 5047 77466 6035 CC bob.chandler@enron.com
## 5048 77467 6035 CC steve.weller@enron.com
## 5049 77468 6035 CC raetta.zadow@enron.com
## 5050 77469 6035 BCC john.cobb@enron.com
## 5051 77470 6035 BCC bob.chandler@enron.com
## 5052 77471 6035 BCC steve.weller@enron.com
## 5053 77472 6035 BCC raetta.zadow@enron.com
## 5054 77473 6036 TO mei-ling.kaster@enron.com
## 5055 77474 6036 CC agatha.tran@enron.com
## 5056 77475 6036 CC e..sommers@enron.com
## 5057 77476 6036 CC rod.hayslett@enron.com
## 5058 77477 6036 BCC agatha.tran@enron.com
## 5059 77478 6036 BCC e..sommers@enron.com
## 5060 77479 6036 BCC rod.hayslett@enron.com
## 5061 77480 6037 TO mary.botello@enron.com
## 5062 77481 6038 TO cheryl.perchal@enron.com
## 5063 77482 6039 TO john.keiser@enron.com
## 5064 77483 6039 TO steve.gilbert@enron.com
## 5065 77484 6039 TO james.saunders@enron.com
## 5066 77485 6039 TO james.centilli@enron.com
## 5067 77486 6039 TO dennis.tufts@enron.com
## 5068 77487 6039 TO e..rosenberg@enron.com
## 5069 77488 6039 TO rod.hayslett@enron.com
## 5070 77489 6040 TO rod.hayslett@enron.com
## 5071 77490 6040 TO james.weitekamp@enron.com
## 5072 77491 6041 TO e..sommers@enron.com
## 5073 77492 6041 CC agatha.tran@enron.com
## 5074 77493 6041 BCC agatha.tran@enron.com
## 5075 77494 6042 TO rod.hayslett@enron.com
## 5076 77496 6044 TO no.address@enron.com
## 5077 77497 6045 TO erin.copeland@enron.com
## 5078 77498 6045 CC rod.hayslett@enron.com
## 5079 77499 6045 BCC rod.hayslett@enron.com
## 5080 77500 6046 TO john.keiser@enron.com
## 5081 77501 6046 TO steve.gilbert@enron.com
## 5082 77502 6047 TO steve.hotte@enron.com
## 5083 77503 6048 TO e..sommers@enron.com
## 5084 77504 6048 TO kirk.stevens@enron.com
## 5085 77505 6048 TO valerie.giles@enron.com
## 5086 77506 6048 TO a..lindholm@enron.com
## 5087 77507 6048 TO michael.anderson@enron.com
## 5088 77508 6048 TO thomas.meers@enron.com
## 5089 77509 6048 TO erin.copeland@enron.com
## 5090 77510 6048 TO keith.dodson@enron.com
## 5091 77511 6048 CC rod.hayslett@enron.com
## 5092 77512 6048 BCC rod.hayslett@enron.com
## 5093 77513 6049 TO mary.trosper@enron.com
## 5094 77514 6049 TO e..ramirez@enron.com
## 5095 77515 6049 TO connie.blackwood@enron.com
## 5096 77516 6049 TO lorraine.telles@enron.com
## 5097 77517 6049 TO kathy.campos@enron.com
## 5098 77518 6049 TO rachael.venable@enron.com
## 5099 77519 6050 TO danny.mccarty@enron.com
## 5100 77520 6050 TO bill.cordes@enron.com
## 5101 77521 6050 TO brian.stanley@enron.com
## 5102 77522 6050 TO peggy.fowler@enron.com
## 5103 77523 6050 TO l.garrison@enron.com
## 5104 77524 6050 TO a..hughes@enron.com
## 5105 77525 6050 TO adam.umanoff@enron.com
## 5106 77526 6050 CC michael.anderson@enron.com
## 5107 77527 6050 CC e..sommers@enron.com
## 5108 77528 6050 CC jerry.peters@enron.com
## 5109 77529 6050 CC erin.copeland@enron.com
## 5110 77530 6050 CC keith.dodson@enron.com
## 5111 77531 6050 CC jim.piro@enron.com
## 5112 77532 6050 CC a..lindholm@enron.com
## 5113 77533 6050 CC julie.armstrong@enron.com
## 5114 77534 6050 CC cindy.stark@enron.com
## 5115 77535 6050 CC rod.hayslett@enron.com
## 5116 77536 6050 CC cindy.stark@enron.com
## 5117 77537 6050 BCC michael.anderson@enron.com
## 5118 77538 6050 BCC e..sommers@enron.com
## 5119 77539 6050 BCC jerry.peters@enron.com
## 5120 77540 6050 BCC erin.copeland@enron.com
## 5121 77541 6050 BCC keith.dodson@enron.com
## 5122 77542 6050 BCC jim.piro@enron.com
## 5123 77543 6050 BCC a..lindholm@enron.com
## 5124 77544 6050 BCC julie.armstrong@enron.com
## 5125 77545 6050 BCC cindy.stark@enron.com
## 5126 77546 6050 BCC rod.hayslett@enron.com
## 5127 77547 6050 BCC cindy.stark@enron.com
## 5128 77548 6051 TO rod.hayslett@enron.com
## 5129 77550 6053 TO agatha.tran@enron.com
## 5130 77551 6053 TO e..sommers@enron.com
## 5131 77552 6054 TO mark.mcconnell@enron.com
## 5132 77553 6054 TO rod.hayslett@enron.com
## 5133 77554 6054 TO eric.gadd@enron.com
## 5134 77555 6054 CC kimberly.watson@enron.com
## 5135 77556 6054 BCC kimberly.watson@enron.com
## 5136 77558 6056 TO james.centilli@enron.com
## 5137 77559 6057 TO rod.hayslett@enron.com
## 5138 77560 6058 TO erin.copeland@enron.com
## 5139 77561 6059 TO michael.anderson@enron.com
## 5140 77562 6060 TO a..lindholm@enron.com
## 5141 77563 6061 TO steven.harris@enron.com
## 5142 77564 6062 TO robert.kilmer@enron.com
## 5143 77565 6063 TO farley@enron.com
## 5144 77567 6064 TO john.keiser@enron.com
## 5145 77568 6065 TO danny.mccarty@enron.com
## 5146 77569 6065 TO steven.harris@enron.com
## 5147 77570 6065 TO robert.hayes@enron.com
## 5148 77571 6065 TO dave.neubauer@enron.com
## 5149 77572 6065 TO phil.lowry@enron.com
## 5150 77573 6065 TO steve.hotte@enron.com
## 5151 77574 6065 TO drew.fossum@enron.com
## 5152 77575 6065 TO eric.gadd@enron.com
## 5153 77576 6065 TO gary.smith@enron.com
## 5154 77577 6065 TO bill.cordes@enron.com
## 5155 77578 6065 TO rod.hayslett@enron.com
## 5156 77579 6065 CC cindy.stark@enron.com
## 5157 77580 6065 CC julie.armstrong@enron.com
## 5158 77581 6065 CC audrey.robertson@enron.com
## 5159 77582 6065 CC tammy.kovalcik@enron.com
## 5160 77583 6065 CC martha.benner@enron.com
## 5161 77584 6065 CC emily.sellers@enron.com
## 5162 77585 6065 CC susan.wadle@enron.com
## 5163 77586 6065 CC carolyn.perry@enron.com
## 5164 77587 6065 CC rita.houser@enron.com
## 5165 77588 6065 CC steve.gilbert@enron.com
## 5166 77589 6065 CC john.keiser@enron.com
## 5167 77590 6065 CC james.saunders@enron.com
## 5168 77591 6065 CC caroline.barnes@enron.com
## 5169 77592 6065 CC morris.brassfield@enron.com
## 5170 77593 6065 CC elaine.concklin@enron.com
## 5171 77594 6065 CC rita.houser@enron.com
## 5172 77595 6065 BCC cindy.stark@enron.com
## 5173 77596 6065 BCC julie.armstrong@enron.com
## 5174 77597 6065 BCC audrey.robertson@enron.com
## 5175 77598 6065 BCC tammy.kovalcik@enron.com
## 5176 77599 6065 BCC martha.benner@enron.com
## 5177 77600 6065 BCC emily.sellers@enron.com
## 5178 77601 6065 BCC susan.wadle@enron.com
## 5179 77602 6065 BCC carolyn.perry@enron.com
## 5180 77603 6065 BCC rita.houser@enron.com
## 5181 77604 6065 BCC steve.gilbert@enron.com
## 5182 77605 6065 BCC john.keiser@enron.com
## 5183 77606 6065 BCC james.saunders@enron.com
## 5184 77607 6065 BCC caroline.barnes@enron.com
## 5185 77608 6065 BCC morris.brassfield@enron.com
## 5186 77609 6065 BCC elaine.concklin@enron.com
## 5187 77610 6065 BCC rita.houser@enron.com
## 5188 77611 6066 TO mary.joyce@enron.com
## 5189 77612 6067 TO a..lindholm@enron.com
## 5190 77613 6068 TO security.sap@enron.com
## 5191 77614 6068 TO kim.phan@enron.com
## 5192 77615 6068 CC timothy.bayles@enron.com
## 5193 77616 6068 CC harry.walters@enron.com
## 5194 77617 6068 CC elaine.concklin@enron.com
## 5195 77618 6068 BCC timothy.bayles@enron.com
## 5196 77619 6068 BCC harry.walters@enron.com
## 5197 77620 6068 BCC elaine.concklin@enron.com
## 5198 77621 6069 TO erin.copeland@enron.com
## 5199 77622 6069 TO lori.maddox@enron.com
## 5200 77623 6069 TO cheryl.perchal@enron.com
## 5201 77624 6069 TO john.keiser@enron.com
## 5202 77625 6069 TO mary.botello@enron.com
## 5203 77626 6070 TO steve.gilbert@enron.com
## 5204 77627 6070 TO john.keiser@enron.com
## 5205 77628 6070 CC dana.jones@enron.com
## 5206 77629 6070 BCC dana.jones@enron.com
## 5207 77630 6071 TO gina.taylor@enron.com
## 5208 77631 6071 TO rod.hayslett@enron.com
## 5209 77632 6072 TO e..sommers@enron.com
## 5210 77633 6072 TO e..lindsey@enron.com
## 5211 77634 6072 TO stephen.schwarzbach@enron.com
## 5212 77635 6072 CC agatha.tran@enron.com
## 5213 77636 6072 CC a..hughes@enron.com
## 5214 77637 6072 CC rod.hayslett@enron.com
## 5215 77638 6072 BCC agatha.tran@enron.com
## 5216 77639 6072 BCC a..hughes@enron.com
## 5217 77640 6072 BCC rod.hayslett@enron.com
## 5218 77641 6073 TO steve.gilbert@enron.com
## 5219 77642 6073 TO john.keiser@enron.com
## 5220 77643 6073 CC dana.jones@enron.com
## 5221 77644 6073 BCC dana.jones@enron.com
## 5222 77645 6074 TO rod.hayslett@enron.com
## 5223 77646 6074 CC kathy.campos@enron.com
## 5224 77647 6074 BCC kathy.campos@enron.com
## 5225 77648 6075 TO jan.moore@enron.com
## 5226 77649 6076 TO hoang.vo@enron.com
## 5227 77650 6077 TO greg.lewis@enron.com
## 5228 77651 6078 TO drew.fossum@enron.com
## 5229 77652 6079 TO drew.fossum@enron.com
## 5230 77653 6080 TO stephen.schwarzbach@enron.com
## 5231 77654 6081 TO steve.kleb@enron.com
## 5232 77655 6082 TO darrington.outama@enron.com
## 5233 77656 6082 CC carolyn.winowitch@enron.com
## 5234 77657 6082 CC valerie.giles@enron.com
## 5235 77658 6082 CC jim.barnes@enron.com
## 5236 77659 6082 BCC carolyn.winowitch@enron.com
## 5237 77660 6082 BCC valerie.giles@enron.com
## 5238 77661 6082 BCC jim.barnes@enron.com
## 5239 77662 6083 TO mary.botello@enron.com
## 5240 77663 6084 TO joe.darensbourg@enron.com
## 5241 77664 6085 TO kathy.campos@enron.com
## 5242 77665 6086 TO rod.hayslett@enron.com
## 5243 77666 6087 TO steve.gilbert@enron.com
## 5244 77667 6088 TO kathy.campos@enron.com
## 5245 77668 6089 TO danny.mccarty@enron.com
## 5246 77669 6089 TO steven.harris@enron.com
## 5247 77670 6089 TO dave.neubauer@enron.com
## 5248 77671 6089 TO robert.hayes@enron.com
## 5249 77672 6089 TO bill.cordes@enron.com
## 5250 77673 6089 TO shelley.corman@enron.com
## 5251 77674 6089 TO drew.fossum@enron.com
## 5252 77675 6089 TO steve.hotte@enron.com
## 5253 77676 6089 TO phil.lowry@enron.com
## 5254 77677 6089 TO gary.smith@enron.com
## 5255 77678 6089 TO eric.gadd@enron.com
## 5256 77679 6089 CC steve.gilbert@enron.com
## 5257 77680 6089 CC john.keiser@enron.com
## 5258 77681 6089 CC jerry.peters@enron.com
## 5259 77682 6089 CC james.saunders@enron.com
## 5260 77683 6089 CC caroline.barnes@enron.com
## 5261 77684 6089 CC rod.hayslett@enron.com
## 5262 77685 6089 CC cindy.stark@enron.com
## 5263 77686 6089 CC martha.benner@enron.com
## 5264 77687 6089 CC emily.sellers@enron.com
## 5265 77688 6089 CC julie.armstrong@enron.com
## 5266 77689 6089 CC susan.wadle@enron.com
## 5267 77690 6089 CC dee.svatos@enron.com
## 5268 77691 6089 BCC steve.gilbert@enron.com
## 5269 77692 6089 BCC john.keiser@enron.com
## 5270 77693 6089 BCC jerry.peters@enron.com
## 5271 77694 6089 BCC james.saunders@enron.com
## 5272 77695 6089 BCC caroline.barnes@enron.com
## 5273 77696 6089 BCC rod.hayslett@enron.com
## 5274 77697 6089 BCC cindy.stark@enron.com
## 5275 77698 6089 BCC martha.benner@enron.com
## 5276 77699 6089 BCC emily.sellers@enron.com
## 5277 77700 6089 BCC julie.armstrong@enron.com
## 5278 77701 6089 BCC susan.wadle@enron.com
## 5279 77702 6089 BCC dee.svatos@enron.com
## 5280 77703 6090 TO jan.moore@enron.com
## 5281 77704 6091 TO jan.moore@enron.com
## 5282 77705 6092 TO michael.ratner@enron.com
## 5283 77706 6092 TO rod.hayslett@enron.com
## 5284 77707 6093 TO jennifer.lev@enron.com
## 5285 77708 6094 TO kathy.campos@enron.com
## 5286 77709 6095 TO jennifer.lev@enron.com
## 5287 77710 6096 TO jennifer.lev@enron.com
## 5288 77711 6097 TO demetrica.berry@enron.com
## 5289 77712 6098 TO jan.cobden@enron.com
## 5290 77713 6098 CC louis.soldano@enron.com
## 5291 77714 6098 BCC louis.soldano@enron.com
## 5292 77715 6099 TO kimberly.watson@enron.com
## 5293 77716 6099 TO lindy.donoho@enron.com
## 5294 77717 6100 TO danny.mccarty@enron.com
## 5295 77718 6101 TO john.keiser@enron.com
## 5296 77719 6102 TO john.keiser@enron.com
## 5297 77720 6102 TO cheryl.perchal@enron.com
## 5298 77721 6102 CC mary.botello@enron.com
## 5299 77722 6102 BCC mary.botello@enron.com
## 5300 77723 6103 TO mary.botello@enron.com
## 5301 77724 6104 TO rod.hayslett@enron.com
## 5302 77725 6105 TO rod.hayslett@enron.com
## 5303 77726 6106 TO kay.miller@enron.com
## 5304 77727 6106 TO steve.gilbert@enron.com
## 5305 77728 6107 TO jan.moore@enron.com
## 5306 77729 6107 TO lindy.donoho@enron.com
## 5307 77730 6108 TO steven.harris@enron.com
## 5308 77731 6109 TO cindy.stark@enron.com
## 5309 77732 6110 TO greg.lewis@enron.com
## 5310 77733 6110 CC michael.sullivan@enron.com
## 5311 77734 6110 CC mary.botello@enron.com
## 5312 77735 6110 CC caroline.barnes@enron.com
## 5313 77736 6110 BCC michael.sullivan@enron.com
## 5314 77737 6110 BCC mary.botello@enron.com
## 5315 77738 6110 BCC caroline.barnes@enron.com
## 5316 77739 6111 TO rod.hayslett@enron.com
## 5317 77740 6112 TO cindy.stark@enron.com
## 5318 77741 6113 TO rod.hayslett@enron.com
## 5319 77742 6114 TO e..sommers@enron.com
## 5320 77743 6114 CC rod.hayslett@enron.com
## 5321 77744 6114 BCC rod.hayslett@enron.com
## 5322 77745 6115 TO j..detmering@enron.com
## 5323 77746 6115 CC keith.dodson@enron.com
## 5324 77747 6115 CC erin.copeland@enron.com
## 5325 77748 6115 CC norma.petry@enron.com
## 5326 77749 6115 BCC keith.dodson@enron.com
## 5327 77750 6115 BCC erin.copeland@enron.com
## 5328 77751 6115 BCC norma.petry@enron.com
## 5329 77752 6116 TO rod.hayslett@enron.com
## 5330 77753 6116 TO james.saunders@enron.com
## 5331 77754 6117 TO rod.hayslett@enron.com
## 5332 77755 6118 TO dee.svatos@enron.com
## 5333 77756 6119 TO dee.svatos@enron.com
## 5334 77757 6119 TO kathy.campos@enron.com
## 5335 77758 6119 CC rod.hayslett@enron.com
## 5336 77759 6119 BCC rod.hayslett@enron.com
## 5337 77760 6120 TO cynthia.safford@enron.com
## 5338 77761 6121 TO rod.hayslett@enron.com
## 5339 77762 6122 TO steve.kleb@enron.com
## 5340 77763 6123 TO dee.svatos@enron.com
## 5341 77764 6123 TO rod.hayslett@enron.com
## 5342 77765 6123 CC kathy.campos@enron.com
## 5343 77766 6123 BCC kathy.campos@enron.com
## 5344 77767 6124 TO steve.gilbert@enron.com
## 5345 77768 6125 TO jan.moore@enron.com
## 5346 77769 6126 TO rod.hayslett@enron.com
## 5347 77770 6127 TO agatha.tran@enron.com
## 5348 77771 6128 TO caroline.barnes@enron.com
## 5349 77772 6129 TO steve.gilbert@enron.com
## 5350 77773 6130 TO nancy.carpenter@enron.com
## 5351 77774 6130 CC caroline.barnes@enron.com
## 5352 77775 6130 CC elaine.concklin@enron.com
## 5353 77776 6130 CC mary.botello@enron.com
## 5354 77777 6130 BCC caroline.barnes@enron.com
## 5355 77778 6130 BCC elaine.concklin@enron.com
## 5356 77779 6130 BCC mary.botello@enron.com
## 5357 77780 6131 TO agatha.tran@enron.com
## 5358 77781 6131 CC e..sommers@enron.com
## 5359 77782 6131 BCC e..sommers@enron.com
## 5360 77783 6132 TO norma.petry@enron.com
## 5361 77784 6132 TO rachael.venable@enron.com
## 5362 77785 6133 TO rod.hayslett@enron.com
## 5363 77786 6134 TO kathy.mayfield@enron.com
## 5364 77787 6135 TO kathy.campos@enron.com
## 5365 77788 6136 TO jan.moore@enron.com
## 5366 77789 6137 TO rod.hayslett@enron.com
## 5367 77790 6138 TO mary.botello@enron.com
## 5368 77791 6139 TO mary.botello@enron.com
## 5369 77792 6140 TO mary.botello@enron.com
## 5370 77793 6141 TO john.keiser@enron.com
## 5371 77794 6142 TO elaine.concklin@enron.com
## 5372 77795 6142 TO caroline.barnes@enron.com
## 5373 77796 6142 TO mary.botello@enron.com
## 5374 77797 6143 TO valerie.giles@enron.com
## 5375 77798 6143 TO a..lindholm@enron.com
## 5376 77799 6143 TO agatha.tran@enron.com
## 5377 77800 6143 TO erin.copeland@enron.com
## 5378 77801 6143 TO james.weitekamp@enron.com
## 5379 77802 6144 TO erin.copeland@enron.com
## 5380 77803 6144 TO rachael.venable@enron.com
## 5381 77804 6144 TO barbara.cook@enron.com
## 5382 77805 6144 TO norma.petry@enron.com
## 5383 77806 6144 TO blake.walker@enron.com
## 5384 77807 6144 CC cindy.stark@enron.com
## 5385 77808 6144 BCC cindy.stark@enron.com
## 5386 77809 6145 TO jebong.lee@enron.com
## 5387 77810 6146 TO kay.miller@enron.com
## 5388 77811 6147 TO e..ramirez@enron.com
## 5389 77812 6147 TO michael.anderson@enron.com
## 5390 77813 6147 TO rod.hayslett@enron.com
## 5391 77814 6147 CC cindy.stark@enron.com
## 5392 77815 6147 CC kathy.campos@enron.com
## 5393 77816 6147 BCC cindy.stark@enron.com
## 5394 77817 6147 BCC kathy.campos@enron.com
## 5395 77818 6148 TO robert.kilmer@enron.com
## 5396 77819 6149 TO cindy.stark@enron.com
## 5397 77820 6150 TO john.keiser@enron.com
## 5398 77821 6150 TO stephanie.korbelik@enron.com
## 5399 77822 6150 TO steve.gilbert@enron.com
## 5400 77823 6150 TO jan.moore@enron.com
## 5401 77824 6150 CC henry.baker@enron.com
## 5402 77825 6150 BCC henry.baker@enron.com
## 5403 77826 6151 TO lindy.donoho@enron.com
## 5404 77827 6152 TO stephen.schwarzbach@enron.com
## 5405 77828 6153 TO michael.anderson@enron.com
## 5406 77829 6153 TO e..ramirez@enron.com
## 5407 77830 6154 TO pam.butler@enron.com
## 5408 77831 6155 TO steven.harris@enron.com
## 5409 77832 6156 TO rod.hayslett@enron.com
## 5410 77833 6157 TO rod.hayslett@enron.com
## 5411 77835 6159 TO a..lindholm@enron.com
## 5412 77836 6160 TO jennifer.lev@enron.com
## 5413 77837 6160 CC bob.chandler@enron.com
## 5414 77838 6160 BCC bob.chandler@enron.com
## 5415 77839 6161 TO michael.anderson@enron.com
## 5416 77840 6161 CC rod.hayslett@enron.com
## 5417 77841 6161 BCC rod.hayslett@enron.com
## 5418 77842 6162 TO mary.botello@enron.com
## 5419 77843 6163 TO james.weitekamp@enron.com
## 5420 77844 6164 TO rod.hayslett@enron.com
## 5421 77845 6165 TO rod.hayslett@enron.com
## 5422 77846 6166 TO mary.botello@enron.com
## 5423 77847 6167 TO lori.maddox@enron.com
## 5424 77848 6168 TO lori.maddox@enron.com
## 5425 77849 6169 TO no.address@enron.com
## 5426 77850 6170 TO james.saunders@enron.com
## 5427 77851 6171 TO cindy.stark@enron.com
## 5428 77852 6172 TO steven.harris@enron.com
## 5429 77853 6173 TO michael.anderson@enron.com
## 5430 77854 6174 TO michael.anderson@enron.com
## 5431 77855 6174 TO l.garrison@enron.com
## 5432 77856 6174 TO rod.hayslett@enron.com
## 5433 77857 6174 CC kathy.campos@enron.com
## 5434 77858 6174 CC cindy.stark@enron.com
## 5435 77859 6174 BCC kathy.campos@enron.com
## 5436 77860 6174 BCC cindy.stark@enron.com
## 5437 77861 6175 TO kathy.campos@enron.com
## 5438 77862 6176 TO james.weitekamp@enron.com
## 5439 77863 6177 TO john.cobb@enron.com
## 5440 77864 6177 CC dan.fancler@enron.com
## 5441 77865 6177 CC lindy.donoho@enron.com
## 5442 77866 6177 CC jan.moore@enron.com
## 5443 77867 6177 BCC dan.fancler@enron.com
## 5444 77868 6177 BCC lindy.donoho@enron.com
## 5445 77869 6177 BCC jan.moore@enron.com
## 5446 77870 6178 TO e..lindsey@enron.com
## 5447 77871 6178 CC rod.hayslett@enron.com
## 5448 77872 6178 CC stephen.schwarzbach@enron.com
## 5449 77873 6178 BCC rod.hayslett@enron.com
## 5450 77874 6178 BCC stephen.schwarzbach@enron.com
## 5451 77875 6179 TO steven.harris@enron.com
## 5452 77876 6180 TO steven.harris@enron.com
## 5453 77877 6181 TO steven.harris@enron.com
## 5454 77878 6182 TO steven.harris@enron.com
## 5455 77879 6183 TO steven.harris@enron.com
## 5456 77880 6184 TO steven.harris@enron.com
## 5457 77925 6202 TO bill.rapp@enron.com
## 5458 77926 6203 TO janet.butler@enron.com
## 5459 77927 6204 TO steven.harris@enron.com
## 5460 77928 6204 TO robert.kilmer@enron.com
## 5461 77929 6204 TO bill.rapp@enron.com
## 5462 77930 6204 TO lindy.donoho@enron.com
## 5463 77931 6204 TO glen.hass@enron.com
## 5464 77932 6204 TO kimberly.watson@enron.com
## 5465 77933 6204 TO darrell.schoolcraft@enron.com
## 5466 77934 6204 TO jeanette.doll@enron.com
## 5467 77935 6204 TO blair.lichtenwalter@enron.com
## 5468 77936 6205 TO robert.hayes@enron.com
## 5469 77937 6206 TO janet.butler@enron.com
## 5470 77938 6207 TO janet.butler@enron.com
## 5471 77939 6208 TO communications@enron.com
## 5472 77940 6209 TO shelley.corman@enron.com
## 5473 77941 6210 TO gerry.medeles@enron.com
## 5474 77942 6210 TO james.studebaker@enron.com
## 5475 77943 6210 TO theresa.hess@enron.com
## 5476 77944 6211 TO a..howard@enron.com
## 5477 77945 6212 TO kelly.allen@enron.com
## 5478 77946 6213 TO gerry.medeles@enron.com
## 5479 77947 6214 TO jeanette.doll@enron.com
## 5480 77948 6215 TO craig.buehler@enron.com
## 5481 77949 6216 TO jeanette.doll@enron.com
## 5482 77950 6216 CC bill.rapp@enron.com
## 5483 77951 6216 CC robert.kilmer@enron.com
## 5484 77952 6216 BCC bill.rapp@enron.com
## 5485 77953 6216 BCC robert.kilmer@enron.com
## 5486 77955 6218 TO jeanette.doll@enron.com
## 5487 77956 6218 TO robert.kilmer@enron.com
## 5488 77957 6219 TO david.sztroin@enron.com
## 5489 77958 6220 TO blair.lichtenwalter@enron.com
## 5490 77959 6221 TO e..rosenberg@enron.com
## 5491 77960 6222 TO no.address@enron.com
## 5492 77961 6223 TO e..rosenberg@enron.com
## 5493 77962 6224 TO theresa.porter@enron.com
## 5494 77963 6224 CC rachel.cady@enron.com
## 5495 77964 6224 CC shelley.corman@enron.com
## 5496 77965 6224 CC robert.kilmer@enron.com
## 5497 77966 6224 CC dan.fancler@enron.com
## 5498 77967 6224 BCC rachel.cady@enron.com
## 5499 77968 6224 BCC shelley.corman@enron.com
## 5500 77969 6224 BCC robert.kilmer@enron.com
## 5501 77970 6224 BCC dan.fancler@enron.com
## 5502 77971 6225 TO a..howard@enron.com
## 5503 77972 6226 TO a..howard@enron.com
## 5504 77973 6227 TO zelda.paschal@enron.com
## 5505 77974 6228 TO geneva.patterson@enron.com
## 5506 77975 6228 TO frazier.king@enron.com
## 5507 77976 6228 CC stephen.veatch@enron.com
## 5508 77977 6228 BCC stephen.veatch@enron.com
## 5509 77978 6229 TO rachel.cady@enron.com
## 5510 77979 6229 TO frazier.king@enron.com
## 5511 77980 6230 TO blair.lichtenwalter@enron.com
## 5512 77981 6231 TO taylor@enron.com
## 5513 77983 6232 TO jan.moore@enron.com
## 5514 77984 6232 TO john.cobb@enron.com
## 5515 77985 6232 TO dan.fancler@enron.com
## 5516 77986 6232 TO tracy.geaccone@enron.com
## 5517 77987 6232 TO paul.y barbo@enron.com
## 5518 77988 6232 TO lindy.donoho@enron.com
## 5519 77989 6232 TO tk.lohman@enron.com
## 5520 77990 6232 TO richard.hanagriff@enron.com
## 5521 77991 6232 TO robert.kilmer@enron.com
## 5522 77992 6233 TO jeanette.doll@enron.com
## 5523 77993 6233 TO tk.lohman@enron.com
## 5524 77994 6233 TO elizabeth.brown@enron.com
## 5525 77995 6233 TO bill.rapp@enron.com
## 5526 77996 6233 TO glen.hass@enron.com
## 5527 77997 6233 CC robert.kilmer@enron.com
## 5528 77998 6233 BCC robert.kilmer@enron.com
## 5529 77999 6234 TO jan.moore@enron.com
## 5530 78000 6234 TO john.cobb@enron.com
## 5531 78001 6234 TO dan.fancler@enron.com
## 5532 78002 6234 TO tracy.geaccone@enron.com
## 5533 78003 6234 TO paul.y barbo@enron.com
## 5534 78004 6234 TO lindy.donoho@enron.com
## 5535 78005 6234 TO tk.lohman@enron.com
## 5536 78006 6234 TO richard.hanagriff@enron.com
## 5537 78007 6235 TO audrey.robertson@enron.com
## 5538 78008 6236 TO robert.hayes@enron.com
## 5539 78009 6237 TO robert.hayes@enron.com
## 5540 78010 6238 TO john.keiser@enron.com
## 5541 78011 6238 TO maggie.schroeder@enron.com
## 5542 78012 6238 TO a..howard@enron.com
## 5543 78013 6238 TO robert.hayes@enron.com
## 5544 78014 6238 CC blair.lichtenwalter@enron.com
## 5545 78015 6238 BCC blair.lichtenwalter@enron.com
## 5546 78016 6239 TO frazier.king@enron.com
## 5547 78017 6239 TO blair.lichtenwalter@enron.com
## 5548 78018 6240 TO tracy.geaccone@enron.com
## 5549 78019 6240 TO kimberly.watson@enron.com
## 5550 78020 6240 CC james.saunders@enron.com
## 5551 78021 6240 CC debra.thompson@enron.com
## 5552 78022 6240 CC robert.kilmer@enron.com
## 5553 78023 6240 CC zelda.paschal@enron.com
## 5554 78024 6240 BCC james.saunders@enron.com
## 5555 78025 6240 BCC debra.thompson@enron.com
## 5556 78026 6240 BCC robert.kilmer@enron.com
## 5557 78027 6240 BCC zelda.paschal@enron.com
## 5558 78028 6241 TO debra.thompson@enron.com
## 5559 78029 6242 TO maria.pavlou@enron.com
## 5560 78030 6243 TO frazier.king@enron.com
## 5561 78031 6243 TO jimmy.dowden@enron.com
## 5562 78032 6243 TO thomas.nestor@enron.com
## 5563 78033 6243 TO james.studebaker@enron.com
## 5564 78035 6245 TO michelle.lokay@enron.com
## 5565 78036 6245 TO bill.rapp@enron.com
## 5566 78037 6245 TO robert.kilmer@enron.com
## 5567 78038 6246 TO jeanette.doll@enron.com
## 5568 78039 6246 CC dennis.lee@enron.com
## 5569 78040 6246 CC blair.lichtenwalter@enron.com
## 5570 78041 6246 CC debra.thompson@enron.com
## 5571 78042 6246 CC bill.rapp@enron.com
## 5572 78043 6246 BCC dennis.lee@enron.com
## 5573 78044 6246 BCC blair.lichtenwalter@enron.com
## 5574 78045 6246 BCC debra.thompson@enron.com
## 5575 78046 6246 BCC bill.rapp@enron.com
## 5576 78047 6247 TO bill.rapp@enron.com
## 5577 78048 6247 TO steven.harris@enron.com
## 5578 78049 6247 TO kimberly.watson@enron.com
## 5579 78050 6247 TO lorraine.lindberg@enron.com
## 5580 78051 6247 TO michelle.lokay@enron.com
## 5581 78052 6247 TO robert.kilmer@enron.com
## 5582 78053 6247 TO glen.hass@enron.com
## 5583 78054 6247 CC gregory.porter@enron.com
## 5584 78055 6247 BCC gregory.porter@enron.com
## 5585 78056 6248 TO kimberly.watson@enron.com
## 5586 78057 6249 TO shelley.corman@enron.com
## 5587 78058 6250 TO lorraine.lindberg@enron.com
## 5588 78059 6251 TO shelley.corman@enron.com
## 5589 78060 6252 TO maria.pavlou@enron.com
## 5590 78061 6252 TO jeanette.doll@enron.com
## 5591 78062 6252 TO robert.kilmer@enron.com
## 5592 78063 6252 TO bill.rapp@enron.com
## 5593 78064 6252 TO steven.harris@enron.com
## 5594 78065 6252 CC gregory.porter@enron.com
## 5595 78066 6252 CC kay.miller@enron.com
## 5596 78067 6252 BCC gregory.porter@enron.com
## 5597 78068 6252 BCC kay.miller@enron.com
## 5598 78071 6255 TO maggie.schroeder@enron.com
## 5599 78072 6255 TO maria.cisneros@enron.com
## 5600 78073 6256 TO zelda.paschal@enron.com
## 5601 78074 6257 TO robert.kilmer@enron.com
## 5602 78075 6258 TO nancy.bastida@enron.com
## 5603 78076 6258 TO frazier.king@enron.com
## 5604 78077 6258 CC linda.trevino@enron.com
## 5605 78078 6258 CC dale.eldridge@enron.com
## 5606 78079 6258 CC elizabeth.brown@enron.com
## 5607 78080 6258 BCC linda.trevino@enron.com
## 5608 78081 6258 BCC dale.eldridge@enron.com
## 5609 78082 6258 BCC elizabeth.brown@enron.com
## 5610 78083 6259 TO zelda.paschal@enron.com
## 5611 78084 6260 TO laura.giambrone@enron.com
## 5612 78085 6261 TO galen.coon@enron.com
## 5613 78086 6261 TO rachel.cady@enron.com
## 5614 78087 6261 TO sheila.nacey@enron.com
## 5615 78088 6261 TO james.studebaker@enron.com
## 5616 78089 6262 TO zelda.paschal@enron.com
## 5617 78090 6263 TO kimberly.watson@enron.com
## 5618 78091 6263 TO mansoor.abdmoulaie@enron.com
## 5619 78092 6263 TO ron.matthews@enron.com
## 5620 78093 6263 TO paul.cherry@enron.com
## 5621 78094 6263 TO bill.rapp@enron.com
## 5622 78095 6263 TO earl.chanley@enron.com
## 5623 78096 6263 TO tracy.geaccone@enron.com
## 5624 78099 6265 TO jeanette.doll@enron.com
## 5625 78100 6266 TO andy.brady@enron.com
## 5626 78101 6266 TO toby.kuehl@enron.com
## 5627 78102 6266 CC alma.green@enron.com
## 5628 78103 6266 CC maggie.matheson@enron.com
## 5629 78104 6266 CC zuela.carter@enron.com
## 5630 78105 6266 CC karen.clapper@enron.com
## 5631 78106 6266 CC nancy.bastida@enron.com
## 5632 78107 6266 CC dale.eldridge@enron.com
## 5633 78108 6266 CC lynda.laferla@enron.com
## 5634 78109 6266 CC marion.collins@enron.com
## 5635 78110 6266 CC jack.howard@enron.com
## 5636 78111 6266 CC richard.hanagriff@enron.com
## 5637 78112 6266 CC mary.draemer@enron.com
## 5638 78113 6266 CC linda.trevino@enron.com
## 5639 78114 6266 CC james.studebaker@enron.com
## 5640 78115 6266 CC cynthia.rivers@enron.com
## 5641 78116 6266 CC amy.mulligan@enron.com
## 5642 78117 6266 CC terry.kowalke@enron.com
## 5643 78118 6266 CC darrell.schoolcraft@enron.com
## 5644 78119 6266 CC tammy.kovalcik@enron.com
## 5645 78120 6266 CC craig.buehler@enron.com
## 5646 78121 6266 CC ramona.betancourt@enron.com
## 5647 78122 6266 CC marian.salinas@enron.com
## 5648 78123 6266 CC elizabeth.brown@enron.com
## 5649 78124 6266 CC blair.lichtenwalter@enron.com
## 5650 78125 6266 CC debra.thompson@enron.com
## 5651 78126 6266 CC jeanette.doll@enron.com
## 5652 78127 6266 CC zelda.paschal@enron.com
## 5653 78128 6266 CC stephen.veatch@enron.com
## 5654 78129 6266 CC christi.culwell@enron.com
## 5655 78130 6266 CC kelly.allen@enron.com
## 5656 78131 6266 CC james.studebaker@enron.com
## 5657 78132 6266 CC nancy.carpenter@enron.com
## 5658 78133 6266 CC laura.giambrone@enron.com
## 5659 78134 6266 CC donna.scott@enron.com
## 5660 78135 6266 CC rick.dietz@enron.com
## 5661 78136 6266 CC caroline.barnes@enron.com
## 5662 78137 6266 BCC alma.green@enron.com
## 5663 78138 6266 BCC maggie.matheson@enron.com
## 5664 78139 6266 BCC zuela.carter@enron.com
## 5665 78140 6266 BCC karen.clapper@enron.com
## 5666 78141 6266 BCC nancy.bastida@enron.com
## 5667 78142 6266 BCC dale.eldridge@enron.com
## 5668 78143 6266 BCC lynda.laferla@enron.com
## 5669 78144 6266 BCC marion.collins@enron.com
## 5670 78145 6266 BCC jack.howard@enron.com
## 5671 78146 6266 BCC richard.hanagriff@enron.com
## 5672 78147 6266 BCC mary.draemer@enron.com
## 5673 78148 6266 BCC linda.trevino@enron.com
## 5674 78149 6266 BCC james.studebaker@enron.com
## 5675 78150 6266 BCC cynthia.rivers@enron.com
## 5676 78151 6266 BCC amy.mulligan@enron.com
## 5677 78152 6266 BCC terry.kowalke@enron.com
## 5678 78153 6266 BCC darrell.schoolcraft@enron.com
## 5679 78154 6266 BCC tammy.kovalcik@enron.com
## 5680 78155 6266 BCC craig.buehler@enron.com
## 5681 78156 6266 BCC ramona.betancourt@enron.com
## 5682 78157 6266 BCC marian.salinas@enron.com
## 5683 78158 6266 BCC elizabeth.brown@enron.com
## 5684 78159 6266 BCC blair.lichtenwalter@enron.com
## 5685 78160 6266 BCC debra.thompson@enron.com
## 5686 78161 6266 BCC jeanette.doll@enron.com
## 5687 78162 6266 BCC zelda.paschal@enron.com
## 5688 78163 6266 BCC stephen.veatch@enron.com
## 5689 78164 6266 BCC christi.culwell@enron.com
## 5690 78165 6266 BCC kelly.allen@enron.com
## 5691 78166 6266 BCC james.studebaker@enron.com
## 5692 78167 6266 BCC nancy.carpenter@enron.com
## 5693 78168 6266 BCC laura.giambrone@enron.com
## 5694 78169 6266 BCC donna.scott@enron.com
## 5695 78170 6266 BCC rick.dietz@enron.com
## 5696 78171 6266 BCC caroline.barnes@enron.com
## 5697 78172 6267 TO liz.legros@enron.com
## 5698 78173 6267 CC robert.kilmer@enron.com
## 5699 78174 6267 CC debra.thompson@enron.com
## 5700 78175 6267 CC zelda.paschal@enron.com
## 5701 78176 6267 CC cynthia.duhon@enron.com
## 5702 78177 6267 BCC robert.kilmer@enron.com
## 5703 78178 6267 BCC debra.thompson@enron.com
## 5704 78179 6267 BCC zelda.paschal@enron.com
## 5705 78180 6267 BCC cynthia.duhon@enron.com
## 5706 78181 6268 TO liz.legros@enron.com
## 5707 78182 6268 CC robert.kilmer@enron.com
## 5708 78183 6268 CC debra.thompson@enron.com
## 5709 78184 6268 CC zelda.paschal@enron.com
## 5710 78185 6268 BCC robert.kilmer@enron.com
## 5711 78186 6268 BCC debra.thompson@enron.com
## 5712 78187 6268 BCC zelda.paschal@enron.com
## 5713 78188 6269 TO debra.thompson@enron.com
## 5714 78189 6269 TO zelda.paschal@enron.com
## 5715 78190 6270 TO craig.buehler@enron.com
## 5716 78191 6270 CC alma.green@enron.com
## 5717 78192 6270 CC james.studebaker@enron.com
## 5718 78193 6270 CC nancy.carpenter@enron.com
## 5719 78194 6270 CC laura.giambrone@enron.com
## 5720 78195 6270 CC stephen.veatch@enron.com
## 5721 78196 6270 CC robert.kilmer@enron.com
## 5722 78197 6270 CC blair.lichtenwalter@enron.com
## 5723 78198 6270 CC debra.thompson@enron.com
## 5724 78199 6270 CC jeanette.doll@enron.com
## 5725 78200 6270 CC zelda.paschal@enron.com
## 5726 78201 6270 CC christi.culwell@enron.com
## 5727 78202 6270 CC kelly.allen@enron.com
## 5728 78203 6270 CC rick.dietz@enron.com
## 5729 78204 6270 BCC alma.green@enron.com
## 5730 78205 6270 BCC james.studebaker@enron.com
## 5731 78206 6270 BCC nancy.carpenter@enron.com
## 5732 78207 6270 BCC laura.giambrone@enron.com
## 5733 78208 6270 BCC stephen.veatch@enron.com
## 5734 78209 6270 BCC robert.kilmer@enron.com
## 5735 78210 6270 BCC blair.lichtenwalter@enron.com
## 5736 78211 6270 BCC debra.thompson@enron.com
## 5737 78212 6270 BCC jeanette.doll@enron.com
## 5738 78213 6270 BCC zelda.paschal@enron.com
## 5739 78214 6270 BCC christi.culwell@enron.com
## 5740 78215 6270 BCC kelly.allen@enron.com
## 5741 78216 6270 BCC rick.dietz@enron.com
## 5742 78217 6271 TO debra.thompson@enron.com
## 5743 78218 6271 TO christi.culwell@enron.com
## 5744 78219 6271 TO stephen.veatch@enron.com
## 5745 78220 6271 TO robert.kilmer@enron.com
## 5746 78221 6271 TO kelly.allen@enron.com
## 5747 78222 6271 TO zelda.paschal@enron.com
## 5748 78223 6271 TO blair.lichtenwalter@enron.com
## 5749 78224 6271 TO jeanette.doll@enron.com
## 5750 78226 6273 TO jack.boatman@enron.com
## 5751 78227 6273 TO dorothy.mccoppin@enron.com
## 5752 78228 6273 TO frazier.king@enron.com
## 5753 78229 6273 TO staci.holtzman@enron.com
## 5754 78230 6273 TO robert.kilmer@enron.com
## 5755 78231 6273 TO robert.hayes@enron.com
## 5756 78232 6274 TO robert.kilmer@enron.com
## 5757 78233 6274 CC jeanette.doll@enron.com
## 5758 78234 6274 BCC jeanette.doll@enron.com
## 5759 78235 6275 TO john.long@enron.com
## 5760 78236 6275 TO james.cramer@enron.com
## 5761 78237 6275 TO sheila.nacey@enron.com
## 5762 78238 6275 TO frazier.king@enron.com
## 5763 78239 6275 CC rick.dietz@enron.com
## 5764 78240 6275 CC nancy.bastida@enron.com
## 5765 78241 6275 CC buzz.smith@enron.com
## 5766 78242 6275 BCC rick.dietz@enron.com
## 5767 78243 6275 BCC nancy.bastida@enron.com
## 5768 78244 6275 BCC buzz.smith@enron.com
## 5769 78245 6276 TO nancy.bastida@enron.com
## 5770 78246 6276 TO frazier.king@enron.com
## 5771 78249 6279 TO dari.dornan@enron.com
## 5772 78250 6280 TO debra.thompson@enron.com
## 5773 78251 6280 TO christi.culwell@enron.com
## 5774 78252 6280 TO michele.winckowski@enron.com
## 5775 78253 6280 TO dari.dornan@enron.com
## 5776 78254 6280 TO alice.johnson@enron.com
## 5777 78255 6280 TO diana.porter@enron.com
## 5778 78256 6280 TO maggie.schroeder@enron.com
## 5779 78257 6280 TO cynthia.rivers@enron.com
## 5780 78258 6280 TO blair.lichtenwalter@enron.com
## 5781 78259 6280 TO robert.kilmer@enron.com
## 5782 78260 6280 TO jeanette.doll@enron.com
## 5783 78262 6282 TO shelley.corman@enron.com
## 5784 78263 6282 TO rachel.cady@enron.com
## 5785 78264 6283 TO david.sztroin@enron.com
## 5786 78266 6285 TO taylor@enron.com
## 5787 78268 6286 TO audrey.robertson@enron.com
## 5788 78269 6287 TO barbara.cain@enron.com
## 5789 78270 6288 TO craig.buehler@enron.com
## 5790 78271 6289 TO robert.geheb@enron.com
## 5791 78272 6289 CC kimberly.watson@enron.com
## 5792 78273 6289 CC steven.harris@enron.com
## 5793 78274 6289 CC stephen.veatch@enron.com
## 5794 78275 6289 CC robert.kilmer@enron.com
## 5795 78276 6289 BCC kimberly.watson@enron.com
## 5796 78277 6289 BCC steven.harris@enron.com
## 5797 78278 6289 BCC stephen.veatch@enron.com
## 5798 78279 6289 BCC robert.kilmer@enron.com
## 5799 78280 6290 TO lisa.sutton@enron.com
## 5800 78281 6291 TO zelda.paschal@enron.com
## 5801 78282 6292 TO audrey.robertson@enron.com
## 5802 78283 6292 TO steven.harris@enron.com
## 5803 78284 6292 TO glen.hass@enron.com
## 5804 78285 6292 TO lee.huber@enron.com
## 5805 78286 6292 TO mark.mcconnell@enron.com
## 5806 78287 6292 TO perry.frazier@enron.com
## 5807 78288 6292 TO morgan.gottsponer@enron.com
## 5808 78289 6292 CC kimberly.watson@enron.com
## 5809 78290 6292 BCC kimberly.watson@enron.com
## 5810 78291 6293 TO rachel.cady@enron.com
## 5811 78292 6293 TO galen.coon@enron.com
## 5812 78293 6294 TO calvin.eakins@enron.com
## 5813 78294 6295 TO matt.hughes@enron.com
## 5814 78295 6295 TO dennis.alters@enron.com
## 5815 78296 6295 TO gary.choquette@enron.com
## 5816 78297 6295 CC robert.kilmer@enron.com
## 5817 78298 6295 CC stephen.veatch@enron.com
## 5818 78299 6295 BCC robert.kilmer@enron.com
## 5819 78300 6295 BCC stephen.veatch@enron.com
## 5820 78301 6296 TO steve.kirk@enron.com
## 5821 78302 6296 TO kay.miller@enron.com
## 5822 78303 6296 TO robert.kilmer@enron.com
## 5823 78304 6297 TO jeanette.doll@enron.com
## 5824 78305 6298 TO jeanette.doll@enron.com
## 5825 78306 6299 TO robert.kilmer@enron.com
## 5826 78307 6300 TO kay.miller@enron.com
## 5827 78308 6300 TO steve.kirk@enron.com
## 5828 78309 6300 TO robert.kilmer@enron.com
## 5829 78310 6300 TO j..porter@enron.com
## 5830 78311 6300 TO mary.darveaux@enron.com
## 5831 78312 6300 TO glen.hass@enron.com
## 5832 78313 6301 TO j..porter@enron.com
## 5833 78314 6301 CC steven.harris@enron.com
## 5834 78315 6301 BCC steven.harris@enron.com
## 5835 78316 6302 TO blair.lichtenwalter@enron.com
## 5836 78317 6303 TO shelley.corman@enron.com
## 5837 78318 6304 TO jeanette.doll@enron.com
## 5838 78319 6305 TO jeanette.doll@enron.com
## 5839 78320 6306 TO blair.lichtenwalter@enron.com
## 5840 78321 6307 TO drew.fossum@enron.com
## 5841 78322 6308 TO christi.culwell@enron.com
## 5842 78323 6308 TO debra.thompson@enron.com
## 5843 78324 6308 TO blair.lichtenwalter@enron.com
## 5844 78325 6308 TO zelda.paschal@enron.com
## 5845 78326 6308 TO robert.kilmer@enron.com
## 5846 78327 6308 TO stephen.veatch@enron.com
## 5847 78328 6308 TO jeanette.doll@enron.com
## 5848 78329 6308 TO kelly.allen@enron.com
## 5849 78330 6308 TO michele.winckowski@enron.com
## 5850 78331 6309 TO blair.lichtenwalter@enron.com
## 5851 78332 6310 TO blair.lichtenwalter@enron.com
## 5852 78333 6311 TO debra.thompson@enron.com
## 5853 78334 6312 TO blair.lichtenwalter@enron.com
## 5854 78335 6313 TO susan.wadle@enron.com
## 5855 78336 6313 TO johnny.mcgee@enron.com
## 5856 78337 6313 TO doug.cebryk@enron.com
## 5857 78338 6313 TO eric.gadd@enron.com
## 5858 78339 6313 TO ron.matthews@enron.com
## 5859 78340 6313 TO dennis.alters@enron.com
## 5860 78341 6313 TO kimberly.watson@enron.com
## 5861 78342 6313 TO larry.f.campbell@enron.com
## 5862 78343 6313 TO gina.taylor@enron.com
## 5863 78344 6313 TO stephen.veatch@enron.com
## 5864 78345 6314 TO blair.lichtenwalter@enron.com
## 5865 78346 6315 TO robert.kilmer@enron.com
## 5866 78347 6316 TO denise.lagesse@enron.com
## 5867 78348 6317 TO blair.lichtenwalter@enron.com
## 5868 78349 6317 TO jeanette.doll@enron.com
## 5869 78350 6317 TO debra.thompson@enron.com
## 5870 78351 6317 TO zelda.paschal@enron.com
## 5871 78352 6317 TO christi.culwell@enron.com
## 5872 78353 6317 TO kelly.allen@enron.com
## 5873 78354 6318 TO michele.winckowski@enron.com
## 5874 78355 6319 TO glen.hass@enron.com
## 5875 78392 6341 TO teb.lokey@enron.com
## 5876 78405 6342 TO teb.lokey@enron.com
## 5877 78418 6345 TO teb.lokey@enron.com
## 5878 78425 6346 TO teb.lokey@enron.com
## 5879 78429 6347 TO teb.lokey@enron.com
## 5880 78432 6348 TO teb.lokey@enron.com
## 5881 78439 6350 TO teb.lokey@enron.com
## 5882 78444 6351 TO teb.lokey@enron.com
## 5883 78447 6352 TO teb.lokey@enron.com
## 5884 78448 6353 TO teb.lokey@enron.com
## 5885 78454 6355 TO teb.lokey@enron.com
## 5886 78457 6356 TO teb.lokey@enron.com
## 5887 78469 6357 TO steven.harris@enron.com
## 5888 78476 6357 TO teb.lokey@enron.com
## 5889 78510 6358 TO steven.harris@enron.com
## 5890 78517 6358 TO teb.lokey@enron.com
## 5891 78548 6359 TO teb.lokey@enron.com
## 5892 78598 6361 TO rod.hayslett@enron.com
## 5893 78620 6361 TO teb.lokey@enron.com
## 5894 78679 6362 TO larry.f.campbell@enron.com
## 5895 78687 6362 TO steven.harris@enron.com
## 5896 78700 6362 TO teb.lokey@enron.com
## 5897 78716 6363 TO teb.lokey@enron.com
## 5898 78723 6364 CC teb.lokey@enron.com
## 5899 78729 6364 BCC teb.lokey@enron.com
## 5900 78737 6368 CC lynn.blair@enron.com
## 5901 78740 6368 CC teb.lokey@enron.com
## 5902 78741 6368 CC lindy.donoho@enron.com
## 5903 78742 6368 BCC lynn.blair@enron.com
## 5904 78745 6368 BCC teb.lokey@enron.com
## 5905 78746 6368 BCC lindy.donoho@enron.com
## 5906 78797 6378 TO teb.lokey@enron.com
## 5907 78810 6380 TO lynn.blair@enron.com
## 5908 78813 6380 TO shelley.corman@enron.com
## 5909 78814 6380 TO lindy.donoho@enron.com
## 5910 78816 6380 TO tracy.geaccone@enron.com
## 5911 78818 6380 TO steven.harris@enron.com
## 5912 78824 6380 TO michelle.lokay@enron.com
## 5913 78825 6380 TO teb.lokey@enron.com
## 5914 78835 6380 TO paul.y barbo@enron.com
## 5915 78840 6384 TO teb.lokey@enron.com
## 5916 78848 6387 TO tracy.geaccone@enron.com
## 5917 78849 6387 TO paul.y barbo@enron.com
## 5918 78850 6387 TO lindy.donoho@enron.com
## 5919 78854 6387 TO teb.lokey@enron.com
## 5920 78860 6393 TO teb.lokey@enron.com
## 5921 78867 6400 TO steven.harris@enron.com
## 5922 78869 6400 TO teb.lokey@enron.com
## 5923 78874 6402 TO tracy.geaccone@enron.com
## 5924 78882 6402 CC teb.lokey@enron.com
## 5925 78883 6402 CC rod.hayslett@enron.com
## 5926 78889 6402 BCC teb.lokey@enron.com
## 5927 78890 6402 BCC rod.hayslett@enron.com
## 5928 78891 6403 TO james.saunders@enron.com
## 5929 78892 6403 TO dan.rittgers@enron.com
## 5930 78893 6403 TO carolyn.centilli@enron.com
## 5931 78894 6403 CC gavin.russo@enron.com
## 5932 78895 6403 CC bob.chandler@enron.com
## 5933 78896 6403 CC john.cobb@enron.com
## 5934 78897 6403 CC gary.zahn@enron.com
## 5935 78898 6403 CC robert.kilmer@enron.com
## 5936 78899 6403 CC teb.lokey@enron.com
## 5937 78900 6403 CC rod.hayslett@enron.com
## 5938 78901 6403 BCC gavin.russo@enron.com
## 5939 78902 6403 BCC bob.chandler@enron.com
## 5940 78903 6403 BCC john.cobb@enron.com
## 5941 78904 6403 BCC gary.zahn@enron.com
## 5942 78905 6403 BCC robert.kilmer@enron.com
## 5943 78906 6403 BCC teb.lokey@enron.com
## 5944 78907 6403 BCC rod.hayslett@enron.com
## 5945 78916 6405 CC teb.lokey@enron.com
## 5946 78917 6405 CC rod.hayslett@enron.com
## 5947 78918 6405 CC tracy.geaccone@enron.com
## 5948 78924 6405 BCC teb.lokey@enron.com
## 5949 78925 6405 BCC rod.hayslett@enron.com
## 5950 78926 6405 BCC tracy.geaccone@enron.com
## 5951 78933 6406 CC teb.lokey@enron.com
## 5952 78935 6406 CC rod.hayslett@enron.com
## 5953 78936 6406 CC tracy.geaccone@enron.com
## 5954 78942 6406 BCC teb.lokey@enron.com
## 5955 78944 6406 BCC rod.hayslett@enron.com
## 5956 78945 6406 BCC tracy.geaccone@enron.com
## 5957 78946 6407 TO steven.harris@enron.com
## 5958 78951 6407 TO tracy.geaccone@enron.com
## 5959 78953 6407 TO teb.lokey@enron.com
## 5960 78980 6408 TO teb.lokey@enron.com
## 5961 78983 6409 TO tracy.geaccone@enron.com
## 5962 78984 6409 TO paul.y barbo@enron.com
## 5963 78985 6409 TO lindy.donoho@enron.com
## 5964 78988 6409 TO teb.lokey@enron.com
## 5965 78990 6410 TO teb.lokey@enron.com
## 5966 78994 6410 TO steven.harris@enron.com
## 5967 78995 6410 TO lindy.donoho@enron.com
## 5968 79002 6414 TO teb.lokey@enron.com
## 5969 79012 6418 TO michelle.lokay@enron.com
## 5970 79013 6418 TO paul.y barbo@enron.com
## 5971 79015 6418 TO teb.lokey@enron.com
## 5972 79021 6420 TO james.saunders@enron.com
## 5973 79022 6420 TO tracy.geaccone@enron.com
## 5974 79023 6420 CC dan.rittgers@enron.com
## 5975 79024 6420 CC gavin.russo@enron.com
## 5976 79025 6420 CC bob.chandler@enron.com
## 5977 79026 6420 CC john.cobb@enron.com
## 5978 79027 6420 CC gary.zahn@enron.com
## 5979 79028 6420 CC robert.kilmer@enron.com
## 5980 79029 6420 CC teb.lokey@enron.com
## 5981 79030 6420 BCC dan.rittgers@enron.com
## 5982 79031 6420 BCC gavin.russo@enron.com
## 5983 79032 6420 BCC bob.chandler@enron.com
## 5984 79033 6420 BCC john.cobb@enron.com
## 5985 79034 6420 BCC gary.zahn@enron.com
## 5986 79035 6420 BCC robert.kilmer@enron.com
## 5987 79036 6420 BCC teb.lokey@enron.com
## 5988 79037 6421 TO rod.hayslett@enron.com
## 5989 79038 6421 TO tracy.geaccone@enron.com
## 5990 79045 6421 CC teb.lokey@enron.com
## 5991 79052 6421 BCC teb.lokey@enron.com
## 5992 79100 6429 TO teb.lokey@enron.com
## 5993 79111 6431 TO teb.lokey@enron.com
## 5994 79113 6433 TO rod.hayslett@enron.com
## 5995 79114 6433 TO teb.lokey@enron.com
## 5996 79120 6434 TO teb.lokey@enron.com
## 5997 79125 6435 TO dennis.alters@enron.com
## 5998 79126 6435 TO larry.f.campbell@enron.com
## 5999 79127 6435 TO sarah.haden@enron.com
## 6000 79128 6435 TO blair.lichtenwalter@enron.com
## 6001 79129 6435 TO teb.lokey@enron.com
## 6002 79130 6435 TO ron.matthews@enron.com
## 6003 79131 6435 TO johnny.mcgee@enron.com
## 6004 79132 6435 TO john.shafer@enron.com
## 6005 79133 6435 TO gina.taylor@enron.com
## 6006 79134 6435 TO stephen.veatch@enron.com
## 6007 79135 6435 TO kimberly.watson@enron.com
## 6008 79139 6437 TO rod.hayslett@enron.com
## 6009 79141 6437 CC teb.lokey@enron.com
## 6010 79143 6437 BCC teb.lokey@enron.com
## 6011 79145 6438 TO robert.hayes@enron.com
## 6012 79146 6438 TO steven.harris@enron.com
## 6013 79147 6438 TO tracy.geaccone@enron.com
## 6014 79148 6438 TO john.keiser@enron.com
## 6015 79149 6438 TO james.centilli@enron.com
## 6016 79150 6438 TO maggie.schroeder@enron.com
## 6017 79151 6438 TO teb.lokey@enron.com
## 6018 79152 6438 TO a..howard@enron.com
## 6019 79153 6438 TO davis.thames@enron.com
## 6020 79154 6438 CC kathy.campos@enron.com
## 6021 79155 6438 BCC kathy.campos@enron.com
## 6022 79156 6439 TO teb.lokey@enron.com
## 6023 79157 6440 TO teb.lokey@enron.com
## 6024 79165 6441 TO teb.lokey@enron.com
## 6025 79169 6442 TO teb.lokey@enron.com
## 6026 79173 6445 TO teb.lokey@enron.com
## 6027 79185 6456 TO steven.harris@enron.com
## 6028 79187 6456 TO teb.lokey@enron.com
## 6029 79192 6457 TO steven.harris@enron.com
## 6030 79193 6457 TO teb.lokey@enron.com
## 6031 79195 6457 TO lindy.donoho@enron.com
## 6032 79205 6460 TO lynn.blair@enron.com
## 6033 79210 6460 TO shelley.corman@enron.com
## 6034 79221 6460 TO teb.lokey@enron.com
## 6035 79236 6464 TO teb.lokey@enron.com
## 6036 79242 6464 TO lindy.donoho@enron.com
## 6037 79243 6464 TO steven.harris@enron.com
## 6038 79246 6464 TO michelle.lokay@enron.com
## 6039 79249 6464 TO paul.y barbo@enron.com
## 6040 79253 6466 TO teb.lokey@enron.com
## 6041 79254 6467 TO teb.lokey@enron.com
## 6042 79256 6468 CC teb.lokey@enron.com
## 6043 79257 6468 BCC teb.lokey@enron.com
## 6044 79259 6469 CC teb.lokey@enron.com
## 6045 79260 6469 BCC teb.lokey@enron.com
## 6046 79262 6470 CC teb.lokey@enron.com
## 6047 79263 6470 BCC teb.lokey@enron.com
## 6048 79271 6473 TO steven.harris@enron.com
## 6049 79278 6473 TO teb.lokey@enron.com
## 6050 79297 6475 TO steven.harris@enron.com
## 6051 79304 6475 TO teb.lokey@enron.com
## 6052 79318 6476 TO steven.harris@enron.com
## 6053 79325 6476 TO teb.lokey@enron.com
## 6054 79346 6477 TO lynn.blair@enron.com
## 6055 79355 6477 TO shelley.corman@enron.com
## 6056 79398 6477 TO teb.lokey@enron.com
## 6057 79403 6477 TO danny.mccarty@enron.com
## 6058 79471 6479 TO kevin.hyatt@enron.com
## 6059 79472 6479 TO teb.lokey@enron.com
## 6060 79477 6481 TO teb.lokey@enron.com
## 6061 79482 6482 TO teb.lokey@enron.com
## 6062 79492 6483 TO lynn.blair@enron.com
## 6063 79501 6483 TO shelley.corman@enron.com
## 6064 79519 6483 TO teb.lokey@enron.com
## 6065 79522 6483 TO danny.mccarty@enron.com
## 6066 79570 6484 TO teb.lokey@enron.com
## 6067 79576 6485 TO teb.lokey@enron.com
## 6068 79585 6494 TO teb.lokey@enron.com
## 6069 79590 6495 TO lynn.blair@enron.com
## 6070 79593 6495 TO teb.lokey@enron.com
## 6071 79594 6495 TO lindy.donoho@enron.com
## 6072 79595 6495 TO shelley.corman@enron.com
## 6073 79597 6496 TO teb.lokey@enron.com
## 6074 79600 6497 CC teb.lokey@enron.com
## 6075 79601 6497 BCC teb.lokey@enron.com
## 6076 79606 6499 CC teb.lokey@enron.com
## 6077 79608 6499 BCC teb.lokey@enron.com
## 6078 79613 6501 CC teb.lokey@enron.com
## 6079 79615 6501 BCC teb.lokey@enron.com
## 6080 79619 6502 CC teb.lokey@enron.com
## 6081 79621 6502 BCC teb.lokey@enron.com
## 6082 79622 6503 TO teb.lokey@enron.com
## 6083 79629 6505 CC teb.lokey@enron.com
## 6084 79630 6505 BCC teb.lokey@enron.com
## 6085 79635 6507 TO lynn.blair@enron.com
## 6086 79639 6507 TO shelley.corman@enron.com
## 6087 79649 6507 TO teb.lokey@enron.com
## 6088 79663 6508 TO steven.harris@enron.com
## 6089 79665 6508 TO teb.lokey@enron.com
## 6090 79671 6509 TO teb.lokey@enron.com
## 6091 79677 6512 TO teb.lokey@enron.com
## 6092 79679 6514 TO teb.lokey@enron.com
## 6093 79682 6515 TO lynn.blair@enron.com
## 6094 79686 6515 TO shelley.corman@enron.com
## 6095 79697 6515 TO teb.lokey@enron.com
## 6096 79710 6518 TO teb.lokey@enron.com
## 6097 79711 6519 TO teb.lokey@enron.com
## 6098 79726 6521 CC teb.lokey@enron.com
## 6099 79730 6521 BCC teb.lokey@enron.com
## 6100 79731 6522 TO teb.lokey@enron.com
## 6101 79741 6523 TO teb.lokey@enron.com
## 6102 79745 6523 TO lindy.donoho@enron.com
## 6103 79746 6524 TO teb.lokey@enron.com
## 6104 79748 6525 TO teb.lokey@enron.com
## 6105 79759 6528 TO larry.f.campbell@enron.com
## 6106 79767 6528 TO steven.harris@enron.com
## 6107 79779 6528 TO teb.lokey@enron.com
## 6108 79795 6530 TO teb.lokey@enron.com
## 6109 79799 6531 TO teb.lokey@enron.com
## 6110 79803 6532 CC teb.lokey@enron.com
## 6111 79805 6532 BCC teb.lokey@enron.com
## 6112 79806 6533 TO teb.lokey@enron.com
## 6113 79812 6535 TO teb.lokey@enron.com
## 6114 79813 6535 TO tracy.geaccone@enron.com
## 6115 79829 6537 TO steven.harris@enron.com
## 6116 79836 6537 TO teb.lokey@enron.com
## 6117 79850 6539 TO kimberly.watson@enron.com
## 6118 79851 6539 TO teb.lokey@enron.com
## 6119 79852 6539 CC james.saunders@enron.com
## 6120 79853 6539 BCC james.saunders@enron.com
## 6121 79854 6540 TO teb.lokey@enron.com
## 6122 79857 6541 TO teb.lokey@enron.com
## 6123 79862 6542 TO teb.lokey@enron.com
## 6124 79872 6545 TO steven.harris@enron.com
## 6125 79879 6545 TO teb.lokey@enron.com
## 6126 79890 6547 TO steven.harris@enron.com
## 6127 79893 6547 TO teb.lokey@enron.com
## 6128 79894 6548 TO teb.lokey@enron.com
## 6129 79899 6549 CC lynn.blair@enron.com
## 6130 79902 6549 CC teb.lokey@enron.com
## 6131 79903 6549 CC lindy.donoho@enron.com
## 6132 79904 6549 BCC lynn.blair@enron.com
## 6133 79907 6549 BCC teb.lokey@enron.com
## 6134 79908 6549 BCC lindy.donoho@enron.com
## 6135 79913 6551 CC teb.lokey@enron.com
## 6136 79915 6551 BCC teb.lokey@enron.com
## 6137 79924 6557 TO steven.harris@enron.com
## 6138 79926 6557 TO teb.lokey@enron.com
## 6139 79932 6559 TO larry.f.campbell@enron.com
## 6140 79935 6559 TO teb.lokey@enron.com
## 6141 79944 6562 TO steven.harris@enron.com
## 6142 79947 6562 TO michelle.lokay@enron.com
## 6143 79949 6562 TO teb.lokey@enron.com
## 6144 79955 6564 TO teb.lokey@enron.com
## 6145 79971 6565 TO teb.lokey@enron.com
## 6146 79974 6566 TO michelle.lokay@enron.com
## 6147 79975 6566 TO teb.lokey@enron.com
## 6148 79977 6567 TO bill.rapp@enron.com
## 6149 79978 6567 TO teb.lokey@enron.com
## 6150 79979 6567 TO robert.kilmer@enron.com
## 6151 79981 6568 TO teb.lokey@enron.com
## 6152 79983 6570 TO steven.harris@enron.com
## 6153 79986 6570 CC teb.lokey@enron.com
## 6154 79989 6570 BCC teb.lokey@enron.com
## 6155 79994 6572 TO teb.lokey@enron.com
## 6156 79996 6573 TO teb.lokey@enron.com
## 6157 79998 6574 TO teb.lokey@enron.com
## 6158 80001 6575 TO teb.lokey@enron.com
## 6159 80012 6576 TO teb.lokey@enron.com
## 6160 80016 6576 TO michelle.lokay@enron.com
## 6161 80018 6577 TO teb.lokey@enron.com
## 6162 80020 6578 TO teb.lokey@enron.com
## 6163 80021 6578 TO larry.f.campbell@enron.com
## 6164 80025 6579 TO teb.lokey@enron.com
## 6165 80033 6581 TO teb.lokey@enron.com
## 6166 80040 6582 TO teb.lokey@enron.com
## 6167 80046 6584 TO teb.lokey@enron.com
## 6168 80054 6585 TO shelley.corman@enron.com
## 6169 80058 6585 CC teb.lokey@enron.com
## 6170 80061 6585 BCC teb.lokey@enron.com
## 6171 80063 6586 TO teb.lokey@enron.com
## 6172 80065 6587 TO teb.lokey@enron.com
## 6173 80070 6588 TO jack.howard@enron.com
## 6174 80071 6588 CC tim.cooper@enron.com
## 6175 80072 6588 CC sheila.nacey@enron.com
## 6176 80073 6588 CC dannis.bellard@enron.com
## 6177 80074 6588 CC teb.lokey@enron.com
## 6178 80075 6588 BCC tim.cooper@enron.com
## 6179 80076 6588 BCC sheila.nacey@enron.com
## 6180 80077 6588 BCC dannis.bellard@enron.com
## 6181 80078 6588 BCC teb.lokey@enron.com
## 6182 80079 6589 TO teb.lokey@enron.com
## 6183 80126 6591 TO rod.hayslett@enron.com
## 6184 80148 6591 TO teb.lokey@enron.com
## 6185 80198 6592 TO dennis.alters@enron.com
## 6186 80199 6592 TO larry.f.campbell@enron.com
## 6187 80200 6592 TO doug.cebryk@enron.com
## 6188 80201 6592 TO sarah.haden@enron.com
## 6189 80202 6592 TO blair.lichtenwalter@enron.com
## 6190 80203 6592 TO teb.lokey@enron.com
## 6191 80204 6592 TO ron.matthews@enron.com
## 6192 80205 6592 TO johnny.mcgee@enron.com
## 6193 80206 6592 TO john.shafer@enron.com
## 6194 80207 6592 TO gina.taylor@enron.com
## 6195 80208 6592 TO stephen.veatch@enron.com
## 6196 80209 6592 TO kimberly.watson@enron.com
## 6197 80210 6592 CC eric.gadd@enron.com
## 6198 80211 6592 CC susan.wadle@enron.com
## 6199 80212 6592 BCC eric.gadd@enron.com
## 6200 80213 6592 BCC susan.wadle@enron.com
## 6201 80219 6593 CC teb.lokey@enron.com
## 6202 80226 6593 BCC teb.lokey@enron.com
## 6203 80229 6594 TO teb.lokey@enron.com
## 6204 80237 6596 TO teb.lokey@enron.com
## 6205 80242 6599 TO teb.lokey@enron.com
## 6206 80244 6601 TO teb.lokey@enron.com
## 6207 80245 6602 TO teb.lokey@enron.com
## 6208 80247 6603 CC teb.lokey@enron.com
## 6209 80249 6603 BCC teb.lokey@enron.com
## 6210 80254 6605 TO teb.lokey@enron.com
## 6211 80256 6605 TO steven.harris@enron.com
## 6212 80271 6611 CC teb.lokey@enron.com
## 6213 80277 6611 BCC teb.lokey@enron.com
## 6214 80287 6612 TO shelley.corman@enron.com
## 6215 80342 6612 TO lindy.donoho@enron.com
## 6216 80347 6612 TO teb.lokey@enron.com
## 6217 80354 6613 TO teb.lokey@enron.com
## 6218 80355 6614 TO steven.harris@enron.com
## 6219 80359 6614 TO michelle.lokay@enron.com
## 6220 80360 6614 TO lindy.donoho@enron.com
## 6221 80361 6614 TO teb.lokey@enron.com
## 6222 80370 6617 TO teb.lokey@enron.com
## 6223 80371 6618 TO teb.lokey@enron.com
## 6224 80373 6620 TO rod.hayslett@enron.com
## 6225 80389 6620 TO teb.lokey@enron.com
## 6226 80393 6621 CC teb.lokey@enron.com
## 6227 80396 6621 BCC teb.lokey@enron.com
## 6228 80399 6622 TO teb.lokey@enron.com
## 6229 80400 6623 TO teb.lokey@enron.com
## 6230 80409 6624 TO james.saunders@enron.com
## 6231 80410 6624 TO teb.lokey@enron.com
## 6232 80411 6624 TO blair.lichtenwalter@enron.com
## 6233 80412 6624 TO stephen.veatch@enron.com
## 6234 80413 6624 TO eric.gadd@enron.com
## 6235 80414 6624 TO james.centilli@enron.com
## 6236 80415 6625 TO dennis.alters@enron.com
## 6237 80416 6625 TO larry.f.campbell@enron.com
## 6238 80417 6625 TO doug.cebryk@enron.com
## 6239 80418 6625 TO sarah.haden@enron.com
## 6240 80419 6625 TO blair.lichtenwalter@enron.com
## 6241 80420 6625 TO teb.lokey@enron.com
## 6242 80421 6625 TO ron.matthews@enron.com
## 6243 80422 6625 TO johnny.mcgee@enron.com
## 6244 80423 6625 TO john.shafer@enron.com
## 6245 80424 6625 TO gina.taylor@enron.com
## 6246 80425 6625 TO stephen.veatch@enron.com
## 6247 80426 6625 TO kimberly.watson@enron.com
## 6248 80427 6626 TO teb.lokey@enron.com
## 6249 80430 6629 TO teb.lokey@enron.com
## 6250 80431 6629 TO rick.dietz@enron.com
## 6251 80432 6629 TO galen.coon@enron.com
## 6252 80433 6629 TO jack.boatman@enron.com
## 6253 80434 6629 TO rachel.cady@enron.com
## 6254 80435 6629 TO sheila.nacey@enron.com
## 6255 80436 6629 TO james.studebaker@enron.com
## 6256 80437 6629 TO robert.kilmer@enron.com
## 6257 80438 6630 TO teb.lokey@enron.com
## 6258 80441 6631 TO steven.harris@enron.com
## 6259 80442 6631 TO teb.lokey@enron.com
## 6260 80445 6633 TO steven.harris@enron.com
## 6261 80447 6633 TO teb.lokey@enron.com
## 6262 80451 6634 CC teb.lokey@enron.com
## 6263 80456 6634 BCC teb.lokey@enron.com
## 6264 80461 6635 TO teb.lokey@enron.com
## 6265 80469 6636 TO steven.harris@enron.com
## 6266 80472 6636 TO teb.lokey@enron.com
## 6267 80477 6637 TO teb.lokey@enron.com
## 6268 80478 6637 TO shelley.corman@enron.com
## 6269 80486 6638 TO teb.lokey@enron.com
## 6270 80492 6639 TO teb.lokey@enron.com
## 6271 80499 6640 TO teb.lokey@enron.com
## 6272 80500 6640 TO shelley.corman@enron.com
## 6273 80507 6641 TO shelley.corman@enron.com
## 6274 80508 6641 TO rick.dietz@enron.com
## 6275 80509 6641 TO galen.coon@enron.com
## 6276 80510 6641 TO jack.boatman@enron.com
## 6277 80511 6641 TO rachel.cady@enron.com
## 6278 80512 6641 TO sheila.nacey@enron.com
## 6279 80513 6641 TO james.studebaker@enron.com
## 6280 80514 6641 TO robert.kilmer@enron.com
## 6281 80516 6642 TO teb.lokey@enron.com
## 6282 80519 6643 TO teb.lokey@enron.com
## 6283 80526 6644 CC teb.lokey@enron.com
## 6284 80527 6644 BCC teb.lokey@enron.com
## 6285 80531 6645 TO lynn.blair@enron.com
## 6286 80534 6645 TO shelley.corman@enron.com
## 6287 80536 6645 TO lindy.donoho@enron.com
## 6288 80538 6645 TO tracy.geaccone@enron.com
## 6289 80541 6645 TO steven.harris@enron.com
## 6290 80547 6645 TO michelle.lokay@enron.com
## 6291 80548 6645 TO teb.lokey@enron.com
## 6292 80559 6645 TO paul.y barbo@enron.com
## 6293 80564 6646 CC lynn.blair@enron.com
## 6294 80567 6646 CC teb.lokey@enron.com
## 6295 80568 6646 CC lindy.donoho@enron.com
## 6296 80569 6646 BCC lynn.blair@enron.com
## 6297 80572 6646 BCC teb.lokey@enron.com
## 6298 80573 6646 BCC lindy.donoho@enron.com
## 6299 80574 6647 TO kimberly.watson@enron.com
## 6300 80575 6647 TO mansoor.abdmoulaie@enron.com
## 6301 80576 6647 TO ron.matthews@enron.com
## 6302 80577 6647 TO paul.cherry@enron.com
## 6303 80578 6647 TO bill.rapp@enron.com
## 6304 80579 6647 TO earl.chanley@enron.com
## 6305 80580 6647 TO teb.lokey@enron.com
## 6306 80586 6648 TO tracy.geaccone@enron.com
## 6307 80587 6648 TO teb.lokey@enron.com
## 6308 80594 6649 TO lynn.blair@enron.com
## 6309 80603 6649 TO shelley.corman@enron.com
## 6310 80621 6649 TO teb.lokey@enron.com
## 6311 80624 6649 TO danny.mccarty@enron.com
## 6312 80737 6650 TO teb.lokey@enron.com
## 6313 80740 6651 TO teb.lokey@enron.com
## 6314 80748 6652 CC teb.lokey@enron.com
## 6315 80760 6652 BCC teb.lokey@enron.com
## 6316 80769 6653 TO teb.lokey@enron.com
## 6317 80778 6654 TO teb.lokey@enron.com
## 6318 80784 6655 TO teb.lokey@enron.com
## 6319 80795 6659 TO teb.lokey@enron.com
## 6320 80799 6659 TO lindy.donoho@enron.com
## 6321 80800 6659 TO steven.harris@enron.com
## 6322 80803 6659 TO michelle.lokay@enron.com
## 6323 80806 6659 TO paul.y barbo@enron.com
## 6324 80810 6660 TO teb.lokey@enron.com
## 6325 80815 6661 TO teb.lokey@enron.com
## 6326 80890 6662 TO teb.lokey@enron.com
## 6327 80969 6663 TO teb.lokey@enron.com
## 6328 80998 6665 TO teb.lokey@enron.com
## 6329 81018 6668 TO michelle.lokay@enron.com
## 6330 81020 6668 TO teb.lokey@enron.com
## 6331 81041 6669 TO teb.lokey@enron.com
## 6332 81063 6670 CC teb.lokey@enron.com
## 6333 81086 6670 BCC teb.lokey@enron.com
## 6334 81110 6671 TO teb.lokey@enron.com
## 6335 81114 6672 CC teb.lokey@enron.com
## 6336 81116 6672 BCC teb.lokey@enron.com
## 6337 81119 6673 TO teb.lokey@enron.com
## 6338 81120 6674 TO teb.lokey@enron.com
## 6339 81130 6676 TO teb.lokey@enron.com
## 6340 81131 6677 TO teb.lokey@enron.com
## 6341 81132 6678 TO teb.lokey@enron.com
## 6342 81134 6679 CC teb.lokey@enron.com
## 6343 81139 6679 BCC teb.lokey@enron.com
## 6344 81144 6680 TO teb.lokey@enron.com
## 6345 81212 6683 TO teb.lokey@enron.com
## 6346 81215 6684 TO teb.lokey@enron.com
## 6347 81224 6685 TO teb.lokey@enron.com
## 6348 81229 6686 TO teb.lokey@enron.com
## 6349 81232 6687 TO teb.lokey@enron.com
## 6350 81235 6688 TO teb.lokey@enron.com
## 6351 81243 6689 TO dennis.alters@enron.com
## 6352 81244 6689 TO larry.f.campbell@enron.com
## 6353 81245 6689 TO doug.cebryk@enron.com
## 6354 81246 6689 TO sarah.haden@enron.com
## 6355 81247 6689 TO blair.lichtenwalter@enron.com
## 6356 81248 6689 TO teb.lokey@enron.com
## 6357 81249 6689 TO ron.matthews@enron.com
## 6358 81250 6689 TO johnny.mcgee@enron.com
## 6359 81251 6689 TO john.shafer@enron.com
## 6360 81252 6689 TO gina.taylor@enron.com
## 6361 81253 6689 TO stephen.veatch@enron.com
## 6362 81254 6689 TO kimberly.watson@enron.com
## 6363 81255 6689 CC susan.wadle@enron.com
## 6364 81256 6689 BCC susan.wadle@enron.com
## 6365 81258 6690 TO steven.harris@enron.com
## 6366 81261 6690 TO teb.lokey@enron.com
## 6367 81268 6693 TO teb.lokey@enron.com
## 6368 81271 6693 TO danny.mccarty@enron.com
## 6369 81272 6693 TO lindy.donoho@enron.com
## 6370 81273 6693 TO steven.harris@enron.com
## 6371 81276 6693 TO michelle.lokay@enron.com
## 6372 81279 6693 TO paul.y barbo@enron.com
## 6373 81282 6694 TO steven.harris@enron.com
## 6374 81284 6694 TO teb.lokey@enron.com
## 6375 81300 6696 TO teb.lokey@enron.com
## 6376 81304 6698 TO teb.lokey@enron.com
## 6377 81308 6699 TO steven.harris@enron.com
## 6378 81310 6699 TO teb.lokey@enron.com
## 6379 81314 6700 TO steven.harris@enron.com
## 6380 81316 6700 TO teb.lokey@enron.com
## 6381 81319 6701 TO teb.lokey@enron.com
## 6382 81321 6702 TO steven.harris@enron.com
## 6383 81323 6702 TO teb.lokey@enron.com
## 6384 81326 6703 TO teb.lokey@enron.com
## 6385 81330 6704 TO lindy.donoho@enron.com
## 6386 81332 6704 CC teb.lokey@enron.com
## 6387 81335 6704 BCC teb.lokey@enron.com
## 6388 81339 6706 TO teb.lokey@enron.com
## 6389 81344 6709 TO teb.lokey@enron.com
## 6390 81357 6710 TO teb.lokey@enron.com
## 6391 81370 6712 TO teb.lokey@enron.com
## 6392 81374 6713 TO teb.lokey@enron.com
## 6393 81379 6714 TO steven.harris@enron.com
## 6394 81380 6714 TO teb.lokey@enron.com
## 6395 81388 6715 TO teb.lokey@enron.com
## 6396 81401 6716 TO teb.lokey@enron.com
## 6397 81415 6718 TO teb.lokey@enron.com
## 6398 81426 6719 TO teb.lokey@enron.com
## 6399 81431 6722 TO teb.lokey@enron.com
## 6400 81434 6724 TO stanley.horton@enron.com
## 6401 81435 6724 TO danny.mccarty@enron.com
## 6402 81436 6724 CC teb.lokey@enron.com
## 6403 81451 6724 BCC teb.lokey@enron.com
## 6404 81467 6725 CC teb.lokey@enron.com
## 6405 81469 6725 BCC teb.lokey@enron.com
## 6406 81471 6726 TO teb.lokey@enron.com
## 6407 81476 6730 CC teb.lokey@enron.com
## 6408 81477 6730 BCC teb.lokey@enron.com
## 6409 81593 6744 TO steven.harris@enron.com
## 6410 81598 6744 TO teb.lokey@enron.com
## 6411 81704 6747 TO teb.lokey@enron.com
## 6412 81705 6748 TO teb.lokey@enron.com
## 6413 81712 6749 TO teb.lokey@enron.com
## 6414 81715 6750 TO lindy.donoho@enron.com
## 6415 81718 6750 TO lynn.blair@enron.com
## 6416 81722 6750 TO teb.lokey@enron.com
## 6417 81727 6752 TO lindy.donoho@enron.com
## 6418 81730 6752 TO lynn.blair@enron.com
## 6419 81734 6752 TO teb.lokey@enron.com
## 6420 81745 6756 TO teb.lokey@enron.com
## 6421 81751 6758 TO teb.lokey@enron.com
## 6422 81752 6758 TO blair.lichtenwalter@enron.com
## 6423 81753 6758 TO steve.january@enron.com
## 6424 81754 6758 TO lynn.blair@enron.com
## 6425 81755 6758 TO glen.hass@enron.com
## 6426 81756 6758 TO mary.darveaux@enron.com
## 6427 81757 6758 TO richard.hanagriff@enron.com
## 6428 81758 6758 TO terry.kowalke@enron.com
## 6429 81759 6758 TO john.buchanan@enron.com
## 6430 81760 6758 TO ramona.betancourt@enron.com
## 6431 81761 6758 TO jeanette.doll@enron.com
## 6432 81762 6758 CC steven.harris@enron.com
## 6433 81763 6758 CC kimberly.watson@enron.com
## 6434 81764 6758 BCC steven.harris@enron.com
## 6435 81765 6758 BCC kimberly.watson@enron.com
## 6436 81767 6759 TO teb.lokey@enron.com
## 6437 81798 6770 TO kevin.hyatt@enron.com
## 6438 81800 6770 TO larry.f.campbell@enron.com
## 6439 81804 6770 TO teb.lokey@enron.com
## 6440 81811 6771 TO teb.lokey@enron.com
## 6441 81817 6772 TO dennis.alters@enron.com
## 6442 81818 6772 TO larry.f.campbell@enron.com
## 6443 81819 6772 TO doug.cebryk@enron.com
## 6444 81820 6772 TO sarah.haden@enron.com
## 6445 81821 6772 TO blair.lichtenwalter@enron.com
## 6446 81822 6772 TO teb.lokey@enron.com
## 6447 81823 6772 TO ron.matthews@enron.com
## 6448 81824 6772 TO johnny.mcgee@enron.com
## 6449 81825 6772 TO john.shafer@enron.com
## 6450 81826 6772 TO gina.taylor@enron.com
## 6451 81827 6772 TO stephen.veatch@enron.com
## 6452 81828 6772 TO kimberly.watson@enron.com
## 6453 81829 6772 CC susan.wadle@enron.com
## 6454 81830 6772 BCC susan.wadle@enron.com
## 6455 81837 6773 TO teb.lokey@enron.com
## 6456 81848 6774 TO teb.lokey@enron.com
## 6457 81849 6775 TO teb.lokey@enron.com
## 6458 81853 6776 TO lynn.blair@enron.com
## 6459 81858 6776 TO shelley.corman@enron.com
## 6460 81864 6776 TO rod.hayslett@enron.com
## 6461 81873 6776 TO teb.lokey@enron.com
## 6462 81891 6778 TO steven.harris@enron.com
## 6463 81896 6778 TO teb.lokey@enron.com
## 6464 81911 6780 TO shelley.corman@enron.com
## 6465 81965 6780 TO lindy.donoho@enron.com
## 6466 81970 6780 TO teb.lokey@enron.com
## 6467 81978 6781 TO teb.lokey@enron.com
## 6468 81983 6782 TO teb.lokey@enron.com
## 6469 81988 6783 TO teb.lokey@enron.com
## 6470 81996 6784 CC teb.lokey@enron.com
## 6471 81997 6784 BCC teb.lokey@enron.com
## 6472 82000 6787 TO teb.lokey@enron.com
## 6473 82001 6788 TO lindy.donoho@enron.com
## 6474 82003 6788 TO lynn.blair@enron.com
## 6475 82006 6788 TO teb.lokey@enron.com
## 6476 82010 6788 CC steven.harris@enron.com
## 6477 82012 6788 CC shelley.corman@enron.com
## 6478 82015 6788 BCC steven.harris@enron.com
## 6479 82017 6788 BCC shelley.corman@enron.com
## 6480 82021 6789 TO lindy.donoho@enron.com
## 6481 82024 6789 TO lynn.blair@enron.com
## 6482 82027 6789 TO teb.lokey@enron.com
## 6483 82028 6789 CC steven.harris@enron.com
## 6484 82030 6789 CC shelley.corman@enron.com
## 6485 82032 6789 BCC steven.harris@enron.com
## 6486 82034 6789 BCC shelley.corman@enron.com
## 6487 82036 6790 TO lindy.donoho@enron.com
## 6488 82039 6790 TO lynn.blair@enron.com
## 6489 82042 6790 TO teb.lokey@enron.com
## 6490 82044 6790 CC steven.harris@enron.com
## 6491 82046 6790 CC shelley.corman@enron.com
## 6492 82048 6790 BCC steven.harris@enron.com
## 6493 82050 6790 BCC shelley.corman@enron.com
## 6494 82052 6791 TO glen.hass@enron.com
## 6495 82053 6791 TO mary.darveaux@enron.com
## 6496 82054 6791 TO lynn.blair@enron.com
## 6497 82055 6791 TO richard.hanagriff@enron.com
## 6498 82056 6791 TO ramona.betancourt@enron.com
## 6499 82057 6791 TO teb.lokey@enron.com
## 6500 82058 6791 TO blair.lichtenwalter@enron.com
## 6501 82059 6791 TO john.buchanan@enron.com
## 6502 82060 6791 CC steven.harris@enron.com
## 6503 82061 6791 CC kimberly.watson@enron.com
## 6504 82062 6791 CC shelley.corman@enron.com
## 6505 82063 6791 CC robert.kilmer@enron.com
## 6506 82064 6791 BCC steven.harris@enron.com
## 6507 82065 6791 BCC kimberly.watson@enron.com
## 6508 82066 6791 BCC shelley.corman@enron.com
## 6509 82067 6791 BCC robert.kilmer@enron.com
## 6510 82072 6796 TO teb.lokey@enron.com
## 6511 82073 6797 TO steven.harris@enron.com
## 6512 82078 6797 TO teb.lokey@enron.com
## 6513 82079 6797 TO lindy.donoho@enron.com
## 6514 82082 6797 TO michelle.lokay@enron.com
## 6515 82085 6797 TO paul.y barbo@enron.com
## 6516 82086 6798 TO glen.hass@enron.com
## 6517 82087 6798 TO gregory.porter@enron.com
## 6518 82088 6798 TO bill.rapp@enron.com
## 6519 82089 6798 TO kay.miller@enron.com
## 6520 82090 6798 TO robert.kilmer@enron.com
## 6521 82091 6798 TO teb.lokey@enron.com
## 6522 82092 6798 TO lindy.donoho@enron.com
## 6523 82093 6798 TO lorraine.lindberg@enron.com
## 6524 82094 6798 TO tk.lohman@enron.com
## 6525 82095 6798 TO michelle.lokay@enron.com
## 6526 82096 6798 TO mark.mcconnell@enron.com
## 6527 82097 6798 TO kimberly.watson@enron.com
## 6528 82098 6798 TO paul.y barbo@enron.com
## 6529 82103 6800 CC shelley.corman@enron.com
## 6530 82107 6800 CC teb.lokey@enron.com
## 6531 82110 6800 BCC shelley.corman@enron.com
## 6532 82114 6800 BCC teb.lokey@enron.com
## 6533 82120 6801 TO teb.lokey@enron.com
## 6534 82121 6801 TO lindy.donoho@enron.com
## 6535 82122 6801 TO steven.harris@enron.com
## 6536 82125 6801 TO michelle.lokay@enron.com
## 6537 82128 6801 TO paul.y barbo@enron.com
## 6538 82157 6806 TO teb.lokey@enron.com
## 6539 82161 6808 TO shelley.corman@enron.com
## 6540 82162 6808 TO teb.lokey@enron.com
## 6541 82163 6809 TO rachel.cady@enron.com
## 6542 82164 6809 CC teb.lokey@enron.com
## 6543 82165 6809 BCC teb.lokey@enron.com
## 6544 82166 6810 TO shelley.corman@enron.com
## 6545 82167 6810 CC teb.lokey@enron.com
## 6546 82168 6810 BCC teb.lokey@enron.com
## 6547 82169 6811 TO rachel.cady@enron.com
## 6548 82170 6811 CC teb.lokey@enron.com
## 6549 82171 6811 BCC teb.lokey@enron.com
## 6550 82172 6812 TO shelley.corman@enron.com
## 6551 82173 6812 TO teb.lokey@enron.com
## 6552 82177 6816 TO teb.lokey@enron.com
## 6553 82179 6817 TO paul.y barbo@enron.com
## 6554 82184 6817 TO teb.lokey@enron.com
## 6555 82186 6817 TO tracy.geaccone@enron.com
## 6556 82189 6817 CC rod.hayslett@enron.com
## 6557 82198 6817 BCC rod.hayslett@enron.com
## 6558 82207 6819 TO steven.harris@enron.com
## 6559 82209 6819 TO michelle.lokay@enron.com
## 6560 82212 6819 TO teb.lokey@enron.com
## 6561 82221 6822 TO teb.lokey@enron.com
## 6562 82222 6823 TO teb.lokey@enron.com
## 6563 82228 6829 TO teb.lokey@enron.com
## 6564 82237 6830 TO danny.mccarty@enron.com
## 6565 82238 6830 TO shelley.corman@enron.com
## 6566 82239 6830 TO drew.fossum@enron.com
## 6567 82243 6830 TO kevin.hyatt@enron.com
## 6568 82246 6830 TO stanley.horton@enron.com
## 6569 82250 6830 TO rod.hayslett@enron.com
## 6570 82259 6830 TO lynn.blair@enron.com
## 6571 82264 6830 TO steven.harris@enron.com
## 6572 82270 6830 TO teb.lokey@enron.com
## 6573 82287 6832 CC lynn.blair@enron.com
## 6574 82295 6832 CC shelley.corman@enron.com
## 6575 82303 6832 CC drew.fossum@enron.com
## 6576 82307 6832 CC steven.harris@enron.com
## 6577 82311 6832 CC rod.hayslett@enron.com
## 6578 82321 6832 CC steven.j.kean@enron.com
## 6579 82331 6832 CC teb.lokey@enron.com
## 6580 82365 6832 CC richard.shapiro@enron.com
## 6581 82368 6832 CC james.d.steffes@enron.com
## 6582 82387 6832 CC stanley.horton@enron.com
## 6583 82395 6832 BCC lynn.blair@enron.com
## 6584 82403 6832 BCC shelley.corman@enron.com
## 6585 82411 6832 BCC drew.fossum@enron.com
## 6586 82415 6832 BCC steven.harris@enron.com
## 6587 82419 6832 BCC rod.hayslett@enron.com
## 6588 82429 6832 BCC steven.j.kean@enron.com
## 6589 82439 6832 BCC teb.lokey@enron.com
## 6590 82473 6832 BCC richard.shapiro@enron.com
## 6591 82476 6832 BCC james.d.steffes@enron.com
## 6592 82495 6832 BCC stanley.horton@enron.com
## 6593 82501 6833 CC teb.lokey@enron.com
## 6594 82512 6833 BCC teb.lokey@enron.com
## 6595 82522 6835 TO teb.lokey@enron.com
## 6596 82527 6836 TO teb.lokey@enron.com
## 6597 82528 6837 TO teb.lokey@enron.com
## 6598 82529 6838 TO teb.lokey@enron.com
## 6599 82533 6839 TO teb.lokey@enron.com
## 6600 82546 6844 TO teb.lokey@enron.com
## 6601 82552 6846 TO shelley.corman@enron.com
## 6602 82553 6846 CC teb.lokey@enron.com
## 6603 82554 6846 BCC teb.lokey@enron.com
## 6604 82561 6847 TO danny.mccarty@enron.com
## 6605 82562 6847 TO shelley.corman@enron.com
## 6606 82563 6847 TO drew.fossum@enron.com
## 6607 82567 6847 TO kevin.hyatt@enron.com
## 6608 82570 6847 TO stanley.horton@enron.com
## 6609 82574 6847 TO rod.hayslett@enron.com
## 6610 82583 6847 TO lynn.blair@enron.com
## 6611 82588 6847 TO steven.harris@enron.com
## 6612 82594 6847 TO teb.lokey@enron.com
## 6613 82612 6849 TO shelley.corman@enron.com
## 6614 82614 6849 TO lindy.donoho@enron.com
## 6615 82617 6849 TO tracy.geaccone@enron.com
## 6616 82621 6849 TO steven.harris@enron.com
## 6617 82627 6849 TO michelle.lokay@enron.com
## 6618 82635 6849 TO lynn.blair@enron.com
## 6619 82658 6849 TO teb.lokey@enron.com
## 6620 82666 6849 TO paul.y barbo@enron.com
## 6621 82667 6850 TO teb.lokey@enron.com
## 6622 82668 6851 TO drew.fossum@enron.com
## 6623 82670 6851 TO steven.harris@enron.com
## 6624 82673 6851 TO danny.mccarty@enron.com
## 6625 82681 6854 TO teb.lokey@enron.com
## 6626 82686 6855 TO lynn.blair@enron.com
## 6627 82695 6855 TO shelley.corman@enron.com
## 6628 82703 6855 TO drew.fossum@enron.com
## 6629 82707 6855 TO steven.harris@enron.com
## 6630 82711 6855 TO rod.hayslett@enron.com
## 6631 82718 6855 TO stanley.horton@enron.com
## 6632 82722 6855 TO steven.j.kean@enron.com
## 6633 82732 6855 TO teb.lokey@enron.com
## 6634 82767 6855 TO richard.shapiro@enron.com
## 6635 82771 6855 TO james.d.steffes@enron.com
## 6636 82798 6862 TO danny.mccarty@enron.com
## 6637 82799 6862 TO shelley.corman@enron.com
## 6638 82800 6862 TO drew.fossum@enron.com
## 6639 82804 6862 TO kevin.hyatt@enron.com
## 6640 82807 6862 TO stanley.horton@enron.com
## 6641 82811 6862 TO rod.hayslett@enron.com
## 6642 82820 6862 TO lynn.blair@enron.com
## 6643 82825 6862 TO steven.harris@enron.com
## 6644 82831 6862 TO teb.lokey@enron.com
## 6645 82842 6863 TO teb.lokey@enron.com
## 6646 82843 6864 TO steven.harris@enron.com
## 6647 82844 6864 TO teb.lokey@enron.com
## 6648 82857 6865 TO joe.hartsoe@enron.com
## 6649 82858 6865 TO nancy.bagot@enron.com
## 6650 82859 6865 CC kay.miller@enron.com
## 6651 82860 6865 CC no.address@enron.com
## 6652 82861 6865 CC teb.lokey@enron.com
## 6653 82862 6865 CC mike.bryant@enron.com
## 6654 82863 6865 CC steven.january@enron.com
## 6655 82864 6865 BCC kay.miller@enron.com
## 6656 82865 6865 BCC no.address@enron.com
## 6657 82866 6865 BCC teb.lokey@enron.com
## 6658 82867 6865 BCC mike.bryant@enron.com
## 6659 82868 6865 BCC steven.january@enron.com
## 6660 82871 6866 TO teb.lokey@enron.com
## 6661 82873 6866 TO shelley.corman@enron.com
## 6662 82875 6867 TO teb.lokey@enron.com
## 6663 82877 6868 TO teb.lokey@enron.com
## 6664 82902 6869 TO teb.lokey@enron.com
## 6665 82918 6870 TO teb.lokey@enron.com
## 6666 82923 6871 TO teb.lokey@enron.com
## 6667 82948 6872 TO teb.lokey@enron.com
## 6668 82960 6873 TO teb.lokey@enron.com
## 6669 82996 6874 TO teb.lokey@enron.com
## 6670 82999 6875 TO teb.lokey@enron.com
## 6671 83018 6885 TO teb.lokey@enron.com
## 6672 83020 6886 TO steven.harris@enron.com
## 6673 83022 6886 TO teb.lokey@enron.com
## 6674 83037 6887 TO danny.mccarty@enron.com
## 6675 83038 6887 TO shelley.corman@enron.com
## 6676 83039 6887 TO drew.fossum@enron.com
## 6677 83043 6887 TO kevin.hyatt@enron.com
## 6678 83046 6887 TO stanley.horton@enron.com
## 6679 83050 6887 TO rod.hayslett@enron.com
## 6680 83059 6887 TO lynn.blair@enron.com
## 6681 83064 6887 TO steven.harris@enron.com
## 6682 83070 6887 TO teb.lokey@enron.com
## 6683 83082 6888 TO steven.harris@enron.com
## 6684 83084 6888 TO teb.lokey@enron.com
## 6685 83091 6890 TO teb.lokey@enron.com
## 6686 83092 6890 TO audrey.robertson@enron.com
## 6687 83093 6890 TO glen.hass@enron.com
## 6688 83094 6890 TO lee.huber@enron.com
## 6689 83095 6890 TO mark.mcconnell@enron.com
## 6690 83096 6890 TO perry.frazier@enron.com
## 6691 83097 6890 TO morgan.gottsponer@enron.com
## 6692 83098 6890 CC kimberly.watson@enron.com
## 6693 83099 6890 BCC kimberly.watson@enron.com
## 6694 83100 6891 TO teb.lokey@enron.com
## 6695 83101 6892 TO teb.lokey@enron.com
## 6696 83226 6893 TO kenneth.lay@enron.com
## 6697 83248 6893 TO matthew.lenhart@enron.com
## 6698 83293 6893 TO teb.lokey@enron.com
## 6699 83305 6893 TO paul.lucci@enron.com
## 6700 83321 6893 TO mike.maggi@enron.com
## 6701 83365 6893 TO larry.may@enron.com
## 6702 83375 6893 TO danny.mccarty@enron.com
## 6703 83387 6893 TO brad.mckay@enron.com
## 6704 83512 6894 TO kenneth.lay@enron.com
## 6705 83534 6894 TO matthew.lenhart@enron.com
## 6706 83579 6894 TO teb.lokey@enron.com
## 6707 83591 6894 TO paul.lucci@enron.com
## 6708 83607 6894 TO mike.maggi@enron.com
## 6709 83651 6894 TO larry.may@enron.com
## 6710 83661 6894 TO danny.mccarty@enron.com
## 6711 83673 6894 TO brad.mckay@enron.com
## 6712 83747 6895 CC teb.lokey@enron.com
## 6713 83750 6895 BCC teb.lokey@enron.com
## 6714 83752 6896 TO dennis.alters@enron.com
## 6715 83753 6896 TO larry.f.campbell@enron.com
## 6716 83754 6896 TO doug.cebryk@enron.com
## 6717 83755 6896 TO teb.lokey@enron.com
## 6718 83756 6896 TO ron.matthews@enron.com
## 6719 83757 6896 TO johnny.mcgee@enron.com
## 6720 83758 6896 TO john.shafer@enron.com
## 6721 83759 6896 TO gina.taylor@enron.com
## 6722 83760 6896 TO stephen.veatch@enron.com
## 6723 83761 6896 TO kimberly.watson@enron.com
## 6724 83762 6896 CC eric.gadd@enron.com
## 6725 83763 6896 BCC eric.gadd@enron.com
## 6726 83778 6899 TO lynn.blair@enron.com
## 6727 83788 6899 TO shelley.corman@enron.com
## 6728 83831 6899 TO teb.lokey@enron.com
## 6729 83836 6899 TO danny.mccarty@enron.com
## 6730 83905 6900 TO lynn.blair@enron.com
## 6731 83914 6900 TO shelley.corman@enron.com
## 6732 83922 6900 TO drew.fossum@enron.com
## 6733 83926 6900 TO steven.harris@enron.com
## 6734 83930 6900 TO rod.hayslett@enron.com
## 6735 83937 6900 TO stanley.horton@enron.com
## 6736 83941 6900 TO steven.j.kean@enron.com
## 6737 83951 6900 TO teb.lokey@enron.com
## 6738 83987 6900 TO richard.shapiro@enron.com
## 6739 83991 6900 TO james.d.steffes@enron.com
## 6740 84029 6901 TO teb.lokey@enron.com
## 6741 84063 6902 TO teb.lokey@enron.com
## 6742 84085 6903 TO danny.mccarty@enron.com
## 6743 84086 6903 TO shelley.corman@enron.com
## 6744 84087 6903 TO drew.fossum@enron.com
## 6745 84091 6903 TO kevin.hyatt@enron.com
## 6746 84094 6903 TO stanley.horton@enron.com
## 6747 84098 6903 TO rod.hayslett@enron.com
## 6748 84107 6903 TO lynn.blair@enron.com
## 6749 84112 6903 TO steven.harris@enron.com
## 6750 84118 6903 TO teb.lokey@enron.com
## 6751 84131 6904 TO teb.lokey@enron.com
## 6752 84137 6905 TO steven.harris@enron.com
## 6753 84139 6905 TO teb.lokey@enron.com
## 6754 84140 6906 TO teb.lokey@enron.com
## 6755 84142 6907 TO teb.lokey@enron.com
## 6756 84149 6908 TO teb.lokey@enron.com
## 6757 84153 6908 TO lindy.donoho@enron.com
## 6758 84167 6910 TO teb.lokey@enron.com
## 6759 84169 6911 TO teb.lokey@enron.com
## 6760 84175 6912 TO lynn.blair@enron.com
## 6761 84183 6912 TO shelley.corman@enron.com
## 6762 84187 6912 TO drew.fossum@enron.com
## 6763 84190 6912 TO steven.harris@enron.com
## 6764 84193 6912 TO rod.hayslett@enron.com
## 6765 84197 6912 TO stanley.horton@enron.com
## 6766 84201 6912 TO steven.j.kean@enron.com
## 6767 84208 6912 TO teb.lokey@enron.com
## 6768 84210 6912 TO danny.mccarty@enron.com
## 6769 84241 6916 TO shelley.corman@enron.com
## 6770 84245 6916 CC teb.lokey@enron.com
## 6771 84249 6916 BCC teb.lokey@enron.com
## 6772 84253 6917 TO steven.harris@enron.com
## 6773 84255 6917 TO drew.fossum@enron.com
## 6774 84258 6917 TO teb.lokey@enron.com
## 6775 84260 6918 TO glen.hass@enron.com
## 6776 84261 6918 TO no.address@enron.com
## 6777 84262 6918 TO tony.pryor@enron.com
## 6778 84263 6918 TO drew.fossum@enron.com
## 6779 84264 6918 TO kay.miller@enron.com
## 6780 84265 6918 TO robert.kilmer@enron.com
## 6781 84266 6918 TO teb.lokey@enron.com
## 6782 84267 6918 TO blair.lichtenwalter@enron.com
## 6783 84268 6918 CC lorraine.lindberg@enron.com
## 6784 84269 6918 CC kimberly.watson@enron.com
## 6785 84270 6918 BCC lorraine.lindberg@enron.com
## 6786 84271 6918 BCC kimberly.watson@enron.com
## 6787 84274 6919 TO teb.lokey@enron.com
## 6788 84276 6920 TO dorothy.mccoppin@enron.com
## 6789 84277 6920 TO frazier.king@enron.com
## 6790 84278 6920 TO shelley.corman@enron.com
## 6791 84279 6920 TO joe.hartsoe@enron.com
## 6792 84280 6920 TO robert.kilmer@enron.com
## 6793 84281 6920 TO elizabeth.brown@enron.com
## 6794 84282 6920 TO rick.dietz@enron.com
## 6795 84283 6921 TO teb.lokey@enron.com
## 6796 84284 6922 TO teb.lokey@enron.com
## 6797 84290 6925 TO lynn.blair@enron.com
## 6798 84298 6925 TO shelley.corman@enron.com
## 6799 84302 6925 TO drew.fossum@enron.com
## 6800 84305 6925 TO steven.harris@enron.com
## 6801 84308 6925 TO rod.hayslett@enron.com
## 6802 84312 6925 TO stanley.horton@enron.com
## 6803 84316 6925 TO steven.j.kean@enron.com
## 6804 84323 6925 TO teb.lokey@enron.com
## 6805 84325 6925 TO danny.mccarty@enron.com
## 6806 84353 6926 TO teb.lokey@enron.com
## 6807 84377 6927 TO teb.lokey@enron.com
## 6808 84392 6928 TO lynn.blair@enron.com
## 6809 84401 6928 TO shelley.corman@enron.com
## 6810 84409 6928 TO drew.fossum@enron.com
## 6811 84414 6928 TO steven.harris@enron.com
## 6812 84418 6928 TO rod.hayslett@enron.com
## 6813 84425 6928 TO stanley.horton@enron.com
## 6814 84429 6928 TO steven.j.kean@enron.com
## 6815 84439 6928 TO teb.lokey@enron.com
## 6816 84475 6928 TO richard.shapiro@enron.com
## 6817 84479 6928 TO james.d.steffes@enron.com
## 6818 84494 6929 TO teb.lokey@enron.com
## 6819 84495 6929 TO steven.harris@enron.com
## 6820 84503 6930 TO lindy.donoho@enron.com
## 6821 84516 6930 TO teb.lokey@enron.com
## 6822 84535 6931 TO lindy.donoho@enron.com
## 6823 84548 6931 TO teb.lokey@enron.com
## 6824 84562 6932 TO steven.harris@enron.com
## 6825 84563 6932 TO teb.lokey@enron.com
## 6826 84566 6932 TO lindy.donoho@enron.com
## 6827 84567 6932 TO steven.harris@enron.com
## 6828 84570 6932 TO michelle.lokay@enron.com
## 6829 84573 6932 TO paul.y barbo@enron.com
## 6830 84576 6933 TO michelle.lokay@enron.com
## 6831 84578 6933 TO teb.lokey@enron.com
## 6832 84587 6936 TO teb.lokey@enron.com
## 6833 84588 6936 TO frazier.king@enron.com
## 6834 84589 6937 TO teb.lokey@enron.com
## 6835 84597 6940 TO teb.lokey@enron.com
## 6836 84598 6941 TO teb.lokey@enron.com
## 6837 84601 6943 TO michelle.lokay@enron.com
## 6838 84603 6943 TO teb.lokey@enron.com
## 6839 84611 6945 TO teb.lokey@enron.com
## 6840 84619 6946 TO lindy.donoho@enron.com
## 6841 84632 6946 TO teb.lokey@enron.com
## 6842 84654 6950 TO lindy.donoho@enron.com
## 6843 84667 6950 TO teb.lokey@enron.com
## 6844 84723 6952 TO lynn.blair@enron.com
## 6845 84732 6952 TO shelley.corman@enron.com
## 6846 84740 6952 TO drew.fossum@enron.com
## 6847 84745 6952 TO steven.harris@enron.com
## 6848 84749 6952 TO rod.hayslett@enron.com
## 6849 84756 6952 TO stanley.horton@enron.com
## 6850 84760 6952 TO steven.j.kean@enron.com
## 6851 84770 6952 TO teb.lokey@enron.com
## 6852 84806 6952 TO richard.shapiro@enron.com
## 6853 84810 6952 TO james.d.steffes@enron.com
## 6854 84848 6953 TO teb.lokey@enron.com
## 6855 84868 6956 TO teb.lokey@enron.com
## 6856 84872 6959 TO shelley.corman@enron.com
## 6857 84880 6959 TO lindy.donoho@enron.com
## 6858 84893 6959 TO teb.lokey@enron.com
## 6859 84906 6960 TO dennis.alters@enron.com
## 6860 84907 6960 TO larry.f.campbell@enron.com
## 6861 84908 6960 TO doug.cebryk@enron.com
## 6862 84909 6960 TO teb.lokey@enron.com
## 6863 84910 6960 TO ron.matthews@enron.com
## 6864 84911 6960 TO johnny.mcgee@enron.com
## 6865 84912 6960 TO john.shafer@enron.com
## 6866 84913 6960 TO gina.taylor@enron.com
## 6867 84914 6960 TO stephen.veatch@enron.com
## 6868 84915 6960 TO kimberly.watson@enron.com
## 6869 84918 6961 TO shelley.corman@enron.com
## 6870 84921 6961 TO lindy.donoho@enron.com
## 6871 84923 6961 TO teb.lokey@enron.com
## 6872 84927 6961 TO lynn.blair@enron.com
## 6873 84943 6967 TO teb.lokey@enron.com
## 6874 84944 6968 TO teb.lokey@enron.com
## 6875 84946 6969 TO teb.lokey@enron.com
## 6876 84950 6970 TO shelley.corman@enron.com
## 6877 84954 6970 TO steven.harris@enron.com
## 6878 84971 6970 TO lindy.donoho@enron.com
## 6879 84980 6970 TO teb.lokey@enron.com
## 6880 84992 6971 TO shelley.corman@enron.com
## 6881 84995 6971 TO lindy.donoho@enron.com
## 6882 84997 6971 TO teb.lokey@enron.com
## 6883 85001 6971 TO lynn.blair@enron.com
## 6884 85008 6972 TO teb.lokey@enron.com
## 6885 85015 6974 CC teb.lokey@enron.com
## 6886 85017 6974 BCC teb.lokey@enron.com
## 6887 85020 6975 TO teb.lokey@enron.com
## 6888 85022 6976 TO teb.lokey@enron.com
## 6889 85023 6977 TO teb.lokey@enron.com
## 6890 85029 6978 TO teb.lokey@enron.com
## 6891 85039 6978 CC steven.harris@enron.com
## 6892 85044 6978 BCC steven.harris@enron.com
## 6893 85046 6979 TO teb.lokey@enron.com
## 6894 85056 6980 TO teb.lokey@enron.com
## 6895 85062 6986 TO steven.harris@enron.com
## 6896 85066 6986 CC teb.lokey@enron.com
## 6897 85070 6986 BCC teb.lokey@enron.com
## 6898 85097 6988 TO teb.lokey@enron.com
## 6899 85110 6990 TO teb.lokey@enron.com
## 6900 85112 6991 CC teb.lokey@enron.com
## 6901 85114 6991 BCC teb.lokey@enron.com
## 6902 85117 6992 TO shelley.corman@enron.com
## 6903 85120 6992 TO drew.fossum@enron.com
## 6904 85127 6992 TO teb.lokey@enron.com
## 6905 85167 6994 TO teb.lokey@enron.com
## 6906 85234 6995 TO teb.lokey@enron.com
## 6907 85237 6996 TO shelley.corman@enron.com
## 6908 85240 6996 TO teb.lokey@enron.com
## 6909 85248 6996 TO lindy.donoho@enron.com
## 6910 85285 6998 TO teb.lokey@enron.com
## 6911 85287 6999 TO teb.lokey@enron.com
## 6912 85289 6999 TO kevin.hyatt@enron.com
## 6913 85291 7001 TO teb.lokey@enron.com
## 6914 85296 7003 TO michelle.lokay@enron.com
## 6915 85297 7003 TO lindy.donoho@enron.com
## 6916 85298 7003 TO jeff.dasovich@enron.com
## 6917 85301 7003 TO teb.lokey@enron.com
## 6918 85304 7003 TO steven.harris@enron.com
## 6919 85310 7005 TO lindy.donoho@enron.com
## 6920 85312 7005 TO steven.harris@enron.com
## 6921 85316 7005 CC teb.lokey@enron.com
## 6922 85319 7005 BCC teb.lokey@enron.com
## 6923 85320 7006 TO teb.lokey@enron.com
## 6924 85322 7007 TO glen.hass@enron.com
## 6925 85323 7007 TO no.address@enron.com
## 6926 85324 7007 TO kimberly.watson@enron.com
## 6927 85325 7007 TO lorraine.lindberg@enron.com
## 6928 85326 7007 TO tk.lohman@enron.com
## 6929 85327 7007 TO lindy.donoho@enron.com
## 6930 85328 7007 TO tony.pryor@enron.com
## 6931 85329 7007 TO blair.lichtenwalter@enron.com
## 6932 85330 7007 TO teb.lokey@enron.com
## 6933 85331 7007 CC steven.harris@enron.com
## 6934 85332 7007 CC robert.kilmer@enron.com
## 6935 85333 7007 CC kay.miller@enron.com
## 6936 85334 7007 BCC steven.harris@enron.com
## 6937 85335 7007 BCC robert.kilmer@enron.com
## 6938 85336 7007 BCC kay.miller@enron.com
## 6939 85345 7010 TO larry.f.campbell@enron.com
## 6940 85347 7010 TO teb.lokey@enron.com
## 6941 85353 7011 TO lynn.blair@enron.com
## 6942 85362 7011 TO shelley.corman@enron.com
## 6943 85367 7011 TO lindy.donoho@enron.com
## 6944 85371 7011 TO drew.fossum@enron.com
## 6945 85376 7011 TO steven.harris@enron.com
## 6946 85380 7011 TO rod.hayslett@enron.com
## 6947 85387 7011 TO stanley.horton@enron.com
## 6948 85391 7011 TO steven.j.kean@enron.com
## 6949 85401 7011 TO teb.lokey@enron.com
## 6950 85437 7011 TO richard.shapiro@enron.com
## 6951 85441 7011 TO james.d.steffes@enron.com
## 6952 85456 7012 TO stanley.horton@enron.com
## 6953 85457 7012 TO rod.hayslett@enron.com
## 6954 85460 7012 TO danny.mccarty@enron.com
## 6955 85464 7012 TO teb.lokey@enron.com
## 6956 85465 7012 CC steven.harris@enron.com
## 6957 85467 7012 CC drew.fossum@enron.com
## 6958 85469 7012 BCC steven.harris@enron.com
## 6959 85471 7012 BCC drew.fossum@enron.com
## 6960 85473 7013 TO teb.lokey@enron.com
## 6961 85482 7014 TO teb.lokey@enron.com
## 6962 85507 7016 TO teb.lokey@enron.com
## 6963 85556 7017 TO teb.lokey@enron.com
## 6964 85561 7022 TO teb.lokey@enron.com
## 6965 85568 7023 CC teb.lokey@enron.com
## 6966 85569 7023 BCC teb.lokey@enron.com
## 6967 85577 7025 CC teb.lokey@enron.com
## 6968 85578 7025 BCC teb.lokey@enron.com
## 6969 85591 7029 CC teb.lokey@enron.com
## 6970 85593 7029 BCC teb.lokey@enron.com
## 6971 85597 7030 CC teb.lokey@enron.com
## 6972 85599 7030 BCC teb.lokey@enron.com
## 6973 85600 7031 TO mary.darveaux@enron.com
## 6974 85601 7031 TO j..porter@enron.com
## 6975 85602 7031 CC kay.miller@enron.com
## 6976 85603 7031 CC teb.lokey@enron.com
## 6977 85604 7031 BCC kay.miller@enron.com
## 6978 85605 7031 BCC teb.lokey@enron.com
## 6979 85606 7032 TO drew.fossum@enron.com
## 6980 85609 7032 CC teb.lokey@enron.com
## 6981 85610 7032 BCC teb.lokey@enron.com
## 6982 85612 7034 TO teb.lokey@enron.com
## 6983 85613 7035 TO teb.lokey@enron.com
## 6984 85614 7036 TO steven.harris@enron.com
## 6985 85620 7036 TO teb.lokey@enron.com
## 6986 85622 7036 CC drew.fossum@enron.com
## 6987 85623 7036 CC danny.mccarty@enron.com
## 6988 85625 7036 BCC drew.fossum@enron.com
## 6989 85626 7036 BCC danny.mccarty@enron.com
## 6990 85632 7041 TO teb.lokey@enron.com
## 6991 85644 7044 TO teb.lokey@enron.com
## 6992 85655 7045 TO teb.lokey@enron.com
## 6993 85665 7047 CC teb.lokey@enron.com
## 6994 85676 7047 BCC teb.lokey@enron.com
## 6995 85688 7050 TO teb.lokey@enron.com
## 6996 85694 7055 TO steven.harris@enron.com
## 6997 85697 7055 TO lindy.donoho@enron.com
## 6998 85698 7055 TO michelle.lokay@enron.com
## 6999 85706 7055 TO teb.lokey@enron.com
## 7000 85708 7056 TO lindy.donoho@enron.com
## 7001 85709 7056 TO teb.lokey@enron.com
## 7002 85717 7057 TO teb.lokey@enron.com
## 7003 85720 7058 CC teb.lokey@enron.com
## 7004 85731 7058 BCC teb.lokey@enron.com
## 7005 85755 7060 TO teb.lokey@enron.com
## 7006 85770 7062 TO teb.lokey@enron.com
## 7007 85785 7063 TO teb.lokey@enron.com
## 7008 85808 7073 TO teb.lokey@enron.com
## 7009 85824 7075 TO teb.lokey@enron.com
## 7010 85833 7076 TO drew.fossum@enron.com
## 7011 85835 7076 TO steven.harris@enron.com
## 7012 85837 7076 TO teb.lokey@enron.com
## 7013 85838 7076 TO danny.mccarty@enron.com
## 7014 85848 7081 TO teb.lokey@enron.com
## 7015 85849 7082 TO teb.lokey@enron.com
## 7016 85850 7083 TO steven.harris@enron.com
## 7017 85852 7083 TO teb.lokey@enron.com
## 7018 85855 7083 TO drew.fossum@enron.com
## 7019 85868 7089 TO steven.harris@enron.com
## 7020 85870 7089 TO teb.lokey@enron.com
## 7021 85873 7089 TO drew.fossum@enron.com
## 7022 85880 7090 TO teb.lokey@enron.com
## 7023 85881 7091 TO dennis.alters@enron.com
## 7024 85882 7091 TO larry.f.campbell@enron.com
## 7025 85883 7091 TO doug.cebryk@enron.com
## 7026 85884 7091 TO sarah.haden@enron.com
## 7027 85885 7091 TO blair.lichtenwalter@enron.com
## 7028 85886 7091 TO teb.lokey@enron.com
## 7029 85887 7091 TO ron.matthews@enron.com
## 7030 85888 7091 TO johnny.mcgee@enron.com
## 7031 85889 7091 TO john.shafer@enron.com
## 7032 85890 7091 TO gina.taylor@enron.com
## 7033 85891 7091 TO stephen.veatch@enron.com
## 7034 85892 7091 TO kimberly.watson@enron.com
## 7035 85893 7091 CC susan.wadle@enron.com
## 7036 85894 7091 BCC susan.wadle@enron.com
## 7037 85897 7092 TO teb.lokey@enron.com
## 7038 85898 7092 TO kevin.hyatt@enron.com
## 7039 85907 7095 TO teb.lokey@enron.com
## 7040 85913 7097 TO rod.hayslett@enron.com
## 7041 85930 7097 TO teb.lokey@enron.com
## 7042 85941 7098 TO kevin.hyatt@enron.com
## 7043 85946 7098 TO teb.lokey@enron.com
## 7044 85966 7099 TO kevin.hyatt@enron.com
## 7045 85971 7099 TO teb.lokey@enron.com
## 7046 85985 7100 TO teb.lokey@enron.com
## 7047 85987 7101 TO teb.lokey@enron.com
## 7048 85993 7102 TO teb.lokey@enron.com
## 7049 86007 7103 TO teb.lokey@enron.com
## 7050 86023 7104 TO teb.lokey@enron.com
## 7051 86041 7107 TO lindy.donoho@enron.com
## 7052 86051 7107 TO teb.lokey@enron.com
## 7053 86061 7109 TO kevin.hyatt@enron.com
## 7054 86065 7110 TO teb.lokey@enron.com
## 7055 86069 7111 TO teb.lokey@enron.com
## 7056 86075 7113 TO teb.lokey@enron.com
## 7057 86078 7115 TO drew.fossum@enron.com
## 7058 86079 7115 TO robert.kilmer@enron.com
## 7059 86080 7115 TO teb.lokey@enron.com
## 7060 86082 7116 TO teb.lokey@enron.com
## 7061 86088 7121 TO teb.lokey@enron.com
## 7062 86094 7123 TO teb.lokey@enron.com
## 7063 86106 7124 TO lindy.donoho@enron.com
## 7064 86119 7124 TO teb.lokey@enron.com
## 7065 86177 7125 TO teb.lokey@enron.com
## 7066 86180 7125 TO lindy.donoho@enron.com
## 7067 86190 7126 TO drew.fossum@enron.com
## 7068 86191 7126 TO kimberly.watson@enron.com
## 7069 86192 7126 TO robert.kilmer@enron.com
## 7070 86193 7126 TO robert.abernethy@enron.com
## 7071 86194 7126 TO teb.lokey@enron.com
## 7072 86195 7126 TO steven.harris@enron.com
## 7073 86196 7127 TO drew.fossum@enron.com
## 7074 86197 7127 TO kay.miller@enron.com
## 7075 86198 7127 TO kimberly.watson@enron.com
## 7076 86199 7127 TO paul.y barbo@enron.com
## 7077 86200 7127 TO paul.y barbo@enron.com
## 7078 86201 7127 TO j..porter@enron.com
## 7079 86202 7127 TO maria.pavlou@enron.com
## 7080 86203 7127 TO teb.lokey@enron.com
## 7081 86218 7129 CC richard.ring@enron.com
## 7082 86221 7129 BCC richard.ring@enron.com
## 7083 86226 7132 TO richard.ring@enron.com
## 7084 86227 7133 TO richard.ring@enron.com
## 7085 86326 7137 CC richard.ring@enron.com
## 7086 86328 7137 BCC richard.ring@enron.com
## 7087 86331 7138 CC richard.ring@enron.com
## 7088 86333 7138 BCC richard.ring@enron.com
## 7089 86340 7144 TO m..forney@enron.com
## 7090 86348 7144 TO richard.ring@enron.com
## 7091 86411 7187 TO tina.holcombe@enron.com
## 7092 86412 7188 TO d..smith@enron.com
## 7093 86413 7189 TO d..smith@enron.com
## 7094 86414 7190 TO d..smith@enron.com
## 7095 86415 7191 TO d..smith@enron.com
## 7096 86417 7193 TO bledsoe@enron.com
## 7097 86421 7196 TO rick.wurlitzer@enron.com
## 7098 86422 7197 TO d..merril@enron.com
## 7099 86424 7199 TO amador.granado@enron.com
## 7100 86425 7200 TO philip.crowley@enron.com
## 7101 86426 7201 TO no.address@enron.com
## 7102 86427 7202 TO bledsoe@enron.com
## 7103 86429 7203 TO k.johnson@enron.com
## 7104 86430 7203 CC angela.smith@enron.com
## 7105 86431 7203 BCC angela.smith@enron.com
## 7106 86432 7204 TO james.d.steffes@enron.com
## 7107 86433 7205 TO d..smith@enron.com
## 7108 86434 7205 TO glenn.frazier@enron.com
## 7109 86435 7205 TO jeremy.blachman@enron.com
## 7110 86436 7205 TO angela.schwarz@enron.com
## 7111 86437 7205 TO jeff.dasovich@enron.com
## 7112 86438 7205 TO james.d.steffes@enron.com
## 7113 86439 7205 TO deborah.merril@enron.com
## 7114 86440 7206 TO d..smith@enron.com
## 7115 86441 7206 TO lamar.frazier@enron.com
## 7116 86442 7206 TO jeremy.blachman@enron.com
## 7117 86443 7206 TO angela.schwarz@enron.com
## 7118 86444 7206 TO jeff.dasovich@enron.com
## 7119 86445 7206 TO james.d.steffes@enron.com
## 7120 86446 7206 CC d..merril@enron.com
## 7121 86447 7206 CC . @enron.com
## 7122 86448 7206 BCC d..merril@enron.com
## 7123 86449 7206 BCC . @enron.com
## 7124 86450 7207 TO cathy.deleonardis@enron.com
## 7125 86451 7207 TO a..cordova@enron.com
## 7126 86453 7209 TO h..foster@enron.com
## 7127 86455 7211 TO vivian.hart@enron.com
## 7128 86457 7213 TO vivian.hart@enron.com
## 7129 86458 7214 TO rogers.herndon@enron.com
## 7130 86459 7215 TO rogers.herndon@enron.com
## 7131 86460 7216 TO juan.padron@enron.com
## 7132 86461 7217 TO k.johnson@enron.com
## 7133 86462 7218 TO christina.finelli@enron.com
## 7134 86463 7219 TO elliot.mainzer@enron.com
## 7135 86464 7220 TO rogers.herndon@enron.com
## 7136 86465 7221 TO stacey.bolton@enron.com
## 7137 86466 7221 CC elliot.mainzer@enron.com
## 7138 86467 7221 BCC elliot.mainzer@enron.com
## 7139 86468 7222 TO peggy.mahoney@enron.com
## 7140 86469 7222 CC rogers.herndon@enron.com
## 7141 86470 7222 BCC rogers.herndon@enron.com
## 7142 86471 7223 TO nichole.gunter@enron.com
## 7143 86472 7224 TO h..foster@enron.com
## 7144 86473 7225 TO kay.quigley@enron.com
## 7145 86474 7225 CC elliot.mainzer@enron.com
## 7146 86475 7225 BCC elliot.mainzer@enron.com
## 7147 86476 7226 TO bill.hatch@enron.com
## 7148 86477 7227 TO peggy.mahoney@enron.com
## 7149 86479 7229 TO frank.rishe@enron.com
## 7150 86480 7230 TO juan.padron@enron.com
## 7151 86481 7231 TO juan.padron@enron.com
## 7152 86482 7232 TO juan.padron@enron.com
## 7153 86483 7233 TO elliot.mainzer@enron.com
## 7154 86484 7234 TO kay.quigley@enron.com
## 7155 86485 7234 TO elliot.mainzer@enron.com
## 7156 86486 7235 TO h..foster@enron.com
## 7157 86487 7236 TO alex.hidalgo@enron.com
## 7158 86489 7238 TO richard.ring@enron.com
## 7159 86494 7239 CC richard.ring@enron.com
## 7160 86496 7239 BCC richard.ring@enron.com
## 7161 86497 7240 TO richard.ring@enron.com
## 7162 86500 7241 TO richard.ring@enron.com
## 7163 86525 7248 TO richard.ring@enron.com
## 7164 86531 7252 TO richard.ring@enron.com
## 7165 86549 7257 TO richard.ring@enron.com
## 7166 86557 7259 TO richard.ring@enron.com
## 7167 86564 7261 TO richard.ring@enron.com
## 7168 86566 7262 TO richard.ring@enron.com
## 7169 86589 7264 CC richard.ring@enron.com
## 7170 86590 7264 BCC richard.ring@enron.com
## 7171 86592 7265 TO sally.beck@enron.com
## 7172 86593 7265 TO harry.arora@enron.com
## 7173 86646 7265 TO richard.ring@enron.com
## 7174 86648 7266 CC richard.ring@enron.com
## 7175 86649 7266 BCC richard.ring@enron.com
## 7176 86650 7267 TO richard.ring@enron.com
## 7177 86659 7268 CC richard.ring@enron.com
## 7178 86666 7268 BCC richard.ring@enron.com
## 7179 86669 7269 TO richard.ring@enron.com
## 7180 86675 7270 CC richard.ring@enron.com
## 7181 86678 7270 BCC richard.ring@enron.com
## 7182 86682 7271 CC richard.ring@enron.com
## 7183 86683 7271 BCC richard.ring@enron.com
## 7184 86687 7273 TO jeff.king@enron.com
## 7185 86706 7273 TO richard.ring@enron.com
## 7186 86709 7273 TO benjamin.rogers@enron.com
## 7187 86712 7273 TO joe.stepenovitch@enron.com
## 7188 86736 7279 TO steven.j.kean@enron.com
## 7189 86746 7279 TO doug.gilbert-smith@enron.com
## 7190 86751 7279 TO richard.ring@enron.com
## 7191 86753 7279 TO james.d.steffes@enron.com
## 7192 86775 7281 TO richard.ring@enron.com
## 7193 86785 7283 TO richard.ring@enron.com
## 7194 86802 7284 TO richard.ring@enron.com
## 7195 86807 7285 TO richard.ring@enron.com
## 7196 86808 7286 TO richard.ring@enron.com
## 7197 86809 7287 TO richard.ring@enron.com
## 7198 86810 7288 TO richard.ring@enron.com
## 7199 86811 7289 TO richard.ring@enron.com
## 7200 86814 7291 TO richard.ring@enron.com
## 7201 86815 7292 TO richard.ring@enron.com
## 7202 86817 7294 TO richard.ring@enron.com
## 7203 86818 7295 TO richard.ring@enron.com
## 7204 86911 7300 TO richard.ring@enron.com
## 7205 86912 7301 TO richard.ring@enron.com
## 7206 86921 7305 TO richard.ring@enron.com
## 7207 86930 7306 CC richard.ring@enron.com
## 7208 86938 7306 BCC richard.ring@enron.com
## 7209 86948 7307 CC richard.ring@enron.com
## 7210 86956 7307 BCC richard.ring@enron.com
## 7211 86966 7308 CC richard.ring@enron.com
## 7212 86975 7308 BCC richard.ring@enron.com
## 7213 86984 7309 TO richard.ring@enron.com
## 7214 86994 7311 TO richard.ring@enron.com
## 7215 87160 7315 TO richard.ring@enron.com
## 7216 87161 7316 TO richard.ring@enron.com
## 7217 87162 7317 TO richard.ring@enron.com
## 7218 87163 7318 TO richard.ring@enron.com
## 7219 87164 7319 TO richard.ring@enron.com
## 7220 87165 7320 TO richard.ring@enron.com
## 7221 87166 7321 TO richard.ring@enron.com
## 7222 87167 7322 TO richard.ring@enron.com
## 7223 87170 7325 TO richard.ring@enron.com
## 7224 87173 7328 TO richard.ring@enron.com
## 7225 87174 7329 TO richard.ring@enron.com
## 7226 87179 7334 TO richard.ring@enron.com
## 7227 87181 7335 TO richard.ring@enron.com
## 7228 87184 7338 TO richard.ring@enron.com
## 7229 87189 7340 CC richard.ring@enron.com
## 7230 87190 7340 BCC richard.ring@enron.com
## 7231 87200 7349 CC richard.ring@enron.com
## 7232 87201 7349 BCC richard.ring@enron.com
## 7233 87202 7350 TO richard.ring@enron.com
## 7234 87205 7353 TO richard.ring@enron.com
## 7235 87211 7354 CC richard.ring@enron.com
## 7236 87217 7354 BCC richard.ring@enron.com
## 7237 87231 7356 TO richard.ring@enron.com
## 7238 87244 7358 TO richard.ring@enron.com
## 7239 87245 7359 TO richard.ring@enron.com
## 7240 87246 7360 TO richard.ring@enron.com
## 7241 87249 7361 TO richard.ring@enron.com
## 7242 87269 7362 CC richard.ring@enron.com
## 7243 87281 7362 BCC richard.ring@enron.com
## 7244 87290 7363 TO richard.ring@enron.com
## 7245 87298 7366 TO larry.f.campbell@enron.com
## 7246 87299 7366 TO dana.davis@enron.com
## 7247 87300 7366 TO chris.dorland@enron.com
## 7248 87316 7366 TO joe.quenet@enron.com
## 7249 87319 7366 TO joe.stepenovitch@enron.com
## 7250 87324 7366 TO richard.ring@enron.com
## 7251 87334 7366 CC james.d.steffes@enron.com
## 7252 87338 7366 BCC james.d.steffes@enron.com
## 7253 87344 7368 CC richard.ring@enron.com
## 7254 87356 7368 BCC richard.ring@enron.com
## 7255 87365 7369 TO richard.ring@enron.com
## 7256 87371 7371 CC richard.ring@enron.com
## 7257 87383 7371 BCC richard.ring@enron.com
## 7258 87394 7373 TO richard.ring@enron.com
## 7259 87398 7377 TO richard.ring@enron.com
## 7260 87404 7382 TO richard.ring@enron.com
## 7261 87405 7383 TO richard.ring@enron.com
## 7262 87408 7384 TO richard.ring@enron.com
## 7263 87410 7385 TO richard.ring@enron.com
## 7264 87414 7386 TO sally.beck@enron.com
## 7265 87415 7386 TO harry.arora@enron.com
## 7266 87468 7386 TO richard.ring@enron.com
## 7267 87470 7388 TO richard.ring@enron.com
## 7268 87471 7389 TO richard.ring@enron.com
## 7269 87474 7390 TO richard.ring@enron.com
## 7270 87476 7392 TO richard.ring@enron.com
## 7271 87480 7394 CC richard.ring@enron.com
## 7272 87484 7394 BCC richard.ring@enron.com
## 7273 87495 7398 CC richard.ring@enron.com
## 7274 87507 7398 BCC richard.ring@enron.com
## 7275 87521 7400 CC richard.ring@enron.com
## 7276 87533 7400 BCC richard.ring@enron.com
## 7277 87544 7403 TO david.w.delainey@enron.com
## 7278 87563 7405 TO richard.ring@enron.com
## 7279 87566 7406 CC richard.ring@enron.com
## 7280 87567 7406 BCC richard.ring@enron.com
## 7281 87573 7408 CC richard.ring@enron.com
## 7282 87577 7408 BCC richard.ring@enron.com
## 7283 87581 7409 CC richard.ring@enron.com
## 7284 87582 7409 BCC richard.ring@enron.com
## 7285 87589 7410 TO dana.davis@enron.com
## 7286 87610 7410 TO richard.ring@enron.com
## 7287 87615 7410 TO james.d.steffes@enron.com
## 7288 87627 7412 TO dana.davis@enron.com
## 7289 87648 7412 TO richard.ring@enron.com
## 7290 87653 7412 TO james.d.steffes@enron.com
## 7291 87658 7413 TO david.w.delainey@enron.com
## 7292 87679 7414 TO richard.ring@enron.com
## 7293 87682 7415 TO richard.ring@enron.com
## 7294 87686 7416 TO richard.ring@enron.com
## 7295 87689 7419 TO richard.ring@enron.com
## 7296 87691 7420 TO richard.ring@enron.com
## 7297 87701 7422 TO richard.ring@enron.com
## 7298 87719 7428 TO dana.davis@enron.com
## 7299 87740 7428 TO richard.ring@enron.com
## 7300 87745 7428 TO james.d.steffes@enron.com
## 7301 87750 7429 TO richard.ring@enron.com
## 7302 87760 7436 TO jeff.dasovich@enron.com
## 7303 87761 7436 TO james.d.steffes@enron.com
## 7304 87763 7436 CC richard.ring@enron.com
## 7305 87766 7436 BCC richard.ring@enron.com
## 7306 87771 7437 TO jeff.dasovich@enron.com
## 7307 87772 7437 TO james.d.steffes@enron.com
## 7308 87774 7437 CC richard.ring@enron.com
## 7309 87777 7437 BCC richard.ring@enron.com
## 7310 87779 7438 TO richard.ring@enron.com
## 7311 87780 7439 TO richard.ring@enron.com
## 7312 87781 7440 TO richard.ring@enron.com
## 7313 87782 7441 TO richard.ring@enron.com
## 7314 87791 7443 TO richard.ring@enron.com
## 7315 87792 7444 TO richard.ring@enron.com
## 7316 87795 7445 TO richard.ring@enron.com
## 7317 87796 7446 TO richard.ring@enron.com
## 7318 87797 7447 TO richard.ring@enron.com
## 7319 87798 7448 TO richard.ring@enron.com
## 7320 87800 7449 CC richard.ring@enron.com
## 7321 87801 7449 BCC richard.ring@enron.com
## 7322 87802 7450 TO richard.ring@enron.com
## 7323 87806 7452 TO richard.ring@enron.com
## 7324 87808 7454 TO richard.ring@enron.com
## 7325 87810 7455 CC richard.ring@enron.com
## 7326 87811 7455 BCC richard.ring@enron.com
## 7327 87812 7456 TO richard.ring@enron.com
## 7328 87813 7457 TO richard.ring@enron.com
## 7329 87814 7458 TO richard.ring@enron.com
## 7330 87817 7459 TO richard.ring@enron.com
## 7331 87820 7460 TO richard.ring@enron.com
## 7332 87824 7461 CC richard.ring@enron.com
## 7333 87825 7461 BCC richard.ring@enron.com
## 7334 87828 7462 CC richard.ring@enron.com
## 7335 87830 7462 BCC richard.ring@enron.com
## 7336 87832 7463 TO richard.ring@enron.com
## 7337 87833 7464 TO richard.ring@enron.com
## 7338 87834 7465 TO richard.ring@enron.com
## 7339 87836 7466 TO richard.ring@enron.com
## 7340 87841 7467 TO richard.ring@enron.com
## 7341 87848 7468 TO richard.ring@enron.com
## 7342 87855 7469 TO richard.ring@enron.com
## 7343 87862 7470 TO richard.ring@enron.com
## 7344 87865 7471 TO richard.ring@enron.com
## 7345 87870 7472 TO richard.ring@enron.com
## 7346 87877 7473 TO richard.ring@enron.com
## 7347 87884 7474 TO richard.ring@enron.com
## 7348 87891 7475 TO richard.ring@enron.com
## 7349 87894 7476 TO richard.ring@enron.com
## 7350 87906 7478 TO richard.ring@enron.com
## 7351 87910 7479 TO richard.ring@enron.com
## 7352 87911 7480 TO richard.ring@enron.com
## 7353 87913 7481 CC richard.ring@enron.com
## 7354 87914 7481 BCC richard.ring@enron.com
## 7355 87915 7482 TO richard.ring@enron.com
## 7356 87916 7483 TO richard.ring@enron.com
## 7357 87917 7484 TO richard.ring@enron.com
## 7358 87918 7485 TO richard.ring@enron.com
## 7359 87919 7486 TO richard.ring@enron.com
## 7360 87922 7487 TO richard.ring@enron.com
## 7361 87925 7489 TO richard.ring@enron.com
## 7362 87927 7490 TO richard.ring@enron.com
## 7363 87928 7491 TO richard.ring@enron.com
## 7364 87929 7492 TO richard.ring@enron.com
## 7365 87930 7493 TO richard.ring@enron.com
## 7366 87931 7494 TO richard.ring@enron.com
## 7367 87936 7495 TO richard.ring@enron.com
## 7368 87958 7499 CC richard.ring@enron.com
## 7369 87963 7499 BCC richard.ring@enron.com
## 7370 87966 7500 TO richard.ring@enron.com
## 7371 88191 7503 TO richard.ring@enron.com
## 7372 88229 7504 CC richard.ring@enron.com
## 7373 88232 7504 BCC richard.ring@enron.com
## 7374 88234 7505 TO richard.ring@enron.com
## 7375 88235 7506 TO richard.ring@enron.com
## 7376 88242 7507 CC richard.ring@enron.com
## 7377 88244 7507 BCC richard.ring@enron.com
## 7378 88248 7508 CC richard.ring@enron.com
## 7379 88250 7508 BCC richard.ring@enron.com
## 7380 88253 7509 CC richard.ring@enron.com
## 7381 88255 7509 BCC richard.ring@enron.com
## 7382 88262 7510 TO kevin.m.presto@enron.com
## 7383 88263 7510 TO fletcher.j.sturm@enron.com
## 7384 88264 7510 TO dana.davis@enron.com
## 7385 88265 7510 TO mike.carson@enron.com
## 7386 88266 7510 TO doug.gilbert-smith@enron.com
## 7387 88268 7510 TO richard.ring@enron.com
## 7388 88284 7510 TO james.d.steffes@enron.com
## 7389 88289 7510 CC steven.j.kean@enron.com
## 7390 88298 7510 BCC steven.j.kean@enron.com
## 7391 88307 7511 CC richard.ring@enron.com
## 7392 88315 7511 BCC richard.ring@enron.com
## 7393 88324 7512 TO richard.ring@enron.com
## 7394 88326 7513 TO richard.ring@enron.com
## 7395 88330 7514 CC richard.ring@enron.com
## 7396 88333 7514 BCC richard.ring@enron.com
## 7397 88335 7515 TO richard.ring@enron.com
## 7398 88339 7516 TO richard.ring@enron.com
## 7399 88342 7517 TO richard.ring@enron.com
## 7400 88349 7518 CC richard.ring@enron.com
## 7401 88351 7518 BCC richard.ring@enron.com
## 7402 88354 7519 CC richard.ring@enron.com
## 7403 88356 7519 BCC richard.ring@enron.com
## 7404 88359 7520 CC richard.ring@enron.com
## 7405 88361 7520 BCC richard.ring@enron.com
## 7406 88363 7521 TO richard.ring@enron.com
## 7407 88373 7523 CC richard.ring@enron.com
## 7408 88378 7523 BCC richard.ring@enron.com
## 7409 88380 7524 CC richard.ring@enron.com
## 7410 88383 7524 BCC richard.ring@enron.com
## 7411 88388 7525 CC richard.ring@enron.com
## 7412 88390 7525 BCC richard.ring@enron.com
## 7413 88393 7526 TO richard.ring@enron.com
## 7414 88394 7527 TO richard.ring@enron.com
## 7415 88397 7528 TO richard.ring@enron.com
## 7416 88398 7529 TO richard.ring@enron.com
## 7417 88405 7530 TO kevin.m.presto@enron.com
## 7418 88406 7530 TO fletcher.j.sturm@enron.com
## 7419 88407 7530 TO dana.davis@enron.com
## 7420 88408 7530 TO mike.carson@enron.com
## 7421 88409 7530 TO doug.gilbert-smith@enron.com
## 7422 88411 7530 TO richard.ring@enron.com
## 7423 88427 7530 TO james.d.steffes@enron.com
## 7424 88438 7530 CC steven.j.kean@enron.com
## 7425 88446 7530 BCC steven.j.kean@enron.com
## 7426 88453 7531 TO richard.ring@enron.com
## 7427 88454 7532 TO richard.ring@enron.com
## 7428 88459 7533 TO richard.ring@enron.com
## 7429 88460 7534 TO richard.ring@enron.com
## 7430 88466 7537 CC richard.ring@enron.com
## 7431 88470 7537 BCC richard.ring@enron.com
## 7432 88474 7538 TO richard.ring@enron.com
## 7433 88475 7539 TO richard.ring@enron.com
## 7434 88480 7540 TO richard.ring@enron.com
## 7435 88489 7541 CC richard.ring@enron.com
## 7436 88494 7541 BCC richard.ring@enron.com
## 7437 88513 7543 CC richard.ring@enron.com
## 7438 88516 7543 BCC richard.ring@enron.com
## 7439 88519 7544 TO richard.ring@enron.com
## 7440 88521 7545 CC richard.ring@enron.com
## 7441 88525 7545 BCC richard.ring@enron.com
## 7442 88539 7548 TO kevin.m.presto@enron.com
## 7443 88540 7548 TO fletcher.j.sturm@enron.com
## 7444 88541 7548 TO dana.davis@enron.com
## 7445 88542 7548 TO mike.carson@enron.com
## 7446 88543 7548 TO doug.gilbert-smith@enron.com
## 7447 88545 7548 TO richard.ring@enron.com
## 7448 88561 7548 TO james.d.steffes@enron.com
## 7449 88571 7548 CC steven.j.kean@enron.com
## 7450 88580 7548 BCC steven.j.kean@enron.com
## 7451 88588 7549 TO richard.ring@enron.com
## 7452 88589 7550 TO richard.ring@enron.com
## 7453 88594 7551 TO richard.ring@enron.com
## 7454 88596 7552 TO richard.ring@enron.com
## 7455 88599 7553 TO richard.ring@enron.com
## 7456 88602 7554 TO richard.ring@enron.com
## 7457 88603 7555 TO richard.ring@enron.com
## 7458 88611 7556 TO richard.ring@enron.com
## 7459 88618 7556 TO doug.gilbert-smith@enron.com
## 7460 88621 7557 TO richard.ring@enron.com
## 7461 88626 7558 TO richard.ring@enron.com
## 7462 88631 7559 TO richard.ring@enron.com
## 7463 88632 7560 TO richard.ring@enron.com
## 7464 88645 7561 TO richard.ring@enron.com
## 7465 88663 7563 TO richard.ring@enron.com
## 7466 88665 7565 TO richard.ring@enron.com
## 7467 88670 7566 TO richard.ring@enron.com
## 7468 88673 7567 TO richard.ring@enron.com
## 7469 88676 7567 TO james.d.steffes@enron.com
## 7470 88691 7568 TO richard.ring@enron.com
## 7471 88697 7569 TO richard.ring@enron.com
## 7472 88702 7570 CC richard.ring@enron.com
## 7473 88704 7570 BCC richard.ring@enron.com
## 7474 88705 7571 TO richard.ring@enron.com
## 7475 88718 7572 TO richard.ring@enron.com
## 7476 88723 7573 CC richard.ring@enron.com
## 7477 88725 7573 BCC richard.ring@enron.com
## 7478 88727 7574 TO richard.ring@enron.com
## 7479 88730 7575 TO richard.ring@enron.com
## 7480 88737 7576 CC james.d.steffes@enron.com
## 7481 88739 7576 CC richard.ring@enron.com
## 7482 88740 7576 BCC james.d.steffes@enron.com
## 7483 88742 7576 BCC richard.ring@enron.com
## 7484 88743 7577 TO richard.ring@enron.com
## 7485 88746 7578 CC richard.ring@enron.com
## 7486 88752 7578 BCC richard.ring@enron.com
## 7487 88757 7579 TO richard.ring@enron.com
## 7488 88758 7580 TO richard.ring@enron.com
## 7489 88762 7581 TO richard.ring@enron.com
## 7490 88764 7581 TO james.d.steffes@enron.com
## 7491 88765 7581 TO jeff.dasovich@enron.com
## 7492 88774 7582 TO stacey.bolton@enron.com
## 7493 88775 7582 TO tim.belden@enron.com
## 7494 88776 7582 TO jeff.richter@enron.com
## 7495 88777 7582 TO elliot.mainzer@enron.com
## 7496 88778 7582 TO richard.ring@enron.com
## 7497 88779 7582 TO pearce.hammond@enron.com
## 7498 88780 7582 TO james.d.steffes@enron.com
## 7499 88781 7582 TO susan.mara@enron.com
## 7500 88782 7582 TO patrick.keene@enron.com
## 7501 88783 7582 CC michael.terraso@enron.com
## 7502 88784 7582 CC jeff.keeler@enron.com
## 7503 88785 7582 CC mary.schoen@enron.com
## 7504 88786 7582 BCC michael.terraso@enron.com
## 7505 88787 7582 BCC jeff.keeler@enron.com
## 7506 88788 7582 BCC mary.schoen@enron.com
## 7507 88789 7583 TO jeff.dasovich@enron.com
## 7508 88793 7583 TO richard.ring@enron.com
## 7509 88795 7583 TO james.d.steffes@enron.com
## 7510 88806 7584 CC richard.ring@enron.com
## 7511 88814 7584 BCC richard.ring@enron.com
## 7512 88821 7585 TO richard.ring@enron.com
## 7513 88822 7586 TO jeff.dasovich@enron.com
## 7514 88826 7586 TO richard.ring@enron.com
## 7515 88828 7586 TO james.d.steffes@enron.com
## 7516 88839 7587 TO richard.ring@enron.com
## 7517 88851 7588 CC richard.ring@enron.com
## 7518 88853 7588 BCC richard.ring@enron.com
## 7519 88857 7589 CC richard.ring@enron.com
## 7520 88859 7589 BCC richard.ring@enron.com
## 7521 88860 7590 TO richard.ring@enron.com
## 7522 88861 7591 TO richard.ring@enron.com
## 7523 88862 7592 TO richard.ring@enron.com
## 7524 88863 7593 TO richard.ring@enron.com
## 7525 88864 7594 TO richard.ring@enron.com
## 7526 88869 7595 TO richard.ring@enron.com
## 7527 88875 7597 CC richard.ring@enron.com
## 7528 88877 7597 BCC richard.ring@enron.com
## 7529 88878 7598 TO richard.ring@enron.com
## 7530 88879 7599 TO richard.ring@enron.com
## 7531 88880 7599 CC james.d.steffes@enron.com
## 7532 88881 7599 CC jeff.dasovich@enron.com
## 7533 88885 7599 BCC james.d.steffes@enron.com
## 7534 88886 7599 BCC jeff.dasovich@enron.com
## 7535 88890 7600 TO richard.ring@enron.com
## 7536 88896 7600 CC james.d.steffes@enron.com
## 7537 88897 7600 BCC james.d.steffes@enron.com
## 7538 88898 7601 TO richard.ring@enron.com
## 7539 88904 7603 TO richard.ring@enron.com
## 7540 88906 7604 TO richard.ring@enron.com
## 7541 88910 7605 TO richard.ring@enron.com
## 7542 88911 7606 TO richard.ring@enron.com
## 7543 88913 7607 TO richard.ring@enron.com
## 7544 88914 7608 TO richard.ring@enron.com
## 7545 88915 7609 TO richard.ring@enron.com
## 7546 88918 7611 TO richard.ring@enron.com
## 7547 88922 7613 TO richard.ring@enron.com
## 7548 88926 7614 TO richard.ring@enron.com
## 7549 88936 7616 CC james.d.steffes@enron.com
## 7550 88940 7616 CC richard.shapiro@enron.com
## 7551 88946 7616 CC richard.ring@enron.com
## 7552 88950 7616 BCC james.d.steffes@enron.com
## 7553 88954 7616 BCC richard.shapiro@enron.com
## 7554 88960 7616 BCC richard.ring@enron.com
## 7555 88961 7617 TO richard.ring@enron.com
## 7556 88965 7618 TO richard.ring@enron.com
## 7557 88967 7619 CC richard.ring@enron.com
## 7558 88968 7619 BCC richard.ring@enron.com
## 7559 88970 7620 CC richard.ring@enron.com
## 7560 88971 7620 BCC richard.ring@enron.com
## 7561 88975 7622 CC richard.ring@enron.com
## 7562 88977 7622 BCC richard.ring@enron.com
## 7563 88979 7623 TO richard.ring@enron.com
## 7564 88984 7624 TO richard.ring@enron.com
## 7565 88988 7625 TO richard.ring@enron.com
## 7566 88991 7626 TO richard.ring@enron.com
## 7567 88993 7627 TO doug.gilbert-smith@enron.com
## 7568 88996 7627 CC richard.ring@enron.com
## 7569 89000 7627 BCC richard.ring@enron.com
## 7570 89002 7628 TO richard.ring@enron.com
## 7571 89003 7629 TO richard.ring@enron.com
## 7572 89005 7630 TO richard.ring@enron.com
## 7573 89007 7631 TO richard.ring@enron.com
## 7574 89012 7633 TO richard.ring@enron.com
## 7575 89017 7634 TO doug.gilbert-smith@enron.com
## 7576 89019 7634 CC richard.ring@enron.com
## 7577 89022 7634 BCC richard.ring@enron.com
## 7578 89026 7635 TO doug.gilbert-smith@enron.com
## 7579 89028 7635 CC richard.ring@enron.com
## 7580 89031 7635 BCC richard.ring@enron.com
## 7581 89035 7636 TO richard.ring@enron.com
## 7582 89039 7637 TO richard.ring@enron.com
## 7583 89041 7638 TO richard.ring@enron.com
## 7584 89042 7639 TO richard.ring@enron.com
## 7585 89043 7640 TO richard.ring@enron.com
## 7586 89044 7641 TO richard.ring@enron.com
## 7587 89045 7642 TO richard.ring@enron.com
## 7588 89049 7643 TO doug.gilbert-smith@enron.com
## 7589 89052 7643 CC richard.ring@enron.com
## 7590 89055 7643 BCC richard.ring@enron.com
## 7591 89060 7644 TO richard.ring@enron.com
## 7592 89062 7645 TO richard.ring@enron.com
## 7593 89068 7646 CC richard.ring@enron.com
## 7594 89073 7646 BCC richard.ring@enron.com
## 7595 89074 7647 TO richard.ring@enron.com
## 7596 89077 7648 TO richard.ring@enron.com
## 7597 89082 7649 CC richard.ring@enron.com
## 7598 89087 7649 BCC richard.ring@enron.com
## 7599 89090 7650 TO richard.ring@enron.com
## 7600 89091 7651 TO steven.j.kean@enron.com
## 7601 89101 7651 TO doug.gilbert-smith@enron.com
## 7602 89106 7651 TO richard.ring@enron.com
## 7603 89108 7651 TO james.d.steffes@enron.com
## 7604 89150 7652 CC richard.ring@enron.com
## 7605 89154 7652 BCC richard.ring@enron.com
## 7606 89159 7653 TO richard.ring@enron.com
## 7607 89160 7654 TO richard.ring@enron.com
## 7608 89162 7655 CC richard.ring@enron.com
## 7609 89163 7655 BCC richard.ring@enron.com
## 7610 89164 7656 TO richard.ring@enron.com
## 7611 89166 7657 TO richard.ring@enron.com
## 7612 89171 7658 TO richard.ring@enron.com
## 7613 89177 7659 TO richard.ring@enron.com
## 7614 89179 7660 TO richard.ring@enron.com
## 7615 89183 7661 TO richard.ring@enron.com
## 7616 89187 7662 TO richard.ring@enron.com
## 7617 89188 7663 TO richard.ring@enron.com
## 7618 89189 7664 TO richard.ring@enron.com
## 7619 89190 7665 TO richard.ring@enron.com
## 7620 89192 7666 TO richard.ring@enron.com
## 7621 89198 7667 TO richard.ring@enron.com
## 7622 89200 7668 TO richard.ring@enron.com
## 7623 89209 7669 CC richard.ring@enron.com
## 7624 89211 7669 BCC richard.ring@enron.com
## 7625 89213 7670 TO richard.ring@enron.com
## 7626 89220 7671 TO richard.ring@enron.com
## 7627 89227 7672 TO richard.ring@enron.com
## 7628 89236 7674 TO richard.ring@enron.com
## 7629 89237 7675 TO richard.ring@enron.com
## 7630 89250 7677 CC richard.ring@enron.com
## 7631 89252 7677 BCC richard.ring@enron.com
## 7632 89253 7678 TO richard.ring@enron.com
## 7633 89254 7679 TO richard.ring@enron.com
## 7634 89257 7680 TO richard.ring@enron.com
## 7635 89258 7681 TO richard.ring@enron.com
## 7636 89259 7682 TO richard.ring@enron.com
## 7637 89263 7683 CC richard.ring@enron.com
## 7638 89266 7683 BCC richard.ring@enron.com
## 7639 89268 7684 TO richard.ring@enron.com
## 7640 89270 7685 TO richard.ring@enron.com
## 7641 89277 7686 TO richard.ring@enron.com
## 7642 89278 7687 TO richard.ring@enron.com
## 7643 89279 7688 TO richard.ring@enron.com
## 7644 89280 7689 TO richard.ring@enron.com
## 7645 89281 7690 TO richard.ring@enron.com
## 7646 89282 7691 TO richard.ring@enron.com
## 7647 89283 7692 TO richard.ring@enron.com
## 7648 89285 7693 TO richard.ring@enron.com
## 7649 89291 7695 TO richard.ring@enron.com
## 7650 89293 7696 TO richard.ring@enron.com
## 7651 89295 7697 TO richard.ring@enron.com
## 7652 89302 7698 TO richard.ring@enron.com
## 7653 89306 7699 TO richard.ring@enron.com
## 7654 89312 7700 TO richard.ring@enron.com
## 7655 89318 7701 TO richard.ring@enron.com
## 7656 89324 7702 TO richard.ring@enron.com
## 7657 89326 7703 TO richard.ring@enron.com
## 7658 89327 7704 TO richard.ring@enron.com
## 7659 89329 7705 TO richard.ring@enron.com
## 7660 89333 7706 TO richard.ring@enron.com
## 7661 89339 7707 TO richard.ring@enron.com
## 7662 89346 7708 TO richard.ring@enron.com
## 7663 89351 7709 TO richard.ring@enron.com
## 7664 89354 7710 TO richard.ring@enron.com
## 7665 89356 7711 CC richard.ring@enron.com
## 7666 89359 7711 BCC richard.ring@enron.com
## 7667 89364 7712 TO richard.ring@enron.com
## 7668 89365 7713 TO richard.ring@enron.com
## 7669 89370 7714 TO richard.ring@enron.com
## 7670 89376 7715 TO richard.ring@enron.com
## 7671 89379 7716 TO richard.ring@enron.com
## 7672 89389 7717 TO richard.ring@enron.com
## 7673 89394 7719 CC richard.ring@enron.com
## 7674 89396 7719 BCC richard.ring@enron.com
## 7675 89399 7720 CC richard.ring@enron.com
## 7676 89400 7720 BCC richard.ring@enron.com
## 7677 89401 7721 TO richard.ring@enron.com
## 7678 89403 7722 TO richard.ring@enron.com
## 7679 89410 7723 TO richard.ring@enron.com
## 7680 89412 7724 TO richard.ring@enron.com
## 7681 89415 7726 TO richard.ring@enron.com
## 7682 89418 7727 TO richard.ring@enron.com
## 7683 89424 7728 CC richard.ring@enron.com
## 7684 89426 7728 BCC richard.ring@enron.com
## 7685 89429 7729 TO richard.ring@enron.com
## 7686 89432 7730 TO richard.ring@enron.com
## 7687 89435 7731 TO richard.ring@enron.com
## 7688 89437 7732 CC richard.ring@enron.com
## 7689 89438 7732 BCC richard.ring@enron.com
## 7690 89444 7734 TO richard.ring@enron.com
## 7691 89448 7735 CC richard.ring@enron.com
## 7692 89449 7735 BCC richard.ring@enron.com
## 7693 89476 7748 TO richard.ring@enron.com
## 7694 89491 7749 TO richard.ring@enron.com
## 7695 89494 7750 CC richard.ring@enron.com
## 7696 89497 7750 BCC richard.ring@enron.com
## 7697 89499 7751 TO richard.ring@enron.com
## 7698 89502 7752 CC richard.ring@enron.com
## 7699 89506 7752 BCC richard.ring@enron.com
## 7700 89509 7753 TO richard.ring@enron.com
## 7701 89510 7754 TO richard.ring@enron.com
## 7702 89514 7755 TO richard.ring@enron.com
## 7703 89522 7756 TO richard.ring@enron.com
## 7704 89530 7757 CC richard.ring@enron.com
## 7705 89537 7757 BCC richard.ring@enron.com
## 7706 89545 7758 CC richard.ring@enron.com
## 7707 89551 7758 BCC richard.ring@enron.com
## 7708 89558 7759 CC richard.ring@enron.com
## 7709 89560 7759 BCC richard.ring@enron.com
## 7710 89563 7760 CC richard.ring@enron.com
## 7711 89565 7760 BCC richard.ring@enron.com
## 7712 89568 7761 TO richard.ring@enron.com
## 7713 89572 7762 TO richard.ring@enron.com
## 7714 89574 7764 TO richard.ring@enron.com
## 7715 89577 7765 CC richard.ring@enron.com
## 7716 89579 7765 BCC richard.ring@enron.com
## 7717 89582 7766 CC richard.ring@enron.com
## 7718 89584 7766 BCC richard.ring@enron.com
## 7719 89586 7767 CC richard.ring@enron.com
## 7720 89588 7767 BCC richard.ring@enron.com
## 7721 89592 7768 CC richard.ring@enron.com
## 7722 89595 7768 BCC richard.ring@enron.com
## 7723 89599 7769 TO richard.ring@enron.com
## 7724 89601 7770 TO richard.ring@enron.com
## 7725 89602 7771 TO richard.ring@enron.com
## 7726 89607 7772 CC richard.ring@enron.com
## 7727 89608 7772 BCC richard.ring@enron.com
## 7728 89611 7773 CC richard.ring@enron.com
## 7729 89614 7773 BCC richard.ring@enron.com
## 7730 89621 7774 CC richard.ring@enron.com
## 7731 89624 7774 BCC richard.ring@enron.com
## 7732 89628 7775 TO jeff.dasovich@enron.com
## 7733 89629 7775 TO james.d.steffes@enron.com
## 7734 89631 7775 CC richard.ring@enron.com
## 7735 89634 7775 BCC richard.ring@enron.com
## 7736 89636 7776 TO richard.ring@enron.com
## 7737 89638 7776 CC james.d.steffes@enron.com
## 7738 89639 7776 BCC james.d.steffes@enron.com
## 7739 89640 7777 TO l..nicolay@enron.com
## 7740 89641 7777 TO sarah.novosel@enron.com
## 7741 89642 7777 TO rogers.herndon@enron.com
## 7742 89643 7777 TO juan.padron@enron.com
## 7743 89644 7777 TO richard.ring@enron.com
## 7744 89645 7777 TO dan.leff@enron.com
## 7745 89646 7777 TO janet.dietrich@enron.com
## 7746 89647 7777 TO marcus.nettelton@enron.com
## 7747 89649 7778 CC richard.ring@enron.com
## 7748 89650 7778 BCC richard.ring@enron.com
## 7749 89651 7779 TO richard.ring@enron.com
## 7750 89656 7780 TO richard.ring@enron.com
## 7751 89659 7781 CC richard.ring@enron.com
## 7752 89660 7781 BCC richard.ring@enron.com
## 7753 89661 7782 TO richard.ring@enron.com
## 7754 89666 7783 TO richard.ring@enron.com
## 7755 89672 7783 TO larry.f.campbell@enron.com
## 7756 89673 7783 TO dana.davis@enron.com
## 7757 89674 7783 TO chris.dorland@enron.com
## 7758 89686 7783 TO joe.quenet@enron.com
## 7759 89689 7783 TO joe.stepenovitch@enron.com
## 7760 89700 7784 TO larry.f.campbell@enron.com
## 7761 89701 7784 TO dana.davis@enron.com
## 7762 89702 7784 TO chris.dorland@enron.com
## 7763 89718 7784 TO joe.quenet@enron.com
## 7764 89721 7784 TO joe.stepenovitch@enron.com
## 7765 89726 7784 TO richard.ring@enron.com
## 7766 89736 7784 CC james.d.steffes@enron.com
## 7767 89740 7784 BCC james.d.steffes@enron.com
## 7768 89742 7785 CC richard.ring@enron.com
## 7769 89743 7785 BCC richard.ring@enron.com
## 7770 89753 7789 TO richard.ring@enron.com
## 7771 89756 7790 TO richard.ring@enron.com
## 7772 89757 7791 TO richard.ring@enron.com
## 7773 89761 7792 CC richard.ring@enron.com
## 7774 89762 7792 BCC richard.ring@enron.com
## 7775 89763 7793 TO richard.ring@enron.com
## 7776 89769 7795 CC richard.ring@enron.com
## 7777 89771 7795 BCC richard.ring@enron.com
## 7778 89772 7796 TO richard.ring@enron.com
## 7779 89774 7797 TO richard.ring@enron.com
## 7780 89796 7801 CC richard.ring@enron.com
## 7781 89798 7801 BCC richard.ring@enron.com
## 7782 89800 7802 TO richard.ring@enron.com
## 7783 89801 7803 TO scott.franck@enron.com
## 7784 89802 7803 CC richard.ring@enron.com
## 7785 89803 7803 BCC richard.ring@enron.com
## 7786 89809 7805 TO richard.ring@enron.com
## 7787 89815 7806 CC richard.ring@enron.com
## 7788 89816 7806 BCC richard.ring@enron.com
## 7789 89817 7807 TO rogers.herndon@enron.com
## 7790 89818 7808 TO richard.ring@enron.com
## 7791 89819 7809 TO richard.ring@enron.com
## 7792 89820 7810 TO richard.ring@enron.com
## 7793 89823 7811 CC richard.ring@enron.com
## 7794 89824 7811 BCC richard.ring@enron.com
## 7795 89825 7812 TO richard.ring@enron.com
## 7796 89826 7813 TO richard.ring@enron.com
## 7797 89830 7815 TO richard.ring@enron.com
## 7798 89831 7816 TO richard.ring@enron.com
## 7799 89832 7817 TO richard.ring@enron.com
## 7800 89841 7818 TO richard.ring@enron.com
## 7801 89845 7819 CC richard.ring@enron.com
## 7802 89848 7819 BCC richard.ring@enron.com
## 7803 89849 7820 TO richard.ring@enron.com
## 7804 89850 7821 TO louise.kitchen@enron.com
## 7805 89853 7821 TO andy.zipper@enron.com
## 7806 89854 7821 TO mark.e.taylor@enron.com
## 7807 89857 7822 TO mark.e.taylor@enron.com
## 7808 89858 7823 TO elizabeth.sager@enron.com
## 7809 89859 7823 CC mark.e.taylor@enron.com
## 7810 89860 7823 BCC mark.e.taylor@enron.com
## 7811 89861 7824 TO mark.e.taylor@enron.com
## 7812 89862 7825 TO mark.e.taylor@enron.com
## 7813 89863 7825 CC elizabeth.sager@enron.com
## 7814 89864 7825 BCC elizabeth.sager@enron.com
## 7815 89865 7826 TO mark.e.taylor@enron.com
## 7816 89866 7827 TO mark.e.taylor@enron.com
## 7817 89867 7828 TO mark.e.taylor@enron.com
## 7818 89868 7828 TO elizabeth.sager@enron.com
## 7819 89870 7829 TO mark.e.taylor@enron.com
## 7820 89871 7829 CC elizabeth.sager@enron.com
## 7821 89872 7829 BCC elizabeth.sager@enron.com
## 7822 89873 7830 TO mark.e.taylor@enron.com
## 7823 89875 7830 CC elizabeth.sager@enron.com
## 7824 89876 7830 BCC elizabeth.sager@enron.com
## 7825 89889 7832 TO mark.e.taylor@enron.com
## 7826 89892 7833 TO mark.e.taylor@enron.com
## 7827 89893 7834 TO mark.e.taylor@enron.com
## 7828 89894 7835 TO mark.e.taylor@enron.com
## 7829 89895 7836 TO mark.e.taylor@enron.com
## 7830 89896 7837 TO mark.e.taylor@enron.com
## 7831 89906 7838 CC mark.e.taylor@enron.com
## 7832 89910 7838 BCC mark.e.taylor@enron.com
## 7833 89915 7839 CC mark.e.taylor@enron.com
## 7834 89918 7839 BCC mark.e.taylor@enron.com
## 7835 89922 7840 CC mark.e.taylor@enron.com
## 7836 89925 7840 BCC mark.e.taylor@enron.com
## 7837 89929 7841 CC mark.e.taylor@enron.com
## 7838 89932 7841 BCC mark.e.taylor@enron.com
## 7839 89933 7842 TO mark.e.taylor@enron.com
## 7840 89934 7843 TO mark.e.taylor@enron.com
## 7841 89935 7844 TO e..haedicke@enron.com
## 7842 89936 7844 CC mark.e.taylor@enron.com
## 7843 89939 7844 BCC mark.e.taylor@enron.com
## 7844 89944 7845 CC e..haedicke@enron.com
## 7845 89945 7845 CC mark.e.taylor@enron.com
## 7846 89948 7845 BCC e..haedicke@enron.com
## 7847 89949 7845 BCC mark.e.taylor@enron.com
## 7848 89951 7846 TO e..haedicke@enron.com
## 7849 89952 7846 TO mark.e.taylor@enron.com
## 7850 89954 7847 TO mark.e.taylor@enron.com
## 7851 89955 7848 TO mark.e.taylor@enron.com
## 7852 89957 7849 TO e..haedicke@enron.com
## 7853 89960 7849 TO mark.e.taylor@enron.com
## 7854 89978 7852 TO leslie.hansen@enron.com
## 7855 89979 7853 TO brent.hendry@enron.com
## 7856 89980 7854 TO louise.kitchen@enron.com
## 7857 89981 7855 TO tanya.rohauer@enron.com
## 7858 89982 7856 TO outlook.team@enron.com
## 7859 89983 7857 TO eric.thode@enron.com
## 7860 89984 7858 TO tana.jones@enron.com
## 7861 89985 7859 TO homer.lin@enron.com
## 7862 89986 7860 TO tana.jones@enron.com
## 7863 89987 7861 TO melba.lozano@enron.com
## 7864 89992 7866 TO peter.keohane@enron.com
## 7865 89993 7866 CC russell.diamond@enron.com
## 7866 89994 7866 CC william.bradford@enron.com
## 7867 89995 7866 CC carol.clair@enron.com
## 7868 89996 7866 BCC russell.diamond@enron.com
## 7869 89997 7866 BCC william.bradford@enron.com
## 7870 89998 7866 BCC carol.clair@enron.com
## 7871 89999 7867 TO homer.lin@enron.com
## 7872 90000 7867 CC carlos.alatorre@enron.com
## 7873 90001 7867 CC joe.king@enron.com
## 7874 90002 7867 CC robert.quick@enron.com
## 7875 90003 7867 CC scott.moncrieff@enron.com
## 7876 90004 7867 BCC carlos.alatorre@enron.com
## 7877 90005 7867 BCC joe.king@enron.com
## 7878 90006 7867 BCC robert.quick@enron.com
## 7879 90007 7867 BCC scott.moncrieff@enron.com
## 7880 90008 7868 TO joe.king@enron.com
## 7881 90009 7868 TO homer.lin@enron.com
## 7882 90010 7868 TO carlos.alatorre@enron.com
## 7883 90011 7868 CC scott.moncrieff@enron.com
## 7884 90012 7868 CC robert.quick@enron.com
## 7885 90013 7868 BCC scott.moncrieff@enron.com
## 7886 90014 7868 BCC robert.quick@enron.com
## 7887 90016 7870 TO justin.boyd@enron.com
## 7888 90017 7871 TO michael.robison@enron.com
## 7889 90018 7872 TO cassandra.schultz@enron.com
## 7890 90019 7873 TO anthony.mends@enron.com
## 7891 90022 7875 CC julia.murray@enron.com
## 7892 90023 7875 CC carol.clair@enron.com
## 7893 90024 7875 BCC julia.murray@enron.com
## 7894 90025 7875 BCC carol.clair@enron.com
## 7895 90027 7877 TO harry.collins@enron.com
## 7896 90028 7878 TO janette.elbertson@enron.com
## 7897 90029 7879 TO julia.murray@enron.com
## 7898 90030 7879 CC carol.clair@enron.com
## 7899 90031 7879 BCC carol.clair@enron.com
## 7900 90033 7881 TO holly.keiser@enron.com
## 7901 90034 7882 TO robert.quick@enron.com
## 7902 90037 7883 CC e..haedicke@enron.com
## 7903 90038 7883 CC mark.evans@enron.com
## 7904 90039 7883 CC justin.boyd@enron.com
## 7905 90040 7883 CC paul.simons@enron.com
## 7906 90041 7883 CC marcus.polach@enron.com
## 7907 90043 7883 BCC e..haedicke@enron.com
## 7908 90044 7883 BCC mark.evans@enron.com
## 7909 90045 7883 BCC justin.boyd@enron.com
## 7910 90046 7883 BCC paul.simons@enron.com
## 7911 90047 7883 BCC marcus.polach@enron.com
## 7912 90050 7886 TO samuel.schott@enron.com
## 7913 90051 7886 TO tom.moran@enron.com
## 7914 90052 7887 TO michael.hicks@enron.com
## 7915 90053 7887 TO nelly.carpenter@enron.com
## 7916 90054 7888 TO mark.e.taylor@enron.com
## 7917 90055 7889 TO michael.hicks@enron.com
## 7918 90056 7889 TO nelly.carpenter@enron.com
## 7919 90057 7890 TO carol.clair@enron.com
## 7920 90059 7892 TO travis.mccullough@enron.com
## 7921 90060 7893 TO anne.koehler@enron.com
## 7922 90061 7893 TO brent.hendry@enron.com
## 7923 90062 7893 TO carol.clair@enron.com
## 7924 90063 7893 TO cheryl.nelson@enron.com
## 7925 90064 7893 TO francisco.leite@enron.com
## 7926 90065 7893 TO frank.sayre@enron.com
## 7927 90066 7893 TO mark.greenberg@enron.com
## 7928 90067 7893 TO mary.cook@enron.com
## 7929 90068 7893 TO sara.shackleton@enron.com
## 7930 90069 7893 TO susan.bailey@enron.com
## 7931 90070 7893 TO samantha.boyd@enron.com
## 7932 90071 7893 TO tana.jones@enron.com
## 7933 90072 7893 TO stephanie.panus@enron.com
## 7934 90073 7894 TO chris.gaffney@enron.com
## 7935 90074 7894 CC elizabeth.sager@enron.com
## 7936 90075 7894 CC jeffrey.hodge@enron.com
## 7937 90076 7894 BCC elizabeth.sager@enron.com
## 7938 90077 7894 BCC jeffrey.hodge@enron.com
## 7939 90078 7895 TO travis.mccullough@enron.com
## 7940 90079 7896 TO travis.mccullough@enron.com
## 7941 90080 7897 TO travis.mccullough@enron.com
## 7942 90081 7898 TO travis.mccullough@enron.com
## 7943 90082 7899 TO peter.keohane@enron.com
## 7944 90083 7899 CC e..haedicke@enron.com
## 7945 90084 7899 CC mark.powell@enron.com
## 7946 90085 7899 CC rob.milnthorp@enron.com
## 7947 90086 7899 CC sharon.crawford@enron.com
## 7948 90087 7899 CC mary.cook@enron.com
## 7949 90088 7899 BCC e..haedicke@enron.com
## 7950 90089 7899 BCC mark.powell@enron.com
## 7951 90090 7899 BCC rob.milnthorp@enron.com
## 7952 90091 7899 BCC sharon.crawford@enron.com
## 7953 90092 7899 BCC mary.cook@enron.com
## 7954 90093 7900 TO jeffrey.hodge@enron.com
## 7955 90094 7900 TO elizabeth.sager@enron.com
## 7956 90097 7903 TO robert.cass@enron.com
## 7957 90100 7906 TO holly.keiser@enron.com
## 7958 90101 7907 TO susan.bailey@enron.com
## 7959 90102 7907 TO mary.cook@enron.com
## 7960 90103 7907 TO mark.greenberg@enron.com
## 7961 90104 7907 TO brent.hendry@enron.com
## 7962 90105 7907 TO tana.jones@enron.com
## 7963 90106 7907 TO holly.keiser@enron.com
## 7964 90107 7907 TO anne.koehler@enron.com
## 7965 90108 7907 TO taffy.milligan@enron.com
## 7966 90109 7907 TO cheryl.nelson@enron.com
## 7967 90110 7907 TO stephanie.panus@enron.com
## 7968 90111 7907 TO francisco.leite@enron.com
## 7969 90112 7907 TO carol.clair@enron.com
## 7970 90113 7907 TO frank.sayre@enron.com
## 7971 90114 7907 TO sara.shackleton@enron.com
## 7972 90118 7910 TO sara.shackleton@enron.com
## 7973 90119 7911 TO elizabeth.sager@enron.com
## 7974 90120 7912 TO janette.elbertson@enron.com
## 7975 90121 7913 TO guenther.klar@enron.com
## 7976 90122 7913 CC catharina.clabots@enron.com
## 7977 90123 7913 CC janine.juggins@enron.com
## 7978 90124 7913 CC jonathan.marsh@enron.com
## 7979 90125 7913 CC julie.watt@enron.com
## 7980 90126 7913 BCC catharina.clabots@enron.com
## 7981 90127 7913 BCC janine.juggins@enron.com
## 7982 90128 7913 BCC jonathan.marsh@enron.com
## 7983 90129 7913 BCC julie.watt@enron.com
## 7984 90133 7917 TO tana.jones@enron.com
## 7985 90134 7918 TO anne.koehler@enron.com
## 7986 90135 7918 TO brent.hendry@enron.com
## 7987 90136 7918 TO carol.clair@enron.com
## 7988 90137 7918 TO cheryl.nelson@enron.com
## 7989 90138 7918 TO francisco.leite@enron.com
## 7990 90139 7918 TO frank.sayre@enron.com
## 7991 90140 7918 TO mary.cook@enron.com
## 7992 90141 7918 TO sara.shackleton@enron.com
## 7993 90142 7918 TO susan.bailey@enron.com
## 7994 90143 7918 TO samantha.boyd@enron.com
## 7995 90144 7918 TO tana.jones@enron.com
## 7996 90145 7918 TO stephanie.panus@enron.com
## 7997 90146 7919 TO eddy.daniels@enron.com
## 7998 90147 7920 TO janette.elbertson@enron.com
## 7999 90151 7922 TO nelly.carpenter@enron.com
## 8000 90157 7928 TO david.forster@enron.com
## 8001 90158 7928 CC andy.zipper@enron.com
## 8002 90159 7928 BCC andy.zipper@enron.com
## 8003 90162 7931 TO kimberlee.bennick@enron.com
## 8004 90163 7932 TO david.forster@enron.com
## 8005 90164 7932 TO andy.zipper@enron.com
## 8006 90165 7932 CC mark.greenberg@enron.com
## 8007 90166 7932 BCC mark.greenberg@enron.com
## 8008 90172 7938 TO greg.johnston@enron.com
## 8009 90179 7941 TO andy.zipper@enron.com
## 8010 90181 7943 TO holly.keiser@enron.com
## 8011 90187 7945 TO paul.goddard@enron.com
## 8012 90188 7945 CC dave.samuels@enron.com
## 8013 90189 7945 CC imelda.frayre@enron.com
## 8014 90190 7945 CC justin.boyd@enron.com
## 8015 90191 7945 CC mark.greenberg@enron.com
## 8016 90192 7945 BCC dave.samuels@enron.com
## 8017 90193 7945 BCC imelda.frayre@enron.com
## 8018 90194 7945 BCC justin.boyd@enron.com
## 8019 90195 7945 BCC mark.greenberg@enron.com
## 8020 90196 7946 TO holly.keiser@enron.com
## 8021 90197 7947 TO paul.goddard@enron.com
## 8022 90198 7947 CC dave.samuels@enron.com
## 8023 90199 7947 CC imelda.frayre@enron.com
## 8024 90200 7947 CC justin.boyd@enron.com
## 8025 90201 7947 CC mark.greenberg@enron.com
## 8026 90202 7947 BCC dave.samuels@enron.com
## 8027 90203 7947 BCC imelda.frayre@enron.com
## 8028 90204 7947 BCC justin.boyd@enron.com
## 8029 90205 7947 BCC mark.greenberg@enron.com
## 8030 90208 7950 TO bill.hare@enron.com
## 8031 90209 7950 CC bernice.rodriguez@enron.com
## 8032 90210 7950 CC james.scribner@enron.com
## 8033 90211 7950 CC lisa.lees@enron.com
## 8034 90212 7950 CC marilyn.colbert@enron.com
## 8035 90213 7950 CC samuel.schott@enron.com
## 8036 90214 7950 CC stephanie.sever@enron.com
## 8037 90215 7950 CC tana.jones@enron.com
## 8038 90216 7950 CC tom.moran@enron.com
## 8039 90217 7950 CC walter.guidroz@enron.com
## 8040 90218 7950 BCC bernice.rodriguez@enron.com
## 8041 90219 7950 BCC james.scribner@enron.com
## 8042 90220 7950 BCC lisa.lees@enron.com
## 8043 90221 7950 BCC marilyn.colbert@enron.com
## 8044 90222 7950 BCC samuel.schott@enron.com
## 8045 90223 7950 BCC stephanie.sever@enron.com
## 8046 90224 7950 BCC tana.jones@enron.com
## 8047 90225 7950 BCC tom.moran@enron.com
## 8048 90226 7950 BCC walter.guidroz@enron.com
## 8049 90227 7951 TO harry.collins@enron.com
## 8050 90228 7952 TO bill.hare@enron.com
## 8051 90229 7952 CC samuel.schott@enron.com
## 8052 90230 7952 CC tana.jones@enron.com
## 8053 90231 7952 CC stephanie.sever@enron.com
## 8054 90232 7952 BCC samuel.schott@enron.com
## 8055 90233 7952 BCC tana.jones@enron.com
## 8056 90234 7952 BCC stephanie.sever@enron.com
## 8057 90235 7953 TO christian.yoder@enron.com
## 8058 90236 7954 TO e..haedicke@enron.com
## 8059 90237 7955 TO erica.bess@enron.com
## 8060 90238 7956 TO vance.meyer@enron.com
## 8061 90239 7957 TO chris.walker@enron.com
## 8062 90240 7958 TO anne.koehler@enron.com
## 8063 90241 7958 TO brent.hendry@enron.com
## 8064 90242 7958 TO carol.clair@enron.com
## 8065 90243 7958 TO cheryl.nelson@enron.com
## 8066 90244 7958 TO francisco.leite@enron.com
## 8067 90245 7958 TO frank.sayre@enron.com
## 8068 90246 7958 TO mary.cook@enron.com
## 8069 90247 7958 TO sara.shackleton@enron.com
## 8070 90248 7959 TO mary.cook@enron.com
## 8071 90249 7959 CC holly.keiser@enron.com
## 8072 90250 7959 BCC holly.keiser@enron.com
## 8073 90251 7960 TO susan.bailey@enron.com
## 8074 90253 7962 TO mark.e.taylor@enron.com
## 8075 90254 7963 TO peter.keohane@enron.com
## 8076 90255 7963 CC brent.hendry@enron.com
## 8077 90256 7963 CC carol.clair@enron.com
## 8078 90257 7963 CC chris.gaffney@enron.com
## 8079 90258 7963 CC greg.johnston@enron.com
## 8080 90259 7963 CC mark.powell@enron.com
## 8081 90260 7963 CC mary.cook@enron.com
## 8082 90261 7963 CC russell.diamond@enron.com
## 8083 90262 7963 CC sara.shackleton@enron.com
## 8084 90263 7963 CC tana.jones@enron.com
## 8085 90264 7963 CC tanya.rohauer@enron.com
## 8086 90265 7963 CC william.bradford@enron.com
## 8087 90266 7963 BCC brent.hendry@enron.com
## 8088 90267 7963 BCC carol.clair@enron.com
## 8089 90268 7963 BCC chris.gaffney@enron.com
## 8090 90269 7963 BCC greg.johnston@enron.com
## 8091 90270 7963 BCC mark.powell@enron.com
## 8092 90271 7963 BCC mary.cook@enron.com
## 8093 90272 7963 BCC russell.diamond@enron.com
## 8094 90273 7963 BCC sara.shackleton@enron.com
## 8095 90274 7963 BCC tana.jones@enron.com
## 8096 90275 7963 BCC tanya.rohauer@enron.com
## 8097 90276 7963 BCC william.bradford@enron.com
## 8098 90277 7964 TO holly.keiser@enron.com
## 8099 90278 7965 TO kevin.meredith@enron.com
## 8100 90281 7968 TO janette.elbertson@enron.com
## 8101 90282 7969 TO janette.elbertson@enron.com
## 8102 90283 7970 TO janette.elbertson@enron.com
## 8103 90284 7971 TO holly.keiser@enron.com
## 8104 90286 7973 TO peter.keohane@enron.com
## 8105 90287 7973 CC chris.gaffney@enron.com
## 8106 90288 7973 BCC chris.gaffney@enron.com
## 8107 90289 7974 TO e..haedicke@enron.com
## 8108 90290 7974 CC janette.elbertson@enron.com
## 8109 90291 7974 CC holly.keiser@enron.com
## 8110 90292 7974 BCC janette.elbertson@enron.com
## 8111 90293 7974 BCC holly.keiser@enron.com
## 8112 90294 7975 TO angeline.poon@enron.com
## 8113 90295 7975 CC edmund.cooper@enron.com
## 8114 90296 7975 CC matthew.dawson@enron.com
## 8115 90297 7975 CC tana.jones@enron.com
## 8116 90298 7975 BCC edmund.cooper@enron.com
## 8117 90299 7975 BCC matthew.dawson@enron.com
## 8118 90300 7975 BCC tana.jones@enron.com
## 8119 90301 7976 TO david.forster@enron.com
## 8120 90302 7977 TO chris.gaffney@enron.com
## 8121 90303 7977 CC peter.keohane@enron.com
## 8122 90304 7977 CC nora.dobin@enron.com
## 8123 90305 7977 BCC peter.keohane@enron.com
## 8124 90306 7977 BCC nora.dobin@enron.com
## 8125 90307 7978 TO john.viverito@enron.com
## 8126 90308 7978 CC chad.south@enron.com
## 8127 90309 7978 BCC chad.south@enron.com
## 8128 90311 7980 TO andy.zipper@enron.com
## 8129 90312 7981 TO andy.zipper@enron.com
## 8130 90313 7981 CC marcus.nettelton@enron.com
## 8131 90314 7981 BCC marcus.nettelton@enron.com
## 8132 90315 7982 TO marcus.nettelton@enron.com
## 8133 90316 7982 CC tana.jones@enron.com
## 8134 90317 7982 CC kevin.meredith@enron.com
## 8135 90318 7982 BCC tana.jones@enron.com
## 8136 90319 7982 BCC kevin.meredith@enron.com
## 8137 90320 7983 TO andy.zipper@enron.com
## 8138 90321 7984 TO david.forster@enron.com
## 8139 90322 7985 TO sara.shackleton@enron.com
## 8140 90323 7986 TO sara.shackleton@enron.com
## 8141 90324 7987 TO sara.shackleton@enron.com
## 8142 90325 7988 TO keegan.farrell@enron.com
## 8143 90326 7989 TO kristina.mordaunt@enron.com
## 8144 90327 7990 TO sami.arap@enron.com
## 8145 90330 7992 TO lisa.lees@enron.com
## 8146 90331 7993 TO sami.arap@enron.com
## 8147 90332 7993 CC brent.hendry@enron.com
## 8148 90333 7993 BCC brent.hendry@enron.com
## 8149 90334 7994 TO stephanie.sever@enron.com
## 8150 90335 7994 CC tana.jones@enron.com
## 8151 90336 7994 BCC tana.jones@enron.com
## 8152 90337 7995 TO molly.magee@enron.com
## 8153 90338 7996 TO mary.cook@enron.com
## 8154 90339 7996 TO michael.robison@enron.com
## 8155 90340 7997 TO molly.magee@enron.com
## 8156 90341 7998 TO janette.elbertson@enron.com
## 8157 90342 7999 TO alan.aronowitz@enron.com
## 8158 90343 8000 TO frank.sayre@enron.com
## 8159 90344 8001 TO greg.johnston@enron.com
## 8160 90345 8001 CC dianne.seib@enron.com
## 8161 90346 8001 CC lon.draper@enron.com
## 8162 90347 8001 CC melba.lozano@enron.com
## 8163 90348 8001 BCC dianne.seib@enron.com
## 8164 90349 8001 BCC lon.draper@enron.com
## 8165 90350 8001 BCC melba.lozano@enron.com
## 8166 90352 8003 TO greg.johnston@enron.com
## 8167 90353 8003 CC dianne.seib@enron.com
## 8168 90354 8003 CC lon.draper@enron.com
## 8169 90355 8003 CC melba.lozano@enron.com
## 8170 90356 8003 BCC dianne.seib@enron.com
## 8171 90357 8003 BCC lon.draper@enron.com
## 8172 90358 8003 BCC melba.lozano@enron.com
## 8173 90359 8004 TO stephanie.panus@enron.com
## 8174 90360 8004 CC holly.keiser@enron.com
## 8175 90361 8004 BCC holly.keiser@enron.com
## 8176 90362 8005 TO brent.hendry@enron.com
## 8177 90363 8006 TO william.bradford@enron.com
## 8178 90364 8006 TO tanya.rohauer@enron.com
## 8179 90365 8007 TO tana.jones@enron.com
## 8180 90366 8008 TO frank.sayre@enron.com
## 8181 90367 8009 TO frank.sayre@enron.com
## 8182 90368 8010 TO vladimir.gorny@enron.com
## 8183 90369 8011 TO brent.hendry@enron.com
## 8184 90370 8012 TO mary.cook@enron.com
## 8185 90371 8013 TO david.forster@enron.com
## 8186 90372 8014 TO mark.e.taylor@enron.com
## 8187 90374 8016 TO robert.bruce@enron.com
## 8188 90375 8016 TO andrea.calo@enron.com
## 8189 90376 8016 TO mary.cook@enron.com
## 8190 90377 8016 TO cheryl.nelson@enron.com
## 8191 90378 8016 TO brent.hendry@enron.com
## 8192 90379 8016 TO francisco.leite@enron.com
## 8193 90380 8016 TO carol.clair@enron.com
## 8194 90381 8016 TO frank.sayre@enron.com
## 8195 90382 8016 TO sara.shackleton@enron.com
## 8196 90383 8016 TO susan.bailey@enron.com
## 8197 90384 8016 TO samantha.boyd@enron.com
## 8198 90385 8016 TO tana.jones@enron.com
## 8199 90386 8016 TO stephanie.panus@enron.com
## 8200 90389 8019 TO travis.mccullough@enron.com
## 8201 90391 8021 TO carol.clair@enron.com
## 8202 90393 8023 TO chris.long@enron.com
## 8203 90394 8024 TO janette.elbertson@enron.com
## 8204 90395 8025 TO janette.elbertson@enron.com
## 8205 90396 8026 TO carol.clair@enron.com
## 8206 90397 8027 TO carol.clair@enron.com
## 8207 90398 8028 TO lisa.yoho@enron.com
## 8208 90399 8029 TO janette.elbertson@enron.com
## 8209 90400 8030 TO carol.clair@enron.com
## 8210 90401 8031 TO stephanie.truss@enron.com
## 8211 90402 8032 TO becky.spencer@enron.com
## 8212 90403 8033 TO carol.clair@enron.com
## 8213 90404 8034 TO janette.elbertson@enron.com
## 8214 90405 8035 TO andy.zipper@enron.com
## 8215 90406 8036 TO kevin.meredith@enron.com
## 8216 90407 8037 TO andy.zipper@enron.com
## 8217 90409 8039 TO tana.jones@enron.com
## 8218 90410 8040 TO mark.greenberg@enron.com
## 8219 90411 8040 TO justin.boyd@enron.com
## 8220 90413 8042 TO lisa.yoho@enron.com
## 8221 90414 8043 TO stephanie.panus@enron.com
## 8222 90415 8044 TO bruce.lundstrom@enron.com
## 8223 90416 8045 TO carol.clair@enron.com
## 8224 90417 8046 TO sara.shackleton@enron.com
## 8225 90418 8047 TO carol.clair@enron.com
## 8226 90419 8048 TO carol.clair@enron.com
## 8227 90420 8049 TO janette.elbertson@enron.com
## 8228 90421 8049 CC robert.bruce@enron.com
## 8229 90422 8049 BCC robert.bruce@enron.com
## 8230 90423 8050 TO travis.mccullough@enron.com
## 8231 90424 8051 TO john.viverito@enron.com
## 8232 90425 8051 CC adam.gross@enron.com
## 8233 90426 8051 CC alan.engberg@enron.com
## 8234 90427 8051 CC michael.robison@enron.com
## 8235 90428 8051 BCC adam.gross@enron.com
## 8236 90429 8051 BCC alan.engberg@enron.com
## 8237 90430 8051 BCC michael.robison@enron.com
## 8238 90431 8052 TO vikas.dwivedi@enron.com
## 8239 90432 8052 CC cassandra.schultz@enron.com
## 8240 90433 8052 BCC cassandra.schultz@enron.com
## 8241 90434 8053 TO anne.koehler@enron.com
## 8242 90435 8054 TO justin.boyd@enron.com
## 8243 90436 8055 TO norma.villarreal@enron.com
## 8244 90437 8055 TO sheila.walton@enron.com
## 8245 90438 8056 TO francisco.leite@enron.com
## 8246 90439 8057 TO carol.clair@enron.com
## 8247 90442 8059 TO vanessa.schulte@enron.com
## 8248 90443 8059 CC mary.solmonson@enron.com
## 8249 90444 8059 BCC mary.solmonson@enron.com
## 8250 90445 8060 TO chris.long@enron.com
## 8251 90446 8061 TO carlos.alatorre@enron.com
## 8252 90447 8061 TO carl.carter@enron.com
## 8253 90448 8062 TO andy.zipper@enron.com
## 8254 90449 8063 TO stephen.douglas@enron.com
## 8255 90450 8064 TO carol.clair@enron.com
## 8256 90451 8065 TO carol.clair@enron.com
## 8257 90452 8066 TO francisco.leite@enron.com
## 8258 90453 8066 CC sara.shackleton@enron.com
## 8259 90454 8066 BCC sara.shackleton@enron.com
## 8260 90455 8067 TO holly.keiser@enron.com
## 8261 90456 8068 TO carol.clair@enron.com
## 8262 90457 8068 CC holly.keiser@enron.com
## 8263 90458 8068 BCC holly.keiser@enron.com
## 8264 90459 8069 TO mary.cook@enron.com
## 8265 90461 8071 TO carol.clair@enron.com
## 8266 90462 8072 TO tana.jones@enron.com
## 8267 90463 8072 CC louise.kitchen@enron.com
## 8268 90464 8072 BCC louise.kitchen@enron.com
## 8269 90465 8073 TO sheri.thomas@enron.com
## 8270 90466 8074 TO e..haedicke@enron.com
## 8271 90467 8075 TO holly.keiser@enron.com
## 8272 90468 8076 TO richard.b.sanders@enron.com
## 8273 90469 8077 TO janette.elbertson@enron.com
## 8274 90470 8077 CC sheri.cromwell@enron.com
## 8275 90471 8077 BCC sheri.cromwell@enron.com
## 8276 90472 8078 TO sara.shackleton@enron.com
## 8277 90475 8080 TO sheri.cromwell@enron.com
## 8278 90476 8081 TO ned.crady@enron.com
## 8279 90477 8081 TO francisco.leite@enron.com
## 8280 90478 8081 TO daniel.rogers@enron.com
## 8281 90479 8081 TO ed.iii@enron.com
## 8282 90480 8082 TO mary.cook@enron.com
## 8283 90481 8083 TO janette.elbertson@enron.com
## 8284 90482 8084 TO alan.aronowitz@enron.com
## 8285 90483 8084 CC e..haedicke@enron.com
## 8286 90484 8084 CC janette.elbertson@enron.com
## 8287 90485 8084 CC frank.ortiz@enron.com
## 8288 90486 8084 BCC e..haedicke@enron.com
## 8289 90487 8084 BCC janette.elbertson@enron.com
## 8290 90488 8084 BCC frank.ortiz@enron.com
## 8291 90489 8085 TO holly.keiser@enron.com
## 8292 90490 8086 TO alan.aronowitz@enron.com
## 8293 90491 8086 TO jeffrey.hodge@enron.com
## 8294 90492 8086 TO elizabeth.sager@enron.com
## 8295 90493 8087 TO louise.kitchen@enron.com
## 8296 90494 8088 TO louise.kitchen@enron.com
## 8297 90495 8089 TO fred.philipson@enron.com
## 8298 90496 8090 TO travis.mccullough@enron.com
## 8299 90498 8092 TO holly.keiser@enron.com
## 8300 90500 8094 TO carol.clair@enron.com
## 8301 90501 8095 TO carol.clair@enron.com
## 8302 90502 8096 TO carol.clair@enron.com
## 8303 90503 8097 TO robbi.rossi@enron.com
## 8304 90504 8097 TO marie.heard@enron.com
## 8305 90505 8098 TO janette.elbertson@enron.com
## 8306 90506 8099 TO lisa.yoho@enron.com
## 8307 90507 8099 CC robert.bruce@enron.com
## 8308 90508 8099 BCC robert.bruce@enron.com
## 8309 90509 8100 TO louise.kitchen@enron.com
## 8310 90510 8101 TO lisa.yoho@enron.com
## 8311 90512 8103 TO holly.keiser@enron.com
## 8312 90513 8104 TO tana.jones@enron.com
## 8313 90514 8105 TO robert.george@enron.com
## 8314 90516 8107 TO tana.jones@enron.com
## 8315 90517 8108 TO mary.cook@enron.com
## 8316 90518 8109 TO taffy.milligan@enron.com
## 8317 90520 8111 TO anne.koehler@enron.com
## 8318 90521 8112 TO rex.shelby@enron.com
## 8319 90523 8114 TO peter.traung@enron.com
## 8320 90525 8116 TO anne.koehler@enron.com
## 8321 90526 8117 TO louise.kitchen@enron.com
## 8322 90527 8117 CC tana.jones@enron.com
## 8323 90528 8117 BCC tana.jones@enron.com
## 8324 90530 8119 TO tana.jones@enron.com
## 8325 90532 8121 TO chris.long@enron.com
## 8326 90533 8122 TO robert.bruce@enron.com
## 8327 90534 8122 TO andrea.calo@enron.com
## 8328 90535 8122 TO mary.cook@enron.com
## 8329 90536 8122 TO cheryl.nelson@enron.com
## 8330 90537 8122 TO brent.hendry@enron.com
## 8331 90538 8122 TO francisco.leite@enron.com
## 8332 90539 8122 TO carol.clair@enron.com
## 8333 90540 8122 TO frank.sayre@enron.com
## 8334 90541 8122 TO sara.shackleton@enron.com
## 8335 90542 8122 TO susan.bailey@enron.com
## 8336 90543 8122 TO samantha.boyd@enron.com
## 8337 90544 8122 TO tana.jones@enron.com
## 8338 90545 8122 TO stephanie.panus@enron.com
## 8339 90546 8123 TO chris.long@enron.com
## 8340 90547 8124 TO mary.cook@enron.com
## 8341 90548 8125 TO carol.clair@enron.com
## 8342 90549 8126 TO holly.keiser@enron.com
## 8343 90550 8127 TO andrea.calo@enron.com
## 8344 90551 8128 TO nora.dobin@enron.com
## 8345 90552 8129 TO david.forster@enron.com
## 8346 90553 8130 TO david.forster@enron.com
## 8347 90554 8131 TO andy.zipper@enron.com
## 8348 90557 8134 TO russell.diamond@enron.com
## 8349 90558 8135 TO russell.diamond@enron.com
## 8350 90559 8136 TO mark.holsworth@enron.com
## 8351 90560 8137 TO janette.elbertson@enron.com
## 8352 90561 8138 TO linda.simmons@enron.com
## 8353 90562 8139 TO suzanne.adams@enron.com
## 8354 90563 8139 CC dina.snow@enron.com
## 8355 90564 8139 BCC dina.snow@enron.com
## 8356 90565 8140 TO janette.elbertson@enron.com
## 8357 90570 8143 TO michelle.cash@enron.com
## 8358 90571 8143 TO angela.davis@enron.com
## 8359 90572 8143 TO peter.vecchio@enron.com
## 8360 90573 8143 TO james.grace@enron.com
## 8361 90574 8143 TO travis.mccullough@enron.com
## 8362 90575 8143 TO david.portz@enron.com
## 8363 90576 8143 TO richard.b.sanders@enron.com
## 8364 90577 8143 CC twanda.sweet@enron.com
## 8365 90578 8143 CC chaundra.woods@enron.com
## 8366 90579 8143 CC sheri.cromwell@enron.com
## 8367 90580 8143 CC dina.snow@enron.com
## 8368 90581 8143 CC linda.simmons@enron.com
## 8369 90582 8143 BCC twanda.sweet@enron.com
## 8370 90583 8143 BCC chaundra.woods@enron.com
## 8371 90584 8143 BCC sheri.cromwell@enron.com
## 8372 90585 8143 BCC dina.snow@enron.com
## 8373 90586 8143 BCC linda.simmons@enron.com
## 8374 90587 8144 TO shonnie.daniel@enron.com
## 8375 90588 8144 TO shawna.flynn@enron.com
## 8376 90589 8144 TO barbara.gray@enron.com
## 8377 90590 8144 TO lisa.mellencamp@enron.com
## 8378 90591 8144 TO lance.schuler-legal@enron.com
## 8379 90592 8144 TO lou.stoler@enron.com
## 8380 90593 8144 TO stuart.zisman@enron.com
## 8381 90594 8144 CC pat.radford@enron.com
## 8382 90595 8144 CC taffy.milligan@enron.com
## 8383 90596 8144 CC linda.simmons@enron.com
## 8384 90597 8144 CC dina.snow@enron.com
## 8385 90598 8144 BCC pat.radford@enron.com
## 8386 90599 8144 BCC taffy.milligan@enron.com
## 8387 90600 8144 BCC linda.simmons@enron.com
## 8388 90601 8144 BCC dina.snow@enron.com
## 8389 90605 8146 TO tanya.rohauer@enron.com
## 8390 90606 8146 CC tana.jones@enron.com
## 8391 90607 8146 BCC tana.jones@enron.com
## 8392 90608 8147 TO becky.spencer@enron.com
## 8393 90609 8148 TO chris.long@enron.com
## 8394 90610 8149 TO stephanie.panus@enron.com
## 8395 90611 8149 CC taffy.milligan@enron.com
## 8396 90612 8149 BCC taffy.milligan@enron.com
## 8397 90613 8150 TO taffy.milligan@enron.com
## 8398 90614 8151 TO taffy.milligan@enron.com
## 8399 90615 8152 TO anne.koehler@enron.com
## 8400 90616 8152 CC tana.jones@enron.com
## 8401 90617 8152 BCC tana.jones@enron.com
## 8402 90618 8153 TO francisco.leite@enron.com
## 8403 90619 8154 TO taffy.milligan@enron.com
## 8404 90620 8155 TO anne.koehler@enron.com
## 8405 90621 8155 CC tana.jones@enron.com
## 8406 90622 8155 BCC tana.jones@enron.com
## 8407 90626 8157 CC mark.e.taylor@enron.com
## 8408 90628 8157 BCC mark.e.taylor@enron.com
## 8409 90629 8158 TO greg.johnston@enron.com
## 8410 90630 8158 CC dianne.seib@enron.com
## 8411 90631 8158 CC john.zufferli@enron.com
## 8412 90632 8158 CC melba.lozano@enron.com
## 8413 90633 8158 BCC dianne.seib@enron.com
## 8414 90634 8158 BCC john.zufferli@enron.com
## 8415 90635 8158 BCC melba.lozano@enron.com
## 8416 90637 8160 TO mark.e.taylor@enron.com
## 8417 90638 8161 TO denis.o connell@enron.com
## 8418 90639 8162 TO e..haedicke@enron.com
## 8419 90640 8163 TO john.arnold@enron.com
## 8420 90641 8163 TO dutch.quigley@enron.com
## 8421 90643 8165 TO stephanie.panus@enron.com
## 8422 90644 8166 TO sara.shackleton@enron.com
## 8423 90645 8167 TO lisa.lees@enron.com
## 8424 90646 8168 TO tana.jones@enron.com
## 8425 90648 8170 TO norma.villarreal@enron.com
## 8426 90649 8171 TO peter.keohane@enron.com
## 8427 90650 8171 CC tana.jones@enron.com
## 8428 90651 8171 BCC tana.jones@enron.com
## 8429 90652 8172 TO tana.jones@enron.com
## 8430 90653 8173 TO mary.cook@enron.com
## 8431 90654 8174 TO tana.jones@enron.com
## 8432 90656 8176 TO william.bradford@enron.com
## 8433 90657 8177 TO bob.shults@enron.com
## 8434 90658 8177 CC andy.zipper@enron.com
## 8435 90659 8177 CC daniel.diamond@enron.com
## 8436 90660 8177 BCC andy.zipper@enron.com
## 8437 90661 8177 BCC daniel.diamond@enron.com
## 8438 90663 8179 TO craig.breslau@enron.com
## 8439 90664 8179 CC derek.bailey@enron.com
## 8440 90665 8179 CC tana.jones@enron.com
## 8441 90666 8179 BCC derek.bailey@enron.com
## 8442 90667 8179 BCC tana.jones@enron.com
## 8443 90668 8180 TO bob.shults@enron.com
## 8444 90669 8181 TO bob.shults@enron.com
## 8445 90670 8182 TO richard.b.sanders@enron.com
## 8446 90672 8184 TO janette.elbertson@enron.com
## 8447 90673 8184 CC robert.bruce@enron.com
## 8448 90674 8184 BCC robert.bruce@enron.com
## 8449 90675 8185 TO robert.bruce@enron.com
## 8450 90676 8185 TO mary.cook@enron.com
## 8451 90677 8185 TO brent.hendry@enron.com
## 8452 90678 8185 TO cheryl.nelson@enron.com
## 8453 90679 8185 TO sara.shackleton@enron.com
## 8454 90680 8185 TO susan.bailey@enron.com
## 8455 90681 8185 TO samantha.boyd@enron.com
## 8456 90682 8185 TO tana.jones@enron.com
## 8457 90683 8185 TO stephanie.panus@enron.com
## 8458 90684 8185 TO justin.boyd@enron.com
## 8459 90685 8185 TO edmund.cooper@enron.com
## 8460 90686 8185 TO mark.evans@enron.com
## 8461 90687 8185 TO denis.o connell@enron.com
## 8462 90688 8185 TO paul.simons@enron.com
## 8463 90689 8186 TO melba.lozano@enron.com
## 8464 90690 8186 TO kevin.meredith@enron.com
## 8465 90691 8187 TO carol.clair@enron.com
## 8466 90692 8188 TO melba.lozano@enron.com
## 8467 90693 8188 TO kevin.meredith@enron.com
## 8468 90694 8189 TO peter.keavey@enron.com
## 8469 90695 8190 TO andy.zipper@enron.com
## 8470 90696 8191 TO andrew.wilson@enron.com
## 8471 90697 8192 TO melba.lozano@enron.com
## 8472 90698 8193 TO melba.lozano@enron.com
## 8473 90699 8193 CC sara.shackleton@enron.com
## 8474 90700 8193 BCC sara.shackleton@enron.com
## 8475 90702 8195 TO jeffrey.hodge@enron.com
## 8476 90703 8195 TO dan.hyvl@enron.com
## 8477 90704 8196 TO david.portz@enron.com
## 8478 90707 8199 TO bob.shults@enron.com
## 8479 90708 8200 TO kristina.mordaunt@enron.com
## 8480 90709 8201 TO alan.aronowitz@enron.com
## 8481 90712 8204 TO elizabeth.sager@enron.com
## 8482 90714 8206 TO chaundra.woods@enron.com
## 8483 90716 8208 TO patrick.wade@enron.com
## 8484 90718 8210 TO robert.cass@enron.com
## 8485 90719 8211 TO mary.cook@enron.com
## 8486 90720 8211 TO angela.davis@enron.com
## 8487 90721 8211 TO sara.shackleton@enron.com
## 8488 90722 8212 TO janette.elbertson@enron.com
## 8489 90723 8213 TO andy.zipper@enron.com
## 8490 90724 8213 TO bob.shults@enron.com
## 8491 90725 8214 TO marie.westin@enron.com
## 8492 90726 8214 CC claudia.clark@enron.com
## 8493 90727 8214 CC enron.group@enron.com
## 8494 90728 8214 CC leslie.hansen@enron.com
## 8495 90729 8214 BCC claudia.clark@enron.com
## 8496 90730 8214 BCC enron.group@enron.com
## 8497 90731 8214 BCC leslie.hansen@enron.com
## 8498 90732 8215 TO health_center@enron.com
## 8499 90733 8216 TO steve.kim@enron.com
## 8500 90734 8216 CC mark.elliott@enron.com
## 8501 90735 8216 CC alan.aronowitz@enron.com
## 8502 90736 8216 BCC mark.elliott@enron.com
## 8503 90737 8216 BCC alan.aronowitz@enron.com
## 8504 90738 8217 TO angela.davis@enron.com
## 8505 90739 8218 TO travis.mccullough@enron.com
## 8506 90740 8219 TO tana.jones@enron.com
## 8507 90743 8222 TO david.forster@enron.com
## 8508 90745 8224 TO taffy.milligan@enron.com
## 8509 90746 8225 TO maria.minguillon@enron.com
## 8510 90747 8226 TO tana.jones@enron.com
## 8511 90749 8228 TO michael.guerriero@enron.com
## 8512 90750 8229 TO david.minns@enron.com
## 8513 90751 8229 CC amita.gosalia@enron.com
## 8514 90752 8229 CC dale.neuner@enron.com
## 8515 90753 8229 CC jonathan.marsh@enron.com
## 8516 90754 8229 CC justin.boyd@enron.com
## 8517 90755 8229 CC justin.timothy@enron.com
## 8518 90756 8229 CC paul.smith@enron.com
## 8519 90757 8229 BCC amita.gosalia@enron.com
## 8520 90758 8229 BCC dale.neuner@enron.com
## 8521 90759 8229 BCC jonathan.marsh@enron.com
## 8522 90760 8229 BCC justin.boyd@enron.com
## 8523 90761 8229 BCC justin.timothy@enron.com
## 8524 90762 8229 BCC paul.smith@enron.com
## 8525 90765 8232 TO mark_kopinski@enron.com
## 8526 90767 8234 TO nora.dobin@enron.com
## 8527 90768 8235 TO greg.johnston@enron.com
## 8528 90770 8237 TO travis.mccullough@enron.com
## 8529 90771 8238 TO kay.mann@enron.com
## 8530 90773 8240 TO cassandra.schultz@enron.com
## 8531 90774 8240 CC david.redmond@enron.com
## 8532 90775 8240 CC paul.simons@enron.com
## 8533 90776 8240 CC peter.crilly@enron.com
## 8534 90777 8240 CC richard.lewis@enron.com
## 8535 90778 8240 BCC david.redmond@enron.com
## 8536 90779 8240 BCC paul.simons@enron.com
## 8537 90780 8240 BCC peter.crilly@enron.com
## 8538 90781 8240 BCC richard.lewis@enron.com
## 8539 90782 8241 TO alan.aronowitz@enron.com
## 8540 90783 8241 TO harry.collins@enron.com
## 8541 90784 8241 TO shonnie.daniel@enron.com
## 8542 90785 8241 TO shawna.flynn@enron.com
## 8543 90786 8241 TO dan.hyvl@enron.com
## 8544 90787 8241 TO michael.robison@enron.com
## 8545 90788 8241 CC joya.davis@enron.com
## 8546 90789 8241 CC jenny.helton@enron.com
## 8547 90790 8241 CC pat.radford@enron.com
## 8548 90791 8241 CC becky.spencer@enron.com
## 8549 90792 8241 CC janette.elbertson@enron.com
## 8550 90793 8241 BCC joya.davis@enron.com
## 8551 90794 8241 BCC jenny.helton@enron.com
## 8552 90795 8241 BCC pat.radford@enron.com
## 8553 90796 8241 BCC becky.spencer@enron.com
## 8554 90797 8241 BCC janette.elbertson@enron.com
## 8555 90798 8242 TO roger.balog@enron.com
## 8556 90799 8242 TO peggy.banczak@enron.com
## 8557 90800 8242 TO robert.bruce@enron.com
## 8558 90801 8242 TO stacy.dickson@enron.com
## 8559 90802 8242 TO jeffrey.hodge@enron.com
## 8560 90803 8242 TO kay.mann@enron.com
## 8561 90804 8242 TO janice.moore@enron.com
## 8562 90805 8242 TO steve.hooser@enron.com
## 8563 90806 8242 CC chaundra.woods@enron.com
## 8564 90807 8242 CC kaye.ellis@enron.com
## 8565 90808 8242 CC brenda.whitehead@enron.com
## 8566 90809 8242 CC linda.noske@enron.com
## 8567 90810 8242 CC sheri.cromwell@enron.com
## 8568 90811 8242 CC becky.spencer@enron.com
## 8569 90812 8242 CC jenny.helton@enron.com
## 8570 90813 8242 CC suzanne.adams@enron.com
## 8571 90814 8242 CC pat.radford@enron.com
## 8572 90815 8242 CC janette.elbertson@enron.com
## 8573 90816 8242 CC joya.davis@enron.com
## 8574 90817 8242 BCC chaundra.woods@enron.com
## 8575 90818 8242 BCC kaye.ellis@enron.com
## 8576 90819 8242 BCC brenda.whitehead@enron.com
## 8577 90820 8242 BCC linda.noske@enron.com
## 8578 90821 8242 BCC sheri.cromwell@enron.com
## 8579 90822 8242 BCC becky.spencer@enron.com
## 8580 90823 8242 BCC jenny.helton@enron.com
## 8581 90824 8242 BCC suzanne.adams@enron.com
## 8582 90825 8242 BCC pat.radford@enron.com
## 8583 90826 8242 BCC janette.elbertson@enron.com
## 8584 90827 8242 BCC joya.davis@enron.com
## 8585 90828 8243 TO francisco.leite@enron.com
## 8586 90829 8244 TO janette.elbertson@enron.com
## 8587 90830 8245 TO greg.johnston@enron.com
## 8588 90831 8246 TO charlene.jackson@enron.com
## 8589 90832 8247 TO david.minns@enron.com
## 8590 90833 8247 CC christian.werner@enron.com
## 8591 90834 8247 CC heidi.mason@enron.com
## 8592 90835 8247 CC jerven.zhang@enron.com
## 8593 90836 8247 CC justin.timothy@enron.com
## 8594 90837 8247 CC paul.quilkey@enron.com
## 8595 90838 8247 CC raymond.yeow@enron.com
## 8596 90839 8247 CC rudi.zipter@enron.com
## 8597 90840 8247 CC susan.musch@enron.com
## 8598 90841 8247 BCC christian.werner@enron.com
## 8599 90842 8247 BCC heidi.mason@enron.com
## 8600 90843 8247 BCC jerven.zhang@enron.com
## 8601 90844 8247 BCC justin.timothy@enron.com
## 8602 90845 8247 BCC paul.quilkey@enron.com
## 8603 90846 8247 BCC raymond.yeow@enron.com
## 8604 90847 8247 BCC rudi.zipter@enron.com
## 8605 90848 8247 BCC susan.musch@enron.com
## 8606 90850 8249 TO andrew.wilson@enron.com
## 8607 90851 8250 TO samantha.boyd@enron.com
## 8608 90852 8251 TO samantha.boyd@enron.com
## 8609 90853 8251 TO brent.hendry@enron.com
## 8610 90854 8251 TO tana.jones@enron.com
## 8611 90855 8251 TO taffy.milligan@enron.com
## 8612 90856 8251 TO stephanie.panus@enron.com
## 8613 90857 8251 TO sara.shackleton@enron.com
## 8614 90858 8252 TO john.peyton@enron.com
## 8615 90860 8254 TO richard.b.sanders@enron.com
## 8616 90862 8256 TO carol.clair@enron.com
## 8617 90863 8257 TO tana.jones@enron.com
## 8618 90864 8258 TO tana.jones@enron.com
## 8619 90865 8259 TO sara.shackleton@enron.com
## 8620 90866 8259 CC taffy.milligan@enron.com
## 8621 90867 8259 BCC taffy.milligan@enron.com
## 8622 90868 8260 TO robert.bruce@enron.com
## 8623 90869 8261 TO brent.hendry@enron.com
## 8624 90870 8262 TO brent.hendry@enron.com
## 8625 90871 8263 TO brent.hendry@enron.com
## 8626 90872 8264 TO brent.hendry@enron.com
## 8627 90873 8265 TO sami.arap@enron.com
## 8628 90874 8266 TO andy.zipper@enron.com
## 8629 90875 8267 TO craig.young@enron.com
## 8630 90876 8268 TO chris.long@enron.com
## 8631 90877 8268 CC e..haedicke@enron.com
## 8632 90878 8268 BCC e..haedicke@enron.com
## 8633 90879 8269 TO louise.kitchen@enron.com
## 8634 90880 8270 TO kaye.ellis@enron.com
## 8635 90881 8271 TO mary.cook@enron.com
## 8636 90882 8271 TO brent.hendry@enron.com
## 8637 90883 8271 TO sara.shackleton@enron.com
## 8638 90884 8271 TO susan.bailey@enron.com
## 8639 90885 8271 TO samantha.boyd@enron.com
## 8640 90886 8271 TO tana.jones@enron.com
## 8641 90887 8271 TO stephanie.panus@enron.com
## 8642 90888 8272 TO mark.elliott@enron.com
## 8643 90889 8273 TO andrew.wilson@enron.com
## 8644 90890 8274 TO janette.elbertson@enron.com
## 8645 90891 8275 TO david.forster@enron.com
## 8646 90892 8276 TO richard.b.sanders@enron.com
## 8647 90893 8276 CC christian.yoder@enron.com
## 8648 90894 8276 CC elizabeth.sager@enron.com
## 8649 90895 8276 CC e..haedicke@enron.com
## 8650 90896 8276 BCC christian.yoder@enron.com
## 8651 90897 8276 BCC elizabeth.sager@enron.com
## 8652 90898 8276 BCC e..haedicke@enron.com
## 8653 90899 8277 TO louise.bird@enron.com
## 8654 90900 8277 CC janine.juggins@enron.com
## 8655 90901 8277 CC jeff.blumenthal@enron.com
## 8656 90902 8277 CC sara.shackleton@enron.com
## 8657 90903 8277 CC stephen.douglas@enron.com
## 8658 90904 8277 BCC janine.juggins@enron.com
## 8659 90905 8277 BCC jeff.blumenthal@enron.com
## 8660 90906 8277 BCC sara.shackleton@enron.com
## 8661 90907 8277 BCC stephen.douglas@enron.com
## 8662 90908 8278 TO sami.arap@enron.com
## 8663 90909 8279 TO john.peyton@enron.com
## 8664 90910 8280 TO kathy.moore@enron.com
## 8665 90913 8283 TO sara.shackleton@enron.com
## 8666 90914 8284 TO leslie.hansen@enron.com
## 8667 90915 8284 TO elizabeth.sager@enron.com
## 8668 90916 8284 CC melba.lozano@enron.com
## 8669 90917 8284 BCC melba.lozano@enron.com
## 8670 90918 8285 TO rahil.jafry@enron.com
## 8671 90919 8286 TO sara.shackleton@enron.com
## 8672 90920 8287 TO taffy.milligan@enron.com
## 8673 90921 8288 TO taffy.milligan@enron.com
## 8674 90922 8289 TO tana.jones@enron.com
## 8675 90923 8290 TO tom.briggs@enron.com
## 8676 90924 8290 TO cynthia.sandherr@enron.com
## 8677 90925 8291 TO dale.neuner@enron.com
## 8678 90926 8292 TO mark.e.taylor@enron.com
## 8679 90927 8293 TO alan.aronowitz@enron.com
## 8680 90928 8293 CC tana.jones@enron.com
## 8681 90929 8293 BCC tana.jones@enron.com
## 8682 90930 8294 TO kim.stanley@enron.com
## 8683 90931 8295 TO tana.jones@enron.com
## 8684 90932 8296 TO tana.jones@enron.com
## 8685 90933 8297 TO e..haedicke@enron.com
## 8686 90934 8298 TO taffy.milligan@enron.com
## 8687 90935 8299 TO tana.jones@enron.com
## 8688 90936 8300 TO tana.jones@enron.com
## 8689 90937 8301 TO robert.bruce@enron.com
## 8690 90938 8301 TO mary.cook@enron.com
## 8691 90939 8301 TO brent.hendry@enron.com
## 8692 90940 8301 TO sara.shackleton@enron.com
## 8693 90941 8302 TO tana.jones@enron.com
## 8694 90942 8303 TO janette.elbertson@enron.com
## 8695 90943 8304 TO dale.neuner@enron.com
## 8696 90944 8305 TO tom.briggs@enron.com
## 8697 90945 8306 TO dina.snow@enron.com
## 8698 90946 8307 TO jon.chapman@enron.com
## 8699 90948 8309 TO louise.kitchen@enron.com
## 8700 90949 8310 TO jaroslaw.ferenc@enron.com
## 8701 90950 8311 TO andrew.wilson@enron.com
## 8702 90951 8312 TO tom.briggs@enron.com
## 8703 90952 8313 TO kim.stanley@enron.com
## 8704 90953 8314 TO susan.bailey@enron.com
## 8705 90954 8314 TO samantha.boyd@enron.com
## 8706 90955 8314 TO tana.jones@enron.com
## 8707 90956 8314 TO stephanie.panus@enron.com
## 8708 90957 8315 TO tana.jones@enron.com
## 8709 90958 8315 CC brent.hendry@enron.com
## 8710 90959 8315 BCC brent.hendry@enron.com
## 8711 90960 8316 TO jane.mcbride@enron.com
## 8712 90961 8316 CC alan.aronowitz@enron.com
## 8713 90963 8316 CC mark.evans@enron.com
## 8714 90965 8316 BCC alan.aronowitz@enron.com
## 8715 90967 8316 BCC mark.evans@enron.com
## 8716 90969 8317 TO brent.hendry@enron.com
## 8717 90970 8318 TO greg.johnston@enron.com
## 8718 90971 8319 TO greg.johnston@enron.com
## 8719 90972 8320 TO leslie.hansen@enron.com
## 8720 90973 8321 TO sami.arap@enron.com
## 8721 90974 8322 TO sara.shackleton@enron.com
## 8722 90975 8323 TO alfred.pennisi@enron.com
## 8723 90976 8323 CC alan.aronowitz@enron.com
## 8724 90977 8323 BCC alan.aronowitz@enron.com
## 8725 90978 8324 TO greg.johnston@enron.com
## 8726 90979 8325 TO michael.guerriero@enron.com
## 8727 90980 8326 TO janette.elbertson@enron.com
## 8728 90981 8327 TO brent.hendry@enron.com
## 8729 90982 8328 TO janette.elbertson@enron.com
## 8730 90983 8329 TO tana.jones@enron.com
## 8731 90984 8330 TO tana.jones@enron.com
## 8732 90985 8331 TO justin.boyd@enron.com
## 8733 90986 8331 CC alan.aronowitz@enron.com
## 8734 90987 8331 CC janine.juggins@enron.com
## 8735 90988 8331 CC jeffrey.hodge@enron.com
## 8736 90989 8331 BCC alan.aronowitz@enron.com
## 8737 90990 8331 BCC janine.juggins@enron.com
## 8738 90991 8331 BCC jeffrey.hodge@enron.com
## 8739 90992 8332 TO lisa.lees@enron.com
## 8740 90994 8333 CC tana.jones@enron.com
## 8741 90995 8333 BCC tana.jones@enron.com
## 8742 90996 8334 TO janette.elbertson@enron.com
## 8743 90997 8335 TO taffy.milligan@enron.com
## 8744 90999 8337 TO tana.jones@enron.com
## 8745 91000 8337 CC taffy.milligan@enron.com
## 8746 91001 8337 BCC taffy.milligan@enron.com
## 8747 91003 8339 TO louise.kitchen@enron.com
## 8748 91004 8339 TO andy.zipper@enron.com
## 8749 91005 8339 CC travis.mccullough@enron.com
## 8750 91006 8339 CC anne.koehler@enron.com
## 8751 91007 8339 BCC travis.mccullough@enron.com
## 8752 91008 8339 BCC anne.koehler@enron.com
## 8753 91009 8340 TO sheri.thomas@enron.com
## 8754 91010 8341 TO taffy.milligan@enron.com
## 8755 91011 8342 TO tana.jones@enron.com
## 8756 91012 8343 TO janette.elbertson@enron.com
## 8757 91013 8344 TO melba.lozano@enron.com
## 8758 91014 8345 TO taffy.milligan@enron.com
## 8759 91015 8346 TO mark.e.taylor@enron.com
## 8760 91016 8347 TO tanya.rohauer@enron.com
## 8761 91018 8349 TO taffy.milligan@enron.com
## 8762 91019 8350 TO brent.hendry@enron.com
## 8763 91020 8351 TO joya.davis@enron.com
## 8764 91021 8352 TO elizabeth.sager@enron.com
## 8765 91022 8352 TO sara.shackleton@enron.com
## 8766 91023 8352 TO brent.hendry@enron.com
## 8767 91024 8353 TO ann.white@enron.com
## 8768 91025 8353 TO shari.stack@enron.com
## 8769 91026 8353 TO sheila.tweed@enron.com
## 8770 91027 8353 TO jeffrey.hodge@enron.com
## 8771 91028 8353 TO steve.hooser@enron.com
## 8772 91029 8353 TO barbara.gray@enron.com
## 8773 91030 8353 CC joya.davis@enron.com
## 8774 91031 8353 BCC joya.davis@enron.com
## 8775 91033 8355 TO tana.jones@enron.com
## 8776 91035 8357 TO keith.macivor@enron.com
## 8777 91036 8357 TO susan.bailey@enron.com
## 8778 91037 8357 CC chris.hilgert@enron.com
## 8779 91038 8357 BCC chris.hilgert@enron.com
## 8780 91039 8358 TO brent.hendry@enron.com
## 8781 91041 8360 TO sara.shackleton@enron.com
## 8782 91042 8361 TO taffy.milligan@enron.com
## 8783 91044 8363 TO becky.tlucek@enron.com
## 8784 91045 8363 CC andrea.calo@enron.com
## 8785 91046 8363 CC brent.hendry@enron.com
## 8786 91047 8363 CC dan.hyvl@enron.com
## 8787 91048 8363 CC jeffrey.hodge@enron.com
## 8788 91049 8363 CC lynn.aven@enron.com
## 8789 91050 8363 CC e..haedicke@enron.com
## 8790 91051 8363 CC rick.hopkinson@enron.com
## 8791 91052 8363 BCC andrea.calo@enron.com
## 8792 91053 8363 BCC brent.hendry@enron.com
## 8793 91054 8363 BCC dan.hyvl@enron.com
## 8794 91055 8363 BCC jeffrey.hodge@enron.com
## 8795 91056 8363 BCC lynn.aven@enron.com
## 8796 91057 8363 BCC e..haedicke@enron.com
## 8797 91058 8363 BCC rick.hopkinson@enron.com
## 8798 91059 8364 TO john.peyton@enron.com
## 8799 91061 8366 TO sara.shackleton@enron.com
## 8800 91063 8368 TO lerea.pharr@enron.com
## 8801 91064 8369 TO alan.aronowitz@enron.com
## 8802 91065 8369 CC leslie.reeves@enron.com
## 8803 91066 8369 CC thomas.gros@enron.com
## 8804 91067 8369 CC todd.ballengee@enron.com
## 8805 91068 8369 BCC leslie.reeves@enron.com
## 8806 91069 8369 BCC thomas.gros@enron.com
## 8807 91070 8369 BCC todd.ballengee@enron.com
## 8808 91071 8370 TO leslie.hansen@enron.com
## 8809 91072 8371 TO michael.moscoso@enron.com
## 8810 91073 8372 TO taffy.milligan@enron.com
## 8811 91074 8373 TO robert.bruce@enron.com
## 8812 91075 8374 TO sara.shackleton@enron.com
## 8813 91076 8375 TO janette.elbertson@enron.com
## 8814 91077 8376 TO david.forster@enron.com
## 8815 91078 8377 TO thomas.gros@enron.com
## 8816 91079 8377 CC alan.aronowitz@enron.com
## 8817 91080 8377 BCC alan.aronowitz@enron.com
## 8818 91082 8379 TO craig.young@enron.com
## 8819 91083 8380 TO taffy.milligan@enron.com
## 8820 91084 8381 TO craig.young@enron.com
## 8821 91085 8382 TO craig.young@enron.com
## 8822 91086 8382 CC taffy.milligan@enron.com
## 8823 91087 8382 BCC taffy.milligan@enron.com
## 8824 91088 8383 TO chris.long@enron.com
## 8825 91089 8384 TO leonardo.pacheco@enron.com
## 8826 91090 8384 CC dave.samuels@enron.com
## 8827 91091 8384 CC david.forster@enron.com
## 8828 91092 8384 CC leslie.hansen@enron.com
## 8829 91093 8384 BCC dave.samuels@enron.com
## 8830 91094 8384 BCC david.forster@enron.com
## 8831 91095 8384 BCC leslie.hansen@enron.com
## 8832 91096 8385 TO dave.samuels@enron.com
## 8833 91097 8385 CC justin.boyd@enron.com
## 8834 91098 8385 CC rahil.jafry@enron.com
## 8835 91099 8385 CC victor.browner@enron.com
## 8836 91100 8385 BCC justin.boyd@enron.com
## 8837 91101 8385 BCC rahil.jafry@enron.com
## 8838 91102 8385 BCC victor.browner@enron.com
## 8839 91103 8386 TO john.viverito@enron.com
## 8840 91104 8386 CC jonathan.whitehead@enron.com
## 8841 91105 8386 CC kevin.cordesman@enron.com
## 8842 91106 8386 CC steven.kleege@enron.com
## 8843 91107 8386 CC tom.bruce-jones@enron.com
## 8844 91108 8386 BCC jonathan.whitehead@enron.com
## 8845 91109 8386 BCC kevin.cordesman@enron.com
## 8846 91110 8386 BCC steven.kleege@enron.com
## 8847 91111 8386 BCC tom.bruce-jones@enron.com
## 8848 91113 8388 TO tana.jones@enron.com
## 8849 91114 8389 TO justin.boyd@enron.com
## 8850 91115 8390 TO melissa.murphy@enron.com
## 8851 91116 8390 CC edith.cross@enron.com
## 8852 91117 8390 CC jason.wiesepape@enron.com
## 8853 91118 8390 BCC edith.cross@enron.com
## 8854 91119 8390 BCC jason.wiesepape@enron.com
## 8855 91120 8391 TO melissa.murphy@enron.com
## 8856 91121 8391 CC edith.cross@enron.com
## 8857 91122 8391 CC jason.wiesepape@enron.com
## 8858 91123 8391 BCC edith.cross@enron.com
## 8859 91124 8391 BCC jason.wiesepape@enron.com
## 8860 91125 8392 TO travis.mccullough@enron.com
## 8861 91126 8393 TO travis.mccullough@enron.com
## 8862 91127 8394 TO travis.mccullough@enron.com
## 8863 91128 8394 CC tana.jones@enron.com
## 8864 91129 8394 BCC tana.jones@enron.com
## 8865 91131 8396 TO erica.bess@enron.com
## 8866 91132 8396 CC rahil.jafry@enron.com
## 8867 91133 8396 BCC rahil.jafry@enron.com
## 8868 91134 8397 TO louise.kitchen@enron.com
## 8869 91135 8397 CC andy.zipper@enron.com
## 8870 91136 8397 CC dave.samuels@enron.com
## 8871 91137 8397 CC david.forster@enron.com
## 8872 91138 8397 CC edmund.cooper@enron.com
## 8873 91139 8397 CC justin.boyd@enron.com
## 8874 91140 8397 CC leslie.hansen@enron.com
## 8875 91141 8397 BCC andy.zipper@enron.com
## 8876 91142 8397 BCC dave.samuels@enron.com
## 8877 91143 8397 BCC david.forster@enron.com
## 8878 91144 8397 BCC edmund.cooper@enron.com
## 8879 91145 8397 BCC justin.boyd@enron.com
## 8880 91146 8397 BCC leslie.hansen@enron.com
## 8881 91148 8399 TO amita.gosalia@enron.com
## 8882 91149 8400 TO justin.boyd@enron.com
## 8883 91150 8401 TO mark.e.taylor@enron.com
## 8884 91151 8402 TO louise.kitchen@enron.com
## 8885 91152 8402 TO andy.zipper@enron.com
## 8886 91153 8402 TO david.forster@enron.com
## 8887 91154 8402 TO dave.samuels@enron.com
## 8888 91155 8402 TO leslie.hansen@enron.com
## 8889 91156 8402 TO justin.boyd@enron.com
## 8890 91157 8402 TO edmund.cooper@enron.com
## 8891 91159 8404 TO mary.cook@enron.com
## 8892 91160 8405 TO john.viverito@enron.com
## 8893 91161 8405 CC john.suttle@enron.com
## 8894 91162 8405 BCC john.suttle@enron.com
## 8895 91163 8406 TO janette.elbertson@enron.com
## 8896 91164 8407 TO dave.samuels@enron.com
## 8897 91165 8407 TO victor.browner@enron.com
## 8898 91166 8408 TO john.suttle@enron.com
## 8899 91167 8409 TO john.viverito@enron.com
## 8900 91168 8409 CC jonathan.whitehead@enron.com
## 8901 91169 8409 BCC jonathan.whitehead@enron.com
## 8902 91170 8410 TO janette.elbertson@enron.com
## 8903 91172 8412 TO stacy.dickson@enron.com
## 8904 91173 8413 TO carol.clair@enron.com
## 8905 91174 8414 TO leonardo.pacheco@enron.com
## 8906 91176 8416 TO mary.cook@enron.com
## 8907 91177 8416 CC sara.shackleton@enron.com
## 8908 91178 8416 BCC sara.shackleton@enron.com
## 8909 91179 8417 TO robert.bruce@enron.com
## 8910 91180 8417 CC robert.bruce@enron.com
## 8911 91181 8417 CC sara.shackleton@enron.com
## 8912 91182 8417 BCC robert.bruce@enron.com
## 8913 91183 8417 BCC sara.shackleton@enron.com
## 8914 91184 8418 TO john.peyton@enron.com
## 8915 91185 8418 CC keith.macivor@enron.com
## 8916 91186 8418 BCC keith.macivor@enron.com
## 8917 91187 8419 TO sara.shackleton@enron.com
## 8918 91188 8420 TO susan.bailey@enron.com
## 8919 91189 8420 TO samantha.boyd@enron.com
## 8920 91190 8420 TO tana.jones@enron.com
## 8921 91191 8420 TO stephanie.panus@enron.com
## 8922 91192 8420 TO brent.hendry@enron.com
## 8923 91193 8421 TO brent.hendry@enron.com
## 8924 91195 8423 TO kay.young@enron.com
## 8925 91196 8423 CC julia.murray@enron.com
## 8926 91197 8423 CC mark.e.taylor@enron.com
## 8927 91198 8423 BCC julia.murray@enron.com
## 8928 91199 8423 BCC mark.e.taylor@enron.com
## 8929 91200 8424 TO tana.jones@enron.com
## 8930 91201 8425 TO janette.elbertson@enron.com
## 8931 91202 8426 TO sara.shackleton@enron.com
## 8932 91203 8427 TO wendi.lebrocq@enron.com
## 8933 91204 8428 TO travis.mccullough@enron.com
## 8934 91205 8429 TO mark.e.taylor@enron.com
## 8935 91206 8430 TO mark.e.taylor@enron.com
## 8936 91207 8431 TO mark.e.taylor@enron.com
## 8937 91208 8432 TO mark.e.taylor@enron.com
## 8938 91209 8433 TO mark.e.taylor@enron.com
## 8939 91210 8434 TO sara.shackleton@enron.com
## 8940 91211 8435 TO sara.shackleton@enron.com
## 8941 91212 8436 TO brent.hendry@enron.com
## 8942 91213 8437 TO sara.shackleton@enron.com
## 8943 91214 8438 TO teresa.smith@enron.com
## 8944 91215 8439 TO sara.shackleton@enron.com
## 8945 91216 8440 TO david.forster@enron.com
## 8946 91217 8441 TO sara.shackleton@enron.com
## 8947 91218 8442 TO john.viverito@enron.com
## 8948 91219 8443 TO tana.jones@enron.com
## 8949 91220 8443 CC susan.bailey@enron.com
## 8950 91221 8443 BCC susan.bailey@enron.com
## 8951 91222 8444 TO laura.johnson@enron.com
## 8952 91223 8445 TO tana.jones@enron.com
## 8953 91224 8446 TO sheri.thomas@enron.com
## 8954 91225 8446 CC frank.davis@enron.com
## 8955 91226 8446 BCC frank.davis@enron.com
## 8956 91227 8447 TO linda.noske@enron.com
## 8957 91229 8449 TO harry.arora@enron.com
## 8958 91232 8451 TO david.forster@enron.com
## 8959 91233 8452 TO sara.shackleton@enron.com
## 8960 91234 8453 TO frank.davis@enron.com
## 8961 91235 8454 TO louise.kitchen@enron.com
## 8962 91236 8455 TO jeffrey.keeler@enron.com
## 8963 91238 8456 CC andrea.v.reed@enron.com
## 8964 91239 8456 CC anne.c.koehler@enron.com
## 8965 91241 8456 BCC andrea.v.reed@enron.com
## 8966 91242 8456 BCC anne.c.koehler@enron.com
## 8967 91244 8457 TO sara.shackleton@enron.com
## 8968 91245 8458 TO travis.mccullough@enron.com
## 8969 91246 8459 TO travis.mccullough@enron.com
## 8970 91248 8461 TO michael.brown@enron.com
## 8971 91249 8462 TO david.minns@enron.com
## 8972 91250 8462 CC tana.jones@enron.com
## 8973 91251 8462 BCC tana.jones@enron.com
## 8974 91252 8463 TO elaine.bannerman-sowah@enron.com
## 8975 91253 8463 CC paul.simons@enron.com
## 8976 91254 8463 CC denis.o connell@enron.com
## 8977 91255 8463 BCC paul.simons@enron.com
## 8978 91256 8463 BCC denis.o connell@enron.com
## 8979 91257 8464 TO denis.o connell@enron.com
## 8980 91258 8464 TO michael.slade@enron.com
## 8981 91259 8464 CC paul.simons@enron.com
## 8982 91260 8464 BCC paul.simons@enron.com
## 8983 91261 8465 TO dave.samuels@enron.com
## 8984 91262 8466 TO anne.koehler@enron.com
## 8985 91263 8467 TO sara.shackleton@enron.com
## 8986 91264 8468 TO sara.shackleton@enron.com
## 8987 91265 8469 TO julia.murray@enron.com
## 8988 91266 8469 TO anne.koehler@enron.com
## 8989 91267 8469 TO dan.lyons@enron.com
## 8990 91268 8469 TO martin.penkwitz@enron.com
## 8991 91269 8469 CC joya.davis@enron.com
## 8992 91270 8469 BCC joya.davis@enron.com
## 8993 91271 8470 TO david.forster@enron.com
## 8994 91272 8471 TO sara.shackleton@enron.com
## 8995 91273 8472 TO john.viverito@enron.com
## 8996 91274 8472 TO brent.hendry@enron.com
## 8997 91275 8472 CC alan.aronowitz@enron.com
## 8998 91276 8472 CC jonathan.whitehead@enron.com
## 8999 91277 8472 BCC alan.aronowitz@enron.com
## 9000 91278 8472 BCC jonathan.whitehead@enron.com
## 9001 91279 8473 TO travis.mccullough@enron.com
## 9002 91280 8474 TO taffy.milligan@enron.com
## 9003 91281 8475 TO sara.shackleton@enron.com
## 9004 91282 8476 TO leslie.hansen@enron.com
## 9005 91283 8477 TO taffy.milligan@enron.com
## 9006 91284 8478 TO janette.elbertson@enron.com
## 9007 91286 8480 TO john.peyton@enron.com
## 9008 91287 8481 TO andrea.bertone@enron.com
## 9009 91288 8482 TO david.forster@enron.com
## 9010 91289 8483 TO carol.clair@enron.com
## 9011 91290 8484 TO david.forster@enron.com
## 9012 91291 8485 TO e..haedicke@enron.com
## 9013 91292 8486 TO kal.shah@enron.com
## 9014 91293 8486 CC david.forster@enron.com
## 9015 91294 8486 CC mark.palmer@enron.com
## 9016 91295 8486 BCC david.forster@enron.com
## 9017 91296 8486 BCC mark.palmer@enron.com
## 9018 91297 8487 TO kal.shah@enron.com
## 9019 91298 8487 CC mark.palmer@enron.com
## 9020 91299 8487 CC david.forster@enron.com
## 9021 91300 8487 BCC mark.palmer@enron.com
## 9022 91301 8487 BCC david.forster@enron.com
## 9023 91302 8488 TO suzanne.adams@enron.com
## 9024 91303 8489 TO sara.shackleton@enron.com
## 9025 91304 8490 TO sara.shackleton@enron.com
## 9026 91305 8491 TO brenda.whitehead@enron.com
## 9027 91306 8492 TO michael.robison@enron.com
## 9028 91307 8493 TO brenda.whitehead@enron.com
## 9029 91308 8494 TO leslie.hansen@enron.com
## 9030 91309 8495 TO carol.clair@enron.com
## 9031 91310 8496 TO e..haedicke@enron.com
## 9032 91311 8497 TO sara.shackleton@enron.com
## 9033 91312 8497 TO robert.bruce@enron.com
## 9034 91313 8498 TO richard.b.sanders@enron.com
## 9035 91314 8499 TO bob.bowen@enron.com
## 9036 91315 8500 TO travis.mccullough@enron.com
## 9037 91316 8500 CC dave.samuels@enron.com
## 9038 91317 8500 BCC dave.samuels@enron.com
## 9039 91318 8501 TO taffy.milligan@enron.com
## 9040 91319 8502 TO sara.shackleton@enron.com
## 9041 91320 8503 TO tana.jones@enron.com
## 9042 91321 8503 CC brent.hendry@enron.com
## 9043 91322 8503 CC carol.clair@enron.com
## 9044 91323 8503 CC mary.cook@enron.com
## 9045 91324 8503 CC robert.bruce@enron.com
## 9046 91325 8503 CC samantha.boyd@enron.com
## 9047 91326 8503 CC sara.shackleton@enron.com
## 9048 91327 8503 CC susan.bailey@enron.com
## 9049 91328 8503 BCC brent.hendry@enron.com
## 9050 91329 8503 BCC carol.clair@enron.com
## 9051 91330 8503 BCC mary.cook@enron.com
## 9052 91331 8503 BCC robert.bruce@enron.com
## 9053 91332 8503 BCC samantha.boyd@enron.com
## 9054 91333 8503 BCC sara.shackleton@enron.com
## 9055 91334 8503 BCC susan.bailey@enron.com
## 9056 91335 8504 TO carol.clair@enron.com
## 9057 91336 8505 TO tana.jones@enron.com
## 9058 91337 8506 TO tana.jones@enron.com
## 9059 91338 8506 TO brenda.whitehead@enron.com
## 9060 91339 8507 TO patrick.hansen@enron.com
## 9061 91340 8507 CC andrea.calo@enron.com
## 9062 91341 8507 CC brent.hendry@enron.com
## 9063 91342 8507 CC carlos.bastos@enron.com
## 9064 91343 8507 CC david.forster@enron.com
## 9065 91344 8507 CC fabian.valle@enron.com
## 9066 91345 8507 CC jeff.kabel@enron.com
## 9067 91346 8507 CC leonardo.pacheco@enron.com
## 9068 91347 8507 CC maria.minguillon@enron.com
## 9069 91348 8507 CC michael.guerriero@enron.com
## 9070 91349 8507 CC brent.hendry@enron.com
## 9071 91350 8507 BCC andrea.calo@enron.com
## 9072 91351 8507 BCC brent.hendry@enron.com
## 9073 91352 8507 BCC carlos.bastos@enron.com
## 9074 91353 8507 BCC david.forster@enron.com
## 9075 91354 8507 BCC fabian.valle@enron.com
## 9076 91355 8507 BCC jeff.kabel@enron.com
## 9077 91356 8507 BCC leonardo.pacheco@enron.com
## 9078 91357 8507 BCC maria.minguillon@enron.com
## 9079 91358 8507 BCC michael.guerriero@enron.com
## 9080 91359 8507 BCC brent.hendry@enron.com
## 9081 91360 8508 TO sara.shackleton@enron.com
## 9082 91361 8508 CC taffy.milligan@enron.com
## 9083 91362 8508 BCC taffy.milligan@enron.com
## 9084 91363 8509 TO suryan.simunovic@enron.com
## 9085 91364 8510 TO justin.boyd@enron.com
## 9086 91367 8513 TO taffy.milligan@enron.com
## 9087 91368 8513 CC ann.white@enron.com
## 9088 91369 8513 CC susan.bailey@enron.com
## 9089 91370 8513 CC tana.jones@enron.com
## 9090 91371 8513 BCC ann.white@enron.com
## 9091 91372 8513 BCC susan.bailey@enron.com
## 9092 91373 8513 BCC tana.jones@enron.com
## 9093 91374 8514 TO craig.clark@enron.com
## 9094 91376 8514 CC annmarie.tiller@enron.com
## 9095 91377 8514 CC brent.vasconcellos@enron.com
## 9096 91378 8514 CC carol.clair@enron.com
## 9097 91379 8514 CC clint.walden@enron.com
## 9098 91380 8514 CC craig.clark@enron.com
## 9099 91381 8514 CC doug.mcdowell@enron.com
## 9100 91383 8514 CC gareth.bahlmann@enron.com
## 9101 91384 8514 CC kevin.jordan@enron.com
## 9102 91385 8514 CC kimberly.scardino@enron.com
## 9103 91386 8514 CC ryan.siurek@enron.com
## 9104 91388 8514 BCC annmarie.tiller@enron.com
## 9105 91389 8514 BCC brent.vasconcellos@enron.com
## 9106 91390 8514 BCC carol.clair@enron.com
## 9107 91391 8514 BCC clint.walden@enron.com
## 9108 91392 8514 BCC craig.clark@enron.com
## 9109 91393 8514 BCC doug.mcdowell@enron.com
## 9110 91395 8514 BCC gareth.bahlmann@enron.com
## 9111 91396 8514 BCC kevin.jordan@enron.com
## 9112 91397 8514 BCC kimberly.scardino@enron.com
## 9113 91398 8514 BCC ryan.siurek@enron.com
## 9114 91399 8515 TO carol.clair@enron.com
## 9115 91400 8516 TO chris.long@enron.com
## 9116 91401 8516 CC cynthia.sandherr@enron.com
## 9117 91402 8516 CC joe.hillings@enron.com
## 9118 91404 8516 CC richard.shapiro@enron.com
## 9119 91405 8516 CC stephen.burns@enron.com
## 9120 91406 8516 CC steven.j.kean@enron.com
## 9121 91407 8516 BCC cynthia.sandherr@enron.com
## 9122 91408 8516 BCC joe.hillings@enron.com
## 9123 91410 8516 BCC richard.shapiro@enron.com
## 9124 91411 8516 BCC stephen.burns@enron.com
## 9125 91412 8516 BCC steven.j.kean@enron.com
## 9126 91413 8517 TO suryan.simunovic@enron.com
## 9127 91414 8517 CC david.forster@enron.com
## 9128 91415 8517 CC louise.kitchen@enron.com
## 9129 91416 8517 CC mark.palmer@enron.com
## 9130 91417 8517 CC nick.mooney@enron.com
## 9131 91418 8517 BCC david.forster@enron.com
## 9132 91419 8517 BCC louise.kitchen@enron.com
## 9133 91420 8517 BCC mark.palmer@enron.com
## 9134 91421 8517 BCC nick.mooney@enron.com
## 9135 91422 8518 TO louise.kitchen@enron.com
## 9136 91423 8518 CC gareth.bahlmann@enron.com
## 9137 91424 8518 BCC gareth.bahlmann@enron.com
## 9138 91425 8519 TO louise.kitchen@enron.com
## 9139 91426 8520 TO paul.simons@enron.com
## 9140 91428 8520 CC louise.kitchen@enron.com
## 9141 91429 8520 BCC louise.kitchen@enron.com
## 9142 91430 8521 TO simon.duff@enron.com
## 9143 91431 8521 CC maria.raftery@enron.com
## 9144 91432 8521 CC richard.black@enron.com
## 9145 91433 8521 CC tomas.valnek@enron.com
## 9146 91434 8521 BCC maria.raftery@enron.com
## 9147 91435 8521 BCC richard.black@enron.com
## 9148 91436 8521 BCC tomas.valnek@enron.com
## 9149 91437 8522 TO information.management@enron.com
## 9150 91438 8523 TO andrea.calo@enron.com
## 9151 91439 8524 TO jeffrey.hodge@enron.com
## 9152 91440 8525 TO brent.hendry@enron.com
## 9153 91441 8526 TO tana.jones@enron.com
## 9154 91442 8527 TO teresa.bushman@enron.com
## 9155 91443 8528 TO taffy.milligan@enron.com
## 9156 91444 8529 TO taffy.milligan@enron.com
## 9157 91445 8530 TO peter.keohane@enron.com
## 9158 91446 8530 TO e..haedicke@enron.com
## 9159 91447 8531 TO john.peyton@enron.com
## 9160 91448 8532 TO david.forster@enron.com
## 9161 91449 8533 TO leslie.hansen@enron.com
## 9162 91450 8534 TO andy.zipper@enron.com
## 9163 91451 8535 TO leslie.hansen@enron.com
## 9164 91452 8536 TO leslie.hansen@enron.com
## 9165 91453 8537 TO andy.zipper@enron.com
## 9166 91454 8538 TO janet.place@enron.com
## 9167 91455 8539 TO louise.kitchen@enron.com
## 9168 91456 8539 CC leslie.hansen@enron.com
## 9169 91457 8539 BCC leslie.hansen@enron.com
## 9170 91458 8540 TO david.forster@enron.com
## 9171 91459 8541 TO michelle.cash@enron.com
## 9172 91460 8541 CC julia.murray@enron.com
## 9173 91461 8541 CC sharon.butcher@enron.com
## 9174 91462 8541 CC tanya.rohauer@enron.com
## 9175 91463 8541 BCC julia.murray@enron.com
## 9176 91464 8541 BCC sharon.butcher@enron.com
## 9177 91465 8541 BCC tanya.rohauer@enron.com
## 9178 91466 8542 TO peter.keohane@enron.com
## 9179 91467 8542 CC greg.johnston@enron.com
## 9180 91468 8542 CC e..haedicke@enron.com
## 9181 91469 8542 CC peggy.hedstrom@enron.com
## 9182 91470 8542 CC rob.milnthorp@enron.com
## 9183 91471 8542 BCC greg.johnston@enron.com
## 9184 91472 8542 BCC e..haedicke@enron.com
## 9185 91473 8542 BCC peggy.hedstrom@enron.com
## 9186 91474 8542 BCC rob.milnthorp@enron.com
## 9187 91475 8543 TO leonardo.pacheco@enron.com
## 9188 91477 8544 CC alan.aronowitz@enron.com
## 9189 91478 8544 BCC alan.aronowitz@enron.com
## 9190 91479 8545 TO janette.elbertson@enron.com
## 9191 91481 8547 TO e..haedicke@enron.com
## 9192 91482 8548 TO andrea.calo@enron.com
## 9193 91483 8548 TO brent.hendry@enron.com
## 9194 91484 8549 TO andrea.calo@enron.com
## 9195 91485 8549 CC brent.hendry@enron.com
## 9196 91486 8549 BCC brent.hendry@enron.com
## 9197 91487 8550 TO david.forster@enron.com
## 9198 91488 8550 CC travis.mccullough@enron.com
## 9199 91489 8550 BCC travis.mccullough@enron.com
## 9200 91491 8552 TO andy.zipper@enron.com
## 9201 91492 8553 TO john.peyton@enron.com
## 9202 91493 8554 TO john.peyton@enron.com
## 9203 91494 8555 TO bob.bowen@enron.com
## 9204 91495 8555 TO john.peyton@enron.com
## 9205 91496 8556 TO john.peyton@enron.com
## 9206 91497 8557 TO margaret.allen@enron.com
## 9207 91498 8558 TO susan.bailey@enron.com
## 9208 91499 8558 TO samantha.boyd@enron.com
## 9209 91500 8558 TO kaye.ellis@enron.com
## 9210 91501 8558 TO tana.jones@enron.com
## 9211 91502 8558 TO taffy.milligan@enron.com
## 9212 91503 8558 TO jason.peters@enron.com
## 9213 91504 8559 TO mary.cook@enron.com
## 9214 91505 8560 TO david.forster@enron.com
## 9215 91507 8562 TO susan.bailey@enron.com
## 9216 91508 8562 TO samantha.boyd@enron.com
## 9217 91509 8562 TO kaye.ellis@enron.com
## 9218 91510 8562 TO tana.jones@enron.com
## 9219 91511 8562 TO taffy.milligan@enron.com
## 9220 91512 8562 TO jason.peters@enron.com
## 9221 91515 8564 TO tana.jones@enron.com
## 9222 91517 8566 TO david.forster@enron.com
## 9223 91518 8567 TO alan.aronowitz@enron.com
## 9224 91519 8568 TO alan.aronowitz@enron.com
## 9225 91520 8569 TO leslie.hansen@enron.com
## 9226 91522 8571 TO joya.davis@enron.com
## 9227 91523 8572 TO alan.aronowitz@enron.com
## 9228 91524 8573 TO suryan.simunovic@enron.com
## 9229 91525 8573 CC amita.gosalia@enron.com
## 9230 91526 8573 CC edmund.cooper@enron.com
## 9231 91527 8573 CC mark.palmer@enron.com
## 9232 91528 8573 CC nick.mooney@enron.com
## 9233 91529 8573 CC peter.bradley@enron.com
## 9234 91530 8573 BCC amita.gosalia@enron.com
## 9235 91531 8573 BCC edmund.cooper@enron.com
## 9236 91532 8573 BCC mark.palmer@enron.com
## 9237 91533 8573 BCC nick.mooney@enron.com
## 9238 91534 8573 BCC peter.bradley@enron.com
## 9239 91535 8574 TO joya.davis@enron.com
## 9240 91536 8575 TO michele.word@enron.com
## 9241 91537 8575 CC carol.clair@enron.com
## 9242 91538 8575 BCC carol.clair@enron.com
## 9243 91539 8576 TO becky.tlucek@enron.com
## 9244 91540 8577 TO jason.peters@enron.com
## 9245 91541 8578 TO david.forster@enron.com
## 9246 91542 8579 TO nick.mooney@enron.com
## 9247 91543 8579 CC alan.aronowitz@enron.com
## 9248 91544 8579 BCC alan.aronowitz@enron.com
## 9249 91545 8580 TO richard.b.sanders@enron.com
## 9250 91546 8581 TO paul.simons@enron.com
## 9251 91547 8581 CC nick.mooney@enron.com
## 9252 91548 8581 CC amita.gosalia@enron.com
## 9253 91549 8581 CC dave.samuels@enron.com
## 9254 91550 8581 CC david.forster@enron.com
## 9255 91551 8581 CC louise.kitchen@enron.com
## 9256 91552 8581 BCC nick.mooney@enron.com
## 9257 91553 8581 BCC amita.gosalia@enron.com
## 9258 91554 8581 BCC dave.samuels@enron.com
## 9259 91555 8581 BCC david.forster@enron.com
## 9260 91556 8581 BCC louise.kitchen@enron.com
## 9261 91557 8582 TO louise.kitchen@enron.com
## 9262 91558 8583 TO james.bruce@enron.com
## 9263 91559 8583 CC jason.peters@enron.com
## 9264 91560 8583 BCC jason.peters@enron.com
## 9265 91561 8584 TO james.bruce@enron.com
## 9266 91562 8585 TO mark.e.taylor@enron.com
## 9267 91563 8586 TO travis.mccullough@enron.com
## 9268 91564 8587 TO taffy.milligan@enron.com
## 9269 91566 8589 TO tana.jones@enron.com
## 9270 91567 8590 TO taffy.milligan@enron.com
## 9271 91568 8591 TO craig.breslau@enron.com
## 9272 91569 8592 TO tana.jones@enron.com
## 9273 91570 8593 TO tana.jones@enron.com
## 9274 91571 8594 TO tana.jones@enron.com
## 9275 91572 8595 TO david.forster@enron.com
## 9276 91573 8596 TO stephen.douglas@enron.com
## 9277 91574 8597 TO jeff.blumenthal@enron.com
## 9278 91575 8597 CC carol.clair@enron.com
## 9279 91576 8597 CC jaime.williams@enron.com
## 9280 91577 8597 CC mario.cardoso@enron.com
## 9281 91578 8597 CC sara.shackleton@enron.com
## 9282 91579 8597 CC stephen.douglas@enron.com
## 9283 91580 8597 BCC carol.clair@enron.com
## 9284 91581 8597 BCC jaime.williams@enron.com
## 9285 91582 8597 BCC mario.cardoso@enron.com
## 9286 91583 8597 BCC sara.shackleton@enron.com
## 9287 91584 8597 BCC stephen.douglas@enron.com
## 9288 91585 8598 TO travis.mccullough@enron.com
## 9289 91586 8599 TO sara.shackleton@enron.com
## 9290 91587 8599 CC carol.clair@enron.com
## 9291 91588 8599 BCC carol.clair@enron.com
## 9292 91589 8600 TO julie.ferrara@enron.com
## 9293 91590 8601 TO susan.flynn@enron.com
## 9294 91591 8601 TO susan.bailey@enron.com
## 9295 91592 8602 TO daniel.diamond@enron.com
## 9296 91593 8603 TO daniel.diamond@enron.com
## 9297 91594 8603 CC jason.peters@enron.com
## 9298 91595 8603 BCC jason.peters@enron.com
## 9299 91596 8604 TO janette.elbertson@enron.com
## 9300 91597 8604 CC cynthia.sandherr@enron.com
## 9301 91598 8604 BCC cynthia.sandherr@enron.com
## 9302 91599 8605 TO cynthia.sandherr@enron.com
## 9303 91600 8606 TO e..haedicke@enron.com
## 9304 91601 8607 TO brent.hendry@enron.com
## 9305 91602 8608 TO david.minns@enron.com
## 9306 91605 8609 CC louise.kitchen@enron.com
## 9307 91606 8609 CC andy.zipper@enron.com
## 9308 91607 8609 CC travis.mccullough@enron.com
## 9309 91608 8609 BCC louise.kitchen@enron.com
## 9310 91609 8609 BCC andy.zipper@enron.com
## 9311 91610 8609 BCC travis.mccullough@enron.com
## 9312 91611 8610 TO david.forster@enron.com
## 9313 91612 8611 TO melba.lozano@enron.com
## 9314 91615 8614 TO tana.jones@enron.com
## 9315 91616 8615 TO david.forster@enron.com
## 9316 91617 8616 TO leslie.hansen@enron.com
## 9317 91618 8617 TO leslie.hansen@enron.com
## 9318 91619 8618 TO leslie.hansen@enron.com
## 9319 91620 8619 TO leslie.hansen@enron.com
## 9320 91621 8620 TO leslie.hansen@enron.com
## 9321 91622 8621 TO leslie.hansen@enron.com
## 9322 91623 8622 TO leslie.hansen@enron.com
## 9323 91624 8623 TO leslie.hansen@enron.com
## 9324 91625 8624 TO sara.shackleton@enron.com
## 9325 91626 8625 TO sara.shackleton@enron.com
## 9326 91627 8626 TO janette.elbertson@enron.com
## 9327 91628 8626 CC becky.tlucek@enron.com
## 9328 91629 8626 BCC becky.tlucek@enron.com
## 9329 91630 8627 TO louise.kitchen@enron.com
## 9330 91631 8627 CC andy.zipper@enron.com
## 9331 91632 8627 CC lydia.cannon@enron.com
## 9332 91633 8627 CC travis.mccullough@enron.com
## 9333 91634 8627 BCC andy.zipper@enron.com
## 9334 91635 8627 BCC lydia.cannon@enron.com
## 9335 91636 8627 BCC travis.mccullough@enron.com
## 9336 91637 8628 TO craig.breslau@enron.com
## 9337 91639 8630 TO brent.hendry@enron.com
## 9338 91640 8631 TO jason.peters@enron.com
## 9339 91641 8632 TO susan.flynn@enron.com
## 9340 91642 8633 TO bob.shults@enron.com
## 9341 91643 8634 TO julie.ferrara@enron.com
## 9342 91644 8635 TO melba.lozano@enron.com
## 9343 91645 8636 TO lou.stoler@enron.com
## 9344 91646 8637 TO bryan.seyfried@enron.com
## 9345 91647 8638 TO bryan.seyfried@enron.com
## 9346 91648 8638 CC paul.simons@enron.com
## 9347 91649 8638 BCC paul.simons@enron.com
## 9348 91651 8639 CC lou.stoler@enron.com
## 9349 91652 8639 BCC lou.stoler@enron.com
## 9350 91653 8640 TO bryan.seyfried@enron.com
## 9351 91654 8640 CC denis.o connell@enron.com
## 9352 91655 8640 CC edmund.cooper@enron.com
## 9353 91656 8640 CC markus.fiala@enron.com
## 9354 91657 8640 CC paul.simons@enron.com
## 9355 91658 8640 CC rod.nelson@enron.com
## 9356 91659 8640 CC tomas.valnek@enron.com
## 9357 91660 8640 CC william.bradford@enron.com
## 9358 91661 8640 BCC denis.o connell@enron.com
## 9359 91662 8640 BCC edmund.cooper@enron.com
## 9360 91663 8640 BCC markus.fiala@enron.com
## 9361 91664 8640 BCC paul.simons@enron.com
## 9362 91665 8640 BCC rod.nelson@enron.com
## 9363 91666 8640 BCC tomas.valnek@enron.com
## 9364 91667 8640 BCC william.bradford@enron.com
## 9365 91668 8641 TO susan.flynn@enron.com
## 9366 91669 8642 TO tana.jones@enron.com
## 9367 91670 8643 TO lou.stoler@enron.com
## 9368 91672 8644 CC lou.stoler@enron.com
## 9369 91673 8644 BCC lou.stoler@enron.com
## 9370 91674 8645 TO alan.aronowitz@enron.com
## 9371 91675 8645 CC jeffrey.hodge@enron.com
## 9372 91676 8645 BCC jeffrey.hodge@enron.com
## 9373 91677 8646 TO brent.hendry@enron.com
## 9374 91678 8646 CC andrea.calo@enron.com
## 9375 91679 8646 CC lynn.aven@enron.com
## 9376 91680 8646 BCC andrea.calo@enron.com
## 9377 91681 8646 BCC lynn.aven@enron.com
## 9378 91682 8647 TO sara.shackleton@enron.com
## 9379 91683 8648 TO travis.mccullough@enron.com
## 9380 91684 8649 TO paul.simons@enron.com
## 9381 91685 8650 TO sara.shackleton@enron.com
## 9382 91686 8651 TO mark.powell@enron.com
## 9383 91687 8651 CC alan.aronowitz@enron.com
## 9384 91688 8651 CC grant.oh@enron.com
## 9385 91689 8651 CC jeffrey.hodge@enron.com
## 9386 91690 8651 CC e..haedicke@enron.com
## 9387 91691 8651 BCC alan.aronowitz@enron.com
## 9388 91692 8651 BCC grant.oh@enron.com
## 9389 91693 8651 BCC jeffrey.hodge@enron.com
## 9390 91694 8651 BCC e..haedicke@enron.com
## 9391 91695 8652 TO andy.zipper@enron.com
## 9392 91696 8653 TO justin.boyd@enron.com
## 9393 91697 8654 TO brent.hendry@enron.com
## 9394 91698 8654 TO andrea.calo@enron.com
## 9395 91699 8655 TO sara.shackleton@enron.com
## 9396 91700 8656 TO andy.zipper@enron.com
## 9397 91701 8657 TO brent.hendry@enron.com
## 9398 91702 8658 TO sara.shackleton@enron.com
## 9399 91703 8659 TO john.viverito@enron.com
## 9400 91704 8660 TO john.viverito@enron.com
## 9401 91705 8661 TO tana.jones@enron.com
## 9402 91707 8663 TO andrea.bertone@enron.com
## 9403 91708 8664 TO andrea.bertone@enron.com
## 9404 91709 8665 TO sara.shackleton@enron.com
## 9405 91711 8666 CC travis.mccullough@enron.com
## 9406 91712 8666 CC louise.kitchen@enron.com
## 9407 91713 8666 BCC travis.mccullough@enron.com
## 9408 91714 8666 BCC louise.kitchen@enron.com
## 9409 91715 8667 TO travis.mccullough@enron.com
## 9410 91716 8668 TO peoplefinder@enron.com
## 9411 91717 8669 TO louise.kitchen@enron.com
## 9412 91718 8670 TO mark.e.taylor@enron.com
## 9413 91719 8671 TO susan.flynn@enron.com
## 9414 91720 8672 TO susan.flynn@enron.com
## 9415 91721 8673 TO taffy.milligan@enron.com
## 9416 91722 8674 TO paul.simons@enron.com
## 9417 91723 8675 TO louise.kitchen@enron.com
## 9418 91724 8676 TO andrea.bertone@enron.com
## 9419 91725 8676 TO andrea.calo@enron.com
## 9420 91726 8676 TO brent.hendry@enron.com
## 9421 91728 8678 TO taffy.milligan@enron.com
## 9422 91730 8679 CC travis.mccullough@enron.com
## 9423 91731 8679 BCC travis.mccullough@enron.com
## 9424 91732 8680 TO paul.simons@enron.com
## 9425 91733 8680 TO edmund.cooper@enron.com
## 9426 91734 8681 TO travis.mccullough@enron.com
## 9427 91735 8682 TO david.forster@enron.com
## 9428 91736 8683 TO louise.kitchen@enron.com
## 9429 91737 8684 TO sheila.glover@enron.com
## 9430 91738 8684 CC gareth.bahlmann@enron.com
## 9431 91739 8684 BCC gareth.bahlmann@enron.com
## 9432 91740 8685 TO kaye.ellis@enron.com
## 9433 91741 8686 TO mark.e.taylor@enron.com
## 9434 91742 8687 TO louise.kitchen@enron.com
## 9435 91743 8688 TO janette.elbertson@enron.com
## 9436 91744 8689 TO david.forster@enron.com
## 9437 91745 8689 CC jay.webb@enron.com
## 9438 91746 8689 CC mark.dilworth@enron.com
## 9439 91747 8689 CC sheri.thomas@enron.com
## 9440 91748 8689 CC amita.gosalia@enron.com
## 9441 91749 8689 CC dale.neuner@enron.com
## 9442 91750 8689 BCC jay.webb@enron.com
## 9443 91751 8689 BCC mark.dilworth@enron.com
## 9444 91752 8689 BCC sheri.thomas@enron.com
## 9445 91753 8689 BCC amita.gosalia@enron.com
## 9446 91754 8689 BCC dale.neuner@enron.com
## 9447 91755 8690 TO taffy.milligan@enron.com
## 9448 91756 8691 TO travis.mccullough@enron.com
## 9449 91757 8692 TO information.management@enron.com
## 9450 91758 8693 TO information.management@enron.com
## 9451 91759 8694 TO information.management@enron.com
## 9452 91760 8695 TO information.management@enron.com
## 9453 91761 8696 TO nedre.strambler@enron.com
## 9454 91762 8696 CC ann.white@enron.com
## 9455 91763 8696 BCC ann.white@enron.com
## 9456 91764 8697 TO nedre.strambler@enron.com
## 9457 91765 8698 TO tana.jones@enron.com
## 9458 91766 8699 TO david.forster@enron.com
## 9459 91767 8699 CC carol.clair@enron.com
## 9460 91768 8699 BCC carol.clair@enron.com
## 9461 91769 8700 TO jason.peters@enron.com
## 9462 91770 8700 TO carol.clair@enron.com
## 9463 91771 8701 TO janette.elbertson@enron.com
## 9464 91772 8702 TO brent.hendry@enron.com
## 9465 91773 8702 TO sara.shackleton@enron.com
## 9466 91774 8702 TO carol.clair@enron.com
## 9467 91775 8702 TO andrea.calo@enron.com
## 9468 91776 8702 TO tana.jones@enron.com
## 9469 91777 8702 TO susan.flynn@enron.com
## 9470 91778 8702 TO susan.bailey@enron.com
## 9471 91779 8702 TO becky.tlucek@enron.com
## 9472 91780 8702 TO taffy.milligan@enron.com
## 9473 91781 8702 TO kaye.ellis@enron.com
## 9474 91782 8702 TO suzanne.adams@enron.com
## 9475 91783 8703 TO carol.clair@enron.com
## 9476 91784 8704 TO carol.clair@enron.com
## 9477 91785 8705 TO carol.clair@enron.com
## 9478 91786 8706 TO leonardo.pacheco@enron.com
## 9479 91787 8706 CC jay.hawthorn@enron.com
## 9480 91788 8706 CC cynthia.harkness@enron.com
## 9481 91789 8706 CC jean.mrha@enron.com
## 9482 91790 8706 CC david.forster@enron.com
## 9483 91791 8706 CC julie.ferrara@enron.com
## 9484 91792 8706 CC kal.shah@enron.com
## 9485 91793 8706 BCC jay.hawthorn@enron.com
## 9486 91794 8706 BCC cynthia.harkness@enron.com
## 9487 91795 8706 BCC jean.mrha@enron.com
## 9488 91796 8706 BCC david.forster@enron.com
## 9489 91797 8706 BCC julie.ferrara@enron.com
## 9490 91798 8706 BCC kal.shah@enron.com
## 9491 91799 8707 TO carol.clair@enron.com
## 9492 91800 8708 TO joya.davis@enron.com
## 9493 91801 8708 CC taffy.milligan@enron.com
## 9494 91802 8708 CC chaundra.woods@enron.com
## 9495 91803 8708 CC becky.tlucek@enron.com
## 9496 91804 8708 BCC taffy.milligan@enron.com
## 9497 91805 8708 BCC chaundra.woods@enron.com
## 9498 91806 8708 BCC becky.tlucek@enron.com
## 9499 91807 8709 TO cynthia.harkness@enron.com
## 9500 91808 8709 CC dale.neuner@enron.com
## 9501 91809 8709 CC david.forster@enron.com
## 9502 91810 8709 CC james.ginty@enron.com
## 9503 91811 8709 CC jay.hawthorn@enron.com
## 9504 91812 8709 CC jeff.blumenthal@enron.com
## 9505 91813 8709 CC leonardo.pacheco@enron.com
## 9506 91814 8709 CC rudi.zipter@enron.com
## 9507 91815 8709 CC tana.jones@enron.com
## 9508 91816 8709 CC tom.moran@enron.com
## 9509 91817 8709 BCC dale.neuner@enron.com
## 9510 91818 8709 BCC david.forster@enron.com
## 9511 91819 8709 BCC james.ginty@enron.com
## 9512 91820 8709 BCC jay.hawthorn@enron.com
## 9513 91821 8709 BCC jeff.blumenthal@enron.com
## 9514 91822 8709 BCC leonardo.pacheco@enron.com
## 9515 91823 8709 BCC rudi.zipter@enron.com
## 9516 91824 8709 BCC tana.jones@enron.com
## 9517 91825 8709 BCC tom.moran@enron.com
## 9518 91826 8710 TO leonardo.pacheco@enron.com
## 9519 91827 8710 TO david.forster@enron.com
## 9520 91828 8710 TO dale.neuner@enron.com
## 9521 91829 8710 TO cynthia.harkness@enron.com
## 9522 91830 8710 CC jay.hawthorn@enron.com
## 9523 91831 8710 CC tom.moran@enron.com
## 9524 91832 8710 CC rudi.zipter@enron.com
## 9525 91833 8710 CC jeff.blumenthal@enron.com
## 9526 91834 8710 CC tana.jones@enron.com
## 9527 91835 8710 CC james.ginty@enron.com
## 9528 91836 8710 BCC jay.hawthorn@enron.com
## 9529 91837 8710 BCC tom.moran@enron.com
## 9530 91838 8710 BCC rudi.zipter@enron.com
## 9531 91839 8710 BCC jeff.blumenthal@enron.com
## 9532 91840 8710 BCC tana.jones@enron.com
## 9533 91841 8710 BCC james.ginty@enron.com
## 9534 91842 8711 TO tara.sweitzer@enron.com
## 9535 91843 8712 TO carol.clair@enron.com
## 9536 91844 8713 TO carol.clair@enron.com
## 9537 91845 8714 TO e..haedicke@enron.com
## 9538 91846 8714 CC travis.mccullough@enron.com
## 9539 91848 8714 BCC travis.mccullough@enron.com
## 9540 91850 8715 TO tana.jones@enron.com
## 9541 91851 8716 TO cecilia.morellato@enron.com
## 9542 91852 8717 TO taffy.milligan@enron.com
## 9543 91853 8718 TO carol.clair@enron.com
## 9544 91854 8719 TO carol.clair@enron.com
## 9545 91855 8720 TO robin.tompkins@enron.com
## 9546 91856 8721 TO robin.tompkins@enron.com
## 9547 91857 8722 TO bob.crane@enron.com
## 9548 91858 8722 CC stephen.douglas@enron.com
## 9549 91859 8722 CC jeff.blumenthal@enron.com
## 9550 91860 8722 CC dale.neuner@enron.com
## 9551 91861 8722 BCC stephen.douglas@enron.com
## 9552 91862 8722 BCC jeff.blumenthal@enron.com
## 9553 91863 8722 BCC dale.neuner@enron.com
## 9554 91865 8724 TO james.bruce@enron.com
## 9555 91867 8726 TO mark.holsworth@enron.com
## 9556 91868 8726 CC dave.samuels@enron.com
## 9557 91869 8726 BCC dave.samuels@enron.com
## 9558 91871 8727 CC dave.samuels@enron.com
## 9559 91872 8727 BCC dave.samuels@enron.com
## 9560 91873 8728 TO nedre.strambler@enron.com
## 9561 91874 8729 TO rousseau.anai@enron.com
## 9562 91875 8729 CC david.forster@enron.com
## 9563 91876 8729 BCC david.forster@enron.com
## 9564 91877 8730 TO david.forster@enron.com
## 9565 91878 8731 TO rousseau.anai@enron.com
## 9566 91879 8732 TO taffy.milligan@enron.com
## 9567 91881 8734 TO louise.kitchen@enron.com
## 9568 91882 8734 CC nikki.slade@enron.com
## 9569 91883 8734 CC taffy.milligan@enron.com
## 9570 91884 8734 BCC nikki.slade@enron.com
## 9571 91885 8734 BCC taffy.milligan@enron.com
## 9572 91886 8735 TO taffy.milligan@enron.com
## 9573 91887 8736 TO travis.mccullough@enron.com
## 9574 91888 8737 TO alan.aronowitz@enron.com
## 9575 91889 8738 TO carol.clair@enron.com
## 9576 91890 8739 TO suzanne.adams@enron.com
## 9577 91891 8740 TO brent.hendry@enron.com
## 9578 91892 8741 TO rousseau.anai@enron.com
## 9579 91893 8741 CC mparraca@enron.com
## 9580 91894 8741 BCC mparraca@enron.com
## 9581 91895 8742 TO mario.cardoso@enron.com
## 9582 91896 8742 CC david.forster@enron.com
## 9583 91897 8742 BCC david.forster@enron.com
## 9584 91898 8743 TO nedre.strambler@enron.com
## 9585 91899 8744 TO nedre.strambler@enron.com
## 9586 91900 8745 TO robbi.rossi@enron.com
## 9587 91901 8745 CC alan.aronowitz@enron.com
## 9588 91902 8745 BCC alan.aronowitz@enron.com
## 9589 91903 8746 TO carol.clair@enron.com
## 9590 91904 8747 TO brenda.mcafee@enron.com
## 9591 91906 8749 TO carol.clair@enron.com
## 9592 91907 8749 TO sara.shackleton@enron.com
## 9593 91908 8750 TO mario.cardoso@enron.com
## 9594 91909 8750 CC david.forster@enron.com
## 9595 91910 8750 BCC david.forster@enron.com
## 9596 91913 8753 TO taffy.milligan@enron.com
## 9597 91914 8754 TO allison.navin@enron.com
## 9598 91915 8754 TO cynthia.sandherr@enron.com
## 9599 91917 8756 TO cynthia.sandherr@enron.com
## 9600 91920 8759 TO rousseau.anai@enron.com
## 9601 91921 8760 TO alan.aronowitz@enron.com
## 9602 91922 8760 CC joseph.hirl@enron.com
## 9603 91923 8760 CC john.ambler@enron.com
## 9604 91924 8760 CC rousseau.anai@enron.com
## 9605 91925 8760 BCC joseph.hirl@enron.com
## 9606 91926 8760 BCC john.ambler@enron.com
## 9607 91927 8760 BCC rousseau.anai@enron.com
## 9608 91928 8761 TO taffy.milligan@enron.com
## 9609 91931 8764 TO information.management@enron.com
## 9610 91932 8765 TO moazzam.khoja@enron.com
## 9611 91933 8765 CC paul.simons@enron.com
## 9612 91934 8765 BCC paul.simons@enron.com
## 9613 91936 8767 TO mark.e.taylor@enron.com
## 9614 91938 8769 TO information.management@enron.com
## 9615 91939 8770 TO no.address@enron.com
## 9616 91940 8771 TO e..haedicke@enron.com
## 9617 91941 8772 TO carol.clair@enron.com
## 9618 91943 8774 TO alan.aronowitz@enron.com
## 9619 91945 8776 TO information.management@enron.com
## 9620 91946 8777 TO james.bruce@enron.com
## 9621 91947 8778 TO tana.jones@enron.com
## 9622 91949 8779 TO moazzam.khoja@enron.com
## 9623 91950 8779 TO bryan.seyfried@enron.com
## 9624 91951 8779 TO john.metzler@enron.com
## 9625 91952 8779 TO paul.simons@enron.com
## 9626 91953 8780 TO david.forster@enron.com
## 9627 91954 8781 TO moazzam.khoja@enron.com
## 9628 91955 8781 TO bryan.seyfried@enron.com
## 9629 91956 8781 TO john.metzler@enron.com
## 9630 91957 8781 TO paul.simons@enron.com
## 9631 91958 8782 TO moazzam.khoja@enron.com
## 9632 91959 8782 TO bryan.seyfried@enron.com
## 9633 91960 8782 TO john.metzler@enron.com
## 9634 91961 8782 TO paul.simons@enron.com
## 9635 91962 8783 TO cynthia.sandherr@enron.com
## 9636 91963 8784 TO cynthia.sandherr@enron.com
## 9637 91964 8785 TO cynthia.sandherr@enron.com
## 9638 91965 8786 TO taffy.milligan@enron.com
## 9639 91966 8787 TO sandra.hart@enron.com
## 9640 91967 8788 TO leslie.hansen@enron.com
## 9641 91969 8790 TO information.management@enron.com
## 9642 91970 8791 TO david.minns@enron.com
## 9643 91971 8791 CC tana.jones@enron.com
## 9644 91972 8791 BCC tana.jones@enron.com
## 9645 91973 8792 TO harry.arora@enron.com
## 9646 91974 8793 TO justin.boyd@enron.com
## 9647 91975 8793 TO edmund.cooper@enron.com
## 9648 91976 8794 TO rob.bradley@enron.com
## 9649 91977 8795 TO louise.kitchen@enron.com
## 9650 91978 8796 TO david.forster@enron.com
## 9651 91979 8797 TO stephen.douglas@enron.com
## 9652 91980 8798 TO becky.tlucek@enron.com
## 9653 91981 8798 CC jeffrey.hodge@enron.com
## 9654 91982 8798 CC dan.hyvl@enron.com
## 9655 91983 8798 CC brent.hendry@enron.com
## 9656 91984 8798 CC andrea.calo@enron.com
## 9657 91985 8798 BCC jeffrey.hodge@enron.com
## 9658 91986 8798 BCC dan.hyvl@enron.com
## 9659 91987 8798 BCC brent.hendry@enron.com
## 9660 91988 8798 BCC andrea.calo@enron.com
## 9661 91991 8801 TO justin.boyd@enron.com
## 9662 91993 8803 TO noel.petterson@enron.com
## 9663 91994 8803 CC carol.clair@enron.com
## 9664 91995 8803 BCC carol.clair@enron.com
## 9665 91996 8804 TO bryan.seyfried@enron.com
## 9666 91997 8804 CC paul.simons@enron.com
## 9667 91998 8804 BCC paul.simons@enron.com
## 9668 91999 8805 TO bryan.seyfried@enron.com
## 9669 92000 8805 TO paul.simons@enron.com
## 9670 92001 8805 TO edmund.cooper@enron.com
## 9671 92002 8805 CC mark.dilworth@enron.com
## 9672 92003 8805 BCC mark.dilworth@enron.com
## 9673 92006 8808 TO paul.simons@enron.com
## 9674 92007 8809 TO lori.pinder@enron.com
## 9675 92008 8810 TO paul.simons@enron.com
## 9676 92009 8811 TO rod.nelson@enron.com
## 9677 92010 8812 TO carol.clair@enron.com
## 9678 92011 8813 TO edmund.cooper@enron.com
## 9679 92012 8813 CC john.metzler@enron.com
## 9680 92013 8813 CC rod.nelson@enron.com
## 9681 92014 8813 BCC john.metzler@enron.com
## 9682 92015 8813 BCC rod.nelson@enron.com
## 9683 92016 8814 TO sheri.cromwell@enron.com
## 9684 92017 8815 TO tana.jones@enron.com
## 9685 92019 8815 CC alan.aronowitz@enron.com
## 9686 92021 8815 BCC alan.aronowitz@enron.com
## 9687 92022 8816 TO rod.nelson@enron.com
## 9688 92023 8817 TO edmund.cooper@enron.com
## 9689 92024 8818 TO edmund.cooper@enron.com
## 9690 92026 8820 TO edmund.cooper@enron.com
## 9691 92027 8821 TO sheri.thomas@enron.com
## 9692 92028 8822 TO david.forster@enron.com
## 9693 92029 8822 CC justin.boyd@enron.com
## 9694 92030 8822 BCC justin.boyd@enron.com
## 9695 92031 8823 TO david.forster@enron.com
## 9696 92032 8824 TO david.forster@enron.com
## 9697 92034 8826 TO cynthia.sandherr@enron.com
## 9698 92035 8827 TO david.minns@enron.com
## 9699 92036 8828 TO cynthia.sandherr@enron.com
## 9700 92037 8829 TO michael.etringer@enron.com
## 9701 92038 8830 TO becky.tlucek@enron.com
## 9702 92039 8831 TO sara.shackleton@enron.com
## 9703 92040 8832 TO leslie.hansen@enron.com
## 9704 92041 8833 TO carol.clair@enron.com
## 9705 92042 8834 TO david.forster@enron.com
## 9706 92044 8836 TO lydia.cannon@enron.com
## 9707 92045 8837 TO sara.shackleton@enron.com
## 9708 92046 8838 TO kristina.mordaunt@enron.com
## 9709 92047 8838 TO vicki.sharp@enron.com
## 9710 92048 8838 TO rob.walls@enron.com
## 9711 92049 8838 CC e..haedicke@enron.com
## 9712 92050 8838 BCC e..haedicke@enron.com
## 9713 92052 8840 TO louise.kitchen@enron.com
## 9714 92054 8842 TO david.forster@enron.com
## 9715 92055 8843 TO david.minns@enron.com
## 9716 92056 8843 CC paul.smith@enron.com
## 9717 92057 8843 CC paul.quilkey@enron.com
## 9718 92058 8843 CC david.forster@enron.com
## 9719 92059 8843 BCC paul.smith@enron.com
## 9720 92060 8843 BCC paul.quilkey@enron.com
## 9721 92061 8843 BCC david.forster@enron.com
## 9722 92062 8844 TO bryan.seyfried@enron.com
## 9723 92063 8844 CC paul.simons@enron.com
## 9724 92064 8844 BCC paul.simons@enron.com
## 9725 92065 8845 TO david.forster@enron.com
## 9726 92066 8846 TO sheri.thomas@enron.com
## 9727 92067 8847 TO shari.stack@enron.com
## 9728 92068 8848 TO brent.hendry@enron.com
## 9729 92070 8850 TO scott.sefton@enron.com
## 9730 92071 8850 CC mark.evans@enron.com
## 9731 92072 8850 CC stuart.schardin@enron.com
## 9732 92073 8850 CC carol.clair@enron.com
## 9733 92074 8850 CC nora.dobin@enron.com
## 9734 92075 8850 BCC mark.evans@enron.com
## 9735 92076 8850 BCC stuart.schardin@enron.com
## 9736 92077 8850 BCC carol.clair@enron.com
## 9737 92078 8850 BCC nora.dobin@enron.com
## 9738 92079 8851 TO shari.stack@enron.com
## 9739 92082 8853 TO paul.simons@enron.com
## 9740 92083 8853 CC bryan.seyfried@enron.com
## 9741 92084 8853 BCC bryan.seyfried@enron.com
## 9742 92085 8854 TO sara.shackleton@enron.com
## 9743 92086 8854 TO shari.stack@enron.com
## 9744 92087 8854 TO carol.clair@enron.com
## 9745 92088 8855 TO richard.b.sanders@enron.com
## 9746 92089 8856 TO bryan.seyfried@enron.com
## 9747 92090 8856 TO paul.simons@enron.com
## 9748 92091 8857 TO david.forster@enron.com
## 9749 92092 8858 TO david.forster@enron.com
## 9750 92093 8859 TO bryan.seyfried@enron.com
## 9751 92094 8859 CC paul.simons@enron.com
## 9752 92095 8859 CC william.bradford@enron.com
## 9753 92096 8859 CC david.weekes@enron.com
## 9754 92097 8859 CC debbie.brackett@enron.com
## 9755 92098 8859 CC rod.nelson@enron.com
## 9756 92099 8859 CC eklavya.sareen@enron.com
## 9757 92100 8859 BCC paul.simons@enron.com
## 9758 92101 8859 BCC william.bradford@enron.com
## 9759 92102 8859 BCC david.weekes@enron.com
## 9760 92103 8859 BCC debbie.brackett@enron.com
## 9761 92104 8859 BCC rod.nelson@enron.com
## 9762 92105 8859 BCC eklavya.sareen@enron.com
## 9763 92108 8862 TO bryan.seyfried@enron.com
## 9764 92110 8864 TO bryan.seyfried@enron.com
## 9765 92111 8865 TO paul.simons@enron.com
## 9766 92112 8865 TO bryan.seyfried@enron.com
## 9767 92113 8866 TO taffy.milligan@enron.com
## 9768 92114 8867 TO dale.neuner@enron.com
## 9769 92115 8867 CC stacy.dickson@enron.com
## 9770 92116 8867 CC jennifer.denny@enron.com
## 9771 92117 8867 BCC stacy.dickson@enron.com
## 9772 92118 8867 BCC jennifer.denny@enron.com
## 9773 92119 8868 TO debbie.brackett@enron.com
## 9774 92120 8868 TO rod.nelson@enron.com
## 9775 92121 8869 TO dale.neuner@enron.com
## 9776 92122 8870 TO dale.neuner@enron.com
## 9777 92123 8871 TO dale.neuner@enron.com
## 9778 92124 8872 TO dale.neuner@enron.com
## 9779 92125 8873 TO shari.stack@enron.com
## 9780 92126 8874 TO paul.simons@enron.com
## 9781 92127 8875 TO david.minns@enron.com
## 9782 92128 8875 TO shari.stack@enron.com
## 9783 92129 8875 TO leslie.hansen@enron.com
## 9784 92130 8876 TO paul.simons@enron.com
## 9785 92131 8877 TO brent.hendry@enron.com
## 9786 92132 8878 TO william.bradford@enron.com
## 9787 92133 8879 TO brent.hendry@enron.com
## 9788 92134 8880 TO alan.aronowitz@enron.com
## 9789 92135 8880 TO janice.moore@enron.com
## 9790 92136 8880 CC david.forster@enron.com
## 9791 92137 8880 BCC david.forster@enron.com
## 9792 92138 8881 TO kristina.mordaunt@enron.com
## 9793 92139 8881 TO vicki.sharp@enron.com
## 9794 92140 8881 TO rob.walls@enron.com
## 9795 92141 8881 CC e..haedicke@enron.com
## 9796 92142 8881 BCC e..haedicke@enron.com
## 9797 92143 8882 TO andrea.calo@enron.com
## 9798 92144 8883 TO paul.simons@enron.com
## 9799 92145 8884 TO david.forster@enron.com
## 9800 92146 8885 TO edmund.cooper@enron.com
## 9801 92150 8887 TO louise.kitchen@enron.com
## 9802 92151 8888 TO shari.stack@enron.com
## 9803 92152 8889 TO david.forster@enron.com
## 9804 92154 8891 TO david.forster@enron.com
## 9805 92155 8891 CC justin.boyd@enron.com
## 9806 92157 8891 BCC justin.boyd@enron.com
## 9807 92159 8892 TO david.forster@enron.com
## 9808 92160 8892 CC debbie.brackett@enron.com
## 9809 92161 8892 BCC debbie.brackett@enron.com
## 9810 92162 8893 TO david.forster@enron.com
## 9811 92163 8894 TO david.forster@enron.com
## 9812 92164 8894 CC justin.boyd@enron.com
## 9813 92165 8894 BCC justin.boyd@enron.com
## 9814 92167 8896 TO justin.boyd@enron.com
## 9815 92168 8897 TO david.forster@enron.com
## 9816 92170 8899 TO justin.boyd@enron.com
## 9817 92171 8899 CC david.forster@enron.com
## 9818 92172 8899 BCC david.forster@enron.com
## 9819 92173 8900 TO alan.aronowitz@enron.com
## 9820 92174 8901 TO shari.stack@enron.com
## 9821 92175 8902 TO justin.boyd@enron.com
## 9822 92176 8902 TO paul.simons@enron.com
## 9823 92177 8903 TO brent.hendry@enron.com
## 9824 92178 8904 TO justin.boyd@enron.com
## 9825 92179 8904 CC david.forster@enron.com
## 9826 92180 8904 BCC david.forster@enron.com
## 9827 92181 8905 TO david.forster@enron.com
## 9828 92182 8906 TO david.forster@enron.com
## 9829 92183 8907 TO stacy.dickson@enron.com
## 9830 92184 8907 CC dale.neuner@enron.com
## 9831 92185 8907 CC jeffrey.hodge@enron.com
## 9832 92186 8907 BCC dale.neuner@enron.com
## 9833 92187 8907 BCC jeffrey.hodge@enron.com
## 9834 92188 8908 TO stacy.dickson@enron.com
## 9835 92189 8908 CC dale.neuner@enron.com
## 9836 92190 8908 CC jeffrey.hodge@enron.com
## 9837 92191 8908 BCC dale.neuner@enron.com
## 9838 92192 8908 BCC jeffrey.hodge@enron.com
## 9839 92193 8909 TO jan.king@enron.com
## 9840 92194 8910 TO brent.hendry@enron.com
## 9841 92195 8911 TO shari.stack@enron.com
## 9842 92201 8916 TO shari.stack@enron.com
## 9843 92204 8917 CC louise.kitchen@enron.com
## 9844 92205 8917 CC harry.collins@enron.com
## 9845 92206 8917 BCC louise.kitchen@enron.com
## 9846 92207 8917 BCC harry.collins@enron.com
## 9847 92208 8918 TO bob.shults@enron.com
## 9848 92209 8918 CC louise.kitchen@enron.com
## 9849 92210 8918 CC per.sekse@enron.com
## 9850 92211 8918 BCC louise.kitchen@enron.com
## 9851 92212 8918 BCC per.sekse@enron.com
## 9852 92218 8922 TO brent.hendry@enron.com
## 9853 92219 8923 TO carol.clair@enron.com
## 9854 92220 8924 TO dale.neuner@enron.com
## 9855 92221 8925 TO dale.neuner@enron.com
## 9856 92222 8926 TO leslie.hansen@enron.com
## 9857 92223 8927 TO leslie.hansen@enron.com
## 9858 92224 8928 TO jeffrey.mcmahon@enron.com
## 9859 92225 8929 TO stacy.dickson@enron.com
## 9860 92226 8929 TO jeffrey.hodge@enron.com
## 9861 92228 8931 TO justin.boyd@enron.com
## 9862 92229 8932 TO arfan.aziz@enron.com
## 9863 92230 8932 TO edmund.cooper@enron.com
## 9864 92233 8934 TO rudi.zipter@enron.com
## 9865 92234 8935 TO stephen.douglas@enron.com
## 9866 92235 8935 TO jeff.blumenthal@enron.com
## 9867 92236 8936 TO cecil.john@enron.com
## 9868 92237 8936 CC carol.clair@enron.com
## 9869 92238 8936 BCC carol.clair@enron.com
## 9870 92240 8938 TO louise.kitchen@enron.com
## 9871 92241 8939 TO carol.clair@enron.com
## 9872 92242 8940 TO dale.neuner@enron.com
## 9873 92243 8941 TO dale.neuner@enron.com
## 9874 92244 8942 TO bob.shults@enron.com
## 9875 92245 8942 CC justin.boyd@enron.com
## 9876 92246 8942 CC edmund.cooper@enron.com
## 9877 92247 8942 CC louise.kitchen@enron.com
## 9878 92248 8942 CC david.forster@enron.com
## 9879 92249 8942 BCC justin.boyd@enron.com
## 9880 92250 8942 BCC edmund.cooper@enron.com
## 9881 92251 8942 BCC louise.kitchen@enron.com
## 9882 92252 8942 BCC david.forster@enron.com
## 9883 92253 8943 TO judith.schlesinger@enron.com
## 9884 92254 8944 TO dale.neuner@enron.com
## 9885 92255 8945 TO dale.neuner@enron.com
## 9886 92256 8946 TO louise.kitchen@enron.com
## 9887 92258 8948 TO tana.jones@enron.com
## 9888 92259 8949 TO richard.b.sanders@enron.com
## 9889 92260 8950 TO louise.kitchen@enron.com
## 9890 92261 8951 TO david.minns@enron.com
## 9891 92262 8952 TO francisco.leite@enron.com
## 9892 92263 8953 TO peter.keohane@enron.com
## 9893 92264 8953 CC taffy.milligan@enron.com
## 9894 92265 8953 BCC taffy.milligan@enron.com
## 9895 92266 8954 TO kaye.ellis@enron.com
## 9896 92267 8955 TO louise.kitchen@enron.com
## 9897 92268 8956 TO louise.kitchen@enron.com
## 9898 92274 8962 TO carol.clair@enron.com
## 9899 92275 8963 TO sara.shackleton@enron.com
## 9900 92276 8963 CC taffy.milligan@enron.com
## 9901 92277 8963 CC carol.clair@enron.com
## 9902 92278 8963 CC shari.stack@enron.com
## 9903 92279 8963 BCC taffy.milligan@enron.com
## 9904 92280 8963 BCC carol.clair@enron.com
## 9905 92281 8963 BCC shari.stack@enron.com
## 9906 92282 8964 TO louise.kitchen@enron.com
## 9907 92283 8965 TO michael.etringer@enron.com
## 9908 92284 8966 TO dale.neuner@enron.com
## 9909 92285 8967 TO bryan.seyfried@enron.com
## 9910 92286 8967 CC e..haedicke@enron.com
## 9911 92287 8967 CC louise.kitchen@enron.com
## 9912 92288 8967 CC paul.simons@enron.com
## 9913 92289 8967 BCC e..haedicke@enron.com
## 9914 92290 8967 BCC louise.kitchen@enron.com
## 9915 92291 8967 BCC paul.simons@enron.com
## 9916 92292 8968 TO deb.gebhardt@enron.com
## 9917 92294 8970 TO paul.simons@enron.com
## 9918 92296 8972 TO louise.kitchen@enron.com
## 9919 92298 8974 TO michael.etringer@enron.com
## 9920 92299 8975 TO nony.flores@enron.com
## 9921 92300 8975 CC alan.aronowitz@enron.com
## 9922 92301 8975 CC harry.collins@enron.com
## 9923 92302 8975 CC janice.moore@enron.com
## 9924 92303 8975 CC michael.robison@enron.com
## 9925 92304 8975 BCC alan.aronowitz@enron.com
## 9926 92305 8975 BCC harry.collins@enron.com
## 9927 92306 8975 BCC janice.moore@enron.com
## 9928 92307 8975 BCC michael.robison@enron.com
## 9929 92308 8976 TO david.forster@enron.com
## 9930 92309 8976 TO bob.shults@enron.com
## 9931 92310 8976 TO frank.davis@enron.com
## 9932 92311 8976 TO dale.neuner@enron.com
## 9933 92312 8977 TO dale.neuner@enron.com
## 9934 92313 8978 TO justin.boyd@enron.com
## 9935 92314 8979 TO e..haedicke@enron.com
## 9936 92315 8980 TO louise.kitchen@enron.com
## 9937 92316 8981 TO janice.moore@enron.com
## 9938 92317 8982 TO david.forster@enron.com
## 9939 92318 8982 TO bob.shults@enron.com
## 9940 92319 8982 TO frank.davis@enron.com
## 9941 92320 8983 TO information.management@enron.com
## 9942 92321 8984 TO louise.kitchen@enron.com
## 9943 92324 8986 TO tana.jones@enron.com
## 9944 92326 8988 TO anthony.campos@enron.com
## 9945 92327 8988 TO karen.lambert@enron.com
## 9946 92328 8988 TO mary.solmonson@enron.com
## 9947 92329 8988 TO connie.sutton@enron.com
## 9948 92330 8988 CC edmund.cooper@enron.com
## 9949 92331 8988 CC david.forster@enron.com
## 9950 92332 8988 CC tana.jones@enron.com
## 9951 92333 8988 BCC edmund.cooper@enron.com
## 9952 92334 8988 BCC david.forster@enron.com
## 9953 92335 8988 BCC tana.jones@enron.com
## 9954 92336 8989 TO david.forster@enron.com
## 9955 92337 8990 TO carol.clair@enron.com
## 9956 92338 8991 TO tana.jones@enron.com
## 9957 92340 8993 TO jeffrey.bortniker@enron.com
## 9958 92341 8993 CC donna.lowry@enron.com
## 9959 92342 8993 BCC donna.lowry@enron.com
## 9960 92344 8995 TO mark.e.taylor@enron.com
## 9961 92345 8996 TO christian.yoder@enron.com
## 9962 92347 8998 TO bob.bowen@enron.com
## 9963 92348 8999 TO paul.simons@enron.com
## 9964 92349 8999 TO bryan.seyfried@enron.com
## 9965 92350 9000 TO e..haedicke@enron.com
## 9966 92352 9002 TO bryan.seyfried@enron.com
## 9967 92353 9002 CC paul.simons@enron.com
## 9968 92354 9002 BCC paul.simons@enron.com
## 9969 92358 9006 TO taffy.milligan@enron.com
## 9970 92359 9006 CC ann.white@enron.com
## 9971 92360 9006 BCC ann.white@enron.com
## 9972 92361 9007 TO carol.clair@enron.com
## 9973 92362 9008 TO nony.flores@enron.com
## 9974 92363 9009 TO mark.elliott@enron.com
## 9975 92364 9010 TO louise.kitchen@enron.com
## 9976 92365 9011 TO mark.elliott@enron.com
## 9977 92366 9012 TO no.address@enron.com
## 9978 92369 9015 TO tana.jones@enron.com
## 9979 92370 9016 TO tana.jones@enron.com
## 9980 92371 9017 TO carol.clair@enron.com
## 9981 92372 9018 TO dale.neuner@enron.com
## 9982 92373 9019 TO dale.neuner@enron.com
## 9983 92374 9020 TO bryan.seyfried@enron.com
## 9984 92375 9020 CC paul.simons@enron.com
## 9985 92376 9020 BCC paul.simons@enron.com
## 9986 92377 9021 TO jeffrey.hodge@enron.com
## 9987 92378 9021 TO stacy.dickson@enron.com
## 9988 92379 9022 TO alan.aronowitz@enron.com
## 9989 92380 9022 TO jeffrey.hodge@enron.com
## 9990 92381 9022 TO mark.e.taylor@enron.com
## 9991 92382 9022 TO stacy.dickson@enron.com
## 9992 92383 9022 TO leslie.hansen@enron.com
## 9993 92384 9022 TO harry.collins@enron.com
## 9994 92385 9022 TO david.portz@enron.com
## 9995 92386 9022 TO elizabeth.sager@enron.com
## 9996 92387 9023 TO elena.kapralova@enron.com
## 9997 92388 9023 CC david.forster@enron.com
## 9998 92389 9023 BCC david.forster@enron.com
## 9999 92390 9024 TO alan.aronowitz@enron.com
## 10000 92391 9024 TO jeffrey.hodge@enron.com
## 10001 92392 9024 TO mark.e.taylor@enron.com
## 10002 92393 9024 TO stacy.dickson@enron.com
## 10003 92394 9024 TO leslie.hansen@enron.com
## 10004 92395 9024 TO harry.collins@enron.com
## 10005 92396 9024 TO david.portz@enron.com
## 10006 92397 9024 TO elizabeth.sager@enron.com
## 10007 92400 9026 TO tana.jones@enron.com
## 10008 92403 9029 TO dale.neuner@enron.com
## 10009 92406 9032 TO dale.neuner@enron.com
## 10010 92409 9033 CC george.zivic@enron.com
## 10011 92411 9033 BCC george.zivic@enron.com
## 10012 92412 9034 TO dale.neuner@enron.com
## 10013 92413 9035 TO dale.neuner@enron.com
## 10014 92414 9036 TO taffy.milligan@enron.com
## 10015 92415 9037 TO dale.neuner@enron.com
## 10016 92416 9038 TO dale.neuner@enron.com
## 10017 92419 9040 TO justin.boyd@enron.com
## 10018 92420 9041 TO sara.shackleton@enron.com
## 10019 92421 9042 TO sara.shackleton@enron.com
## 10020 92423 9044 TO tana.jones@enron.com
## 10021 92424 9045 TO tana.jones@enron.com
## 10022 92425 9046 TO tana.jones@enron.com
## 10023 92427 9048 TO lucy.ortiz@enron.com
## 10024 92428 9048 CC susan.flynn@enron.com
## 10025 92429 9048 BCC susan.flynn@enron.com
## 10026 92430 9049 TO susan.bailey@enron.com
## 10027 92431 9049 TO susan.flynn@enron.com
## 10028 92432 9049 TO marie.heard@enron.com
## 10029 92433 9050 TO bob.shults@enron.com
## 10030 92434 9050 CC kathryn.cordes@enron.com
## 10031 92435 9050 CC debbie.brackett@enron.com
## 10032 92436 9050 CC jennifer.denny@enron.com
## 10033 92437 9050 CC jeffrey.hodge@enron.com
## 10034 92438 9050 CC brent.price@enron.com
## 10035 92439 9050 CC david.forster@enron.com
## 10036 92440 9050 BCC kathryn.cordes@enron.com
## 10037 92441 9050 BCC debbie.brackett@enron.com
## 10038 92442 9050 BCC jennifer.denny@enron.com
## 10039 92443 9050 BCC jeffrey.hodge@enron.com
## 10040 92444 9050 BCC brent.price@enron.com
## 10041 92445 9050 BCC david.forster@enron.com
## 10042 92446 9051 TO debbie.brackett@enron.com
## 10043 92447 9051 CC kathryn.cordes@enron.com
## 10044 92448 9051 CC bob.shults@enron.com
## 10045 92449 9051 CC jennifer.denny@enron.com
## 10046 92450 9051 CC jeffrey.hodge@enron.com
## 10047 92451 9051 CC brent.price@enron.com
## 10048 92452 9051 BCC kathryn.cordes@enron.com
## 10049 92453 9051 BCC bob.shults@enron.com
## 10050 92454 9051 BCC jennifer.denny@enron.com
## 10051 92455 9051 BCC jeffrey.hodge@enron.com
## 10052 92456 9051 BCC brent.price@enron.com
## 10053 92457 9052 TO david.forster@enron.com
## 10054 92458 9053 TO matt.motsinger@enron.com
## 10055 92459 9054 TO matt.motsinger@enron.com
## 10056 92460 9055 TO claire.dunnett@enron.com
## 10057 92462 9057 TO louise.kitchen@enron.com
## 10058 92463 9058 TO susan.flynn@enron.com
## 10059 92464 9058 CC taffy.milligan@enron.com
## 10060 92465 9058 BCC taffy.milligan@enron.com
## 10061 92467 9060 TO jefferson.sorenson@enron.com
## 10062 92468 9061 TO donna.greif@enron.com
## 10063 92469 9062 TO carol.clair@enron.com
## 10064 92470 9063 TO louise.kitchen@enron.com
## 10065 92471 9063 TO david.forster@enron.com
## 10066 92472 9064 TO tana.jones@enron.com
## 10067 92473 9065 TO alan.aronowitz@enron.com
## 10068 92478 9069 TO e..haedicke@enron.com
## 10069 92479 9069 TO legal.1@enron.com
## 10070 92480 9070 TO david.forster@enron.com
## 10071 92481 9071 TO elena.kapralova@enron.com
## 10072 92482 9072 TO david.forster@enron.com
## 10073 92483 9073 TO david.forster@enron.com
## 10074 92484 9074 TO stacy.dickson@enron.com
## 10075 92485 9075 TO karen.lambert@enron.com
## 10076 92486 9075 CC bob.shults@enron.com
## 10077 92487 9075 BCC bob.shults@enron.com
## 10078 92488 9076 TO leslie.hansen@enron.com
## 10079 92489 9077 TO david.forster@enron.com
## 10080 92491 9079 TO jeffrey.hodge@enron.com
## 10081 92492 9079 CC david.forster@enron.com
## 10082 92493 9079 CC stacy.dickson@enron.com
## 10083 92494 9079 BCC david.forster@enron.com
## 10084 92495 9079 BCC stacy.dickson@enron.com
## 10085 92496 9080 TO karen.lambert@enron.com
## 10086 92497 9080 CC mary.solmonson@enron.com
## 10087 92498 9080 CC connie.sutton@enron.com
## 10088 92499 9080 CC bob.shults@enron.com
## 10089 92500 9080 BCC mary.solmonson@enron.com
## 10090 92501 9080 BCC connie.sutton@enron.com
## 10091 92502 9080 BCC bob.shults@enron.com
## 10092 92503 9081 TO peter.keohane@enron.com
## 10093 92504 9081 CC tana.jones@enron.com
## 10094 92505 9081 BCC tana.jones@enron.com
## 10095 92506 9082 TO monica.matias@enron.com
## 10096 92507 9083 TO tana.jones@enron.com
## 10097 92508 9084 TO sara.shackleton@enron.com
## 10098 92509 9084 TO carol.clair@enron.com
## 10099 92510 9084 TO shari.stack@enron.com
## 10100 92511 9084 CC taffy.milligan@enron.com
## 10101 92512 9084 BCC taffy.milligan@enron.com
## 10102 92513 9085 TO louise.kitchen@enron.com
## 10103 92514 9085 TO david.forster@enron.com
## 10104 92515 9085 TO marcello.romano@enron.com
## 10105 92516 9086 TO sara.shackleton@enron.com
## 10106 92517 9087 TO leslie.hansen@enron.com
## 10107 92518 9087 CC bob.shults@enron.com
## 10108 92519 9087 CC jeffrey.hodge@enron.com
## 10109 92520 9087 CC debbie.brackett@enron.com
## 10110 92521 9087 CC david.forster@enron.com
## 10111 92522 9087 BCC bob.shults@enron.com
## 10112 92523 9087 BCC jeffrey.hodge@enron.com
## 10113 92524 9087 BCC debbie.brackett@enron.com
## 10114 92525 9087 BCC david.forster@enron.com
## 10115 92526 9088 TO karen.lambert@enron.com
## 10116 92527 9088 CC stacy.dickson@enron.com
## 10117 92528 9088 CC connie.sutton@enron.com
## 10118 92529 9088 CC mary.solmonson@enron.com
## 10119 92530 9088 CC bob.shults@enron.com
## 10120 92531 9088 CC dale.neuner@enron.com
## 10121 92532 9088 BCC stacy.dickson@enron.com
## 10122 92533 9088 BCC connie.sutton@enron.com
## 10123 92534 9088 BCC mary.solmonson@enron.com
## 10124 92535 9088 BCC bob.shults@enron.com
## 10125 92536 9088 BCC dale.neuner@enron.com
## 10126 92537 9089 TO tana.jones@enron.com
## 10127 92538 9090 TO marcello.romano@enron.com
## 10128 92539 9091 TO tana.jones@enron.com
## 10129 92540 9091 CC peter.keohane@enron.com
## 10130 92541 9091 CC jeffrey.hodge@enron.com
## 10131 92542 9091 BCC peter.keohane@enron.com
## 10132 92543 9091 BCC jeffrey.hodge@enron.com
## 10133 92549 9097 TO jeffrey.hodge@enron.com
## 10134 92555 9101 TO susan.bailey@enron.com
## 10135 92556 9101 TO marie.heard@enron.com
## 10136 92557 9101 TO brent.hendry@enron.com
## 10137 92558 9101 TO tana.jones@enron.com
## 10138 92559 9101 TO taffy.milligan@enron.com
## 10139 92560 9101 TO sara.shackleton@enron.com
## 10140 92561 9101 TO shari.stack@enron.com
## 10141 92562 9101 TO carol.clair@enron.com
## 10142 92563 9102 TO brent.hendry@enron.com
## 10143 92564 9103 TO david.minns@enron.com
## 10144 92565 9103 CC edmund.cooper@enron.com
## 10145 92566 9103 CC justin.boyd@enron.com
## 10146 92567 9103 BCC edmund.cooper@enron.com
## 10147 92568 9103 BCC justin.boyd@enron.com
## 10148 92569 9104 TO david.grevelle@enron.com
## 10149 92573 9107 TO sara.shackleton@enron.com
## 10150 92575 9109 TO francisco.leite@enron.com
## 10151 92576 9109 TO lou.stoler@enron.com
## 10152 92579 9111 TO tana.jones@enron.com
## 10153 92580 9112 TO donna.greif@enron.com
## 10154 92581 9112 CC amita.gosalia@enron.com
## 10155 92582 9112 CC bob.shults@enron.com
## 10156 92583 9112 CC david.forster@enron.com
## 10157 92584 9112 BCC amita.gosalia@enron.com
## 10158 92585 9112 BCC bob.shults@enron.com
## 10159 92586 9112 BCC david.forster@enron.com
## 10160 92587 9113 TO tana.jones@enron.com
## 10161 92592 9116 TO dale.neuner@enron.com
## 10162 92593 9117 TO jeffrey.hodge@enron.com
## 10163 92594 9117 TO alan.aronowitz@enron.com
## 10164 92598 9119 TO louise.kitchen@enron.com
## 10165 92599 9119 CC justin.boyd@enron.com
## 10166 92600 9119 BCC justin.boyd@enron.com
## 10167 92601 9120 TO carol.clair@enron.com
## 10168 92602 9121 TO awais.omar@enron.com
## 10169 92603 9121 CC david.forster@enron.com
## 10170 92604 9121 BCC david.forster@enron.com
## 10171 92605 9122 TO lucy.ortiz@enron.com
## 10172 92606 9123 TO david.forster@enron.com
## 10173 92607 9124 TO sara.shackleton@enron.com
## 10174 92608 9125 TO lucy.ortiz@enron.com
## 10175 92609 9125 CC tana.jones@enron.com
## 10176 92610 9125 BCC tana.jones@enron.com
## 10177 92611 9126 TO david.forster@enron.com
## 10178 92612 9127 TO taffy.milligan@enron.com
## 10179 92613 9128 TO louise.kitchen@enron.com
## 10180 92614 9128 CC justin.boyd@enron.com
## 10181 92615 9128 CC awais.omar@enron.com
## 10182 92616 9128 CC edmund.cooper@enron.com
## 10183 92617 9128 BCC justin.boyd@enron.com
## 10184 92618 9128 BCC awais.omar@enron.com
## 10185 92619 9128 BCC edmund.cooper@enron.com
## 10186 92620 9129 TO mark.e.taylor@enron.com
## 10187 92621 9130 TO mark.e.taylor@enron.com
## 10188 92622 9131 TO mark.e.taylor@enron.com
## 10189 92623 9132 TO no.address@enron.com
## 10190 92627 9134 TO mark.e.taylor@enron.com
## 10191 92628 9135 TO mark.e.taylor@enron.com
## 10192 92632 9137 TO frank.davis@enron.com
## 10193 92633 9137 CC bob.shults@enron.com
## 10194 92634 9137 CC david.forster@enron.com
## 10195 92635 9137 BCC bob.shults@enron.com
## 10196 92636 9137 BCC david.forster@enron.com
## 10197 92637 9138 TO alan.aronowitz@enron.com
## 10198 92638 9138 TO roger.balog@enron.com
## 10199 92639 9138 TO peggy.banczak@enron.com
## 10200 92640 9138 TO sandi.braband@enron.com
## 10201 92641 9138 TO teresa.bushman@enron.com
## 10202 92642 9138 TO bob.carter@enron.com
## 10203 92643 9138 TO michelle.cash@enron.com
## 10204 92644 9138 TO barton.clark@enron.com
## 10205 92645 9138 TO harry.collins@enron.com
## 10206 92646 9138 TO shonnie.daniel@enron.com
## 10207 92647 9138 TO peter.vecchio@enron.com
## 10208 92648 9138 TO stacy.dickson@enron.com
## 10209 92649 9138 TO shawna.flynn@enron.com
## 10210 92650 9138 TO chris.gaffney@enron.com
## 10211 92651 9138 TO barbara.gray@enron.com
## 10212 92652 9138 TO wayne.gresham@enron.com
## 10213 92653 9138 TO e..haedicke@enron.com
## 10214 92654 9138 TO leslie.hansen@enron.com
## 10215 92655 9138 TO jeffrey.hodge@enron.com
## 10216 92656 9138 TO dan.hyvl@enron.com
## 10217 92657 9138 TO monica.jordan@enron.com
## 10218 92658 9138 TO dan.lyons@enron.com
## 10219 92659 9138 TO travis.mccullough@enron.com
## 10220 92660 9138 TO lisa.mellencamp@enron.com
## 10221 92661 9138 TO janet.moore@enron.com
## 10222 92662 9138 TO julia.murray@enron.com
## 10223 92663 9138 TO gerald.nemec@enron.com
## 10224 92664 9138 TO doug.pedigo@enron.com
## 10225 92665 9138 TO david.portz@enron.com
## 10226 92666 9138 TO michael.robison@enron.com
## 10227 92667 9138 TO elizabeth.sager@enron.com
## 10228 92668 9138 TO richard.b.sanders@enron.com
## 10229 92669 9138 TO lance.schuler-legal@enron.com
## 10230 92670 9138 TO sara.shackleton@enron.com
## 10231 92671 9138 TO shari.stack@enron.com
## 10232 92672 9138 TO sheila.tweed@enron.com
## 10233 92673 9138 TO steve.hooser@enron.com
## 10234 92674 9138 TO ann.white@enron.com
## 10235 92675 9138 TO stuart.zisman@enron.com
## 10236 92676 9138 TO susan.bailey@enron.com
## 10237 92677 9138 TO kimberlee.bennick@enron.com
## 10238 92678 9138 TO genia.fitzgerald@enron.com
## 10239 92679 9138 TO nony.flores@enron.com
## 10240 92680 9138 TO susan.flynn@enron.com
## 10241 92681 9138 TO linda.guinn@enron.com
## 10242 92682 9138 TO marie.heard@enron.com
## 10243 92683 9138 TO ed.iii@enron.com
## 10244 92684 9138 TO mary.heinitz@enron.com
## 10245 92685 9138 TO tana.jones@enron.com
## 10246 92686 9138 TO deb.korkmas@enron.com
## 10247 92687 9138 TO mary.ogden@enron.com
## 10248 92688 9138 TO debra.perlingiere@enron.com
## 10249 92689 9138 TO robert.walker@enron.com
## 10250 92690 9138 TO kay.young@enron.com
## 10251 92691 9138 TO merrill.haas@enron.com
## 10252 92692 9138 TO brent.hendry@enron.com
## 10253 92693 9138 TO peter.keohane@enron.com
## 10254 92694 9138 TO michael.brown@enron.com
## 10255 92695 9138 TO dale.rasmussen@enron.com
## 10256 92696 9138 TO justin.boyd@enron.com
## 10257 92697 9138 TO paul.simons@enron.com
## 10258 92698 9138 TO lou.stoler@enron.com
## 10259 92699 9138 TO matthias.lee@enron.com
## 10260 92700 9138 TO laurie.mayer@enron.com
## 10261 92701 9138 TO greg.johnston@enron.com
## 10262 92702 9138 TO david.minns@enron.com
## 10263 92703 9138 CC taffy.milligan@enron.com
## 10264 92704 9138 CC suzanne.adams@enron.com
## 10265 92705 9138 CC joya.davis@enron.com
## 10266 92706 9138 BCC taffy.milligan@enron.com
## 10267 92707 9138 BCC suzanne.adams@enron.com
## 10268 92708 9138 BCC joya.davis@enron.com
## 10269 92709 9139 TO tana.jones@enron.com
## 10270 92710 9140 TO no.address@enron.com
## 10271 92714 9142 TO jeffrey.hodge@enron.com
## 10272 92718 9144 TO tana.jones@enron.com
## 10273 92719 9145 TO taffy.milligan@enron.com
## 10274 92720 9146 TO stacy.dickson@enron.com
## 10275 92721 9147 TO david.forster@enron.com
## 10276 92722 9147 CC elena.kapralova@enron.com
## 10277 92723 9147 BCC elena.kapralova@enron.com
## 10278 92724 9148 TO sara.shackleton@enron.com
## 10279 92725 9148 CC taffy.milligan@enron.com
## 10280 92726 9148 BCC taffy.milligan@enron.com
## 10281 92727 9149 TO justin.boyd@enron.com
## 10282 92728 9149 TO mark.elliott@enron.com
## 10283 92729 9149 TO paul.simons@enron.com
## 10284 92730 9150 TO justin.boyd@enron.com
## 10285 92731 9150 TO edmund.cooper@enron.com
## 10286 92732 9150 TO jeffrey.hodge@enron.com
## 10287 92733 9151 TO doug.mcdowell@enron.com
## 10288 92734 9152 TO carol.clair@enron.com
## 10289 92735 9153 TO carrie.southard@enron.com
## 10290 92736 9153 CC mark.e.taylor@enron.com
## 10291 92737 9153 CC lisa.gillette@enron.com
## 10292 92738 9153 CC lara.fields@enron.com
## 10293 92739 9153 BCC mark.e.taylor@enron.com
## 10294 92740 9153 BCC lisa.gillette@enron.com
## 10295 92741 9153 BCC lara.fields@enron.com
## 10296 92742 9154 TO david.forster@enron.com
## 10297 92743 9155 TO david.forster@enron.com
## 10298 92744 9155 TO justin.boyd@enron.com
## 10299 92745 9155 TO edmund.cooper@enron.com
## 10300 92748 9155 TO stephen.douglas@enron.com
## 10301 92749 9155 TO jeff.blumenthal@enron.com
## 10302 92750 9155 CC louise.kitchen@enron.com
## 10303 92751 9155 BCC louise.kitchen@enron.com
## 10304 92752 9156 TO sara.shackleton@enron.com
## 10305 92753 9157 TO taffy.milligan@enron.com
## 10306 92754 9157 CC andrea.calo@enron.com
## 10307 92755 9157 BCC andrea.calo@enron.com
## 10308 92756 9158 TO tana.jones@enron.com
## 10309 92757 9159 TO lorraine.becker@enron.com
## 10310 92758 9160 TO andrea.calo@enron.com
## 10311 92759 9161 TO no.address@enron.com
## 10312 92760 9162 TO sara.shackleton@enron.com
## 10313 92761 9163 TO andrea.calo@enron.com
## 10314 92762 9164 TO sara.shackleton@enron.com
## 10315 92769 9168 TO no.address@enron.com
## 10316 92770 9169 TO carol.clair@enron.com
## 10317 92771 9169 CC sara.shackleton@enron.com
## 10318 92772 9169 CC shari.stack@enron.com
## 10319 92773 9169 CC marie.heard@enron.com
## 10320 92774 9169 CC tana.jones@enron.com
## 10321 92775 9169 CC susan.bailey@enron.com
## 10322 92776 9169 CC susan.flynn@enron.com
## 10323 92777 9169 CC peter.keohane@enron.com
## 10324 92778 9169 BCC sara.shackleton@enron.com
## 10325 92779 9169 BCC shari.stack@enron.com
## 10326 92780 9169 BCC marie.heard@enron.com
## 10327 92781 9169 BCC tana.jones@enron.com
## 10328 92782 9169 BCC susan.bailey@enron.com
## 10329 92783 9169 BCC susan.flynn@enron.com
## 10330 92784 9169 BCC peter.keohane@enron.com
## 10331 92787 9172 TO david.forster@enron.com
## 10332 92788 9173 TO taffy.milligan@enron.com
## 10333 92789 9174 TO david.forster@enron.com
## 10334 92790 9175 TO carol.clair@enron.com
## 10335 92791 9175 TO john.enerson@enron.com
## 10336 92792 9176 TO brent.hendry@enron.com
## 10337 92793 9176 TO sara.shackleton@enron.com
## 10338 92794 9176 TO carol.clair@enron.com
## 10339 92795 9176 TO shari.stack@enron.com
## 10340 92796 9176 TO marie.heard@enron.com
## 10341 92797 9176 TO tana.jones@enron.com
## 10342 92798 9176 TO susan.flynn@enron.com
## 10343 92799 9176 TO susan.bailey@enron.com
## 10344 92800 9177 TO no.address@enron.com
## 10345 92802 9179 TO debbie.brackett@enron.com
## 10346 92805 9182 TO david.forster@enron.com
## 10347 92807 9184 TO david.forster@enron.com
## 10348 92808 9185 TO jeffrey.hodge@enron.com
## 10349 92809 9186 TO paul.simons@enron.com
## 10350 92810 9187 TO david.forster@enron.com
## 10351 92812 9189 TO tana.jones@enron.com
## 10352 92814 9191 TO tana.jones@enron.com
## 10353 92815 9192 TO carol.clair@enron.com
## 10354 92816 9193 TO tana.jones@enron.com
## 10355 92817 9194 TO david.forster@enron.com
## 10356 92818 9194 CC elena.kapralova@enron.com
## 10357 92819 9194 CC bob.shults@enron.com
## 10358 92820 9194 CC marcello.romano@enron.com
## 10359 92821 9194 CC mark.dilworth@enron.com
## 10360 92822 9194 BCC elena.kapralova@enron.com
## 10361 92823 9194 BCC bob.shults@enron.com
## 10362 92824 9194 BCC marcello.romano@enron.com
## 10363 92825 9194 BCC mark.dilworth@enron.com
## 10364 92826 9195 TO louise.kitchen@enron.com
## 10365 92827 9195 CC tana.jones@enron.com
## 10366 92828 9195 CC debbie.brackett@enron.com
## 10367 92829 9195 CC william.bradford@enron.com
## 10368 92830 9195 CC david.port@enron.com
## 10369 92831 9195 CC bob.shults@enron.com
## 10370 92832 9195 CC david.forster@enron.com
## 10371 92833 9195 CC sara.shackleton@enron.com
## 10372 92834 9195 BCC tana.jones@enron.com
## 10373 92835 9195 BCC debbie.brackett@enron.com
## 10374 92836 9195 BCC william.bradford@enron.com
## 10375 92837 9195 BCC david.port@enron.com
## 10376 92838 9195 BCC bob.shults@enron.com
## 10377 92839 9195 BCC david.forster@enron.com
## 10378 92840 9195 BCC sara.shackleton@enron.com
## 10379 92841 9196 TO lou.stoler@enron.com
## 10380 92842 9197 TO shari.stack@enron.com
## 10381 92843 9198 TO elizabeth.sager@enron.com
## 10382 92844 9199 TO shari.stack@enron.com
## 10383 92846 9200 CC francisco.leite@enron.com
## 10384 92847 9200 BCC francisco.leite@enron.com
## 10385 92848 9201 TO stephanie.balette@enron.com
## 10386 92849 9202 TO carol.clair@enron.com
## 10387 92850 9203 TO dale.neuner@enron.com
## 10388 92851 9204 TO dale.neuner@enron.com
## 10389 92852 9204 CC elizabeth.sager@enron.com
## 10390 92853 9204 CC david.minns@enron.com
## 10391 92854 9204 CC susan.bailey@enron.com
## 10392 92855 9204 CC casey.evans@enron.com
## 10393 92856 9204 CC patricia.cini@enron.com
## 10394 92857 9204 CC jefferson.sorenson@enron.com
## 10395 92858 9204 BCC elizabeth.sager@enron.com
## 10396 92859 9204 BCC david.minns@enron.com
## 10397 92860 9204 BCC susan.bailey@enron.com
## 10398 92861 9204 BCC casey.evans@enron.com
## 10399 92862 9204 BCC patricia.cini@enron.com
## 10400 92863 9204 BCC jefferson.sorenson@enron.com
## 10401 92864 9205 TO rahil.jafry@enron.com
## 10402 92865 9205 CC justin.boyd@enron.com
## 10403 92866 9205 CC louise.kitchen@enron.com
## 10404 92867 9205 CC david.forster@enron.com
## 10405 92868 9205 BCC justin.boyd@enron.com
## 10406 92869 9205 BCC louise.kitchen@enron.com
## 10407 92870 9205 BCC david.forster@enron.com
## 10408 92871 9206 TO karen.lambert@enron.com
## 10409 92872 9207 TO jennifer.denny@enron.com
## 10410 92873 9207 CC david.forster@enron.com
## 10411 92874 9207 BCC david.forster@enron.com
## 10412 92875 9208 TO carol.clair@enron.com
## 10413 92876 9209 TO jeffrey.keeler@enron.com
## 10414 92877 9210 TO taffy.milligan@enron.com
## 10415 92878 9211 TO brent.hendry@enron.com
## 10416 92879 9212 TO alan.aronowitz@enron.com
## 10417 92880 9212 TO david.minns@enron.com
## 10418 92881 9213 TO david.forster@enron.com
## 10419 92882 9213 CC jennifer.denny@enron.com
## 10420 92883 9213 BCC jennifer.denny@enron.com
## 10421 92884 9214 TO taffy.milligan@enron.com
## 10422 92885 9215 TO justin.boyd@enron.com
## 10423 92886 9215 TO edmund.cooper@enron.com
## 10424 92887 9216 TO susan.flynn@enron.com
## 10425 92889 9218 TO shari.stack@enron.com
## 10426 92890 9219 TO larry.hunter@enron.com
## 10427 92891 9219 CC dale.neuner@enron.com
## 10428 92892 9219 BCC dale.neuner@enron.com
## 10429 92893 9220 TO susan.flynn@enron.com
## 10430 92894 9220 CC taffy.milligan@enron.com
## 10431 92895 9220 BCC taffy.milligan@enron.com
## 10432 92896 9221 TO tana.jones@enron.com
## 10433 92897 9222 TO louise.kitchen@enron.com
## 10434 92898 9222 CC awais.omar@enron.com
## 10435 92900 9222 BCC awais.omar@enron.com
## 10436 92902 9223 TO susan.flynn@enron.com
## 10437 92903 9224 TO stacy.dickson@enron.com
## 10438 92904 9224 CC debbie.brackett@enron.com
## 10439 92905 9224 CC jeffrey.hodge@enron.com
## 10440 92906 9224 BCC debbie.brackett@enron.com
## 10441 92907 9224 BCC jeffrey.hodge@enron.com
## 10442 92908 9225 TO christian.yoder@enron.com
## 10443 92909 9225 CC christian.yoder@enron.com
## 10444 92910 9225 CC elizabeth.sager@enron.com
## 10445 92911 9225 BCC christian.yoder@enron.com
## 10446 92912 9225 BCC elizabeth.sager@enron.com
## 10447 92913 9226 TO taffy.milligan@enron.com
## 10448 92914 9227 TO david.forster@enron.com
## 10449 92915 9228 TO michael.corbally@enron.com
## 10450 92916 9229 TO suzanne.adams@enron.com
## 10451 92917 9230 TO rod.nelson@enron.com
## 10452 92918 9231 TO lucy.ortiz@enron.com
## 10453 92919 9232 TO paul.goddard@enron.com
## 10454 92920 9232 CC kal.shah@enron.com
## 10455 92921 9232 CC justin.boyd@enron.com
## 10456 92922 9232 CC louise.kitchen@enron.com
## 10457 92923 9232 CC david.forster@enron.com
## 10458 92924 9232 CC marcello.romano@enron.com
## 10459 92926 9232 BCC kal.shah@enron.com
## 10460 92927 9232 BCC justin.boyd@enron.com
## 10461 92928 9232 BCC louise.kitchen@enron.com
## 10462 92929 9232 BCC david.forster@enron.com
## 10463 92930 9232 BCC marcello.romano@enron.com
## 10464 92932 9233 TO sara.shackleton@enron.com
## 10465 92933 9234 TO tana.jones@enron.com
## 10466 92934 9235 TO tana.jones@enron.com
## 10467 92935 9236 TO david.forster@enron.com
## 10468 92937 9238 TO brent.hendry@enron.com
## 10469 92938 9238 TO sara.shackleton@enron.com
## 10470 92939 9238 TO carol.clair@enron.com
## 10471 92940 9238 TO shari.stack@enron.com
## 10472 92941 9238 TO marie.heard@enron.com
## 10473 92942 9238 TO tana.jones@enron.com
## 10474 92943 9238 TO susan.flynn@enron.com
## 10475 92944 9238 TO susan.bailey@enron.com
## 10476 92945 9239 TO suzanne.adams@enron.com
## 10477 92946 9240 TO tana.jones@enron.com
## 10478 92947 9241 TO frank.davis@enron.com
## 10479 92948 9242 TO david.forster@enron.com
## 10480 92949 9243 TO elizabeth.sager@enron.com
## 10481 92950 9244 TO taffy.milligan@enron.com
## 10482 92951 9245 TO mark.dilworth@enron.com
## 10483 92952 9245 CC jefferson.sorenson@enron.com
## 10484 92953 9245 CC dale.neuner@enron.com
## 10485 92954 9245 CC bob.bowen@enron.com
## 10486 92955 9245 CC lynn.shivers@enron.com
## 10487 92956 9245 CC kevin.sweeney@enron.com
## 10488 92957 9245 BCC jefferson.sorenson@enron.com
## 10489 92958 9245 BCC dale.neuner@enron.com
## 10490 92959 9245 BCC bob.bowen@enron.com
## 10491 92960 9245 BCC lynn.shivers@enron.com
## 10492 92961 9245 BCC kevin.sweeney@enron.com
## 10493 92962 9246 TO david.forster@enron.com
## 10494 92963 9247 TO barton.clark@enron.com
## 10495 92964 9248 TO david.forster@enron.com
## 10496 92965 9249 TO alan.aronowitz@enron.com
## 10497 92966 9249 TO barton.clark@enron.com
## 10498 92967 9249 TO harry.collins@enron.com
## 10499 92968 9249 TO stacy.dickson@enron.com
## 10500 92969 9249 TO wayne.gresham@enron.com
## 10501 92970 9249 TO leslie.hansen@enron.com
## 10502 92971 9249 TO jeffrey.hodge@enron.com
## 10503 92972 9249 TO dan.hyvl@enron.com
## 10504 92973 9249 TO monica.jordan@enron.com
## 10505 92974 9249 TO janice.moore@enron.com
## 10506 92975 9249 TO david.portz@enron.com
## 10507 92976 9249 TO elizabeth.sager@enron.com
## 10508 92977 9249 TO sara.shackleton@enron.com
## 10509 92978 9249 TO shari.stack@enron.com
## 10510 92979 9249 TO carol.clair@enron.com
## 10511 92980 9249 TO susan.bailey@enron.com
## 10512 92981 9249 TO genia.fitzgerald@enron.com
## 10513 92982 9249 TO susan.flynn@enron.com
## 10514 92983 9249 TO marie.heard@enron.com
## 10515 92984 9249 TO nony.flores@enron.com
## 10516 92985 9249 TO debra.perlingiere@enron.com
## 10517 92986 9249 TO tana.jones@enron.com
## 10518 92987 9249 CC mark.dilworth@enron.com
## 10519 92988 9249 BCC mark.dilworth@enron.com
## 10520 92990 9251 TO david.forster@enron.com
## 10521 92991 9252 TO mark.dilworth@enron.com
## 10522 92992 9253 TO fiona.lavelle@enron.com
## 10523 92993 9254 TO mark.dilworth@enron.com
## 10524 92994 9255 TO marcello.romano@enron.com
## 10525 92995 9255 TO david.forster@enron.com
## 10526 92996 9256 TO bob.bowen@enron.com
## 10527 92997 9256 CC dale.neuner@enron.com
## 10528 92998 9256 CC jefferson.sorenson@enron.com
## 10529 92999 9256 CC brent.hendry@enron.com
## 10530 93000 9256 CC sara.shackleton@enron.com
## 10531 93001 9256 CC carol.clair@enron.com
## 10532 93002 9256 CC shari.stack@enron.com
## 10533 93003 9256 CC marie.heard@enron.com
## 10534 93004 9256 CC tana.jones@enron.com
## 10535 93005 9256 CC susan.flynn@enron.com
## 10536 93006 9256 CC susan.bailey@enron.com
## 10537 93007 9256 BCC dale.neuner@enron.com
## 10538 93008 9256 BCC jefferson.sorenson@enron.com
## 10539 93009 9256 BCC brent.hendry@enron.com
## 10540 93010 9256 BCC sara.shackleton@enron.com
## 10541 93011 9256 BCC carol.clair@enron.com
## 10542 93012 9256 BCC shari.stack@enron.com
## 10543 93013 9256 BCC marie.heard@enron.com
## 10544 93014 9256 BCC tana.jones@enron.com
## 10545 93015 9256 BCC susan.flynn@enron.com
## 10546 93016 9256 BCC susan.bailey@enron.com
## 10547 93017 9257 TO justin.boyd@enron.com
## 10548 93018 9257 TO edmund.cooper@enron.com
## 10549 93019 9257 CC tana.jones@enron.com
## 10550 93020 9257 BCC tana.jones@enron.com
## 10551 93021 9258 TO michael.corbally@enron.com
## 10552 93022 9259 TO david.forster@enron.com
## 10553 93023 9260 TO tana.jones@enron.com
## 10554 93024 9261 TO shari.stack@enron.com
## 10555 93027 9262 TO marcello.romano@enron.com
## 10556 93028 9263 TO shari.stack@enron.com
## 10557 93029 9263 CC janet.moore@enron.com
## 10558 93030 9263 BCC janet.moore@enron.com
## 10559 93031 9264 TO carol.clair@enron.com
## 10560 93032 9265 TO marie.heard@enron.com
## 10561 93033 9265 CC barbara.gray@enron.com
## 10562 93034 9265 BCC barbara.gray@enron.com
## 10563 93035 9266 TO mark.dilworth@enron.com
## 10564 93036 9267 TO shari.stack@enron.com
## 10565 93037 9268 TO shari.stack@enron.com
## 10566 93038 9269 TO paige.grumulaitis@enron.com
## 10567 93040 9271 TO mitch.enron@enron.com
## 10568 93041 9272 TO cindy.shaffer@enron.com
## 10569 93042 9273 TO louise.kitchen@enron.com
## 10570 93043 9274 TO tara.sweitzer@enron.com
## 10571 93044 9275 TO paige.grumulaitis@enron.com
## 10572 93045 9275 CC e..haedicke@enron.com
## 10573 93046 9275 BCC e..haedicke@enron.com
## 10574 93047 9276 TO tana.jones@enron.com
## 10575 93048 9277 TO tracy.ramsey@enron.com
## 10576 93050 9279 TO tana.jones@enron.com
## 10577 93051 9280 TO alan.aronowitz@enron.com
## 10578 93052 9280 TO stacy.dickson@enron.com
## 10579 93053 9280 TO leslie.hansen@enron.com
## 10580 93054 9280 CC mark.dilworth@enron.com
## 10581 93055 9280 BCC mark.dilworth@enron.com
## 10582 93056 9281 TO louise.kitchen@enron.com
## 10583 93057 9282 TO mark.dilworth@enron.com
## 10584 93058 9283 TO mark.dilworth@enron.com
## 10585 93059 9283 CC marcello.romano@enron.com
## 10586 93060 9283 CC david.forster@enron.com
## 10587 93061 9283 BCC marcello.romano@enron.com
## 10588 93062 9283 BCC david.forster@enron.com
## 10589 93063 9284 TO louise.kitchen@enron.com
## 10590 93064 9284 TO michael.corbally@enron.com
## 10591 93065 9284 CC justin.boyd@enron.com
## 10592 93066 9284 CC edmund.cooper@enron.com
## 10593 93067 9284 CC steven.vu@enron.com
## 10594 93068 9284 CC jeff.blumenthal@enron.com
## 10595 93069 9284 CC shari.stack@enron.com
## 10596 93070 9284 CC marcello.romano@enron.com
## 10597 93071 9284 BCC justin.boyd@enron.com
## 10598 93072 9284 BCC edmund.cooper@enron.com
## 10599 93073 9284 BCC steven.vu@enron.com
## 10600 93074 9284 BCC jeff.blumenthal@enron.com
## 10601 93075 9284 BCC shari.stack@enron.com
## 10602 93076 9284 BCC marcello.romano@enron.com
## 10603 93077 9285 TO mark.e.taylor@enron.com
## 10604 93079 9287 TO louise.kitchen@enron.com
## 10605 93083 9290 TO jeffrey.hodge@enron.com
## 10606 93084 9290 TO alan.aronowitz@enron.com
## 10607 93085 9290 TO stacy.dickson@enron.com
## 10608 93086 9290 TO elizabeth.sager@enron.com
## 10609 93087 9290 TO janice.moore@enron.com
## 10610 93088 9290 TO michael.robison@enron.com
## 10611 93089 9290 TO leslie.hansen@enron.com
## 10612 93090 9290 TO wayne.gresham@enron.com
## 10613 93091 9290 TO harry.collins@enron.com
## 10614 93092 9290 CC mark.dilworth@enron.com
## 10615 93093 9290 CC louise.kitchen@enron.com
## 10616 93094 9290 CC marcello.romano@enron.com
## 10617 93095 9290 BCC mark.dilworth@enron.com
## 10618 93096 9290 BCC louise.kitchen@enron.com
## 10619 93097 9290 BCC marcello.romano@enron.com
## 10620 93098 9291 TO justin.boyd@enron.com
## 10621 93099 9292 TO cindy.shaffer@enron.com
## 10622 93100 9293 TO ted.murphy@enron.com
## 10623 93102 9295 TO taffy.milligan@enron.com
## 10624 93103 9296 TO tana.jones@enron.com
## 10625 93104 9297 TO tana.jones@enron.com
## 10626 93105 9298 TO tana.jones@enron.com
## 10627 93106 9299 TO tana.jones@enron.com
## 10628 93107 9300 TO marcus.polach@enron.com
## 10629 93108 9301 TO yao.apasu@enron.com
## 10630 93109 9302 TO sara.shackleton@enron.com
## 10631 93110 9302 TO carol.clair@enron.com
## 10632 93111 9303 TO brent.hendry@enron.com
## 10633 93112 9304 TO andrew.thomas@enron.com
## 10634 93116 9308 TO kim.zachary@enron.com
## 10635 93117 9308 CC lawrence.lawyer@enron.com
## 10636 93118 9308 CC janet.moore@enron.com
## 10637 93119 9308 BCC lawrence.lawyer@enron.com
## 10638 93120 9308 BCC janet.moore@enron.com
## 10639 93123 9311 TO laurel.adams@enron.com
## 10640 93124 9312 TO taffy.milligan@enron.com
## 10641 93125 9313 TO carol.clair@enron.com
## 10642 93126 9314 TO carol.clair@enron.com
## 10643 93127 9315 TO carol.clair@enron.com
## 10644 93128 9316 TO taffy.milligan@enron.com
## 10645 93129 9317 TO shari.stack@enron.com
## 10646 93130 9318 TO susan.flynn@enron.com
## 10647 93131 9318 CC tanya.rohauer@enron.com
## 10648 93132 9318 BCC tanya.rohauer@enron.com
## 10649 93134 9320 TO marcus.polach@enron.com
## 10650 93135 9321 TO taffy.milligan@enron.com
## 10651 93136 9322 TO sara.shackleton@enron.com
## 10652 93137 9323 TO brent.enron@enron.com
## 10653 93138 9324 TO mitch.enron@enron.com
## 10654 93140 9326 TO brent.enron@enron.com
## 10655 93143 9328 TO jeff.blumenthal@enron.com
## 10656 93144 9329 TO don.black@enron.com
## 10657 93145 9330 TO alan.aronowitz@enron.com
## 10658 93146 9330 TO harry.collins@enron.com
## 10659 93147 9330 TO stacy.dickson@enron.com
## 10660 93148 9330 TO wayne.gresham@enron.com
## 10661 93149 9330 TO leslie.hansen@enron.com
## 10662 93150 9330 TO jeffrey.hodge@enron.com
## 10663 93151 9330 TO janice.moore@enron.com
## 10664 93152 9330 TO michael.robison@enron.com
## 10665 93153 9330 TO elizabeth.sager@enron.com
## 10666 93154 9331 TO justin.boyd@enron.com
## 10667 93156 9333 TO tana.jones@enron.com
## 10668 93157 9334 TO tana.jones@enron.com
## 10669 93160 9336 TO tracy.foy@enron.com
## 10670 93161 9337 TO louise.kitchen@enron.com
## 10671 93162 9338 TO louise.kitchen@enron.com
## 10672 93163 9339 TO tana.jones@enron.com
## 10673 93164 9340 TO justin.boyd@enron.com
## 10674 93166 9341 TO alan.aronowitz@enron.com
## 10675 93167 9341 TO harry.collins@enron.com
## 10676 93168 9341 TO stacy.dickson@enron.com
## 10677 93169 9341 TO leslie.hansen@enron.com
## 10678 93170 9341 TO jeffrey.hodge@enron.com
## 10679 93171 9341 TO janice.moore@enron.com
## 10680 93172 9341 TO michael.robison@enron.com
## 10681 93173 9341 TO elizabeth.sager@enron.com
## 10682 93174 9342 TO jeffrey.hodge@enron.com
## 10683 93175 9343 TO alan.aronowitz@enron.com
## 10684 93176 9343 TO harry.collins@enron.com
## 10685 93177 9343 TO stacy.dickson@enron.com
## 10686 93178 9343 TO leslie.hansen@enron.com
## 10687 93179 9343 TO jeffrey.hodge@enron.com
## 10688 93180 9343 TO janice.moore@enron.com
## 10689 93181 9343 TO michael.robison@enron.com
## 10690 93182 9343 TO elizabeth.sager@enron.com
## 10691 93183 9344 TO harry.collins@enron.com
## 10692 93184 9344 CC alan.aronowitz@enron.com
## 10693 93185 9344 BCC alan.aronowitz@enron.com
## 10694 93188 9346 TO alan.aronowitz@enron.com
## 10695 93189 9346 TO janice.moore@enron.com
## 10696 93190 9347 TO taffy.milligan@enron.com
## 10697 93191 9348 TO taffy.milligan@enron.com
## 10698 93193 9350 TO sara.shackleton@enron.com
## 10699 93195 9352 TO taffy.milligan@enron.com
## 10700 93196 9353 TO janice.moore@enron.com
## 10701 93201 9357 TO sara.shackleton@enron.com
## 10702 93203 9358 CC jung-suk.suh@enron.com
## 10703 93204 9358 BCC jung-suk.suh@enron.com
## 10704 93205 9359 TO rod.nelson@enron.com
## 10705 93206 9360 TO jeffrey.hodge@enron.com
## 10706 93207 9361 TO rod.nelson@enron.com
## 10707 93208 9361 TO sara.shackleton@enron.com
## 10708 93209 9361 TO shari.stack@enron.com
## 10709 93210 9361 CC tanya.rohauer@enron.com
## 10710 93211 9361 CC susan.bailey@enron.com
## 10711 93212 9361 CC susan.flynn@enron.com
## 10712 93213 9361 CC marie.heard@enron.com
## 10713 93214 9361 CC tana.jones@enron.com
## 10714 93215 9361 CC carol.clair@enron.com
## 10715 93216 9361 CC justin.boyd@enron.com
## 10716 93217 9361 CC mark.elliott@enron.com
## 10717 93218 9361 CC paul.simons@enron.com
## 10718 93219 9361 BCC tanya.rohauer@enron.com
## 10719 93220 9361 BCC susan.bailey@enron.com
## 10720 93221 9361 BCC susan.flynn@enron.com
## 10721 93222 9361 BCC marie.heard@enron.com
## 10722 93223 9361 BCC tana.jones@enron.com
## 10723 93224 9361 BCC carol.clair@enron.com
## 10724 93225 9361 BCC justin.boyd@enron.com
## 10725 93226 9361 BCC mark.elliott@enron.com
## 10726 93227 9361 BCC paul.simons@enron.com
## 10727 93228 9362 TO taffy.milligan@enron.com
## 10728 93232 9364 CC justin.boyd@enron.com
## 10729 93233 9364 CC scott.sefton@enron.com
## 10730 93234 9364 CC louise.kitchen@enron.com
## 10731 93235 9364 BCC justin.boyd@enron.com
## 10732 93236 9364 BCC scott.sefton@enron.com
## 10733 93237 9364 BCC louise.kitchen@enron.com
## 10734 93242 9368 TO tracy.foy@enron.com
## 10735 93243 9369 TO tracy.foy@enron.com
## 10736 93244 9370 TO robina.barker-bennett@enron.com
## 10737 93245 9370 CC shari.stack@enron.com
## 10738 93246 9370 BCC shari.stack@enron.com
## 10739 93247 9371 TO louise.kitchen@enron.com
## 10740 93248 9371 TO david.port@enron.com
## 10741 93249 9371 CC william.bradford@enron.com
## 10742 93250 9371 BCC william.bradford@enron.com
## 10743 93251 9372 TO alan.aronowitz@enron.com
## 10744 93252 9373 TO louise.kitchen@enron.com
## 10745 93253 9374 TO sara.shackleton@enron.com
## 10746 93256 9376 TO marie.heard@enron.com
## 10747 93257 9377 TO geoffrey.allen@enron.com
## 10748 93258 9378 TO benedikt.messner@enron.com
## 10749 93259 9379 TO shari.stack@enron.com
## 10750 93260 9380 TO mark.elliott@enron.com
## 10751 93261 9380 TO paul.simons@enron.com
## 10752 93262 9380 TO justin.boyd@enron.com
## 10753 93263 9380 TO scott.sefton@enron.com
## 10754 93264 9381 TO sylvia.sauseda@enron.com
## 10755 93267 9383 TO brent.hendry@enron.com
## 10756 93268 9383 TO andrea.calo@enron.com
## 10757 93270 9385 TO susan.flynn@enron.com
## 10758 93271 9385 CC taffy.milligan@enron.com
## 10759 93272 9385 BCC taffy.milligan@enron.com
## 10760 93273 9386 TO marie.heard@enron.com
## 10761 93274 9387 TO tracy.foy@enron.com
## 10762 93275 9387 CC justin.boyd@enron.com
## 10763 93276 9387 BCC justin.boyd@enron.com
## 10764 93277 9388 TO elena.kapralova@enron.com
## 10765 93278 9388 CC rahil.jafry@enron.com
## 10766 93279 9388 CC louise.kitchen@enron.com
## 10767 93280 9388 CC marcello.romano@enron.com
## 10768 93281 9388 CC paul.goddard@enron.com
## 10769 93282 9388 CC justin.boyd@enron.com
## 10770 93283 9388 CC gary.foster@enron.com
## 10771 93284 9388 BCC rahil.jafry@enron.com
## 10772 93285 9388 BCC louise.kitchen@enron.com
## 10773 93286 9388 BCC marcello.romano@enron.com
## 10774 93287 9388 BCC paul.goddard@enron.com
## 10775 93288 9388 BCC justin.boyd@enron.com
## 10776 93289 9388 BCC gary.foster@enron.com
## 10777 93293 9391 TO sara.shackleton@enron.com
## 10778 93294 9391 TO carol.clair@enron.com
## 10779 93295 9391 TO shari.stack@enron.com
## 10780 93296 9391 TO susan.flynn@enron.com
## 10781 93297 9391 TO marie.heard@enron.com
## 10782 93298 9391 TO tana.jones@enron.com
## 10783 93299 9392 TO shari.stack@enron.com
## 10784 93300 9393 TO kenneth.enron@enron.com
## 10785 93301 9394 TO susan.bailey@enron.com
## 10786 93302 9394 CC taffy.milligan@enron.com
## 10787 93303 9394 BCC taffy.milligan@enron.com
## 10788 93304 9395 TO kenneth.enron@enron.com
## 10789 93305 9396 TO kenneth.enron@enron.com
## 10790 93306 9397 TO louise.kitchen@enron.com
## 10791 93307 9398 TO martin.rosell@enron.com
## 10792 93308 9399 TO david.mally@enron.com
## 10793 93309 9399 CC louise.kitchen@enron.com
## 10794 93310 9399 CC david.port@enron.com
## 10795 93311 9399 BCC louise.kitchen@enron.com
## 10796 93312 9399 BCC david.port@enron.com
## 10797 93313 9400 TO david.mally@enron.com
## 10798 93314 9400 CC louise.kitchen@enron.com
## 10799 93315 9400 CC david.port@enron.com
## 10800 93316 9400 BCC louise.kitchen@enron.com
## 10801 93317 9400 BCC david.port@enron.com
## 10802 93320 9402 TO martin.rosell@enron.com
## 10803 93321 9402 CC paul.simons@enron.com
## 10804 93322 9402 CC edmund.cooper@enron.com
## 10805 93323 9402 CC scott.sefton@enron.com
## 10806 93324 9402 CC justin.boyd@enron.com
## 10807 93325 9402 CC mark.elliott@enron.com
## 10808 93326 9402 BCC paul.simons@enron.com
## 10809 93327 9402 BCC edmund.cooper@enron.com
## 10810 93328 9402 BCC scott.sefton@enron.com
## 10811 93329 9402 BCC justin.boyd@enron.com
## 10812 93330 9402 BCC mark.elliott@enron.com
## 10813 93331 9403 TO martin.rosell@enron.com
## 10814 93332 9404 TO louise.kitchen@enron.com
## 10815 93333 9405 TO tracy.foy@enron.com
## 10816 93334 9406 TO legal.2@enron.com
## 10817 93338 9410 TO jeffrey.keeler@enron.com
## 10818 93339 9410 CC e..haedicke@enron.com
## 10819 93340 9410 BCC e..haedicke@enron.com
## 10820 93341 9411 TO sylvia.sauseda@enron.com
## 10821 93342 9412 TO louise.kitchen@enron.com
## 10822 93343 9412 CC justin.boyd@enron.com
## 10823 93344 9412 CC scott.sefton@enron.com
## 10824 93345 9412 BCC justin.boyd@enron.com
## 10825 93346 9412 BCC scott.sefton@enron.com
## 10826 93348 9414 TO louise.kitchen@enron.com
## 10827 93352 9418 TO kaye.ellis@enron.com
## 10828 93353 9419 TO louise.kitchen@enron.com
## 10829 93354 9420 TO sara.shackleton@enron.com
## 10830 93362 9424 TO justin.boyd@enron.com
## 10831 93367 9429 TO christian.yoder@enron.com
## 10832 93368 9430 TO christian.yoder@enron.com
## 10833 93369 9431 TO richard.weeks@enron.com
## 10834 93370 9431 CC sylvia.sauseda@enron.com
## 10835 93371 9431 CC legal.2@enron.com
## 10836 93372 9431 BCC sylvia.sauseda@enron.com
## 10837 93373 9431 BCC legal.2@enron.com
## 10838 93374 9432 TO brent.hendry@enron.com
## 10839 93375 9432 TO sara.shackleton@enron.com
## 10840 93376 9432 TO carol.clair@enron.com
## 10841 93377 9432 TO shari.stack@enron.com
## 10842 93378 9432 TO marie.heard@enron.com
## 10843 93379 9432 TO tana.jones@enron.com
## 10844 93380 9432 TO susan.flynn@enron.com
## 10845 93381 9432 TO susan.bailey@enron.com
## 10846 93382 9433 TO susan.bailey@enron.com
## 10847 93383 9434 TO brent.hendry@enron.com
## 10848 93384 9434 TO sara.shackleton@enron.com
## 10849 93385 9434 TO carol.clair@enron.com
## 10850 93386 9434 TO shari.stack@enron.com
## 10851 93387 9434 TO marie.heard@enron.com
## 10852 93388 9434 TO tana.jones@enron.com
## 10853 93389 9434 TO susan.flynn@enron.com
## 10854 93392 9437 TO justin.boyd@enron.com
## 10855 93393 9438 TO elizabeth.sager@enron.com
## 10856 93395 9440 TO brent.hendry@enron.com
## 10857 93396 9440 TO andrea.calo@enron.com
## 10858 93399 9442 TO justin.boyd@enron.com
## 10859 93400 9443 TO justin.boyd@enron.com
## 10860 93401 9444 TO legal.2@enron.com
## 10861 93402 9445 TO thomas.gros@enron.com
## 10862 93403 9446 TO christian.yoder@enron.com
## 10863 93404 9447 TO paul.simons@enron.com
## 10864 93405 9448 TO javier.espinoza@enron.com
## 10865 93406 9449 TO louise.kitchen@enron.com
## 10866 93407 9450 TO tana.jones@enron.com
## 10867 93408 9450 CC susan.bailey@enron.com
## 10868 93409 9450 BCC susan.bailey@enron.com
## 10869 93410 9451 TO becky.tlucek@enron.com
## 10870 93411 9452 TO carol.clair@enron.com
## 10871 93412 9453 TO becky.tlucek@enron.com
## 10872 93415 9456 TO carol.clair@enron.com
## 10873 93416 9456 CC legal.2@enron.com
## 10874 93417 9456 BCC legal.2@enron.com
## 10875 93418 9457 TO deb.gebhardt@enron.com
## 10876 93419 9458 TO janice.moore@enron.com
## 10877 93420 9458 CC elizabeth.sager@enron.com
## 10878 93421 9458 CC sara.shackleton@enron.com
## 10879 93422 9458 CC david.terlip@enron.com
## 10880 93423 9458 BCC elizabeth.sager@enron.com
## 10881 93424 9458 BCC sara.shackleton@enron.com
## 10882 93425 9458 BCC david.terlip@enron.com
## 10883 93426 9459 TO brent.hendry@enron.com
## 10884 93427 9459 TO sara.shackleton@enron.com
## 10885 93428 9459 TO carol.clair@enron.com
## 10886 93429 9459 TO shari.stack@enron.com
## 10887 93432 9461 TO nony.flores@enron.com
## 10888 93433 9462 TO tana.jones@enron.com
## 10889 93434 9463 TO shari.stack@enron.com
## 10890 93435 9464 TO scott.sefton@enron.com
## 10891 93436 9465 TO michael.kopper@enron.com
## 10892 93437 9466 TO mark.elliott@enron.com
## 10893 93438 9467 TO suzanne.adams@enron.com
## 10894 93439 9468 TO suzanne.adams@enron.com
## 10895 93440 9468 CC dan.lyons@enron.com
## 10896 93441 9468 BCC dan.lyons@enron.com
## 10897 93442 9469 TO vladimir.gorny@enron.com
## 10898 93443 9470 TO thomas.gros@enron.com
## 10899 93444 9471 TO carol.clair@enron.com
## 10900 93445 9471 CC legal.2@enron.com
## 10901 93446 9471 BCC legal.2@enron.com
## 10902 93449 9474 TO e..haedicke@enron.com
## 10903 93451 9476 TO torrey.moorer@enron.com
## 10904 93452 9477 TO sara.shackleton@enron.com
## 10905 93453 9478 TO edward.ondarza@enron.com
## 10906 93454 9478 TO william.bradford@enron.com
## 10907 93457 9481 TO dorice.cheong@enron.com
## 10908 93458 9482 TO dorice.cheong@enron.com
## 10909 93459 9483 TO tana.jones@enron.com
## 10910 93461 9485 TO legal.2@enron.com
## 10911 93462 9486 TO marie.heard@enron.com
## 10912 93463 9487 TO lawrence.lawyer@enron.com
## 10913 93464 9488 TO deb.korkmas@enron.com
## 10914 93465 9489 TO becky.tlucek@enron.com
## 10915 93467 9491 TO mark.elliott@enron.com
## 10916 93468 9491 CC martin.rosell@enron.com
## 10917 93469 9491 BCC martin.rosell@enron.com
## 10918 93471 9493 TO martin.rosell@enron.com
## 10919 93472 9494 TO carol.clair@enron.com
## 10920 93473 9495 TO clair.fowler@enron.com
## 10921 93474 9496 TO scott.sefton@enron.com
## 10922 93475 9497 TO christian.yoder@enron.com
## 10923 93477 9499 TO lisa.mellencamp@enron.com
## 10924 93478 9499 TO jeffrey.hodge@enron.com
## 10925 93479 9499 TO carol.clair@enron.com
## 10926 93480 9500 TO lisa.mellencamp@enron.com
## 10927 93481 9500 TO carol.clair@enron.com
## 10928 93482 9501 TO marcus.polach@enron.com
## 10929 93483 9502 TO justin.boyd@enron.com
## 10930 93484 9503 TO mark.elliott@enron.com
## 10931 93486 9505 TO legal.3@enron.com
## 10932 93487 9506 TO sara.shackleton@enron.com
## 10933 93488 9507 TO yao.apasu@enron.com
## 10934 93490 9509 TO yao.apasu@enron.com
## 10935 93491 9510 TO marcus.polach@enron.com
## 10936 93492 9510 CC paul.simons@enron.com
## 10937 93493 9510 BCC paul.simons@enron.com
## 10938 93499 9512 TO susan.flynn@enron.com
## 10939 93500 9512 CC janet.dobernecker@enron.com
## 10940 93501 9512 BCC janet.dobernecker@enron.com
## 10941 93503 9514 TO mark.elliott@enron.com
## 10942 93504 9514 CC jeffrey.hodge@enron.com
## 10943 93505 9514 CC alan.aronowitz@enron.com
## 10944 93506 9514 CC scott.sefton@enron.com
## 10945 93507 9514 BCC jeffrey.hodge@enron.com
## 10946 93508 9514 BCC alan.aronowitz@enron.com
## 10947 93509 9514 BCC scott.sefton@enron.com
## 10948 93510 9515 TO sara.shackleton@enron.com
## 10949 93511 9515 TO elizabeth.sager@enron.com
## 10950 93512 9516 TO lisa.mellencamp@enron.com
## 10951 93513 9517 TO tana.jones@enron.com
## 10952 93514 9518 TO scott.sefton@enron.com
## 10953 93515 9519 TO nony.flores@enron.com
## 10954 93516 9520 TO elizabeth.sager@enron.com
## 10955 93519 9523 TO tana.jones@enron.com
## 10956 93520 9524 TO no.address@enron.com
## 10957 93521 9525 TO justin.boyd@enron.com
## 10958 93522 9526 TO justin.boyd@enron.com
## 10959 93523 9527 TO michael.moulton@enron.com
## 10960 93524 9528 TO nony.flores@enron.com
## 10961 93525 9529 TO monica.jordan@enron.com
## 10962 93526 9530 TO carolina.waingortin@enron.com
## 10963 93527 9531 TO brent.hendry@enron.com
## 10964 93528 9532 TO carolina.waingortin@enron.com
## 10965 93529 9533 TO shari.stack@enron.com
## 10966 93532 9536 TO nony.flores@enron.com
## 10967 93533 9536 CC brent.hendry@enron.com
## 10968 93534 9536 BCC brent.hendry@enron.com
## 10969 93535 9537 TO yao.apasu@enron.com
## 10970 93536 9538 TO robert.quick@enron.com
## 10971 93537 9538 CC tana.jones@enron.com
## 10972 93538 9538 CC janet.dobernecker@enron.com
## 10973 93539 9538 BCC tana.jones@enron.com
## 10974 93540 9538 BCC janet.dobernecker@enron.com
## 10975 93541 9539 TO tana.jones@enron.com
## 10976 93542 9540 TO paul.simons@enron.com
## 10977 93543 9541 TO dan.hyvl@enron.com
## 10978 93544 9541 CC brent.hendry@enron.com
## 10979 93545 9541 BCC brent.hendry@enron.com
## 10980 93546 9542 TO tana.jones@enron.com
## 10981 93550 9546 TO debbie.brackett@enron.com
## 10982 93552 9548 TO debbie.brackett@enron.com
## 10983 93553 9549 TO marc.roche@enron.com
## 10984 93554 9550 TO marc.roche@enron.com
## 10985 93555 9550 CC doug.leach@enron.com
## 10986 93556 9550 BCC doug.leach@enron.com
## 10987 93557 9551 TO tana.jones@enron.com
## 10988 93558 9551 TO janet.dobernecker@enron.com
## 10989 93559 9552 TO mary.ogden@enron.com
## 10990 93560 9553 TO christian.yoder@enron.com
## 10991 93561 9554 TO robert.quick@enron.com
## 10992 93562 9555 TO brent.enron@enron.com
## 10993 93564 9557 TO marc.roche@enron.com
## 10994 93565 9558 TO erica.braden@enron.com
## 10995 93566 9559 TO mark.elliott@enron.com
## 10996 93567 9559 TO scott.sefton@enron.com
## 10997 93568 9559 TO paul.simons@enron.com
## 10998 93569 9560 TO marc.roche@enron.com
## 10999 93570 9561 TO tammy.drew@enron.com
## 11000 93571 9561 CC cindy.skinner@enron.com
## 11001 93572 9561 BCC cindy.skinner@enron.com
## 11002 93573 9562 TO christian.yoder@enron.com
## 11003 93575 9564 TO randy.enron@enron.com
## 11004 93576 9565 TO janet.dobernecker@enron.com
## 11005 93577 9565 CC ann.white@enron.com
## 11006 93578 9565 CC tana.jones@enron.com
## 11007 93579 9565 BCC ann.white@enron.com
## 11008 93580 9565 BCC tana.jones@enron.com
## 11009 93581 9566 TO suzanne.adams@enron.com
## 11010 93582 9567 TO edmund.cooper@enron.com
## 11011 93583 9568 TO alan.aronowitz@enron.com
## 11012 93584 9569 TO alan.aronowitz@enron.com
## 11013 93586 9571 TO sasha.beard@enron.com
## 11014 93589 9574 TO brent.enron@enron.com
## 11015 93590 9575 TO peter.keohane@enron.com
## 11016 93591 9576 TO brent.enron@enron.com
## 11017 93592 9577 TO yao.apasu@enron.com
## 11018 93593 9577 TO sara.shackleton@enron.com
## 11019 93594 9578 TO yao.apasu@enron.com
## 11020 93595 9578 TO sara.shackleton@enron.com
## 11021 93596 9579 TO yao.apasu@enron.com
## 11022 93597 9579 TO sara.shackleton@enron.com
## 11023 93598 9580 TO tana.jones@enron.com
## 11024 93599 9581 TO deborah.culver@enron.com
## 11025 93600 9582 TO yao.apasu@enron.com
## 11026 93601 9583 TO jeffrey.keeler@enron.com
## 11027 93602 9584 TO yao.apasu@enron.com
## 11028 93603 9584 TO sara.shackleton@enron.com
## 11029 93604 9585 TO yao.apasu@enron.com
## 11030 93605 9585 TO sara.shackleton@enron.com
## 11031 93606 9586 TO yao.apasu@enron.com
## 11032 93608 9588 TO yao.apasu@enron.com
## 11033 93609 9588 TO sara.shackleton@enron.com
## 11034 93610 9589 TO yao.apasu@enron.com
## 11035 93611 9589 TO sara.shackleton@enron.com
## 11036 93612 9590 TO yao.apasu@enron.com
## 11037 93613 9590 TO sara.shackleton@enron.com
## 11038 93614 9591 TO yao.apasu@enron.com
## 11039 93615 9591 TO sara.shackleton@enron.com
## 11040 93616 9592 TO yao.apasu@enron.com
## 11041 93617 9592 TO sara.shackleton@enron.com
## 11042 93618 9593 TO yao.apasu@enron.com
## 11043 93619 9593 TO sara.shackleton@enron.com
## 11044 93620 9594 TO yao.apasu@enron.com
## 11045 93621 9594 TO sara.shackleton@enron.com
## 11046 93622 9595 TO kimberly.dees@enron.com
## 11047 93623 9596 TO mitch.enron@enron.com
## 11048 93624 9597 TO yao.apasu@enron.com
## 11049 93625 9597 TO sara.shackleton@enron.com
## 11050 93626 9598 TO yao.apasu@enron.com
## 11051 93627 9598 TO sara.shackleton@enron.com
## 11052 93629 9600 TO yao.apasu@enron.com
## 11053 93630 9600 TO mark.elliott@enron.com
## 11054 93631 9600 TO brent.hendry@enron.com
## 11055 93632 9600 TO sara.shackleton@enron.com
## 11056 93633 9600 TO shari.stack@enron.com
## 11057 93634 9600 TO paul.simons@enron.com
## 11058 93635 9600 TO marie.heard@enron.com
## 11059 93636 9600 TO tana.jones@enron.com
## 11060 93637 9600 TO susan.flynn@enron.com
## 11061 93638 9601 TO elizabeth.sager@enron.com
## 11062 93639 9602 TO brent.enron@enron.com
## 11063 93640 9603 TO yao.apasu@enron.com
## 11064 93641 9603 TO sara.shackleton@enron.com
## 11065 93642 9604 TO no.address@enron.com
## 11066 93643 9604 CC tana.jones@enron.com
## 11067 93644 9604 BCC tana.jones@enron.com
## 11068 93646 9606 TO shari.stack@enron.com
## 11069 93647 9607 TO sylvia.sauseda@enron.com
## 11070 93648 9607 CC meagan.brinkworth@enron.com
## 11071 93649 9607 BCC meagan.brinkworth@enron.com
## 11072 93651 9609 TO yao.apasu@enron.com
## 11073 93652 9609 TO sara.shackleton@enron.com
## 11074 93657 9614 TO janet.dobernecker@enron.com
## 11075 93658 9615 TO yao.apasu@enron.com
## 11076 93659 9616 TO yao.apasu@enron.com
## 11077 93660 9617 TO dan.lyons@enron.com
## 11078 93661 9618 TO yao.apasu@enron.com
## 11079 93662 9618 TO alan.aronowitz@enron.com
## 11080 93663 9618 TO gareth.bahlmann@enron.com
## 11081 93664 9618 TO teresa.bushman@enron.com
## 11082 93665 9618 TO bob.carter@enron.com
## 11083 93666 9618 TO shonnie.daniel@enron.com
## 11084 93667 9618 TO stacy.dickson@enron.com
## 11085 93668 9618 TO kenton.erwin@enron.com
## 11086 93669 9618 TO shawna.flynn@enron.com
## 11087 93670 9618 TO barbara.gray@enron.com
## 11088 93671 9618 TO e..haedicke@enron.com
## 11089 93672 9618 TO jeffrey.hodge@enron.com
## 11090 93673 9618 TO dan.hyvl@enron.com
## 11091 93674 9618 TO monica.jordan@enron.com
## 11092 93675 9618 TO dan.lyons@enron.com
## 11093 93676 9618 TO travis.mccullough@enron.com
## 11094 93677 9618 TO janice.moore@enron.com
## 11095 93678 9618 TO kristina.mordaunt@enron.com
## 11096 93679 9618 TO elizabeth.sager@enron.com
## 11097 93680 9618 TO lance.legal@enron.com
## 11098 93681 9618 TO sara.shackleton@enron.com
## 11099 93682 9618 TO carol.clair@enron.com
## 11100 93683 9618 TO sheila.tweed@enron.com
## 11101 93684 9618 TO stephen.hooser@enron.com
## 11102 93685 9618 TO merrill.haas@enron.com
## 11103 93686 9618 TO genia.fitzgerald@enron.com
## 11104 93687 9618 TO nony.flores@enron.com
## 11105 93688 9618 TO marie.heard@enron.com
## 11106 93689 9618 TO ed.iii@enron.com
## 11107 93690 9618 TO mary.heinitz@enron.com
## 11108 93691 9618 TO tana.jones@enron.com
## 11109 93692 9618 TO deb.korkmas@enron.com
## 11110 93693 9618 TO robert.walker@enron.com
## 11111 93694 9618 TO kay.young@enron.com
## sender date
## 1 christopher.calger@enron.com 2000-06-27
## 2 christian.yoder@enron.com 2000-07-25
## 3 christian.yoder@enron.com 2000-07-25
## 4 christian.yoder@enron.com 2000-07-25
## 5 carla.hoffman@enron.com 2000-07-27
## 6 carla.hoffman@enron.com 2000-07-27
## 7 carla.hoffman@enron.com 2000-07-27
## 8 shari.stack@enron.com 2000-07-31
## 9 shari.stack@enron.com 2000-07-31
## 10 shari.stack@enron.com 2000-07-31
## 11 shari.stack@enron.com 2000-07-31
## 12 shari.stack@enron.com 2000-08-02
## 13 joseph.alamo@enron.com 2000-08-02
## 14 joseph.alamo@enron.com 2000-08-02
## 15 joseph.alamo@enron.com 2000-08-02
## 16 heather.dunton@enron.com 2000-08-03
## 17 heather.dunton@enron.com 2000-08-03
## 18 heather.dunton@enron.com 2000-08-03
## 19 heather.dunton@enron.com 2000-08-03
## 20 heather.dunton@enron.com 2000-08-03
## 21 heather.dunton@enron.com 2000-08-03
## 22 bruno.gaillard@enron.com 2000-08-03
## 23 bruno.gaillard@enron.com 2000-08-03
## 24 mona.petrochko@enron.com 2000-08-04
## 25 mona.petrochko@enron.com 2000-08-04
## 26 mona.petrochko@enron.com 2000-08-04
## 27 mona.petrochko@enron.com 2000-08-04
## 28 bruno.gaillard@enron.com 2000-08-04
## 29 bruno.gaillard@enron.com 2000-08-04
## 30 carla.hoffman@enron.com 2000-08-07
## 31 carla.hoffman@enron.com 2000-08-07
## 32 carla.hoffman@enron.com 2000-08-07
## 33 carla.hoffman@enron.com 2000-08-07
## 34 carla.hoffman@enron.com 2000-08-07
## 35 carla.hoffman@enron.com 2000-08-07
## 36 carla.hoffman@enron.com 2000-08-07
## 37 shari.stack@enron.com 2000-08-07
## 38 srrs@enron.com 2000-08-09
## 39 janel.guerrero@enron.com 2000-08-15
## 40 shari.stack@enron.com 2000-08-16
## 41 mary.hain@enron.com 2000-08-17
## 42 mary.hain@enron.com 2000-08-17
## 43 mary.hain@enron.com 2000-08-17
## 44 tim.belden@enron.com 2000-08-20
## 45 suzanne.farrow@enron.com 2000-08-21
## 46 christian.yoder@enron.com 2000-08-22
## 47 christian.yoder@enron.com 2000-08-22
## 48 carla.hoffman@enron.com 2000-08-23
## 49 carla.hoffman@enron.com 2000-08-23
## 50 carla.hoffman@enron.com 2000-08-23
## 51 carla.hoffman@enron.com 2000-08-23
## 52 carla.hoffman@enron.com 2000-08-23
## 53 carla.hoffman@enron.com 2000-08-23
## 54 carla.hoffman@enron.com 2000-08-23
## 55 cooper.richey@enron.com 2000-08-23
## 56 cooper.richey@enron.com 2000-08-23
## 57 cooper.richey@enron.com 2000-08-23
## 58 cooper.richey@enron.com 2000-08-23
## 59 cooper.richey@enron.com 2000-08-23
## 60 carla.hoffman@enron.com 2000-08-23
## 61 carla.hoffman@enron.com 2000-08-23
## 62 carla.hoffman@enron.com 2000-08-23
## 63 carla.hoffman@enron.com 2000-08-23
## 64 carla.hoffman@enron.com 2000-08-23
## 65 carla.hoffman@enron.com 2000-08-23
## 66 carla.hoffman@enron.com 2000-08-23
## 67 john.massey@enron.com 2000-08-24
## 68 carla.hoffman@enron.com 2000-08-24
## 69 carla.hoffman@enron.com 2000-08-24
## 70 carla.hoffman@enron.com 2000-08-24
## 71 carla.hoffman@enron.com 2000-08-24
## 72 carla.hoffman@enron.com 2000-08-24
## 73 carla.hoffman@enron.com 2000-08-24
## 74 carla.hoffman@enron.com 2000-08-24
## 75 shari.stack@enron.com 2000-08-24
## 76 shari.stack@enron.com 2000-08-24
## 77 carla.hoffman@enron.com 2000-08-24
## 78 carla.hoffman@enron.com 2000-08-24
## 79 carla.hoffman@enron.com 2000-08-24
## 80 carla.hoffman@enron.com 2000-08-24
## 81 carla.hoffman@enron.com 2000-08-24
## 82 carla.hoffman@enron.com 2000-08-24
## 83 carla.hoffman@enron.com 2000-08-24
## 84 kristian.lande@enron.com 2000-08-24
## 85 kristian.lande@enron.com 2000-08-24
## 86 kristian.lande@enron.com 2000-08-24
## 87 kristian.lande@enron.com 2000-08-24
## 88 kristian.lande@enron.com 2000-08-24
## 89 kristian.lande@enron.com 2000-08-24
## 90 david.forster@enron.com 2000-08-24
## 91 david.forster@enron.com 2000-08-24
## 92 david.forster@enron.com 2000-08-24
## 93 david.forster@enron.com 2000-08-24
## 94 rebecca.phillips@enron.com 2000-08-25
## 95 rebecca.phillips@enron.com 2000-08-25
## 96 rebecca.phillips@enron.com 2000-08-25
## 97 rebecca.phillips@enron.com 2000-08-25
## 98 rebecca.phillips@enron.com 2000-08-25
## 99 rebecca.phillips@enron.com 2000-08-25
## 100 rebecca.phillips@enron.com 2000-08-25
## 101 rebecca.phillips@enron.com 2000-08-25
## 102 debra.davidson@enron.com 2000-08-25
## 103 debra.davidson@enron.com 2000-08-25
## 104 debra.davidson@enron.com 2000-08-25
## 105 debra.davidson@enron.com 2000-08-25
## 106 debra.davidson@enron.com 2000-08-25
## 107 rhonda.denton@enron.com 2000-08-25
## 108 rhonda.denton@enron.com 2000-08-25
## 109 rhonda.denton@enron.com 2000-08-25
## 110 rhonda.denton@enron.com 2000-08-25
## 111 rhonda.denton@enron.com 2000-08-25
## 112 rhonda.denton@enron.com 2000-08-25
## 113 rhonda.denton@enron.com 2000-08-25
## 114 rhonda.denton@enron.com 2000-08-25
## 115 rhonda.denton@enron.com 2000-08-25
## 116 rhonda.denton@enron.com 2000-08-25
## 117 rhonda.denton@enron.com 2000-08-25
## 118 rhonda.denton@enron.com 2000-08-25
## 119 carla.hoffman@enron.com 2000-08-25
## 120 carla.hoffman@enron.com 2000-08-25
## 121 carla.hoffman@enron.com 2000-08-25
## 122 carla.hoffman@enron.com 2000-08-25
## 123 carla.hoffman@enron.com 2000-08-25
## 124 carla.hoffman@enron.com 2000-08-25
## 125 carla.hoffman@enron.com 2000-08-25
## 126 tim.belden@enron.com 2000-08-27
## 127 tim.belden@enron.com 2000-08-27
## 128 tim.belden@enron.com 2000-08-28
## 129 tim.belden@enron.com 2000-08-28
## 130 tim.belden@enron.com 2000-08-28
## 131 tim.belden@enron.com 2000-08-28
## 132 tim.belden@enron.com 2000-08-28
## 133 tim.belden@enron.com 2000-08-28
## 134 tim.belden@enron.com 2000-08-28
## 135 tim.belden@enron.com 2000-08-28
## 136 tim.belden@enron.com 2000-08-28
## 137 tim.belden@enron.com 2000-08-28
## 138 tim.belden@enron.com 2000-08-28
## 139 mona.petrochko@enron.com 2000-08-28
## 140 mona.petrochko@enron.com 2000-08-28
## 141 mona.petrochko@enron.com 2000-08-28
## 142 mona.petrochko@enron.com 2000-08-28
## 143 mary.hain@enron.com 2000-08-29
## 144 mary.hain@enron.com 2000-08-29
## 145 mary.hain@enron.com 2000-08-29
## 146 carla.hoffman@enron.com 2000-08-29
## 147 carla.hoffman@enron.com 2000-08-29
## 148 carla.hoffman@enron.com 2000-08-29
## 149 carla.hoffman@enron.com 2000-08-29
## 150 carla.hoffman@enron.com 2000-08-29
## 151 carla.hoffman@enron.com 2000-08-29
## 152 carla.hoffman@enron.com 2000-08-29
## 153 carla.hoffman@enron.com 2000-08-29
## 154 carla.hoffman@enron.com 2000-08-29
## 155 carla.hoffman@enron.com 2000-08-29
## 156 carla.hoffman@enron.com 2000-08-29
## 157 carla.hoffman@enron.com 2000-08-29
## 158 carla.hoffman@enron.com 2000-08-29
## 159 carla.hoffman@enron.com 2000-08-29
## 160 david.forster@enron.com 2000-08-29
## 161 david.forster@enron.com 2000-08-29
## 162 david.forster@enron.com 2000-08-29
## 163 david.forster@enron.com 2000-08-29
## 164 david.forster@enron.com 2000-08-29
## 165 david.forster@enron.com 2000-08-29
## 166 david.forster@enron.com 2000-08-29
## 167 david.forster@enron.com 2000-08-29
## 168 david.forster@enron.com 2000-08-29
## 169 david.forster@enron.com 2000-08-29
## 170 david.forster@enron.com 2000-08-29
## 171 david.forster@enron.com 2000-08-29
## 172 david.forster@enron.com 2000-08-29
## 173 david.forster@enron.com 2000-08-29
## 174 david.forster@enron.com 2000-08-29
## 175 david.forster@enron.com 2000-08-29
## 176 david.forster@enron.com 2000-08-29
## 177 david.forster@enron.com 2000-08-29
## 178 david.forster@enron.com 2000-08-29
## 179 david.forster@enron.com 2000-08-29
## 180 david.forster@enron.com 2000-08-29
## 181 david.forster@enron.com 2000-08-29
## 182 david.forster@enron.com 2000-08-29
## 183 david.forster@enron.com 2000-08-29
## 184 david.forster@enron.com 2000-08-29
## 185 david.forster@enron.com 2000-08-29
## 186 david.forster@enron.com 2000-08-29
## 187 david.forster@enron.com 2000-08-29
## 188 david.forster@enron.com 2000-08-29
## 189 david.forster@enron.com 2000-08-29
## 190 david.forster@enron.com 2000-08-29
## 191 david.forster@enron.com 2000-08-29
## 192 david.forster@enron.com 2000-08-29
## 193 david.forster@enron.com 2000-08-29
## 194 david.forster@enron.com 2000-08-29
## 195 david.forster@enron.com 2000-08-29
## 196 david.forster@enron.com 2000-08-29
## 197 david.forster@enron.com 2000-08-29
## 198 david.forster@enron.com 2000-08-29
## 199 david.forster@enron.com 2000-08-29
## 200 david.forster@enron.com 2000-08-29
## 201 david.forster@enron.com 2000-08-29
## 202 david.forster@enron.com 2000-08-29
## 203 david.forster@enron.com 2000-08-29
## 204 david.forster@enron.com 2000-08-29
## 205 david.forster@enron.com 2000-08-29
## 206 david.forster@enron.com 2000-08-29
## 207 david.forster@enron.com 2000-08-29
## 208 david.forster@enron.com 2000-08-29
## 209 carla.hoffman@enron.com 2000-08-08
## 210 carla.hoffman@enron.com 2000-08-08
## 211 carla.hoffman@enron.com 2000-08-08
## 212 carla.hoffman@enron.com 2000-08-08
## 213 carla.hoffman@enron.com 2000-08-08
## 214 carla.hoffman@enron.com 2000-08-08
## 215 carla.hoffman@enron.com 2000-08-08
## 216 carla.hoffman@enron.com 2000-08-11
## 217 carla.hoffman@enron.com 2000-08-11
## 218 carla.hoffman@enron.com 2000-08-11
## 219 carla.hoffman@enron.com 2000-08-11
## 220 carla.hoffman@enron.com 2000-08-11
## 221 carla.hoffman@enron.com 2000-08-11
## 222 carla.hoffman@enron.com 2000-08-11
## 223 carla.hoffman@enron.com 2000-08-14
## 224 carla.hoffman@enron.com 2000-08-14
## 225 carla.hoffman@enron.com 2000-08-14
## 226 carla.hoffman@enron.com 2000-08-14
## 227 carla.hoffman@enron.com 2000-08-14
## 228 carla.hoffman@enron.com 2000-08-14
## 229 carla.hoffman@enron.com 2000-08-14
## 230 carla.hoffman@enron.com 2000-08-15
## 231 carla.hoffman@enron.com 2000-08-15
## 232 carla.hoffman@enron.com 2000-08-15
## 233 carla.hoffman@enron.com 2000-08-15
## 234 carla.hoffman@enron.com 2000-08-15
## 235 carla.hoffman@enron.com 2000-08-15
## 236 carla.hoffman@enron.com 2000-08-15
## 237 carla.hoffman@enron.com 2000-08-16
## 238 carla.hoffman@enron.com 2000-08-16
## 239 carla.hoffman@enron.com 2000-08-16
## 240 carla.hoffman@enron.com 2000-08-16
## 241 carla.hoffman@enron.com 2000-08-16
## 242 carla.hoffman@enron.com 2000-08-16
## 243 carla.hoffman@enron.com 2000-08-16
## 244 carla.hoffman@enron.com 2000-08-16
## 245 carla.hoffman@enron.com 2000-08-16
## 246 carla.hoffman@enron.com 2000-08-16
## 247 carla.hoffman@enron.com 2000-08-16
## 248 carla.hoffman@enron.com 2000-08-16
## 249 carla.hoffman@enron.com 2000-08-16
## 250 carla.hoffman@enron.com 2000-08-16
## 251 valarie.sabo@enron.com 2000-08-07
## 252 valarie.sabo@enron.com 2000-08-07
## 253 valarie.sabo@enron.com 2000-08-07
## 254 jeff.dasovich@enron.com 2000-08-07
## 255 jeff.dasovich@enron.com 2000-08-07
## 256 jeff.dasovich@enron.com 2000-08-07
## 257 jeff.dasovich@enron.com 2000-08-07
## 258 jeff.dasovich@enron.com 2000-08-07
## 259 jeff.dasovich@enron.com 2000-08-07
## 260 jeff.dasovich@enron.com 2000-08-07
## 261 jeff.dasovich@enron.com 2000-08-07
## 262 jeff.dasovich@enron.com 2000-08-07
## 263 jeff.dasovich@enron.com 2000-08-07
## 264 jeff.dasovich@enron.com 2000-08-07
## 265 jeff.dasovich@enron.com 2000-08-07
## 266 tim.belden@enron.com 2000-08-14
## 267 tom.delaney@enron.com 2000-06-12
## 268 tom.delaney@enron.com 2000-06-12
## 269 susan.mara@enron.com 2000-06-15
## 270 susan.mara@enron.com 2000-06-15
## 271 susan.mara@enron.com 2000-06-15
## 272 susan.mara@enron.com 2000-06-15
## 273 susan.mara@enron.com 2000-06-15
## 274 mona.petrochko@enron.com 2000-06-16
## 275 mona.petrochko@enron.com 2000-06-16
## 276 mona.petrochko@enron.com 2000-06-16
## 277 tom.delaney@enron.com 2000-06-21
## 278 susan.mara@enron.com 2000-07-31
## 279 susan.mara@enron.com 2000-07-31
## 280 susan.mara@enron.com 2000-07-31
## 281 susan.mara@enron.com 2000-07-31
## 282 tim.belden@enron.com 2000-07-31
## 283 tim.belden@enron.com 2000-07-31
## 284 tim.belden@enron.com 2000-07-31
## 285 tim.belden@enron.com 2000-08-08
## 286 jeff.dasovich@enron.com 2000-08-10
## 287 jeff.dasovich@enron.com 2000-08-10
## 288 jeff.dasovich@enron.com 2000-08-10
## 289 jeff.dasovich@enron.com 2000-08-10
## 290 jeff.dasovich@enron.com 2000-08-10
## 291 jeff.dasovich@enron.com 2000-08-10
## 292 jeff.dasovich@enron.com 2000-08-10
## 293 jeff.dasovich@enron.com 2000-08-10
## 294 jeff.dasovich@enron.com 2000-08-10
## 295 jeff.dasovich@enron.com 2000-08-10
## 296 jeff.dasovich@enron.com 2000-08-10
## 297 jeff.dasovich@enron.com 2000-08-10
## 298 jeff.dasovich@enron.com 2000-08-16
## 299 jeff.dasovich@enron.com 2000-08-16
## 300 mary.hain@enron.com 2000-08-17
## 301 bruno.gaillard@enron.com 2000-08-08
## 302 bruno.gaillard@enron.com 2000-08-08
## 303 jeff.dasovich@enron.com 2000-08-09
## 304 jeff.dasovich@enron.com 2000-08-09
## 305 jeff.dasovich@enron.com 2000-08-09
## 306 jeff.dasovich@enron.com 2000-08-09
## 307 jeff.dasovich@enron.com 2000-08-09
## 308 jeff.dasovich@enron.com 2000-08-09
## 309 jeff.dasovich@enron.com 2000-08-09
## 310 jeff.dasovich@enron.com 2000-08-09
## 311 jeff.dasovich@enron.com 2000-08-09
## 312 jeff.dasovich@enron.com 2000-08-09
## 313 jeff.dasovich@enron.com 2000-08-09
## 314 mona.petrochko@enron.com 2000-08-09
## 315 mona.petrochko@enron.com 2000-08-09
## 316 bruno.gaillard@enron.com 2000-08-09
## 317 bruno.gaillard@enron.com 2000-08-09
## 318 jeff.dasovich@enron.com 2000-08-10
## 319 jeff.dasovich@enron.com 2000-08-10
## 320 jeff.dasovich@enron.com 2000-08-10
## 321 jeff.dasovich@enron.com 2000-08-10
## 322 jeff.dasovich@enron.com 2000-08-10
## 323 jeff.dasovich@enron.com 2000-08-10
## 324 jeff.dasovich@enron.com 2000-08-10
## 325 jeff.dasovich@enron.com 2000-08-10
## 326 jeff.dasovich@enron.com 2000-08-10
## 327 jeff.dasovich@enron.com 2000-08-10
## 328 jeff.dasovich@enron.com 2000-08-10
## 329 jeff.dasovich@enron.com 2000-08-10
## 330 jeff.dasovich@enron.com 2000-08-10
## 331 jeff.dasovich@enron.com 2000-08-10
## 332 jeff.dasovich@enron.com 2000-08-10
## 333 jeff.dasovich@enron.com 2000-08-11
## 334 jeff.dasovich@enron.com 2000-08-11
## 335 jeff.dasovich@enron.com 2000-08-11
## 336 robert.badeer@enron.com 2001-08-17
## 337 management.ubsw@enron.com 2002-03-07
## 338 robert.badeer@enron.com 2002-03-07
## 339 robert.badeer@enron.com 2002-03-07
## 340 robert.badeer@enron.com 2002-03-08
## 341 robert.badeer@enron.com 2002-03-08
## 342 robert.badeer@enron.com 2002-03-08
## 343 eric.gadd@enron.com 2001-09-28
## 344 eric.gadd@enron.com 2001-09-28
## 345 eric.gadd@enron.com 2001-09-28
## 346 jeff.nielsen@enron.com 2001-07-27
## 347 john.kiani-aslani@enron.com 2001-07-25
## 348 john.kiani-aslani@enron.com 2001-07-25
## 349 jeff.nielsen@enron.com 2001-07-23
## 350 larry.garrett@enron.com 2001-02-21
## 351 larry.garrett@enron.com 2001-02-21
## 352 rich.jolly@enron.com 2001-01-23
## 353 rich.jolly@enron.com 2001-01-23
## 354 rick.suderman@enron.com 2001-01-23
## 355 kenneth.chow@enron.com 2001-01-26
## 356 kenneth.chow@enron.com 2001-01-26
## 357 kenneth.chow@enron.com 2001-01-26
## 358 kenneth.chow@enron.com 2001-01-26
## 359 bob.burleson@enron.com 2001-01-26
## 360 bob.burleson@enron.com 2001-01-26
## 361 bob.burleson@enron.com 2001-01-26
## 362 bob.burleson@enron.com 2001-01-26
## 363 rich.jolly@enron.com 2001-01-29
## 364 rich.jolly@enron.com 2001-01-29
## 365 rich.jolly@enron.com 2001-01-29
## 366 rich.jolly@enron.com 2001-01-29
## 367 bob.jacobs@enron.com 2001-02-01
## 368 bob.jacobs@enron.com 2001-02-01
## 369 david.roensch@enron.com 2001-02-02
## 370 david.roensch@enron.com 2001-02-02
## 371 larry.garrett@enron.com 2001-02-16
## 372 larry.garrett@enron.com 2001-02-16
## 373 kevin.hyatt@enron.com 2002-03-08
## 374 kevin.hyatt@enron.com 2002-03-08
## 375 kevin.hyatt@enron.com 2002-03-08
## 376 kevin.hyatt@enron.com 2002-03-08
## 377 kevin.hyatt@enron.com 2002-03-08
## 378 kevin.hyatt@enron.com 2002-03-08
## 379 bob.bandel@enron.com 2002-02-27
## 380 roger.westbrook@enron.com 2002-02-27
## 381 roger.westbrook@enron.com 2002-02-27
## 382 james.centilli@enron.com 2002-02-20
## 383 james.centilli@enron.com 2002-02-20
## 384 frank.carriere@enron.com 2002-02-20
## 385 kevin.hyatt@enron.com 2002-02-27
## 386 kevin.hyatt@enron.com 2002-02-27
## 387 kevin.hyatt@enron.com 2002-02-27
## 388 kevin.hyatt@enron.com 2002-02-27
## 389 kevin.hyatt@enron.com 2002-02-27
## 390 kevin.hyatt@enron.com 2002-02-27
## 391 kevin.hyatt@enron.com 2002-02-27
## 392 judy.lin@enron.com 2001-10-15
## 393 lorna.brennan@enron.com 2001-09-28
## 394 lorna.brennan@enron.com 2001-07-27
## 395 lorna.brennan@enron.com 2001-07-20
## 396 lorna.brennan@enron.com 2001-07-13
## 397 lorna.brennan@enron.com 2001-07-16
## 398 lorna.brennan@enron.com 2001-07-12
## 399 john.goodpasture@enron.com 2001-07-02
## 400 john.goodpasture@enron.com 2001-07-02
## 401 lorna.brennan@enron.com 2001-07-02
## 402 tammy.jaquet@enron.com 2001-06-05
## 403 tammy.jaquet@enron.com 2001-06-05
## 404 eric.gadd@enron.com 2001-05-21
## 405 eric.gadd@enron.com 2001-05-21
## 406 kevin.hyatt@enron.com 2001-06-06
## 407 john.shafer@enron.com 2001-10-15
## 408 john.shafer@enron.com 2001-10-15
## 409 ron.matthews@enron.com 2002-03-11
## 410 ron.matthews@enron.com 2002-03-11
## 411 ron.matthews@enron.com 2002-03-08
## 412 eric.gadd@enron.com 2002-03-18
## 413 eric.gadd@enron.com 2002-03-18
## 414 kevin.hyatt@enron.com 2002-03-18
## 415 kevin.hyatt@enron.com 2002-03-18
## 416 kevin.hyatt@enron.com 2002-03-18
## 417 janet.butler@enron.com 2002-03-15
## 418 e..rosenberg@enron.com 2002-03-06
## 419 eric.gadd@enron.com 2002-02-19
## 420 eric.gadd@enron.com 2002-02-26
## 421 kevin.hyatt@enron.com 2002-03-15
## 422 kevin.hyatt@enron.com 2002-03-15
## 423 kevin.hyatt@enron.com 2002-03-15
## 424 kevin.hyatt@enron.com 2002-03-15
## 425 kevin.hyatt@enron.com 2002-03-15
## 426 kevin.hyatt@enron.com 2002-03-15
## 427 e..rosenberg@enron.com 2002-03-08
## 428 eric.gadd@enron.com 2002-03-08
## 429 kevin.hyatt@enron.com 2002-03-08
## 430 kevin.hyatt@enron.com 2002-03-08
## 431 kevin.hyatt@enron.com 2002-03-08
## 432 kevin.hyatt@enron.com 2002-03-08
## 433 glen.hass@enron.com 2002-03-01
## 434 kevin.hyatt@enron.com 2002-03-01
## 435 kevin.hyatt@enron.com 2002-03-01
## 436 kevin.hyatt@enron.com 2002-03-01
## 437 kevin.hyatt@enron.com 2002-03-01
## 438 kevin.hyatt@enron.com 2002-03-01
## 439 kevin.hyatt@enron.com 2002-03-01
## 440 kevin.hyatt@enron.com 2002-03-01
## 441 kevin.hyatt@enron.com 2002-03-01
## 442 ron.matthews@enron.com 2002-03-01
## 443 eric.gadd@enron.com 2002-02-28
## 444 l..eisenstein@enron.com 2002-02-25
## 445 l..eisenstein@enron.com 2002-02-25
## 446 eric.gadd@enron.com 2002-02-26
## 447 james.centilli@enron.com 2002-02-20
## 448 james.centilli@enron.com 2002-02-20
## 449 ron.matthews@enron.com 2002-02-20
## 450 bruce.tuttle@enron.com 2002-01-16
## 451 eric.gadd@enron.com 2002-02-11
## 452 dennis.lee@enron.com 2002-02-19
## 453 gina.taylor@enron.com 2002-02-15
## 454 gina.taylor@enron.com 2002-02-15
## 455 eric.gadd@enron.com 2002-02-14
## 456 kevin.hyatt@enron.com 2002-02-14
## 457 kevin.hyatt@enron.com 2002-02-14
## 458 kevin.hyatt@enron.com 2002-02-14
## 459 kevin.hyatt@enron.com 2002-02-14
## 460 glen.hass@enron.com 2002-01-10
## 461 ron.matthews@enron.com 2002-01-31
## 462 eric.gadd@enron.com 2002-02-04
## 463 ron.matthews@enron.com 2002-01-07
## 464 ron.matthews@enron.com 2002-01-07
## 465 ron.matthews@enron.com 2002-01-07
## 466 ron.matthews@enron.com 2002-01-07
## 467 gina.taylor@enron.com 2002-01-31
## 468 kevin.hyatt@enron.com 2002-02-01
## 469 kevin.hyatt@enron.com 2002-02-01
## 470 ron.matthews@enron.com 2002-01-29
## 471 kevin.hyatt@enron.com 2002-01-25
## 472 kevin.hyatt@enron.com 2002-01-25
## 473 doug.cebryk@enron.com 2002-01-23
## 474 kevin.hyatt@enron.com 2002-01-03
## 475 kevin.hyatt@enron.com 2002-01-03
## 476 kevin.hyatt@enron.com 2002-01-11
## 477 kevin.hyatt@enron.com 2002-01-11
## 478 a..howard@enron.com 2001-11-19
## 479 v.dickerson@enron.com 2001-11-26
## 480 kevin.hyatt@enron.com 2001-12-04
## 481 kevin.hyatt@enron.com 2001-12-04
## 482 kevin.hyatt@enron.com 2001-12-04
## 483 kevin.hyatt@enron.com 2001-12-04
## 484 eric.gadd@enron.com 2001-11-26
## 485 ron.matthews@enron.com 2001-11-08
## 486 lorraine.lindberg@enron.com 2001-11-27
## 487 lorraine.lindberg@enron.com 2001-11-27
## 488 eric.gadd@enron.com 2001-11-08
## 489 eric.gadd@enron.com 2001-11-12
## 490 buzz.smith@enron.com 2001-11-01
## 491 ron.matthews@enron.com 2001-10-03
## 492 paul.cherry@enron.com 2001-09-12
## 493 larry.f.campbell@enron.com 2001-09-28
## 494 larry.f.campbell@enron.com 2001-09-28
## 495 larry.f.campbell@enron.com 2001-09-28
## 496 larry.f.campbell@enron.com 2001-09-28
## 497 larry.f.campbell@enron.com 2001-09-28
## 498 larry.f.campbell@enron.com 2001-09-28
## 499 larry.f.campbell@enron.com 2001-09-28
## 500 larry.f.campbell@enron.com 2001-09-28
## 501 larry.f.campbell@enron.com 2001-09-28
## 502 larry.f.campbell@enron.com 2001-09-28
## 503 larry.f.campbell@enron.com 2001-09-28
## 504 larry.f.campbell@enron.com 2001-09-28
## 505 larry.f.campbell@enron.com 2001-09-28
## 506 larry.f.campbell@enron.com 2001-09-28
## 507 larry.f.campbell@enron.com 2001-09-28
## 508 sarah.haden@enron.com 2001-09-27
## 509 larry.f.campbell@enron.com 2001-09-26
## 510 larry.f.campbell@enron.com 2001-09-26
## 511 larry.f.campbell@enron.com 2001-09-26
## 512 larry.f.campbell@enron.com 2001-09-26
## 513 larry.f.campbell@enron.com 2001-09-26
## 514 larry.f.campbell@enron.com 2001-09-26
## 515 larry.f.campbell@enron.com 2001-09-26
## 516 larry.f.campbell@enron.com 2001-09-26
## 517 larry.f.campbell@enron.com 2001-09-26
## 518 larry.f.campbell@enron.com 2001-09-26
## 519 larry.f.campbell@enron.com 2001-09-26
## 520 larry.f.campbell@enron.com 2001-09-26
## 521 larry.f.campbell@enron.com 2001-09-26
## 522 larry.f.campbell@enron.com 2001-09-26
## 523 larry.f.campbell@enron.com 2001-09-26
## 524 larry.f.campbell@enron.com 2001-09-26
## 525 larry.f.campbell@enron.com 2001-09-26
## 526 maurice.gilbert@enron.com 2001-09-26
## 527 doug.cebryk@enron.com 2001-09-25
## 528 doug.cebryk@enron.com 2001-09-21
## 529 doug.cebryk@enron.com 2001-09-21
## 530 glen.hass@enron.com 2001-09-13
## 531 john.shafer@enron.com 2001-09-06
## 532 john.shafer@enron.com 2001-09-06
## 533 john.shafer@enron.com 2001-09-06
## 534 john.shafer@enron.com 2001-09-06
## 535 eric.gadd@enron.com 2001-09-07
## 536 eric.gadd@enron.com 2001-09-07
## 537 eric.gadd@enron.com 2001-09-07
## 538 eric.gadd@enron.com 2001-09-07
## 539 eric.gadd@enron.com 2001-09-07
## 540 ron.matthews@enron.com 2001-09-20
## 541 john.shafer@enron.com 2001-09-20
## 542 john.shafer@enron.com 2001-09-19
## 543 doug.cebryk@enron.com 2001-09-18
## 544 doug.cebryk@enron.com 2001-09-18
## 545 doug.cebryk@enron.com 2001-09-18
## 546 eric.gadd@enron.com 2001-09-18
## 547 eric.gadd@enron.com 2001-09-18
## 548 john.shafer@enron.com 2001-09-18
## 549 john.shafer@enron.com 2001-09-18
## 550 john.shafer@enron.com 2001-09-18
## 551 doug.cebryk@enron.com 2001-09-18
## 552 doug.cebryk@enron.com 2001-09-18
## 553 doug.cebryk@enron.com 2001-09-18
## 554 doug.cebryk@enron.com 2001-09-13
## 555 doug.cebryk@enron.com 2001-09-13
## 556 doug.cebryk@enron.com 2001-09-13
## 557 ron.matthews@enron.com 2001-09-07
## 558 eric.gadd@enron.com 2001-09-10
## 559 tony.pryor@enron.com 2001-08-30
## 560 tony.pryor@enron.com 2001-08-30
## 561 tony.pryor@enron.com 2001-08-29
## 562 tony.pryor@enron.com 2001-08-29
## 563 tony.pryor@enron.com 2001-08-30
## 564 tony.pryor@enron.com 2001-08-30
## 565 doug.cebryk@enron.com 2001-09-07
## 566 doug.cebryk@enron.com 2001-09-07
## 567 doug.cebryk@enron.com 2001-09-07
## 568 bryan.reinecke@enron.com 2001-08-31
## 569 bryan.reinecke@enron.com 2001-09-05
## 570 gina.taylor@enron.com 2001-09-06
## 571 gina.taylor@enron.com 2001-09-06
## 572 gina.taylor@enron.com 2001-09-06
## 573 gina.taylor@enron.com 2001-09-06
## 574 gina.taylor@enron.com 2001-09-06
## 575 gina.taylor@enron.com 2001-09-06
## 576 gina.taylor@enron.com 2001-09-06
## 577 gina.taylor@enron.com 2001-09-06
## 578 gina.taylor@enron.com 2001-09-06
## 579 gina.taylor@enron.com 2001-09-06
## 580 gina.taylor@enron.com 2001-09-06
## 581 gina.taylor@enron.com 2001-09-06
## 582 gina.taylor@enron.com 2001-09-06
## 583 gina.taylor@enron.com 2001-09-06
## 584 eric.gadd@enron.com 2001-09-05
## 585 eric.gadd@enron.com 2001-09-05
## 586 eric.gadd@enron.com 2001-09-05
## 587 kevin.hyatt@enron.com 2001-09-05
## 588 john.shafer@enron.com 2001-09-04
## 589 john.shafer@enron.com 2001-09-04
## 590 john.shafer@enron.com 2001-09-04
## 591 john.shafer@enron.com 2001-09-04
## 592 john.shafer@enron.com 2001-08-31
## 593 john.shafer@enron.com 2001-08-31
## 594 john.shafer@enron.com 2001-08-31
## 595 doug.cebryk@enron.com 2001-08-29
## 596 paul.cherry@enron.com 2001-08-29
## 597 louis.soldano@enron.com 2001-08-31
## 598 louis.soldano@enron.com 2001-08-31
## 599 louis.soldano@enron.com 2001-08-31
## 600 louis.soldano@enron.com 2001-08-31
## 601 eric.gadd@enron.com 2001-08-08
## 602 jane.scelzo@enron.com 2001-08-30
## 603 jane.scelzo@enron.com 2001-08-30
## 604 ron.matthews@enron.com 2001-08-22
## 605 eric.gadd@enron.com 2001-08-28
## 606 eric.gadd@enron.com 2001-08-28
## 607 eric.gadd@enron.com 2001-08-28
## 608 seth.sarakaitis@enron.com 2001-08-28
## 609 kevin.hyatt@enron.com 2001-08-27
## 610 kevin.hyatt@enron.com 2001-08-27
## 611 tk.lohman@enron.com 2001-08-07
## 612 john.shafer@enron.com 2001-08-22
## 613 john.shafer@enron.com 2001-08-22
## 614 john.shafer@enron.com 2001-08-22
## 615 john.shafer@enron.com 2001-08-21
## 616 john.shafer@enron.com 2001-08-21
## 617 john.shafer@enron.com 2001-08-21
## 618 eric.gadd@enron.com 2001-08-10
## 619 john.shafer@enron.com 2001-08-05
## 620 john.shafer@enron.com 2001-08-05
## 621 john.shafer@enron.com 2001-08-05
## 622 john.shafer@enron.com 2001-08-02
## 623 john.shafer@enron.com 2001-08-02
## 624 john.shafer@enron.com 2001-08-02
## 625 larry.f.campbell@enron.com 2001-07-31
## 626 larry.f.campbell@enron.com 2001-07-31
## 627 larry.f.campbell@enron.com 2001-07-31
## 628 larry.f.campbell@enron.com 2001-07-31
## 629 john.shafer@enron.com 2001-07-25
## 630 john.shafer@enron.com 2001-07-25
## 631 john.shafer@enron.com 2001-08-22
## 632 ron.matthews@enron.com 2001-08-21
## 633 ron.matthews@enron.com 2001-08-20
## 634 john.shafer@enron.com 2001-08-10
## 635 lorna.brennan@enron.com 2001-08-13
## 636 lorna.brennan@enron.com 2001-08-13
## 637 lorna.brennan@enron.com 2001-08-13
## 638 lorna.brennan@enron.com 2001-08-13
## 639 lorna.brennan@enron.com 2001-06-25
## 640 cynthia.boseman-harris@enron.com 2001-07-30
## 641 cynthia.boseman-harris@enron.com 2001-07-30
## 642 keith.petersen@enron.com 2001-08-03
## 643 keith.petersen@enron.com 2001-08-03
## 644 lorna.brennan@enron.com 2001-07-26
## 645 lorna.brennan@enron.com 2001-07-24
## 646 ronald.matthews@enron.com 2001-07-18
## 647 ronald.matthews@enron.com 2001-07-19
## 648 eric.gadd@enron.com 2002-02-15
## 649 susan.wadle@enron.com 2002-03-06
## 650 susan.wadle@enron.com 2002-03-06
## 651 janet.butler@enron.com 2002-02-27
## 652 ron.matthews@enron.com 2002-02-12
## 653 ron.matthews@enron.com 2002-02-12
## 654 maurice.gilbert@enron.com 2001-11-15
## 655 maurice.gilbert@enron.com 2001-11-15
## 656 audrey.robertson@enron.com 2001-11-01
## 657 michael.ratner@enron.com 2001-10-09
## 658 kent.miller@enron.com 2001-08-21
## 659 kent.miller@enron.com 2001-08-21
## 660 elberg.gelin@enron.com 2001-08-22
## 661 elberg.gelin@enron.com 2001-08-22
## 662 kimberly.watson@enron.com 2001-07-13
## 663 vera.jones@enron.com 2001-07-24
## 664 mansoor.abdmoulaie@enron.com 2001-06-01
## 665 mansoor.abdmoulaie@enron.com 2001-06-01
## 666 paul.gregory@enron.com 2001-07-03
## 667 david.roensch@enron.com 2001-07-06
## 668 eric.faucheaux@enron.com 2001-06-25
## 669 eric.faucheaux@enron.com 2001-06-25
## 670 kevin.hyatt@enron.com 2001-07-06
## 671 kevin.hyatt@enron.com 2001-07-06
## 672 kevin.hyatt@enron.com 2001-07-06
## 673 kevin.hyatt@enron.com 2001-07-06
## 674 kevin.hyatt@enron.com 2001-07-06
## 675 kevin.hyatt@enron.com 2001-07-06
## 676 sarabeth.smith@enron.com 2001-06-01
## 677 chuck.wilkinson@enron.com 2001-05-29
## 678 chuck.wilkinson@enron.com 2001-05-29
## 679 eugene.o gorman@enron.com 2001-03-26
## 680 eugene.o gorman@enron.com 2001-03-26
## 681 tammy.jaquet@enron.com 2001-06-06
## 682 sarabeth.smith@enron.com 2001-02-27
## 683 chuck.wilkinson@enron.com 2001-05-18
## 684 eric.gadd@enron.com 2001-05-14
## 685 eric.gadd@enron.com 2001-05-11
## 686 eric.gadd@enron.com 2001-05-11
## 687 max.brown@enron.com 2001-05-07
## 688 r..stark@enron.com 2001-05-15
## 689 mansoor.abdmoulaie@enron.com 2001-05-10
## 690 l..johnson@enron.com 2001-05-15
## 691 l..johnson@enron.com 2001-05-15
## 692 l..johnson@enron.com 2001-05-15
## 693 l..johnson@enron.com 2001-05-15
## 694 l..johnson@enron.com 2001-05-15
## 695 lindy.donoho@enron.com 2001-05-10
## 696 lindy.donoho@enron.com 2001-04-18
## 697 lindy.donoho@enron.com 2001-04-18
## 698 lindy.donoho@enron.com 2001-04-18
## 699 lindy.donoho@enron.com 2001-04-18
## 700 lindy.donoho@enron.com 2001-04-18
## 701 lindy.donoho@enron.com 2001-04-18
## 702 lindy.donoho@enron.com 2001-04-18
## 703 lindy.donoho@enron.com 2001-04-18
## 704 lindy.donoho@enron.com 2001-04-18
## 705 lindy.donoho@enron.com 2001-04-18
## 706 lindy.donoho@enron.com 2001-04-18
## 707 lindy.donoho@enron.com 2001-04-18
## 708 lindy.donoho@enron.com 2001-04-18
## 709 lindy.donoho@enron.com 2001-04-18
## 710 lindy.donoho@enron.com 2001-04-18
## 711 lindy.donoho@enron.com 2001-04-18
## 712 lindy.donoho@enron.com 2001-04-18
## 713 jeffery.fawcett@enron.com 2001-05-01
## 714 jeffery.fawcett@enron.com 2001-05-01
## 715 jeffery.fawcett@enron.com 2001-05-01
## 716 jeffery.fawcett@enron.com 2001-05-01
## 717 eric.faucheaux@enron.com 2001-03-27
## 718 eric.faucheaux@enron.com 2001-03-27
## 719 eric.faucheaux@enron.com 2001-03-27
## 720 eric.faucheaux@enron.com 2001-03-27
## 721 eric.faucheaux@enron.com 2001-03-27
## 722 eric.faucheaux@enron.com 2001-03-27
## 723 jeffery.fawcett@enron.com 2001-04-26
## 724 jeffery.fawcett@enron.com 2001-04-26
## 725 jeffery.fawcett@enron.com 2001-04-26
## 726 jeffery.fawcett@enron.com 2001-04-26
## 727 jeffery.fawcett@enron.com 2001-04-26
## 728 max.brown@enron.com 2001-04-19
## 729 l..johnson@enron.com 2001-04-19
## 730 l..johnson@enron.com 2001-04-19
## 731 l..johnson@enron.com 2001-04-19
## 732 l..johnson@enron.com 2001-04-19
## 733 l..johnson@enron.com 2001-04-19
## 734 mansoor.abdmoulaie@enron.com 2001-04-05
## 735 mansoor.abdmoulaie@enron.com 2001-04-05
## 736 mansoor.abdmoulaie@enron.com 2001-04-05
## 737 mansoor.abdmoulaie@enron.com 2001-04-05
## 738 jeffery.fawcett@enron.com 2001-03-07
## 739 jeffery.fawcett@enron.com 2001-03-07
## 740 jeffery.fawcett@enron.com 2001-03-07
## 741 jeffery.fawcett@enron.com 2001-03-07
## 742 gary.choquette@enron.com 2001-03-02
## 743 ben.asante@enron.com 2001-03-02
## 744 ben.asante@enron.com 2001-03-02
## 745 susan.scott@enron.com 2001-02-23
## 746 susan.scott@enron.com 2001-02-23
## 747 susan.scott@enron.com 2001-02-23
## 748 steven.harris@enron.com 2001-02-15
## 749 steven.harris@enron.com 2001-02-15
## 750 steven.harris@enron.com 2001-02-15
## 751 steven.harris@enron.com 2001-02-15
## 752 steven.harris@enron.com 2001-02-15
## 753 steven.harris@enron.com 2001-02-15
## 754 steven.harris@enron.com 2001-02-15
## 755 steven.harris@enron.com 2001-02-15
## 756 steven.harris@enron.com 2001-02-15
## 757 steven.harris@enron.com 2001-02-15
## 758 steven.harris@enron.com 2001-02-15
## 759 steven.harris@enron.com 2001-02-15
## 760 steven.harris@enron.com 2001-02-15
## 761 steven.harris@enron.com 2001-02-15
## 762 steven.harris@enron.com 2001-02-15
## 763 steven.harris@enron.com 2001-02-15
## 764 steven.harris@enron.com 2001-02-15
## 765 darrell.schoolcraft@enron.com 2001-02-22
## 766 jeffery.fawcett@enron.com 2001-01-24
## 767 jeffery.fawcett@enron.com 2001-01-24
## 768 jeffery.fawcett@enron.com 2001-01-24
## 769 jeffery.fawcett@enron.com 2001-01-24
## 770 ronald.matthews@enron.com 2001-01-25
## 771 ronald.matthews@enron.com 2001-01-25
## 772 ronald.matthews@enron.com 2001-01-25
## 773 ronald.matthews@enron.com 2001-01-25
## 774 ronald.matthews@enron.com 2001-01-25
## 775 ronald.matthews@enron.com 2001-01-25
## 776 james.centilli@enron.com 2001-01-30
## 777 james.centilli@enron.com 2001-01-30
## 778 james.centilli@enron.com 2001-01-30
## 779 james.centilli@enron.com 2001-01-30
## 780 james.centilli@enron.com 2001-01-30
## 781 james.centilli@enron.com 2001-01-30
## 782 jeffery.fawcett@enron.com 2001-02-02
## 783 jeffery.fawcett@enron.com 2001-02-02
## 784 jeffery.fawcett@enron.com 2001-02-02
## 785 jeffery.fawcett@enron.com 2001-02-02
## 786 jeffery.fawcett@enron.com 2001-02-02
## 787 jeffery.fawcett@enron.com 2001-02-02
## 788 ben.asante@enron.com 2001-02-06
## 789 ben.asante@enron.com 2001-02-06
## 790 ben.asante@enron.com 2001-02-06
## 791 ben.asante@enron.com 2001-02-06
## 792 lorraine.lindberg@enron.com 2001-02-06
## 793 james.centilli@enron.com 2001-02-14
## 794 james.centilli@enron.com 2001-02-14
## 795 james.centilli@enron.com 2001-02-14
## 796 james.centilli@enron.com 2001-02-14
## 797 kevin.hyatt@enron.com 2001-02-21
## 798 kevin.hyatt@enron.com 2001-02-21
## 799 kevin.hyatt@enron.com 2001-02-21
## 800 kevin.hyatt@enron.com 2001-02-21
## 801 kevin.hyatt@enron.com 2001-02-21
## 802 kevin.hyatt@enron.com 2001-02-21
## 803 kevin.hyatt@enron.com 2001-02-21
## 804 kevin.hyatt@enron.com 2001-02-21
## 805 kevin.hyatt@enron.com 2001-02-21
## 806 kevin.hyatt@enron.com 2001-02-21
## 807 kevin.hyatt@enron.com 2001-02-21
## 808 kevin.hyatt@enron.com 2001-02-21
## 809 kevin.hyatt@enron.com 2001-02-21
## 810 kevin.hyatt@enron.com 2001-02-21
## 811 kevin.hyatt@enron.com 2001-02-21
## 812 kevin.hyatt@enron.com 2001-02-21
## 813 kevin.hyatt@enron.com 2001-02-21
## 814 kevin.hyatt@enron.com 2001-02-21
## 815 kevin.hyatt@enron.com 2001-02-21
## 816 kevin.hyatt@enron.com 2001-02-21
## 817 kevin.hyatt@enron.com 2001-02-21
## 818 kevin.hyatt@enron.com 2001-02-21
## 819 kevin.hyatt@enron.com 2001-02-21
## 820 kevin.hyatt@enron.com 2001-02-21
## 821 kevin.hyatt@enron.com 2001-02-21
## 822 kevin.hyatt@enron.com 2001-02-21
## 823 kevin.hyatt@enron.com 2001-02-21
## 824 kevin.hyatt@enron.com 2001-02-21
## 825 kevin.hyatt@enron.com 2001-02-21
## 826 kevin.hyatt@enron.com 2001-02-21
## 827 kevin.hyatt@enron.com 2001-02-21
## 828 kevin.hyatt@enron.com 2001-02-21
## 829 kevin.hyatt@enron.com 2001-02-21
## 830 kevin.hyatt@enron.com 2001-02-21
## 831 kevin.hyatt@enron.com 2001-02-21
## 832 kevin.hyatt@enron.com 2001-02-21
## 833 kevin.hyatt@enron.com 2001-02-21
## 834 kevin.hyatt@enron.com 2001-02-21
## 835 kevin.hyatt@enron.com 2001-02-21
## 836 kevin.hyatt@enron.com 2001-02-21
## 837 kevin.hyatt@enron.com 2001-02-21
## 838 kevin.hyatt@enron.com 2001-02-21
## 839 kevin.hyatt@enron.com 2001-02-21
## 840 kevin.hyatt@enron.com 2001-02-21
## 841 kevin.hyatt@enron.com 2001-02-21
## 842 kevin.hyatt@enron.com 2001-02-21
## 843 kevin.hyatt@enron.com 2001-02-21
## 844 kevin.hyatt@enron.com 2001-02-21
## 845 kevin.hyatt@enron.com 2001-02-21
## 846 kevin.hyatt@enron.com 2001-02-21
## 847 kevin.hyatt@enron.com 2001-02-21
## 848 kevin.hyatt@enron.com 2001-02-21
## 849 kevin.hyatt@enron.com 2001-02-21
## 850 kevin.hyatt@enron.com 2001-02-21
## 851 kevin.hyatt@enron.com 2001-02-21
## 852 kevin.hyatt@enron.com 2001-02-21
## 853 kevin.hyatt@enron.com 2001-02-21
## 854 kevin.hyatt@enron.com 2001-02-21
## 855 kevin.hyatt@enron.com 2001-02-21
## 856 kevin.hyatt@enron.com 2001-02-21
## 857 kevin.hyatt@enron.com 2001-02-21
## 858 kevin.hyatt@enron.com 2001-02-21
## 859 kevin.hyatt@enron.com 2001-02-21
## 860 kevin.hyatt@enron.com 2001-12-04
## 861 kevin.hyatt@enron.com 2001-06-12
## 862 kevin.hyatt@enron.com 2001-06-05
## 863 kevin.hyatt@enron.com 2001-04-16
## 864 kevin.hyatt@enron.com 2001-11-08
## 865 eric.gadd@enron.com 2001-11-28
## 866 eric.gadd@enron.com 2001-11-27
## 867 susan.wadle@enron.com 2001-11-20
## 868 a..howard@enron.com 2001-11-19
## 869 eric.gadd@enron.com 2001-11-16
## 870 eric.gadd@enron.com 2001-11-16
## 871 ron.matthews@enron.com 2001-11-13
## 872 v.dickerson@enron.com 2001-11-09
## 873 susan.wadle@enron.com 2001-11-07
## 874 eric.gadd@enron.com 2001-10-30
## 875 eric.gadd@enron.com 2001-10-30
## 876 eric.gadd@enron.com 2001-10-30
## 877 john.laborde@enron.com 2001-10-23
## 878 reynaldo.garcia@enron.com 2001-10-22
## 879 blair.lichtenwalter@enron.com 2001-10-17
## 880 blair.lichtenwalter@enron.com 2001-10-17
## 881 shelley.corman@enron.com 2002-03-22
## 882 janet.butler@enron.com 2002-03-22
## 883 susan.wadle@enron.com 2002-03-19
## 884 susan.wadle@enron.com 2002-03-19
## 885 eric.gadd@enron.com 2002-03-08
## 886 ron.matthews@enron.com 2002-03-08
## 887 eric.gadd@enron.com 2002-02-28
## 888 eric.gadd@enron.com 2002-02-28
## 889 michael.ratner@enron.com 2002-02-07
## 890 jan.moore@enron.com 2001-12-13
## 891 jan.moore@enron.com 2001-12-13
## 892 jan.moore@enron.com 2001-12-13
## 893 kevin.hyatt@enron.com 2001-11-28
## 894 kevin.hyatt@enron.com 2001-11-28
## 895 kevin.hyatt@enron.com 2001-11-27
## 896 kevin.hyatt@enron.com 2001-11-27
## 897 kevin.hyatt@enron.com 2001-11-27
## 898 kevin.hyatt@enron.com 2001-11-27
## 899 kevin.hyatt@enron.com 2001-11-27
## 900 kevin.hyatt@enron.com 2001-11-26
## 901 kevin.hyatt@enron.com 2001-11-26
## 902 kevin.hyatt@enron.com 2001-11-26
## 903 kevin.hyatt@enron.com 2001-11-26
## 904 kevin.hyatt@enron.com 2001-11-26
## 905 kevin.hyatt@enron.com 2001-11-26
## 906 kevin.hyatt@enron.com 2001-11-26
## 907 kevin.hyatt@enron.com 2001-11-26
## 908 kevin.hyatt@enron.com 2001-11-26
## 909 kevin.hyatt@enron.com 2001-11-26
## 910 kevin.hyatt@enron.com 2001-11-26
## 911 kevin.hyatt@enron.com 2001-11-26
## 912 kevin.hyatt@enron.com 2001-11-26
## 913 kevin.hyatt@enron.com 2001-11-26
## 914 kevin.hyatt@enron.com 2001-11-19
## 915 kevin.hyatt@enron.com 2001-11-19
## 916 kevin.hyatt@enron.com 2001-11-19
## 917 kevin.hyatt@enron.com 2001-11-19
## 918 kevin.hyatt@enron.com 2001-11-19
## 919 kevin.hyatt@enron.com 2001-11-19
## 920 kevin.hyatt@enron.com 2001-11-19
## 921 kevin.hyatt@enron.com 2001-11-19
## 922 kevin.hyatt@enron.com 2001-11-19
## 923 kevin.hyatt@enron.com 2001-11-19
## 924 kevin.hyatt@enron.com 2001-11-19
## 925 kevin.hyatt@enron.com 2001-11-19
## 926 kevin.hyatt@enron.com 2001-11-19
## 927 kevin.hyatt@enron.com 2001-11-15
## 928 kevin.hyatt@enron.com 2001-11-15
## 929 kevin.hyatt@enron.com 2001-11-15
## 930 kevin.hyatt@enron.com 2001-11-14
## 931 kevin.hyatt@enron.com 2001-11-14
## 932 kevin.hyatt@enron.com 2001-11-14
## 933 kevin.hyatt@enron.com 2001-11-14
## 934 kevin.hyatt@enron.com 2001-11-14
## 935 kevin.hyatt@enron.com 2001-11-14
## 936 kevin.hyatt@enron.com 2001-11-14
## 937 kevin.hyatt@enron.com 2001-11-14
## 938 kevin.hyatt@enron.com 2001-11-14
## 939 kevin.hyatt@enron.com 2001-11-14
## 940 kevin.hyatt@enron.com 2001-11-14
## 941 kevin.hyatt@enron.com 2001-11-14
## 942 kevin.hyatt@enron.com 2001-11-14
## 943 kevin.hyatt@enron.com 2001-11-14
## 944 kevin.hyatt@enron.com 2001-11-14
## 945 kevin.hyatt@enron.com 2001-11-14
## 946 kevin.hyatt@enron.com 2001-11-14
## 947 kevin.hyatt@enron.com 2001-11-14
## 948 kevin.hyatt@enron.com 2001-11-14
## 949 kevin.hyatt@enron.com 2001-11-14
## 950 kevin.hyatt@enron.com 2001-11-13
## 951 kevin.hyatt@enron.com 2001-11-13
## 952 kevin.hyatt@enron.com 2001-11-13
## 953 kevin.hyatt@enron.com 2001-11-13
## 954 kevin.hyatt@enron.com 2001-11-13
## 955 kevin.hyatt@enron.com 2001-11-13
## 956 kevin.hyatt@enron.com 2001-11-13
## 957 kevin.hyatt@enron.com 2001-11-13
## 958 kevin.hyatt@enron.com 2001-11-13
## 959 kevin.hyatt@enron.com 2001-11-08
## 960 kevin.hyatt@enron.com 2001-11-08
## 961 kevin.hyatt@enron.com 2001-11-08
## 962 kevin.hyatt@enron.com 2001-11-08
## 963 kevin.hyatt@enron.com 2001-11-08
## 964 kevin.hyatt@enron.com 2001-11-08
## 965 kevin.hyatt@enron.com 2001-11-08
## 966 kevin.hyatt@enron.com 2001-11-08
## 967 kevin.hyatt@enron.com 2001-11-08
## 968 kevin.hyatt@enron.com 2001-11-08
## 969 kevin.hyatt@enron.com 2001-11-08
## 970 kevin.hyatt@enron.com 2001-11-08
## 971 kevin.hyatt@enron.com 2001-11-08
## 972 kevin.hyatt@enron.com 2001-11-08
## 973 kevin.hyatt@enron.com 2001-11-08
## 974 kevin.hyatt@enron.com 2001-11-08
## 975 kevin.hyatt@enron.com 2001-11-08
## 976 kevin.hyatt@enron.com 2001-11-08
## 977 kevin.hyatt@enron.com 2001-11-08
## 978 kevin.hyatt@enron.com 2001-11-08
## 979 kevin.hyatt@enron.com 2001-11-07
## 980 kevin.hyatt@enron.com 2001-11-07
## 981 kevin.hyatt@enron.com 2001-11-07
## 982 kevin.hyatt@enron.com 2001-11-07
## 983 kevin.hyatt@enron.com 2001-11-07
## 984 kevin.hyatt@enron.com 2001-11-07
## 985 kevin.hyatt@enron.com 2001-11-07
## 986 kevin.hyatt@enron.com 2001-11-07
## 987 kevin.hyatt@enron.com 2001-11-07
## 988 kevin.hyatt@enron.com 2001-11-07
## 989 kevin.hyatt@enron.com 2001-11-07
## 990 kevin.hyatt@enron.com 2001-11-07
## 991 kevin.hyatt@enron.com 2001-11-07
## 992 kevin.hyatt@enron.com 2001-11-07
## 993 kevin.hyatt@enron.com 2001-11-07
## 994 kevin.hyatt@enron.com 2001-11-07
## 995 kevin.hyatt@enron.com 2001-11-07
## 996 kevin.hyatt@enron.com 2001-11-07
## 997 kevin.hyatt@enron.com 2001-11-07
## 998 kevin.hyatt@enron.com 2001-11-07
## 999 kevin.hyatt@enron.com 2001-11-07
## 1000 kevin.hyatt@enron.com 2001-11-07
## 1001 kevin.hyatt@enron.com 2001-11-07
## 1002 kevin.hyatt@enron.com 2001-11-07
## 1003 kevin.hyatt@enron.com 2001-11-07
## 1004 kevin.hyatt@enron.com 2001-11-07
## 1005 kevin.hyatt@enron.com 2001-11-07
## 1006 kevin.hyatt@enron.com 2001-11-07
## 1007 kevin.hyatt@enron.com 2001-11-07
## 1008 kevin.hyatt@enron.com 2001-11-07
## 1009 kevin.hyatt@enron.com 2001-11-07
## 1010 kevin.hyatt@enron.com 2001-11-07
## 1011 kevin.hyatt@enron.com 2001-11-07
## 1012 kevin.hyatt@enron.com 2001-11-07
## 1013 kevin.hyatt@enron.com 2001-11-07
## 1014 kevin.hyatt@enron.com 2001-11-07
## 1015 kevin.hyatt@enron.com 2001-11-07
## 1016 kevin.hyatt@enron.com 2001-11-05
## 1017 kevin.hyatt@enron.com 2001-11-02
## 1018 kevin.hyatt@enron.com 2001-11-02
## 1019 kevin.hyatt@enron.com 2001-11-02
## 1020 kevin.hyatt@enron.com 2001-11-02
## 1021 kevin.hyatt@enron.com 2001-11-02
## 1022 kevin.hyatt@enron.com 2001-11-02
## 1023 kevin.hyatt@enron.com 2001-11-02
## 1024 kevin.hyatt@enron.com 2001-11-02
## 1025 kevin.hyatt@enron.com 2001-11-02
## 1026 kevin.hyatt@enron.com 2001-11-02
## 1027 kevin.hyatt@enron.com 2001-11-02
## 1028 kevin.hyatt@enron.com 2001-11-02
## 1029 kevin.hyatt@enron.com 2001-11-02
## 1030 kevin.hyatt@enron.com 2001-11-02
## 1031 kevin.hyatt@enron.com 2001-11-01
## 1032 kevin.hyatt@enron.com 2001-11-01
## 1033 kevin.hyatt@enron.com 2001-10-31
## 1034 kevin.hyatt@enron.com 2001-10-26
## 1035 kevin.hyatt@enron.com 2001-10-26
## 1036 kevin.hyatt@enron.com 2001-10-26
## 1037 kevin.hyatt@enron.com 2001-10-26
## 1038 kevin.hyatt@enron.com 2001-10-26
## 1039 kevin.hyatt@enron.com 2001-10-26
## 1040 kevin.hyatt@enron.com 2001-10-26
## 1041 kevin.hyatt@enron.com 2001-10-26
## 1042 kevin.hyatt@enron.com 2001-10-26
## 1043 kevin.hyatt@enron.com 2001-10-26
## 1044 kevin.hyatt@enron.com 2001-10-26
## 1045 kevin.hyatt@enron.com 2001-10-26
## 1046 kevin.hyatt@enron.com 2001-10-26
## 1047 kevin.hyatt@enron.com 2001-10-26
## 1048 kevin.hyatt@enron.com 2001-10-26
## 1049 kevin.hyatt@enron.com 2001-10-26
## 1050 kevin.hyatt@enron.com 2001-10-26
## 1051 kevin.hyatt@enron.com 2001-10-25
## 1052 kevin.hyatt@enron.com 2001-10-25
## 1053 kevin.hyatt@enron.com 2001-10-25
## 1054 kevin.hyatt@enron.com 2001-10-25
## 1055 kevin.hyatt@enron.com 2001-10-25
## 1056 kevin.hyatt@enron.com 2001-10-24
## 1057 kevin.hyatt@enron.com 2001-10-24
## 1058 kevin.hyatt@enron.com 2001-10-24
## 1059 kevin.hyatt@enron.com 2001-10-24
## 1060 kevin.hyatt@enron.com 2001-10-24
## 1061 kevin.hyatt@enron.com 2001-10-24
## 1062 kevin.hyatt@enron.com 2001-10-24
## 1063 kevin.hyatt@enron.com 2001-10-24
## 1064 kevin.hyatt@enron.com 2001-10-23
## 1065 kevin.hyatt@enron.com 2001-10-23
## 1066 kevin.hyatt@enron.com 2001-10-22
## 1067 kevin.hyatt@enron.com 2001-10-22
## 1068 kevin.hyatt@enron.com 2001-10-22
## 1069 kevin.hyatt@enron.com 2001-10-22
## 1070 kevin.hyatt@enron.com 2001-10-22
## 1071 kevin.hyatt@enron.com 2002-03-22
## 1072 kevin.hyatt@enron.com 2002-03-22
## 1073 kevin.hyatt@enron.com 2002-03-22
## 1074 kevin.hyatt@enron.com 2002-03-22
## 1075 kevin.hyatt@enron.com 2002-03-22
## 1076 kevin.hyatt@enron.com 2002-03-22
## 1077 kevin.hyatt@enron.com 2002-03-22
## 1078 kevin.hyatt@enron.com 2002-03-22
## 1079 kevin.hyatt@enron.com 2002-03-22
## 1080 kevin.hyatt@enron.com 2002-03-22
## 1081 kevin.hyatt@enron.com 2002-03-22
## 1082 kevin.hyatt@enron.com 2002-03-22
## 1083 kevin.hyatt@enron.com 2002-03-18
## 1084 kevin.hyatt@enron.com 2002-03-18
## 1085 kevin.hyatt@enron.com 2002-03-18
## 1086 kevin.hyatt@enron.com 2002-03-18
## 1087 kevin.hyatt@enron.com 2002-03-15
## 1088 kevin.hyatt@enron.com 2002-03-15
## 1089 kevin.hyatt@enron.com 2002-03-15
## 1090 kevin.hyatt@enron.com 2002-03-15
## 1091 kevin.hyatt@enron.com 2002-03-15
## 1092 kevin.hyatt@enron.com 2002-03-14
## 1093 kevin.hyatt@enron.com 2002-03-14
## 1094 kevin.hyatt@enron.com 2002-03-14
## 1095 kevin.hyatt@enron.com 2002-03-14
## 1096 kevin.hyatt@enron.com 2002-03-14
## 1097 kevin.hyatt@enron.com 2002-03-08
## 1098 kevin.hyatt@enron.com 2002-03-08
## 1099 kevin.hyatt@enron.com 2002-03-08
## 1100 kevin.hyatt@enron.com 2002-03-08
## 1101 kevin.hyatt@enron.com 2002-03-08
## 1102 kevin.hyatt@enron.com 2002-03-08
## 1103 kevin.hyatt@enron.com 2002-03-08
## 1104 kevin.hyatt@enron.com 2002-03-08
## 1105 kevin.hyatt@enron.com 2002-03-08
## 1106 kevin.hyatt@enron.com 2002-03-08
## 1107 kevin.hyatt@enron.com 2002-03-08
## 1108 kevin.hyatt@enron.com 2002-03-08
## 1109 kevin.hyatt@enron.com 2002-03-08
## 1110 kevin.hyatt@enron.com 2002-03-08
## 1111 kevin.hyatt@enron.com 2002-03-08
## 1112 kevin.hyatt@enron.com 2002-03-08
## 1113 kevin.hyatt@enron.com 2002-03-08
## 1114 kevin.hyatt@enron.com 2002-03-08
## 1115 kevin.hyatt@enron.com 2002-03-08
## 1116 kevin.hyatt@enron.com 2002-03-08
## 1117 kevin.hyatt@enron.com 2002-03-08
## 1118 kevin.hyatt@enron.com 2002-03-08
## 1119 kevin.hyatt@enron.com 2002-03-08
## 1120 kevin.hyatt@enron.com 2002-03-07
## 1121 kevin.hyatt@enron.com 2002-03-07
## 1122 kevin.hyatt@enron.com 2002-03-07
## 1123 kevin.hyatt@enron.com 2002-03-07
## 1124 kevin.hyatt@enron.com 2002-03-06
## 1125 kevin.hyatt@enron.com 2002-03-05
## 1126 kevin.hyatt@enron.com 2002-03-05
## 1127 kevin.hyatt@enron.com 2002-03-05
## 1128 kevin.hyatt@enron.com 2002-03-05
## 1129 kevin.hyatt@enron.com 2002-03-05
## 1130 kevin.hyatt@enron.com 2002-03-04
## 1131 kevin.hyatt@enron.com 2002-03-04
## 1132 kevin.hyatt@enron.com 2002-03-04
## 1133 kevin.hyatt@enron.com 2002-03-04
## 1134 kevin.hyatt@enron.com 2002-03-04
## 1135 kevin.hyatt@enron.com 2002-03-04
## 1136 kevin.hyatt@enron.com 2002-03-04
## 1137 kevin.hyatt@enron.com 2002-03-04
## 1138 kevin.hyatt@enron.com 2002-03-04
## 1139 kevin.hyatt@enron.com 2002-03-01
## 1140 kevin.hyatt@enron.com 2002-03-01
## 1141 kevin.hyatt@enron.com 2002-03-01
## 1142 kevin.hyatt@enron.com 2002-03-01
## 1143 kevin.hyatt@enron.com 2002-03-01
## 1144 kevin.hyatt@enron.com 2002-03-01
## 1145 kevin.hyatt@enron.com 2002-03-01
## 1146 kevin.hyatt@enron.com 2002-03-01
## 1147 kevin.hyatt@enron.com 2002-03-01
## 1148 kevin.hyatt@enron.com 2002-03-01
## 1149 kevin.hyatt@enron.com 2002-03-01
## 1150 kevin.hyatt@enron.com 2002-03-01
## 1151 kevin.hyatt@enron.com 2002-03-01
## 1152 kevin.hyatt@enron.com 2002-03-01
## 1153 kevin.hyatt@enron.com 2002-03-01
## 1154 kevin.hyatt@enron.com 2002-03-01
## 1155 kevin.hyatt@enron.com 2002-03-01
## 1156 kevin.hyatt@enron.com 2002-03-01
## 1157 kevin.hyatt@enron.com 2002-03-01
## 1158 kevin.hyatt@enron.com 2002-03-01
## 1159 kevin.hyatt@enron.com 2002-03-01
## 1160 kevin.hyatt@enron.com 2002-03-01
## 1161 kevin.hyatt@enron.com 2002-02-28
## 1162 kevin.hyatt@enron.com 2002-02-28
## 1163 kevin.hyatt@enron.com 2002-02-28
## 1164 kevin.hyatt@enron.com 2002-02-28
## 1165 kevin.hyatt@enron.com 2002-02-27
## 1166 kevin.hyatt@enron.com 2002-02-27
## 1167 kevin.hyatt@enron.com 2002-02-27
## 1168 kevin.hyatt@enron.com 2002-02-27
## 1169 kevin.hyatt@enron.com 2002-02-27
## 1170 kevin.hyatt@enron.com 2002-02-27
## 1171 kevin.hyatt@enron.com 2002-02-27
## 1172 kevin.hyatt@enron.com 2002-02-27
## 1173 kevin.hyatt@enron.com 2002-02-27
## 1174 kevin.hyatt@enron.com 2002-02-27
## 1175 kevin.hyatt@enron.com 2002-02-27
## 1176 kevin.hyatt@enron.com 2002-02-27
## 1177 kevin.hyatt@enron.com 2002-02-26
## 1178 kevin.hyatt@enron.com 2002-02-26
## 1179 kevin.hyatt@enron.com 2002-02-26
## 1180 kevin.hyatt@enron.com 2002-02-26
## 1181 kevin.hyatt@enron.com 2002-02-26
## 1182 kevin.hyatt@enron.com 2002-02-25
## 1183 kevin.hyatt@enron.com 2002-02-25
## 1184 kevin.hyatt@enron.com 2002-02-25
## 1185 kevin.hyatt@enron.com 2002-02-21
## 1186 kevin.hyatt@enron.com 2002-02-21
## 1187 kevin.hyatt@enron.com 2002-02-21
## 1188 kevin.hyatt@enron.com 2002-02-21
## 1189 kevin.hyatt@enron.com 2002-02-21
## 1190 kevin.hyatt@enron.com 2002-02-21
## 1191 kevin.hyatt@enron.com 2002-02-21
## 1192 kevin.hyatt@enron.com 2002-02-20
## 1193 kevin.hyatt@enron.com 2002-02-20
## 1194 kevin.hyatt@enron.com 2002-02-20
## 1195 kevin.hyatt@enron.com 2002-02-20
## 1196 kevin.hyatt@enron.com 2002-02-20
## 1197 kevin.hyatt@enron.com 2002-02-20
## 1198 kevin.hyatt@enron.com 2002-02-20
## 1199 kevin.hyatt@enron.com 2002-02-20
## 1200 kevin.hyatt@enron.com 2002-02-20
## 1201 kevin.hyatt@enron.com 2002-02-19
## 1202 kevin.hyatt@enron.com 2002-02-19
## 1203 kevin.hyatt@enron.com 2002-02-19
## 1204 kevin.hyatt@enron.com 2002-02-19
## 1205 kevin.hyatt@enron.com 2002-02-19
## 1206 kevin.hyatt@enron.com 2002-02-19
## 1207 kevin.hyatt@enron.com 2002-02-19
## 1208 kevin.hyatt@enron.com 2002-02-19
## 1209 kevin.hyatt@enron.com 2002-02-19
## 1210 kevin.hyatt@enron.com 2002-02-19
## 1211 kevin.hyatt@enron.com 2002-02-19
## 1212 kevin.hyatt@enron.com 2002-02-19
## 1213 kevin.hyatt@enron.com 2002-02-19
## 1214 kevin.hyatt@enron.com 2002-02-19
## 1215 kevin.hyatt@enron.com 2002-02-19
## 1216 kevin.hyatt@enron.com 2002-02-19
## 1217 kevin.hyatt@enron.com 2002-02-19
## 1218 kevin.hyatt@enron.com 2002-02-19
## 1219 kevin.hyatt@enron.com 2002-02-19
## 1220 kevin.hyatt@enron.com 2002-02-19
## 1221 kevin.hyatt@enron.com 2002-02-19
## 1222 kevin.hyatt@enron.com 2002-02-15
## 1223 kevin.hyatt@enron.com 2002-02-15
## 1224 kevin.hyatt@enron.com 2002-02-15
## 1225 kevin.hyatt@enron.com 2002-02-15
## 1226 kevin.hyatt@enron.com 2002-02-15
## 1227 kevin.hyatt@enron.com 2002-02-15
## 1228 kevin.hyatt@enron.com 2002-02-15
## 1229 kevin.hyatt@enron.com 2002-02-15
## 1230 kevin.hyatt@enron.com 2002-02-15
## 1231 kevin.hyatt@enron.com 2002-02-13
## 1232 kevin.hyatt@enron.com 2002-02-13
## 1233 kevin.hyatt@enron.com 2002-02-13
## 1234 kevin.hyatt@enron.com 2002-02-12
## 1235 kevin.hyatt@enron.com 2002-02-12
## 1236 kevin.hyatt@enron.com 2002-02-11
## 1237 kevin.hyatt@enron.com 2002-02-11
## 1238 kevin.hyatt@enron.com 2002-02-11
## 1239 kevin.hyatt@enron.com 2002-02-11
## 1240 kevin.hyatt@enron.com 2002-02-11
## 1241 kevin.hyatt@enron.com 2002-02-11
## 1242 kevin.hyatt@enron.com 2002-02-11
## 1243 kevin.hyatt@enron.com 2002-02-11
## 1244 kevin.hyatt@enron.com 2002-02-11
## 1245 kevin.hyatt@enron.com 2002-02-11
## 1246 kevin.hyatt@enron.com 2002-02-11
## 1247 kevin.hyatt@enron.com 2002-02-11
## 1248 kevin.hyatt@enron.com 2002-02-11
## 1249 kevin.hyatt@enron.com 2002-02-11
## 1250 kevin.hyatt@enron.com 2002-02-11
## 1251 kevin.hyatt@enron.com 2002-02-11
## 1252 kevin.hyatt@enron.com 2002-02-11
## 1253 kevin.hyatt@enron.com 2002-02-11
## 1254 kevin.hyatt@enron.com 2002-02-11
## 1255 kevin.hyatt@enron.com 2002-02-11
## 1256 kevin.hyatt@enron.com 2002-02-11
## 1257 kevin.hyatt@enron.com 2002-02-11
## 1258 kevin.hyatt@enron.com 2002-02-11
## 1259 kevin.hyatt@enron.com 2002-02-11
## 1260 kevin.hyatt@enron.com 2002-02-11
## 1261 kevin.hyatt@enron.com 2002-02-11
## 1262 kevin.hyatt@enron.com 2002-02-11
## 1263 kevin.hyatt@enron.com 2002-02-11
## 1264 kevin.hyatt@enron.com 2002-02-11
## 1265 kevin.hyatt@enron.com 2002-02-11
## 1266 kevin.hyatt@enron.com 2002-02-11
## 1267 kevin.hyatt@enron.com 2002-02-11
## 1268 kevin.hyatt@enron.com 2002-02-11
## 1269 kevin.hyatt@enron.com 2002-02-11
## 1270 kevin.hyatt@enron.com 2002-02-08
## 1271 kevin.hyatt@enron.com 2002-02-08
## 1272 kevin.hyatt@enron.com 2002-02-08
## 1273 kevin.hyatt@enron.com 2002-02-08
## 1274 kevin.hyatt@enron.com 2002-02-08
## 1275 kevin.hyatt@enron.com 2002-02-08
## 1276 kevin.hyatt@enron.com 2002-02-05
## 1277 kevin.hyatt@enron.com 2002-02-05
## 1278 kevin.hyatt@enron.com 2002-02-05
## 1279 kevin.hyatt@enron.com 2002-02-05
## 1280 kevin.hyatt@enron.com 2002-02-05
## 1281 kevin.hyatt@enron.com 2002-02-05
## 1282 kevin.hyatt@enron.com 2002-02-05
## 1283 kevin.hyatt@enron.com 2002-02-05
## 1284 kevin.hyatt@enron.com 2002-02-05
## 1285 kevin.hyatt@enron.com 2002-02-05
## 1286 kevin.hyatt@enron.com 2002-02-05
## 1287 kevin.hyatt@enron.com 2002-02-05
## 1288 kevin.hyatt@enron.com 2002-02-05
## 1289 kevin.hyatt@enron.com 2002-02-05
## 1290 kevin.hyatt@enron.com 2002-02-04
## 1291 kevin.hyatt@enron.com 2002-02-01
## 1292 kevin.hyatt@enron.com 2002-01-31
## 1293 kevin.hyatt@enron.com 2002-01-31
## 1294 kevin.hyatt@enron.com 2002-01-31
## 1295 kevin.hyatt@enron.com 2002-01-31
## 1296 kevin.hyatt@enron.com 2002-01-31
## 1297 kevin.hyatt@enron.com 2002-01-31
## 1298 kevin.hyatt@enron.com 2002-01-31
## 1299 kevin.hyatt@enron.com 2002-01-31
## 1300 kevin.hyatt@enron.com 2002-01-31
## 1301 kevin.hyatt@enron.com 2002-01-31
## 1302 kevin.hyatt@enron.com 2002-01-31
## 1303 kevin.hyatt@enron.com 2002-01-25
## 1304 kevin.hyatt@enron.com 2002-01-24
## 1305 kevin.hyatt@enron.com 2002-01-24
## 1306 kevin.hyatt@enron.com 2002-01-24
## 1307 kevin.hyatt@enron.com 2002-01-24
## 1308 kevin.hyatt@enron.com 2002-01-24
## 1309 kevin.hyatt@enron.com 2002-01-23
## 1310 kevin.hyatt@enron.com 2002-01-23
## 1311 kevin.hyatt@enron.com 2002-01-22
## 1312 kevin.hyatt@enron.com 2002-01-22
## 1313 kevin.hyatt@enron.com 2002-01-22
## 1314 kevin.hyatt@enron.com 2002-01-22
## 1315 kevin.hyatt@enron.com 2002-01-17
## 1316 kevin.hyatt@enron.com 2002-01-16
## 1317 kevin.hyatt@enron.com 2002-01-16
## 1318 kevin.hyatt@enron.com 2002-01-16
## 1319 kevin.hyatt@enron.com 2002-01-16
## 1320 kevin.hyatt@enron.com 2002-01-16
## 1321 kevin.hyatt@enron.com 2002-01-16
## 1322 kevin.hyatt@enron.com 2002-01-16
## 1323 kevin.hyatt@enron.com 2002-01-16
## 1324 kevin.hyatt@enron.com 2002-01-16
## 1325 kevin.hyatt@enron.com 2002-01-16
## 1326 kevin.hyatt@enron.com 2002-01-16
## 1327 kevin.hyatt@enron.com 2002-01-16
## 1328 kevin.hyatt@enron.com 2002-01-16
## 1329 kevin.hyatt@enron.com 2002-01-16
## 1330 kevin.hyatt@enron.com 2002-01-16
## 1331 kevin.hyatt@enron.com 2002-01-16
## 1332 kevin.hyatt@enron.com 2002-01-16
## 1333 kevin.hyatt@enron.com 2002-01-14
## 1334 kevin.hyatt@enron.com 2002-01-14
## 1335 kevin.hyatt@enron.com 2002-01-14
## 1336 kevin.hyatt@enron.com 2002-01-14
## 1337 kevin.hyatt@enron.com 2002-01-14
## 1338 kevin.hyatt@enron.com 2002-01-14
## 1339 kevin.hyatt@enron.com 2002-01-14
## 1340 kevin.hyatt@enron.com 2002-01-14
## 1341 kevin.hyatt@enron.com 2002-01-14
## 1342 kevin.hyatt@enron.com 2002-01-14
## 1343 kevin.hyatt@enron.com 2002-01-14
## 1344 kevin.hyatt@enron.com 2002-01-14
## 1345 kevin.hyatt@enron.com 2002-01-14
## 1346 kevin.hyatt@enron.com 2002-01-14
## 1347 kevin.hyatt@enron.com 2002-01-14
## 1348 kevin.hyatt@enron.com 2002-01-14
## 1349 kevin.hyatt@enron.com 2002-01-14
## 1350 kevin.hyatt@enron.com 2002-01-14
## 1351 kevin.hyatt@enron.com 2002-01-14
## 1352 kevin.hyatt@enron.com 2002-01-14
## 1353 kevin.hyatt@enron.com 2002-01-14
## 1354 kevin.hyatt@enron.com 2002-01-14
## 1355 kevin.hyatt@enron.com 2002-01-14
## 1356 kevin.hyatt@enron.com 2002-01-14
## 1357 kevin.hyatt@enron.com 2002-01-14
## 1358 kevin.hyatt@enron.com 2002-01-14
## 1359 kevin.hyatt@enron.com 2002-01-14
## 1360 kevin.hyatt@enron.com 2002-01-14
## 1361 kevin.hyatt@enron.com 2002-01-11
## 1362 kevin.hyatt@enron.com 2002-01-11
## 1363 kevin.hyatt@enron.com 2001-12-14
## 1364 kevin.hyatt@enron.com 2001-12-12
## 1365 kevin.hyatt@enron.com 2001-12-11
## 1366 kevin.hyatt@enron.com 2001-12-10
## 1367 kevin.hyatt@enron.com 2001-12-10
## 1368 michelle.foust@enron.com 2001-11-19
## 1369 jesse.morris@enron.com 2001-11-16
## 1370 lorna.brennan@enron.com 2001-11-19
## 1371 lorna.brennan@enron.com 2001-11-19
## 1372 lorna.brennan@enron.com 2001-11-19
## 1373 lorna.brennan@enron.com 2001-11-19
## 1374 lorna.brennan@enron.com 2001-11-19
## 1375 jesse.morris@enron.com 2001-11-19
## 1376 susan.wadle@enron.com 2001-11-14
## 1377 lorna.brennan@enron.com 2001-11-14
## 1378 lorna.brennan@enron.com 2001-11-14
## 1379 lorna.brennan@enron.com 2001-11-14
## 1380 lorna.brennan@enron.com 2001-11-14
## 1381 lorna.brennan@enron.com 2001-11-14
## 1382 exchange.administrator@enron.com 2001-11-15
## 1383 exchange.administrator@enron.com 2001-11-18
## 1384 exchange.administrator@enron.com 2001-11-17
## 1385 exchange.administrator@enron.com 2001-11-16
## 1386 mansoor.abdmoulaie@enron.com 2001-04-10
## 1387 bob.burleson@enron.com 2001-04-02
## 1388 mansoor.abdmoulaie@enron.com 2001-03-27
## 1389 mansoor.abdmoulaie@enron.com 2001-03-27
## 1390 mansoor.abdmoulaie@enron.com 2001-02-22
## 1391 mansoor.abdmoulaie@enron.com 2001-02-22
## 1392 mansoor.abdmoulaie@enron.com 2001-02-22
## 1393 rich.jolly@enron.com 2001-02-23
## 1394 rich.jolly@enron.com 2001-02-23
## 1395 rich.jolly@enron.com 2001-01-29
## 1396 rich.jolly@enron.com 2001-02-07
## 1397 glen.hass@enron.com 2001-08-09
## 1398 glen.hass@enron.com 2001-08-09
## 1399 glen.hass@enron.com 2001-08-09
## 1400 glen.hass@enron.com 2001-08-09
## 1401 lorna.brennan@enron.com 2001-08-08
## 1402 lorna.brennan@enron.com 2001-08-08
## 1403 lorna.brennan@enron.com 2001-08-08
## 1404 lorna.brennan@enron.com 2001-08-08
## 1405 lorna.brennan@enron.com 2001-08-03
## 1406 lorna.brennan@enron.com 2001-08-03
## 1407 lorna.brennan@enron.com 2001-08-03
## 1408 lorna.brennan@enron.com 2001-08-03
## 1409 kimberly.watson@enron.com 2001-08-03
## 1410 lorna.brennan@enron.com 2001-06-06
## 1411 lorna.brennan@enron.com 2001-06-06
## 1412 lorna.brennan@enron.com 2001-06-06
## 1413 lorna.brennan@enron.com 2001-06-06
## 1414 jeffery.fawcett@enron.com 2001-06-04
## 1415 jeffery.fawcett@enron.com 2001-06-04
## 1416 jeffery.fawcett@enron.com 2001-06-04
## 1417 exchange.administrator@enron.com 2001-11-27
## 1418 geneva.davis@enron.com 2001-11-16
## 1419 susan.wadle@enron.com 2001-11-27
## 1420 john.millar@enron.com 2001-05-24
## 1421 john.millar@enron.com 2001-05-24
## 1422 eric.faucheaux@enron.com 2001-04-09
## 1423 mansoor.abdmoulaie@enron.com 2001-04-03
## 1424 jeffery.fawcett@enron.com 2001-03-30
## 1425 jeffery.fawcett@enron.com 2001-03-30
## 1426 jeffery.fawcett@enron.com 2001-03-30
## 1427 jeffery.fawcett@enron.com 2001-03-30
## 1428 jeffery.fawcett@enron.com 2001-03-30
## 1429 jeffery.fawcett@enron.com 2001-03-30
## 1430 arnie.bailey@enron.com 2001-03-09
## 1431 arnie.bailey@enron.com 2001-03-09
## 1432 arnie.bailey@enron.com 2001-03-09
## 1433 arnie.bailey@enron.com 2001-03-09
## 1434 marc.pana@enron.com 2001-03-20
## 1435 jeffery.fawcett@enron.com 2001-02-06
## 1436 jeffery.fawcett@enron.com 2001-02-06
## 1437 jeffery.fawcett@enron.com 2001-02-06
## 1438 jeffery.fawcett@enron.com 2001-02-06
## 1439 jeffery.fawcett@enron.com 2001-02-06
## 1440 jeffery.fawcett@enron.com 2001-02-06
## 1441 gary.spraggins@enron.com 2001-01-26
## 1442 kevin.hyatt@enron.com 2001-10-29
## 1443 kevin.hyatt@enron.com 2001-10-29
## 1444 kevin.hyatt@enron.com 2001-10-29
## 1445 kevin.hyatt@enron.com 2001-10-29
## 1446 kevin.hyatt@enron.com 2001-10-29
## 1447 kevin.hyatt@enron.com 2001-10-29
## 1448 kevin.hyatt@enron.com 2001-10-29
## 1449 kevin.hyatt@enron.com 2001-10-29
## 1450 kevin.hyatt@enron.com 2001-10-29
## 1451 kevin.hyatt@enron.com 2001-10-29
## 1452 kevin.hyatt@enron.com 2001-10-29
## 1453 kevin.hyatt@enron.com 2001-10-29
## 1454 kevin.hyatt@enron.com 2001-10-29
## 1455 kevin.hyatt@enron.com 2001-10-29
## 1456 kevin.hyatt@enron.com 2001-10-29
## 1457 kevin.hyatt@enron.com 2001-10-29
## 1458 kevin.hyatt@enron.com 2001-10-30
## 1459 kevin.hyatt@enron.com 2001-10-30
## 1460 kevin.hyatt@enron.com 2001-10-31
## 1461 kevin.hyatt@enron.com 2001-10-31
## 1462 lorraine.lindberg@enron.com 2001-03-05
## 1463 lorraine.lindberg@enron.com 2001-03-05
## 1464 lorraine.lindberg@enron.com 2001-03-07
## 1465 lorraine.lindberg@enron.com 2001-03-07
## 1466 perry.frazier@enron.com 2001-03-08
## 1467 perry.frazier@enron.com 2001-03-08
## 1468 lorraine.lindberg@enron.com 2001-03-08
## 1469 lorraine.lindberg@enron.com 2001-03-08
## 1470 eric.faucheaux@enron.com 2001-04-04
## 1471 eric.faucheaux@enron.com 2001-04-04
## 1472 larry.f.campbell@enron.com 2001-08-31
## 1473 larry.f.campbell@enron.com 2001-08-31
## 1474 larry.f.campbell@enron.com 2001-08-31
## 1475 larry.f.campbell@enron.com 2001-08-31
## 1476 larry.f.campbell@enron.com 2001-08-31
## 1477 larry.f.campbell@enron.com 2001-08-31
## 1478 larry.f.campbell@enron.com 2001-08-31
## 1479 larry.f.campbell@enron.com 2001-08-31
## 1480 larry.f.campbell@enron.com 2001-08-31
## 1481 larry.f.campbell@enron.com 2001-08-31
## 1482 larry.f.campbell@enron.com 2001-08-31
## 1483 larry.f.campbell@enron.com 2001-08-31
## 1484 larry.f.campbell@enron.com 2001-08-31
## 1485 larry.f.campbell@enron.com 2001-08-31
## 1486 larry.f.campbell@enron.com 2001-08-31
## 1487 larry.f.campbell@enron.com 2001-08-31
## 1488 larry.f.campbell@enron.com 2001-08-31
## 1489 larry.f.campbell@enron.com 2001-08-31
## 1490 larry.f.campbell@enron.com 2001-08-31
## 1491 lorna.brennan@enron.com 2001-06-06
## 1492 lorna.brennan@enron.com 2001-06-06
## 1493 susan.wadle@enron.com 2001-11-27
## 1494 susan.wadle@enron.com 2001-11-27
## 1495 susan.wadle@enron.com 2001-11-27
## 1496 susan.wadle@enron.com 2001-11-27
## 1497 v.dickerson@enron.com 2001-11-27
## 1498 lorna.brennan@enron.com 2001-11-27
## 1499 mark.brand@enron.com 2001-11-27
## 1500 mark.brand@enron.com 2001-11-27
## 1501 exchange.administrator@enron.com 2001-11-26
## 1502 julie.armstrong@enron.com 2001-11-26
## 1503 registrar.isc@enron.com 2001-11-26
## 1504 eric.gadd@enron.com 2001-11-26
## 1505 registrar.isc@enron.com 2001-11-20
## 1506 doug.cebryk@enron.com 2001-11-26
## 1507 michelle.foust@enron.com 2001-11-26
## 1508 morgan.gottsponer@enron.com 2001-11-19
## 1509 morgan.gottsponer@enron.com 2001-11-19
## 1510 morgan.gottsponer@enron.com 2001-11-19
## 1511 lillian.villarreal@enron.com 2001-11-20
## 1512 kay.miller@enron.com 2001-11-25
## 1513 debra.thompson@enron.com 2001-11-26
## 1514 lorna.brennan@enron.com 2001-11-02
## 1515 rosemary.gracey@enron.com 2001-11-26
## 1516 rosemary.gracey@enron.com 2001-11-26
## 1517 rosemary.gracey@enron.com 2001-11-26
## 1518 rosemary.gracey@enron.com 2001-11-26
## 1519 exchange.administrator@enron.com 2001-11-25
## 1520 exchange.administrator@enron.com 2001-11-23
## 1521 exchange.administrator@enron.com 2001-11-24
## 1522 exchange.administrator@enron.com 2001-11-21
## 1523 exchange.administrator@enron.com 2001-11-22
## 1524 exchange.administrator@enron.com 2001-11-20
## 1525 exchange.administrator@enron.com 2001-11-19
## 1526 karen.brostad@enron.com 2002-03-08
## 1527 karen.brostad@enron.com 2002-03-08
## 1528 janet.butler@enron.com 2002-03-07
## 1529 morris.brassfield@enron.com 2002-03-06
## 1530 morris.brassfield@enron.com 2002-03-06
## 1531 susan.wadle@enron.com 2002-03-06
## 1532 susan.wadle@enron.com 2002-03-06
## 1533 communications@enron.com 2002-03-06
## 1534 julie.armstrong@enron.com 2002-03-05
## 1535 julie.armstrong@enron.com 2002-03-05
## 1536 julie.armstrong@enron.com 2002-03-05
## 1537 julie.armstrong@enron.com 2002-03-05
## 1538 michelle.lokay@enron.com 2002-03-01
## 1539 audrey.robertson@enron.com 2002-03-04
## 1540 audrey.robertson@enron.com 2002-03-04
## 1541 audrey.robertson@enron.com 2002-03-04
## 1542 audrey.robertson@enron.com 2002-03-04
## 1543 audrey.robertson@enron.com 2002-03-04
## 1544 mark.brand@enron.com 2002-03-04
## 1545 leticia.flores@enron.com 2002-03-04
## 1546 mark.mcconnell@enron.com 2002-03-04
## 1547 mark.mcconnell@enron.com 2002-03-04
## 1548 mark.mcconnell@enron.com 2002-03-04
## 1549 mark.mcconnell@enron.com 2002-03-04
## 1550 mark.mcconnell@enron.com 2002-03-04
## 1551 roger.westbrook@enron.com 2002-03-01
## 1552 leticia.flores@enron.com 2002-03-01
## 1553 roger.westbrook@enron.com 2002-03-01
## 1554 audrey.robertson@enron.com 2002-03-01
## 1555 audrey.robertson@enron.com 2002-03-01
## 1556 audrey.robertson@enron.com 2002-03-01
## 1557 audrey.robertson@enron.com 2002-03-01
## 1558 communications@enron.com 2002-02-28
## 1559 communications@enron.com 2002-02-28
## 1560 eric.gadd@enron.com 2002-02-28
## 1561 audrey.robertson@enron.com 2002-02-28
## 1562 audrey.robertson@enron.com 2002-02-28
## 1563 audrey.robertson@enron.com 2002-02-28
## 1564 audrey.robertson@enron.com 2002-02-28
## 1565 susan.wadle@enron.com 2002-02-28
## 1566 susan.wadle@enron.com 2002-02-28
## 1567 jean.mcfarland@enron.com 2002-02-25
## 1568 susan.wadle@enron.com 2002-02-28
## 1569 eric.gadd@enron.com 2002-02-27
## 1570 eric.gadd@enron.com 2002-02-27
## 1571 eric.gadd@enron.com 2002-02-27
## 1572 eric.gadd@enron.com 2002-02-25
## 1573 susan.wadle@enron.com 2002-02-26
## 1574 susan.wadle@enron.com 2002-02-26
## 1575 eric.gadd@enron.com 2002-02-20
## 1576 mary.hubbard@enron.com 2002-02-19
## 1577 susan.wadle@enron.com 2002-02-21
## 1578 susan.wadle@enron.com 2002-02-20
## 1579 management.ets@enron.com 2002-02-20
## 1580 management.ets@enron.com 2002-02-20
## 1581 management.ets@enron.com 2002-02-20
## 1582 management.ets@enron.com 2002-02-20
## 1583 management.ets@enron.com 2002-02-20
## 1584 frank.carriere@enron.com 2002-02-20
## 1585 frank.carriere@enron.com 2002-02-20
## 1586 mary.hubbard@enron.com 2002-02-20
## 1587 susan.wadle@enron.com 2002-02-20
## 1588 susan.wadle@enron.com 2002-02-20
## 1589 ron.matthews@enron.com 2002-02-20
## 1590 james.centilli@enron.com 2002-02-20
## 1591 jean.mcfarland@enron.com 2002-02-15
## 1592 jean.mcfarland@enron.com 2002-02-15
## 1593 frank.carriere@enron.com 2002-02-19
## 1594 eric.gadd@enron.com 2002-02-19
## 1595 kimberly.watson@enron.com 2002-02-19
## 1596 steven.harris@enron.com 2002-02-14
## 1597 steven.harris@enron.com 2002-02-14
## 1598 steven.harris@enron.com 2002-02-15
## 1599 steven.harris@enron.com 2002-02-15
## 1600 susan.wadle@enron.com 2002-02-15
## 1601 susan.wadle@enron.com 2002-02-15
## 1602 jean.mcfarland@enron.com 2002-02-12
## 1603 jean.mcfarland@enron.com 2002-02-12
## 1604 eric.gadd@enron.com 2002-02-14
## 1605 julie.armstrong@enron.com 2002-02-13
## 1606 julie.armstrong@enron.com 2002-02-13
## 1607 susan.wadle@enron.com 2002-02-13
## 1608 susan.wadle@enron.com 2002-02-13
## 1609 susan.wadle@enron.com 2002-02-13
## 1610 susan.wadle@enron.com 2002-02-13
## 1611 susan.wadle@enron.com 2002-02-13
## 1612 susan.wadle@enron.com 2002-02-13
## 1613 eric.gadd@enron.com 2002-02-11
## 1614 ron.matthews@enron.com 2002-02-12
## 1615 michael.ratner@enron.com 2002-02-11
## 1616 a..howard@enron.com 2002-02-11
## 1617 jean.mcfarland@enron.com 2002-02-11
## 1618 a..howard@enron.com 2002-02-11
## 1619 a..howard@enron.com 2002-02-11
## 1620 a..howard@enron.com 2002-02-11
## 1621 eric.gadd@enron.com 2002-02-11
## 1622 a..howard@enron.com 2002-02-08
## 1623 david.roensch@enron.com 2002-02-09
## 1624 a..howard@enron.com 2002-02-05
## 1625 susan.wadle@enron.com 2002-02-05
## 1626 susan.wadle@enron.com 2002-02-05
## 1627 doug.cebryk@enron.com 2002-01-07
## 1628 doug.cebryk@enron.com 2002-01-07
## 1629 a..howard@enron.com 2002-01-31
## 1630 a..howard@enron.com 2002-01-31
## 1631 a..howard@enron.com 2002-02-01
## 1632 transportation.parking@enron.com 2002-01-31
## 1633 a..howard@enron.com 2002-01-31
## 1634 james.saunders@enron.com 2002-01-31
## 1635 a..howard@enron.com 2002-01-30
## 1636 a..howard@enron.com 2002-01-30
## 1637 a..howard@enron.com 2002-01-30
## 1638 kevin.hyatt@enron.com 2002-01-16
## 1639 kevin.hyatt@enron.com 2002-01-22
## 1640 kevin.hyatt@enron.com 2002-01-22
## 1641 kevin.hyatt@enron.com 2002-01-22
## 1642 registrar.isc@enron.com 2001-10-30
## 1643 jeff.nielsen@enron.com 2001-07-23
## 1644 john.kiani-aslani@enron.com 2001-07-25
## 1645 john.kiani-aslani@enron.com 2001-07-25
## 1646 jeff.nielsen@enron.com 2001-07-27
## 1647 a..howard@enron.com 2002-01-24
## 1648 eric.gadd@enron.com 2002-01-24
## 1649 eric.gadd@enron.com 2002-01-24
## 1650 eric.gadd@enron.com 2002-01-24
## 1651 center.ets@enron.com 2002-01-23
## 1652 jean.mcfarland@enron.com 2002-01-23
## 1653 john.buchanan@enron.com 2002-01-22
## 1654 tony.pryor@enron.com 2002-01-22
## 1655 lynn.schaffart@enron.com 2002-01-22
## 1656 susan.wadle@enron.com 2002-01-22
## 1657 audrey.robertson@enron.com 2002-01-22
## 1658 julie.armstrong@enron.com 2002-01-22
## 1659 susan.wadle@enron.com 2002-01-22
## 1660 rosemary.gracey@enron.com 2002-01-22
## 1661 rosemary.gracey@enron.com 2002-01-22
## 1662 rosemary.gracey@enron.com 2002-01-22
## 1663 rosemary.gracey@enron.com 2002-01-22
## 1664 eric.gadd@enron.com 2002-01-18
## 1665 susan.wadle@enron.com 2002-01-18
## 1666 bruce.tuttle@enron.com 2002-01-21
## 1667 admin.enron@enron.com 2002-01-18
## 1668 kevin.hyatt@enron.com 2002-01-16
## 1669 kevin.hyatt@enron.com 2002-01-16
## 1670 kevin.hyatt@enron.com 2002-01-16
## 1671 kevin.hyatt@enron.com 2002-01-16
## 1672 kevin.hyatt@enron.com 2002-01-16
## 1673 kevin.hyatt@enron.com 2002-01-16
## 1674 kevin.hyatt@enron.com 2002-01-16
## 1675 kevin.hyatt@enron.com 2002-01-16
## 1676 kevin.hyatt@enron.com 2002-01-16
## 1677 kevin.hyatt@enron.com 2002-01-16
## 1678 kevin.hyatt@enron.com 2002-01-16
## 1679 kevin.hyatt@enron.com 2002-01-16
## 1680 ron.matthews@enron.com 2002-01-17
## 1681 exchange.administrator@enron.com 2002-01-16
## 1682 julie.armstrong@enron.com 2002-01-16
## 1683 julie.armstrong@enron.com 2002-01-16
## 1684 george.margoliner@enron.com 2002-01-16
## 1685 george.margoliner@enron.com 2002-01-16
## 1686 ruth.mann@enron.com 2002-01-16
## 1687 pamela.rush@enron.com 2002-01-16
## 1688 ruth.mann@enron.com 2002-01-16
## 1689 exchange.administrator@enron.com 2002-01-15
## 1690 exchange.administrator@enron.com 2002-01-14
## 1691 steven.harris@enron.com 2002-01-14
## 1692 steven.harris@enron.com 2002-01-14
## 1693 steven.harris@enron.com 2002-01-14
## 1694 steven.harris@enron.com 2002-01-14
## 1695 steven.harris@enron.com 2002-01-14
## 1696 david.roensch@enron.com 2002-01-14
## 1697 david.roensch@enron.com 2002-01-14
## 1698 david.roensch@enron.com 2002-01-14
## 1699 david.roensch@enron.com 2002-01-14
## 1700 exchange.administrator@enron.com 2002-01-11
## 1701 susan.wadle@enron.com 2002-01-14
## 1702 exchange.administrator@enron.com 2002-01-12
## 1703 exchange.administrator@enron.com 2002-01-13
## 1704 kevin.hyatt@enron.com 2001-12-18
## 1705 kevin.hyatt@enron.com 2002-01-07
## 1706 kevin.hyatt@enron.com 2002-01-07
## 1707 kevin.hyatt@enron.com 2002-01-07
## 1708 kevin.hyatt@enron.com 2002-01-07
## 1709 kevin.hyatt@enron.com 2002-01-07
## 1710 kevin.hyatt@enron.com 2002-01-07
## 1711 kevin.hyatt@enron.com 2002-01-07
## 1712 kevin.hyatt@enron.com 2002-01-07
## 1713 kevin.hyatt@enron.com 2002-01-07
## 1714 kevin.hyatt@enron.com 2002-01-07
## 1715 kevin.hyatt@enron.com 2002-01-07
## 1716 kevin.hyatt@enron.com 2002-01-07
## 1717 kevin.hyatt@enron.com 2002-01-07
## 1718 kevin.hyatt@enron.com 2002-01-07
## 1719 kevin.hyatt@enron.com 2002-01-08
## 1720 kevin.hyatt@enron.com 2002-01-11
## 1721 kevin.hyatt@enron.com 2002-01-11
## 1722 kevin.hyatt@enron.com 2002-01-11
## 1723 kevin.hyatt@enron.com 2002-01-11
## 1724 kevin.hyatt@enron.com 2002-01-11
## 1725 kevin.hyatt@enron.com 2002-01-11
## 1726 kevin.hyatt@enron.com 2002-01-11
## 1727 kevin.hyatt@enron.com 2001-12-19
## 1728 kevin.hyatt@enron.com 2001-06-06
## 1729 kevin.hyatt@enron.com 2001-04-08
## 1730 kevin.hyatt@enron.com 2001-04-08
## 1731 kevin.hyatt@enron.com 2001-04-08
## 1732 kevin.hyatt@enron.com 2001-04-08
## 1733 kevin.hyatt@enron.com 2001-04-08
## 1734 kevin.hyatt@enron.com 2001-04-08
## 1735 kevin.hyatt@enron.com 2001-04-08
## 1736 kevin.hyatt@enron.com 2001-04-08
## 1737 kevin.hyatt@enron.com 2001-04-08
## 1738 kevin.hyatt@enron.com 2001-04-08
## 1739 kevin.hyatt@enron.com 2001-04-08
## 1740 kevin.hyatt@enron.com 2001-04-08
## 1741 kevin.hyatt@enron.com 2001-04-08
## 1742 kevin.hyatt@enron.com 2001-04-08
## 1743 kevin.hyatt@enron.com 2001-04-08
## 1744 kevin.hyatt@enron.com 2001-04-08
## 1745 kevin.hyatt@enron.com 2001-04-08
## 1746 kevin.hyatt@enron.com 2001-04-08
## 1747 kevin.hyatt@enron.com 2001-04-08
## 1748 dennis.lee@enron.com 2001-01-22
## 1749 dennis.lee@enron.com 2001-01-22
## 1750 tk.lohman@enron.com 2001-01-22
## 1751 tk.lohman@enron.com 2001-01-22
## 1752 tk.lohman@enron.com 2001-01-26
## 1753 lorraine.lindberg@enron.com 2001-01-26
## 1754 lorna.brennan@enron.com 2002-01-10
## 1755 lorna.brennan@enron.com 2002-01-10
## 1756 lorna.brennan@enron.com 2002-01-10
## 1757 lorna.brennan@enron.com 2002-01-10
## 1758 lorna.brennan@enron.com 2002-01-10
## 1759 eric.gadd@enron.com 2002-01-06
## 1760 eric.gadd@enron.com 2002-01-11
## 1761 glen.hass@enron.com 2002-01-10
## 1762 eric.gadd@enron.com 2002-01-08
## 1763 eric.gadd@enron.com 2001-12-21
## 1764 lorna.brennan@enron.com 2002-01-09
## 1765 lorna.brennan@enron.com 2002-01-09
## 1766 lorna.brennan@enron.com 2002-01-09
## 1767 lorna.brennan@enron.com 2002-01-09
## 1768 lorna.brennan@enron.com 2002-01-09
## 1769 julie.armstrong@enron.com 2002-01-11
## 1770 bruce.tuttle@enron.com 2002-01-10
## 1771 eric.gadd@enron.com 2002-01-08
## 1772 exchange.administrator@enron.com 2002-01-08
## 1773 exchange.administrator@enron.com 2002-01-09
## 1774 gina.taylor@enron.com 2002-01-10
## 1775 exchange.administrator@enron.com 2002-01-10
## 1776 susan.wadle@enron.com 2002-01-04
## 1777 dennis.lee@enron.com 2002-01-08
## 1778 dennis.lee@enron.com 2002-01-08
## 1779 dennis.lee@enron.com 2002-01-08
## 1780 dennis.lee@enron.com 2002-01-08
## 1781 dennis.lee@enron.com 2002-01-08
## 1782 exchange.administrator@enron.com 2002-01-07
## 1783 kevin.hyatt@enron.com 2001-09-06
## 1784 kevin.hyatt@enron.com 2001-07-27
## 1785 kevin.hyatt@enron.com 2001-04-08
## 1786 kevin.hyatt@enron.com 2001-03-20
## 1787 lorna.brennan@enron.com 2001-11-13
## 1788 lorna.brennan@enron.com 2001-11-13
## 1789 lorna.brennan@enron.com 2001-11-13
## 1790 lorna.brennan@enron.com 2001-11-13
## 1791 lorna.brennan@enron.com 2001-11-13
## 1792 lorna.brennan@enron.com 2001-11-13
## 1793 lorna.brennan@enron.com 2001-11-13
## 1794 lorna.brennan@enron.com 2001-11-13
## 1795 lorna.brennan@enron.com 2001-11-13
## 1796 lorna.brennan@enron.com 2001-10-05
## 1797 lorna.brennan@enron.com 2001-10-05
## 1798 lorna.brennan@enron.com 2001-10-05
## 1799 lorna.brennan@enron.com 2001-10-05
## 1800 lorna.brennan@enron.com 2001-10-05
## 1801 lorna.brennan@enron.com 2001-10-05
## 1802 lorna.brennan@enron.com 2001-10-05
## 1803 lorna.brennan@enron.com 2001-10-05
## 1804 lorna.brennan@enron.com 2001-10-05
## 1805 iris.waser@enron.com 2001-11-30
## 1806 kimberley.nelson@enron.com 2001-09-05
## 1807 kimberley.nelson@enron.com 2001-09-05
## 1808 kimberley.nelson@enron.com 2001-09-05
## 1809 kimberley.nelson@enron.com 2001-09-05
## 1810 kimberley.nelson@enron.com 2001-09-05
## 1811 kimberley.nelson@enron.com 2001-09-05
## 1812 kimberley.nelson@enron.com 2001-09-05
## 1813 kimberley.nelson@enron.com 2001-09-05
## 1814 kimberley.nelson@enron.com 2001-09-05
## 1815 rich.jolly@enron.com 2001-07-11
## 1816 rich.jolly@enron.com 2001-07-11
## 1817 rich.jolly@enron.com 2001-07-11
## 1818 misha.siegel@enron.com 2001-11-19
## 1819 misha.siegel@enron.com 2001-11-19
## 1820 dominic.marshall@enron.com 2001-12-07
## 1821 dominic.marshall@enron.com 2001-12-07
## 1822 jesse.morris@enron.com 2001-12-03
## 1823 geneva.davis@enron.com 2001-11-30
## 1824 bob.chandler@enron.com 2001-11-21
## 1825 geneva.davis@enron.com 2001-11-25
## 1826 lillian.villarreal@enron.com 2001-11-19
## 1827 lillian.villarreal@enron.com 2001-11-19
## 1828 geneva.davis@enron.com 2001-11-07
## 1829 geneva.davis@enron.com 2001-11-06
## 1830 lillian.villarreal@enron.com 2001-10-31
## 1831 lillian.villarreal@enron.com 2001-10-26
## 1832 lillian.villarreal@enron.com 2001-10-24
## 1833 lesli.campbell@enron.com 2001-09-12
## 1834 lillian.villarreal@enron.com 2001-07-02
## 1835 lillian.villarreal@enron.com 2001-06-26
## 1836 lillian.villarreal@enron.com 2001-05-17
## 1837 pamela.rush@enron.com 2001-05-18
## 1838 pamela.rush@enron.com 2001-05-18
## 1839 geneva.davis@enron.com 2001-05-16
## 1840 lillian.villarreal@enron.com 2001-05-15
## 1841 lorna.brennan@enron.com 2001-10-01
## 1842 lorna.brennan@enron.com 2001-10-01
## 1843 lorna.brennan@enron.com 2001-10-01
## 1844 lorna.brennan@enron.com 2001-10-01
## 1845 lorna.brennan@enron.com 2001-10-01
## 1846 lorna.brennan@enron.com 2001-10-01
## 1847 lorna.brennan@enron.com 2001-10-01
## 1848 lorna.brennan@enron.com 2001-10-01
## 1849 susan.wadle@enron.com 2001-07-24
## 1850 paula.corey@enron.com 2002-02-25
## 1851 paula.corey@enron.com 2002-02-25
## 1852 paula.corey@enron.com 2002-02-25
## 1853 paula.corey@enron.com 2002-02-25
## 1854 paula.corey@enron.com 2002-02-25
## 1855 paula.corey@enron.com 2002-02-25
## 1856 eric.gadd@enron.com 2002-02-08
## 1857 lorna.brennan@enron.com 2002-01-16
## 1858 lorna.brennan@enron.com 2002-01-16
## 1859 lorna.brennan@enron.com 2002-01-16
## 1860 lorna.brennan@enron.com 2002-01-16
## 1861 lorna.brennan@enron.com 2002-01-16
## 1862 lorna.brennan@enron.com 2002-01-11
## 1863 lorna.brennan@enron.com 2002-01-11
## 1864 lorna.brennan@enron.com 2002-01-11
## 1865 lorna.brennan@enron.com 2002-01-11
## 1866 lorna.brennan@enron.com 2002-01-11
## 1867 lorna.brennan@enron.com 2002-01-11
## 1868 tammy.jaquet@enron.com 2001-06-19
## 1869 lorna.brennan@enron.com 2001-10-23
## 1870 lorna.brennan@enron.com 2001-10-23
## 1871 lorna.brennan@enron.com 2001-10-23
## 1872 lorna.brennan@enron.com 2001-10-23
## 1873 lorna.brennan@enron.com 2001-10-23
## 1874 lorna.brennan@enron.com 2001-10-04
## 1875 lorna.brennan@enron.com 2001-07-23
## 1876 lorna.brennan@enron.com 2001-07-23
## 1877 lorna.brennan@enron.com 2001-07-23
## 1878 lorna.brennan@enron.com 2001-07-23
## 1879 lorna.brennan@enron.com 2001-08-14
## 1880 glen.hass@enron.com 2001-08-07
## 1881 glen.hass@enron.com 2001-08-07
## 1882 glen.hass@enron.com 2001-08-07
## 1883 glen.hass@enron.com 2001-08-07
## 1884 lorna.brennan@enron.com 2001-08-09
## 1885 lorna.brennan@enron.com 2001-08-09
## 1886 lorna.brennan@enron.com 2001-08-09
## 1887 lorna.brennan@enron.com 2001-08-09
## 1888 lorna.brennan@enron.com 2001-08-09
## 1889 lorna.brennan@enron.com 2001-08-09
## 1890 tammy.jaquet@enron.com 2001-07-27
## 1891 tammy.jaquet@enron.com 2001-07-27
## 1892 lorna.brennan@enron.com 2001-07-19
## 1893 lorna.brennan@enron.com 2001-07-19
## 1894 lorna.brennan@enron.com 2001-07-19
## 1895 lorna.brennan@enron.com 2001-07-19
## 1896 lorna.brennan@enron.com 2001-07-19
## 1897 lorna.brennan@enron.com 2001-07-19
## 1898 lorna.brennan@enron.com 2001-07-19
## 1899 lorna.brennan@enron.com 2001-07-19
## 1900 lorna.brennan@enron.com 2001-07-02
## 1901 lorna.brennan@enron.com 2001-07-02
## 1902 lorna.brennan@enron.com 2001-07-02
## 1903 lorna.brennan@enron.com 2001-07-02
## 1904 lorna.brennan@enron.com 2001-07-02
## 1905 lorna.brennan@enron.com 2001-07-02
## 1906 tammy.jaquet@enron.com 2001-07-11
## 1907 tammy.jaquet@enron.com 2001-07-11
## 1908 lorna.brennan@enron.com 2001-07-02
## 1909 lorna.brennan@enron.com 2001-07-02
## 1910 lorna.brennan@enron.com 2001-07-02
## 1911 lorna.brennan@enron.com 2001-07-02
## 1912 lorna.brennan@enron.com 2001-07-02
## 1913 tammy.jaquet@enron.com 2001-06-25
## 1914 tammy.jaquet@enron.com 2001-07-02
## 1915 lorna.brennan@enron.com 2001-06-29
## 1916 lorna.brennan@enron.com 2001-06-29
## 1917 lorna.brennan@enron.com 2001-06-29
## 1918 lorna.brennan@enron.com 2001-06-29
## 1919 tammy.jaquet@enron.com 2001-06-27
## 1920 lorna.brennan@enron.com 2001-06-28
## 1921 lorna.brennan@enron.com 2001-06-28
## 1922 lorna.brennan@enron.com 2001-06-28
## 1923 lorna.brennan@enron.com 2001-06-28
## 1924 tammy.jaquet@enron.com 2001-06-20
## 1925 tammy.jaquet@enron.com 2001-06-20
## 1926 tammy.jaquet@enron.com 2001-05-29
## 1927 tammy.jaquet@enron.com 2001-05-29
## 1928 tammy.jaquet@enron.com 2001-05-24
## 1929 tammy.jaquet@enron.com 2001-05-17
## 1930 tammy.jaquet@enron.com 2001-05-17
## 1931 lorna.brennan@enron.com 2001-05-07
## 1932 lorna.brennan@enron.com 2001-05-07
## 1933 lorna.brennan@enron.com 2001-05-07
## 1934 lorna.brennan@enron.com 2001-05-07
## 1935 lorna.brennan@enron.com 2001-05-07
## 1936 lorna.brennan@enron.com 2001-05-07
## 1937 lorna.brennan@enron.com 2001-05-07
## 1938 lorna.brennan@enron.com 2001-05-07
## 1939 lorna.brennan@enron.com 2001-05-07
## 1940 lorna.brennan@enron.com 2001-04-26
## 1941 lorna.brennan@enron.com 2001-04-26
## 1942 lorna.brennan@enron.com 2001-04-26
## 1943 lorna.brennan@enron.com 2001-04-26
## 1944 lorna.brennan@enron.com 2001-04-26
## 1945 lorna.brennan@enron.com 2001-04-26
## 1946 lorna.brennan@enron.com 2001-04-23
## 1947 lorna.brennan@enron.com 2001-04-23
## 1948 lorna.brennan@enron.com 2001-04-23
## 1949 lorna.brennan@enron.com 2001-04-23
## 1950 jeffery.fawcett@enron.com 2001-04-13
## 1951 jeffery.fawcett@enron.com 2001-04-13
## 1952 jeffery.fawcett@enron.com 2001-04-13
## 1953 jeffery.fawcett@enron.com 2001-04-09
## 1954 jeffery.fawcett@enron.com 2001-04-09
## 1955 jeffery.fawcett@enron.com 2001-04-09
## 1956 jeffery.fawcett@enron.com 2001-04-09
## 1957 jeffery.fawcett@enron.com 2001-04-09
## 1958 tk.lohman@enron.com 2001-03-29
## 1959 jeffery.fawcett@enron.com 2001-03-21
## 1960 jeffery.fawcett@enron.com 2001-03-21
## 1961 jeffery.fawcett@enron.com 2001-03-21
## 1962 jeffery.fawcett@enron.com 2001-03-21
## 1963 shelley.corman@enron.com 2001-02-26
## 1964 shelley.corman@enron.com 2001-02-26
## 1965 shelley.corman@enron.com 2001-02-26
## 1966 shelley.corman@enron.com 2001-02-26
## 1967 jeffery.fawcett@enron.com 2001-03-06
## 1968 jeffery.fawcett@enron.com 2001-03-06
## 1969 jeffery.fawcett@enron.com 2001-03-06
## 1970 lorna.brennan@enron.com 2001-03-02
## 1971 lorna.brennan@enron.com 2001-03-02
## 1972 lorna.brennan@enron.com 2001-03-02
## 1973 lorna.brennan@enron.com 2001-03-02
## 1974 lorna.brennan@enron.com 2001-03-02
## 1975 lorna.brennan@enron.com 2001-02-28
## 1976 lorna.brennan@enron.com 2001-02-28
## 1977 lorna.brennan@enron.com 2001-02-28
## 1978 lorna.brennan@enron.com 2001-02-28
## 1979 lorna.brennan@enron.com 2001-02-28
## 1980 lorna.brennan@enron.com 2001-02-28
## 1981 jeffery.fawcett@enron.com 2001-02-23
## 1982 jeffery.fawcett@enron.com 2001-02-23
## 1983 jeffery.fawcett@enron.com 2001-02-23
## 1984 jeffery.fawcett@enron.com 2001-02-23
## 1985 jeffery.fawcett@enron.com 2001-02-23
## 1986 registrar.isc@enron.com 2001-10-30
## 1987 kimberley.nelson@enron.com 2001-10-02
## 1988 pilar.ramirez@enron.com 2001-09-26
## 1989 pilar.ramirez@enron.com 2001-09-26
## 1990 pilar.ramirez@enron.com 2001-09-26
## 1991 carl.carter@enron.com 2001-01-29
## 1992 carl.carter@enron.com 2001-01-29
## 1993 carl.carter@enron.com 2001-01-29
## 1994 l..kennedy@enron.com 2001-07-26
## 1995 sap_security@enron.com 2001-07-24
## 1996 communications@enron.com 2002-03-15
## 1997 susan.wadle@enron.com 2002-03-12
## 1998 mark.mcconnell@enron.com 2002-03-04
## 1999 susan.wadle@enron.com 2002-03-06
## 2000 leticia.flores@enron.com 2002-03-01
## 2001 susan.wadle@enron.com 2002-02-27
## 2002 susan.wadle@enron.com 2002-02-27
## 2003 center.ets@enron.com 2002-02-19
## 2004 center.ets@enron.com 2002-02-19
## 2005 center.ets@enron.com 2002-02-19
## 2006 center.ets@enron.com 2002-02-19
## 2007 center.ets@enron.com 2002-02-19
## 2008 audrey.robertson@enron.com 2002-01-25
## 2009 audrey.robertson@enron.com 2002-01-25
## 2010 felicia.buenrostro@enron.com 2002-01-24
## 2011 susan.wadle@enron.com 2001-12-19
## 2012 susan.wadle@enron.com 2001-11-15
## 2013 tyler.theobald@enron.com 2001-10-30
## 2014 tyler.theobald@enron.com 2001-10-30
## 2015 tyler.theobald@enron.com 2001-10-30
## 2016 tyler.theobald@enron.com 2001-10-30
## 2017 don.powell@enron.com 2001-10-18
## 2018 judith.schlesinger@enron.com 2001-10-04
## 2019 payroll.enron@enron.com 2001-10-02
## 2020 eric.gadd@enron.com 2001-09-28
## 2021 kevin.hyatt@enron.com 2001-08-10
## 2022 tk.lohman@enron.com 2001-09-18
## 2023 tk.lohman@enron.com 2001-09-18
## 2024 susan.wadle@enron.com 2001-09-06
## 2025 mark.knippa@enron.com 2001-08-22
## 2026 susan.wadle@enron.com 2001-07-27
## 2027 l..kennedy@enron.com 2001-07-26
## 2028 kathy.mayfield@enron.com 2001-07-23
## 2029 kathy.mayfield@enron.com 2001-07-23
## 2030 traci.warner@enron.com 2001-07-18
## 2031 john.millar@enron.com 2001-06-05
## 2032 sap_security@enron.com 2001-06-04
## 2033 julie.armstrong@enron.com 2001-06-01
## 2034 julie.armstrong@enron.com 2001-06-01
## 2035 omaha.helpdesk@enron.com 2001-05-08
## 2036 omaha.helpdesk@enron.com 2001-05-08
## 2037 omaha.helpdesk@enron.com 2001-05-08
## 2038 omaha.helpdesk@enron.com 2001-05-08
## 2039 omaha.helpdesk@enron.com 2001-05-08
## 2040 omaha.helpdesk@enron.com 2001-05-08
## 2041 omaha.helpdesk@enron.com 2001-05-08
## 2042 omaha.helpdesk@enron.com 2001-05-08
## 2043 omaha.helpdesk@enron.com 2001-05-08
## 2044 jeffery.fawcett@enron.com 2001-04-30
## 2045 jeffery.fawcett@enron.com 2001-04-30
## 2046 jeffery.fawcett@enron.com 2001-04-30
## 2047 tyler.theobald@enron.com 2001-03-13
## 2048 tyler.theobald@enron.com 2001-03-13
## 2049 tyler.theobald@enron.com 2001-03-13
## 2050 tyler.theobald@enron.com 2001-03-13
## 2051 craig.buehler@enron.com 2001-03-07
## 2052 don.powell@enron.com 2001-02-27
## 2053 jason.moore@enron.com 2001-01-29
## 2054 jason.moore@enron.com 2001-01-29
## 2055 jason.moore@enron.com 2001-01-29
## 2056 linda.lawrence@enron.com 2000-10-25
## 2057 valarie.sabo@enron.com 2000-10-25
## 2058 valarie.sabo@enron.com 2000-10-25
## 2059 diana.scholtes@enron.com 2000-12-04
## 2060 diana.scholtes@enron.com 2000-12-04
## 2061 diana.scholtes@enron.com 2000-12-04
## 2062 diana.scholtes@enron.com 2000-12-04
## 2063 diana.scholtes@enron.com 2000-12-04
## 2064 christi.nicolay@enron.com 2001-01-22
## 2065 christi.nicolay@enron.com 2001-01-22
## 2066 kevin.m.presto@enron.com 2001-01-23
## 2067 kevin.m.presto@enron.com 2001-01-23
## 2068 kevin.m.presto@enron.com 2001-01-23
## 2069 kevin.m.presto@enron.com 2001-01-23
## 2070 kevin.m.presto@enron.com 2001-01-23
## 2071 kevin.m.presto@enron.com 2001-01-23
## 2072 kevin.m.presto@enron.com 2001-01-23
## 2073 kevin.m.presto@enron.com 2001-01-23
## 2074 kevin.m.presto@enron.com 2001-01-23
## 2075 kevin.m.presto@enron.com 2001-01-23
## 2076 kevin.m.presto@enron.com 2001-01-23
## 2077 linda.lawrence@enron.com 2001-01-23
## 2078 cara.semperger@enron.com 2001-01-23
## 2079 cara.semperger@enron.com 2001-01-23
## 2080 cara.semperger@enron.com 2001-01-23
## 2081 cara.semperger@enron.com 2001-01-23
## 2082 cara.semperger@enron.com 2001-01-23
## 2083 cara.semperger@enron.com 2001-01-25
## 2084 cara.semperger@enron.com 2001-01-25
## 2085 cara.semperger@enron.com 2001-01-25
## 2086 cara.semperger@enron.com 2001-01-25
## 2087 cara.semperger@enron.com 2001-01-25
## 2088 cara.semperger@enron.com 2001-01-25
## 2089 cara.semperger@enron.com 2001-01-25
## 2090 cara.semperger@enron.com 2001-01-25
## 2091 cara.semperger@enron.com 2001-01-25
## 2092 kelley.huntley@enron.com 2001-01-25
## 2093 cara.semperger@enron.com 2001-01-25
## 2094 cara.semperger@enron.com 2001-01-25
## 2095 cara.semperger@enron.com 2001-01-25
## 2096 cara.semperger@enron.com 2001-01-25
## 2097 cara.semperger@enron.com 2001-01-25
## 2098 cara.semperger@enron.com 2001-01-25
## 2099 cara.semperger@enron.com 2001-01-25
## 2100 cara.semperger@enron.com 2001-01-25
## 2101 cara.semperger@enron.com 2001-01-25
## 2102 christi.nicolay@enron.com 2001-01-26
## 2103 christi.nicolay@enron.com 2001-01-26
## 2104 christi.nicolay@enron.com 2001-01-26
## 2105 christi.nicolay@enron.com 2001-01-26
## 2106 christi.nicolay@enron.com 2001-01-26
## 2107 christi.nicolay@enron.com 2001-01-26
## 2108 christi.nicolay@enron.com 2001-01-26
## 2109 christi.nicolay@enron.com 2001-02-01
## 2110 christi.nicolay@enron.com 2001-02-01
## 2111 christi.nicolay@enron.com 2001-02-05
## 2112 christi.nicolay@enron.com 2001-02-05
## 2113 christi.nicolay@enron.com 2001-02-05
## 2114 christi.nicolay@enron.com 2001-02-05
## 2115 christi.nicolay@enron.com 2001-02-05
## 2116 christi.nicolay@enron.com 2001-02-08
## 2117 christi.nicolay@enron.com 2001-02-08
## 2118 christi.nicolay@enron.com 2001-02-08
## 2119 christi.nicolay@enron.com 2001-02-08
## 2120 christi.nicolay@enron.com 2001-02-08
## 2121 christi.nicolay@enron.com 2001-02-08
## 2122 marcia.linton@enron.com 2001-02-12
## 2123 marcia.linton@enron.com 2001-02-12
## 2124 marcia.linton@enron.com 2001-02-12
## 2125 christi.nicolay@enron.com 2001-02-20
## 2126 christi.nicolay@enron.com 2001-02-20
## 2127 tara.rafter@enron.com 2001-02-20
## 2128 tara.rafter@enron.com 2001-02-20
## 2129 tara.rafter@enron.com 2001-02-20
## 2130 tara.rafter@enron.com 2001-02-20
## 2131 tara.rafter@enron.com 2001-02-20
## 2132 tara.rafter@enron.com 2001-02-20
## 2133 kevin.m.presto@enron.com 2001-02-20
## 2134 kevin.m.presto@enron.com 2001-02-20
## 2135 kevin.m.presto@enron.com 2001-02-20
## 2136 kevin.m.presto@enron.com 2001-02-20
## 2137 kevin.m.presto@enron.com 2001-02-20
## 2138 kevin.m.presto@enron.com 2001-02-20
## 2139 kevin.m.presto@enron.com 2001-02-20
## 2140 kevin.m.presto@enron.com 2001-02-20
## 2141 kevin.m.presto@enron.com 2001-02-20
## 2142 kevin.m.presto@enron.com 2001-02-20
## 2143 kevin.m.presto@enron.com 2001-02-20
## 2144 kevin.m.presto@enron.com 2001-02-20
## 2145 kevin.m.presto@enron.com 2001-02-20
## 2146 kevin.m.presto@enron.com 2001-02-20
## 2147 kevin.m.presto@enron.com 2001-02-20
## 2148 bernadette.hawkins@enron.com 2001-02-21
## 2149 bernadette.hawkins@enron.com 2001-02-21
## 2150 bernadette.hawkins@enron.com 2001-02-21
## 2151 bernadette.hawkins@enron.com 2001-02-21
## 2152 diana.scholtes@enron.com 2001-02-22
## 2153 christi.nicolay@enron.com 2001-02-23
## 2154 christi.nicolay@enron.com 2001-02-23
## 2155 christi.nicolay@enron.com 2001-02-23
## 2156 christi.nicolay@enron.com 2001-02-23
## 2157 christi.nicolay@enron.com 2001-02-23
## 2158 christi.nicolay@enron.com 2001-02-23
## 2159 christi.nicolay@enron.com 2001-02-23
## 2160 ginger.dernehl@enron.com 2001-02-26
## 2161 ginger.dernehl@enron.com 2001-02-26
## 2162 ginger.dernehl@enron.com 2001-02-26
## 2163 ginger.dernehl@enron.com 2001-02-26
## 2164 ginger.dernehl@enron.com 2001-02-26
## 2165 christi.nicolay@enron.com 2001-02-27
## 2166 christi.nicolay@enron.com 2001-02-27
## 2167 james.d.steffes@enron.com 2001-03-01
## 2168 james.d.steffes@enron.com 2001-03-01
## 2169 james.d.steffes@enron.com 2001-03-01
## 2170 james.d.steffes@enron.com 2001-03-01
## 2171 james.d.steffes@enron.com 2001-03-01
## 2172 james.d.steffes@enron.com 2001-03-01
## 2173 james.d.steffes@enron.com 2001-03-01
## 2174 james.d.steffes@enron.com 2001-03-01
## 2175 james.d.steffes@enron.com 2001-03-01
## 2176 james.d.steffes@enron.com 2001-03-01
## 2177 christi.nicolay@enron.com 2001-03-02
## 2178 leslie.lawner@enron.com 2001-03-02
## 2179 christi.nicolay@enron.com 2001-03-02
## 2180 christi.nicolay@enron.com 2001-03-02
## 2181 christi.nicolay@enron.com 2001-03-02
## 2182 christi.nicolay@enron.com 2001-03-02
## 2183 tara.rafter@enron.com 2001-03-02
## 2184 tara.rafter@enron.com 2001-03-02
## 2185 tara.rafter@enron.com 2001-03-02
## 2186 tara.rafter@enron.com 2001-03-02
## 2187 tara.rafter@enron.com 2001-03-02
## 2188 christi.nicolay@enron.com 2001-03-02
## 2189 diana.scholtes@enron.com 2001-03-05
## 2190 christi.nicolay@enron.com 2001-03-06
## 2191 james.d.steffes@enron.com 2001-03-06
## 2192 james.d.steffes@enron.com 2001-03-06
## 2193 james.d.steffes@enron.com 2001-03-06
## 2194 james.d.steffes@enron.com 2001-03-06
## 2195 james.d.steffes@enron.com 2001-03-06
## 2196 james.d.steffes@enron.com 2001-03-06
## 2197 james.d.steffes@enron.com 2001-03-06
## 2198 james.d.steffes@enron.com 2001-03-06
## 2199 james.d.steffes@enron.com 2001-03-06
## 2200 david.poston@enron.com 2001-03-07
## 2201 david.poston@enron.com 2001-03-07
## 2202 david.poston@enron.com 2001-03-07
## 2203 david.poston@enron.com 2001-03-07
## 2204 david.poston@enron.com 2001-03-07
## 2205 david.poston@enron.com 2001-03-07
## 2206 david.poston@enron.com 2001-03-07
## 2207 david.poston@enron.com 2001-03-07
## 2208 david.poston@enron.com 2001-03-07
## 2209 david.poston@enron.com 2001-03-07
## 2210 david.poston@enron.com 2001-03-07
## 2211 david.poston@enron.com 2001-03-07
## 2212 david.poston@enron.com 2001-03-07
## 2213 linda.noske@enron.com 2001-03-07
## 2214 linda.noske@enron.com 2001-03-07
## 2215 linda.noske@enron.com 2001-03-07
## 2216 linda.noske@enron.com 2001-03-07
## 2217 linda.noske@enron.com 2001-03-07
## 2218 linda.noske@enron.com 2001-03-07
## 2219 linda.noske@enron.com 2001-03-07
## 2220 christi.nicolay@enron.com 2001-03-07
## 2221 christi.nicolay@enron.com 2001-03-07
## 2222 christi.nicolay@enron.com 2001-03-07
## 2223 christi.nicolay@enron.com 2001-03-07
## 2224 james.d.steffes@enron.com 2001-03-07
## 2225 james.d.steffes@enron.com 2001-03-07
## 2226 james.d.steffes@enron.com 2001-03-07
## 2227 james.d.steffes@enron.com 2001-03-07
## 2228 james.d.steffes@enron.com 2001-03-07
## 2229 james.d.steffes@enron.com 2001-03-07
## 2230 james.d.steffes@enron.com 2001-03-07
## 2231 james.d.steffes@enron.com 2001-03-07
## 2232 james.d.steffes@enron.com 2001-03-07
## 2233 james.d.steffes@enron.com 2001-03-07
## 2234 james.d.steffes@enron.com 2001-03-07
## 2235 james.d.steffes@enron.com 2001-03-07
## 2236 james.d.steffes@enron.com 2001-03-07
## 2237 linda.noske@enron.com 2001-03-08
## 2238 linda.noske@enron.com 2001-03-08
## 2239 linda.noske@enron.com 2001-03-08
## 2240 linda.noske@enron.com 2001-03-08
## 2241 linda.noske@enron.com 2001-03-08
## 2242 linda.noske@enron.com 2001-03-08
## 2243 linda.noske@enron.com 2001-03-08
## 2244 christi.nicolay@enron.com 2001-03-08
## 2245 christi.nicolay@enron.com 2001-03-08
## 2246 christi.nicolay@enron.com 2001-03-08
## 2247 sara.davidson@enron.com 2001-03-09
## 2248 sara.davidson@enron.com 2001-03-09
## 2249 tara.rafter@enron.com 2001-03-12
## 2250 tara.rafter@enron.com 2001-03-12
## 2251 tara.rafter@enron.com 2001-03-12
## 2252 cara.semperger@enron.com 2001-03-12
## 2253 bernadette.hawkins@enron.com 2001-03-12
## 2254 bernadette.hawkins@enron.com 2001-03-12
## 2255 bernadette.hawkins@enron.com 2001-03-12
## 2256 bernadette.hawkins@enron.com 2001-03-12
## 2257 bernadette.hawkins@enron.com 2001-03-12
## 2258 bernadette.hawkins@enron.com 2001-03-12
## 2259 bernadette.hawkins@enron.com 2001-03-12
## 2260 bernadette.hawkins@enron.com 2001-03-12
## 2261 bernadette.hawkins@enron.com 2001-03-12
## 2262 bernadette.hawkins@enron.com 2001-03-12
## 2263 bernadette.hawkins@enron.com 2001-03-12
## 2264 bernadette.hawkins@enron.com 2001-03-12
## 2265 bernadette.hawkins@enron.com 2001-03-12
## 2266 bernadette.hawkins@enron.com 2001-03-12
## 2267 diana.scholtes@enron.com 2001-03-12
## 2268 james.d.steffes@enron.com 2001-03-12
## 2269 james.d.steffes@enron.com 2001-03-12
## 2270 james.d.steffes@enron.com 2001-03-12
## 2271 james.d.steffes@enron.com 2001-03-12
## 2272 james.d.steffes@enron.com 2001-03-12
## 2273 james.d.steffes@enron.com 2001-03-12
## 2274 james.d.steffes@enron.com 2001-03-12
## 2275 james.d.steffes@enron.com 2001-03-12
## 2276 james.d.steffes@enron.com 2001-03-12
## 2277 james.d.steffes@enron.com 2001-03-12
## 2278 james.d.steffes@enron.com 2001-03-12
## 2279 james.d.steffes@enron.com 2001-03-12
## 2280 james.d.steffes@enron.com 2001-03-12
## 2281 cara.semperger@enron.com 2001-03-13
## 2282 james.d.steffes@enron.com 2001-03-14
## 2283 james.d.steffes@enron.com 2001-03-14
## 2284 james.d.steffes@enron.com 2001-03-14
## 2285 james.d.steffes@enron.com 2001-03-14
## 2286 james.d.steffes@enron.com 2001-03-14
## 2287 james.d.steffes@enron.com 2001-03-14
## 2288 ginger.dernehl@enron.com 2001-03-14
## 2289 ginger.dernehl@enron.com 2001-03-14
## 2290 ginger.dernehl@enron.com 2001-03-14
## 2291 ginger.dernehl@enron.com 2001-03-14
## 2292 james.d.steffes@enron.com 2001-03-14
## 2293 james.d.steffes@enron.com 2001-03-14
## 2294 james.d.steffes@enron.com 2001-03-14
## 2295 james.d.steffes@enron.com 2001-03-14
## 2296 james.d.steffes@enron.com 2001-03-14
## 2297 james.d.steffes@enron.com 2001-03-15
## 2298 christi.nicolay@enron.com 2001-03-15
## 2299 christi.nicolay@enron.com 2001-03-15
## 2300 christi.nicolay@enron.com 2001-03-15
## 2301 ginger.dernehl@enron.com 2001-03-15
## 2302 ginger.dernehl@enron.com 2001-03-15
## 2303 ginger.dernehl@enron.com 2001-03-15
## 2304 ginger.dernehl@enron.com 2001-03-15
## 2305 ginger.dernehl@enron.com 2001-03-15
## 2306 ginger.dernehl@enron.com 2001-03-15
## 2307 ginger.dernehl@enron.com 2001-03-15
## 2308 ginger.dernehl@enron.com 2001-03-15
## 2309 christi.nicolay@enron.com 2001-03-15
## 2310 christi.nicolay@enron.com 2001-03-15
## 2311 christi.nicolay@enron.com 2001-03-15
## 2312 christi.nicolay@enron.com 2001-03-15
## 2313 christi.nicolay@enron.com 2001-03-15
## 2314 christi.nicolay@enron.com 2001-03-15
## 2315 christi.nicolay@enron.com 2001-03-15
## 2316 tom.hoatson@enron.com 2001-03-15
## 2317 tom.hoatson@enron.com 2001-03-15
## 2318 tom.hoatson@enron.com 2001-03-15
## 2319 tom.hoatson@enron.com 2001-03-15
## 2320 tom.hoatson@enron.com 2001-03-15
## 2321 tom.hoatson@enron.com 2001-03-15
## 2322 tom.hoatson@enron.com 2001-03-15
## 2323 tom.hoatson@enron.com 2001-03-15
## 2324 james.d.steffes@enron.com 2001-03-15
## 2325 james.d.steffes@enron.com 2001-03-15
## 2326 james.d.steffes@enron.com 2001-03-15
## 2327 james.d.steffes@enron.com 2001-03-15
## 2328 james.d.steffes@enron.com 2001-03-15
## 2329 james.d.steffes@enron.com 2001-03-15
## 2330 alan.comnes@enron.com 2001-03-15
## 2331 mary.hain@enron.com 2001-03-15
## 2332 mary.hain@enron.com 2001-03-15
## 2333 mary.hain@enron.com 2001-03-15
## 2334 mary.hain@enron.com 2001-03-15
## 2335 mary.hain@enron.com 2001-03-15
## 2336 thane.twiggs@enron.com 2001-03-15
## 2337 thane.twiggs@enron.com 2001-03-15
## 2338 thane.twiggs@enron.com 2001-03-15
## 2339 thane.twiggs@enron.com 2001-03-15
## 2340 james.d.steffes@enron.com 2001-03-15
## 2341 james.d.steffes@enron.com 2001-03-15
## 2342 james.d.steffes@enron.com 2001-03-15
## 2343 susan.mara@enron.com 2001-03-15
## 2344 ginger.dernehl@enron.com 2001-03-16
## 2345 ginger.dernehl@enron.com 2001-03-16
## 2346 ginger.dernehl@enron.com 2001-03-16
## 2347 ginger.dernehl@enron.com 2001-03-16
## 2348 janet.butler@enron.com 2001-03-16
## 2349 janet.butler@enron.com 2001-03-16
## 2350 janet.butler@enron.com 2001-03-16
## 2351 janet.butler@enron.com 2001-03-16
## 2352 janet.butler@enron.com 2001-03-16
## 2353 janet.butler@enron.com 2001-03-16
## 2354 janet.butler@enron.com 2001-03-16
## 2355 janet.butler@enron.com 2001-03-16
## 2356 janet.butler@enron.com 2001-03-16
## 2357 janet.butler@enron.com 2001-03-16
## 2358 jay.dudley@enron.com 2001-03-18
## 2359 jay.dudley@enron.com 2001-03-18
## 2360 christi.nicolay@enron.com 2001-03-19
## 2361 christi.nicolay@enron.com 2001-03-19
## 2362 miyung.buster@enron.com 2001-03-19
## 2363 miyung.buster@enron.com 2001-03-19
## 2364 miyung.buster@enron.com 2001-03-19
## 2365 miyung.buster@enron.com 2001-03-19
## 2366 miyung.buster@enron.com 2001-03-19
## 2367 christi.nicolay@enron.com 2001-03-19
## 2368 christi.nicolay@enron.com 2001-03-19
## 2369 ginger.dernehl@enron.com 2001-03-19
## 2370 ginger.dernehl@enron.com 2001-03-19
## 2371 ginger.dernehl@enron.com 2001-03-19
## 2372 ginger.dernehl@enron.com 2001-03-19
## 2373 jeff.dasovich@enron.com 2001-03-19
## 2374 jeff.dasovich@enron.com 2001-03-19
## 2375 jeff.dasovich@enron.com 2001-03-19
## 2376 jeff.dasovich@enron.com 2001-03-19
## 2377 jeff.dasovich@enron.com 2001-03-19
## 2378 jeff.dasovich@enron.com 2001-03-19
## 2379 jeff.dasovich@enron.com 2001-03-19
## 2380 jeff.dasovich@enron.com 2001-03-19
## 2381 jeff.dasovich@enron.com 2001-03-19
## 2382 jeff.dasovich@enron.com 2001-03-19
## 2383 jeff.dasovich@enron.com 2001-03-19
## 2384 jeff.dasovich@enron.com 2001-03-19
## 2385 jeff.dasovich@enron.com 2001-03-19
## 2386 jeff.dasovich@enron.com 2001-03-19
## 2387 jeff.dasovich@enron.com 2001-03-19
## 2388 jeff.dasovich@enron.com 2001-03-19
## 2389 susan.mara@enron.com 2001-03-19
## 2390 susan.mara@enron.com 2001-03-19
## 2391 susan.mara@enron.com 2001-03-19
## 2392 susan.mara@enron.com 2001-03-19
## 2393 susan.mara@enron.com 2001-03-19
## 2394 susan.mara@enron.com 2001-03-19
## 2395 susan.mara@enron.com 2001-03-19
## 2396 susan.mara@enron.com 2001-03-19
## 2397 sara.davidson@enron.com 2001-03-19
## 2398 sara.davidson@enron.com 2001-03-19
## 2399 christi.nicolay@enron.com 2001-03-19
## 2400 christi.nicolay@enron.com 2001-03-19
## 2401 susan.mara@enron.com 2001-03-19
## 2402 susan.mara@enron.com 2001-03-19
## 2403 maureen.mcvicker@enron.com 2001-03-19
## 2404 maureen.mcvicker@enron.com 2001-03-19
## 2405 maureen.mcvicker@enron.com 2001-03-19
## 2406 maureen.mcvicker@enron.com 2001-03-19
## 2407 alan.comnes@enron.com 2001-03-19
## 2408 alan.comnes@enron.com 2001-03-19
## 2409 alan.comnes@enron.com 2001-03-19
## 2410 alan.comnes@enron.com 2001-03-19
## 2411 susan.mara@enron.com 2001-03-19
## 2412 susan.mara@enron.com 2001-03-19
## 2413 susan.mara@enron.com 2001-03-19
## 2414 susan.mara@enron.com 2001-03-19
## 2415 susan.mara@enron.com 2001-03-19
## 2416 susan.mara@enron.com 2001-03-19
## 2417 susan.mara@enron.com 2001-03-19
## 2418 susan.mara@enron.com 2001-03-19
## 2419 sara.davidson@enron.com 2001-03-19
## 2420 sara.davidson@enron.com 2001-03-19
## 2421 susan.mara@enron.com 2001-03-19
## 2422 jeff.dasovich@enron.com 2001-03-19
## 2423 jeff.dasovich@enron.com 2001-03-19
## 2424 jeff.dasovich@enron.com 2001-03-19
## 2425 jeff.dasovich@enron.com 2001-03-19
## 2426 jeff.dasovich@enron.com 2001-03-19
## 2427 jeff.dasovich@enron.com 2001-03-19
## 2428 jeff.dasovich@enron.com 2001-03-19
## 2429 jeff.dasovich@enron.com 2001-03-19
## 2430 jeff.dasovich@enron.com 2001-03-19
## 2431 jeff.dasovich@enron.com 2001-03-19
## 2432 janel.guerrero@enron.com 2001-03-20
## 2433 janel.guerrero@enron.com 2001-03-20
## 2434 janel.guerrero@enron.com 2001-03-20
## 2435 janel.guerrero@enron.com 2001-03-20
## 2436 janel.guerrero@enron.com 2001-03-20
## 2437 jeff.dasovich@enron.com 2001-03-20
## 2438 jeff.dasovich@enron.com 2001-03-20
## 2439 jeff.dasovich@enron.com 2001-03-20
## 2440 jeff.dasovich@enron.com 2001-03-20
## 2441 jeff.dasovich@enron.com 2001-03-20
## 2442 jeff.dasovich@enron.com 2001-03-20
## 2443 jeff.dasovich@enron.com 2001-03-20
## 2444 jeff.dasovich@enron.com 2001-03-20
## 2445 jeff.dasovich@enron.com 2001-03-20
## 2446 susan.mara@enron.com 2001-03-20
## 2447 susan.mara@enron.com 2001-03-20
## 2448 susan.mara@enron.com 2001-03-20
## 2449 susan.mara@enron.com 2001-03-20
## 2450 susan.mara@enron.com 2001-03-20
## 2451 susan.mara@enron.com 2001-03-20
## 2452 susan.mara@enron.com 2001-03-20
## 2453 susan.mara@enron.com 2001-03-20
## 2454 jeff.brown@enron.com 2001-03-20
## 2455 joseph.alamo@enron.com 2001-03-20
## 2456 joseph.alamo@enron.com 2001-03-20
## 2457 bernadette.hawkins@enron.com 2001-03-20
## 2458 bernadette.hawkins@enron.com 2001-03-20
## 2459 bernadette.hawkins@enron.com 2001-03-20
## 2460 bernadette.hawkins@enron.com 2001-03-20
## 2461 bernadette.hawkins@enron.com 2001-03-20
## 2462 bernadette.hawkins@enron.com 2001-03-20
## 2463 bernadette.hawkins@enron.com 2001-03-20
## 2464 bernadette.hawkins@enron.com 2001-03-20
## 2465 bernadette.hawkins@enron.com 2001-03-20
## 2466 bernadette.hawkins@enron.com 2001-03-20
## 2467 bernadette.hawkins@enron.com 2001-03-20
## 2468 bernadette.hawkins@enron.com 2001-03-20
## 2469 bernadette.hawkins@enron.com 2001-03-20
## 2470 bernadette.hawkins@enron.com 2001-03-20
## 2471 susan.mara@enron.com 2001-03-20
## 2472 susan.mara@enron.com 2001-03-20
## 2473 susan.mara@enron.com 2001-03-20
## 2474 susan.mara@enron.com 2001-03-20
## 2475 susan.mara@enron.com 2001-03-20
## 2476 susan.mara@enron.com 2001-03-20
## 2477 susan.mara@enron.com 2001-03-20
## 2478 susan.mara@enron.com 2001-03-20
## 2479 ginger.dernehl@enron.com 2001-03-20
## 2480 ginger.dernehl@enron.com 2001-03-20
## 2481 ginger.dernehl@enron.com 2001-03-20
## 2482 ginger.dernehl@enron.com 2001-03-20
## 2483 susan.mara@enron.com 2001-03-20
## 2484 christi.nicolay@enron.com 2001-03-20
## 2485 christi.nicolay@enron.com 2001-03-20
## 2486 christi.nicolay@enron.com 2001-03-20
## 2487 ginger.dernehl@enron.com 2001-03-21
## 2488 ginger.dernehl@enron.com 2001-03-21
## 2489 ginger.dernehl@enron.com 2001-03-21
## 2490 ginger.dernehl@enron.com 2001-03-21
## 2491 christi.nicolay@enron.com 2001-03-21
## 2492 christi.nicolay@enron.com 2001-03-21
## 2493 james.d.steffes@enron.com 2001-03-21
## 2494 james.d.steffes@enron.com 2001-03-21
## 2495 james.d.steffes@enron.com 2001-03-21
## 2496 james.d.steffes@enron.com 2001-03-21
## 2497 james.d.steffes@enron.com 2001-03-21
## 2498 james.d.steffes@enron.com 2001-03-21
## 2499 james.d.steffes@enron.com 2001-03-21
## 2500 james.d.steffes@enron.com 2001-03-21
## 2501 james.d.steffes@enron.com 2001-03-21
## 2502 james.d.steffes@enron.com 2001-03-21
## 2503 james.d.steffes@enron.com 2001-03-21
## 2504 james.d.steffes@enron.com 2001-03-21
## 2505 james.d.steffes@enron.com 2001-03-21
## 2506 james.d.steffes@enron.com 2001-03-21
## 2507 james.d.steffes@enron.com 2001-03-21
## 2508 james.d.steffes@enron.com 2001-03-21
## 2509 james.d.steffes@enron.com 2001-03-21
## 2510 james.d.steffes@enron.com 2001-03-21
## 2511 james.d.steffes@enron.com 2001-03-21
## 2512 janet.butler@enron.com 2001-03-21
## 2513 janet.butler@enron.com 2001-03-21
## 2514 janet.butler@enron.com 2001-03-21
## 2515 janet.butler@enron.com 2001-03-21
## 2516 janet.butler@enron.com 2001-03-21
## 2517 miyung.buster@enron.com 2001-03-21
## 2518 miyung.buster@enron.com 2001-03-21
## 2519 miyung.buster@enron.com 2001-03-21
## 2520 miyung.buster@enron.com 2001-03-21
## 2521 miyung.buster@enron.com 2001-03-21
## 2522 jeff.dasovich@enron.com 2001-03-21
## 2523 jeff.dasovich@enron.com 2001-03-21
## 2524 jeff.dasovich@enron.com 2001-03-21
## 2525 jeff.dasovich@enron.com 2001-03-21
## 2526 jeff.dasovich@enron.com 2001-03-21
## 2527 jeff.dasovich@enron.com 2001-03-21
## 2528 jeff.dasovich@enron.com 2001-03-21
## 2529 jeff.dasovich@enron.com 2001-03-21
## 2530 jeff.dasovich@enron.com 2001-03-21
## 2531 susan.mara@enron.com 2001-03-21
## 2532 susan.mara@enron.com 2001-03-21
## 2533 susan.mara@enron.com 2001-03-21
## 2534 susan.mara@enron.com 2001-03-21
## 2535 christi.nicolay@enron.com 2001-03-21
## 2536 christi.nicolay@enron.com 2001-03-21
## 2537 christi.nicolay@enron.com 2001-03-21
## 2538 christi.nicolay@enron.com 2001-03-21
## 2539 christi.nicolay@enron.com 2001-03-21
## 2540 susan.mara@enron.com 2001-03-21
## 2541 susan.mara@enron.com 2001-03-21
## 2542 susan.mara@enron.com 2001-03-21
## 2543 susan.mara@enron.com 2001-03-21
## 2544 susan.mara@enron.com 2001-03-21
## 2545 susan.mara@enron.com 2001-03-21
## 2546 susan.mara@enron.com 2001-03-21
## 2547 susan.mara@enron.com 2001-03-21
## 2548 susan.mara@enron.com 2001-03-21
## 2549 susan.mara@enron.com 2001-03-21
## 2550 susan.mara@enron.com 2001-03-21
## 2551 susan.mara@enron.com 2001-03-21
## 2552 susan.mara@enron.com 2001-03-21
## 2553 susan.mara@enron.com 2001-03-21
## 2554 susan.mara@enron.com 2001-03-21
## 2555 susan.mara@enron.com 2001-03-21
## 2556 james.d.steffes@enron.com 2001-03-21
## 2557 james.d.steffes@enron.com 2001-03-21
## 2558 james.d.steffes@enron.com 2001-03-21
## 2559 james.d.steffes@enron.com 2001-03-21
## 2560 james.d.steffes@enron.com 2001-03-21
## 2561 james.d.steffes@enron.com 2001-03-21
## 2562 james.d.steffes@enron.com 2001-03-21
## 2563 james.d.steffes@enron.com 2001-03-21
## 2564 james.d.steffes@enron.com 2001-03-21
## 2565 james.d.steffes@enron.com 2001-03-21
## 2566 james.d.steffes@enron.com 2001-03-21
## 2567 james.d.steffes@enron.com 2001-03-21
## 2568 james.d.steffes@enron.com 2001-03-21
## 2569 joseph.alamo@enron.com 2001-03-21
## 2570 christi.nicolay@enron.com 2001-03-21
## 2571 christi.nicolay@enron.com 2001-03-21
## 2572 susan.mara@enron.com 2001-03-21
## 2573 susan.mara@enron.com 2001-03-21
## 2574 rhonda.denton@enron.com 2001-03-21
## 2575 rhonda.denton@enron.com 2001-03-21
## 2576 rhonda.denton@enron.com 2001-03-21
## 2577 rhonda.denton@enron.com 2001-03-21
## 2578 rhonda.denton@enron.com 2001-03-21
## 2579 rhonda.denton@enron.com 2001-03-21
## 2580 rhonda.denton@enron.com 2001-03-21
## 2581 rhonda.denton@enron.com 2001-03-21
## 2582 rhonda.denton@enron.com 2001-03-21
## 2583 rhonda.denton@enron.com 2001-03-21
## 2584 rhonda.denton@enron.com 2001-03-21
## 2585 rhonda.denton@enron.com 2001-03-21
## 2586 rhonda.denton@enron.com 2001-03-21
## 2587 rhonda.denton@enron.com 2001-03-21
## 2588 rhonda.denton@enron.com 2001-03-21
## 2589 rhonda.denton@enron.com 2001-03-21
## 2590 rhonda.denton@enron.com 2001-03-21
## 2591 rhonda.denton@enron.com 2001-03-21
## 2592 rhonda.denton@enron.com 2001-03-21
## 2593 rhonda.denton@enron.com 2001-03-21
## 2594 rhonda.denton@enron.com 2001-03-21
## 2595 rhonda.denton@enron.com 2001-03-21
## 2596 rhonda.denton@enron.com 2001-03-21
## 2597 rhonda.denton@enron.com 2001-03-21
## 2598 rhonda.denton@enron.com 2001-03-21
## 2599 rhonda.denton@enron.com 2001-03-21
## 2600 rhonda.denton@enron.com 2001-03-21
## 2601 rhonda.denton@enron.com 2001-03-21
## 2602 rhonda.denton@enron.com 2001-03-21
## 2603 rhonda.denton@enron.com 2001-03-21
## 2604 rhonda.denton@enron.com 2001-03-21
## 2605 christi.nicolay@enron.com 2001-03-21
## 2606 christi.nicolay@enron.com 2001-03-21
## 2607 christi.nicolay@enron.com 2001-03-21
## 2608 christi.nicolay@enron.com 2001-03-21
## 2609 susan.mara@enron.com 2001-03-21
## 2610 susan.mara@enron.com 2001-03-21
## 2611 susan.mara@enron.com 2001-03-21
## 2612 susan.mara@enron.com 2001-03-21
## 2613 susan.mara@enron.com 2001-03-21
## 2614 susan.mara@enron.com 2001-03-21
## 2615 susan.mara@enron.com 2001-03-21
## 2616 susan.mara@enron.com 2001-03-21
## 2617 joseph.alamo@enron.com 2001-03-21
## 2618 susan.mara@enron.com 2001-03-21
## 2619 susan.mara@enron.com 2001-03-21
## 2620 susan.mara@enron.com 2001-03-21
## 2621 susan.mara@enron.com 2001-03-21
## 2622 susan.mara@enron.com 2001-03-21
## 2623 susan.mara@enron.com 2001-03-21
## 2624 susan.mara@enron.com 2001-03-21
## 2625 susan.mara@enron.com 2001-03-21
## 2626 susan.mara@enron.com 2001-03-21
## 2627 joe.connor@enron.com 2001-03-21
## 2628 joe.connor@enron.com 2001-03-21
## 2629 joe.connor@enron.com 2001-03-21
## 2630 joe.connor@enron.com 2001-03-21
## 2631 joe.connor@enron.com 2001-03-21
## 2632 joe.connor@enron.com 2001-03-21
## 2633 joe.connor@enron.com 2001-03-21
## 2634 joe.connor@enron.com 2001-03-21
## 2635 joe.connor@enron.com 2001-03-21
## 2636 joe.connor@enron.com 2001-03-21
## 2637 christi.nicolay@enron.com 2001-03-22
## 2638 miyung.buster@enron.com 2001-03-22
## 2639 miyung.buster@enron.com 2001-03-22
## 2640 miyung.buster@enron.com 2001-03-22
## 2641 miyung.buster@enron.com 2001-03-22
## 2642 miyung.buster@enron.com 2001-03-22
## 2643 james.d.steffes@enron.com 2001-03-22
## 2644 james.d.steffes@enron.com 2001-03-22
## 2645 james.d.steffes@enron.com 2001-03-22
## 2646 james.d.steffes@enron.com 2001-03-22
## 2647 james.d.steffes@enron.com 2001-03-22
## 2648 james.d.steffes@enron.com 2001-03-22
## 2649 james.d.steffes@enron.com 2001-03-22
## 2650 james.d.steffes@enron.com 2001-03-22
## 2651 james.d.steffes@enron.com 2001-03-22
## 2652 james.d.steffes@enron.com 2001-03-22
## 2653 james.d.steffes@enron.com 2001-03-22
## 2654 james.d.steffes@enron.com 2001-03-22
## 2655 james.d.steffes@enron.com 2001-03-22
## 2656 james.d.steffes@enron.com 2001-03-22
## 2657 james.d.steffes@enron.com 2001-03-22
## 2658 james.d.steffes@enron.com 2001-03-22
## 2659 james.d.steffes@enron.com 2001-03-22
## 2660 james.d.steffes@enron.com 2001-03-22
## 2661 james.d.steffes@enron.com 2001-03-22
## 2662 james.d.steffes@enron.com 2001-03-22
## 2663 james.d.steffes@enron.com 2001-03-22
## 2664 james.d.steffes@enron.com 2001-03-22
## 2665 james.d.steffes@enron.com 2001-03-22
## 2666 james.d.steffes@enron.com 2001-03-22
## 2667 james.d.steffes@enron.com 2001-03-21
## 2668 james.d.steffes@enron.com 2001-03-21
## 2669 james.d.steffes@enron.com 2001-03-21
## 2670 james.d.steffes@enron.com 2001-03-21
## 2671 james.d.steffes@enron.com 2001-03-21
## 2672 james.d.steffes@enron.com 2001-03-21
## 2673 james.d.steffes@enron.com 2001-03-21
## 2674 james.d.steffes@enron.com 2001-03-21
## 2675 james.d.steffes@enron.com 2001-03-21
## 2676 james.d.steffes@enron.com 2001-03-21
## 2677 james.d.steffes@enron.com 2001-03-21
## 2678 james.d.steffes@enron.com 2001-03-21
## 2679 james.d.steffes@enron.com 2001-03-21
## 2680 james.d.steffes@enron.com 2001-03-21
## 2681 james.d.steffes@enron.com 2001-03-21
## 2682 james.d.steffes@enron.com 2001-03-21
## 2683 james.d.steffes@enron.com 2001-03-21
## 2684 james.d.steffes@enron.com 2001-03-21
## 2685 james.d.steffes@enron.com 2001-03-21
## 2686 janet.butler@enron.com 2001-03-22
## 2687 janet.butler@enron.com 2001-03-22
## 2688 janet.butler@enron.com 2001-03-22
## 2689 janet.butler@enron.com 2001-03-22
## 2690 janet.butler@enron.com 2001-03-22
## 2691 janet.butler@enron.com 2001-03-22
## 2692 janet.butler@enron.com 2001-03-22
## 2693 janet.butler@enron.com 2001-03-22
## 2694 janet.butler@enron.com 2001-03-22
## 2695 janet.butler@enron.com 2001-03-22
## 2696 susan.mara@enron.com 2001-03-22
## 2697 susan.mara@enron.com 2001-03-22
## 2698 susan.mara@enron.com 2001-03-22
## 2699 susan.mara@enron.com 2001-03-22
## 2700 susan.mara@enron.com 2001-03-22
## 2701 susan.mara@enron.com 2001-03-22
## 2702 susan.mara@enron.com 2001-03-22
## 2703 susan.mara@enron.com 2001-03-22
## 2704 susan.mara@enron.com 2001-03-22
## 2705 susan.mara@enron.com 2001-03-22
## 2706 susan.mara@enron.com 2001-03-22
## 2707 alan.comnes@enron.com 2001-03-22
## 2708 susan.mara@enron.com 2001-03-22
## 2709 susan.mara@enron.com 2001-03-22
## 2710 susan.mara@enron.com 2001-03-22
## 2711 susan.mara@enron.com 2001-03-22
## 2712 susan.mara@enron.com 2001-03-22
## 2713 susan.mara@enron.com 2001-03-22
## 2714 christi.nicolay@enron.com 2001-03-22
## 2715 christi.nicolay@enron.com 2001-03-22
## 2716 christi.nicolay@enron.com 2001-03-22
## 2717 christi.nicolay@enron.com 2001-03-22
## 2718 charles.yeung@enron.com 2001-03-23
## 2719 charles.yeung@enron.com 2001-03-23
## 2720 charles.yeung@enron.com 2001-03-23
## 2721 cara.semperger@enron.com 2001-03-22
## 2722 cara.semperger@enron.com 2001-03-22
## 2723 cara.semperger@enron.com 2001-03-22
## 2724 cara.semperger@enron.com 2001-03-22
## 2725 cara.semperger@enron.com 2001-03-22
## 2726 cara.semperger@enron.com 2001-03-22
## 2727 cara.semperger@enron.com 2001-03-22
## 2728 cara.semperger@enron.com 2001-03-22
## 2729 cara.semperger@enron.com 2001-03-22
## 2730 cara.semperger@enron.com 2001-03-22
## 2731 cara.semperger@enron.com 2001-03-22
## 2732 cara.semperger@enron.com 2001-03-22
## 2733 cara.semperger@enron.com 2001-03-22
## 2734 cara.semperger@enron.com 2001-03-22
## 2735 cara.semperger@enron.com 2001-03-22
## 2736 cara.semperger@enron.com 2001-03-22
## 2737 miyung.buster@enron.com 2001-03-23
## 2738 miyung.buster@enron.com 2001-03-23
## 2739 miyung.buster@enron.com 2001-03-23
## 2740 miyung.buster@enron.com 2001-03-23
## 2741 miyung.buster@enron.com 2001-03-23
## 2742 lysa.akin@enron.com 2001-03-23
## 2743 lysa.akin@enron.com 2001-03-23
## 2744 miyung.buster@enron.com 2001-03-23
## 2745 miyung.buster@enron.com 2001-03-23
## 2746 miyung.buster@enron.com 2001-03-23
## 2747 miyung.buster@enron.com 2001-03-23
## 2748 miyung.buster@enron.com 2001-03-23
## 2749 richard.shapiro@enron.com 2001-03-23
## 2750 richard.shapiro@enron.com 2001-03-23
## 2751 richard.shapiro@enron.com 2001-03-23
## 2752 richard.shapiro@enron.com 2001-03-23
## 2753 richard.shapiro@enron.com 2001-03-23
## 2754 richard.shapiro@enron.com 2001-03-23
## 2755 richard.shapiro@enron.com 2001-03-23
## 2756 richard.shapiro@enron.com 2001-03-23
## 2757 richard.shapiro@enron.com 2001-03-23
## 2758 richard.shapiro@enron.com 2001-03-23
## 2759 richard.shapiro@enron.com 2001-03-23
## 2760 richard.shapiro@enron.com 2001-03-23
## 2761 richard.shapiro@enron.com 2001-03-23
## 2762 richard.shapiro@enron.com 2001-03-23
## 2763 richard.shapiro@enron.com 2001-03-23
## 2764 richard.shapiro@enron.com 2001-03-23
## 2765 richard.shapiro@enron.com 2001-03-23
## 2766 richard.shapiro@enron.com 2001-03-23
## 2767 richard.shapiro@enron.com 2001-03-23
## 2768 richard.shapiro@enron.com 2001-03-23
## 2769 richard.shapiro@enron.com 2001-03-23
## 2770 richard.shapiro@enron.com 2001-03-23
## 2771 richard.shapiro@enron.com 2001-03-23
## 2772 richard.shapiro@enron.com 2001-03-23
## 2773 richard.shapiro@enron.com 2001-03-23
## 2774 richard.shapiro@enron.com 2001-03-23
## 2775 richard.shapiro@enron.com 2001-03-23
## 2776 richard.shapiro@enron.com 2001-03-23
## 2777 richard.shapiro@enron.com 2001-03-23
## 2778 richard.shapiro@enron.com 2001-03-23
## 2779 richard.shapiro@enron.com 2001-03-23
## 2780 richard.shapiro@enron.com 2001-03-23
## 2781 richard.shapiro@enron.com 2001-03-23
## 2782 richard.shapiro@enron.com 2001-03-23
## 2783 richard.shapiro@enron.com 2001-03-23
## 2784 richard.shapiro@enron.com 2001-03-23
## 2785 richard.shapiro@enron.com 2001-03-23
## 2786 richard.shapiro@enron.com 2001-03-23
## 2787 richard.shapiro@enron.com 2001-03-23
## 2788 richard.shapiro@enron.com 2001-03-23
## 2789 richard.shapiro@enron.com 2001-03-23
## 2790 richard.shapiro@enron.com 2001-03-23
## 2791 richard.shapiro@enron.com 2001-03-23
## 2792 richard.shapiro@enron.com 2001-03-23
## 2793 richard.shapiro@enron.com 2001-03-23
## 2794 richard.shapiro@enron.com 2001-03-23
## 2795 richard.shapiro@enron.com 2001-03-23
## 2796 richard.shapiro@enron.com 2001-03-23
## 2797 richard.shapiro@enron.com 2001-03-23
## 2798 richard.shapiro@enron.com 2001-03-23
## 2799 richard.shapiro@enron.com 2001-03-23
## 2800 richard.shapiro@enron.com 2001-03-23
## 2801 richard.shapiro@enron.com 2001-03-23
## 2802 richard.shapiro@enron.com 2001-03-23
## 2803 richard.shapiro@enron.com 2001-03-23
## 2804 richard.shapiro@enron.com 2001-03-23
## 2805 janet.butler@enron.com 2001-03-23
## 2806 janet.butler@enron.com 2001-03-23
## 2807 janet.butler@enron.com 2001-03-23
## 2808 janet.butler@enron.com 2001-03-23
## 2809 janet.butler@enron.com 2001-03-23
## 2810 janet.butler@enron.com 2001-03-23
## 2811 janet.butler@enron.com 2001-03-23
## 2812 janet.butler@enron.com 2001-03-23
## 2813 janet.butler@enron.com 2001-03-23
## 2814 janet.butler@enron.com 2001-03-23
## 2815 ginger.dernehl@enron.com 2001-03-23
## 2816 ginger.dernehl@enron.com 2001-03-23
## 2817 ginger.dernehl@enron.com 2001-03-23
## 2818 ginger.dernehl@enron.com 2001-03-23
## 2819 miyung.buster@enron.com 2001-03-26
## 2820 miyung.buster@enron.com 2001-03-26
## 2821 miyung.buster@enron.com 2001-03-26
## 2822 miyung.buster@enron.com 2001-03-26
## 2823 miyung.buster@enron.com 2001-03-26
## 2824 susan.mara@enron.com 2001-03-26
## 2825 susan.mara@enron.com 2001-03-26
## 2826 susan.mara@enron.com 2001-03-26
## 2827 susan.mara@enron.com 2001-03-26
## 2828 susan.mara@enron.com 2001-03-26
## 2829 susan.mara@enron.com 2001-03-26
## 2830 susan.mara@enron.com 2001-03-26
## 2831 susan.mara@enron.com 2001-03-26
## 2832 ginger.dernehl@enron.com 2001-03-26
## 2833 ginger.dernehl@enron.com 2001-03-26
## 2834 ginger.dernehl@enron.com 2001-03-26
## 2835 ginger.dernehl@enron.com 2001-03-26
## 2836 ginger.dernehl@enron.com 2001-03-26
## 2837 ginger.dernehl@enron.com 2001-03-26
## 2838 ginger.dernehl@enron.com 2001-03-26
## 2839 ginger.dernehl@enron.com 2001-03-26
## 2840 ginger.dernehl@enron.com 2001-03-26
## 2841 ginger.dernehl@enron.com 2001-03-26
## 2842 miyung.buster@enron.com 2001-03-27
## 2843 miyung.buster@enron.com 2001-03-27
## 2844 miyung.buster@enron.com 2001-03-27
## 2845 miyung.buster@enron.com 2001-03-27
## 2846 miyung.buster@enron.com 2001-03-27
## 2847 miyung.buster@enron.com 2001-03-27
## 2848 miyung.buster@enron.com 2001-03-27
## 2849 miyung.buster@enron.com 2001-03-27
## 2850 miyung.buster@enron.com 2001-03-27
## 2851 miyung.buster@enron.com 2001-03-27
## 2852 janet.butler@enron.com 2001-03-27
## 2853 janet.butler@enron.com 2001-03-27
## 2854 janet.butler@enron.com 2001-03-27
## 2855 janet.butler@enron.com 2001-03-27
## 2856 janet.butler@enron.com 2001-03-27
## 2857 janet.butler@enron.com 2001-03-27
## 2858 janet.butler@enron.com 2001-03-27
## 2859 janet.butler@enron.com 2001-03-27
## 2860 janet.butler@enron.com 2001-03-27
## 2861 janet.butler@enron.com 2001-03-27
## 2862 janet.butler@enron.com 2001-03-28
## 2863 janet.butler@enron.com 2001-03-28
## 2864 janet.butler@enron.com 2001-03-28
## 2865 janet.butler@enron.com 2001-03-28
## 2866 janet.butler@enron.com 2001-03-28
## 2867 janet.butler@enron.com 2001-03-28
## 2868 janet.butler@enron.com 2001-03-28
## 2869 janet.butler@enron.com 2001-03-28
## 2870 janet.butler@enron.com 2001-03-28
## 2871 janet.butler@enron.com 2001-03-28
## 2872 miyung.buster@enron.com 2001-03-28
## 2873 miyung.buster@enron.com 2001-03-28
## 2874 miyung.buster@enron.com 2001-03-28
## 2875 miyung.buster@enron.com 2001-03-28
## 2876 miyung.buster@enron.com 2001-03-28
## 2877 tom.delaney@enron.com 2001-03-28
## 2878 tom.delaney@enron.com 2001-03-28
## 2879 tom.delaney@enron.com 2001-03-28
## 2880 tom.delaney@enron.com 2001-03-28
## 2881 tom.delaney@enron.com 2001-03-28
## 2882 tom.delaney@enron.com 2001-03-28
## 2883 tom.delaney@enron.com 2001-03-28
## 2884 tom.delaney@enron.com 2001-03-28
## 2885 tom.delaney@enron.com 2001-03-28
## 2886 tom.delaney@enron.com 2001-03-28
## 2887 tom.delaney@enron.com 2001-03-28
## 2888 tom.delaney@enron.com 2001-03-28
## 2889 tom.delaney@enron.com 2001-03-28
## 2890 tom.delaney@enron.com 2001-03-28
## 2891 tom.delaney@enron.com 2001-03-28
## 2892 tom.delaney@enron.com 2001-03-28
## 2893 tom.delaney@enron.com 2001-03-28
## 2894 tom.delaney@enron.com 2001-03-28
## 2895 tom.delaney@enron.com 2001-03-28
## 2896 tom.delaney@enron.com 2001-03-28
## 2897 tom.delaney@enron.com 2001-03-28
## 2898 tom.delaney@enron.com 2001-03-28
## 2899 tom.delaney@enron.com 2001-03-28
## 2900 sara.davidson@enron.com 2001-03-28
## 2901 sara.davidson@enron.com 2001-03-28
## 2902 sara.davidson@enron.com 2001-03-28
## 2903 sara.davidson@enron.com 2001-03-28
## 2904 janet.butler@enron.com 2001-03-29
## 2905 janet.butler@enron.com 2001-03-29
## 2906 janet.butler@enron.com 2001-03-29
## 2907 janet.butler@enron.com 2001-03-29
## 2908 janet.butler@enron.com 2001-03-29
## 2909 janet.butler@enron.com 2001-03-29
## 2910 janet.butler@enron.com 2001-03-29
## 2911 janet.butler@enron.com 2001-03-29
## 2912 janet.butler@enron.com 2001-03-29
## 2913 janet.butler@enron.com 2001-03-29
## 2914 susan.mara@enron.com 2001-03-29
## 2915 susan.mara@enron.com 2001-03-29
## 2916 susan.mara@enron.com 2001-03-29
## 2917 susan.mara@enron.com 2001-03-29
## 2918 susan.mara@enron.com 2001-03-29
## 2919 susan.mara@enron.com 2001-03-29
## 2920 susan.mara@enron.com 2001-03-29
## 2921 susan.mara@enron.com 2001-03-29
## 2922 christi.nicolay@enron.com 2001-03-29
## 2923 christi.nicolay@enron.com 2001-03-29
## 2924 christi.nicolay@enron.com 2001-03-29
## 2925 christi.nicolay@enron.com 2001-03-29
## 2926 christi.nicolay@enron.com 2001-03-29
## 2927 christi.nicolay@enron.com 2001-03-29
## 2928 christi.nicolay@enron.com 2001-03-29
## 2929 christi.nicolay@enron.com 2001-03-29
## 2930 christi.nicolay@enron.com 2001-03-29
## 2931 christi.nicolay@enron.com 2001-03-29
## 2932 shelley.corman@enron.com 2001-03-30
## 2933 shelley.corman@enron.com 2001-03-30
## 2934 shelley.corman@enron.com 2001-03-30
## 2935 shelley.corman@enron.com 2001-03-30
## 2936 shelley.corman@enron.com 2001-03-30
## 2937 shelley.corman@enron.com 2001-03-30
## 2938 shelley.corman@enron.com 2001-03-30
## 2939 shelley.corman@enron.com 2001-03-30
## 2940 shelley.corman@enron.com 2001-03-30
## 2941 shelley.corman@enron.com 2001-03-30
## 2942 shelley.corman@enron.com 2001-03-30
## 2943 shelley.corman@enron.com 2001-03-30
## 2944 shelley.corman@enron.com 2001-03-30
## 2945 shelley.corman@enron.com 2001-03-30
## 2946 shelley.corman@enron.com 2001-03-30
## 2947 shelley.corman@enron.com 2001-03-30
## 2948 shelley.corman@enron.com 2001-03-30
## 2949 shelley.corman@enron.com 2001-03-30
## 2950 shelley.corman@enron.com 2001-03-30
## 2951 shelley.corman@enron.com 2001-03-30
## 2952 shelley.corman@enron.com 2001-03-30
## 2953 shelley.corman@enron.com 2001-03-30
## 2954 shelley.corman@enron.com 2001-03-30
## 2955 shelley.corman@enron.com 2001-03-30
## 2956 shelley.corman@enron.com 2001-03-30
## 2957 shelley.corman@enron.com 2001-03-30
## 2958 shelley.corman@enron.com 2001-03-30
## 2959 shelley.corman@enron.com 2001-03-30
## 2960 shelley.corman@enron.com 2001-03-30
## 2961 shelley.corman@enron.com 2001-03-30
## 2962 shelley.corman@enron.com 2001-03-30
## 2963 shelley.corman@enron.com 2001-03-30
## 2964 shelley.corman@enron.com 2001-03-30
## 2965 shelley.corman@enron.com 2001-03-30
## 2966 shelley.corman@enron.com 2001-03-30
## 2967 shelley.corman@enron.com 2001-03-30
## 2968 shelley.corman@enron.com 2001-03-30
## 2969 shelley.corman@enron.com 2001-03-30
## 2970 shelley.corman@enron.com 2001-03-30
## 2971 shelley.corman@enron.com 2001-03-30
## 2972 shelley.corman@enron.com 2001-03-30
## 2973 shelley.corman@enron.com 2001-03-30
## 2974 shelley.corman@enron.com 2001-03-30
## 2975 shelley.corman@enron.com 2001-03-30
## 2976 shelley.corman@enron.com 2001-03-30
## 2977 shelley.corman@enron.com 2001-03-30
## 2978 shelley.corman@enron.com 2001-03-30
## 2979 shelley.corman@enron.com 2001-03-30
## 2980 shelley.corman@enron.com 2001-03-30
## 2981 shelley.corman@enron.com 2001-03-30
## 2982 shelley.corman@enron.com 2001-03-30
## 2983 shelley.corman@enron.com 2001-03-30
## 2984 shelley.corman@enron.com 2001-03-30
## 2985 shelley.corman@enron.com 2001-03-30
## 2986 shelley.corman@enron.com 2001-03-30
## 2987 shelley.corman@enron.com 2001-03-30
## 2988 shelley.corman@enron.com 2001-03-30
## 2989 shelley.corman@enron.com 2001-03-30
## 2990 shelley.corman@enron.com 2001-03-30
## 2991 shelley.corman@enron.com 2001-03-30
## 2992 shelley.corman@enron.com 2001-03-30
## 2993 shelley.corman@enron.com 2001-03-30
## 2994 shelley.corman@enron.com 2001-03-30
## 2995 shelley.corman@enron.com 2001-03-30
## 2996 shelley.corman@enron.com 2001-03-30
## 2997 shelley.corman@enron.com 2001-03-30
## 2998 shelley.corman@enron.com 2001-03-30
## 2999 shelley.corman@enron.com 2001-03-30
## 3000 shelley.corman@enron.com 2001-03-30
## 3001 shelley.corman@enron.com 2001-03-30
## 3002 shelley.corman@enron.com 2001-03-30
## 3003 shelley.corman@enron.com 2001-03-30
## 3004 shelley.corman@enron.com 2001-03-30
## 3005 shelley.corman@enron.com 2001-03-30
## 3006 shelley.corman@enron.com 2001-03-30
## 3007 shelley.corman@enron.com 2001-03-30
## 3008 shelley.corman@enron.com 2001-03-30
## 3009 shelley.corman@enron.com 2001-03-30
## 3010 shelley.corman@enron.com 2001-03-30
## 3011 shelley.corman@enron.com 2001-03-30
## 3012 shelley.corman@enron.com 2001-03-30
## 3013 shelley.corman@enron.com 2001-03-30
## 3014 shelley.corman@enron.com 2001-03-30
## 3015 shelley.corman@enron.com 2001-03-30
## 3016 shelley.corman@enron.com 2001-03-30
## 3017 shelley.corman@enron.com 2001-03-30
## 3018 shelley.corman@enron.com 2001-03-30
## 3019 shelley.corman@enron.com 2001-03-30
## 3020 shelley.corman@enron.com 2001-03-30
## 3021 shelley.corman@enron.com 2001-03-30
## 3022 shelley.corman@enron.com 2001-03-30
## 3023 shelley.corman@enron.com 2001-03-30
## 3024 shelley.corman@enron.com 2001-03-30
## 3025 shelley.corman@enron.com 2001-03-30
## 3026 shelley.corman@enron.com 2001-03-30
## 3027 shelley.corman@enron.com 2001-03-30
## 3028 shelley.corman@enron.com 2001-03-30
## 3029 shelley.corman@enron.com 2001-03-30
## 3030 shelley.corman@enron.com 2001-03-30
## 3031 shelley.corman@enron.com 2001-03-30
## 3032 shelley.corman@enron.com 2001-03-30
## 3033 shelley.corman@enron.com 2001-03-30
## 3034 shelley.corman@enron.com 2001-03-30
## 3035 shelley.corman@enron.com 2001-03-30
## 3036 shelley.corman@enron.com 2001-03-30
## 3037 shelley.corman@enron.com 2001-03-30
## 3038 shelley.corman@enron.com 2001-03-30
## 3039 susan.mara@enron.com 2001-04-03
## 3040 susan.mara@enron.com 2001-04-03
## 3041 susan.mara@enron.com 2001-04-03
## 3042 susan.mara@enron.com 2001-04-03
## 3043 susan.mara@enron.com 2001-04-03
## 3044 susan.mara@enron.com 2001-04-03
## 3045 susan.mara@enron.com 2001-04-03
## 3046 susan.mara@enron.com 2001-04-03
## 3047 amr.ibrahim@enron.com 2001-04-04
## 3048 amr.ibrahim@enron.com 2001-04-04
## 3049 amr.ibrahim@enron.com 2001-04-04
## 3050 susan.mara@enron.com 2001-04-04
## 3051 susan.mara@enron.com 2001-04-04
## 3052 susan.mara@enron.com 2001-04-04
## 3053 susan.mara@enron.com 2001-04-04
## 3054 susan.mara@enron.com 2001-04-04
## 3055 susan.mara@enron.com 2001-04-04
## 3056 susan.mara@enron.com 2001-04-04
## 3057 susan.mara@enron.com 2001-04-04
## 3058 susan.mara@enron.com 2001-04-04
## 3059 susan.mara@enron.com 2001-04-04
## 3060 susan.mara@enron.com 2001-04-04
## 3061 susan.mara@enron.com 2001-04-04
## 3062 susan.mara@enron.com 2001-04-04
## 3063 susan.mara@enron.com 2001-04-04
## 3064 susan.mara@enron.com 2001-04-04
## 3065 susan.mara@enron.com 2001-04-04
## 3066 susan.mara@enron.com 2001-04-04
## 3067 susan.mara@enron.com 2001-04-04
## 3068 susan.mara@enron.com 2001-04-04
## 3069 susan.mara@enron.com 2001-04-04
## 3070 susan.mara@enron.com 2001-04-04
## 3071 susan.mara@enron.com 2001-04-04
## 3072 susan.mara@enron.com 2001-04-04
## 3073 susan.mara@enron.com 2001-04-04
## 3074 susan.mara@enron.com 2001-04-04
## 3075 susan.mara@enron.com 2001-04-04
## 3076 susan.mara@enron.com 2001-04-04
## 3077 susan.mara@enron.com 2001-04-04
## 3078 susan.mara@enron.com 2001-04-04
## 3079 susan.mara@enron.com 2001-04-04
## 3080 susan.mara@enron.com 2001-04-04
## 3081 susan.mara@enron.com 2001-04-04
## 3082 susan.mara@enron.com 2001-04-04
## 3083 susan.mara@enron.com 2001-04-04
## 3084 susan.mara@enron.com 2001-04-04
## 3085 susan.mara@enron.com 2001-04-04
## 3086 susan.mara@enron.com 2001-04-04
## 3087 susan.mara@enron.com 2001-04-04
## 3088 susan.mara@enron.com 2001-04-04
## 3089 susan.mara@enron.com 2001-04-04
## 3090 susan.mara@enron.com 2001-04-05
## 3091 susan.mara@enron.com 2001-04-05
## 3092 susan.mara@enron.com 2001-04-05
## 3093 susan.mara@enron.com 2001-04-05
## 3094 susan.mara@enron.com 2001-04-05
## 3095 susan.mara@enron.com 2001-04-05
## 3096 susan.mara@enron.com 2001-04-05
## 3097 susan.mara@enron.com 2001-04-05
## 3098 ginger.dernehl@enron.com 2001-04-05
## 3099 ginger.dernehl@enron.com 2001-04-05
## 3100 ginger.dernehl@enron.com 2001-04-05
## 3101 ginger.dernehl@enron.com 2001-04-05
## 3102 susan.mara@enron.com 2001-04-05
## 3103 susan.mara@enron.com 2001-04-05
## 3104 susan.mara@enron.com 2001-04-05
## 3105 susan.mara@enron.com 2001-04-05
## 3106 susan.mara@enron.com 2001-04-05
## 3107 susan.mara@enron.com 2001-04-05
## 3108 susan.mara@enron.com 2001-04-05
## 3109 susan.mara@enron.com 2001-04-05
## 3110 sandra.mccubbin@enron.com 2001-04-05
## 3111 sandra.mccubbin@enron.com 2001-04-05
## 3112 sandra.mccubbin@enron.com 2001-04-05
## 3113 sandra.mccubbin@enron.com 2001-04-05
## 3114 sandra.mccubbin@enron.com 2001-04-05
## 3115 sandra.mccubbin@enron.com 2001-04-05
## 3116 sandra.mccubbin@enron.com 2001-04-05
## 3117 sandra.mccubbin@enron.com 2001-04-05
## 3118 sandra.mccubbin@enron.com 2001-04-05
## 3119 sandra.mccubbin@enron.com 2001-04-05
## 3120 sandra.mccubbin@enron.com 2001-04-05
## 3121 sandra.mccubbin@enron.com 2001-04-05
## 3122 sandra.mccubbin@enron.com 2001-04-05
## 3123 sandra.mccubbin@enron.com 2001-04-05
## 3124 christi.nicolay@enron.com 2001-04-05
## 3125 christi.nicolay@enron.com 2001-04-05
## 3126 joseph.alamo@enron.com 2001-04-05
## 3127 joseph.alamo@enron.com 2001-04-05
## 3128 joseph.alamo@enron.com 2001-04-05
## 3129 joseph.alamo@enron.com 2001-04-05
## 3130 joseph.alamo@enron.com 2001-04-05
## 3131 joseph.alamo@enron.com 2001-04-05
## 3132 joseph.alamo@enron.com 2001-04-05
## 3133 joseph.alamo@enron.com 2001-04-05
## 3134 james.d.steffes@enron.com 2001-04-09
## 3135 james.d.steffes@enron.com 2001-04-09
## 3136 james.d.steffes@enron.com 2001-04-09
## 3137 james.d.steffes@enron.com 2001-04-09
## 3138 james.d.steffes@enron.com 2001-04-09
## 3139 james.d.steffes@enron.com 2001-04-09
## 3140 james.d.steffes@enron.com 2001-04-09
## 3141 james.d.steffes@enron.com 2001-04-09
## 3142 james.d.steffes@enron.com 2001-04-09
## 3143 james.d.steffes@enron.com 2001-04-09
## 3144 james.d.steffes@enron.com 2001-04-09
## 3145 james.d.steffes@enron.com 2001-04-09
## 3146 james.d.steffes@enron.com 2001-04-09
## 3147 james.d.steffes@enron.com 2001-04-09
## 3148 james.d.steffes@enron.com 2001-04-09
## 3149 james.d.steffes@enron.com 2001-04-09
## 3150 james.d.steffes@enron.com 2001-04-09
## 3151 james.d.steffes@enron.com 2001-04-09
## 3152 james.d.steffes@enron.com 2001-04-09
## 3153 james.d.steffes@enron.com 2001-04-09
## 3154 james.d.steffes@enron.com 2001-04-09
## 3155 james.d.steffes@enron.com 2001-04-09
## 3156 james.d.steffes@enron.com 2001-04-09
## 3157 james.d.steffes@enron.com 2001-04-09
## 3158 james.d.steffes@enron.com 2001-04-09
## 3159 james.d.steffes@enron.com 2001-04-09
## 3160 james.d.steffes@enron.com 2001-04-09
## 3161 james.d.steffes@enron.com 2001-04-09
## 3162 james.d.steffes@enron.com 2001-04-09
## 3163 james.d.steffes@enron.com 2001-04-09
## 3164 james.d.steffes@enron.com 2001-04-09
## 3165 james.d.steffes@enron.com 2001-04-09
## 3166 james.d.steffes@enron.com 2001-04-09
## 3167 james.d.steffes@enron.com 2001-04-09
## 3168 james.d.steffes@enron.com 2001-04-09
## 3169 james.d.steffes@enron.com 2001-04-09
## 3170 james.d.steffes@enron.com 2001-04-09
## 3171 james.d.steffes@enron.com 2001-04-09
## 3172 james.d.steffes@enron.com 2001-04-09
## 3173 james.d.steffes@enron.com 2001-04-09
## 3174 james.d.steffes@enron.com 2001-04-09
## 3175 james.d.steffes@enron.com 2001-04-09
## 3176 james.d.steffes@enron.com 2001-04-09
## 3177 james.d.steffes@enron.com 2001-04-09
## 3178 james.d.steffes@enron.com 2001-04-09
## 3179 james.d.steffes@enron.com 2001-04-09
## 3180 james.d.steffes@enron.com 2001-04-09
## 3181 james.d.steffes@enron.com 2001-04-09
## 3182 james.d.steffes@enron.com 2001-04-09
## 3183 james.d.steffes@enron.com 2001-04-09
## 3184 james.d.steffes@enron.com 2001-04-09
## 3185 james.d.steffes@enron.com 2001-04-09
## 3186 james.d.steffes@enron.com 2001-04-09
## 3187 james.d.steffes@enron.com 2001-04-09
## 3188 james.d.steffes@enron.com 2001-04-09
## 3189 james.d.steffes@enron.com 2001-04-09
## 3190 james.d.steffes@enron.com 2001-04-09
## 3191 james.d.steffes@enron.com 2001-04-09
## 3192 james.d.steffes@enron.com 2001-04-09
## 3193 james.d.steffes@enron.com 2001-04-09
## 3194 james.d.steffes@enron.com 2001-04-09
## 3195 james.d.steffes@enron.com 2001-04-09
## 3196 ginger.dernehl@enron.com 2001-04-09
## 3197 ginger.dernehl@enron.com 2001-04-09
## 3198 ginger.dernehl@enron.com 2001-04-09
## 3199 ginger.dernehl@enron.com 2001-04-09
## 3200 susan.mara@enron.com 2001-04-09
## 3201 susan.mara@enron.com 2001-04-09
## 3202 susan.mara@enron.com 2001-04-09
## 3203 susan.mara@enron.com 2001-04-09
## 3204 susan.mara@enron.com 2001-04-09
## 3205 susan.mara@enron.com 2001-04-09
## 3206 susan.mara@enron.com 2001-04-09
## 3207 susan.mara@enron.com 2001-04-09
## 3208 ginger.dernehl@enron.com 2001-04-10
## 3209 ginger.dernehl@enron.com 2001-04-10
## 3210 ginger.dernehl@enron.com 2001-04-10
## 3211 ginger.dernehl@enron.com 2001-04-10
## 3212 amr.ibrahim@enron.com 2001-04-13
## 3213 amr.ibrahim@enron.com 2001-04-13
## 3214 amr.ibrahim@enron.com 2001-04-13
## 3215 amr.ibrahim@enron.com 2001-04-13
## 3216 ginger.dernehl@enron.com 2001-04-13
## 3217 ginger.dernehl@enron.com 2001-04-13
## 3218 ginger.dernehl@enron.com 2001-04-13
## 3219 ginger.dernehl@enron.com 2001-04-13
## 3220 jubran.whalan@enron.com 2001-04-16
## 3221 amr.ibrahim@enron.com 2001-04-16
## 3222 amr.ibrahim@enron.com 2001-04-16
## 3223 amr.ibrahim@enron.com 2001-04-16
## 3224 amr.ibrahim@enron.com 2001-04-16
## 3225 amr.ibrahim@enron.com 2001-04-17
## 3226 amr.ibrahim@enron.com 2001-04-17
## 3227 amr.ibrahim@enron.com 2001-04-17
## 3228 amr.ibrahim@enron.com 2001-04-17
## 3229 susan.mara@enron.com 2001-04-17
## 3230 susan.mara@enron.com 2001-04-17
## 3231 susan.mara@enron.com 2001-04-17
## 3232 susan.mara@enron.com 2001-04-17
## 3233 susan.mara@enron.com 2001-04-17
## 3234 susan.mara@enron.com 2001-04-17
## 3235 susan.mara@enron.com 2001-04-17
## 3236 susan.mara@enron.com 2001-04-17
## 3237 christi.nicolay@enron.com 2001-04-18
## 3238 christi.nicolay@enron.com 2001-04-18
## 3239 christi.nicolay@enron.com 2001-04-18
## 3240 christi.nicolay@enron.com 2001-04-18
## 3241 christi.nicolay@enron.com 2001-04-18
## 3242 christi.nicolay@enron.com 2001-04-18
## 3243 christi.nicolay@enron.com 2001-04-18
## 3244 christi.nicolay@enron.com 2001-04-18
## 3245 susan.mara@enron.com 2001-04-19
## 3246 susan.mara@enron.com 2001-04-19
## 3247 susan.mara@enron.com 2001-04-19
## 3248 susan.mara@enron.com 2001-04-19
## 3249 susan.mara@enron.com 2001-04-19
## 3250 susan.mara@enron.com 2001-04-19
## 3251 susan.mara@enron.com 2001-04-19
## 3252 susan.mara@enron.com 2001-04-19
## 3253 susan.mara@enron.com 2001-04-19
## 3254 susan.mara@enron.com 2001-04-19
## 3255 susan.mara@enron.com 2001-04-19
## 3256 susan.mara@enron.com 2001-04-19
## 3257 susan.mara@enron.com 2001-04-19
## 3258 susan.mara@enron.com 2001-04-19
## 3259 susan.mara@enron.com 2001-04-19
## 3260 susan.mara@enron.com 2001-04-19
## 3261 susan.mara@enron.com 2001-04-20
## 3262 susan.mara@enron.com 2001-04-20
## 3263 susan.mara@enron.com 2001-04-20
## 3264 susan.mara@enron.com 2001-04-20
## 3265 susan.mara@enron.com 2001-04-20
## 3266 susan.mara@enron.com 2001-04-20
## 3267 susan.mara@enron.com 2001-04-20
## 3268 susan.mara@enron.com 2001-04-20
## 3269 christi.nicolay@enron.com 2001-04-25
## 3270 ginger.dernehl@enron.com 2001-04-27
## 3271 ginger.dernehl@enron.com 2001-04-27
## 3272 ginger.dernehl@enron.com 2001-04-27
## 3273 ginger.dernehl@enron.com 2001-04-27
## 3274 janel.guerrero@enron.com 2001-04-27
## 3275 janel.guerrero@enron.com 2001-04-27
## 3276 janel.guerrero@enron.com 2001-04-27
## 3277 janel.guerrero@enron.com 2001-04-27
## 3278 janel.guerrero@enron.com 2001-04-27
## 3279 janel.guerrero@enron.com 2001-04-27
## 3280 janel.guerrero@enron.com 2001-04-27
## 3281 janel.guerrero@enron.com 2001-04-27
## 3282 ginger.dernehl@enron.com 2001-04-27
## 3283 ginger.dernehl@enron.com 2001-04-27
## 3284 ginger.dernehl@enron.com 2001-04-27
## 3285 ginger.dernehl@enron.com 2001-04-27
## 3286 ginger.dernehl@enron.com 2001-04-30
## 3287 ginger.dernehl@enron.com 2001-04-30
## 3288 ginger.dernehl@enron.com 2001-04-30
## 3289 ginger.dernehl@enron.com 2001-04-30
## 3290 amr.ibrahim@enron.com 2001-04-30
## 3291 amr.ibrahim@enron.com 2001-04-30
## 3292 amr.ibrahim@enron.com 2001-04-30
## 3293 amr.ibrahim@enron.com 2001-04-30
## 3294 amr.ibrahim@enron.com 2001-04-30
## 3295 christi.nicolay@enron.com 2001-04-30
## 3296 christi.nicolay@enron.com 2001-04-30
## 3297 christi.nicolay@enron.com 2001-04-30
## 3298 susan.mara@enron.com 2001-05-01
## 3299 susan.mara@enron.com 2001-05-01
## 3300 susan.mara@enron.com 2001-05-01
## 3301 susan.mara@enron.com 2001-05-01
## 3302 susan.mara@enron.com 2001-05-01
## 3303 susan.mara@enron.com 2001-05-01
## 3304 susan.mara@enron.com 2001-05-01
## 3305 susan.mara@enron.com 2001-05-01
## 3306 susan.mara@enron.com 2001-05-02
## 3307 susan.mara@enron.com 2001-05-02
## 3308 susan.mara@enron.com 2001-05-02
## 3309 susan.mara@enron.com 2001-05-02
## 3310 susan.mara@enron.com 2001-05-02
## 3311 susan.mara@enron.com 2001-05-02
## 3312 susan.mara@enron.com 2001-05-02
## 3313 susan.mara@enron.com 2001-05-02
## 3314 susan.mara@enron.com 2001-05-07
## 3315 susan.mara@enron.com 2001-05-07
## 3316 susan.mara@enron.com 2001-05-07
## 3317 susan.mara@enron.com 2001-05-07
## 3318 susan.mara@enron.com 2001-05-07
## 3319 susan.mara@enron.com 2001-05-07
## 3320 susan.mara@enron.com 2001-05-07
## 3321 susan.mara@enron.com 2001-05-07
## 3322 sonya.johnson@enron.com 2001-05-22
## 3323 sonya.johnson@enron.com 2001-05-22
## 3324 sonya.johnson@enron.com 2001-05-22
## 3325 sonya.johnson@enron.com 2001-05-22
## 3326 sonya.johnson@enron.com 2001-05-22
## 3327 sonya.johnson@enron.com 2001-05-22
## 3328 sonya.johnson@enron.com 2001-05-22
## 3329 sonya.johnson@enron.com 2001-05-22
## 3330 sonya.johnson@enron.com 2001-05-22
## 3331 maureen.mcvicker@enron.com 2001-05-24
## 3332 maureen.mcvicker@enron.com 2001-05-24
## 3333 maureen.mcvicker@enron.com 2001-05-24
## 3334 maureen.mcvicker@enron.com 2001-05-24
## 3335 amr.ibrahim@enron.com 2001-05-30
## 3336 amr.ibrahim@enron.com 2001-05-30
## 3337 amr.ibrahim@enron.com 2001-05-30
## 3338 amr.ibrahim@enron.com 2001-05-30
## 3339 amr.ibrahim@enron.com 2001-05-30
## 3340 miyung.buster@enron.com 2000-11-01
## 3341 miyung.buster@enron.com 2000-11-01
## 3342 miyung.buster@enron.com 2000-11-01
## 3343 miyung.buster@enron.com 2000-11-01
## 3344 miyung.buster@enron.com 2000-11-01
## 3345 stephen.schwarzbach@enron.com 2001-09-25
## 3346 edie.leschber@enron.com 2001-09-20
## 3347 dawn.derr@enron.com 2001-09-13
## 3348 terry.west@enron.com 2001-09-12
## 3349 patti.mccall@enron.com 2001-09-07
## 3350 dawn.derr@enron.com 2001-09-07
## 3351 dawn.derr@enron.com 2001-08-31
## 3352 stephen.schwarzbach@enron.com 2001-06-11
## 3353 dawn.derr@enron.com 2001-07-13
## 3354 terry.west@enron.com 2001-02-15
## 3355 stephen.schwarzbach@enron.com 2001-02-21
## 3356 terry.west@enron.com 2001-04-19
## 3357 terry.west@enron.com 2001-05-15
## 3358 laura.valencia@enron.com 2001-09-07
## 3359 jessica.uhl@enron.com 2001-05-07
## 3360 jessica.uhl@enron.com 2001-05-07
## 3361 jessica.uhl@enron.com 2001-05-09
## 3362 jessica.uhl@enron.com 2001-05-09
## 3363 rod.hayslett@enron.com 2001-02-15
## 3364 rod.hayslett@enron.com 2001-02-15
## 3365 rod.hayslett@enron.com 2001-02-15
## 3366 joannie.williamson@enron.com 2001-02-14
## 3367 elaine.concklin@enron.com 2001-02-01
## 3368 elaine.concklin@enron.com 2001-02-01
## 3369 tim.kissner@enron.com 2001-03-23
## 3370 dawn.derr@enron.com 2001-10-16
## 3371 james.hollman@enron.com 2001-10-10
## 3372 steve.gilbert@enron.com 2001-08-17
## 3373 leesa.hutcherson@enron.com 2001-08-03
## 3374 rod.hayslett@enron.com 2001-02-23
## 3375 rod.hayslett@enron.com 2001-02-23
## 3376 rod.hayslett@enron.com 2001-02-23
## 3377 rod.hayslett@enron.com 2001-02-23
## 3378 rod.hayslett@enron.com 2001-02-23
## 3379 rod.hayslett@enron.com 2001-02-23
## 3380 rod.hayslett@enron.com 2001-02-23
## 3381 rod.hayslett@enron.com 2001-02-23
## 3382 rod.hayslett@enron.com 2001-02-23
## 3383 rod.hayslett@enron.com 2001-02-23
## 3384 rod.hayslett@enron.com 2001-02-23
## 3385 rod.hayslett@enron.com 2001-02-23
## 3386 rod.hayslett@enron.com 2001-04-12
## 3387 rod.hayslett@enron.com 2001-04-12
## 3388 rod.hayslett@enron.com 2001-04-12
## 3389 rod.hayslett@enron.com 2001-04-12
## 3390 rod.hayslett@enron.com 2001-04-12
## 3391 rod.hayslett@enron.com 2001-04-12
## 3392 hoyt.ivey@enron.com 2001-03-30
## 3393 rod.hayslett@enron.com 2001-03-23
## 3394 rod.hayslett@enron.com 2001-03-23
## 3395 rod.hayslett@enron.com 2001-03-23
## 3396 rod.hayslett@enron.com 2001-03-23
## 3397 rod.hayslett@enron.com 2001-03-23
## 3398 rod.hayslett@enron.com 2001-03-23
## 3399 rod.hayslett@enron.com 2001-03-23
## 3400 rod.hayslett@enron.com 2001-03-23
## 3401 rod.hayslett@enron.com 2001-03-23
## 3402 rod.hayslett@enron.com 2001-03-23
## 3403 rod.hayslett@enron.com 2001-03-23
## 3404 rod.hayslett@enron.com 2001-03-23
## 3405 rod.hayslett@enron.com 2001-03-23
## 3406 rod.hayslett@enron.com 2001-03-23
## 3407 rod.hayslett@enron.com 2001-03-23
## 3408 ann.vaughn@enron.com 2001-03-06
## 3409 rod.hayslett@enron.com 2001-03-02
## 3410 lisa.gillette@enron.com 2001-02-16
## 3411 steven.harris@enron.com 2001-09-10
## 3412 norma.mottu@enron.com 2001-05-08
## 3413 billie.akhave@enron.com 2001-06-05
## 3414 tracy.geaccone@enron.com 2001-10-30
## 3415 steven.harris@enron.com 2001-08-06
## 3416 messaging.administration@enron.com 2001-02-28
## 3417 maria.mitchell@enron.com 2001-02-28
## 3418 rod.hayslett@enron.com 2001-11-09
## 3419 dan.rittgers@enron.com 2001-11-02
## 3420 dan.rittgers@enron.com 2001-11-02
## 3421 mark.mcconnell@enron.com 2001-10-15
## 3422 mark.mcconnell@enron.com 2001-10-15
## 3423 mark.mcconnell@enron.com 2001-10-15
## 3424 mark.mcconnell@enron.com 2001-10-15
## 3425 mark.mcconnell@enron.com 2001-10-15
## 3426 rod.hayslett@enron.com 2001-07-26
## 3427 rod.hayslett@enron.com 2001-07-26
## 3428 rod.hayslett@enron.com 2001-07-26
## 3429 e..anderson@enron.com 2001-07-16
## 3430 dan.fancler@enron.com 2001-04-03
## 3431 dan.fancler@enron.com 2001-04-03
## 3432 40enron@enron.com 2001-04-23
## 3433 dan.fancler@enron.com 2001-03-20
## 3434 dan.fancler@enron.com 2001-03-20
## 3435 dan.fancler@enron.com 2001-03-20
## 3436 dan.fancler@enron.com 2001-03-20
## 3437 rod.hayslett@enron.com 2001-04-27
## 3438 rod.hayslett@enron.com 2001-04-27
## 3439 rod.hayslett@enron.com 2001-04-27
## 3440 jan.moore@enron.com 2001-05-11
## 3441 rod.hayslett@enron.com 2001-04-20
## 3442 rod.hayslett@enron.com 2001-04-20
## 3443 rod.hayslett@enron.com 2001-04-20
## 3444 rod.hayslett@enron.com 2001-04-20
## 3445 rod.hayslett@enron.com 2001-04-20
## 3446 rod.hayslett@enron.com 2001-04-20
## 3447 jan.moore@enron.com 2001-04-04
## 3448 jan.moore@enron.com 2001-04-04
## 3449 jan.moore@enron.com 2001-04-12
## 3450 jan.moore@enron.com 2001-04-09
## 3451 rod.hayslett@enron.com 2001-04-09
## 3452 debbie.moseley@enron.com 2001-04-04
## 3453 jan.moore@enron.com 2001-03-30
## 3454 jan.moore@enron.com 2001-03-30
## 3455 jan.moore@enron.com 2001-03-30
## 3456 jan.moore@enron.com 2001-03-30
## 3457 jan.moore@enron.com 2001-03-30
## 3458 jan.moore@enron.com 2001-03-30
## 3459 jan.moore@enron.com 2001-03-30
## 3460 jeanette.doll@enron.com 2001-03-15
## 3461 jan.moore@enron.com 2001-03-15
## 3462 jan.moore@enron.com 2001-03-15
## 3463 pallavi.goradia@enron.com 2001-03-08
## 3464 rod.hayslett@enron.com 2001-03-08
## 3465 rod.hayslett@enron.com 2001-03-08
## 3466 rod.hayslett@enron.com 2001-03-08
## 3467 rod.hayslett@enron.com 2001-03-05
## 3468 rod.hayslett@enron.com 2001-03-05
## 3469 rod.hayslett@enron.com 2001-03-05
## 3470 rod.hayslett@enron.com 2001-03-05
## 3471 rod.hayslett@enron.com 2001-03-05
## 3472 rod.hayslett@enron.com 2001-03-05
## 3473 rod.hayslett@enron.com 2001-03-05
## 3474 rod.hayslett@enron.com 2001-03-05
## 3475 rod.hayslett@enron.com 2001-03-05
## 3476 rod.hayslett@enron.com 2001-03-05
## 3477 sarabeth.smith@enron.com 2001-03-02
## 3478 sarabeth.smith@enron.com 2001-03-02
## 3479 sarabeth.smith@enron.com 2001-03-02
## 3480 sarabeth.smith@enron.com 2001-03-02
## 3481 jan.moore@enron.com 2001-03-02
## 3482 jan.moore@enron.com 2001-03-02
## 3483 jan.moore@enron.com 2001-03-02
## 3484 jan.moore@enron.com 2001-03-02
## 3485 jan.moore@enron.com 2001-03-02
## 3486 jan.moore@enron.com 2001-03-02
## 3487 jan.moore@enron.com 2001-03-02
## 3488 josie.call@enron.com 2001-03-02
## 3489 pallavi.goradia@enron.com 2001-02-23
## 3490 pallavi.goradia@enron.com 2001-02-23
## 3491 pallavi.goradia@enron.com 2001-02-23
## 3492 pallavi.goradia@enron.com 2001-02-23
## 3493 pallavi.goradia@enron.com 2001-02-23
## 3494 pallavi.goradia@enron.com 2001-02-23
## 3495 pallavi.goradia@enron.com 2001-02-23
## 3496 rod.hayslett@enron.com 2001-02-20
## 3497 rod.hayslett@enron.com 2001-02-20
## 3498 jan.moore@enron.com 2001-02-15
## 3499 jan.moore@enron.com 2001-02-15
## 3500 jan.moore@enron.com 2001-02-15
## 3501 jan.moore@enron.com 2001-02-15
## 3502 jan.moore@enron.com 2001-02-15
## 3503 jan.moore@enron.com 2001-02-15
## 3504 jan.moore@enron.com 2001-02-15
## 3505 pallavi.goradia@enron.com 2001-02-09
## 3506 pallavi.goradia@enron.com 2001-02-09
## 3507 pallavi.goradia@enron.com 2001-02-09
## 3508 pallavi.goradia@enron.com 2001-02-09
## 3509 pallavi.goradia@enron.com 2001-02-09
## 3510 pallavi.goradia@enron.com 2001-02-09
## 3511 pallavi.goradia@enron.com 2001-02-09
## 3512 jan.moore@enron.com 2001-02-02
## 3513 jan.moore@enron.com 2001-02-02
## 3514 jan.moore@enron.com 2001-02-02
## 3515 jan.moore@enron.com 2001-02-02
## 3516 jan.moore@enron.com 2001-02-02
## 3517 jan.moore@enron.com 2001-02-02
## 3518 jan.moore@enron.com 2001-02-02
## 3519 a..howard@enron.com 2001-11-28
## 3520 rod.hayslett@enron.com 2001-11-28
## 3521 rod.hayslett@enron.com 2001-11-28
## 3522 rod.hayslett@enron.com 2001-11-28
## 3523 rod.hayslett@enron.com 2001-11-28
## 3524 rod.hayslett@enron.com 2001-11-28
## 3525 rod.hayslett@enron.com 2001-11-28
## 3526 rod.hayslett@enron.com 2001-11-28
## 3527 rod.hayslett@enron.com 2001-11-28
## 3528 rod.hayslett@enron.com 2001-11-28
## 3529 rod.hayslett@enron.com 2001-11-28
## 3530 rod.hayslett@enron.com 2001-11-28
## 3531 james.saunders@enron.com 2001-11-28
## 3532 james.saunders@enron.com 2001-11-28
## 3533 ron.nightingale@enron.com 2001-11-28
## 3534 rod.hayslett@enron.com 2001-11-27
## 3535 rod.hayslett@enron.com 2001-11-27
## 3536 rod.hayslett@enron.com 2001-11-27
## 3537 rod.hayslett@enron.com 2001-11-27
## 3538 rod.hayslett@enron.com 2001-11-27
## 3539 rod.hayslett@enron.com 2001-11-27
## 3540 sarah.taylor@enron.com 2001-11-27
## 3541 sarah.taylor@enron.com 2001-11-27
## 3542 sarah.taylor@enron.com 2001-11-27
## 3543 rod.hayslett@enron.com 2001-11-27
## 3544 rod.hayslett@enron.com 2001-11-27
## 3545 rod.hayslett@enron.com 2001-11-27
## 3546 rod.hayslett@enron.com 2001-11-27
## 3547 rod.hayslett@enron.com 2001-11-27
## 3548 rod.hayslett@enron.com 2001-11-27
## 3549 rod.hayslett@enron.com 2001-11-27
## 3550 rod.hayslett@enron.com 2001-11-27
## 3551 jan.moore@enron.com 2001-11-27
## 3552 hoang.vo@enron.com 2001-11-27
## 3553 jan.moore@enron.com 2001-11-27
## 3554 ron.nightingale@enron.com 2001-11-27
## 3555 steve.gilbert@enron.com 2001-11-27
## 3556 steve.gilbert@enron.com 2001-11-27
## 3557 rod.hayslett@enron.com 2001-11-27
## 3558 debra.reed@enron.com 2001-11-27
## 3559 steven.harris@enron.com 2001-11-27
## 3560 rod.hayslett@enron.com 2001-11-27
## 3561 rod.hayslett@enron.com 2001-11-27
## 3562 rod.hayslett@enron.com 2001-11-27
## 3563 a..howard@enron.com 2001-11-27
## 3564 a..howard@enron.com 2001-11-27
## 3565 a..howard@enron.com 2001-11-27
## 3566 a..howard@enron.com 2001-11-27
## 3567 caroline.barnes@enron.com 2001-11-27
## 3568 rod.hayslett@enron.com 2001-11-27
## 3569 rod.hayslett@enron.com 2001-11-27
## 3570 rod.hayslett@enron.com 2001-11-27
## 3571 rod.hayslett@enron.com 2001-11-27
## 3572 jan.moore@enron.com 2001-11-27
## 3573 steve.kleb@enron.com 2001-11-27
## 3574 steve.kleb@enron.com 2001-11-27
## 3575 rod.hayslett@enron.com 2001-11-27
## 3576 rod.hayslett@enron.com 2001-11-27
## 3577 jan.moore@enron.com 2001-11-27
## 3578 jan.moore@enron.com 2001-11-27
## 3579 lindy.donoho@enron.com 2001-11-27
## 3580 lindy.donoho@enron.com 2001-11-27
## 3581 lindy.donoho@enron.com 2001-11-27
## 3582 james.saunders@enron.com 2001-11-27
## 3583 james.saunders@enron.com 2001-11-27
## 3584 greg.lewis@enron.com 2001-11-27
## 3585 greg.lewis@enron.com 2001-11-27
## 3586 rod.hayslett@enron.com 2001-11-27
## 3587 rod.hayslett@enron.com 2001-11-27
## 3588 rod.hayslett@enron.com 2001-11-27
## 3589 rod.hayslett@enron.com 2001-11-27
## 3590 rod.hayslett@enron.com 2001-11-27
## 3591 cheryl.perchal@enron.com 2001-11-26
## 3592 a..howard@enron.com 2001-11-26
## 3593 a..howard@enron.com 2001-11-26
## 3594 a..howard@enron.com 2001-11-26
## 3595 elaine.concklin@enron.com 2001-11-26
## 3596 elaine.concklin@enron.com 2001-11-26
## 3597 sal.dominguez@enron.com 2001-11-26
## 3598 rod.hayslett@enron.com 2001-11-26
## 3599 james.centilli@enron.com 2001-11-26
## 3600 james.centilli@enron.com 2001-11-26
## 3601 james.centilli@enron.com 2001-11-26
## 3602 stanley.horton@enron.com 2001-11-26
## 3603 michelle.lokay@enron.com 2001-11-26
## 3604 michelle.lokay@enron.com 2001-11-26
## 3605 michelle.lokay@enron.com 2001-11-26
## 3606 michelle.lokay@enron.com 2001-11-26
## 3607 michelle.lokay@enron.com 2001-11-26
## 3608 kevin.hyatt@enron.com 2001-11-26
## 3609 kevin.hyatt@enron.com 2001-11-26
## 3610 kevin.hyatt@enron.com 2001-11-26
## 3611 kevin.hyatt@enron.com 2001-11-26
## 3612 rod.hayslett@enron.com 2001-11-26
## 3613 rod.hayslett@enron.com 2001-11-26
## 3614 rod.hayslett@enron.com 2001-11-26
## 3615 rod.hayslett@enron.com 2001-11-26
## 3616 james.centilli@enron.com 2001-11-26
## 3617 james.centilli@enron.com 2001-11-26
## 3618 james.centilli@enron.com 2001-11-26
## 3619 lindy.donoho@enron.com 2001-11-26
## 3620 lindy.donoho@enron.com 2001-11-26
## 3621 lindy.donoho@enron.com 2001-11-26
## 3622 lindy.donoho@enron.com 2001-11-26
## 3623 kathy.campos@enron.com 2001-11-26
## 3624 ron.nightingale@enron.com 2001-11-26
## 3625 jan.moore@enron.com 2001-11-26
## 3626 jan.moore@enron.com 2001-11-26
## 3627 jan.moore@enron.com 2001-11-26
## 3628 mary.botello@enron.com 2001-11-26
## 3629 denis.tu@enron.com 2001-11-26
## 3630 denis.tu@enron.com 2001-11-26
## 3631 jeanette.doll@enron.com 2001-11-25
## 3632 jeanette.doll@enron.com 2001-11-25
## 3633 jeanette.doll@enron.com 2001-11-25
## 3634 jeanette.doll@enron.com 2001-11-25
## 3635 jeanette.doll@enron.com 2001-11-25
## 3636 jeanette.doll@enron.com 2001-11-25
## 3637 rod.hayslett@enron.com 2001-11-21
## 3638 rod.hayslett@enron.com 2001-11-21
## 3639 rod.hayslett@enron.com 2001-11-21
## 3640 rod.hayslett@enron.com 2001-11-21
## 3641 rod.hayslett@enron.com 2001-11-21
## 3642 rod.hayslett@enron.com 2001-11-21
## 3643 rod.hayslett@enron.com 2001-11-21
## 3644 rod.hayslett@enron.com 2001-11-21
## 3645 rod.hayslett@enron.com 2001-11-21
## 3646 rod.hayslett@enron.com 2001-11-21
## 3647 rod.hayslett@enron.com 2001-11-21
## 3648 rod.hayslett@enron.com 2001-11-21
## 3649 rod.hayslett@enron.com 2001-11-21
## 3650 rod.hayslett@enron.com 2001-11-21
## 3651 rod.hayslett@enron.com 2001-11-21
## 3652 morris.brassfield@enron.com 2001-11-21
## 3653 morris.brassfield@enron.com 2001-11-21
## 3654 rod.hayslett@enron.com 2001-11-21
## 3655 rod.hayslett@enron.com 2001-11-21
## 3656 rod.hayslett@enron.com 2001-11-21
## 3657 rod.hayslett@enron.com 2001-11-21
## 3658 rod.hayslett@enron.com 2001-11-21
## 3659 rod.hayslett@enron.com 2001-11-21
## 3660 rod.hayslett@enron.com 2001-11-21
## 3661 rod.hayslett@enron.com 2001-11-21
## 3662 rod.hayslett@enron.com 2001-11-21
## 3663 rod.hayslett@enron.com 2001-11-21
## 3664 rod.hayslett@enron.com 2001-11-21
## 3665 rod.hayslett@enron.com 2001-11-21
## 3666 rod.hayslett@enron.com 2001-11-21
## 3667 rod.hayslett@enron.com 2001-11-21
## 3668 rod.hayslett@enron.com 2001-11-21
## 3669 rod.hayslett@enron.com 2001-11-21
## 3670 rod.hayslett@enron.com 2001-11-21
## 3671 rod.hayslett@enron.com 2001-11-21
## 3672 rod.hayslett@enron.com 2001-11-21
## 3673 rod.hayslett@enron.com 2001-11-21
## 3674 rod.hayslett@enron.com 2001-11-21
## 3675 rod.hayslett@enron.com 2001-11-21
## 3676 rod.hayslett@enron.com 2001-11-21
## 3677 rod.hayslett@enron.com 2001-11-21
## 3678 kimberly.bragg@enron.com 2001-11-20
## 3679 steven.harris@enron.com 2001-11-20
## 3680 john.keiser@enron.com 2001-11-20
## 3681 john.keiser@enron.com 2001-11-20
## 3682 lee.baker@enron.com 2001-11-19
## 3683 lee.baker@enron.com 2001-11-19
## 3684 cindy.stark@enron.com 2001-11-19
## 3685 rob.brown@enron.com 2001-11-19
## 3686 rod.hayslett@enron.com 2001-11-19
## 3687 rod.hayslett@enron.com 2001-11-19
## 3688 rod.hayslett@enron.com 2001-11-19
## 3689 rod.hayslett@enron.com 2001-11-19
## 3690 rod.hayslett@enron.com 2001-11-19
## 3691 rod.hayslett@enron.com 2001-11-17
## 3692 rod.hayslett@enron.com 2001-11-17
## 3693 rod.hayslett@enron.com 2001-11-17
## 3694 rod.hayslett@enron.com 2001-11-17
## 3695 rod.hayslett@enron.com 2001-11-17
## 3696 rod.hayslett@enron.com 2001-11-17
## 3697 rod.hayslett@enron.com 2001-11-17
## 3698 rod.hayslett@enron.com 2001-11-17
## 3699 rod.hayslett@enron.com 2001-11-17
## 3700 rod.hayslett@enron.com 2001-11-17
## 3701 rod.hayslett@enron.com 2001-11-17
## 3702 rod.hayslett@enron.com 2001-11-17
## 3703 no.address@enron.com 2001-11-16
## 3704 steve.kleb@enron.com 2001-11-16
## 3705 chris.lambert@enron.com 2001-11-16
## 3706 chris.lambert@enron.com 2001-11-16
## 3707 no.address@enron.com 2001-11-16
## 3708 blake.walker@enron.com 2001-11-16
## 3709 elaine.concklin@enron.com 2001-11-16
## 3710 steve.kleb@enron.com 2001-11-16
## 3711 jennifer.lev@enron.com 2001-11-16
## 3712 stephen.schwarzbach@enron.com 2001-11-16
## 3713 jan.moore@enron.com 2001-11-15
## 3714 elaine.concklin@enron.com 2001-11-15
## 3715 steven.harris@enron.com 2001-11-15
## 3716 steve.kleb@enron.com 2001-11-15
## 3717 steve.kleb@enron.com 2001-11-15
## 3718 steve.kleb@enron.com 2001-11-15
## 3719 rod.hayslett@enron.com 2001-11-15
## 3720 rod.hayslett@enron.com 2001-11-15
## 3721 rod.hayslett@enron.com 2001-11-15
## 3722 rod.hayslett@enron.com 2001-11-15
## 3723 rod.hayslett@enron.com 2001-11-15
## 3724 rod.hayslett@enron.com 2001-11-15
## 3725 rod.hayslett@enron.com 2001-11-15
## 3726 jan.moore@enron.com 2001-11-15
## 3727 blake.walker@enron.com 2001-11-14
## 3728 steve.kleb@enron.com 2001-11-14
## 3729 steve.kleb@enron.com 2001-11-14
## 3730 steve.kleb@enron.com 2001-11-14
## 3731 steve.kleb@enron.com 2001-11-14
## 3732 steve.kleb@enron.com 2001-11-14
## 3733 james.saunders@enron.com 2001-11-14
## 3734 james.saunders@enron.com 2001-11-14
## 3735 rod.hayslett@enron.com 2001-11-14
## 3736 rod.hayslett@enron.com 2001-11-14
## 3737 rod.hayslett@enron.com 2001-11-14
## 3738 rod.hayslett@enron.com 2001-11-14
## 3739 rod.hayslett@enron.com 2001-11-14
## 3740 steven.harris@enron.com 2001-11-13
## 3741 e..sommers@enron.com 2001-11-13
## 3742 john.keiser@enron.com 2001-11-13
## 3743 steven.harris@enron.com 2001-11-13
## 3744 jan.moore@enron.com 2001-11-13
## 3745 jan.moore@enron.com 2001-11-12
## 3746 ruthann.frausto@enron.com 2001-11-12
## 3747 daniel.batista@enron.com 2001-11-12
## 3748 rod.hayslett@enron.com 2001-11-12
## 3749 steven.harris@enron.com 2001-11-12
## 3750 steven.harris@enron.com 2001-11-12
## 3751 steve.kleb@enron.com 2001-11-12
## 3752 steve.kleb@enron.com 2001-11-12
## 3753 steve.kleb@enron.com 2001-11-12
## 3754 trey.meerbott@enron.com 2001-11-12
## 3755 jan.moore@enron.com 2001-11-09
## 3756 patricia.wiederholt@enron.com 2001-11-09
## 3757 steve.weller@enron.com 2001-11-09
## 3758 steve.weller@enron.com 2001-11-09
## 3759 elaine.concklin@enron.com 2001-11-08
## 3760 dan.fancler@enron.com 2001-11-08
## 3761 timothy.bayles@enron.com 2001-11-08
## 3762 timothy.bayles@enron.com 2001-11-08
## 3763 elaine.concklin@enron.com 2001-11-08
## 3764 billie.akhave@enron.com 2001-11-08
## 3765 jan.moore@enron.com 2001-11-08
## 3766 rod.hayslett@enron.com 2001-11-08
## 3767 elaine.concklin@enron.com 2001-11-07
## 3768 carolyn.winowitch@enron.com 2001-11-07
## 3769 dan.fancler@enron.com 2001-11-07
## 3770 no.address@enron.com 2001-11-07
## 3771 rod.hayslett@enron.com 2001-11-07
## 3772 rod.hayslett@enron.com 2001-11-07
## 3773 rod.hayslett@enron.com 2001-11-07
## 3774 rod.hayslett@enron.com 2001-11-07
## 3775 rod.hayslett@enron.com 2001-11-07
## 3776 rod.hayslett@enron.com 2001-11-07
## 3777 rod.hayslett@enron.com 2001-11-07
## 3778 rod.hayslett@enron.com 2001-11-07
## 3779 rod.hayslett@enron.com 2001-11-07
## 3780 rod.hayslett@enron.com 2001-11-07
## 3781 rod.hayslett@enron.com 2001-11-07
## 3782 rod.hayslett@enron.com 2001-11-07
## 3783 rod.hayslett@enron.com 2001-11-07
## 3784 rod.hayslett@enron.com 2001-11-07
## 3785 rod.hayslett@enron.com 2001-11-07
## 3786 rod.hayslett@enron.com 2001-11-07
## 3787 rod.hayslett@enron.com 2001-11-07
## 3788 rod.hayslett@enron.com 2001-11-07
## 3789 rod.hayslett@enron.com 2001-11-07
## 3790 rod.hayslett@enron.com 2001-11-07
## 3791 rod.hayslett@enron.com 2001-11-07
## 3792 rod.hayslett@enron.com 2001-11-07
## 3793 rod.hayslett@enron.com 2001-11-07
## 3794 rod.hayslett@enron.com 2001-11-07
## 3795 rod.hayslett@enron.com 2001-11-07
## 3796 rod.hayslett@enron.com 2001-11-07
## 3797 rod.hayslett@enron.com 2001-11-07
## 3798 rod.hayslett@enron.com 2001-11-07
## 3799 rod.hayslett@enron.com 2001-11-07
## 3800 rod.hayslett@enron.com 2001-11-07
## 3801 rod.hayslett@enron.com 2001-11-07
## 3802 lindy.donoho@enron.com 2001-11-07
## 3803 lindy.donoho@enron.com 2001-11-07
## 3804 lindy.donoho@enron.com 2001-11-07
## 3805 blake.walker@enron.com 2001-11-07
## 3806 tracey.kozadinos@enron.com 2001-11-07
## 3807 tracey.kozadinos@enron.com 2001-11-07
## 3808 tracey.kozadinos@enron.com 2001-11-07
## 3809 tracey.kozadinos@enron.com 2001-11-07
## 3810 tracey.kozadinos@enron.com 2001-11-07
## 3811 tracey.kozadinos@enron.com 2001-11-07
## 3812 chris.lambert@enron.com 2001-11-06
## 3813 tracey.kozadinos@enron.com 2001-11-06
## 3814 tracey.kozadinos@enron.com 2001-11-06
## 3815 tracey.kozadinos@enron.com 2001-11-06
## 3816 tracey.kozadinos@enron.com 2001-11-06
## 3817 tracey.kozadinos@enron.com 2001-11-06
## 3818 tracey.kozadinos@enron.com 2001-11-06
## 3819 lindy.donoho@enron.com 2001-11-06
## 3820 norma.petry@enron.com 2001-11-06
## 3821 steve.kleb@enron.com 2001-11-06
## 3822 steve.kleb@enron.com 2001-11-06
## 3823 jan.moore@enron.com 2001-11-06
## 3824 james.saunders@enron.com 2001-11-06
## 3825 a..howard@enron.com 2001-11-06
## 3826 a..howard@enron.com 2001-11-06
## 3827 steve.gilbert@enron.com 2001-11-06
## 3828 rod.hayslett@enron.com 2001-11-06
## 3829 rod.hayslett@enron.com 2001-11-06
## 3830 rod.hayslett@enron.com 2001-11-06
## 3831 rod.hayslett@enron.com 2001-11-06
## 3832 james.saunders@enron.com 2001-11-06
## 3833 james.saunders@enron.com 2001-11-06
## 3834 james.saunders@enron.com 2001-11-06
## 3835 james.saunders@enron.com 2001-11-06
## 3836 steven.harris@enron.com 2001-11-06
## 3837 a..howard@enron.com 2001-11-06
## 3838 blake.walker@enron.com 2001-11-06
## 3839 kathy.campos@enron.com 2001-11-05
## 3840 kathy.campos@enron.com 2001-11-05
## 3841 kathy.campos@enron.com 2001-11-05
## 3842 rod.hayslett@enron.com 2001-11-05
## 3843 jan.moore@enron.com 2001-11-05
## 3844 jan.moore@enron.com 2001-11-05
## 3845 jan.moore@enron.com 2001-11-05
## 3846 steve.kleb@enron.com 2001-11-02
## 3847 steve.kleb@enron.com 2001-11-02
## 3848 steve.kleb@enron.com 2001-11-02
## 3849 jana.domke@enron.com 2001-11-02
## 3850 james.weitekamp@enron.com 2001-11-01
## 3851 steven.harris@enron.com 2001-11-01
## 3852 steve.kleb@enron.com 2001-11-01
## 3853 steve.kleb@enron.com 2001-11-01
## 3854 donna.martens@enron.com 2001-11-01
## 3855 donna.martens@enron.com 2001-11-01
## 3856 donna.martens@enron.com 2001-11-01
## 3857 donna.martens@enron.com 2001-11-01
## 3858 donna.martens@enron.com 2001-11-01
## 3859 donna.martens@enron.com 2001-11-01
## 3860 donna.martens@enron.com 2001-11-01
## 3861 donna.martens@enron.com 2001-11-01
## 3862 donna.martens@enron.com 2001-11-01
## 3863 stephen.dowd@enron.com 2001-11-01
## 3864 john.ambler@enron.com 2001-10-31
## 3865 nancy.carpenter@enron.com 2001-10-31
## 3866 chris.lambert@enron.com 2001-10-30
## 3867 nancy.carpenter@enron.com 2001-10-30
## 3868 nancy.carpenter@enron.com 2001-10-30
## 3869 hoang.vo@enron.com 2001-10-30
## 3870 steven.harris@enron.com 2001-10-30
## 3871 rod.hayslett@enron.com 2001-08-22
## 3872 rod.hayslett@enron.com 2001-08-08
## 3873 rod.hayslett@enron.com 2001-09-24
## 3874 40enron@enron.com 2001-07-17
## 3875 john.ambler@enron.com 2001-10-29
## 3876 joe.darensbourg@enron.com 2001-10-29
## 3877 stephen.dowd@enron.com 2001-10-29
## 3878 norma.petry@enron.com 2001-10-29
## 3879 cindy.stark@enron.com 2001-10-29
## 3880 cindy.stark@enron.com 2001-10-29
## 3881 cindy.stark@enron.com 2001-10-29
## 3882 agatha.tran@enron.com 2001-10-29
## 3883 jan.moore@enron.com 2001-10-29
## 3884 lorraine.telles@enron.com 2001-10-29
## 3885 hoang.vo@enron.com 2001-10-29
## 3886 steven.harris@enron.com 2001-10-29
## 3887 eric.gadd@enron.com 2001-10-29
## 3888 eric.gadd@enron.com 2001-10-29
## 3889 agatha.tran@enron.com 2001-10-25
## 3890 denis.tu@enron.com 2001-10-26
## 3891 denis.tu@enron.com 2001-10-26
## 3892 denis.tu@enron.com 2001-10-26
## 3893 a..lindholm@enron.com 2001-10-25
## 3894 john.keiser@enron.com 2001-10-25
## 3895 kay.miller@enron.com 2001-10-25
## 3896 kay.miller@enron.com 2001-10-25
## 3897 rod.hayslett@enron.com 2001-10-25
## 3898 rod.hayslett@enron.com 2001-10-25
## 3899 rod.hayslett@enron.com 2001-10-25
## 3900 rod.hayslett@enron.com 2001-10-25
## 3901 rod.hayslett@enron.com 2001-10-25
## 3902 rod.hayslett@enron.com 2001-10-25
## 3903 steve.kleb@enron.com 2001-10-25
## 3904 steve.kleb@enron.com 2001-10-25
## 3905 steven.harris@enron.com 2001-10-25
## 3906 jan.moore@enron.com 2001-10-25
## 3907 mark.diedrich@enron.com 2001-10-25
## 3908 mary.botello@enron.com 2001-10-24
## 3909 john.ambler@enron.com 2001-10-24
## 3910 steven.harris@enron.com 2001-10-24
## 3911 mark.diedrich@enron.com 2001-10-24
## 3912 no.address@enron.com 2001-10-23
## 3913 mary.botello@enron.com 2001-10-23
## 3914 sonnia.reyes@enron.com 2001-10-23
## 3915 sonnia.reyes@enron.com 2001-10-23
## 3916 sonnia.reyes@enron.com 2001-10-23
## 3917 steven.harris@enron.com 2001-10-23
## 3918 stephen.schwarzbach@enron.com 2001-10-23
## 3919 rod.hayslett@enron.com 2001-10-23
## 3920 rod.hayslett@enron.com 2001-10-23
## 3921 rod.hayslett@enron.com 2001-10-23
## 3922 rod.hayslett@enron.com 2001-10-23
## 3923 mary.botello@enron.com 2001-10-22
## 3924 caroline.barnes@enron.com 2001-10-22
## 3925 judy.lin@enron.com 2001-10-22
## 3926 erin.copeland@enron.com 2001-10-19
## 3927 erin.copeland@enron.com 2001-10-19
## 3928 adam.umanoff@enron.com 2001-10-19
## 3929 adam.umanoff@enron.com 2001-10-19
## 3930 e..sommers@enron.com 2001-10-18
## 3931 jan.moore@enron.com 2001-10-18
## 3932 no.address@enron.com 2001-10-18
## 3933 a..lindholm@enron.com 2001-10-18
## 3934 rod.hayslett@enron.com 2001-10-18
## 3935 erin.copeland@enron.com 2001-10-18
## 3936 dan.fancler@enron.com 2001-10-18
## 3937 dan.fancler@enron.com 2001-10-18
## 3938 erin.copeland@enron.com 2001-10-18
## 3939 james.centilli@enron.com 2001-10-18
## 3940 agatha.tran@enron.com 2001-10-18
## 3941 jan.moore@enron.com 2001-10-18
## 3942 cindy.stark@enron.com 2001-10-18
## 3943 rod.hayslett@enron.com 2001-10-18
## 3944 rod.hayslett@enron.com 2001-10-18
## 3945 rod.hayslett@enron.com 2001-10-18
## 3946 rod.hayslett@enron.com 2001-10-18
## 3947 rod.hayslett@enron.com 2001-10-18
## 3948 rod.hayslett@enron.com 2001-10-18
## 3949 rod.hayslett@enron.com 2001-10-18
## 3950 rod.hayslett@enron.com 2001-10-18
## 3951 kathy.campos@enron.com 2001-10-17
## 3952 kathy.campos@enron.com 2001-10-17
## 3953 kathy.campos@enron.com 2001-10-17
## 3954 kathy.campos@enron.com 2001-10-17
## 3955 kathy.campos@enron.com 2001-10-16
## 3956 e..sommers@enron.com 2001-10-16
## 3957 e..sommers@enron.com 2001-10-16
## 3958 e..sommers@enron.com 2001-10-16
## 3959 e..sommers@enron.com 2001-10-16
## 3960 chris.lambert@enron.com 2001-10-15
## 3961 chris.lambert@enron.com 2001-10-15
## 3962 rod.hayslett@enron.com 2001-10-15
## 3963 rod.hayslett@enron.com 2001-10-15
## 3964 rod.hayslett@enron.com 2001-10-15
## 3965 rod.hayslett@enron.com 2001-10-15
## 3966 rod.hayslett@enron.com 2001-10-15
## 3967 rod.hayslett@enron.com 2001-10-15
## 3968 rod.hayslett@enron.com 2001-10-15
## 3969 rod.hayslett@enron.com 2001-10-15
## 3970 rod.hayslett@enron.com 2001-10-15
## 3971 rod.hayslett@enron.com 2001-10-15
## 3972 rod.hayslett@enron.com 2001-10-15
## 3973 rod.hayslett@enron.com 2001-10-15
## 3974 rod.hayslett@enron.com 2001-10-15
## 3975 rod.hayslett@enron.com 2001-10-15
## 3976 rod.hayslett@enron.com 2001-10-15
## 3977 jan.moore@enron.com 2001-10-15
## 3978 lee.baker@enron.com 2001-10-15
## 3979 hoang.vo@enron.com 2001-10-15
## 3980 rod.hayslett@enron.com 2001-10-15
## 3981 rod.hayslett@enron.com 2001-10-15
## 3982 rod.hayslett@enron.com 2001-10-15
## 3983 rod.hayslett@enron.com 2001-10-15
## 3984 rod.hayslett@enron.com 2001-10-15
## 3985 rod.hayslett@enron.com 2001-10-15
## 3986 rod.hayslett@enron.com 2001-10-15
## 3987 rod.hayslett@enron.com 2001-10-15
## 3988 stephen.schwarzbach@enron.com 2001-10-14
## 3989 valerie.giles@enron.com 2001-10-12
## 3990 joe.darensbourg@enron.com 2001-10-12
## 3991 joe.darensbourg@enron.com 2001-10-12
## 3992 darrington.outama@enron.com 2001-10-12
## 3993 bob.chandler@enron.com 2001-10-12
## 3994 bob.chandler@enron.com 2001-10-12
## 3995 cheryl.perchal@enron.com 2001-10-11
## 3996 georgene.moore@enron.com 2001-10-10
## 3997 georgene.moore@enron.com 2001-10-10
## 3998 agatha.tran@enron.com 2001-10-09
## 3999 julie.armstrong@enron.com 2001-10-09
## 4000 rod.hayslett@enron.com 2001-10-09
## 4001 rod.hayslett@enron.com 2001-10-09
## 4002 rod.hayslett@enron.com 2001-10-09
## 4003 rod.hayslett@enron.com 2001-10-09
## 4004 rod.hayslett@enron.com 2001-10-09
## 4005 rod.hayslett@enron.com 2001-10-09
## 4006 rod.hayslett@enron.com 2001-10-09
## 4007 rod.hayslett@enron.com 2001-10-09
## 4008 rod.hayslett@enron.com 2001-10-09
## 4009 rod.hayslett@enron.com 2001-10-09
## 4010 rod.hayslett@enron.com 2001-10-09
## 4011 rod.hayslett@enron.com 2001-10-09
## 4012 lindy.donoho@enron.com 2001-10-09
## 4013 james.saunders@enron.com 2001-10-09
## 4014 james.saunders@enron.com 2001-10-09
## 4015 james.saunders@enron.com 2001-10-09
## 4016 steve.gilbert@enron.com 2001-10-09
## 4017 steve.gilbert@enron.com 2001-10-09
## 4018 steve.gilbert@enron.com 2001-10-09
## 4019 lindy.donoho@enron.com 2001-10-09
## 4020 lindy.donoho@enron.com 2001-10-09
## 4021 lindy.donoho@enron.com 2001-10-09
## 4022 lindy.donoho@enron.com 2001-10-09
## 4023 kathy.campos@enron.com 2001-10-09
## 4024 e..sommers@enron.com 2001-10-09
## 4025 e..sommers@enron.com 2001-10-09
## 4026 e..sommers@enron.com 2001-10-09
## 4027 rod.hayslett@enron.com 2001-10-08
## 4028 j..parrish@enron.com 2001-10-08
## 4029 cindy.stark@enron.com 2001-10-08
## 4030 cindy.stark@enron.com 2001-10-08
## 4031 jane.joyce@enron.com 2001-10-08
## 4032 john.keiser@enron.com 2001-10-08
## 4033 rod.hayslett@enron.com 2001-10-08
## 4034 rod.hayslett@enron.com 2001-10-08
## 4035 rod.hayslett@enron.com 2001-10-08
## 4036 rod.hayslett@enron.com 2001-10-08
## 4037 rod.hayslett@enron.com 2001-10-08
## 4038 rod.hayslett@enron.com 2001-10-08
## 4039 rod.hayslett@enron.com 2001-10-08
## 4040 rositza.smilenova@enron.com 2001-10-05
## 4041 rod.hayslett@enron.com 2001-10-05
## 4042 rod.hayslett@enron.com 2001-10-05
## 4043 rod.hayslett@enron.com 2001-10-05
## 4044 rod.hayslett@enron.com 2001-10-05
## 4045 rod.hayslett@enron.com 2001-10-05
## 4046 rod.hayslett@enron.com 2001-10-05
## 4047 rod.hayslett@enron.com 2001-10-05
## 4048 rod.hayslett@enron.com 2001-10-05
## 4049 rod.hayslett@enron.com 2001-10-05
## 4050 rod.hayslett@enron.com 2001-10-05
## 4051 rod.hayslett@enron.com 2001-10-05
## 4052 rod.hayslett@enron.com 2001-10-05
## 4053 rod.hayslett@enron.com 2001-10-05
## 4054 rod.hayslett@enron.com 2001-10-05
## 4055 rod.hayslett@enron.com 2001-10-05
## 4056 rod.hayslett@enron.com 2001-10-05
## 4057 elaine.concklin@enron.com 2001-10-04
## 4058 elaine.concklin@enron.com 2001-10-04
## 4059 rod.hayslett@enron.com 2001-10-04
## 4060 rod.hayslett@enron.com 2001-10-04
## 4061 rod.hayslett@enron.com 2001-10-04
## 4062 w.tilotta@enron.com 2001-10-04
## 4063 w.tilotta@enron.com 2001-10-04
## 4064 kay.miller@enron.com 2001-10-04
## 4065 agatha.tran@enron.com 2001-10-03
## 4066 agatha.tran@enron.com 2001-10-03
## 4067 cindy.stark@enron.com 2001-10-03
## 4068 no.address@enron.com 2001-10-03
## 4069 cindy.stark@enron.com 2001-10-02
## 4070 rod.hayslett@enron.com 2001-10-02
## 4071 rod.hayslett@enron.com 2001-10-02
## 4072 rod.hayslett@enron.com 2001-10-02
## 4073 lori.maddox@enron.com 2001-10-02
## 4074 dan.rittgers@enron.com 2001-10-02
## 4075 cindy.stark@enron.com 2001-10-02
## 4076 cindy.stark@enron.com 2001-10-02
## 4077 payroll.enron@enron.com 2001-10-02
## 4078 no.address@enron.com 2001-10-01
## 4079 rod.hayslett@enron.com 2001-10-01
## 4080 steve.gilbert@enron.com 2001-10-01
## 4081 steve.gilbert@enron.com 2001-10-01
## 4082 steve.gilbert@enron.com 2001-10-01
## 4083 hoang.vo@enron.com 2001-10-01
## 4084 rod.hayslett@enron.com 2001-10-01
## 4085 rod.hayslett@enron.com 2001-10-01
## 4086 rod.hayslett@enron.com 2001-10-01
## 4087 no.address@enron.com 2001-10-01
## 4088 denis.tu@enron.com 2001-10-01
## 4089 denis.tu@enron.com 2001-10-01
## 4090 pamela.lebrane@enron.com 2001-09-28
## 4091 caroline.barnes@enron.com 2001-09-28
## 4092 rod.hayslett@enron.com 2001-09-28
## 4093 rod.hayslett@enron.com 2001-09-28
## 4094 rod.hayslett@enron.com 2001-09-28
## 4095 rod.hayslett@enron.com 2001-09-28
## 4096 rod.hayslett@enron.com 2001-09-28
## 4097 rod.hayslett@enron.com 2001-09-28
## 4098 rod.hayslett@enron.com 2001-09-28
## 4099 rod.hayslett@enron.com 2001-09-28
## 4100 rod.hayslett@enron.com 2001-09-28
## 4101 rod.hayslett@enron.com 2001-09-28
## 4102 rod.hayslett@enron.com 2001-09-28
## 4103 rod.hayslett@enron.com 2001-09-28
## 4104 rod.hayslett@enron.com 2001-09-28
## 4105 dan.fancler@enron.com 2001-09-28
## 4106 dan.fancler@enron.com 2001-09-28
## 4107 dan.fancler@enron.com 2001-09-28
## 4108 dan.fancler@enron.com 2001-09-28
## 4109 erin.copeland@enron.com 2001-09-28
## 4110 erin.copeland@enron.com 2001-09-28
## 4111 john.cobb@enron.com 2001-09-27
## 4112 steve.gilbert@enron.com 2001-09-27
## 4113 rod.hayslett@enron.com 2001-09-27
## 4114 rod.hayslett@enron.com 2001-09-27
## 4115 rod.hayslett@enron.com 2001-09-27
## 4116 rod.hayslett@enron.com 2001-09-27
## 4117 rod.hayslett@enron.com 2001-09-27
## 4118 rod.hayslett@enron.com 2001-09-27
## 4119 rod.hayslett@enron.com 2001-09-27
## 4120 rod.hayslett@enron.com 2001-09-27
## 4121 rod.hayslett@enron.com 2001-09-27
## 4122 rod.hayslett@enron.com 2001-09-27
## 4123 rod.hayslett@enron.com 2001-09-27
## 4124 rod.hayslett@enron.com 2001-09-27
## 4125 rod.hayslett@enron.com 2001-09-27
## 4126 james.saunders@enron.com 2001-09-27
## 4127 james.saunders@enron.com 2001-09-27
## 4128 james.saunders@enron.com 2001-09-27
## 4129 rod.hayslett@enron.com 2001-09-27
## 4130 rod.hayslett@enron.com 2001-09-27
## 4131 rod.hayslett@enron.com 2001-09-27
## 4132 rod.hayslett@enron.com 2001-09-27
## 4133 rod.hayslett@enron.com 2001-09-27
## 4134 rod.hayslett@enron.com 2001-09-27
## 4135 rod.hayslett@enron.com 2001-09-27
## 4136 rod.hayslett@enron.com 2001-09-27
## 4137 rod.hayslett@enron.com 2001-09-27
## 4138 rod.hayslett@enron.com 2001-09-27
## 4139 rod.hayslett@enron.com 2001-09-27
## 4140 rod.hayslett@enron.com 2001-09-27
## 4141 rod.hayslett@enron.com 2001-09-27
## 4142 rod.hayslett@enron.com 2001-09-27
## 4143 rod.hayslett@enron.com 2001-09-27
## 4144 rod.hayslett@enron.com 2001-09-27
## 4145 rod.hayslett@enron.com 2001-09-27
## 4146 rod.hayslett@enron.com 2001-09-27
## 4147 rod.hayslett@enron.com 2001-09-27
## 4148 rod.hayslett@enron.com 2001-09-27
## 4149 mary.botello@enron.com 2001-09-26
## 4150 rod.hayslett@enron.com 2001-09-26
## 4151 rod.hayslett@enron.com 2001-09-26
## 4152 rod.hayslett@enron.com 2001-09-26
## 4153 rod.hayslett@enron.com 2001-09-26
## 4154 ben.humann@enron.com 2001-09-26
## 4155 gary.smith@enron.com 2001-09-26
## 4156 bob.chandler@enron.com 2001-09-26
## 4157 rod.hayslett@enron.com 2001-09-26
## 4158 rod.hayslett@enron.com 2001-09-26
## 4159 rod.hayslett@enron.com 2001-09-26
## 4160 rod.hayslett@enron.com 2001-09-26
## 4161 jennifer.reed@enron.com 2001-09-25
## 4162 dawn.derr@enron.com 2001-09-25
## 4163 teb.lokey@enron.com 2001-09-24
## 4164 teb.lokey@enron.com 2001-09-24
## 4165 steve.gilbert@enron.com 2001-09-24
## 4166 steve.gilbert@enron.com 2001-09-24
## 4167 steve.gilbert@enron.com 2001-09-24
## 4168 rod.hayslett@enron.com 2001-09-24
## 4169 rod.hayslett@enron.com 2001-09-24
## 4170 rod.hayslett@enron.com 2001-09-24
## 4171 rod.hayslett@enron.com 2001-09-24
## 4172 rod.hayslett@enron.com 2001-09-24
## 4173 cindy.stark@enron.com 2001-09-21
## 4174 cindy.stark@enron.com 2001-09-21
## 4175 cindy.stark@enron.com 2001-09-21
## 4176 cindy.stark@enron.com 2001-09-21
## 4177 karl.jackson@enron.com 2001-09-20
## 4178 w.tilotta@enron.com 2001-09-20
## 4179 steve.kleb@enron.com 2001-09-20
## 4180 dee.svatos@enron.com 2001-09-20
## 4181 dee.svatos@enron.com 2001-09-20
## 4182 gary.smith@enron.com 2001-09-20
## 4183 gary.smith@enron.com 2001-09-20
## 4184 kirk.stevens@enron.com 2001-09-19
## 4185 kimberly.watson@enron.com 2001-09-19
## 4186 kimberly.watson@enron.com 2001-09-19
## 4187 kimberly.watson@enron.com 2001-09-19
## 4188 rod.hayslett@enron.com 2001-09-19
## 4189 kirk.stevens@enron.com 2001-09-19
## 4190 stephen.schwarzbach@enron.com 2001-09-19
## 4191 melissa.becker@enron.com 2001-09-19
## 4192 melissa.becker@enron.com 2001-09-19
## 4193 melissa.becker@enron.com 2001-09-19
## 4194 sharron.westbrook@enron.com 2001-09-19
## 4195 terry.west@enron.com 2001-09-19
## 4196 rod.hayslett@enron.com 2001-09-19
## 4197 terry.west@enron.com 2001-09-19
## 4198 rod.hayslett@enron.com 2001-09-19
## 4199 cindy.stark@enron.com 2001-09-19
## 4200 gina.taylor@enron.com 2001-09-18
## 4201 kay.miller@enron.com 2001-09-18
## 4202 kasey.davis@enron.com 2001-09-18
## 4203 henry.baker@enron.com 2001-09-18
## 4204 henry.baker@enron.com 2001-09-18
## 4205 dawn.derr@enron.com 2001-09-17
## 4206 rod.hayslett@enron.com 2001-09-17
## 4207 rod.hayslett@enron.com 2001-09-17
## 4208 rod.hayslett@enron.com 2001-09-17
## 4209 rod.hayslett@enron.com 2001-09-17
## 4210 rod.hayslett@enron.com 2001-09-17
## 4211 rod.hayslett@enron.com 2001-09-17
## 4212 rod.hayslett@enron.com 2001-09-17
## 4213 rod.hayslett@enron.com 2001-09-17
## 4214 rod.hayslett@enron.com 2001-09-17
## 4215 rod.hayslett@enron.com 2001-09-17
## 4216 rod.hayslett@enron.com 2001-09-17
## 4217 rod.hayslett@enron.com 2001-09-17
## 4218 rod.hayslett@enron.com 2001-09-17
## 4219 rod.hayslett@enron.com 2001-09-17
## 4220 melissa.becker@enron.com 2001-09-17
## 4221 melissa.becker@enron.com 2001-09-17
## 4222 melissa.becker@enron.com 2001-09-17
## 4223 rod.hayslett@enron.com 2001-09-17
## 4224 rod.hayslett@enron.com 2001-09-17
## 4225 dawn.derr@enron.com 2001-09-17
## 4226 pallavi.goradia@enron.com 2001-09-17
## 4227 pallavi.goradia@enron.com 2001-09-17
## 4228 mary.botello@enron.com 2001-09-17
## 4229 mary.botello@enron.com 2001-09-17
## 4230 mary.botello@enron.com 2001-09-17
## 4231 steve.kleb@enron.com 2001-09-17
## 4232 john.sturn@enron.com 2001-09-17
## 4233 john.sturn@enron.com 2001-09-14
## 4234 deborah.cappiello@enron.com 2001-09-14
## 4235 steve.gilbert@enron.com 2001-09-14
## 4236 steve.gilbert@enron.com 2001-09-14
## 4237 steve.gilbert@enron.com 2001-09-14
## 4238 steve.gilbert@enron.com 2001-09-14
## 4239 carolyn.winowitch@enron.com 2001-09-14
## 4240 mary.trosper@enron.com 2001-09-14
## 4241 rod.hayslett@enron.com 2001-09-14
## 4242 rod.hayslett@enron.com 2001-09-14
## 4243 rod.hayslett@enron.com 2001-09-14
## 4244 cindy.stark@enron.com 2001-09-14
## 4245 melissa.becker@enron.com 2001-09-13
## 4246 melissa.becker@enron.com 2001-09-13
## 4247 melissa.becker@enron.com 2001-09-13
## 4248 a..lindholm@enron.com 2001-09-13
## 4249 john.fiscus@enron.com 2001-09-13
## 4250 john.fiscus@enron.com 2001-09-13
## 4251 caroline.barnes@enron.com 2001-09-13
## 4252 caroline.barnes@enron.com 2001-09-13
## 4253 caroline.barnes@enron.com 2001-09-13
## 4254 stephen.schwarzbach@enron.com 2001-09-13
## 4255 caroline.barnes@enron.com 2001-09-13
## 4256 allen.joe@enron.com 2001-09-13
## 4257 rod.hayslett@enron.com 2001-09-13
## 4258 rod.hayslett@enron.com 2001-09-13
## 4259 rod.hayslett@enron.com 2001-09-13
## 4260 rod.hayslett@enron.com 2001-09-13
## 4261 john.fiscus@enron.com 2001-09-13
## 4262 john.fiscus@enron.com 2001-09-13
## 4263 rod.hayslett@enron.com 2001-09-12
## 4264 rod.hayslett@enron.com 2001-09-12
## 4265 rod.hayslett@enron.com 2001-09-12
## 4266 rod.hayslett@enron.com 2001-09-12
## 4267 rod.hayslett@enron.com 2001-09-12
## 4268 rod.hayslett@enron.com 2001-09-12
## 4269 rod.hayslett@enron.com 2001-09-12
## 4270 rod.hayslett@enron.com 2001-09-12
## 4271 rod.hayslett@enron.com 2001-09-12
## 4272 rod.hayslett@enron.com 2001-09-12
## 4273 rod.hayslett@enron.com 2001-09-12
## 4274 rod.hayslett@enron.com 2001-09-12
## 4275 rod.hayslett@enron.com 2001-09-12
## 4276 rod.hayslett@enron.com 2001-09-12
## 4277 rod.hayslett@enron.com 2001-09-12
## 4278 rod.hayslett@enron.com 2001-09-10
## 4279 danette.campbell@enron.com 2001-09-10
## 4280 stephen.schwarzbach@enron.com 2001-09-10
## 4281 jerry.graves@enron.com 2001-09-10
## 4282 jerry.graves@enron.com 2001-09-10
## 4283 jerry.graves@enron.com 2001-09-10
## 4284 jerry.graves@enron.com 2001-09-10
## 4285 kevin.may@enron.com 2001-09-10
## 4286 audrey.robertson@enron.com 2001-09-10
## 4287 audrey.robertson@enron.com 2001-09-10
## 4288 audrey.robertson@enron.com 2001-09-10
## 4289 audrey.robertson@enron.com 2001-09-10
## 4290 mary.botello@enron.com 2001-09-10
## 4291 rod.hayslett@enron.com 2001-09-04
## 4292 rod.hayslett@enron.com 2001-09-04
## 4293 rod.hayslett@enron.com 2001-09-04
## 4294 rod.hayslett@enron.com 2001-09-04
## 4295 rod.hayslett@enron.com 2001-09-04
## 4296 rod.hayslett@enron.com 2001-09-04
## 4297 rod.hayslett@enron.com 2001-09-04
## 4298 rod.hayslett@enron.com 2001-09-04
## 4299 rod.hayslett@enron.com 2001-09-07
## 4300 rod.hayslett@enron.com 2001-09-07
## 4301 rod.hayslett@enron.com 2001-09-07
## 4302 rod.hayslett@enron.com 2001-09-07
## 4303 rod.hayslett@enron.com 2001-09-07
## 4304 rod.hayslett@enron.com 2001-09-07
## 4305 rod.hayslett@enron.com 2001-09-07
## 4306 rod.hayslett@enron.com 2001-09-07
## 4307 rod.hayslett@enron.com 2001-09-07
## 4308 rod.hayslett@enron.com 2001-09-07
## 4309 rod.hayslett@enron.com 2001-09-07
## 4310 rod.hayslett@enron.com 2001-09-07
## 4311 rod.hayslett@enron.com 2001-09-07
## 4312 rod.hayslett@enron.com 2001-09-07
## 4313 rod.hayslett@enron.com 2001-09-07
## 4314 rod.hayslett@enron.com 2001-09-07
## 4315 rod.hayslett@enron.com 2001-09-07
## 4316 rod.hayslett@enron.com 2001-09-07
## 4317 rod.hayslett@enron.com 2001-09-07
## 4318 rod.hayslett@enron.com 2001-09-07
## 4319 rod.hayslett@enron.com 2001-09-07
## 4320 rod.hayslett@enron.com 2001-09-07
## 4321 rod.hayslett@enron.com 2001-09-07
## 4322 rod.hayslett@enron.com 2001-09-07
## 4323 rod.hayslett@enron.com 2001-09-07
## 4324 rod.hayslett@enron.com 2001-09-07
## 4325 rod.hayslett@enron.com 2001-09-07
## 4326 rod.hayslett@enron.com 2001-09-07
## 4327 rod.hayslett@enron.com 2001-09-07
## 4328 rod.hayslett@enron.com 2001-09-07
## 4329 rod.hayslett@enron.com 2001-09-07
## 4330 rod.hayslett@enron.com 2001-09-07
## 4331 rod.hayslett@enron.com 2001-09-07
## 4332 beverly.fennessy@enron.com 2001-09-06
## 4333 brian.schaffer@enron.com 2001-09-06
## 4334 brian.schaffer@enron.com 2001-09-06
## 4335 brian.schaffer@enron.com 2001-09-06
## 4336 brian.schaffer@enron.com 2001-09-06
## 4337 brian.schaffer@enron.com 2001-09-06
## 4338 brian.schaffer@enron.com 2001-09-06
## 4339 brian.schaffer@enron.com 2001-09-06
## 4340 sharron.westbrook@enron.com 2001-09-05
## 4341 rod.hayslett@enron.com 2001-09-04
## 4342 rod.hayslett@enron.com 2001-09-04
## 4343 rod.hayslett@enron.com 2001-09-04
## 4344 rod.hayslett@enron.com 2001-09-04
## 4345 rod.hayslett@enron.com 2001-09-04
## 4346 rod.hayslett@enron.com 2001-09-04
## 4347 rod.hayslett@enron.com 2001-09-04
## 4348 rod.hayslett@enron.com 2001-09-04
## 4349 rod.hayslett@enron.com 2001-09-04
## 4350 rod.hayslett@enron.com 2001-09-04
## 4351 rod.hayslett@enron.com 2001-09-04
## 4352 rod.hayslett@enron.com 2001-09-04
## 4353 rod.hayslett@enron.com 2001-09-04
## 4354 thomas.meers@enron.com 2001-08-31
## 4355 thomas.meers@enron.com 2001-08-31
## 4356 a..lindholm@enron.com 2001-08-31
## 4357 james.saunders@enron.com 2001-08-31
## 4358 james.saunders@enron.com 2001-08-31
## 4359 james.saunders@enron.com 2001-08-31
## 4360 stephen.schwarzbach@enron.com 2001-08-30
## 4361 morgan.gottsponer@enron.com 2001-08-30
## 4362 morgan.gottsponer@enron.com 2001-08-30
## 4363 morgan.gottsponer@enron.com 2001-08-30
## 4364 stephen.schwarzbach@enron.com 2001-08-30
## 4365 stephen.schwarzbach@enron.com 2001-08-30
## 4366 valerie.giles@enron.com 2001-08-30
## 4367 mary.botello@enron.com 2001-08-30
## 4368 john.sturn@enron.com 2001-08-30
## 4369 john.sturn@enron.com 2001-08-30
## 4370 john.sturn@enron.com 2001-08-30
## 4371 james.saunders@enron.com 2001-08-30
## 4372 james.saunders@enron.com 2001-08-30
## 4373 james.saunders@enron.com 2001-08-30
## 4374 john.fiscus@enron.com 2001-08-29
## 4375 kathy.campos@enron.com 2001-08-29
## 4376 james.saunders@enron.com 2001-08-29
## 4377 james.saunders@enron.com 2001-08-29
## 4378 james.saunders@enron.com 2001-08-29
## 4379 kathy.campos@enron.com 2001-08-29
## 4380 kathy.campos@enron.com 2001-08-29
## 4381 kathy.campos@enron.com 2001-08-29
## 4382 kathy.campos@enron.com 2001-08-29
## 4383 kathy.campos@enron.com 2001-08-29
## 4384 kathy.campos@enron.com 2001-08-29
## 4385 kathy.campos@enron.com 2001-08-29
## 4386 stephen.schwarzbach@enron.com 2001-08-29
## 4387 john.sturn@enron.com 2001-08-29
## 4388 john.sturn@enron.com 2001-08-29
## 4389 john.sturn@enron.com 2001-08-29
## 4390 elaine.concklin@enron.com 2001-08-28
## 4391 bob.chandler@enron.com 2001-08-28
## 4392 bob.chandler@enron.com 2001-08-28
## 4393 mary.botello@enron.com 2001-08-28
## 4394 joe.darensbourg@enron.com 2001-08-28
## 4395 rod.hayslett@enron.com 2001-08-28
## 4396 rod.hayslett@enron.com 2001-08-28
## 4397 rod.hayslett@enron.com 2001-08-28
## 4398 steve.gilbert@enron.com 2001-08-28
## 4399 bob.chandler@enron.com 2001-08-28
## 4400 nancy.carpenter@enron.com 2001-08-28
## 4401 john.sturn@enron.com 2001-08-28
## 4402 john.sturn@enron.com 2001-08-28
## 4403 john.sturn@enron.com 2001-08-28
## 4404 bob.chandler@enron.com 2001-08-28
## 4405 bob.chandler@enron.com 2001-08-28
## 4406 laura.kinningham@enron.com 2001-08-28
## 4407 rod.hayslett@enron.com 2001-08-28
## 4408 rod.hayslett@enron.com 2001-08-28
## 4409 rod.hayslett@enron.com 2001-08-28
## 4410 rod.hayslett@enron.com 2001-08-28
## 4411 rod.hayslett@enron.com 2001-08-28
## 4412 rod.hayslett@enron.com 2001-08-28
## 4413 rod.hayslett@enron.com 2001-08-28
## 4414 rod.hayslett@enron.com 2001-08-28
## 4415 rod.hayslett@enron.com 2001-08-28
## 4416 rod.hayslett@enron.com 2001-08-28
## 4417 rod.hayslett@enron.com 2001-08-28
## 4418 rod.hayslett@enron.com 2001-08-28
## 4419 rod.hayslett@enron.com 2001-08-28
## 4420 rod.hayslett@enron.com 2001-08-28
## 4421 rod.hayslett@enron.com 2001-08-28
## 4422 rod.hayslett@enron.com 2001-08-28
## 4423 rod.hayslett@enron.com 2001-08-28
## 4424 rod.hayslett@enron.com 2001-08-28
## 4425 rod.hayslett@enron.com 2001-08-28
## 4426 rod.hayslett@enron.com 2001-08-28
## 4427 stephen.schwarzbach@enron.com 2001-08-27
## 4428 dana.jones@enron.com 2001-08-27
## 4429 john.fiscus@enron.com 2001-08-27
## 4430 karl.jackson@enron.com 2001-08-27
## 4431 pallavi.goradia@enron.com 2001-08-27
## 4432 pallavi.goradia@enron.com 2001-08-27
## 4433 caroline.barnes@enron.com 2001-08-27
## 4434 caroline.barnes@enron.com 2001-08-27
## 4435 dana.jones@enron.com 2001-08-24
## 4436 dana.jones@enron.com 2001-08-24
## 4437 rod.hayslett@enron.com 2001-08-24
## 4438 rod.hayslett@enron.com 2001-08-24
## 4439 jeanette.doll@enron.com 2001-08-23
## 4440 rod.hayslett@enron.com 2001-08-23
## 4441 rod.hayslett@enron.com 2001-08-23
## 4442 rod.hayslett@enron.com 2001-08-23
## 4443 kasey.davis@enron.com 2001-08-22
## 4444 kathy.campos@enron.com 2001-08-22
## 4445 kathy.campos@enron.com 2001-08-22
## 4446 jana.domke@enron.com 2001-08-22
## 4447 joe.darensbourg@enron.com 2001-08-20
## 4448 mary.botello@enron.com 2001-08-20
## 4449 mary.botello@enron.com 2001-08-20
## 4450 rod.hayslett@enron.com 2001-08-20
## 4451 rod.hayslett@enron.com 2001-08-20
## 4452 rod.hayslett@enron.com 2001-08-20
## 4453 rod.hayslett@enron.com 2001-08-20
## 4454 rod.hayslett@enron.com 2001-08-20
## 4455 rod.hayslett@enron.com 2001-08-20
## 4456 rod.hayslett@enron.com 2001-08-20
## 4457 rod.hayslett@enron.com 2001-08-20
## 4458 rod.hayslett@enron.com 2001-08-20
## 4459 rod.hayslett@enron.com 2001-08-20
## 4460 steve.gilbert@enron.com 2001-08-19
## 4461 elaine.concklin@enron.com 2001-08-17
## 4462 elaine.concklin@enron.com 2001-08-17
## 4463 elaine.concklin@enron.com 2001-08-17
## 4464 rod.hayslett@enron.com 2001-08-17
## 4465 rod.hayslett@enron.com 2001-08-17
## 4466 rod.hayslett@enron.com 2001-08-17
## 4467 rod.hayslett@enron.com 2001-08-17
## 4468 rod.hayslett@enron.com 2001-08-17
## 4469 rod.hayslett@enron.com 2001-08-17
## 4470 rod.hayslett@enron.com 2001-08-17
## 4471 rod.hayslett@enron.com 2001-08-17
## 4472 rod.hayslett@enron.com 2001-08-17
## 4473 rod.hayslett@enron.com 2001-08-17
## 4474 rod.hayslett@enron.com 2001-08-17
## 4475 rod.hayslett@enron.com 2001-08-17
## 4476 rod.hayslett@enron.com 2001-08-17
## 4477 rodney.faldyn@enron.com 2001-08-16
## 4478 rodney.faldyn@enron.com 2001-08-16
## 4479 confirmit@enron.com 2001-08-16
## 4480 julie.armstrong@enron.com 2001-08-15
## 4481 julie.armstrong@enron.com 2001-08-15
## 4482 julie.armstrong@enron.com 2001-08-14
## 4483 julie.armstrong@enron.com 2001-08-14
## 4484 julie.armstrong@enron.com 2001-08-14
## 4485 julie.armstrong@enron.com 2001-08-14
## 4486 julie.armstrong@enron.com 2001-08-14
## 4487 julie.armstrong@enron.com 2001-08-14
## 4488 steve.kleb@enron.com 2001-08-13
## 4489 steve.kleb@enron.com 2001-08-13
## 4490 steve.hotte@enron.com 2001-08-13
## 4491 dan.fancler@enron.com 2001-08-09
## 4492 john.cobb@enron.com 2001-08-08
## 4493 patricia.wiederholt@enron.com 2001-08-07
## 4494 dan.fancler@enron.com 2001-08-07
## 4495 thomas.meers@enron.com 2001-08-07
## 4496 thomas.meers@enron.com 2001-08-07
## 4497 cynthia.barrow@enron.com 2001-08-07
## 4498 cynthia.barrow@enron.com 2001-08-07
## 4499 steve.kleb@enron.com 2001-08-06
## 4500 mary.botello@enron.com 2001-08-06
## 4501 betty.studzinski@enron.com 2001-08-03
## 4502 pamela.daily@enron.com 2001-08-02
## 4503 pamela.daily@enron.com 2001-08-02
## 4504 rod.hayslett@enron.com 2001-08-02
## 4505 keith.petersen@enron.com 2001-08-01
## 4506 keith.petersen@enron.com 2001-08-01
## 4507 keith.petersen@enron.com 2001-08-01
## 4508 keith.petersen@enron.com 2001-08-01
## 4509 keith.petersen@enron.com 2001-08-01
## 4510 keith.petersen@enron.com 2001-08-01
## 4511 rod.hayslett@enron.com 2001-08-01
## 4512 rod.hayslett@enron.com 2001-08-01
## 4513 rod.hayslett@enron.com 2001-08-01
## 4514 rod.hayslett@enron.com 2001-08-01
## 4515 rod.hayslett@enron.com 2001-08-01
## 4516 rod.hayslett@enron.com 2001-08-01
## 4517 rod.hayslett@enron.com 2001-08-01
## 4518 rod.hayslett@enron.com 2001-08-01
## 4519 rod.hayslett@enron.com 2001-08-01
## 4520 rod.hayslett@enron.com 2001-08-01
## 4521 rod.hayslett@enron.com 2001-08-01
## 4522 rod.hayslett@enron.com 2001-08-01
## 4523 rod.hayslett@enron.com 2001-08-01
## 4524 rod.hayslett@enron.com 2001-08-01
## 4525 rod.hayslett@enron.com 2001-08-01
## 4526 rod.hayslett@enron.com 2001-08-01
## 4527 rod.hayslett@enron.com 2001-08-01
## 4528 rod.hayslett@enron.com 2001-08-01
## 4529 emily.sellers@enron.com 2001-08-01
## 4530 emily.sellers@enron.com 2001-08-01
## 4531 emily.sellers@enron.com 2001-08-01
## 4532 dan.fancler@enron.com 2001-08-01
## 4533 rod.hayslett@enron.com 2001-07-31
## 4534 rod.hayslett@enron.com 2001-07-31
## 4535 rod.hayslett@enron.com 2001-07-31
## 4536 rod.hayslett@enron.com 2001-07-31
## 4537 rod.hayslett@enron.com 2001-07-31
## 4538 rod.hayslett@enron.com 2001-07-31
## 4539 rod.hayslett@enron.com 2001-07-31
## 4540 rod.hayslett@enron.com 2001-07-31
## 4541 rod.hayslett@enron.com 2001-07-31
## 4542 rod.hayslett@enron.com 2001-07-31
## 4543 rod.hayslett@enron.com 2001-07-31
## 4544 rod.hayslett@enron.com 2001-07-31
## 4545 rod.hayslett@enron.com 2001-07-31
## 4546 steve.kleb@enron.com 2001-07-30
## 4547 kevin.hyatt@enron.com 2001-07-30
## 4548 rod.hayslett@enron.com 2001-07-30
## 4549 mary.botello@enron.com 2001-07-30
## 4550 rod.hayslett@enron.com 2001-07-27
## 4551 tracy.geaccone@enron.com 2001-11-28
## 4552 tracy.geaccone@enron.com 2001-11-28
## 4553 tracy.geaccone@enron.com 2001-11-28
## 4554 tracy.geaccone@enron.com 2001-11-28
## 4555 tracy.geaccone@enron.com 2001-11-28
## 4556 tracy.geaccone@enron.com 2001-11-28
## 4557 tracy.geaccone@enron.com 2001-11-28
## 4558 tracy.geaccone@enron.com 2001-11-28
## 4559 tracy.geaccone@enron.com 2001-11-28
## 4560 tracy.geaccone@enron.com 2001-11-28
## 4561 tracy.geaccone@enron.com 2001-11-28
## 4562 tracy.geaccone@enron.com 2001-11-28
## 4563 tracy.geaccone@enron.com 2001-11-28
## 4564 tracy.geaccone@enron.com 2001-11-28
## 4565 tracy.geaccone@enron.com 2001-11-28
## 4566 tracy.geaccone@enron.com 2001-11-28
## 4567 tracy.geaccone@enron.com 2001-11-28
## 4568 tracy.geaccone@enron.com 2001-11-28
## 4569 tracy.geaccone@enron.com 2001-11-28
## 4570 tracy.geaccone@enron.com 2001-11-28
## 4571 tracy.geaccone@enron.com 2001-11-28
## 4572 tracy.geaccone@enron.com 2001-11-28
## 4573 tracy.geaccone@enron.com 2001-11-28
## 4574 tracy.geaccone@enron.com 2001-11-27
## 4575 tracy.geaccone@enron.com 2001-11-27
## 4576 tracy.geaccone@enron.com 2001-11-27
## 4577 tracy.geaccone@enron.com 2001-11-27
## 4578 tracy.geaccone@enron.com 2001-11-27
## 4579 tracy.geaccone@enron.com 2001-11-27
## 4580 tracy.geaccone@enron.com 2001-11-27
## 4581 tracy.geaccone@enron.com 2001-11-27
## 4582 tracy.geaccone@enron.com 2001-11-27
## 4583 tracy.geaccone@enron.com 2001-11-27
## 4584 tracy.geaccone@enron.com 2001-11-27
## 4585 tracy.geaccone@enron.com 2001-11-27
## 4586 tracy.geaccone@enron.com 2001-11-27
## 4587 tracy.geaccone@enron.com 2001-11-27
## 4588 tracy.geaccone@enron.com 2001-11-27
## 4589 tracy.geaccone@enron.com 2001-11-27
## 4590 tracy.geaccone@enron.com 2001-11-27
## 4591 tracy.geaccone@enron.com 2001-11-27
## 4592 tracy.geaccone@enron.com 2001-11-27
## 4593 tracy.geaccone@enron.com 2001-11-27
## 4594 tracy.geaccone@enron.com 2001-11-27
## 4595 tracy.geaccone@enron.com 2001-11-27
## 4596 tracy.geaccone@enron.com 2001-11-27
## 4597 tracy.geaccone@enron.com 2001-11-27
## 4598 tracy.geaccone@enron.com 2001-11-27
## 4599 tracy.geaccone@enron.com 2001-11-27
## 4600 tracy.geaccone@enron.com 2001-11-26
## 4601 tracy.geaccone@enron.com 2001-11-26
## 4602 tracy.geaccone@enron.com 2001-11-26
## 4603 tracy.geaccone@enron.com 2001-11-26
## 4604 tracy.geaccone@enron.com 2001-11-26
## 4605 tracy.geaccone@enron.com 2001-11-26
## 4606 tracy.geaccone@enron.com 2001-11-26
## 4607 tracy.geaccone@enron.com 2001-11-26
## 4608 tracy.geaccone@enron.com 2001-11-26
## 4609 tracy.geaccone@enron.com 2001-11-26
## 4610 tracy.geaccone@enron.com 2001-11-26
## 4611 tracy.geaccone@enron.com 2001-11-26
## 4612 tracy.geaccone@enron.com 2001-11-26
## 4613 tracy.geaccone@enron.com 2001-11-26
## 4614 tracy.geaccone@enron.com 2001-11-26
## 4615 tracy.geaccone@enron.com 2001-11-26
## 4616 tracy.geaccone@enron.com 2001-11-26
## 4617 tracy.geaccone@enron.com 2001-11-26
## 4618 tracy.geaccone@enron.com 2001-11-26
## 4619 tracy.geaccone@enron.com 2001-11-26
## 4620 tracy.geaccone@enron.com 2001-11-26
## 4621 tracy.geaccone@enron.com 2001-11-26
## 4622 tracy.geaccone@enron.com 2001-11-26
## 4623 tracy.geaccone@enron.com 2001-11-26
## 4624 tracy.geaccone@enron.com 2001-11-26
## 4625 tracy.geaccone@enron.com 2001-11-21
## 4626 tracy.geaccone@enron.com 2001-11-20
## 4627 tracy.geaccone@enron.com 2001-11-20
## 4628 tracy.geaccone@enron.com 2001-11-20
## 4629 tracy.geaccone@enron.com 2001-11-20
## 4630 tracy.geaccone@enron.com 2001-11-20
## 4631 tracy.geaccone@enron.com 2001-11-20
## 4632 tracy.geaccone@enron.com 2001-11-20
## 4633 tracy.geaccone@enron.com 2001-11-20
## 4634 tracy.geaccone@enron.com 2001-11-20
## 4635 tracy.geaccone@enron.com 2001-11-20
## 4636 tracy.geaccone@enron.com 2001-11-20
## 4637 tracy.geaccone@enron.com 2001-11-20
## 4638 tracy.geaccone@enron.com 2001-11-19
## 4639 tracy.geaccone@enron.com 2001-11-19
## 4640 tracy.geaccone@enron.com 2001-11-16
## 4641 tracy.geaccone@enron.com 2001-11-16
## 4642 tracy.geaccone@enron.com 2001-11-16
## 4643 tracy.geaccone@enron.com 2001-11-16
## 4644 tracy.geaccone@enron.com 2001-11-16
## 4645 tracy.geaccone@enron.com 2001-11-16
## 4646 tracy.geaccone@enron.com 2001-11-16
## 4647 tracy.geaccone@enron.com 2001-11-16
## 4648 tracy.geaccone@enron.com 2001-11-16
## 4649 tracy.geaccone@enron.com 2001-11-16
## 4650 tracy.geaccone@enron.com 2001-11-16
## 4651 tracy.geaccone@enron.com 2001-11-16
## 4652 tracy.geaccone@enron.com 2001-11-16
## 4653 tracy.geaccone@enron.com 2001-11-16
## 4654 tracy.geaccone@enron.com 2001-11-16
## 4655 tracy.geaccone@enron.com 2001-11-16
## 4656 tracy.geaccone@enron.com 2001-11-16
## 4657 tracy.geaccone@enron.com 2001-11-16
## 4658 tracy.geaccone@enron.com 2001-11-16
## 4659 tracy.geaccone@enron.com 2001-11-16
## 4660 tracy.geaccone@enron.com 2001-11-16
## 4661 tracy.geaccone@enron.com 2001-11-16
## 4662 tracy.geaccone@enron.com 2001-11-16
## 4663 tracy.geaccone@enron.com 2001-11-16
## 4664 tracy.geaccone@enron.com 2001-11-16
## 4665 tracy.geaccone@enron.com 2001-11-15
## 4666 tracy.geaccone@enron.com 2001-11-15
## 4667 tracy.geaccone@enron.com 2001-11-15
## 4668 tracy.geaccone@enron.com 2001-11-15
## 4669 tracy.geaccone@enron.com 2001-11-15
## 4670 tracy.geaccone@enron.com 2001-11-14
## 4671 tracy.geaccone@enron.com 2001-11-14
## 4672 tracy.geaccone@enron.com 2001-11-14
## 4673 tracy.geaccone@enron.com 2001-11-14
## 4674 tracy.geaccone@enron.com 2001-11-14
## 4675 tracy.geaccone@enron.com 2001-11-13
## 4676 tracy.geaccone@enron.com 2001-11-13
## 4677 tracy.geaccone@enron.com 2001-11-13
## 4678 tracy.geaccone@enron.com 2001-11-13
## 4679 tracy.geaccone@enron.com 2001-11-13
## 4680 tracy.geaccone@enron.com 2001-11-13
## 4681 tracy.geaccone@enron.com 2001-11-13
## 4682 tracy.geaccone@enron.com 2001-11-13
## 4683 tracy.geaccone@enron.com 2001-11-13
## 4684 tracy.geaccone@enron.com 2001-11-13
## 4685 tracy.geaccone@enron.com 2001-11-13
## 4686 tracy.geaccone@enron.com 2001-11-13
## 4687 tracy.geaccone@enron.com 2001-11-12
## 4688 tracy.geaccone@enron.com 2001-11-12
## 4689 tracy.geaccone@enron.com 2001-11-12
## 4690 tracy.geaccone@enron.com 2001-11-12
## 4691 tracy.geaccone@enron.com 2001-11-12
## 4692 tracy.geaccone@enron.com 2001-11-12
## 4693 tracy.geaccone@enron.com 2001-11-12
## 4694 tracy.geaccone@enron.com 2001-11-12
## 4695 tracy.geaccone@enron.com 2001-11-12
## 4696 tracy.geaccone@enron.com 2001-11-12
## 4697 tracy.geaccone@enron.com 2001-11-12
## 4698 tracy.geaccone@enron.com 2001-11-12
## 4699 tracy.geaccone@enron.com 2001-11-12
## 4700 tracy.geaccone@enron.com 2001-11-09
## 4701 tracy.geaccone@enron.com 2001-11-08
## 4702 tracy.geaccone@enron.com 2001-11-08
## 4703 tracy.geaccone@enron.com 2001-11-08
## 4704 tracy.geaccone@enron.com 2001-11-08
## 4705 tracy.geaccone@enron.com 2001-11-08
## 4706 tracy.geaccone@enron.com 2001-11-08
## 4707 tracy.geaccone@enron.com 2001-11-08
## 4708 tracy.geaccone@enron.com 2001-11-08
## 4709 tracy.geaccone@enron.com 2001-11-08
## 4710 tracy.geaccone@enron.com 2001-11-08
## 4711 tracy.geaccone@enron.com 2001-11-07
## 4712 tracy.geaccone@enron.com 2001-11-07
## 4713 tracy.geaccone@enron.com 2001-11-07
## 4714 tracy.geaccone@enron.com 2001-11-07
## 4715 tracy.geaccone@enron.com 2001-11-07
## 4716 tracy.geaccone@enron.com 2001-11-07
## 4717 tracy.geaccone@enron.com 2001-11-07
## 4718 tracy.geaccone@enron.com 2001-11-07
## 4719 tracy.geaccone@enron.com 2001-11-07
## 4720 tracy.geaccone@enron.com 2001-11-07
## 4721 tracy.geaccone@enron.com 2001-11-07
## 4722 tracy.geaccone@enron.com 2001-11-07
## 4723 tracy.geaccone@enron.com 2001-11-07
## 4724 tracy.geaccone@enron.com 2001-11-07
## 4725 tracy.geaccone@enron.com 2001-11-07
## 4726 tracy.geaccone@enron.com 2001-11-07
## 4727 tracy.geaccone@enron.com 2001-11-07
## 4728 tracy.geaccone@enron.com 2001-11-07
## 4729 tracy.geaccone@enron.com 2001-11-07
## 4730 tracy.geaccone@enron.com 2001-11-07
## 4731 tracy.geaccone@enron.com 2001-11-07
## 4732 tracy.geaccone@enron.com 2001-11-07
## 4733 tracy.geaccone@enron.com 2001-11-07
## 4734 tracy.geaccone@enron.com 2001-11-07
## 4735 tracy.geaccone@enron.com 2001-11-07
## 4736 tracy.geaccone@enron.com 2001-11-07
## 4737 tracy.geaccone@enron.com 2001-11-07
## 4738 tracy.geaccone@enron.com 2001-11-07
## 4739 tracy.geaccone@enron.com 2001-11-07
## 4740 tracy.geaccone@enron.com 2001-11-07
## 4741 tracy.geaccone@enron.com 2001-11-07
## 4742 tracy.geaccone@enron.com 2001-11-07
## 4743 tracy.geaccone@enron.com 2001-11-07
## 4744 tracy.geaccone@enron.com 2001-11-07
## 4745 tracy.geaccone@enron.com 2001-11-07
## 4746 tracy.geaccone@enron.com 2001-11-07
## 4747 tracy.geaccone@enron.com 2001-11-07
## 4748 tracy.geaccone@enron.com 2001-11-07
## 4749 tracy.geaccone@enron.com 2001-11-07
## 4750 tracy.geaccone@enron.com 2001-11-07
## 4751 tracy.geaccone@enron.com 2001-11-07
## 4752 tracy.geaccone@enron.com 2001-11-07
## 4753 tracy.geaccone@enron.com 2001-11-07
## 4754 tracy.geaccone@enron.com 2001-11-07
## 4755 tracy.geaccone@enron.com 2001-11-07
## 4756 tracy.geaccone@enron.com 2001-11-07
## 4757 tracy.geaccone@enron.com 2001-11-07
## 4758 tracy.geaccone@enron.com 2001-11-07
## 4759 tracy.geaccone@enron.com 2001-11-07
## 4760 tracy.geaccone@enron.com 2001-11-07
## 4761 tracy.geaccone@enron.com 2001-11-07
## 4762 tracy.geaccone@enron.com 2001-11-07
## 4763 tracy.geaccone@enron.com 2001-11-07
## 4764 tracy.geaccone@enron.com 2001-11-07
## 4765 tracy.geaccone@enron.com 2001-11-07
## 4766 tracy.geaccone@enron.com 2001-11-07
## 4767 tracy.geaccone@enron.com 2001-11-07
## 4768 tracy.geaccone@enron.com 2001-11-07
## 4769 tracy.geaccone@enron.com 2001-11-07
## 4770 tracy.geaccone@enron.com 2001-11-06
## 4771 tracy.geaccone@enron.com 2001-11-06
## 4772 tracy.geaccone@enron.com 2001-11-06
## 4773 tracy.geaccone@enron.com 2001-11-06
## 4774 tracy.geaccone@enron.com 2001-11-06
## 4775 tracy.geaccone@enron.com 2001-11-06
## 4776 tracy.geaccone@enron.com 2001-11-06
## 4777 tracy.geaccone@enron.com 2001-11-06
## 4778 tracy.geaccone@enron.com 2001-11-06
## 4779 tracy.geaccone@enron.com 2001-11-06
## 4780 tracy.geaccone@enron.com 2001-11-06
## 4781 tracy.geaccone@enron.com 2001-11-06
## 4782 tracy.geaccone@enron.com 2001-11-06
## 4783 tracy.geaccone@enron.com 2001-11-06
## 4784 tracy.geaccone@enron.com 2001-11-06
## 4785 tracy.geaccone@enron.com 2001-11-05
## 4786 tracy.geaccone@enron.com 2001-11-05
## 4787 tracy.geaccone@enron.com 2001-11-05
## 4788 tracy.geaccone@enron.com 2001-11-05
## 4789 tracy.geaccone@enron.com 2001-11-05
## 4790 tracy.geaccone@enron.com 2001-11-05
## 4791 tracy.geaccone@enron.com 2001-11-05
## 4792 tracy.geaccone@enron.com 2001-11-05
## 4793 tracy.geaccone@enron.com 2001-11-05
## 4794 tracy.geaccone@enron.com 2001-11-05
## 4795 tracy.geaccone@enron.com 2001-11-05
## 4796 tracy.geaccone@enron.com 2001-11-05
## 4797 tracy.geaccone@enron.com 2001-11-05
## 4798 tracy.geaccone@enron.com 2001-11-05
## 4799 tracy.geaccone@enron.com 2001-11-05
## 4800 tracy.geaccone@enron.com 2001-11-05
## 4801 tracy.geaccone@enron.com 2001-11-05
## 4802 tracy.geaccone@enron.com 2001-11-05
## 4803 tracy.geaccone@enron.com 2001-11-05
## 4804 tracy.geaccone@enron.com 2001-11-05
## 4805 tracy.geaccone@enron.com 2001-11-05
## 4806 tracy.geaccone@enron.com 2001-11-05
## 4807 tracy.geaccone@enron.com 2001-11-05
## 4808 tracy.geaccone@enron.com 2001-11-05
## 4809 tracy.geaccone@enron.com 2001-11-05
## 4810 tracy.geaccone@enron.com 2001-11-05
## 4811 tracy.geaccone@enron.com 2001-11-05
## 4812 tracy.geaccone@enron.com 2001-11-05
## 4813 tracy.geaccone@enron.com 2001-11-05
## 4814 tracy.geaccone@enron.com 2001-11-04
## 4815 tracy.geaccone@enron.com 2001-11-04
## 4816 tracy.geaccone@enron.com 2001-11-03
## 4817 tracy.geaccone@enron.com 2001-11-03
## 4818 tracy.geaccone@enron.com 2001-11-03
## 4819 tracy.geaccone@enron.com 2001-11-03
## 4820 tracy.geaccone@enron.com 2001-11-02
## 4821 tracy.geaccone@enron.com 2001-11-01
## 4822 tracy.geaccone@enron.com 2001-10-31
## 4823 tracy.geaccone@enron.com 2001-10-31
## 4824 tracy.geaccone@enron.com 2001-10-31
## 4825 tracy.geaccone@enron.com 2001-10-31
## 4826 tracy.geaccone@enron.com 2001-10-31
## 4827 tracy.geaccone@enron.com 2001-10-31
## 4828 tracy.geaccone@enron.com 2001-10-31
## 4829 tracy.geaccone@enron.com 2001-10-31
## 4830 tracy.geaccone@enron.com 2001-10-31
## 4831 tracy.geaccone@enron.com 2001-10-31
## 4832 tracy.geaccone@enron.com 2001-10-31
## 4833 tracy.geaccone@enron.com 2001-10-31
## 4834 tracy.geaccone@enron.com 2001-10-31
## 4835 tracy.geaccone@enron.com 2001-10-31
## 4836 tracy.geaccone@enron.com 2001-10-31
## 4837 tracy.geaccone@enron.com 2001-10-31
## 4838 tracy.geaccone@enron.com 2001-10-31
## 4839 tracy.geaccone@enron.com 2001-10-31
## 4840 tracy.geaccone@enron.com 2001-10-31
## 4841 tracy.geaccone@enron.com 2001-10-31
## 4842 tracy.geaccone@enron.com 2001-10-31
## 4843 tracy.geaccone@enron.com 2001-10-30
## 4844 tracy.geaccone@enron.com 2001-10-30
## 4845 tracy.geaccone@enron.com 2001-10-30
## 4846 tracy.geaccone@enron.com 2001-10-30
## 4847 tracy.geaccone@enron.com 2001-10-30
## 4848 tracy.geaccone@enron.com 2001-10-30
## 4849 tracy.geaccone@enron.com 2001-10-30
## 4850 tracy.geaccone@enron.com 2001-10-30
## 4851 tracy.geaccone@enron.com 2001-10-30
## 4852 tracy.geaccone@enron.com 2001-10-30
## 4853 tracy.geaccone@enron.com 2001-10-30
## 4854 tracy.geaccone@enron.com 2001-10-30
## 4855 tracy.geaccone@enron.com 2001-10-29
## 4856 tracy.geaccone@enron.com 2001-10-29
## 4857 tracy.geaccone@enron.com 2001-10-29
## 4858 tracy.geaccone@enron.com 2001-10-29
## 4859 tracy.geaccone@enron.com 2001-10-29
## 4860 tracy.geaccone@enron.com 2001-10-29
## 4861 tracy.geaccone@enron.com 2001-10-29
## 4862 tracy.geaccone@enron.com 2001-10-29
## 4863 tracy.geaccone@enron.com 2001-10-29
## 4864 tracy.geaccone@enron.com 2001-10-29
## 4865 tracy.geaccone@enron.com 2001-10-29
## 4866 tracy.geaccone@enron.com 2001-10-29
## 4867 tracy.geaccone@enron.com 2001-10-29
## 4868 tracy.geaccone@enron.com 2001-10-29
## 4869 tracy.geaccone@enron.com 2001-10-29
## 4870 tracy.geaccone@enron.com 2001-10-29
## 4871 tracy.geaccone@enron.com 2001-10-29
## 4872 tracy.geaccone@enron.com 2001-10-29
## 4873 tracy.geaccone@enron.com 2001-10-29
## 4874 tracy.geaccone@enron.com 2001-10-29
## 4875 tracy.geaccone@enron.com 2001-10-29
## 4876 tracy.geaccone@enron.com 2001-10-29
## 4877 tracy.geaccone@enron.com 2001-10-29
## 4878 tracy.geaccone@enron.com 2001-10-29
## 4879 tracy.geaccone@enron.com 2001-10-29
## 4880 tracy.geaccone@enron.com 2001-10-26
## 4881 tracy.geaccone@enron.com 2001-10-26
## 4882 tracy.geaccone@enron.com 2001-10-26
## 4883 tracy.geaccone@enron.com 2001-10-26
## 4884 tracy.geaccone@enron.com 2001-10-26
## 4885 tracy.geaccone@enron.com 2001-10-26
## 4886 tracy.geaccone@enron.com 2001-10-26
## 4887 tracy.geaccone@enron.com 2001-10-26
## 4888 tracy.geaccone@enron.com 2001-10-26
## 4889 tracy.geaccone@enron.com 2001-10-26
## 4890 tracy.geaccone@enron.com 2001-10-26
## 4891 tracy.geaccone@enron.com 2001-10-26
## 4892 tracy.geaccone@enron.com 2001-10-25
## 4893 tracy.geaccone@enron.com 2001-10-25
## 4894 tracy.geaccone@enron.com 2001-10-25
## 4895 tracy.geaccone@enron.com 2001-10-25
## 4896 tracy.geaccone@enron.com 2001-10-25
## 4897 tracy.geaccone@enron.com 2001-10-25
## 4898 tracy.geaccone@enron.com 2001-10-25
## 4899 tracy.geaccone@enron.com 2001-10-25
## 4900 tracy.geaccone@enron.com 2001-10-25
## 4901 tracy.geaccone@enron.com 2001-10-25
## 4902 tracy.geaccone@enron.com 2001-10-25
## 4903 tracy.geaccone@enron.com 2001-10-25
## 4904 tracy.geaccone@enron.com 2001-10-25
## 4905 tracy.geaccone@enron.com 2001-10-25
## 4906 tracy.geaccone@enron.com 2001-10-25
## 4907 tracy.geaccone@enron.com 2001-10-25
## 4908 tracy.geaccone@enron.com 2001-10-25
## 4909 tracy.geaccone@enron.com 2001-10-25
## 4910 tracy.geaccone@enron.com 2001-10-25
## 4911 tracy.geaccone@enron.com 2001-10-24
## 4912 tracy.geaccone@enron.com 2001-10-24
## 4913 tracy.geaccone@enron.com 2001-10-24
## 4914 tracy.geaccone@enron.com 2001-10-24
## 4915 tracy.geaccone@enron.com 2001-10-24
## 4916 tracy.geaccone@enron.com 2001-10-24
## 4917 tracy.geaccone@enron.com 2001-10-24
## 4918 tracy.geaccone@enron.com 2001-10-24
## 4919 tracy.geaccone@enron.com 2001-10-24
## 4920 tracy.geaccone@enron.com 2001-10-24
## 4921 tracy.geaccone@enron.com 2001-10-24
## 4922 tracy.geaccone@enron.com 2001-10-24
## 4923 tracy.geaccone@enron.com 2001-10-24
## 4924 tracy.geaccone@enron.com 2001-10-24
## 4925 tracy.geaccone@enron.com 2001-10-24
## 4926 tracy.geaccone@enron.com 2001-10-24
## 4927 tracy.geaccone@enron.com 2001-10-24
## 4928 tracy.geaccone@enron.com 2001-10-24
## 4929 tracy.geaccone@enron.com 2001-10-24
## 4930 tracy.geaccone@enron.com 2001-10-24
## 4931 tracy.geaccone@enron.com 2001-10-24
## 4932 tracy.geaccone@enron.com 2001-10-24
## 4933 tracy.geaccone@enron.com 2001-10-23
## 4934 tracy.geaccone@enron.com 2001-10-23
## 4935 tracy.geaccone@enron.com 2001-10-23
## 4936 tracy.geaccone@enron.com 2001-10-23
## 4937 tracy.geaccone@enron.com 2001-10-23
## 4938 tracy.geaccone@enron.com 2001-10-23
## 4939 tracy.geaccone@enron.com 2001-10-23
## 4940 tracy.geaccone@enron.com 2001-10-23
## 4941 tracy.geaccone@enron.com 2001-10-23
## 4942 tracy.geaccone@enron.com 2001-10-23
## 4943 tracy.geaccone@enron.com 2001-10-23
## 4944 tracy.geaccone@enron.com 2001-10-23
## 4945 tracy.geaccone@enron.com 2001-10-23
## 4946 tracy.geaccone@enron.com 2001-10-23
## 4947 tracy.geaccone@enron.com 2001-10-23
## 4948 tracy.geaccone@enron.com 2001-10-23
## 4949 tracy.geaccone@enron.com 2001-10-23
## 4950 tracy.geaccone@enron.com 2001-10-23
## 4951 tracy.geaccone@enron.com 2001-10-23
## 4952 tracy.geaccone@enron.com 2001-10-23
## 4953 tracy.geaccone@enron.com 2001-10-23
## 4954 tracy.geaccone@enron.com 2001-10-23
## 4955 tracy.geaccone@enron.com 2001-10-23
## 4956 tracy.geaccone@enron.com 2001-10-23
## 4957 tracy.geaccone@enron.com 2001-10-23
## 4958 tracy.geaccone@enron.com 2001-10-23
## 4959 tracy.geaccone@enron.com 2001-10-23
## 4960 tracy.geaccone@enron.com 2001-10-23
## 4961 tracy.geaccone@enron.com 2001-10-23
## 4962 tracy.geaccone@enron.com 2001-10-23
## 4963 tracy.geaccone@enron.com 2001-10-23
## 4964 tracy.geaccone@enron.com 2001-10-23
## 4965 tracy.geaccone@enron.com 2001-10-23
## 4966 tracy.geaccone@enron.com 2001-10-23
## 4967 tracy.geaccone@enron.com 2001-10-23
## 4968 tracy.geaccone@enron.com 2001-10-23
## 4969 tracy.geaccone@enron.com 2001-10-23
## 4970 tracy.geaccone@enron.com 2001-10-23
## 4971 tracy.geaccone@enron.com 2001-10-23
## 4972 tracy.geaccone@enron.com 2001-10-23
## 4973 tracy.geaccone@enron.com 2001-10-23
## 4974 tracy.geaccone@enron.com 2001-10-23
## 4975 tracy.geaccone@enron.com 2001-10-23
## 4976 tracy.geaccone@enron.com 2001-10-23
## 4977 tracy.geaccone@enron.com 2001-10-23
## 4978 tracy.geaccone@enron.com 2001-10-23
## 4979 tracy.geaccone@enron.com 2001-10-23
## 4980 tracy.geaccone@enron.com 2001-10-23
## 4981 tracy.geaccone@enron.com 2001-10-23
## 4982 tracy.geaccone@enron.com 2001-10-23
## 4983 tracy.geaccone@enron.com 2001-10-23
## 4984 tracy.geaccone@enron.com 2001-10-23
## 4985 tracy.geaccone@enron.com 2001-10-23
## 4986 tracy.geaccone@enron.com 2001-10-23
## 4987 tracy.geaccone@enron.com 2001-10-23
## 4988 tracy.geaccone@enron.com 2001-10-23
## 4989 tracy.geaccone@enron.com 2001-10-23
## 4990 tracy.geaccone@enron.com 2001-10-23
## 4991 tracy.geaccone@enron.com 2001-10-23
## 4992 tracy.geaccone@enron.com 2001-10-23
## 4993 tracy.geaccone@enron.com 2001-10-23
## 4994 tracy.geaccone@enron.com 2001-10-23
## 4995 tracy.geaccone@enron.com 2001-10-23
## 4996 tracy.geaccone@enron.com 2001-10-23
## 4997 tracy.geaccone@enron.com 2001-10-23
## 4998 tracy.geaccone@enron.com 2001-10-22
## 4999 tracy.geaccone@enron.com 2001-10-22
## 5000 tracy.geaccone@enron.com 2001-10-22
## 5001 tracy.geaccone@enron.com 2001-10-22
## 5002 tracy.geaccone@enron.com 2001-10-22
## 5003 tracy.geaccone@enron.com 2001-10-22
## 5004 tracy.geaccone@enron.com 2001-10-22
## 5005 tracy.geaccone@enron.com 2001-10-22
## 5006 tracy.geaccone@enron.com 2001-10-22
## 5007 tracy.geaccone@enron.com 2001-10-22
## 5008 tracy.geaccone@enron.com 2001-10-22
## 5009 tracy.geaccone@enron.com 2001-10-22
## 5010 tracy.geaccone@enron.com 2001-10-22
## 5011 tracy.geaccone@enron.com 2001-10-22
## 5012 tracy.geaccone@enron.com 2001-10-22
## 5013 tracy.geaccone@enron.com 2001-10-22
## 5014 tracy.geaccone@enron.com 2001-10-22
## 5015 tracy.geaccone@enron.com 2001-10-22
## 5016 tracy.geaccone@enron.com 2001-10-22
## 5017 tracy.geaccone@enron.com 2001-10-22
## 5018 tracy.geaccone@enron.com 2001-10-22
## 5019 tracy.geaccone@enron.com 2001-10-22
## 5020 tracy.geaccone@enron.com 2001-10-22
## 5021 tracy.geaccone@enron.com 2001-10-22
## 5022 tracy.geaccone@enron.com 2001-10-22
## 5023 tracy.geaccone@enron.com 2001-10-22
## 5024 tracy.geaccone@enron.com 2001-10-22
## 5025 tracy.geaccone@enron.com 2001-10-22
## 5026 tracy.geaccone@enron.com 2001-10-22
## 5027 tracy.geaccone@enron.com 2001-10-22
## 5028 tracy.geaccone@enron.com 2001-10-22
## 5029 tracy.geaccone@enron.com 2001-10-22
## 5030 tracy.geaccone@enron.com 2001-10-22
## 5031 tracy.geaccone@enron.com 2001-10-22
## 5032 tracy.geaccone@enron.com 2001-10-22
## 5033 tracy.geaccone@enron.com 2001-10-22
## 5034 tracy.geaccone@enron.com 2001-10-22
## 5035 tracy.geaccone@enron.com 2001-10-22
## 5036 tracy.geaccone@enron.com 2001-10-22
## 5037 tracy.geaccone@enron.com 2001-10-22
## 5038 tracy.geaccone@enron.com 2001-10-22
## 5039 tracy.geaccone@enron.com 2001-10-19
## 5040 tracy.geaccone@enron.com 2001-10-19
## 5041 tracy.geaccone@enron.com 2001-10-19
## 5042 tracy.geaccone@enron.com 2001-10-19
## 5043 tracy.geaccone@enron.com 2001-10-19
## 5044 tracy.geaccone@enron.com 2001-10-19
## 5045 tracy.geaccone@enron.com 2001-10-19
## 5046 tracy.geaccone@enron.com 2001-10-19
## 5047 tracy.geaccone@enron.com 2001-10-19
## 5048 tracy.geaccone@enron.com 2001-10-19
## 5049 tracy.geaccone@enron.com 2001-10-19
## 5050 tracy.geaccone@enron.com 2001-10-19
## 5051 tracy.geaccone@enron.com 2001-10-19
## 5052 tracy.geaccone@enron.com 2001-10-19
## 5053 tracy.geaccone@enron.com 2001-10-19
## 5054 tracy.geaccone@enron.com 2001-10-19
## 5055 tracy.geaccone@enron.com 2001-10-19
## 5056 tracy.geaccone@enron.com 2001-10-19
## 5057 tracy.geaccone@enron.com 2001-10-19
## 5058 tracy.geaccone@enron.com 2001-10-19
## 5059 tracy.geaccone@enron.com 2001-10-19
## 5060 tracy.geaccone@enron.com 2001-10-19
## 5061 tracy.geaccone@enron.com 2001-10-19
## 5062 tracy.geaccone@enron.com 2001-10-19
## 5063 tracy.geaccone@enron.com 2001-10-18
## 5064 tracy.geaccone@enron.com 2001-10-18
## 5065 tracy.geaccone@enron.com 2001-10-18
## 5066 tracy.geaccone@enron.com 2001-10-18
## 5067 tracy.geaccone@enron.com 2001-10-18
## 5068 tracy.geaccone@enron.com 2001-10-18
## 5069 tracy.geaccone@enron.com 2001-10-18
## 5070 tracy.geaccone@enron.com 2001-10-18
## 5071 tracy.geaccone@enron.com 2001-10-18
## 5072 tracy.geaccone@enron.com 2001-10-18
## 5073 tracy.geaccone@enron.com 2001-10-18
## 5074 tracy.geaccone@enron.com 2001-10-18
## 5075 tracy.geaccone@enron.com 2001-10-18
## 5076 tracy.geaccone@enron.com 2001-10-18
## 5077 tracy.geaccone@enron.com 2001-10-18
## 5078 tracy.geaccone@enron.com 2001-10-18
## 5079 tracy.geaccone@enron.com 2001-10-18
## 5080 tracy.geaccone@enron.com 2001-10-18
## 5081 tracy.geaccone@enron.com 2001-10-18
## 5082 tracy.geaccone@enron.com 2001-10-18
## 5083 tracy.geaccone@enron.com 2001-10-18
## 5084 tracy.geaccone@enron.com 2001-10-18
## 5085 tracy.geaccone@enron.com 2001-10-18
## 5086 tracy.geaccone@enron.com 2001-10-18
## 5087 tracy.geaccone@enron.com 2001-10-18
## 5088 tracy.geaccone@enron.com 2001-10-18
## 5089 tracy.geaccone@enron.com 2001-10-18
## 5090 tracy.geaccone@enron.com 2001-10-18
## 5091 tracy.geaccone@enron.com 2001-10-18
## 5092 tracy.geaccone@enron.com 2001-10-18
## 5093 tracy.geaccone@enron.com 2001-10-18
## 5094 tracy.geaccone@enron.com 2001-10-18
## 5095 tracy.geaccone@enron.com 2001-10-18
## 5096 tracy.geaccone@enron.com 2001-10-18
## 5097 tracy.geaccone@enron.com 2001-10-18
## 5098 tracy.geaccone@enron.com 2001-10-18
## 5099 tracy.geaccone@enron.com 2001-10-18
## 5100 tracy.geaccone@enron.com 2001-10-18
## 5101 tracy.geaccone@enron.com 2001-10-18
## 5102 tracy.geaccone@enron.com 2001-10-18
## 5103 tracy.geaccone@enron.com 2001-10-18
## 5104 tracy.geaccone@enron.com 2001-10-18
## 5105 tracy.geaccone@enron.com 2001-10-18
## 5106 tracy.geaccone@enron.com 2001-10-18
## 5107 tracy.geaccone@enron.com 2001-10-18
## 5108 tracy.geaccone@enron.com 2001-10-18
## 5109 tracy.geaccone@enron.com 2001-10-18
## 5110 tracy.geaccone@enron.com 2001-10-18
## 5111 tracy.geaccone@enron.com 2001-10-18
## 5112 tracy.geaccone@enron.com 2001-10-18
## 5113 tracy.geaccone@enron.com 2001-10-18
## 5114 tracy.geaccone@enron.com 2001-10-18
## 5115 tracy.geaccone@enron.com 2001-10-18
## 5116 tracy.geaccone@enron.com 2001-10-18
## 5117 tracy.geaccone@enron.com 2001-10-18
## 5118 tracy.geaccone@enron.com 2001-10-18
## 5119 tracy.geaccone@enron.com 2001-10-18
## 5120 tracy.geaccone@enron.com 2001-10-18
## 5121 tracy.geaccone@enron.com 2001-10-18
## 5122 tracy.geaccone@enron.com 2001-10-18
## 5123 tracy.geaccone@enron.com 2001-10-18
## 5124 tracy.geaccone@enron.com 2001-10-18
## 5125 tracy.geaccone@enron.com 2001-10-18
## 5126 tracy.geaccone@enron.com 2001-10-18
## 5127 tracy.geaccone@enron.com 2001-10-18
## 5128 tracy.geaccone@enron.com 2001-10-18
## 5129 tracy.geaccone@enron.com 2001-10-18
## 5130 tracy.geaccone@enron.com 2001-10-18
## 5131 tracy.geaccone@enron.com 2001-10-18
## 5132 tracy.geaccone@enron.com 2001-10-18
## 5133 tracy.geaccone@enron.com 2001-10-18
## 5134 tracy.geaccone@enron.com 2001-10-18
## 5135 tracy.geaccone@enron.com 2001-10-18
## 5136 tracy.geaccone@enron.com 2001-10-18
## 5137 tracy.geaccone@enron.com 2001-10-18
## 5138 tracy.geaccone@enron.com 2001-10-18
## 5139 tracy.geaccone@enron.com 2001-10-18
## 5140 tracy.geaccone@enron.com 2001-10-18
## 5141 tracy.geaccone@enron.com 2001-10-16
## 5142 tracy.geaccone@enron.com 2001-10-16
## 5143 tracy.geaccone@enron.com 2001-10-16
## 5144 tracy.geaccone@enron.com 2001-10-16
## 5145 tracy.geaccone@enron.com 2001-10-16
## 5146 tracy.geaccone@enron.com 2001-10-16
## 5147 tracy.geaccone@enron.com 2001-10-16
## 5148 tracy.geaccone@enron.com 2001-10-16
## 5149 tracy.geaccone@enron.com 2001-10-16
## 5150 tracy.geaccone@enron.com 2001-10-16
## 5151 tracy.geaccone@enron.com 2001-10-16
## 5152 tracy.geaccone@enron.com 2001-10-16
## 5153 tracy.geaccone@enron.com 2001-10-16
## 5154 tracy.geaccone@enron.com 2001-10-16
## 5155 tracy.geaccone@enron.com 2001-10-16
## 5156 tracy.geaccone@enron.com 2001-10-16
## 5157 tracy.geaccone@enron.com 2001-10-16
## 5158 tracy.geaccone@enron.com 2001-10-16
## 5159 tracy.geaccone@enron.com 2001-10-16
## 5160 tracy.geaccone@enron.com 2001-10-16
## 5161 tracy.geaccone@enron.com 2001-10-16
## 5162 tracy.geaccone@enron.com 2001-10-16
## 5163 tracy.geaccone@enron.com 2001-10-16
## 5164 tracy.geaccone@enron.com 2001-10-16
## 5165 tracy.geaccone@enron.com 2001-10-16
## 5166 tracy.geaccone@enron.com 2001-10-16
## 5167 tracy.geaccone@enron.com 2001-10-16
## 5168 tracy.geaccone@enron.com 2001-10-16
## 5169 tracy.geaccone@enron.com 2001-10-16
## 5170 tracy.geaccone@enron.com 2001-10-16
## 5171 tracy.geaccone@enron.com 2001-10-16
## 5172 tracy.geaccone@enron.com 2001-10-16
## 5173 tracy.geaccone@enron.com 2001-10-16
## 5174 tracy.geaccone@enron.com 2001-10-16
## 5175 tracy.geaccone@enron.com 2001-10-16
## 5176 tracy.geaccone@enron.com 2001-10-16
## 5177 tracy.geaccone@enron.com 2001-10-16
## 5178 tracy.geaccone@enron.com 2001-10-16
## 5179 tracy.geaccone@enron.com 2001-10-16
## 5180 tracy.geaccone@enron.com 2001-10-16
## 5181 tracy.geaccone@enron.com 2001-10-16
## 5182 tracy.geaccone@enron.com 2001-10-16
## 5183 tracy.geaccone@enron.com 2001-10-16
## 5184 tracy.geaccone@enron.com 2001-10-16
## 5185 tracy.geaccone@enron.com 2001-10-16
## 5186 tracy.geaccone@enron.com 2001-10-16
## 5187 tracy.geaccone@enron.com 2001-10-16
## 5188 tracy.geaccone@enron.com 2001-10-16
## 5189 tracy.geaccone@enron.com 2001-10-16
## 5190 tracy.geaccone@enron.com 2001-10-16
## 5191 tracy.geaccone@enron.com 2001-10-16
## 5192 tracy.geaccone@enron.com 2001-10-16
## 5193 tracy.geaccone@enron.com 2001-10-16
## 5194 tracy.geaccone@enron.com 2001-10-16
## 5195 tracy.geaccone@enron.com 2001-10-16
## 5196 tracy.geaccone@enron.com 2001-10-16
## 5197 tracy.geaccone@enron.com 2001-10-16
## 5198 tracy.geaccone@enron.com 2001-10-16
## 5199 tracy.geaccone@enron.com 2001-10-16
## 5200 tracy.geaccone@enron.com 2001-10-16
## 5201 tracy.geaccone@enron.com 2001-10-16
## 5202 tracy.geaccone@enron.com 2001-10-16
## 5203 tracy.geaccone@enron.com 2001-10-16
## 5204 tracy.geaccone@enron.com 2001-10-16
## 5205 tracy.geaccone@enron.com 2001-10-16
## 5206 tracy.geaccone@enron.com 2001-10-16
## 5207 tracy.geaccone@enron.com 2001-10-16
## 5208 tracy.geaccone@enron.com 2001-10-16
## 5209 tracy.geaccone@enron.com 2001-10-16
## 5210 tracy.geaccone@enron.com 2001-10-16
## 5211 tracy.geaccone@enron.com 2001-10-16
## 5212 tracy.geaccone@enron.com 2001-10-16
## 5213 tracy.geaccone@enron.com 2001-10-16
## 5214 tracy.geaccone@enron.com 2001-10-16
## 5215 tracy.geaccone@enron.com 2001-10-16
## 5216 tracy.geaccone@enron.com 2001-10-16
## 5217 tracy.geaccone@enron.com 2001-10-16
## 5218 tracy.geaccone@enron.com 2001-10-16
## 5219 tracy.geaccone@enron.com 2001-10-16
## 5220 tracy.geaccone@enron.com 2001-10-16
## 5221 tracy.geaccone@enron.com 2001-10-16
## 5222 tracy.geaccone@enron.com 2001-10-15
## 5223 tracy.geaccone@enron.com 2001-10-15
## 5224 tracy.geaccone@enron.com 2001-10-15
## 5225 tracy.geaccone@enron.com 2001-10-15
## 5226 tracy.geaccone@enron.com 2001-10-15
## 5227 tracy.geaccone@enron.com 2001-10-15
## 5228 tracy.geaccone@enron.com 2001-10-15
## 5229 tracy.geaccone@enron.com 2001-10-15
## 5230 tracy.geaccone@enron.com 2001-10-12
## 5231 tracy.geaccone@enron.com 2001-10-12
## 5232 tracy.geaccone@enron.com 2001-10-12
## 5233 tracy.geaccone@enron.com 2001-10-12
## 5234 tracy.geaccone@enron.com 2001-10-12
## 5235 tracy.geaccone@enron.com 2001-10-12
## 5236 tracy.geaccone@enron.com 2001-10-12
## 5237 tracy.geaccone@enron.com 2001-10-12
## 5238 tracy.geaccone@enron.com 2001-10-12
## 5239 tracy.geaccone@enron.com 2001-10-12
## 5240 tracy.geaccone@enron.com 2001-10-12
## 5241 tracy.geaccone@enron.com 2001-10-12
## 5242 tracy.geaccone@enron.com 2001-10-10
## 5243 tracy.geaccone@enron.com 2001-10-10
## 5244 tracy.geaccone@enron.com 2001-10-10
## 5245 tracy.geaccone@enron.com 2001-10-10
## 5246 tracy.geaccone@enron.com 2001-10-10
## 5247 tracy.geaccone@enron.com 2001-10-10
## 5248 tracy.geaccone@enron.com 2001-10-10
## 5249 tracy.geaccone@enron.com 2001-10-10
## 5250 tracy.geaccone@enron.com 2001-10-10
## 5251 tracy.geaccone@enron.com 2001-10-10
## 5252 tracy.geaccone@enron.com 2001-10-10
## 5253 tracy.geaccone@enron.com 2001-10-10
## 5254 tracy.geaccone@enron.com 2001-10-10
## 5255 tracy.geaccone@enron.com 2001-10-10
## 5256 tracy.geaccone@enron.com 2001-10-10
## 5257 tracy.geaccone@enron.com 2001-10-10
## 5258 tracy.geaccone@enron.com 2001-10-10
## 5259 tracy.geaccone@enron.com 2001-10-10
## 5260 tracy.geaccone@enron.com 2001-10-10
## 5261 tracy.geaccone@enron.com 2001-10-10
## 5262 tracy.geaccone@enron.com 2001-10-10
## 5263 tracy.geaccone@enron.com 2001-10-10
## 5264 tracy.geaccone@enron.com 2001-10-10
## 5265 tracy.geaccone@enron.com 2001-10-10
## 5266 tracy.geaccone@enron.com 2001-10-10
## 5267 tracy.geaccone@enron.com 2001-10-10
## 5268 tracy.geaccone@enron.com 2001-10-10
## 5269 tracy.geaccone@enron.com 2001-10-10
## 5270 tracy.geaccone@enron.com 2001-10-10
## 5271 tracy.geaccone@enron.com 2001-10-10
## 5272 tracy.geaccone@enron.com 2001-10-10
## 5273 tracy.geaccone@enron.com 2001-10-10
## 5274 tracy.geaccone@enron.com 2001-10-10
## 5275 tracy.geaccone@enron.com 2001-10-10
## 5276 tracy.geaccone@enron.com 2001-10-10
## 5277 tracy.geaccone@enron.com 2001-10-10
## 5278 tracy.geaccone@enron.com 2001-10-10
## 5279 tracy.geaccone@enron.com 2001-10-10
## 5280 tracy.geaccone@enron.com 2001-10-10
## 5281 tracy.geaccone@enron.com 2001-10-10
## 5282 tracy.geaccone@enron.com 2001-10-09
## 5283 tracy.geaccone@enron.com 2001-10-09
## 5284 tracy.geaccone@enron.com 2001-10-09
## 5285 tracy.geaccone@enron.com 2001-10-09
## 5286 tracy.geaccone@enron.com 2001-10-09
## 5287 tracy.geaccone@enron.com 2001-10-09
## 5288 tracy.geaccone@enron.com 2001-10-09
## 5289 tracy.geaccone@enron.com 2001-10-09
## 5290 tracy.geaccone@enron.com 2001-10-09
## 5291 tracy.geaccone@enron.com 2001-10-09
## 5292 tracy.geaccone@enron.com 2001-10-09
## 5293 tracy.geaccone@enron.com 2001-10-09
## 5294 tracy.geaccone@enron.com 2001-10-09
## 5295 tracy.geaccone@enron.com 2001-10-09
## 5296 tracy.geaccone@enron.com 2001-10-08
## 5297 tracy.geaccone@enron.com 2001-10-08
## 5298 tracy.geaccone@enron.com 2001-10-08
## 5299 tracy.geaccone@enron.com 2001-10-08
## 5300 tracy.geaccone@enron.com 2001-10-08
## 5301 tracy.geaccone@enron.com 2001-10-08
## 5302 tracy.geaccone@enron.com 2001-10-08
## 5303 tracy.geaccone@enron.com 2001-10-08
## 5304 tracy.geaccone@enron.com 2001-10-08
## 5305 tracy.geaccone@enron.com 2001-10-08
## 5306 tracy.geaccone@enron.com 2001-10-08
## 5307 tracy.geaccone@enron.com 2001-10-08
## 5308 tracy.geaccone@enron.com 2001-10-08
## 5309 tracy.geaccone@enron.com 2001-10-08
## 5310 tracy.geaccone@enron.com 2001-10-08
## 5311 tracy.geaccone@enron.com 2001-10-08
## 5312 tracy.geaccone@enron.com 2001-10-08
## 5313 tracy.geaccone@enron.com 2001-10-08
## 5314 tracy.geaccone@enron.com 2001-10-08
## 5315 tracy.geaccone@enron.com 2001-10-08
## 5316 tracy.geaccone@enron.com 2001-10-08
## 5317 tracy.geaccone@enron.com 2001-10-08
## 5318 tracy.geaccone@enron.com 2001-10-06
## 5319 tracy.geaccone@enron.com 2001-10-06
## 5320 tracy.geaccone@enron.com 2001-10-06
## 5321 tracy.geaccone@enron.com 2001-10-06
## 5322 tracy.geaccone@enron.com 2001-10-06
## 5323 tracy.geaccone@enron.com 2001-10-06
## 5324 tracy.geaccone@enron.com 2001-10-06
## 5325 tracy.geaccone@enron.com 2001-10-06
## 5326 tracy.geaccone@enron.com 2001-10-06
## 5327 tracy.geaccone@enron.com 2001-10-06
## 5328 tracy.geaccone@enron.com 2001-10-06
## 5329 tracy.geaccone@enron.com 2001-10-06
## 5330 tracy.geaccone@enron.com 2001-10-06
## 5331 tracy.geaccone@enron.com 2001-10-06
## 5332 tracy.geaccone@enron.com 2001-10-05
## 5333 tracy.geaccone@enron.com 2001-10-05
## 5334 tracy.geaccone@enron.com 2001-10-05
## 5335 tracy.geaccone@enron.com 2001-10-05
## 5336 tracy.geaccone@enron.com 2001-10-05
## 5337 tracy.geaccone@enron.com 2001-10-05
## 5338 tracy.geaccone@enron.com 2001-10-05
## 5339 tracy.geaccone@enron.com 2001-10-05
## 5340 tracy.geaccone@enron.com 2001-10-05
## 5341 tracy.geaccone@enron.com 2001-10-05
## 5342 tracy.geaccone@enron.com 2001-10-05
## 5343 tracy.geaccone@enron.com 2001-10-05
## 5344 tracy.geaccone@enron.com 2001-10-05
## 5345 tracy.geaccone@enron.com 2001-10-04
## 5346 tracy.geaccone@enron.com 2001-10-04
## 5347 tracy.geaccone@enron.com 2001-10-04
## 5348 tracy.geaccone@enron.com 2001-10-04
## 5349 tracy.geaccone@enron.com 2001-10-04
## 5350 tracy.geaccone@enron.com 2001-10-04
## 5351 tracy.geaccone@enron.com 2001-10-04
## 5352 tracy.geaccone@enron.com 2001-10-04
## 5353 tracy.geaccone@enron.com 2001-10-04
## 5354 tracy.geaccone@enron.com 2001-10-04
## 5355 tracy.geaccone@enron.com 2001-10-04
## 5356 tracy.geaccone@enron.com 2001-10-04
## 5357 tracy.geaccone@enron.com 2001-10-04
## 5358 tracy.geaccone@enron.com 2001-10-04
## 5359 tracy.geaccone@enron.com 2001-10-04
## 5360 tracy.geaccone@enron.com 2001-10-04
## 5361 tracy.geaccone@enron.com 2001-10-04
## 5362 tracy.geaccone@enron.com 2001-10-04
## 5363 tracy.geaccone@enron.com 2001-10-04
## 5364 tracy.geaccone@enron.com 2001-10-03
## 5365 tracy.geaccone@enron.com 2001-10-03
## 5366 tracy.geaccone@enron.com 2001-10-03
## 5367 tracy.geaccone@enron.com 2001-10-03
## 5368 tracy.geaccone@enron.com 2001-10-03
## 5369 tracy.geaccone@enron.com 2001-10-03
## 5370 tracy.geaccone@enron.com 2001-10-03
## 5371 tracy.geaccone@enron.com 2001-10-03
## 5372 tracy.geaccone@enron.com 2001-10-03
## 5373 tracy.geaccone@enron.com 2001-10-03
## 5374 tracy.geaccone@enron.com 2001-10-03
## 5375 tracy.geaccone@enron.com 2001-10-03
## 5376 tracy.geaccone@enron.com 2001-10-03
## 5377 tracy.geaccone@enron.com 2001-10-03
## 5378 tracy.geaccone@enron.com 2001-10-03
## 5379 tracy.geaccone@enron.com 2001-10-03
## 5380 tracy.geaccone@enron.com 2001-10-03
## 5381 tracy.geaccone@enron.com 2001-10-03
## 5382 tracy.geaccone@enron.com 2001-10-03
## 5383 tracy.geaccone@enron.com 2001-10-03
## 5384 tracy.geaccone@enron.com 2001-10-03
## 5385 tracy.geaccone@enron.com 2001-10-03
## 5386 tracy.geaccone@enron.com 2001-10-03
## 5387 tracy.geaccone@enron.com 2001-10-03
## 5388 tracy.geaccone@enron.com 2001-10-03
## 5389 tracy.geaccone@enron.com 2001-10-03
## 5390 tracy.geaccone@enron.com 2001-10-03
## 5391 tracy.geaccone@enron.com 2001-10-03
## 5392 tracy.geaccone@enron.com 2001-10-03
## 5393 tracy.geaccone@enron.com 2001-10-03
## 5394 tracy.geaccone@enron.com 2001-10-03
## 5395 tracy.geaccone@enron.com 2001-10-03
## 5396 tracy.geaccone@enron.com 2001-10-03
## 5397 tracy.geaccone@enron.com 2001-10-03
## 5398 tracy.geaccone@enron.com 2001-10-03
## 5399 tracy.geaccone@enron.com 2001-10-03
## 5400 tracy.geaccone@enron.com 2001-10-03
## 5401 tracy.geaccone@enron.com 2001-10-03
## 5402 tracy.geaccone@enron.com 2001-10-03
## 5403 tracy.geaccone@enron.com 2001-10-03
## 5404 tracy.geaccone@enron.com 2001-10-02
## 5405 tracy.geaccone@enron.com 2001-10-02
## 5406 tracy.geaccone@enron.com 2001-10-02
## 5407 tracy.geaccone@enron.com 2001-10-02
## 5408 tracy.geaccone@enron.com 2001-10-02
## 5409 tracy.geaccone@enron.com 2001-10-02
## 5410 tracy.geaccone@enron.com 2001-10-02
## 5411 tracy.geaccone@enron.com 2001-10-02
## 5412 tracy.geaccone@enron.com 2001-10-02
## 5413 tracy.geaccone@enron.com 2001-10-02
## 5414 tracy.geaccone@enron.com 2001-10-02
## 5415 tracy.geaccone@enron.com 2001-10-02
## 5416 tracy.geaccone@enron.com 2001-10-02
## 5417 tracy.geaccone@enron.com 2001-10-02
## 5418 tracy.geaccone@enron.com 2001-10-02
## 5419 tracy.geaccone@enron.com 2001-10-02
## 5420 tracy.geaccone@enron.com 2001-10-01
## 5421 tracy.geaccone@enron.com 2001-10-01
## 5422 tracy.geaccone@enron.com 2001-10-01
## 5423 tracy.geaccone@enron.com 2001-10-01
## 5424 tracy.geaccone@enron.com 2001-10-01
## 5425 tracy.geaccone@enron.com 2001-10-01
## 5426 tracy.geaccone@enron.com 2001-10-01
## 5427 tracy.geaccone@enron.com 2001-10-01
## 5428 tracy.geaccone@enron.com 2001-10-01
## 5429 tracy.geaccone@enron.com 2001-10-01
## 5430 tracy.geaccone@enron.com 2001-10-01
## 5431 tracy.geaccone@enron.com 2001-10-01
## 5432 tracy.geaccone@enron.com 2001-10-01
## 5433 tracy.geaccone@enron.com 2001-10-01
## 5434 tracy.geaccone@enron.com 2001-10-01
## 5435 tracy.geaccone@enron.com 2001-10-01
## 5436 tracy.geaccone@enron.com 2001-10-01
## 5437 tracy.geaccone@enron.com 2001-10-01
## 5438 tracy.geaccone@enron.com 2001-10-01
## 5439 tracy.geaccone@enron.com 2001-10-01
## 5440 tracy.geaccone@enron.com 2001-10-01
## 5441 tracy.geaccone@enron.com 2001-10-01
## 5442 tracy.geaccone@enron.com 2001-10-01
## 5443 tracy.geaccone@enron.com 2001-10-01
## 5444 tracy.geaccone@enron.com 2001-10-01
## 5445 tracy.geaccone@enron.com 2001-10-01
## 5446 tracy.geaccone@enron.com 2001-09-28
## 5447 tracy.geaccone@enron.com 2001-09-28
## 5448 tracy.geaccone@enron.com 2001-09-28
## 5449 tracy.geaccone@enron.com 2001-09-28
## 5450 tracy.geaccone@enron.com 2001-09-28
## 5451 tracy.geaccone@enron.com 2001-09-28
## 5452 tracy.geaccone@enron.com 2001-09-27
## 5453 tracy.geaccone@enron.com 2001-09-27
## 5454 tracy.geaccone@enron.com 2001-09-27
## 5455 tracy.geaccone@enron.com 2001-09-24
## 5456 tracy.geaccone@enron.com 2001-09-17
## 5457 teb.lokey@enron.com 2002-03-25
## 5458 teb.lokey@enron.com 2002-03-25
## 5459 teb.lokey@enron.com 2002-03-20
## 5460 teb.lokey@enron.com 2002-03-20
## 5461 teb.lokey@enron.com 2002-03-20
## 5462 teb.lokey@enron.com 2002-03-20
## 5463 teb.lokey@enron.com 2002-03-20
## 5464 teb.lokey@enron.com 2002-03-20
## 5465 teb.lokey@enron.com 2002-03-20
## 5466 teb.lokey@enron.com 2002-03-20
## 5467 teb.lokey@enron.com 2002-03-20
## 5468 teb.lokey@enron.com 2002-03-19
## 5469 teb.lokey@enron.com 2002-03-15
## 5470 teb.lokey@enron.com 2002-03-15
## 5471 teb.lokey@enron.com 2002-03-14
## 5472 teb.lokey@enron.com 2002-03-14
## 5473 teb.lokey@enron.com 2002-03-14
## 5474 teb.lokey@enron.com 2002-03-14
## 5475 teb.lokey@enron.com 2002-03-14
## 5476 teb.lokey@enron.com 2002-03-13
## 5477 teb.lokey@enron.com 2002-03-12
## 5478 teb.lokey@enron.com 2002-03-12
## 5479 teb.lokey@enron.com 2002-03-11
## 5480 teb.lokey@enron.com 2002-03-08
## 5481 teb.lokey@enron.com 2002-03-08
## 5482 teb.lokey@enron.com 2002-03-08
## 5483 teb.lokey@enron.com 2002-03-08
## 5484 teb.lokey@enron.com 2002-03-08
## 5485 teb.lokey@enron.com 2002-03-08
## 5486 teb.lokey@enron.com 2002-03-07
## 5487 teb.lokey@enron.com 2002-03-07
## 5488 teb.lokey@enron.com 2002-03-06
## 5489 teb.lokey@enron.com 2002-03-06
## 5490 teb.lokey@enron.com 2002-03-05
## 5491 teb.lokey@enron.com 2002-02-25
## 5492 teb.lokey@enron.com 2002-02-25
## 5493 teb.lokey@enron.com 2002-02-25
## 5494 teb.lokey@enron.com 2002-02-25
## 5495 teb.lokey@enron.com 2002-02-25
## 5496 teb.lokey@enron.com 2002-02-25
## 5497 teb.lokey@enron.com 2002-02-25
## 5498 teb.lokey@enron.com 2002-02-25
## 5499 teb.lokey@enron.com 2002-02-25
## 5500 teb.lokey@enron.com 2002-02-25
## 5501 teb.lokey@enron.com 2002-02-25
## 5502 teb.lokey@enron.com 2002-02-25
## 5503 teb.lokey@enron.com 2002-02-22
## 5504 teb.lokey@enron.com 2002-02-22
## 5505 teb.lokey@enron.com 2002-02-15
## 5506 teb.lokey@enron.com 2002-02-15
## 5507 teb.lokey@enron.com 2002-02-15
## 5508 teb.lokey@enron.com 2002-02-15
## 5509 teb.lokey@enron.com 2002-02-15
## 5510 teb.lokey@enron.com 2002-02-15
## 5511 teb.lokey@enron.com 2002-02-14
## 5512 teb.lokey@enron.com 2002-02-14
## 5513 teb.lokey@enron.com 2002-02-11
## 5514 teb.lokey@enron.com 2002-02-11
## 5515 teb.lokey@enron.com 2002-02-11
## 5516 teb.lokey@enron.com 2002-02-11
## 5517 teb.lokey@enron.com 2002-02-11
## 5518 teb.lokey@enron.com 2002-02-11
## 5519 teb.lokey@enron.com 2002-02-11
## 5520 teb.lokey@enron.com 2002-02-11
## 5521 teb.lokey@enron.com 2002-02-11
## 5522 teb.lokey@enron.com 2002-02-11
## 5523 teb.lokey@enron.com 2002-02-11
## 5524 teb.lokey@enron.com 2002-02-11
## 5525 teb.lokey@enron.com 2002-02-11
## 5526 teb.lokey@enron.com 2002-02-11
## 5527 teb.lokey@enron.com 2002-02-11
## 5528 teb.lokey@enron.com 2002-02-11
## 5529 teb.lokey@enron.com 2002-02-07
## 5530 teb.lokey@enron.com 2002-02-07
## 5531 teb.lokey@enron.com 2002-02-07
## 5532 teb.lokey@enron.com 2002-02-07
## 5533 teb.lokey@enron.com 2002-02-07
## 5534 teb.lokey@enron.com 2002-02-07
## 5535 teb.lokey@enron.com 2002-02-07
## 5536 teb.lokey@enron.com 2002-02-07
## 5537 teb.lokey@enron.com 2002-02-06
## 5538 teb.lokey@enron.com 2002-02-05
## 5539 teb.lokey@enron.com 2002-02-05
## 5540 teb.lokey@enron.com 2002-02-05
## 5541 teb.lokey@enron.com 2002-02-05
## 5542 teb.lokey@enron.com 2002-02-05
## 5543 teb.lokey@enron.com 2002-02-05
## 5544 teb.lokey@enron.com 2002-02-05
## 5545 teb.lokey@enron.com 2002-02-05
## 5546 teb.lokey@enron.com 2002-01-28
## 5547 teb.lokey@enron.com 2002-01-28
## 5548 teb.lokey@enron.com 2002-01-24
## 5549 teb.lokey@enron.com 2002-01-24
## 5550 teb.lokey@enron.com 2002-01-24
## 5551 teb.lokey@enron.com 2002-01-24
## 5552 teb.lokey@enron.com 2002-01-24
## 5553 teb.lokey@enron.com 2002-01-24
## 5554 teb.lokey@enron.com 2002-01-24
## 5555 teb.lokey@enron.com 2002-01-24
## 5556 teb.lokey@enron.com 2002-01-24
## 5557 teb.lokey@enron.com 2002-01-24
## 5558 teb.lokey@enron.com 2002-01-23
## 5559 teb.lokey@enron.com 2002-01-22
## 5560 teb.lokey@enron.com 2002-01-22
## 5561 teb.lokey@enron.com 2002-01-22
## 5562 teb.lokey@enron.com 2002-01-22
## 5563 teb.lokey@enron.com 2002-01-22
## 5564 teb.lokey@enron.com 2002-01-21
## 5565 teb.lokey@enron.com 2002-01-21
## 5566 teb.lokey@enron.com 2002-01-21
## 5567 teb.lokey@enron.com 2002-01-18
## 5568 teb.lokey@enron.com 2002-01-18
## 5569 teb.lokey@enron.com 2002-01-18
## 5570 teb.lokey@enron.com 2002-01-18
## 5571 teb.lokey@enron.com 2002-01-18
## 5572 teb.lokey@enron.com 2002-01-18
## 5573 teb.lokey@enron.com 2002-01-18
## 5574 teb.lokey@enron.com 2002-01-18
## 5575 teb.lokey@enron.com 2002-01-18
## 5576 teb.lokey@enron.com 2002-01-18
## 5577 teb.lokey@enron.com 2002-01-18
## 5578 teb.lokey@enron.com 2002-01-18
## 5579 teb.lokey@enron.com 2002-01-18
## 5580 teb.lokey@enron.com 2002-01-18
## 5581 teb.lokey@enron.com 2002-01-18
## 5582 teb.lokey@enron.com 2002-01-18
## 5583 teb.lokey@enron.com 2002-01-18
## 5584 teb.lokey@enron.com 2002-01-18
## 5585 teb.lokey@enron.com 2002-01-18
## 5586 teb.lokey@enron.com 2002-01-16
## 5587 teb.lokey@enron.com 2002-01-16
## 5588 teb.lokey@enron.com 2002-01-16
## 5589 teb.lokey@enron.com 2002-01-16
## 5590 teb.lokey@enron.com 2002-01-16
## 5591 teb.lokey@enron.com 2002-01-16
## 5592 teb.lokey@enron.com 2002-01-16
## 5593 teb.lokey@enron.com 2002-01-16
## 5594 teb.lokey@enron.com 2002-01-16
## 5595 teb.lokey@enron.com 2002-01-16
## 5596 teb.lokey@enron.com 2002-01-16
## 5597 teb.lokey@enron.com 2002-01-16
## 5598 teb.lokey@enron.com 2002-01-14
## 5599 teb.lokey@enron.com 2002-01-14
## 5600 teb.lokey@enron.com 2002-01-14
## 5601 teb.lokey@enron.com 2002-01-14
## 5602 teb.lokey@enron.com 2002-01-14
## 5603 teb.lokey@enron.com 2002-01-14
## 5604 teb.lokey@enron.com 2002-01-14
## 5605 teb.lokey@enron.com 2002-01-14
## 5606 teb.lokey@enron.com 2002-01-14
## 5607 teb.lokey@enron.com 2002-01-14
## 5608 teb.lokey@enron.com 2002-01-14
## 5609 teb.lokey@enron.com 2002-01-14
## 5610 teb.lokey@enron.com 2002-01-11
## 5611 teb.lokey@enron.com 2002-01-11
## 5612 teb.lokey@enron.com 2002-01-11
## 5613 teb.lokey@enron.com 2002-01-11
## 5614 teb.lokey@enron.com 2002-01-11
## 5615 teb.lokey@enron.com 2002-01-11
## 5616 teb.lokey@enron.com 2002-01-11
## 5617 teb.lokey@enron.com 2002-01-11
## 5618 teb.lokey@enron.com 2002-01-11
## 5619 teb.lokey@enron.com 2002-01-11
## 5620 teb.lokey@enron.com 2002-01-11
## 5621 teb.lokey@enron.com 2002-01-11
## 5622 teb.lokey@enron.com 2002-01-11
## 5623 teb.lokey@enron.com 2002-01-11
## 5624 teb.lokey@enron.com 2002-01-10
## 5625 teb.lokey@enron.com 2002-01-10
## 5626 teb.lokey@enron.com 2002-01-10
## 5627 teb.lokey@enron.com 2002-01-10
## 5628 teb.lokey@enron.com 2002-01-10
## 5629 teb.lokey@enron.com 2002-01-10
## 5630 teb.lokey@enron.com 2002-01-10
## 5631 teb.lokey@enron.com 2002-01-10
## 5632 teb.lokey@enron.com 2002-01-10
## 5633 teb.lokey@enron.com 2002-01-10
## 5634 teb.lokey@enron.com 2002-01-10
## 5635 teb.lokey@enron.com 2002-01-10
## 5636 teb.lokey@enron.com 2002-01-10
## 5637 teb.lokey@enron.com 2002-01-10
## 5638 teb.lokey@enron.com 2002-01-10
## 5639 teb.lokey@enron.com 2002-01-10
## 5640 teb.lokey@enron.com 2002-01-10
## 5641 teb.lokey@enron.com 2002-01-10
## 5642 teb.lokey@enron.com 2002-01-10
## 5643 teb.lokey@enron.com 2002-01-10
## 5644 teb.lokey@enron.com 2002-01-10
## 5645 teb.lokey@enron.com 2002-01-10
## 5646 teb.lokey@enron.com 2002-01-10
## 5647 teb.lokey@enron.com 2002-01-10
## 5648 teb.lokey@enron.com 2002-01-10
## 5649 teb.lokey@enron.com 2002-01-10
## 5650 teb.lokey@enron.com 2002-01-10
## 5651 teb.lokey@enron.com 2002-01-10
## 5652 teb.lokey@enron.com 2002-01-10
## 5653 teb.lokey@enron.com 2002-01-10
## 5654 teb.lokey@enron.com 2002-01-10
## 5655 teb.lokey@enron.com 2002-01-10
## 5656 teb.lokey@enron.com 2002-01-10
## 5657 teb.lokey@enron.com 2002-01-10
## 5658 teb.lokey@enron.com 2002-01-10
## 5659 teb.lokey@enron.com 2002-01-10
## 5660 teb.lokey@enron.com 2002-01-10
## 5661 teb.lokey@enron.com 2002-01-10
## 5662 teb.lokey@enron.com 2002-01-10
## 5663 teb.lokey@enron.com 2002-01-10
## 5664 teb.lokey@enron.com 2002-01-10
## 5665 teb.lokey@enron.com 2002-01-10
## 5666 teb.lokey@enron.com 2002-01-10
## 5667 teb.lokey@enron.com 2002-01-10
## 5668 teb.lokey@enron.com 2002-01-10
## 5669 teb.lokey@enron.com 2002-01-10
## 5670 teb.lokey@enron.com 2002-01-10
## 5671 teb.lokey@enron.com 2002-01-10
## 5672 teb.lokey@enron.com 2002-01-10
## 5673 teb.lokey@enron.com 2002-01-10
## 5674 teb.lokey@enron.com 2002-01-10
## 5675 teb.lokey@enron.com 2002-01-10
## 5676 teb.lokey@enron.com 2002-01-10
## 5677 teb.lokey@enron.com 2002-01-10
## 5678 teb.lokey@enron.com 2002-01-10
## 5679 teb.lokey@enron.com 2002-01-10
## 5680 teb.lokey@enron.com 2002-01-10
## 5681 teb.lokey@enron.com 2002-01-10
## 5682 teb.lokey@enron.com 2002-01-10
## 5683 teb.lokey@enron.com 2002-01-10
## 5684 teb.lokey@enron.com 2002-01-10
## 5685 teb.lokey@enron.com 2002-01-10
## 5686 teb.lokey@enron.com 2002-01-10
## 5687 teb.lokey@enron.com 2002-01-10
## 5688 teb.lokey@enron.com 2002-01-10
## 5689 teb.lokey@enron.com 2002-01-10
## 5690 teb.lokey@enron.com 2002-01-10
## 5691 teb.lokey@enron.com 2002-01-10
## 5692 teb.lokey@enron.com 2002-01-10
## 5693 teb.lokey@enron.com 2002-01-10
## 5694 teb.lokey@enron.com 2002-01-10
## 5695 teb.lokey@enron.com 2002-01-10
## 5696 teb.lokey@enron.com 2002-01-10
## 5697 teb.lokey@enron.com 2002-01-10
## 5698 teb.lokey@enron.com 2002-01-10
## 5699 teb.lokey@enron.com 2002-01-10
## 5700 teb.lokey@enron.com 2002-01-10
## 5701 teb.lokey@enron.com 2002-01-10
## 5702 teb.lokey@enron.com 2002-01-10
## 5703 teb.lokey@enron.com 2002-01-10
## 5704 teb.lokey@enron.com 2002-01-10
## 5705 teb.lokey@enron.com 2002-01-10
## 5706 teb.lokey@enron.com 2002-01-09
## 5707 teb.lokey@enron.com 2002-01-09
## 5708 teb.lokey@enron.com 2002-01-09
## 5709 teb.lokey@enron.com 2002-01-09
## 5710 teb.lokey@enron.com 2002-01-09
## 5711 teb.lokey@enron.com 2002-01-09
## 5712 teb.lokey@enron.com 2002-01-09
## 5713 teb.lokey@enron.com 2002-01-09
## 5714 teb.lokey@enron.com 2002-01-09
## 5715 teb.lokey@enron.com 2002-01-09
## 5716 teb.lokey@enron.com 2002-01-09
## 5717 teb.lokey@enron.com 2002-01-09
## 5718 teb.lokey@enron.com 2002-01-09
## 5719 teb.lokey@enron.com 2002-01-09
## 5720 teb.lokey@enron.com 2002-01-09
## 5721 teb.lokey@enron.com 2002-01-09
## 5722 teb.lokey@enron.com 2002-01-09
## 5723 teb.lokey@enron.com 2002-01-09
## 5724 teb.lokey@enron.com 2002-01-09
## 5725 teb.lokey@enron.com 2002-01-09
## 5726 teb.lokey@enron.com 2002-01-09
## 5727 teb.lokey@enron.com 2002-01-09
## 5728 teb.lokey@enron.com 2002-01-09
## 5729 teb.lokey@enron.com 2002-01-09
## 5730 teb.lokey@enron.com 2002-01-09
## 5731 teb.lokey@enron.com 2002-01-09
## 5732 teb.lokey@enron.com 2002-01-09
## 5733 teb.lokey@enron.com 2002-01-09
## 5734 teb.lokey@enron.com 2002-01-09
## 5735 teb.lokey@enron.com 2002-01-09
## 5736 teb.lokey@enron.com 2002-01-09
## 5737 teb.lokey@enron.com 2002-01-09
## 5738 teb.lokey@enron.com 2002-01-09
## 5739 teb.lokey@enron.com 2002-01-09
## 5740 teb.lokey@enron.com 2002-01-09
## 5741 teb.lokey@enron.com 2002-01-09
## 5742 teb.lokey@enron.com 2002-01-09
## 5743 teb.lokey@enron.com 2002-01-09
## 5744 teb.lokey@enron.com 2002-01-09
## 5745 teb.lokey@enron.com 2002-01-09
## 5746 teb.lokey@enron.com 2002-01-09
## 5747 teb.lokey@enron.com 2002-01-09
## 5748 teb.lokey@enron.com 2002-01-09
## 5749 teb.lokey@enron.com 2002-01-09
## 5750 teb.lokey@enron.com 2002-01-08
## 5751 teb.lokey@enron.com 2002-01-08
## 5752 teb.lokey@enron.com 2002-01-08
## 5753 teb.lokey@enron.com 2002-01-08
## 5754 teb.lokey@enron.com 2002-01-08
## 5755 teb.lokey@enron.com 2002-01-08
## 5756 teb.lokey@enron.com 2002-01-08
## 5757 teb.lokey@enron.com 2002-01-08
## 5758 teb.lokey@enron.com 2002-01-08
## 5759 teb.lokey@enron.com 2002-01-07
## 5760 teb.lokey@enron.com 2002-01-07
## 5761 teb.lokey@enron.com 2002-01-07
## 5762 teb.lokey@enron.com 2002-01-07
## 5763 teb.lokey@enron.com 2002-01-07
## 5764 teb.lokey@enron.com 2002-01-07
## 5765 teb.lokey@enron.com 2002-01-07
## 5766 teb.lokey@enron.com 2002-01-07
## 5767 teb.lokey@enron.com 2002-01-07
## 5768 teb.lokey@enron.com 2002-01-07
## 5769 teb.lokey@enron.com 2002-01-03
## 5770 teb.lokey@enron.com 2002-01-03
## 5771 teb.lokey@enron.com 2001-12-20
## 5772 teb.lokey@enron.com 2001-12-20
## 5773 teb.lokey@enron.com 2001-12-20
## 5774 teb.lokey@enron.com 2001-12-20
## 5775 teb.lokey@enron.com 2001-12-20
## 5776 teb.lokey@enron.com 2001-12-20
## 5777 teb.lokey@enron.com 2001-12-20
## 5778 teb.lokey@enron.com 2001-12-20
## 5779 teb.lokey@enron.com 2001-12-20
## 5780 teb.lokey@enron.com 2001-12-20
## 5781 teb.lokey@enron.com 2001-12-20
## 5782 teb.lokey@enron.com 2001-12-20
## 5783 teb.lokey@enron.com 2001-12-11
## 5784 teb.lokey@enron.com 2001-12-11
## 5785 teb.lokey@enron.com 2001-12-10
## 5786 teb.lokey@enron.com 2001-09-26
## 5787 teb.lokey@enron.com 2001-09-26
## 5788 teb.lokey@enron.com 2001-09-26
## 5789 teb.lokey@enron.com 2001-09-27
## 5790 teb.lokey@enron.com 2001-09-27
## 5791 teb.lokey@enron.com 2001-09-27
## 5792 teb.lokey@enron.com 2001-09-27
## 5793 teb.lokey@enron.com 2001-09-27
## 5794 teb.lokey@enron.com 2001-09-27
## 5795 teb.lokey@enron.com 2001-09-27
## 5796 teb.lokey@enron.com 2001-09-27
## 5797 teb.lokey@enron.com 2001-09-27
## 5798 teb.lokey@enron.com 2001-09-27
## 5799 teb.lokey@enron.com 2001-09-27
## 5800 teb.lokey@enron.com 2001-09-28
## 5801 teb.lokey@enron.com 2001-09-28
## 5802 teb.lokey@enron.com 2001-09-28
## 5803 teb.lokey@enron.com 2001-09-28
## 5804 teb.lokey@enron.com 2001-09-28
## 5805 teb.lokey@enron.com 2001-09-28
## 5806 teb.lokey@enron.com 2001-09-28
## 5807 teb.lokey@enron.com 2001-09-28
## 5808 teb.lokey@enron.com 2001-09-28
## 5809 teb.lokey@enron.com 2001-09-28
## 5810 teb.lokey@enron.com 2001-10-01
## 5811 teb.lokey@enron.com 2001-10-01
## 5812 teb.lokey@enron.com 2001-10-01
## 5813 teb.lokey@enron.com 2001-10-04
## 5814 teb.lokey@enron.com 2001-10-04
## 5815 teb.lokey@enron.com 2001-10-04
## 5816 teb.lokey@enron.com 2001-10-04
## 5817 teb.lokey@enron.com 2001-10-04
## 5818 teb.lokey@enron.com 2001-10-04
## 5819 teb.lokey@enron.com 2001-10-04
## 5820 teb.lokey@enron.com 2001-10-04
## 5821 teb.lokey@enron.com 2001-10-04
## 5822 teb.lokey@enron.com 2001-10-04
## 5823 teb.lokey@enron.com 2001-10-04
## 5824 teb.lokey@enron.com 2001-10-04
## 5825 teb.lokey@enron.com 2001-10-04
## 5826 teb.lokey@enron.com 2001-10-05
## 5827 teb.lokey@enron.com 2001-10-05
## 5828 teb.lokey@enron.com 2001-10-05
## 5829 teb.lokey@enron.com 2001-10-05
## 5830 teb.lokey@enron.com 2001-10-05
## 5831 teb.lokey@enron.com 2001-10-05
## 5832 teb.lokey@enron.com 2001-10-05
## 5833 teb.lokey@enron.com 2001-10-05
## 5834 teb.lokey@enron.com 2001-10-05
## 5835 teb.lokey@enron.com 2001-10-08
## 5836 teb.lokey@enron.com 2001-10-08
## 5837 teb.lokey@enron.com 2001-10-09
## 5838 teb.lokey@enron.com 2001-10-09
## 5839 teb.lokey@enron.com 2001-10-09
## 5840 teb.lokey@enron.com 2001-10-10
## 5841 teb.lokey@enron.com 2001-10-11
## 5842 teb.lokey@enron.com 2001-10-11
## 5843 teb.lokey@enron.com 2001-10-11
## 5844 teb.lokey@enron.com 2001-10-11
## 5845 teb.lokey@enron.com 2001-10-11
## 5846 teb.lokey@enron.com 2001-10-11
## 5847 teb.lokey@enron.com 2001-10-11
## 5848 teb.lokey@enron.com 2001-10-11
## 5849 teb.lokey@enron.com 2001-10-11
## 5850 teb.lokey@enron.com 2001-10-15
## 5851 teb.lokey@enron.com 2001-10-15
## 5852 teb.lokey@enron.com 2001-10-15
## 5853 teb.lokey@enron.com 2001-10-22
## 5854 teb.lokey@enron.com 2001-10-22
## 5855 teb.lokey@enron.com 2001-10-22
## 5856 teb.lokey@enron.com 2001-10-22
## 5857 teb.lokey@enron.com 2001-10-22
## 5858 teb.lokey@enron.com 2001-10-22
## 5859 teb.lokey@enron.com 2001-10-22
## 5860 teb.lokey@enron.com 2001-10-22
## 5861 teb.lokey@enron.com 2001-10-22
## 5862 teb.lokey@enron.com 2001-10-22
## 5863 teb.lokey@enron.com 2001-10-22
## 5864 teb.lokey@enron.com 2001-10-22
## 5865 teb.lokey@enron.com 2001-10-23
## 5866 teb.lokey@enron.com 2001-10-23
## 5867 teb.lokey@enron.com 2001-10-25
## 5868 teb.lokey@enron.com 2001-10-25
## 5869 teb.lokey@enron.com 2001-10-25
## 5870 teb.lokey@enron.com 2001-10-25
## 5871 teb.lokey@enron.com 2001-10-25
## 5872 teb.lokey@enron.com 2001-10-25
## 5873 teb.lokey@enron.com 2001-10-25
## 5874 teb.lokey@enron.com 2001-10-25
## 5875 ann.mora@enron.com 2001-01-23
## 5876 irene.flynn@enron.com 2001-01-30
## 5877 christi.culwell@enron.com 2001-02-09
## 5878 christi.culwell@enron.com 2001-02-09
## 5879 david.rosenberg@enron.com 2001-02-14
## 5880 david.rosenberg@enron.com 2001-02-14
## 5881 maggie.schroeder@enron.com 2001-04-06
## 5882 christi.culwell@enron.com 2001-04-23
## 5883 christi.culwell@enron.com 2001-05-04
## 5884 maggie.schroeder@enron.com 2001-05-08
## 5885 michele.winckowski@enron.com 2001-06-05
## 5886 frazier.king@enron.com 2002-02-14
## 5887 l..eisenstein@enron.com 2002-02-14
## 5888 l..eisenstein@enron.com 2002-02-14
## 5889 l..eisenstein@enron.com 2002-02-14
## 5890 l..eisenstein@enron.com 2002-02-14
## 5891 bambi.heckerman@enron.com 2002-02-14
## 5892 center.ets@enron.com 2002-02-14
## 5893 center.ets@enron.com 2002-02-14
## 5894 mark.lavine@enron.com 2002-02-14
## 5895 mark.lavine@enron.com 2002-02-14
## 5896 mark.lavine@enron.com 2002-02-14
## 5897 john.keiser@enron.com 2002-02-14
## 5898 john.cobb@enron.com 2002-02-14
## 5899 john.cobb@enron.com 2002-02-14
## 5900 elizabeth.brown@enron.com 2002-02-13
## 5901 elizabeth.brown@enron.com 2002-02-13
## 5902 elizabeth.brown@enron.com 2002-02-13
## 5903 elizabeth.brown@enron.com 2002-02-13
## 5904 elizabeth.brown@enron.com 2002-02-13
## 5905 elizabeth.brown@enron.com 2002-02-13
## 5906 kimberly.bragg@enron.com 2002-02-12
## 5907 audrey.robertson@enron.com 2002-02-12
## 5908 audrey.robertson@enron.com 2002-02-12
## 5909 audrey.robertson@enron.com 2002-02-12
## 5910 audrey.robertson@enron.com 2002-02-12
## 5911 audrey.robertson@enron.com 2002-02-12
## 5912 audrey.robertson@enron.com 2002-02-12
## 5913 audrey.robertson@enron.com 2002-02-12
## 5914 audrey.robertson@enron.com 2002-02-12
## 5915 frazier.king@enron.com 2002-02-12
## 5916 jan.moore@enron.com 2002-02-11
## 5917 jan.moore@enron.com 2002-02-11
## 5918 jan.moore@enron.com 2002-02-11
## 5919 jan.moore@enron.com 2002-02-11
## 5920 glen.hass@enron.com 2002-02-11
## 5921 glen.hass@enron.com 2002-02-08
## 5922 glen.hass@enron.com 2002-02-08
## 5923 james.saunders@enron.com 2002-02-08
## 5924 james.saunders@enron.com 2002-02-08
## 5925 james.saunders@enron.com 2002-02-08
## 5926 james.saunders@enron.com 2002-02-08
## 5927 james.saunders@enron.com 2002-02-08
## 5928 tracy.geaccone@enron.com 2002-02-08
## 5929 tracy.geaccone@enron.com 2002-02-08
## 5930 tracy.geaccone@enron.com 2002-02-08
## 5931 tracy.geaccone@enron.com 2002-02-08
## 5932 tracy.geaccone@enron.com 2002-02-08
## 5933 tracy.geaccone@enron.com 2002-02-08
## 5934 tracy.geaccone@enron.com 2002-02-08
## 5935 tracy.geaccone@enron.com 2002-02-08
## 5936 tracy.geaccone@enron.com 2002-02-08
## 5937 tracy.geaccone@enron.com 2002-02-08
## 5938 tracy.geaccone@enron.com 2002-02-08
## 5939 tracy.geaccone@enron.com 2002-02-08
## 5940 tracy.geaccone@enron.com 2002-02-08
## 5941 tracy.geaccone@enron.com 2002-02-08
## 5942 tracy.geaccone@enron.com 2002-02-08
## 5943 tracy.geaccone@enron.com 2002-02-08
## 5944 tracy.geaccone@enron.com 2002-02-08
## 5945 james.saunders@enron.com 2002-02-07
## 5946 james.saunders@enron.com 2002-02-07
## 5947 james.saunders@enron.com 2002-02-07
## 5948 james.saunders@enron.com 2002-02-07
## 5949 james.saunders@enron.com 2002-02-07
## 5950 james.saunders@enron.com 2002-02-07
## 5951 dan.rittgers@enron.com 2002-02-07
## 5952 dan.rittgers@enron.com 2002-02-07
## 5953 dan.rittgers@enron.com 2002-02-07
## 5954 dan.rittgers@enron.com 2002-02-07
## 5955 dan.rittgers@enron.com 2002-02-07
## 5956 dan.rittgers@enron.com 2002-02-07
## 5957 zelda.paschal@enron.com 2002-02-07
## 5958 zelda.paschal@enron.com 2002-02-07
## 5959 zelda.paschal@enron.com 2002-02-07
## 5960 frazier.king@enron.com 2002-02-07
## 5961 jan.moore@enron.com 2002-02-07
## 5962 jan.moore@enron.com 2002-02-07
## 5963 jan.moore@enron.com 2002-02-07
## 5964 jan.moore@enron.com 2002-02-07
## 5965 bill.rapp@enron.com 2002-02-07
## 5966 bill.rapp@enron.com 2002-02-07
## 5967 bill.rapp@enron.com 2002-02-07
## 5968 john.keiser@enron.com 2002-02-07
## 5969 audrey.robertson@enron.com 2002-02-07
## 5970 audrey.robertson@enron.com 2002-02-07
## 5971 audrey.robertson@enron.com 2002-02-07
## 5972 rod.hayslett@enron.com 2002-02-07
## 5973 rod.hayslett@enron.com 2002-02-07
## 5974 rod.hayslett@enron.com 2002-02-07
## 5975 rod.hayslett@enron.com 2002-02-07
## 5976 rod.hayslett@enron.com 2002-02-07
## 5977 rod.hayslett@enron.com 2002-02-07
## 5978 rod.hayslett@enron.com 2002-02-07
## 5979 rod.hayslett@enron.com 2002-02-07
## 5980 rod.hayslett@enron.com 2002-02-07
## 5981 rod.hayslett@enron.com 2002-02-07
## 5982 rod.hayslett@enron.com 2002-02-07
## 5983 rod.hayslett@enron.com 2002-02-07
## 5984 rod.hayslett@enron.com 2002-02-07
## 5985 rod.hayslett@enron.com 2002-02-07
## 5986 rod.hayslett@enron.com 2002-02-07
## 5987 rod.hayslett@enron.com 2002-02-07
## 5988 james.saunders@enron.com 2002-02-07
## 5989 james.saunders@enron.com 2002-02-07
## 5990 james.saunders@enron.com 2002-02-07
## 5991 james.saunders@enron.com 2002-02-07
## 5992 kimberly.bragg@enron.com 2002-02-06
## 5993 zelda.paschal@enron.com 2002-02-06
## 5994 john.keiser@enron.com 2002-02-05
## 5995 john.keiser@enron.com 2002-02-05
## 5996 john.keiser@enron.com 2002-02-05
## 5997 kevin.hyatt@enron.com 2002-02-05
## 5998 kevin.hyatt@enron.com 2002-02-05
## 5999 kevin.hyatt@enron.com 2002-02-05
## 6000 kevin.hyatt@enron.com 2002-02-05
## 6001 kevin.hyatt@enron.com 2002-02-05
## 6002 kevin.hyatt@enron.com 2002-02-05
## 6003 kevin.hyatt@enron.com 2002-02-05
## 6004 kevin.hyatt@enron.com 2002-02-05
## 6005 kevin.hyatt@enron.com 2002-02-05
## 6006 kevin.hyatt@enron.com 2002-02-05
## 6007 kevin.hyatt@enron.com 2002-02-05
## 6008 staci.holtzman@enron.com 2002-02-05
## 6009 staci.holtzman@enron.com 2002-02-05
## 6010 staci.holtzman@enron.com 2002-02-05
## 6011 rod.hayslett@enron.com 2002-02-05
## 6012 rod.hayslett@enron.com 2002-02-05
## 6013 rod.hayslett@enron.com 2002-02-05
## 6014 rod.hayslett@enron.com 2002-02-05
## 6015 rod.hayslett@enron.com 2002-02-05
## 6016 rod.hayslett@enron.com 2002-02-05
## 6017 rod.hayslett@enron.com 2002-02-05
## 6018 rod.hayslett@enron.com 2002-02-05
## 6019 rod.hayslett@enron.com 2002-02-05
## 6020 rod.hayslett@enron.com 2002-02-05
## 6021 rod.hayslett@enron.com 2002-02-05
## 6022 robert.hayes@enron.com 2002-02-05
## 6023 robert.hayes@enron.com 2002-02-05
## 6024 john.keiser@enron.com 2002-02-05
## 6025 christi.culwell@enron.com 2002-02-05
## 6026 jan.moore@enron.com 2002-02-04
## 6027 glen.hass@enron.com 2002-02-01
## 6028 glen.hass@enron.com 2002-02-01
## 6029 glen.hass@enron.com 2002-01-31
## 6030 glen.hass@enron.com 2002-01-31
## 6031 glen.hass@enron.com 2002-01-31
## 6032 theresa.hess@enron.com 2002-01-31
## 6033 theresa.hess@enron.com 2002-01-31
## 6034 theresa.hess@enron.com 2002-01-31
## 6035 glen.hass@enron.com 2002-01-30
## 6036 glen.hass@enron.com 2002-01-30
## 6037 glen.hass@enron.com 2002-01-30
## 6038 glen.hass@enron.com 2002-01-30
## 6039 glen.hass@enron.com 2002-01-30
## 6040 theresa.hess@enron.com 2002-01-30
## 6041 betty.studzinski@enron.com 2002-01-30
## 6042 robert.kilmer@enron.com 2002-01-30
## 6043 robert.kilmer@enron.com 2002-01-30
## 6044 bill.rapp@enron.com 2002-01-30
## 6045 bill.rapp@enron.com 2002-01-30
## 6046 robert.kilmer@enron.com 2002-01-30
## 6047 robert.kilmer@enron.com 2002-01-30
## 6048 l..eisenstein@enron.com 2002-01-30
## 6049 l..eisenstein@enron.com 2002-01-30
## 6050 l..eisenstein@enron.com 2002-01-30
## 6051 l..eisenstein@enron.com 2002-01-30
## 6052 l..eisenstein@enron.com 2002-01-30
## 6053 l..eisenstein@enron.com 2002-01-30
## 6054 kenneth.cessac@enron.com 2002-01-30
## 6055 kenneth.cessac@enron.com 2002-01-30
## 6056 kenneth.cessac@enron.com 2002-01-30
## 6057 kenneth.cessac@enron.com 2002-01-30
## 6058 eric.gadd@enron.com 2002-01-30
## 6059 eric.gadd@enron.com 2002-01-30
## 6060 mark.mcconnell@enron.com 2002-01-29
## 6061 jeanette.doll@enron.com 2002-01-29
## 6062 kenneth.cessac@enron.com 2002-01-29
## 6063 kenneth.cessac@enron.com 2002-01-29
## 6064 kenneth.cessac@enron.com 2002-01-29
## 6065 kenneth.cessac@enron.com 2002-01-29
## 6066 thomas.nestor@enron.com 2002-01-29
## 6067 frazier.king@enron.com 2002-01-29
## 6068 lindy.donoho@enron.com 2002-01-28
## 6069 elizabeth.brown@enron.com 2002-01-28
## 6070 elizabeth.brown@enron.com 2002-01-28
## 6071 elizabeth.brown@enron.com 2002-01-28
## 6072 elizabeth.brown@enron.com 2002-01-28
## 6073 frazier.king@enron.com 2002-01-28
## 6074 frazier.king@enron.com 2002-01-28
## 6075 frazier.king@enron.com 2002-01-28
## 6076 john.cobb@enron.com 2002-01-28
## 6077 john.cobb@enron.com 2002-01-28
## 6078 james.saunders@enron.com 2002-01-26
## 6079 james.saunders@enron.com 2002-01-26
## 6080 john.cobb@enron.com 2002-01-25
## 6081 john.cobb@enron.com 2002-01-25
## 6082 galen.coon@enron.com 2002-01-25
## 6083 dorothy.mccoppin@enron.com 2002-01-25
## 6084 dorothy.mccoppin@enron.com 2002-01-25
## 6085 michele.winckowski@enron.com 2002-01-25
## 6086 michele.winckowski@enron.com 2002-01-25
## 6087 michele.winckowski@enron.com 2002-01-25
## 6088 glen.hass@enron.com 2002-01-25
## 6089 glen.hass@enron.com 2002-01-25
## 6090 elizabeth.brown@enron.com 2002-01-25
## 6091 blair.lichtenwalter@enron.com 2002-01-25
## 6092 z.salinas@enron.com 2002-01-25
## 6093 theresa.hess@enron.com 2002-01-25
## 6094 theresa.hess@enron.com 2002-01-25
## 6095 theresa.hess@enron.com 2002-01-25
## 6096 lindy.donoho@enron.com 2002-01-25
## 6097 zelda.paschal@enron.com 2002-01-25
## 6098 debra.thompson@enron.com 2002-01-24
## 6099 debra.thompson@enron.com 2002-01-24
## 6100 bob.thurber@enron.com 2002-01-24
## 6101 elizabeth.brown@enron.com 2002-01-24
## 6102 elizabeth.brown@enron.com 2002-01-24
## 6103 theresa.hess@enron.com 2002-01-24
## 6104 kelly.allen@enron.com 2002-01-24
## 6105 mark.lavine@enron.com 2002-01-24
## 6106 mark.lavine@enron.com 2002-01-24
## 6107 mark.lavine@enron.com 2002-01-24
## 6108 admin.enron@enron.com 2002-01-24
## 6109 james.studebaker@enron.com 2002-01-24
## 6110 debra.thompson@enron.com 2002-01-24
## 6111 debra.thompson@enron.com 2002-01-24
## 6112 james.studebaker@enron.com 2002-01-24
## 6113 james.saunders@enron.com 2002-01-24
## 6114 james.saunders@enron.com 2002-01-24
## 6115 gaby.adamek@enron.com 2002-01-24
## 6116 gaby.adamek@enron.com 2002-01-24
## 6117 tracy.geaccone@enron.com 2002-01-23
## 6118 tracy.geaccone@enron.com 2002-01-23
## 6119 tracy.geaccone@enron.com 2002-01-23
## 6120 tracy.geaccone@enron.com 2002-01-23
## 6121 james.saunders@enron.com 2002-01-23
## 6122 frazier.king@enron.com 2002-01-23
## 6123 debra.thompson@enron.com 2002-01-23
## 6124 gaby.adamek@enron.com 2002-01-23
## 6125 gaby.adamek@enron.com 2002-01-23
## 6126 bill.rapp@enron.com 2002-01-23
## 6127 bill.rapp@enron.com 2002-01-23
## 6128 debra.thompson@enron.com 2002-01-23
## 6129 elizabeth.brown@enron.com 2002-01-23
## 6130 elizabeth.brown@enron.com 2002-01-23
## 6131 elizabeth.brown@enron.com 2002-01-23
## 6132 elizabeth.brown@enron.com 2002-01-23
## 6133 elizabeth.brown@enron.com 2002-01-23
## 6134 elizabeth.brown@enron.com 2002-01-23
## 6135 frazier.king@enron.com 2002-01-22
## 6136 frazier.king@enron.com 2002-01-22
## 6137 bill.rapp@enron.com 2002-01-22
## 6138 bill.rapp@enron.com 2002-01-22
## 6139 lorraine.lindberg@enron.com 2002-01-22
## 6140 lorraine.lindberg@enron.com 2002-01-22
## 6141 glen.hass@enron.com 2002-01-22
## 6142 glen.hass@enron.com 2002-01-22
## 6143 glen.hass@enron.com 2002-01-22
## 6144 john.keiser@enron.com 2002-01-18
## 6145 bill.rapp@enron.com 2002-01-18
## 6146 bill.rapp@enron.com 2002-01-18
## 6147 bill.rapp@enron.com 2002-01-18
## 6148 michelle.lokay@enron.com 2002-01-18
## 6149 michelle.lokay@enron.com 2002-01-18
## 6150 michelle.lokay@enron.com 2002-01-18
## 6151 kelly.allen@enron.com 2002-01-18
## 6152 maria.pavlou@enron.com 2002-01-18
## 6153 maria.pavlou@enron.com 2002-01-18
## 6154 maria.pavlou@enron.com 2002-01-18
## 6155 frazier.king@enron.com 2002-01-18
## 6156 kimberly.watson@enron.com 2002-01-18
## 6157 kelly.allen@enron.com 2002-01-18
## 6158 jack.boatman@enron.com 2002-01-18
## 6159 glen.hass@enron.com 2002-01-18
## 6160 glen.hass@enron.com 2002-01-18
## 6161 staci.holtzman@enron.com 2002-01-18
## 6162 lorraine.lindberg@enron.com 2002-01-18
## 6163 lorraine.lindberg@enron.com 2002-01-18
## 6164 darrell.schoolcraft@enron.com 2002-01-18
## 6165 jeanette.doll@enron.com 2002-01-17
## 6166 dennis.lee@enron.com 2002-01-17
## 6167 frazier.king@enron.com 2002-01-17
## 6168 sheila.nacey@enron.com 2002-01-17
## 6169 sheila.nacey@enron.com 2002-01-17
## 6170 sheila.nacey@enron.com 2002-01-17
## 6171 bill.rapp@enron.com 2002-01-17
## 6172 glen.hass@enron.com 2002-01-17
## 6173 shelley.corman@enron.com 2002-01-17
## 6174 shelley.corman@enron.com 2002-01-17
## 6175 shelley.corman@enron.com 2002-01-17
## 6176 shelley.corman@enron.com 2002-01-17
## 6177 shelley.corman@enron.com 2002-01-17
## 6178 shelley.corman@enron.com 2002-01-17
## 6179 shelley.corman@enron.com 2002-01-17
## 6180 shelley.corman@enron.com 2002-01-17
## 6181 shelley.corman@enron.com 2002-01-17
## 6182 elizabeth.brown@enron.com 2002-01-17
## 6183 center.ets@enron.com 2002-01-16
## 6184 center.ets@enron.com 2002-01-16
## 6185 kevin.hyatt@enron.com 2002-01-16
## 6186 kevin.hyatt@enron.com 2002-01-16
## 6187 kevin.hyatt@enron.com 2002-01-16
## 6188 kevin.hyatt@enron.com 2002-01-16
## 6189 kevin.hyatt@enron.com 2002-01-16
## 6190 kevin.hyatt@enron.com 2002-01-16
## 6191 kevin.hyatt@enron.com 2002-01-16
## 6192 kevin.hyatt@enron.com 2002-01-16
## 6193 kevin.hyatt@enron.com 2002-01-16
## 6194 kevin.hyatt@enron.com 2002-01-16
## 6195 kevin.hyatt@enron.com 2002-01-16
## 6196 kevin.hyatt@enron.com 2002-01-16
## 6197 kevin.hyatt@enron.com 2002-01-16
## 6198 kevin.hyatt@enron.com 2002-01-16
## 6199 kevin.hyatt@enron.com 2002-01-16
## 6200 kevin.hyatt@enron.com 2002-01-16
## 6201 rita.bianchi@enron.com 2002-01-16
## 6202 rita.bianchi@enron.com 2002-01-16
## 6203 shelley.corman@enron.com 2002-01-16
## 6204 robert.kilmer@enron.com 2002-01-16
## 6205 shelley.corman@enron.com 2002-01-16
## 6206 lorraine.lindberg@enron.com 2002-01-16
## 6207 staci.holtzman@enron.com 2002-01-16
## 6208 e..rosenberg@enron.com 2002-01-16
## 6209 e..rosenberg@enron.com 2002-01-16
## 6210 maria.pavlou@enron.com 2002-01-16
## 6211 maria.pavlou@enron.com 2002-01-16
## 6212 rita.bianchi@enron.com 2002-01-15
## 6213 rita.bianchi@enron.com 2002-01-15
## 6214 andy.brady@enron.com 2002-01-15
## 6215 andy.brady@enron.com 2002-01-15
## 6216 andy.brady@enron.com 2002-01-15
## 6217 blair.lichtenwalter@enron.com 2002-01-15
## 6218 glen.hass@enron.com 2002-01-15
## 6219 glen.hass@enron.com 2002-01-15
## 6220 glen.hass@enron.com 2002-01-15
## 6221 glen.hass@enron.com 2002-01-15
## 6222 robert.kilmer@enron.com 2002-01-15
## 6223 maria.cisneros@enron.com 2002-01-15
## 6224 janet.butler@enron.com 2002-01-14
## 6225 janet.butler@enron.com 2002-01-14
## 6226 naomi.bourg@enron.com 2002-01-14
## 6227 naomi.bourg@enron.com 2002-01-14
## 6228 kelly.allen@enron.com 2002-01-14
## 6229 christi.culwell@enron.com 2002-01-14
## 6230 kevin.hyatt@enron.com 2002-01-14
## 6231 kevin.hyatt@enron.com 2002-01-14
## 6232 kevin.hyatt@enron.com 2002-01-14
## 6233 kevin.hyatt@enron.com 2002-01-14
## 6234 kevin.hyatt@enron.com 2002-01-14
## 6235 kevin.hyatt@enron.com 2002-01-14
## 6236 kevin.hyatt@enron.com 2002-01-14
## 6237 kevin.hyatt@enron.com 2002-01-14
## 6238 kevin.hyatt@enron.com 2002-01-14
## 6239 kevin.hyatt@enron.com 2002-01-14
## 6240 kevin.hyatt@enron.com 2002-01-14
## 6241 kevin.hyatt@enron.com 2002-01-14
## 6242 kevin.hyatt@enron.com 2002-01-14
## 6243 kevin.hyatt@enron.com 2002-01-14
## 6244 kevin.hyatt@enron.com 2002-01-14
## 6245 kevin.hyatt@enron.com 2002-01-14
## 6246 kevin.hyatt@enron.com 2002-01-14
## 6247 kevin.hyatt@enron.com 2002-01-14
## 6248 robert.kilmer@enron.com 2002-01-14
## 6249 shelley.corman@enron.com 2002-01-14
## 6250 shelley.corman@enron.com 2002-01-14
## 6251 shelley.corman@enron.com 2002-01-14
## 6252 shelley.corman@enron.com 2002-01-14
## 6253 shelley.corman@enron.com 2002-01-14
## 6254 shelley.corman@enron.com 2002-01-14
## 6255 shelley.corman@enron.com 2002-01-14
## 6256 shelley.corman@enron.com 2002-01-14
## 6257 kelly.allen@enron.com 2002-01-14
## 6258 kimberly.watson@enron.com 2002-01-14
## 6259 kimberly.watson@enron.com 2002-01-14
## 6260 lorraine.lindberg@enron.com 2002-01-14
## 6261 lorraine.lindberg@enron.com 2002-01-14
## 6262 nancy.bastida@enron.com 2002-01-11
## 6263 nancy.bastida@enron.com 2002-01-11
## 6264 nancy.bastida@enron.com 2002-01-11
## 6265 glen.hass@enron.com 2002-01-11
## 6266 glen.hass@enron.com 2002-01-11
## 6267 james.studebaker@enron.com 2002-01-11
## 6268 james.studebaker@enron.com 2002-01-11
## 6269 james.studebaker@enron.com 2002-01-11
## 6270 jack.boatman@enron.com 2002-01-11
## 6271 rachel.cady@enron.com 2002-01-11
## 6272 rachel.cady@enron.com 2002-01-11
## 6273 teb.lokey@enron.com 2002-01-11
## 6274 teb.lokey@enron.com 2002-01-11
## 6275 teb.lokey@enron.com 2002-01-11
## 6276 teb.lokey@enron.com 2002-01-11
## 6277 teb.lokey@enron.com 2002-01-11
## 6278 teb.lokey@enron.com 2002-01-11
## 6279 teb.lokey@enron.com 2002-01-11
## 6280 teb.lokey@enron.com 2002-01-11
## 6281 sheila.nacey@enron.com 2002-01-11
## 6282 rachel.cady@enron.com 2002-01-11
## 6283 galen.coon@enron.com 2002-01-11
## 6284 galen.coon@enron.com 2002-01-11
## 6285 audrey.robertson@enron.com 2002-01-11
## 6286 audrey.robertson@enron.com 2002-01-11
## 6287 audrey.robertson@enron.com 2002-01-11
## 6288 audrey.robertson@enron.com 2002-01-11
## 6289 audrey.robertson@enron.com 2002-01-11
## 6290 audrey.robertson@enron.com 2002-01-11
## 6291 audrey.robertson@enron.com 2002-01-11
## 6292 audrey.robertson@enron.com 2002-01-11
## 6293 elizabeth.brown@enron.com 2002-01-11
## 6294 elizabeth.brown@enron.com 2002-01-11
## 6295 elizabeth.brown@enron.com 2002-01-11
## 6296 elizabeth.brown@enron.com 2002-01-11
## 6297 elizabeth.brown@enron.com 2002-01-11
## 6298 elizabeth.brown@enron.com 2002-01-11
## 6299 tracy.geaccone@enron.com 2002-01-11
## 6300 tracy.geaccone@enron.com 2002-01-11
## 6301 tracy.geaccone@enron.com 2002-01-11
## 6302 tracy.geaccone@enron.com 2002-01-11
## 6303 tracy.geaccone@enron.com 2002-01-11
## 6304 tracy.geaccone@enron.com 2002-01-11
## 6305 tracy.geaccone@enron.com 2002-01-11
## 6306 kimberly.watson@enron.com 2002-01-11
## 6307 kimberly.watson@enron.com 2002-01-11
## 6308 kenneth.cessac@enron.com 2002-01-11
## 6309 kenneth.cessac@enron.com 2002-01-11
## 6310 kenneth.cessac@enron.com 2002-01-11
## 6311 kenneth.cessac@enron.com 2002-01-11
## 6312 maria.pavlou@enron.com 2002-01-10
## 6313 jeanette.doll@enron.com 2002-01-10
## 6314 john.long@enron.com 2002-01-10
## 6315 john.long@enron.com 2002-01-10
## 6316 jeanette.doll@enron.com 2002-01-10
## 6317 jeanette.doll@enron.com 2002-01-10
## 6318 jack.boatman@enron.com 2002-01-10
## 6319 glen.hass@enron.com 2002-01-10
## 6320 glen.hass@enron.com 2002-01-10
## 6321 glen.hass@enron.com 2002-01-10
## 6322 glen.hass@enron.com 2002-01-10
## 6323 glen.hass@enron.com 2002-01-10
## 6324 maria.pavlou@enron.com 2002-01-10
## 6325 tammy.kovalcik@enron.com 2002-01-10
## 6326 toby.kuehl@enron.com 2002-01-10
## 6327 maria.pavlou@enron.com 2002-01-10
## 6328 karen.brostad@enron.com 2002-01-10
## 6329 kelly.allen@enron.com 2002-01-09
## 6330 kelly.allen@enron.com 2002-01-09
## 6331 lynda.laferla@enron.com 2002-01-09
## 6332 andy.brady@enron.com 2002-01-09
## 6333 andy.brady@enron.com 2002-01-09
## 6334 toby.kuehl@enron.com 2002-01-09
## 6335 debra.thompson@enron.com 2002-01-09
## 6336 debra.thompson@enron.com 2002-01-09
## 6337 maggie.schroeder@enron.com 2002-01-09
## 6338 liz.legros@enron.com 2002-01-09
## 6339 liz.legros@enron.com 2002-01-09
## 6340 craig.buehler@enron.com 2002-01-09
## 6341 craig.buehler@enron.com 2002-01-09
## 6342 naomi.bourg@enron.com 2002-01-09
## 6343 naomi.bourg@enron.com 2002-01-09
## 6344 james.studebaker@enron.com 2002-01-09
## 6345 jeanette.doll@enron.com 2002-01-08
## 6346 frazier.king@enron.com 2002-01-08
## 6347 denis.tu@enron.com 2002-01-08
## 6348 jack.boatman@enron.com 2002-01-08
## 6349 jeanette.doll@enron.com 2002-01-08
## 6350 james.studebaker@enron.com 2002-01-07
## 6351 kevin.hyatt@enron.com 2002-01-07
## 6352 kevin.hyatt@enron.com 2002-01-07
## 6353 kevin.hyatt@enron.com 2002-01-07
## 6354 kevin.hyatt@enron.com 2002-01-07
## 6355 kevin.hyatt@enron.com 2002-01-07
## 6356 kevin.hyatt@enron.com 2002-01-07
## 6357 kevin.hyatt@enron.com 2002-01-07
## 6358 kevin.hyatt@enron.com 2002-01-07
## 6359 kevin.hyatt@enron.com 2002-01-07
## 6360 kevin.hyatt@enron.com 2002-01-07
## 6361 kevin.hyatt@enron.com 2002-01-07
## 6362 kevin.hyatt@enron.com 2002-01-07
## 6363 kevin.hyatt@enron.com 2002-01-07
## 6364 kevin.hyatt@enron.com 2002-01-07
## 6365 glen.hass@enron.com 2002-01-04
## 6366 glen.hass@enron.com 2002-01-04
## 6367 glen.hass@enron.com 2002-01-04
## 6368 glen.hass@enron.com 2002-01-04
## 6369 glen.hass@enron.com 2002-01-04
## 6370 glen.hass@enron.com 2002-01-04
## 6371 glen.hass@enron.com 2002-01-04
## 6372 glen.hass@enron.com 2002-01-04
## 6373 sharon.solon@enron.com 2002-01-04
## 6374 sharon.solon@enron.com 2002-01-04
## 6375 jeanette.doll@enron.com 2002-01-03
## 6376 jeanette.doll@enron.com 2002-01-03
## 6377 maria.pavlou@enron.com 2002-01-03
## 6378 maria.pavlou@enron.com 2002-01-03
## 6379 gregory.porter@enron.com 2002-01-03
## 6380 gregory.porter@enron.com 2002-01-03
## 6381 sap_security@enron.com 2002-01-03
## 6382 maria.pavlou@enron.com 2002-01-03
## 6383 maria.pavlou@enron.com 2002-01-03
## 6384 frazier.king@enron.com 2002-01-03
## 6385 glen.hass@enron.com 2002-01-03
## 6386 glen.hass@enron.com 2002-01-03
## 6387 glen.hass@enron.com 2002-01-03
## 6388 nancy.bastida@enron.com 2002-01-03
## 6389 phyllis.fuller@enron.com 2002-01-03
## 6390 karen.brostad@enron.com 2002-01-03
## 6391 debra.thompson@enron.com 2002-01-02
## 6392 nancy.bastida@enron.com 2002-01-02
## 6393 glen.hass@enron.com 2002-01-02
## 6394 glen.hass@enron.com 2002-01-02
## 6395 phyllis.fuller@enron.com 2002-01-02
## 6396 karen.brostad@enron.com 2002-01-02
## 6397 phyllis.fuller@enron.com 2002-01-02
## 6398 rachel.cady@enron.com 2002-01-02
## 6399 e..rosenberg@enron.com 2001-12-31
## 6400 keith.petersen@enron.com 2001-12-28
## 6401 keith.petersen@enron.com 2001-12-28
## 6402 keith.petersen@enron.com 2001-12-28
## 6403 keith.petersen@enron.com 2001-12-28
## 6404 naomi.bourg@enron.com 2001-12-28
## 6405 naomi.bourg@enron.com 2001-12-28
## 6406 sap_security@enron.com 2001-12-28
## 6407 naomi.bourg@enron.com 2001-12-27
## 6408 naomi.bourg@enron.com 2001-12-27
## 6409 glen.hass@enron.com 2001-12-21
## 6410 glen.hass@enron.com 2001-12-21
## 6411 dari.dornan@enron.com 2001-12-20
## 6412 michele.winckowski@enron.com 2001-12-20
## 6413 jeanette.doll@enron.com 2001-12-20
## 6414 terry.kowalke@enron.com 2001-12-20
## 6415 terry.kowalke@enron.com 2001-12-20
## 6416 terry.kowalke@enron.com 2001-12-20
## 6417 terry.kowalke@enron.com 2001-12-20
## 6418 terry.kowalke@enron.com 2001-12-20
## 6419 terry.kowalke@enron.com 2001-12-20
## 6420 sharon.farrell@enron.com 2001-12-19
## 6421 lindy.donoho@enron.com 2001-12-19
## 6422 lindy.donoho@enron.com 2001-12-19
## 6423 lindy.donoho@enron.com 2001-12-19
## 6424 lindy.donoho@enron.com 2001-12-19
## 6425 lindy.donoho@enron.com 2001-12-19
## 6426 lindy.donoho@enron.com 2001-12-19
## 6427 lindy.donoho@enron.com 2001-12-19
## 6428 lindy.donoho@enron.com 2001-12-19
## 6429 lindy.donoho@enron.com 2001-12-19
## 6430 lindy.donoho@enron.com 2001-12-19
## 6431 lindy.donoho@enron.com 2001-12-19
## 6432 lindy.donoho@enron.com 2001-12-19
## 6433 lindy.donoho@enron.com 2001-12-19
## 6434 lindy.donoho@enron.com 2001-12-19
## 6435 lindy.donoho@enron.com 2001-12-19
## 6436 kay.miller@enron.com 2001-12-19
## 6437 susan.wadle@enron.com 2001-12-17
## 6438 susan.wadle@enron.com 2001-12-17
## 6439 susan.wadle@enron.com 2001-12-17
## 6440 zelda.paschal@enron.com 2001-12-17
## 6441 kevin.hyatt@enron.com 2001-12-17
## 6442 kevin.hyatt@enron.com 2001-12-17
## 6443 kevin.hyatt@enron.com 2001-12-17
## 6444 kevin.hyatt@enron.com 2001-12-17
## 6445 kevin.hyatt@enron.com 2001-12-17
## 6446 kevin.hyatt@enron.com 2001-12-17
## 6447 kevin.hyatt@enron.com 2001-12-17
## 6448 kevin.hyatt@enron.com 2001-12-17
## 6449 kevin.hyatt@enron.com 2001-12-17
## 6450 kevin.hyatt@enron.com 2001-12-17
## 6451 kevin.hyatt@enron.com 2001-12-17
## 6452 kevin.hyatt@enron.com 2001-12-17
## 6453 kevin.hyatt@enron.com 2001-12-17
## 6454 kevin.hyatt@enron.com 2001-12-17
## 6455 john.long@enron.com 2001-12-17
## 6456 blair.lichtenwalter@enron.com 2001-12-17
## 6457 debra.thompson@enron.com 2001-12-17
## 6458 theresa.hess@enron.com 2001-12-14
## 6459 theresa.hess@enron.com 2001-12-14
## 6460 theresa.hess@enron.com 2001-12-14
## 6461 theresa.hess@enron.com 2001-12-14
## 6462 glen.hass@enron.com 2001-12-14
## 6463 glen.hass@enron.com 2001-12-14
## 6464 andy.brady@enron.com 2001-12-14
## 6465 andy.brady@enron.com 2001-12-14
## 6466 andy.brady@enron.com 2001-12-14
## 6467 dorothy.mccoppin@enron.com 2001-12-13
## 6468 dorothy.mccoppin@enron.com 2001-12-13
## 6469 dorothy.mccoppin@enron.com 2001-12-13
## 6470 kay.miller@enron.com 2001-12-13
## 6471 kay.miller@enron.com 2001-12-13
## 6472 kelly.allen@enron.com 2001-12-13
## 6473 glen.hass@enron.com 2001-12-13
## 6474 glen.hass@enron.com 2001-12-13
## 6475 glen.hass@enron.com 2001-12-13
## 6476 glen.hass@enron.com 2001-12-13
## 6477 glen.hass@enron.com 2001-12-13
## 6478 glen.hass@enron.com 2001-12-13
## 6479 glen.hass@enron.com 2001-12-13
## 6480 blair.lichtenwalter@enron.com 2001-12-13
## 6481 blair.lichtenwalter@enron.com 2001-12-13
## 6482 blair.lichtenwalter@enron.com 2001-12-13
## 6483 blair.lichtenwalter@enron.com 2001-12-13
## 6484 blair.lichtenwalter@enron.com 2001-12-13
## 6485 blair.lichtenwalter@enron.com 2001-12-13
## 6486 blair.lichtenwalter@enron.com 2001-12-13
## 6487 john.buchanan@enron.com 2001-12-13
## 6488 john.buchanan@enron.com 2001-12-13
## 6489 john.buchanan@enron.com 2001-12-13
## 6490 john.buchanan@enron.com 2001-12-13
## 6491 john.buchanan@enron.com 2001-12-13
## 6492 john.buchanan@enron.com 2001-12-13
## 6493 john.buchanan@enron.com 2001-12-13
## 6494 lindy.donoho@enron.com 2001-12-13
## 6495 lindy.donoho@enron.com 2001-12-13
## 6496 lindy.donoho@enron.com 2001-12-13
## 6497 lindy.donoho@enron.com 2001-12-13
## 6498 lindy.donoho@enron.com 2001-12-13
## 6499 lindy.donoho@enron.com 2001-12-13
## 6500 lindy.donoho@enron.com 2001-12-13
## 6501 lindy.donoho@enron.com 2001-12-13
## 6502 lindy.donoho@enron.com 2001-12-13
## 6503 lindy.donoho@enron.com 2001-12-13
## 6504 lindy.donoho@enron.com 2001-12-13
## 6505 lindy.donoho@enron.com 2001-12-13
## 6506 lindy.donoho@enron.com 2001-12-13
## 6507 lindy.donoho@enron.com 2001-12-13
## 6508 lindy.donoho@enron.com 2001-12-13
## 6509 lindy.donoho@enron.com 2001-12-13
## 6510 karen.clapper@enron.com 2001-12-12
## 6511 glen.hass@enron.com 2001-12-12
## 6512 glen.hass@enron.com 2001-12-12
## 6513 glen.hass@enron.com 2001-12-12
## 6514 glen.hass@enron.com 2001-12-12
## 6515 glen.hass@enron.com 2001-12-12
## 6516 steven.harris@enron.com 2001-12-12
## 6517 steven.harris@enron.com 2001-12-12
## 6518 steven.harris@enron.com 2001-12-12
## 6519 steven.harris@enron.com 2001-12-12
## 6520 steven.harris@enron.com 2001-12-12
## 6521 steven.harris@enron.com 2001-12-12
## 6522 steven.harris@enron.com 2001-12-12
## 6523 steven.harris@enron.com 2001-12-12
## 6524 steven.harris@enron.com 2001-12-12
## 6525 steven.harris@enron.com 2001-12-12
## 6526 steven.harris@enron.com 2001-12-12
## 6527 steven.harris@enron.com 2001-12-12
## 6528 steven.harris@enron.com 2001-12-12
## 6529 keith.petersen@enron.com 2001-12-12
## 6530 keith.petersen@enron.com 2001-12-12
## 6531 keith.petersen@enron.com 2001-12-12
## 6532 keith.petersen@enron.com 2001-12-12
## 6533 glen.hass@enron.com 2001-12-12
## 6534 glen.hass@enron.com 2001-12-12
## 6535 glen.hass@enron.com 2001-12-12
## 6536 glen.hass@enron.com 2001-12-12
## 6537 glen.hass@enron.com 2001-12-12
## 6538 james.studebaker@enron.com 2001-12-11
## 6539 rachel.cady@enron.com 2001-12-11
## 6540 rachel.cady@enron.com 2001-12-11
## 6541 shelley.corman@enron.com 2001-12-11
## 6542 shelley.corman@enron.com 2001-12-11
## 6543 shelley.corman@enron.com 2001-12-11
## 6544 rachel.cady@enron.com 2001-12-11
## 6545 rachel.cady@enron.com 2001-12-11
## 6546 rachel.cady@enron.com 2001-12-11
## 6547 shelley.corman@enron.com 2001-12-11
## 6548 shelley.corman@enron.com 2001-12-11
## 6549 shelley.corman@enron.com 2001-12-11
## 6550 rachel.cady@enron.com 2001-12-11
## 6551 rachel.cady@enron.com 2001-12-11
## 6552 david.sztroin@enron.com 2001-12-10
## 6553 james.centilli@enron.com 2001-12-10
## 6554 james.centilli@enron.com 2001-12-10
## 6555 james.centilli@enron.com 2001-12-10
## 6556 james.centilli@enron.com 2001-12-10
## 6557 james.centilli@enron.com 2001-12-10
## 6558 gregory.porter@enron.com 2001-12-09
## 6559 gregory.porter@enron.com 2001-12-09
## 6560 gregory.porter@enron.com 2001-12-09
## 6561 robert.kilmer@enron.com 2001-09-24
## 6562 robert.kilmer@enron.com 2001-09-24
## 6563 robert.kilmer@enron.com 2001-09-25
## 6564 kimberley.nelson@enron.com 2001-09-25
## 6565 kimberley.nelson@enron.com 2001-09-25
## 6566 kimberley.nelson@enron.com 2001-09-25
## 6567 kimberley.nelson@enron.com 2001-09-25
## 6568 kimberley.nelson@enron.com 2001-09-25
## 6569 kimberley.nelson@enron.com 2001-09-25
## 6570 kimberley.nelson@enron.com 2001-09-25
## 6571 kimberley.nelson@enron.com 2001-09-25
## 6572 kimberley.nelson@enron.com 2001-09-25
## 6573 w..cantrell@enron.com 2001-09-25
## 6574 w..cantrell@enron.com 2001-09-25
## 6575 w..cantrell@enron.com 2001-09-25
## 6576 w..cantrell@enron.com 2001-09-25
## 6577 w..cantrell@enron.com 2001-09-25
## 6578 w..cantrell@enron.com 2001-09-25
## 6579 w..cantrell@enron.com 2001-09-25
## 6580 w..cantrell@enron.com 2001-09-25
## 6581 w..cantrell@enron.com 2001-09-25
## 6582 w..cantrell@enron.com 2001-09-25
## 6583 w..cantrell@enron.com 2001-09-25
## 6584 w..cantrell@enron.com 2001-09-25
## 6585 w..cantrell@enron.com 2001-09-25
## 6586 w..cantrell@enron.com 2001-09-25
## 6587 w..cantrell@enron.com 2001-09-25
## 6588 w..cantrell@enron.com 2001-09-25
## 6589 w..cantrell@enron.com 2001-09-25
## 6590 w..cantrell@enron.com 2001-09-25
## 6591 w..cantrell@enron.com 2001-09-25
## 6592 w..cantrell@enron.com 2001-09-25
## 6593 craig.buehler@enron.com 2001-09-25
## 6594 craig.buehler@enron.com 2001-09-25
## 6595 robert.kilmer@enron.com 2001-09-25
## 6596 zelda.paschal@enron.com 2001-09-25
## 6597 robert.kilmer@enron.com 2001-09-25
## 6598 robert.kilmer@enron.com 2001-09-25
## 6599 e..rosenberg@enron.com 2001-09-25
## 6600 robert.kilmer@enron.com 2001-09-26
## 6601 kay.miller@enron.com 2001-09-26
## 6602 kay.miller@enron.com 2001-09-26
## 6603 kay.miller@enron.com 2001-09-26
## 6604 kimberley.nelson@enron.com 2001-09-26
## 6605 kimberley.nelson@enron.com 2001-09-26
## 6606 kimberley.nelson@enron.com 2001-09-26
## 6607 kimberley.nelson@enron.com 2001-09-26
## 6608 kimberley.nelson@enron.com 2001-09-26
## 6609 kimberley.nelson@enron.com 2001-09-26
## 6610 kimberley.nelson@enron.com 2001-09-26
## 6611 kimberley.nelson@enron.com 2001-09-26
## 6612 kimberley.nelson@enron.com 2001-09-26
## 6613 audrey.robertson@enron.com 2001-09-26
## 6614 audrey.robertson@enron.com 2001-09-26
## 6615 audrey.robertson@enron.com 2001-09-26
## 6616 audrey.robertson@enron.com 2001-09-26
## 6617 audrey.robertson@enron.com 2001-09-26
## 6618 audrey.robertson@enron.com 2001-09-26
## 6619 audrey.robertson@enron.com 2001-09-26
## 6620 audrey.robertson@enron.com 2001-09-26
## 6621 barbara.cain@enron.com 2001-09-26
## 6622 glen.hass@enron.com 2001-09-26
## 6623 glen.hass@enron.com 2001-09-26
## 6624 glen.hass@enron.com 2001-09-26
## 6625 barbara.cain@enron.com 2001-09-26
## 6626 janet.butler@enron.com 2001-09-26
## 6627 janet.butler@enron.com 2001-09-26
## 6628 janet.butler@enron.com 2001-09-26
## 6629 janet.butler@enron.com 2001-09-26
## 6630 janet.butler@enron.com 2001-09-26
## 6631 janet.butler@enron.com 2001-09-26
## 6632 janet.butler@enron.com 2001-09-26
## 6633 janet.butler@enron.com 2001-09-26
## 6634 janet.butler@enron.com 2001-09-26
## 6635 janet.butler@enron.com 2001-09-26
## 6636 kimberley.nelson@enron.com 2001-09-27
## 6637 kimberley.nelson@enron.com 2001-09-27
## 6638 kimberley.nelson@enron.com 2001-09-27
## 6639 kimberley.nelson@enron.com 2001-09-27
## 6640 kimberley.nelson@enron.com 2001-09-27
## 6641 kimberley.nelson@enron.com 2001-09-27
## 6642 kimberley.nelson@enron.com 2001-09-27
## 6643 kimberley.nelson@enron.com 2001-09-27
## 6644 kimberley.nelson@enron.com 2001-09-27
## 6645 craig.buehler@enron.com 2001-09-27
## 6646 kimberly.watson@enron.com 2001-09-27
## 6647 kimberly.watson@enron.com 2001-09-27
## 6648 shelley.corman@enron.com 2001-09-27
## 6649 shelley.corman@enron.com 2001-09-27
## 6650 shelley.corman@enron.com 2001-09-27
## 6651 shelley.corman@enron.com 2001-09-27
## 6652 shelley.corman@enron.com 2001-09-27
## 6653 shelley.corman@enron.com 2001-09-27
## 6654 shelley.corman@enron.com 2001-09-27
## 6655 shelley.corman@enron.com 2001-09-27
## 6656 shelley.corman@enron.com 2001-09-27
## 6657 shelley.corman@enron.com 2001-09-27
## 6658 shelley.corman@enron.com 2001-09-27
## 6659 shelley.corman@enron.com 2001-09-27
## 6660 janet.butler@enron.com 2001-09-27
## 6661 janet.butler@enron.com 2001-09-27
## 6662 frazier.king@enron.com 2001-09-27
## 6663 blair.lichtenwalter@enron.com 2001-09-27
## 6664 alice.johnson@enron.com 2001-09-27
## 6665 dortha.gray@enron.com 2001-09-27
## 6666 zelda.paschal@enron.com 2001-09-27
## 6667 alice.johnson@enron.com 2001-09-27
## 6668 zelda.paschal@enron.com 2001-09-27
## 6669 blair.lichtenwalter@enron.com 2001-09-27
## 6670 frazier.king@enron.com 2001-09-27
## 6671 debra.thompson@enron.com 2001-09-28
## 6672 audrey.robertson@enron.com 2001-09-28
## 6673 audrey.robertson@enron.com 2001-09-28
## 6674 kimberley.nelson@enron.com 2001-09-28
## 6675 kimberley.nelson@enron.com 2001-09-28
## 6676 kimberley.nelson@enron.com 2001-09-28
## 6677 kimberley.nelson@enron.com 2001-09-28
## 6678 kimberley.nelson@enron.com 2001-09-28
## 6679 kimberley.nelson@enron.com 2001-09-28
## 6680 kimberley.nelson@enron.com 2001-09-28
## 6681 kimberley.nelson@enron.com 2001-09-28
## 6682 kimberley.nelson@enron.com 2001-09-28
## 6683 lee.huber@enron.com 2001-09-28
## 6684 lee.huber@enron.com 2001-09-28
## 6685 steven.harris@enron.com 2001-09-28
## 6686 steven.harris@enron.com 2001-09-28
## 6687 steven.harris@enron.com 2001-09-28
## 6688 steven.harris@enron.com 2001-09-28
## 6689 steven.harris@enron.com 2001-09-28
## 6690 steven.harris@enron.com 2001-09-28
## 6691 steven.harris@enron.com 2001-09-28
## 6692 steven.harris@enron.com 2001-09-28
## 6693 steven.harris@enron.com 2001-09-28
## 6694 richard.babin@enron.com 2001-09-28
## 6695 michelle.lokay@enron.com 2001-09-28
## 6696 bodyshop@enron.com 2001-09-28
## 6697 bodyshop@enron.com 2001-09-28
## 6698 bodyshop@enron.com 2001-09-28
## 6699 bodyshop@enron.com 2001-09-28
## 6700 bodyshop@enron.com 2001-09-28
## 6701 bodyshop@enron.com 2001-09-28
## 6702 bodyshop@enron.com 2001-09-28
## 6703 bodyshop@enron.com 2001-09-28
## 6704 bodyshop@enron.com 2001-09-28
## 6705 bodyshop@enron.com 2001-09-28
## 6706 bodyshop@enron.com 2001-09-28
## 6707 bodyshop@enron.com 2001-09-28
## 6708 bodyshop@enron.com 2001-09-28
## 6709 bodyshop@enron.com 2001-09-28
## 6710 bodyshop@enron.com 2001-09-28
## 6711 bodyshop@enron.com 2001-09-28
## 6712 rachel.cady@enron.com 2001-09-28
## 6713 rachel.cady@enron.com 2001-09-28
## 6714 kevin.hyatt@enron.com 2001-09-28
## 6715 kevin.hyatt@enron.com 2001-09-28
## 6716 kevin.hyatt@enron.com 2001-09-28
## 6717 kevin.hyatt@enron.com 2001-09-28
## 6718 kevin.hyatt@enron.com 2001-09-28
## 6719 kevin.hyatt@enron.com 2001-09-28
## 6720 kevin.hyatt@enron.com 2001-09-28
## 6721 kevin.hyatt@enron.com 2001-09-28
## 6722 kevin.hyatt@enron.com 2001-09-28
## 6723 kevin.hyatt@enron.com 2001-09-28
## 6724 kevin.hyatt@enron.com 2001-09-28
## 6725 kevin.hyatt@enron.com 2001-09-28
## 6726 kenneth.cessac@enron.com 2001-09-28
## 6727 kenneth.cessac@enron.com 2001-09-28
## 6728 kenneth.cessac@enron.com 2001-09-28
## 6729 kenneth.cessac@enron.com 2001-09-28
## 6730 janet.butler@enron.com 2001-09-28
## 6731 janet.butler@enron.com 2001-09-28
## 6732 janet.butler@enron.com 2001-09-28
## 6733 janet.butler@enron.com 2001-09-28
## 6734 janet.butler@enron.com 2001-09-28
## 6735 janet.butler@enron.com 2001-09-28
## 6736 janet.butler@enron.com 2001-09-28
## 6737 janet.butler@enron.com 2001-09-28
## 6738 janet.butler@enron.com 2001-09-28
## 6739 janet.butler@enron.com 2001-09-28
## 6740 leonard.daily@enron.com 2001-09-29
## 6741 calvin.eakins@enron.com 2001-10-01
## 6742 sarah.haden@enron.com 2001-10-01
## 6743 sarah.haden@enron.com 2001-10-01
## 6744 sarah.haden@enron.com 2001-10-01
## 6745 sarah.haden@enron.com 2001-10-01
## 6746 sarah.haden@enron.com 2001-10-01
## 6747 sarah.haden@enron.com 2001-10-01
## 6748 sarah.haden@enron.com 2001-10-01
## 6749 sarah.haden@enron.com 2001-10-01
## 6750 sarah.haden@enron.com 2001-10-01
## 6751 james.studebaker@enron.com 2001-10-01
## 6752 kay.miller@enron.com 2001-10-01
## 6753 kay.miller@enron.com 2001-10-01
## 6754 rachel.cady@enron.com 2001-10-01
## 6755 rachel.cady@enron.com 2001-10-01
## 6756 wendy.koh@enron.com 2001-10-01
## 6757 wendy.koh@enron.com 2001-10-01
## 6758 payroll.enron@enron.com 2001-10-02
## 6759 naomi.bourg@enron.com 2001-10-02
## 6760 mike.van@enron.com 2001-10-02
## 6761 mike.van@enron.com 2001-10-02
## 6762 mike.van@enron.com 2001-10-02
## 6763 mike.van@enron.com 2001-10-02
## 6764 mike.van@enron.com 2001-10-02
## 6765 mike.van@enron.com 2001-10-02
## 6766 mike.van@enron.com 2001-10-02
## 6767 mike.van@enron.com 2001-10-02
## 6768 mike.van@enron.com 2001-10-02
## 6769 kay.miller@enron.com 2001-10-03
## 6770 kay.miller@enron.com 2001-10-03
## 6771 kay.miller@enron.com 2001-10-03
## 6772 glen.hass@enron.com 2001-10-03
## 6773 glen.hass@enron.com 2001-10-03
## 6774 glen.hass@enron.com 2001-10-03
## 6775 steven.harris@enron.com 2001-10-03
## 6776 steven.harris@enron.com 2001-10-03
## 6777 steven.harris@enron.com 2001-10-03
## 6778 steven.harris@enron.com 2001-10-03
## 6779 steven.harris@enron.com 2001-10-03
## 6780 steven.harris@enron.com 2001-10-03
## 6781 steven.harris@enron.com 2001-10-03
## 6782 steven.harris@enron.com 2001-10-03
## 6783 steven.harris@enron.com 2001-10-03
## 6784 steven.harris@enron.com 2001-10-03
## 6785 steven.harris@enron.com 2001-10-03
## 6786 steven.harris@enron.com 2001-10-03
## 6787 alma.green@enron.com 2001-10-03
## 6788 teb.lokey@enron.com 2001-10-03
## 6789 teb.lokey@enron.com 2001-10-03
## 6790 teb.lokey@enron.com 2001-10-03
## 6791 teb.lokey@enron.com 2001-10-03
## 6792 teb.lokey@enron.com 2001-10-03
## 6793 teb.lokey@enron.com 2001-10-03
## 6794 teb.lokey@enron.com 2001-10-03
## 6795 joe.hartsoe@enron.com 2001-10-03
## 6796 zelda.paschal@enron.com 2001-10-03
## 6797 nancy.bagot@enron.com 2001-10-04
## 6798 nancy.bagot@enron.com 2001-10-04
## 6799 nancy.bagot@enron.com 2001-10-04
## 6800 nancy.bagot@enron.com 2001-10-04
## 6801 nancy.bagot@enron.com 2001-10-04
## 6802 nancy.bagot@enron.com 2001-10-04
## 6803 nancy.bagot@enron.com 2001-10-04
## 6804 nancy.bagot@enron.com 2001-10-04
## 6805 nancy.bagot@enron.com 2001-10-04
## 6806 craig.buehler@enron.com 2001-10-04
## 6807 elwanda.bennett@enron.com 2001-10-04
## 6808 janet.butler@enron.com 2001-10-04
## 6809 janet.butler@enron.com 2001-10-04
## 6810 janet.butler@enron.com 2001-10-04
## 6811 janet.butler@enron.com 2001-10-04
## 6812 janet.butler@enron.com 2001-10-04
## 6813 janet.butler@enron.com 2001-10-04
## 6814 janet.butler@enron.com 2001-10-04
## 6815 janet.butler@enron.com 2001-10-04
## 6816 janet.butler@enron.com 2001-10-04
## 6817 janet.butler@enron.com 2001-10-04
## 6818 mary.darveaux@enron.com 2001-10-04
## 6819 mary.darveaux@enron.com 2001-10-04
## 6820 lillian.villarreal@enron.com 2001-10-04
## 6821 lillian.villarreal@enron.com 2001-10-04
## 6822 lillian.villarreal@enron.com 2001-10-04
## 6823 lillian.villarreal@enron.com 2001-10-04
## 6824 audrey.robertson@enron.com 2001-10-04
## 6825 audrey.robertson@enron.com 2001-10-04
## 6826 audrey.robertson@enron.com 2001-10-04
## 6827 audrey.robertson@enron.com 2001-10-04
## 6828 audrey.robertson@enron.com 2001-10-04
## 6829 audrey.robertson@enron.com 2001-10-04
## 6830 craig.buehler@enron.com 2001-10-04
## 6831 craig.buehler@enron.com 2001-10-04
## 6832 shelley.corman@enron.com 2001-10-04
## 6833 shelley.corman@enron.com 2001-10-04
## 6834 kay.miller@enron.com 2001-10-04
## 6835 robert.kilmer@enron.com 2001-10-05
## 6836 robert.kilmer@enron.com 2001-10-05
## 6837 craig.buehler@enron.com 2001-10-05
## 6838 craig.buehler@enron.com 2001-10-05
## 6839 j..porter@enron.com 2001-10-05
## 6840 lillian.villarreal@enron.com 2001-10-05
## 6841 lillian.villarreal@enron.com 2001-10-05
## 6842 lillian.villarreal@enron.com 2001-10-05
## 6843 lillian.villarreal@enron.com 2001-10-05
## 6844 janet.butler@enron.com 2001-10-05
## 6845 janet.butler@enron.com 2001-10-05
## 6846 janet.butler@enron.com 2001-10-05
## 6847 janet.butler@enron.com 2001-10-05
## 6848 janet.butler@enron.com 2001-10-05
## 6849 janet.butler@enron.com 2001-10-05
## 6850 janet.butler@enron.com 2001-10-05
## 6851 janet.butler@enron.com 2001-10-05
## 6852 janet.butler@enron.com 2001-10-05
## 6853 janet.butler@enron.com 2001-10-05
## 6854 leonard.daily@enron.com 2001-10-06
## 6855 james.studebaker@enron.com 2001-10-08
## 6856 lillian.villarreal@enron.com 2001-10-08
## 6857 lillian.villarreal@enron.com 2001-10-08
## 6858 lillian.villarreal@enron.com 2001-10-08
## 6859 kevin.hyatt@enron.com 2001-10-08
## 6860 kevin.hyatt@enron.com 2001-10-08
## 6861 kevin.hyatt@enron.com 2001-10-08
## 6862 kevin.hyatt@enron.com 2001-10-08
## 6863 kevin.hyatt@enron.com 2001-10-08
## 6864 kevin.hyatt@enron.com 2001-10-08
## 6865 kevin.hyatt@enron.com 2001-10-08
## 6866 kevin.hyatt@enron.com 2001-10-08
## 6867 kevin.hyatt@enron.com 2001-10-08
## 6868 kevin.hyatt@enron.com 2001-10-08
## 6869 toby.kuehl@enron.com 2001-10-08
## 6870 toby.kuehl@enron.com 2001-10-08
## 6871 toby.kuehl@enron.com 2001-10-08
## 6872 toby.kuehl@enron.com 2001-10-08
## 6873 christi.culwell@enron.com 2001-10-09
## 6874 christi.culwell@enron.com 2001-10-09
## 6875 debra.thompson@enron.com 2001-10-09
## 6876 lillian.villarreal@enron.com 2001-10-09
## 6877 lillian.villarreal@enron.com 2001-10-09
## 6878 lillian.villarreal@enron.com 2001-10-09
## 6879 lillian.villarreal@enron.com 2001-10-09
## 6880 kay.miller@enron.com 2001-10-09
## 6881 kay.miller@enron.com 2001-10-09
## 6882 kay.miller@enron.com 2001-10-09
## 6883 kay.miller@enron.com 2001-10-09
## 6884 maria.pavlou@enron.com 2001-10-09
## 6885 blair.lichtenwalter@enron.com 2001-10-09
## 6886 blair.lichtenwalter@enron.com 2001-10-09
## 6887 maria.pavlou@enron.com 2001-10-09
## 6888 robert.kilmer@enron.com 2001-10-09
## 6889 james.studebaker@enron.com 2001-10-09
## 6890 audrey.robertson@enron.com 2001-10-09
## 6891 audrey.robertson@enron.com 2001-10-09
## 6892 audrey.robertson@enron.com 2001-10-09
## 6893 steve.kirk@enron.com 2001-10-09
## 6894 debra.thompson@enron.com 2001-10-09
## 6895 glen.hass@enron.com 2001-10-10
## 6896 glen.hass@enron.com 2001-10-10
## 6897 glen.hass@enron.com 2001-10-10
## 6898 alice.johnson@enron.com 2001-10-10
## 6899 lorraine.lindberg@enron.com 2001-10-11
## 6900 nancy.bastida@enron.com 2001-10-11
## 6901 nancy.bastida@enron.com 2001-10-11
## 6902 nancy.bagot@enron.com 2001-10-11
## 6903 nancy.bagot@enron.com 2001-10-11
## 6904 nancy.bagot@enron.com 2001-10-11
## 6905 amelia.williams@enron.com 2001-10-15
## 6906 debra.thompson@enron.com 2001-10-15
## 6907 wendy.koh@enron.com 2001-10-16
## 6908 wendy.koh@enron.com 2001-10-16
## 6909 wendy.koh@enron.com 2001-10-16
## 6910 robert.kilmer@enron.com 2001-10-17
## 6911 blair.lichtenwalter@enron.com 2001-10-17
## 6912 blair.lichtenwalter@enron.com 2001-10-17
## 6913 debra.thompson@enron.com 2001-10-18
## 6914 glen.hass@enron.com 2001-10-18
## 6915 glen.hass@enron.com 2001-10-18
## 6916 glen.hass@enron.com 2001-10-18
## 6917 glen.hass@enron.com 2001-10-18
## 6918 glen.hass@enron.com 2001-10-18
## 6919 kay.miller@enron.com 2001-10-19
## 6920 kay.miller@enron.com 2001-10-19
## 6921 kay.miller@enron.com 2001-10-19
## 6922 kay.miller@enron.com 2001-10-19
## 6923 james.studebaker@enron.com 2001-10-19
## 6924 jeff.dasovich@enron.com 2001-10-19
## 6925 jeff.dasovich@enron.com 2001-10-19
## 6926 jeff.dasovich@enron.com 2001-10-19
## 6927 jeff.dasovich@enron.com 2001-10-19
## 6928 jeff.dasovich@enron.com 2001-10-19
## 6929 jeff.dasovich@enron.com 2001-10-19
## 6930 jeff.dasovich@enron.com 2001-10-19
## 6931 jeff.dasovich@enron.com 2001-10-19
## 6932 jeff.dasovich@enron.com 2001-10-19
## 6933 jeff.dasovich@enron.com 2001-10-19
## 6934 jeff.dasovich@enron.com 2001-10-19
## 6935 jeff.dasovich@enron.com 2001-10-19
## 6936 jeff.dasovich@enron.com 2001-10-19
## 6937 jeff.dasovich@enron.com 2001-10-19
## 6938 jeff.dasovich@enron.com 2001-10-19
## 6939 susan.wadle@enron.com 2001-10-22
## 6940 susan.wadle@enron.com 2001-10-22
## 6941 janet.butler@enron.com 2001-10-22
## 6942 janet.butler@enron.com 2001-10-22
## 6943 janet.butler@enron.com 2001-10-22
## 6944 janet.butler@enron.com 2001-10-22
## 6945 janet.butler@enron.com 2001-10-22
## 6946 janet.butler@enron.com 2001-10-22
## 6947 janet.butler@enron.com 2001-10-22
## 6948 janet.butler@enron.com 2001-10-22
## 6949 janet.butler@enron.com 2001-10-22
## 6950 janet.butler@enron.com 2001-10-22
## 6951 janet.butler@enron.com 2001-10-22
## 6952 ann.smith@enron.com 2001-10-22
## 6953 ann.smith@enron.com 2001-10-22
## 6954 ann.smith@enron.com 2001-10-22
## 6955 ann.smith@enron.com 2001-10-22
## 6956 ann.smith@enron.com 2001-10-22
## 6957 ann.smith@enron.com 2001-10-22
## 6958 ann.smith@enron.com 2001-10-22
## 6959 ann.smith@enron.com 2001-10-22
## 6960 denise.lagesse@enron.com 2001-10-22
## 6961 mark.mcconnell@enron.com 2001-10-22
## 6962 amelia.williams@enron.com 2001-10-23
## 6963 shelley.corman@enron.com 2001-10-23
## 6964 gwendolyn.chavis@enron.com 2001-10-23
## 6965 debra.thompson@enron.com 2001-10-23
## 6966 debra.thompson@enron.com 2001-10-23
## 6967 bob.chandler@enron.com 2001-10-23
## 6968 bob.chandler@enron.com 2001-10-23
## 6969 tim.kissner@enron.com 2001-10-24
## 6970 tim.kissner@enron.com 2001-10-24
## 6971 keith.petersen@enron.com 2001-10-24
## 6972 keith.petersen@enron.com 2001-10-24
## 6973 drew.fossum@enron.com 2001-10-24
## 6974 drew.fossum@enron.com 2001-10-24
## 6975 drew.fossum@enron.com 2001-10-24
## 6976 drew.fossum@enron.com 2001-10-24
## 6977 drew.fossum@enron.com 2001-10-24
## 6978 drew.fossum@enron.com 2001-10-24
## 6979 kay.miller@enron.com 2001-10-24
## 6980 kay.miller@enron.com 2001-10-24
## 6981 kay.miller@enron.com 2001-10-24
## 6982 gwendolyn.chavis@enron.com 2001-10-24
## 6983 gwendolyn.chavis@enron.com 2001-10-24
## 6984 ann.smith@enron.com 2001-10-24
## 6985 ann.smith@enron.com 2001-10-24
## 6986 ann.smith@enron.com 2001-10-24
## 6987 ann.smith@enron.com 2001-10-24
## 6988 ann.smith@enron.com 2001-10-24
## 6989 ann.smith@enron.com 2001-10-24
## 6990 blair.lichtenwalter@enron.com 2001-10-25
## 6991 zakiyyah.mcclure@enron.com 2001-10-25
## 6992 zakiyyah.mcclure@enron.com 2001-10-25
## 6993 craig.buehler@enron.com 2001-10-25
## 6994 craig.buehler@enron.com 2001-10-25
## 6995 james.studebaker@enron.com 2001-10-25
## 6996 glen.hass@enron.com 2001-10-25
## 6997 glen.hass@enron.com 2001-10-25
## 6998 glen.hass@enron.com 2001-10-25
## 6999 glen.hass@enron.com 2001-10-25
## 7000 glen.hass@enron.com 2001-10-25
## 7001 glen.hass@enron.com 2001-10-25
## 7002 glen.hass@enron.com 2001-10-25
## 7003 craig.buehler@enron.com 2001-10-25
## 7004 craig.buehler@enron.com 2001-10-25
## 7005 calvin.eakins@enron.com 2001-10-25
## 7006 toby.kuehl@enron.com 2001-10-25
## 7007 adrian.woolcock@enron.com 2001-10-25
## 7008 janet.butler@enron.com 2001-10-26
## 7009 anne.jolibois@enron.com 2001-10-26
## 7010 glen.hass@enron.com 2001-10-26
## 7011 glen.hass@enron.com 2001-10-26
## 7012 glen.hass@enron.com 2001-10-26
## 7013 glen.hass@enron.com 2001-10-26
## 7014 fran.fagan@enron.com 2001-10-26
## 7015 blair.lichtenwalter@enron.com 2001-10-26
## 7016 kay.miller@enron.com 2001-10-26
## 7017 kay.miller@enron.com 2001-10-26
## 7018 kay.miller@enron.com 2001-10-26
## 7019 j..porter@enron.com 2001-10-29
## 7020 j..porter@enron.com 2001-10-29
## 7021 j..porter@enron.com 2001-10-29
## 7022 christi.culwell@enron.com 2001-10-29
## 7023 kevin.hyatt@enron.com 2001-10-29
## 7024 kevin.hyatt@enron.com 2001-10-29
## 7025 kevin.hyatt@enron.com 2001-10-29
## 7026 kevin.hyatt@enron.com 2001-10-29
## 7027 kevin.hyatt@enron.com 2001-10-29
## 7028 kevin.hyatt@enron.com 2001-10-29
## 7029 kevin.hyatt@enron.com 2001-10-29
## 7030 kevin.hyatt@enron.com 2001-10-29
## 7031 kevin.hyatt@enron.com 2001-10-29
## 7032 kevin.hyatt@enron.com 2001-10-29
## 7033 kevin.hyatt@enron.com 2001-10-29
## 7034 kevin.hyatt@enron.com 2001-10-29
## 7035 kevin.hyatt@enron.com 2001-10-29
## 7036 kevin.hyatt@enron.com 2001-10-29
## 7037 eric.gadd@enron.com 2001-10-29
## 7038 eric.gadd@enron.com 2001-10-29
## 7039 joni.moeller@enron.com 2001-02-21
## 7040 james.saunders@enron.com 2001-03-28
## 7041 james.saunders@enron.com 2001-03-28
## 7042 lillian.villarreal@enron.com 2001-03-22
## 7043 lillian.villarreal@enron.com 2001-03-22
## 7044 lillian.villarreal@enron.com 2001-04-03
## 7045 lillian.villarreal@enron.com 2001-04-03
## 7046 alice.weekley@enron.com 2001-04-09
## 7047 alice.weekley@enron.com 2001-04-12
## 7048 john.cobb@enron.com 2001-04-30
## 7049 alice.weekley@enron.com 2001-05-25
## 7050 lillian.villarreal@enron.com 2001-05-24
## 7051 lillian.villarreal@enron.com 2001-06-28
## 7052 lillian.villarreal@enron.com 2001-06-28
## 7053 kevin.hyatt@enron.com 2001-07-16
## 7054 nancy.bastida@enron.com 2001-07-17
## 7055 john.kennell@enron.com 2001-07-20
## 7056 john.cobb@enron.com 2001-07-23
## 7057 drew.fossum@enron.com 2001-07-27
## 7058 drew.fossum@enron.com 2001-07-27
## 7059 drew.fossum@enron.com 2001-07-27
## 7060 alma.carrillo@enron.com 2001-08-01
## 7061 james.studebaker@enron.com 2001-09-04
## 7062 james.studebaker@enron.com 2001-10-01
## 7063 lillian.villarreal@enron.com 2001-10-05
## 7064 lillian.villarreal@enron.com 2001-10-05
## 7065 wendy.koh@enron.com 2001-10-05
## 7066 wendy.koh@enron.com 2001-10-05
## 7067 drew.fossum@enron.com 2001-10-10
## 7068 drew.fossum@enron.com 2001-10-10
## 7069 drew.fossum@enron.com 2001-10-10
## 7070 drew.fossum@enron.com 2001-10-10
## 7071 drew.fossum@enron.com 2001-10-10
## 7072 drew.fossum@enron.com 2001-10-10
## 7073 drew.fossum@enron.com 2001-10-16
## 7074 drew.fossum@enron.com 2001-10-16
## 7075 drew.fossum@enron.com 2001-10-16
## 7076 drew.fossum@enron.com 2001-10-16
## 7077 drew.fossum@enron.com 2001-10-16
## 7078 drew.fossum@enron.com 2001-10-16
## 7079 drew.fossum@enron.com 2001-10-16
## 7080 drew.fossum@enron.com 2001-10-16
## 7081 bill.hatch@enron.com 2001-12-31
## 7082 bill.hatch@enron.com 2001-12-31
## 7083 james.d.steffes@enron.com 2002-01-18
## 7084 narsimha.misra@enron.com 2002-01-22
## 7085 d..merril@enron.com 2002-01-30
## 7086 d..merril@enron.com 2002-01-30
## 7087 tina.holcombe@enron.com 2002-01-30
## 7088 tina.holcombe@enron.com 2002-01-30
## 7089 paul.racicot@enron.com 2002-01-28
## 7090 paul.racicot@enron.com 2002-01-28
## 7091 richard.ring@enron.com 2002-01-31
## 7092 richard.ring@enron.com 2002-01-29
## 7093 richard.ring@enron.com 2002-01-29
## 7094 richard.ring@enron.com 2002-01-29
## 7095 richard.ring@enron.com 2002-01-29
## 7096 richard.ring@enron.com 2002-01-29
## 7097 richard.ring@enron.com 2002-01-28
## 7098 richard.ring@enron.com 2002-01-25
## 7099 richard.ring@enron.com 2002-01-23
## 7100 richard.ring@enron.com 2002-01-23
## 7101 richard.ring@enron.com 2002-01-23
## 7102 richard.ring@enron.com 2002-01-23
## 7103 richard.ring@enron.com 2002-01-22
## 7104 richard.ring@enron.com 2002-01-22
## 7105 richard.ring@enron.com 2002-01-22
## 7106 richard.ring@enron.com 2002-01-18
## 7107 richard.ring@enron.com 2002-01-17
## 7108 richard.ring@enron.com 2002-01-17
## 7109 richard.ring@enron.com 2002-01-17
## 7110 richard.ring@enron.com 2002-01-17
## 7111 richard.ring@enron.com 2002-01-17
## 7112 richard.ring@enron.com 2002-01-17
## 7113 richard.ring@enron.com 2002-01-17
## 7114 richard.ring@enron.com 2002-01-17
## 7115 richard.ring@enron.com 2002-01-17
## 7116 richard.ring@enron.com 2002-01-17
## 7117 richard.ring@enron.com 2002-01-17
## 7118 richard.ring@enron.com 2002-01-17
## 7119 richard.ring@enron.com 2002-01-17
## 7120 richard.ring@enron.com 2002-01-17
## 7121 richard.ring@enron.com 2002-01-17
## 7122 richard.ring@enron.com 2002-01-17
## 7123 richard.ring@enron.com 2002-01-17
## 7124 richard.ring@enron.com 2002-01-16
## 7125 richard.ring@enron.com 2002-01-16
## 7126 richard.ring@enron.com 2002-01-14
## 7127 richard.ring@enron.com 2002-01-08
## 7128 richard.ring@enron.com 2002-01-08
## 7129 richard.ring@enron.com 2002-01-03
## 7130 richard.ring@enron.com 2001-12-26
## 7131 richard.ring@enron.com 2001-12-26
## 7132 richard.ring@enron.com 2001-12-26
## 7133 richard.ring@enron.com 2001-12-19
## 7134 richard.ring@enron.com 2001-10-24
## 7135 richard.ring@enron.com 2001-10-24
## 7136 richard.ring@enron.com 2001-10-25
## 7137 richard.ring@enron.com 2001-10-25
## 7138 richard.ring@enron.com 2001-10-25
## 7139 richard.ring@enron.com 2001-10-25
## 7140 richard.ring@enron.com 2001-10-25
## 7141 richard.ring@enron.com 2001-10-25
## 7142 richard.ring@enron.com 2001-10-26
## 7143 richard.ring@enron.com 2001-10-26
## 7144 richard.ring@enron.com 2001-10-26
## 7145 richard.ring@enron.com 2001-10-26
## 7146 richard.ring@enron.com 2001-10-26
## 7147 richard.ring@enron.com 2001-10-26
## 7148 richard.ring@enron.com 2001-10-26
## 7149 richard.ring@enron.com 2001-10-29
## 7150 richard.ring@enron.com 2001-10-29
## 7151 richard.ring@enron.com 2001-10-29
## 7152 richard.ring@enron.com 2001-10-29
## 7153 richard.ring@enron.com 2001-10-29
## 7154 richard.ring@enron.com 2001-10-29
## 7155 richard.ring@enron.com 2001-10-29
## 7156 richard.ring@enron.com 2001-10-29
## 7157 richard.ring@enron.com 2001-10-29
## 7158 pamela.carter@enron.com 2002-01-31
## 7159 pamela.carter@enron.com 2002-02-06
## 7160 pamela.carter@enron.com 2002-02-06
## 7161 pamela.carter@enron.com 2002-01-31
## 7162 rogers.herndon@enron.com 2002-01-30
## 7163 transportation.parking@enron.com 2002-01-31
## 7164 c..aucoin@enron.com 2001-12-17
## 7165 elliot.mainzer@enron.com 2001-12-03
## 7166 phyllis.anzalone@enron.com 2001-12-03
## 7167 michael.payne@enron.com 2001-12-03
## 7168 elliot.mainzer@enron.com 2001-12-04
## 7169 elliot.mainzer@enron.com 2001-11-27
## 7170 elliot.mainzer@enron.com 2001-11-27
## 7171 kenneth.lee@enron.com 2001-10-25
## 7172 kenneth.lee@enron.com 2001-10-25
## 7173 kenneth.lee@enron.com 2001-10-25
## 7174 vinay.adenwala@enron.com 2001-07-26
## 7175 vinay.adenwala@enron.com 2001-07-26
## 7176 victor.gonzalez@enron.com 2001-07-27
## 7177 victor.gonzalez@enron.com 2001-07-27
## 7178 victor.gonzalez@enron.com 2001-07-27
## 7179 robert.deshazo@enron.com 2001-07-27
## 7180 robert.sutter@enron.com 2001-07-30
## 7181 robert.sutter@enron.com 2001-07-30
## 7182 vinay.adenwala@enron.com 2001-07-30
## 7183 vinay.adenwala@enron.com 2001-07-30
## 7184 parking.transportation@enron.com 2001-08-07
## 7185 parking.transportation@enron.com 2001-08-07
## 7186 parking.transportation@enron.com 2001-08-07
## 7187 parking.transportation@enron.com 2001-08-07
## 7188 gavin.dillingham@enron.com 2001-08-17
## 7189 gavin.dillingham@enron.com 2001-08-17
## 7190 gavin.dillingham@enron.com 2001-08-17
## 7191 gavin.dillingham@enron.com 2001-08-17
## 7192 outlook.team@enron.com 2001-08-20
## 7193 nan.whatley@enron.com 2001-08-22
## 7194 nan.whatley@enron.com 2001-08-22
## 7195 michele.raque@enron.com 2001-08-24
## 7196 michele.raque@enron.com 2001-08-24
## 7197 michele.raque@enron.com 2001-08-24
## 7198 rebecca.fite@enron.com 2001-08-27
## 7199 karen.cordova@enron.com 2001-08-27
## 7200 michele.raque@enron.com 2001-08-29
## 7201 michele.raque@enron.com 2001-08-29
## 7202 michele.raque@enron.com 2001-09-06
## 7203 michele.raque@enron.com 2001-09-06
## 7204 suneet.sharma@enron.com 2001-09-18
## 7205 michele.raque@enron.com 2001-09-19
## 7206 jay.bhatty@enron.com 2001-09-21
## 7207 bob.hansen@enron.com 2001-09-21
## 7208 bob.hansen@enron.com 2001-09-21
## 7209 narsimha.misra@enron.com 2001-09-21
## 7210 narsimha.misra@enron.com 2001-09-21
## 7211 bob.hansen@enron.com 2001-09-24
## 7212 bob.hansen@enron.com 2001-09-24
## 7213 jeff.merola@enron.com 2001-09-24
## 7214 michele.raque@enron.com 2001-09-25
## 7215 nick.politis@enron.com 2001-09-26
## 7216 nick.politis@enron.com 2001-09-28
## 7217 nick.politis@enron.com 2001-09-28
## 7218 narsimha.misra@enron.com 2001-09-28
## 7219 nick.politis@enron.com 2001-09-28
## 7220 narsimha.misra@enron.com 2001-09-28
## 7221 narsimha.misra@enron.com 2001-09-28
## 7222 narsimha.misra@enron.com 2001-10-01
## 7223 payroll.enron@enron.com 2001-10-02
## 7224 h..foster@enron.com 2001-10-03
## 7225 andrew.greer@enron.com 2001-10-03
## 7226 jubran.whalan@enron.com 2001-10-05
## 7227 kathy.bass@enron.com 2001-10-10
## 7228 michele.raque@enron.com 2001-10-11
## 7229 c..aucoin@enron.com 2001-10-15
## 7230 c..aucoin@enron.com 2001-10-15
## 7231 nichole.gunter@enron.com 2001-10-17
## 7232 nichole.gunter@enron.com 2001-10-17
## 7233 karen.cordova@enron.com 2001-10-17
## 7234 d..merril@enron.com 2002-01-22
## 7235 d..merril@enron.com 2002-01-22
## 7236 d..merril@enron.com 2002-01-22
## 7237 james.sweet@enron.com 2001-10-19
## 7238 stacey.bolton@enron.com 2001-10-22
## 7239 mary.hannusch@enron.com 2001-10-23
## 7240 becky.pitre@enron.com 2001-10-23
## 7241 bob.hansen@enron.com 2001-10-23
## 7242 mike.smith@enron.com 2001-10-23
## 7243 mike.smith@enron.com 2001-10-23
## 7244 h..foster@enron.com 2001-10-24
## 7245 susan.lindberg@enron.com 2001-10-24
## 7246 susan.lindberg@enron.com 2001-10-24
## 7247 susan.lindberg@enron.com 2001-10-24
## 7248 susan.lindberg@enron.com 2001-10-24
## 7249 susan.lindberg@enron.com 2001-10-24
## 7250 susan.lindberg@enron.com 2001-10-24
## 7251 susan.lindberg@enron.com 2001-10-24
## 7252 susan.lindberg@enron.com 2001-10-24
## 7253 jevaughn.sterling@enron.com 2001-10-24
## 7254 jevaughn.sterling@enron.com 2001-10-24
## 7255 mary.hannusch@enron.com 2001-10-24
## 7256 mike.smith@enron.com 2001-10-24
## 7257 mike.smith@enron.com 2001-10-24
## 7258 h..foster@enron.com 2001-10-24
## 7259 carolyn.wedel@enron.com 2001-10-24
## 7260 exchange.administrator@enron.com 2001-10-25
## 7261 stacey.bolton@enron.com 2001-10-25
## 7262 rogers.herndon@enron.com 2001-10-25
## 7263 stacey.bolton@enron.com 2001-10-25
## 7264 kenneth.lee@enron.com 2001-10-25
## 7265 kenneth.lee@enron.com 2001-10-25
## 7266 kenneth.lee@enron.com 2001-10-25
## 7267 michele.raque@enron.com 2001-10-25
## 7268 stacey.bolton@enron.com 2001-10-25
## 7269 lloyd.dickerson@enron.com 2001-10-25
## 7270 carolyn.wedel@enron.com 2001-10-25
## 7271 stacey.bolton@enron.com 2001-10-25
## 7272 stacey.bolton@enron.com 2001-10-25
## 7273 jevaughn.sterling@enron.com 2001-10-25
## 7274 jevaughn.sterling@enron.com 2001-10-25
## 7275 mike.smith@enron.com 2001-10-25
## 7276 mike.smith@enron.com 2001-10-25
## 7277 gene.morris@enron.com 2001-10-26
## 7278 sam.romero@enron.com 2001-10-26
## 7279 sam.romero@enron.com 2001-10-26
## 7280 sam.romero@enron.com 2001-10-26
## 7281 michele.raque@enron.com 2001-10-26
## 7282 michele.raque@enron.com 2001-10-26
## 7283 bill.hatch@enron.com 2001-10-26
## 7284 bill.hatch@enron.com 2001-10-26
## 7285 howard.fromer@enron.com 2001-10-26
## 7286 howard.fromer@enron.com 2001-10-26
## 7287 howard.fromer@enron.com 2001-10-26
## 7288 howard.fromer@enron.com 2001-10-26
## 7289 howard.fromer@enron.com 2001-10-26
## 7290 howard.fromer@enron.com 2001-10-26
## 7291 peggy.mahoney@enron.com 2001-10-26
## 7292 stacey.bolton@enron.com 2001-10-28
## 7293 frank.rishe@enron.com 2001-10-28
## 7294 michele.raque@enron.com 2001-10-29
## 7295 kay.quigley@enron.com 2001-10-29
## 7296 elliot.mainzer@enron.com 2001-10-29
## 7297 jennifer.thome@enron.com 2001-10-29
## 7298 howard.fromer@enron.com 2001-10-29
## 7299 howard.fromer@enron.com 2001-10-29
## 7300 howard.fromer@enron.com 2001-10-29
## 7301 elliot.mainzer@enron.com 2001-10-29
## 7302 d..smith@enron.com 2002-01-17
## 7303 d..smith@enron.com 2002-01-17
## 7304 d..smith@enron.com 2002-01-17
## 7305 d..smith@enron.com 2002-01-17
## 7306 d..smith@enron.com 2002-01-17
## 7307 d..smith@enron.com 2002-01-17
## 7308 d..smith@enron.com 2002-01-17
## 7309 d..smith@enron.com 2002-01-17
## 7310 d..smith@enron.com 2002-01-29
## 7311 d..smith@enron.com 2002-01-29
## 7312 d..smith@enron.com 2002-01-29
## 7313 h..foster@enron.com 2002-01-22
## 7314 vivian.hart@enron.com 2002-01-08
## 7315 vivian.hart@enron.com 2002-01-08
## 7316 h..foster@enron.com 2002-01-14
## 7317 h..foster@enron.com 2002-01-14
## 7318 christina.finelli@enron.com 2001-12-31
## 7319 christina.finelli@enron.com 2002-01-09
## 7320 christina.finelli@enron.com 2002-01-10
## 7321 christina.finelli@enron.com 2002-01-10
## 7322 kathleen.croiset@enron.com 2002-01-08
## 7323 christina.finelli@enron.com 2001-12-19
## 7324 elliot.mainzer@enron.com 2001-11-16
## 7325 stacey.bolton@enron.com 2001-11-30
## 7326 stacey.bolton@enron.com 2001-11-30
## 7327 jennifer.thome@enron.com 2001-11-12
## 7328 elliot.mainzer@enron.com 2001-11-20
## 7329 mary.hannusch@enron.com 2001-11-13
## 7330 jim.reyes@enron.com 2001-11-13
## 7331 lisa.pitt@enron.com 2001-11-12
## 7332 lisa.pitt@enron.com 2001-11-13
## 7333 lisa.pitt@enron.com 2001-11-13
## 7334 michael.payne@enron.com 2001-11-12
## 7335 michael.payne@enron.com 2001-11-12
## 7336 elliot.mainzer@enron.com 2001-10-29
## 7337 elliot.mainzer@enron.com 2001-11-02
## 7338 elliot.mainzer@enron.com 2001-11-05
## 7339 elliot.mainzer@enron.com 2001-11-06
## 7340 elliot.mainzer@enron.com 2001-11-14
## 7341 elliot.mainzer@enron.com 2001-11-14
## 7342 elliot.mainzer@enron.com 2001-11-14
## 7343 elliot.mainzer@enron.com 2001-11-14
## 7344 elliot.mainzer@enron.com 2001-11-15
## 7345 elliot.mainzer@enron.com 2001-11-15
## 7346 elliot.mainzer@enron.com 2001-11-15
## 7347 elliot.mainzer@enron.com 2001-11-15
## 7348 elliot.mainzer@enron.com 2001-11-15
## 7349 jennifer.thome@enron.com 2001-10-29
## 7350 jesse.bryson@enron.com 2001-11-07
## 7351 stacey.bolton@enron.com 2001-11-07
## 7352 mary.hannusch@enron.com 2001-11-07
## 7353 jeff.merola@enron.com 2001-11-09
## 7354 jeff.merola@enron.com 2001-11-09
## 7355 kay.quigley@enron.com 2001-11-06
## 7356 john.mccarthy@enron.com 2001-11-05
## 7357 kay.quigley@enron.com 2001-11-05
## 7358 john.mccarthy@enron.com 2001-11-05
## 7359 john.mccarthy@enron.com 2001-11-05
## 7360 jennifer.thome@enron.com 2001-11-05
## 7361 kay.quigley@enron.com 2001-10-29
## 7362 elliot.mainzer@enron.com 2001-10-29
## 7363 mary.hannusch@enron.com 2001-10-23
## 7364 mary.hannusch@enron.com 2001-10-24
## 7365 h..foster@enron.com 2001-10-24
## 7366 stacey.bolton@enron.com 2001-07-23
## 7367 heather.mathis@enron.com 2001-07-23
## 7368 heather.mathis@enron.com 2001-07-23
## 7369 heather.mathis@enron.com 2001-07-23
## 7370 heather.mathis@enron.com 2001-07-24
## 7371 stacey.bolton@enron.com 2001-07-25
## 7372 stacey.bolton@enron.com 2001-07-26
## 7373 stacey.bolton@enron.com 2001-07-26
## 7374 stacey.bolton@enron.com 2001-07-26
## 7375 leslie.reeves@enron.com 2001-07-26
## 7376 stacey.bolton@enron.com 2001-07-26
## 7377 stacey.bolton@enron.com 2001-07-26
## 7378 heather.mitchell@enron.com 2001-07-27
## 7379 heather.mitchell@enron.com 2001-07-27
## 7380 stacey.bolton@enron.com 2001-07-27
## 7381 stacey.bolton@enron.com 2001-07-27
## 7382 stacey.bolton@enron.com 2001-07-28
## 7383 stacey.bolton@enron.com 2001-07-28
## 7384 stacey.bolton@enron.com 2001-07-28
## 7385 stacey.bolton@enron.com 2001-07-28
## 7386 stacey.bolton@enron.com 2001-07-28
## 7387 stacey.bolton@enron.com 2001-07-28
## 7388 stacey.bolton@enron.com 2001-07-28
## 7389 stacey.bolton@enron.com 2001-07-28
## 7390 stacey.bolton@enron.com 2001-07-28
## 7391 stacey.bolton@enron.com 2001-07-28
## 7392 stacey.bolton@enron.com 2001-07-28
## 7393 bob.hansen@enron.com 2001-07-30
## 7394 stacey.bolton@enron.com 2001-07-30
## 7395 marianne.castano@enron.com 2001-07-31
## 7396 marianne.castano@enron.com 2001-07-31
## 7397 marianne.castano@enron.com 2001-07-31
## 7398 heather.mathis@enron.com 2001-07-31
## 7399 stacey.bolton@enron.com 2001-08-01
## 7400 marianne.castano@enron.com 2001-08-02
## 7401 marianne.castano@enron.com 2001-08-02
## 7402 stacey.bolton@enron.com 2001-08-02
## 7403 stacey.bolton@enron.com 2001-08-02
## 7404 marianne.castano@enron.com 2001-08-02
## 7405 marianne.castano@enron.com 2001-08-02
## 7406 george.phillips@enron.com 2001-08-03
## 7407 heather.mathis@enron.com 2001-08-06
## 7408 heather.mathis@enron.com 2001-08-06
## 7409 marianne.castano@enron.com 2001-08-06
## 7410 marianne.castano@enron.com 2001-08-06
## 7411 stacey.bolton@enron.com 2001-08-06
## 7412 stacey.bolton@enron.com 2001-08-06
## 7413 stacey.bolton@enron.com 2001-08-08
## 7414 stacey.bolton@enron.com 2001-08-08
## 7415 jim.reyes@enron.com 2001-08-08
## 7416 stacey.bolton@enron.com 2001-08-08
## 7417 stacey.bolton@enron.com 2001-08-09
## 7418 stacey.bolton@enron.com 2001-08-09
## 7419 stacey.bolton@enron.com 2001-08-09
## 7420 stacey.bolton@enron.com 2001-08-09
## 7421 stacey.bolton@enron.com 2001-08-09
## 7422 stacey.bolton@enron.com 2001-08-09
## 7423 stacey.bolton@enron.com 2001-08-09
## 7424 stacey.bolton@enron.com 2001-08-09
## 7425 stacey.bolton@enron.com 2001-08-09
## 7426 heather.mathis@enron.com 2001-08-09
## 7427 pamela.carter@enron.com 2001-08-09
## 7428 heather.mathis@enron.com 2001-08-10
## 7429 marianne.castano@enron.com 2001-08-10
## 7430 stacey.bolton@enron.com 2001-08-13
## 7431 stacey.bolton@enron.com 2001-08-13
## 7432 stacey.bolton@enron.com 2001-08-13
## 7433 heather.mathis@enron.com 2001-08-14
## 7434 heather.mathis@enron.com 2001-08-14
## 7435 heather.mathis@enron.com 2001-08-14
## 7436 heather.mathis@enron.com 2001-08-14
## 7437 heather.mathis@enron.com 2001-08-15
## 7438 heather.mathis@enron.com 2001-08-15
## 7439 heather.mathis@enron.com 2001-08-15
## 7440 richard.miller@enron.com 2001-08-15
## 7441 richard.miller@enron.com 2001-08-15
## 7442 stacey.bolton@enron.com 2001-08-16
## 7443 stacey.bolton@enron.com 2001-08-16
## 7444 stacey.bolton@enron.com 2001-08-16
## 7445 stacey.bolton@enron.com 2001-08-16
## 7446 stacey.bolton@enron.com 2001-08-16
## 7447 stacey.bolton@enron.com 2001-08-16
## 7448 stacey.bolton@enron.com 2001-08-16
## 7449 stacey.bolton@enron.com 2001-08-16
## 7450 stacey.bolton@enron.com 2001-08-16
## 7451 stacey.bolton@enron.com 2001-08-17
## 7452 pamela.carter@enron.com 2001-08-17
## 7453 stacey.bolton@enron.com 2001-08-17
## 7454 angela.wilson@enron.com 2001-08-20
## 7455 pamela.carter@enron.com 2001-08-20
## 7456 heather.mathis@enron.com 2001-08-20
## 7457 pamela.carter@enron.com 2001-08-20
## 7458 stacey.bolton@enron.com 2001-08-21
## 7459 stacey.bolton@enron.com 2001-08-21
## 7460 paul.darmitzel@enron.com 2001-08-21
## 7461 pamela.carter@enron.com 2001-08-21
## 7462 jesse.bryson@enron.com 2001-08-21
## 7463 heather.mathis@enron.com 2001-08-21
## 7464 paul.darmitzel@enron.com 2001-08-21
## 7465 aaron.klemm@enron.com 2001-08-21
## 7466 alex.hidalgo@enron.com 2001-08-22
## 7467 stacey.bolton@enron.com 2001-08-22
## 7468 elliot.mainzer@enron.com 2001-08-22
## 7469 elliot.mainzer@enron.com 2001-08-22
## 7470 heather.mathis@enron.com 2001-08-22
## 7471 heather.mathis@enron.com 2001-08-23
## 7472 paul.darmitzel@enron.com 2001-08-23
## 7473 paul.darmitzel@enron.com 2001-08-23
## 7474 chris.hendrix@enron.com 2001-08-23
## 7475 paul.darmitzel@enron.com 2001-08-23
## 7476 heather.mathis@enron.com 2001-08-24
## 7477 heather.mathis@enron.com 2001-08-24
## 7478 heather.mathis@enron.com 2001-08-24
## 7479 stacey.bolton@enron.com 2001-08-24
## 7480 stacey.bolton@enron.com 2001-08-24
## 7481 stacey.bolton@enron.com 2001-08-24
## 7482 stacey.bolton@enron.com 2001-08-24
## 7483 stacey.bolton@enron.com 2001-08-24
## 7484 jesse.bryson@enron.com 2001-08-27
## 7485 jo.johnson@enron.com 2001-08-28
## 7486 jo.johnson@enron.com 2001-08-28
## 7487 40ees@enron.com 2001-08-28
## 7488 40ees@enron.com 2001-08-28
## 7489 stacey.bolton@enron.com 2001-08-28
## 7490 stacey.bolton@enron.com 2001-08-28
## 7491 stacey.bolton@enron.com 2001-08-28
## 7492 jeff.dasovich@enron.com 2001-08-28
## 7493 jeff.dasovich@enron.com 2001-08-28
## 7494 jeff.dasovich@enron.com 2001-08-28
## 7495 jeff.dasovich@enron.com 2001-08-28
## 7496 jeff.dasovich@enron.com 2001-08-28
## 7497 jeff.dasovich@enron.com 2001-08-28
## 7498 jeff.dasovich@enron.com 2001-08-28
## 7499 jeff.dasovich@enron.com 2001-08-28
## 7500 jeff.dasovich@enron.com 2001-08-28
## 7501 jeff.dasovich@enron.com 2001-08-28
## 7502 jeff.dasovich@enron.com 2001-08-28
## 7503 jeff.dasovich@enron.com 2001-08-28
## 7504 jeff.dasovich@enron.com 2001-08-28
## 7505 jeff.dasovich@enron.com 2001-08-28
## 7506 jeff.dasovich@enron.com 2001-08-28
## 7507 stacey.bolton@enron.com 2001-08-28
## 7508 stacey.bolton@enron.com 2001-08-28
## 7509 stacey.bolton@enron.com 2001-08-28
## 7510 stacey.bolton@enron.com 2001-08-28
## 7511 stacey.bolton@enron.com 2001-08-28
## 7512 stacey.bolton@enron.com 2001-08-28
## 7513 stacey.bolton@enron.com 2001-08-28
## 7514 stacey.bolton@enron.com 2001-08-28
## 7515 stacey.bolton@enron.com 2001-08-28
## 7516 stacey.bolton@enron.com 2001-08-28
## 7517 heather.mathis@enron.com 2001-08-29
## 7518 heather.mathis@enron.com 2001-08-29
## 7519 stacey.bolton@enron.com 2001-08-29
## 7520 stacey.bolton@enron.com 2001-08-29
## 7521 elliot.mainzer@enron.com 2001-08-29
## 7522 elliot.mainzer@enron.com 2001-08-29
## 7523 stacey.bolton@enron.com 2001-08-29
## 7524 pamela.carter@enron.com 2001-08-30
## 7525 elliot.mainzer@enron.com 2001-08-30
## 7526 bill.heidecker@enron.com 2001-08-30
## 7527 stacey.bolton@enron.com 2001-08-30
## 7528 stacey.bolton@enron.com 2001-08-30
## 7529 stacey.bolton@enron.com 2001-08-30
## 7530 stacey.bolton@enron.com 2001-08-30
## 7531 stacey.bolton@enron.com 2001-08-30
## 7532 stacey.bolton@enron.com 2001-08-30
## 7533 stacey.bolton@enron.com 2001-08-30
## 7534 stacey.bolton@enron.com 2001-08-30
## 7535 stacey.bolton@enron.com 2001-08-30
## 7536 stacey.bolton@enron.com 2001-08-30
## 7537 stacey.bolton@enron.com 2001-08-30
## 7538 elliot.mainzer@enron.com 2001-09-04
## 7539 elliot.mainzer@enron.com 2001-09-05
## 7540 stacey.bolton@enron.com 2001-09-05
## 7541 jim.reyes@enron.com 2001-09-06
## 7542 heather.mathis@enron.com 2001-09-07
## 7543 kay.quigley@enron.com 2001-09-07
## 7544 mary.hannusch@enron.com 2001-09-10
## 7545 heather.mathis@enron.com 2001-09-11
## 7546 stacey.bolton@enron.com 2001-09-12
## 7547 stacey.bolton@enron.com 2001-09-13
## 7548 yi.yan@enron.com 2001-09-14
## 7549 stacey.bolton@enron.com 2001-09-17
## 7550 stacey.bolton@enron.com 2001-09-17
## 7551 stacey.bolton@enron.com 2001-09-17
## 7552 stacey.bolton@enron.com 2001-09-17
## 7553 stacey.bolton@enron.com 2001-09-17
## 7554 stacey.bolton@enron.com 2001-09-17
## 7555 kay.quigley@enron.com 2001-09-17
## 7556 stacey.bolton@enron.com 2001-09-17
## 7557 jesse.bryson@enron.com 2001-09-17
## 7558 jesse.bryson@enron.com 2001-09-17
## 7559 mary.hannusch@enron.com 2001-09-18
## 7560 mary.hannusch@enron.com 2001-09-18
## 7561 stacey.bolton@enron.com 2001-09-18
## 7562 stacey.bolton@enron.com 2001-09-18
## 7563 stacey.bolton@enron.com 2001-09-18
## 7564 stacey.bolton@enron.com 2001-09-18
## 7565 elliot.mainzer@enron.com 2001-09-18
## 7566 stacey.bolton@enron.com 2001-09-18
## 7567 stacey.bolton@enron.com 2001-09-18
## 7568 stacey.bolton@enron.com 2001-09-18
## 7569 stacey.bolton@enron.com 2001-09-18
## 7570 stacey.bolton@enron.com 2001-09-18
## 7571 stacey.bolton@enron.com 2001-09-18
## 7572 stacey.bolton@enron.com 2001-09-18
## 7573 stacey.bolton@enron.com 2001-09-18
## 7574 stacey.bolton@enron.com 2001-09-18
## 7575 thane.twiggs@enron.com 2001-09-19
## 7576 thane.twiggs@enron.com 2001-09-19
## 7577 thane.twiggs@enron.com 2001-09-19
## 7578 stacey.bolton@enron.com 2001-09-19
## 7579 stacey.bolton@enron.com 2001-09-19
## 7580 stacey.bolton@enron.com 2001-09-19
## 7581 jesse.bryson@enron.com 2001-09-19
## 7582 stacey.bolton@enron.com 2001-09-19
## 7583 h..foster@enron.com 2001-09-19
## 7584 stacey.bolton@enron.com 2001-09-19
## 7585 stacey.bolton@enron.com 2001-09-19
## 7586 stacey.bolton@enron.com 2001-09-19
## 7587 kay.quigley@enron.com 2001-09-19
## 7588 stacey.bolton@enron.com 2001-09-19
## 7589 stacey.bolton@enron.com 2001-09-19
## 7590 stacey.bolton@enron.com 2001-09-19
## 7591 jennifer.thome@enron.com 2001-09-20
## 7592 stacey.bolton@enron.com 2001-09-20
## 7593 stacey.bolton@enron.com 2001-09-20
## 7594 stacey.bolton@enron.com 2001-09-20
## 7595 heather.mathis@enron.com 2001-09-21
## 7596 stacey.bolton@enron.com 2001-09-21
## 7597 stacey.bolton@enron.com 2001-09-21
## 7598 stacey.bolton@enron.com 2001-09-21
## 7599 ress.young@enron.com 2001-09-21
## 7600 gavin.dillingham@enron.com 2001-09-24
## 7601 gavin.dillingham@enron.com 2001-09-24
## 7602 gavin.dillingham@enron.com 2001-09-24
## 7603 gavin.dillingham@enron.com 2001-09-24
## 7604 stacey.bolton@enron.com 2001-09-24
## 7605 stacey.bolton@enron.com 2001-09-24
## 7606 angela.wilson@enron.com 2001-09-25
## 7607 elliot.mainzer@enron.com 2001-09-25
## 7608 stacey.bolton@enron.com 2001-09-25
## 7609 stacey.bolton@enron.com 2001-09-25
## 7610 jesse.bryson@enron.com 2001-09-25
## 7611 stacey.bolton@enron.com 2001-09-25
## 7612 stacey.bolton@enron.com 2001-09-25
## 7613 bill.heidecker@enron.com 2001-09-26
## 7614 stacey.bolton@enron.com 2001-09-26
## 7615 elliot.mainzer@enron.com 2001-09-26
## 7616 elliot.mainzer@enron.com 2001-09-26
## 7617 heather.mathis@enron.com 2001-09-27
## 7618 heather.mathis@enron.com 2001-09-27
## 7619 heather.mathis@enron.com 2001-09-27
## 7620 jesse.bryson@enron.com 2001-09-27
## 7621 h..foster@enron.com 2001-09-27
## 7622 jesse.bryson@enron.com 2001-09-27
## 7623 aaron.klemm@enron.com 2001-09-27
## 7624 aaron.klemm@enron.com 2001-09-27
## 7625 jesse.bryson@enron.com 2001-09-27
## 7626 stacey.bolton@enron.com 2001-09-28
## 7627 jesse.bryson@enron.com 2001-09-28
## 7628 mary.hannusch@enron.com 2001-09-28
## 7629 elliot.mainzer@enron.com 2001-09-30
## 7630 aaron.klemm@enron.com 2001-10-01
## 7631 aaron.klemm@enron.com 2001-10-01
## 7632 elliot.mainzer@enron.com 2001-10-01
## 7633 elliot.mainzer@enron.com 2001-10-01
## 7634 stacey.bolton@enron.com 2001-10-02
## 7635 jennifer.thome@enron.com 2001-10-02
## 7636 heather.mathis@enron.com 2001-10-02
## 7637 stacey.bolton@enron.com 2001-10-02
## 7638 stacey.bolton@enron.com 2001-10-02
## 7639 stacey.bolton@enron.com 2001-10-02
## 7640 stacey.bolton@enron.com 2001-10-02
## 7641 aaron.klemm@enron.com 2001-10-03
## 7642 aaron.klemm@enron.com 2001-10-03
## 7643 aaron.klemm@enron.com 2001-10-03
## 7644 elliot.mainzer@enron.com 2001-10-03
## 7645 aaron.klemm@enron.com 2001-10-03
## 7646 aaron.klemm@enron.com 2001-10-03
## 7647 elliot.mainzer@enron.com 2001-10-03
## 7648 stacey.bolton@enron.com 2001-10-04
## 7649 h..foster@enron.com 2001-10-05
## 7650 stacey.bolton@enron.com 2001-10-05
## 7651 jennifer.thome@enron.com 2001-10-05
## 7652 elliot.mainzer@enron.com 2001-10-07
## 7653 jennifer.thome@enron.com 2001-10-08
## 7654 elliot.mainzer@enron.com 2001-10-08
## 7655 jennifer.thome@enron.com 2001-10-08
## 7656 elliot.mainzer@enron.com 2001-10-08
## 7657 stacey.bolton@enron.com 2001-10-09
## 7658 elliot.mainzer@enron.com 2001-10-09
## 7659 elliot.mainzer@enron.com 2001-10-09
## 7660 elliot.mainzer@enron.com 2001-10-09
## 7661 elliot.mainzer@enron.com 2001-10-09
## 7662 jeff.shields@enron.com 2001-10-09
## 7663 elliot.mainzer@enron.com 2001-10-09
## 7664 elliot.mainzer@enron.com 2001-10-09
## 7665 elliot.mainzer@enron.com 2001-10-09
## 7666 elliot.mainzer@enron.com 2001-10-09
## 7667 elliot.mainzer@enron.com 2001-10-09
## 7668 elliot.mainzer@enron.com 2001-10-09
## 7669 elliot.mainzer@enron.com 2001-10-09
## 7670 stacey.bolton@enron.com 2001-10-09
## 7671 jennifer.thome@enron.com 2001-10-09
## 7672 elliot.mainzer@enron.com 2001-10-10
## 7673 pamela.carter@enron.com 2001-10-11
## 7674 pamela.carter@enron.com 2001-10-11
## 7675 mary.hannusch@enron.com 2001-10-15
## 7676 mary.hannusch@enron.com 2001-10-15
## 7677 mary.hannusch@enron.com 2001-10-15
## 7678 jennifer.thome@enron.com 2001-10-15
## 7679 jennifer.thome@enron.com 2001-10-16
## 7680 jennifer.thome@enron.com 2001-10-17
## 7681 heather.mathis@enron.com 2001-10-22
## 7682 heather.mathis@enron.com 2001-10-23
## 7683 nicole.schwartz@enron.com 2001-10-23
## 7684 nicole.schwartz@enron.com 2001-10-23
## 7685 jennifer.thome@enron.com 2001-10-23
## 7686 jennifer.thome@enron.com 2001-10-23
## 7687 d..smith@enron.com 2002-01-29
## 7688 vinio.floris@enron.com 2001-10-05
## 7689 vinio.floris@enron.com 2001-10-05
## 7690 vinio.floris@enron.com 2001-10-05
## 7691 frank.rishe@enron.com 2001-10-12
## 7692 frank.rishe@enron.com 2001-10-12
## 7693 bob.hansen@enron.com 2001-10-03
## 7694 narsimha.misra@enron.com 2001-10-04
## 7695 bob.hansen@enron.com 2001-10-04
## 7696 bob.hansen@enron.com 2001-10-04
## 7697 narsimha.misra@enron.com 2001-10-04
## 7698 mike.smith@enron.com 2001-10-04
## 7699 mike.smith@enron.com 2001-10-04
## 7700 bob.hansen@enron.com 2001-10-04
## 7701 gillian.johnson@enron.com 2001-10-05
## 7702 bob.hansen@enron.com 2001-10-05
## 7703 gillian.johnson@enron.com 2001-10-05
## 7704 mike.smith@enron.com 2001-10-08
## 7705 mike.smith@enron.com 2001-10-08
## 7706 mike.smith@enron.com 2001-10-08
## 7707 mike.smith@enron.com 2001-10-08
## 7708 gillian.johnson@enron.com 2001-10-08
## 7709 gillian.johnson@enron.com 2001-10-08
## 7710 michele.raque@enron.com 2001-10-08
## 7711 michele.raque@enron.com 2001-10-08
## 7712 bob.hansen@enron.com 2001-10-10
## 7713 bob.hansen@enron.com 2001-10-10
## 7714 narsimha.misra@enron.com 2001-10-11
## 7715 michele.raque@enron.com 2001-10-15
## 7716 michele.raque@enron.com 2001-10-15
## 7717 bob.hansen@enron.com 2001-10-15
## 7718 bob.hansen@enron.com 2001-10-15
## 7719 michael.frazier@enron.com 2001-10-16
## 7720 michael.frazier@enron.com 2001-10-16
## 7721 gillian.johnson@enron.com 2001-10-17
## 7722 gillian.johnson@enron.com 2001-10-17
## 7723 michele.raque@enron.com 2001-10-17
## 7724 narsimha.misra@enron.com 2001-10-17
## 7725 bob.hansen@enron.com 2001-10-17
## 7726 michele.raque@enron.com 2001-10-18
## 7727 michele.raque@enron.com 2001-10-18
## 7728 michael.frazier@enron.com 2002-01-24
## 7729 michael.frazier@enron.com 2002-01-24
## 7730 michael.frazier@enron.com 2002-01-25
## 7731 michael.frazier@enron.com 2002-01-25
## 7732 lamar.frazier@enron.com 2002-01-17
## 7733 lamar.frazier@enron.com 2002-01-17
## 7734 lamar.frazier@enron.com 2002-01-17
## 7735 lamar.frazier@enron.com 2002-01-17
## 7736 l..nicolay@enron.com 2001-12-13
## 7737 l..nicolay@enron.com 2001-12-13
## 7738 l..nicolay@enron.com 2001-12-13
## 7739 james.d.steffes@enron.com 2001-12-11
## 7740 james.d.steffes@enron.com 2001-12-11
## 7741 james.d.steffes@enron.com 2001-12-11
## 7742 james.d.steffes@enron.com 2001-12-11
## 7743 james.d.steffes@enron.com 2001-12-11
## 7744 james.d.steffes@enron.com 2001-12-11
## 7745 james.d.steffes@enron.com 2001-12-11
## 7746 james.d.steffes@enron.com 2001-12-11
## 7747 mary.grisaffi@enron.com 2001-11-12
## 7748 mary.grisaffi@enron.com 2001-11-12
## 7749 mary.grisaffi@enron.com 2001-11-14
## 7750 sam.romero@enron.com 2001-10-26
## 7751 sam.romero@enron.com 2001-10-26
## 7752 sam.romero@enron.com 2001-10-26
## 7753 teresa.seibel@enron.com 2001-10-16
## 7754 susan.lindberg@enron.com 2001-10-17
## 7755 susan.lindberg@enron.com 2001-10-17
## 7756 susan.lindberg@enron.com 2001-10-17
## 7757 susan.lindberg@enron.com 2001-10-17
## 7758 susan.lindberg@enron.com 2001-10-17
## 7759 susan.lindberg@enron.com 2001-10-17
## 7760 susan.lindberg@enron.com 2001-10-18
## 7761 susan.lindberg@enron.com 2001-10-18
## 7762 susan.lindberg@enron.com 2001-10-18
## 7763 susan.lindberg@enron.com 2001-10-18
## 7764 susan.lindberg@enron.com 2001-10-18
## 7765 susan.lindberg@enron.com 2001-10-18
## 7766 susan.lindberg@enron.com 2001-10-18
## 7767 susan.lindberg@enron.com 2001-10-18
## 7768 bill.hatch@enron.com 2001-07-27
## 7769 bill.hatch@enron.com 2001-07-27
## 7770 bill.hatch@enron.com 2001-07-30
## 7771 james.copeland@enron.com 2001-08-22
## 7772 james.copeland@enron.com 2001-08-22
## 7773 james.copeland@enron.com 2001-08-22
## 7774 james.copeland@enron.com 2001-08-22
## 7775 bill.hatch@enron.com 2001-08-27
## 7776 bill.hatch@enron.com 2001-09-13
## 7777 bill.hatch@enron.com 2001-09-13
## 7778 bill.hatch@enron.com 2001-09-13
## 7779 bill.hatch@enron.com 2001-09-13
## 7780 bill.hatch@enron.com 2001-09-26
## 7781 bill.hatch@enron.com 2001-09-26
## 7782 bill.hatch@enron.com 2001-09-26
## 7783 elizabeth.sager@enron.com 2001-09-27
## 7784 elizabeth.sager@enron.com 2001-09-27
## 7785 elizabeth.sager@enron.com 2001-09-27
## 7786 christopher.wheeler@enron.com 2001-10-02
## 7787 rogers.herndon@enron.com 2001-10-03
## 7788 rogers.herndon@enron.com 2001-10-03
## 7789 richard.ring@enron.com 2001-10-03
## 7790 scott.franck@enron.com 2001-10-03
## 7791 scott.franck@enron.com 2001-10-03
## 7792 scott.franck@enron.com 2001-10-03
## 7793 40ees@enron.com 2001-10-04
## 7794 40ees@enron.com 2001-10-04
## 7795 scott.franck@enron.com 2001-10-04
## 7796 scott.franck@enron.com 2001-10-09
## 7797 bill.hatch@enron.com 2001-10-10
## 7798 scott.franck@enron.com 2001-10-10
## 7799 bill.hatch@enron.com 2001-10-11
## 7800 jennifer.medcalf@enron.com 2001-10-15
## 7801 ozzie.pagan@enron.com 2001-10-15
## 7802 ozzie.pagan@enron.com 2001-10-15
## 7803 bill.hatch@enron.com 2001-10-18
## 7804 drew.ries@enron.com 2001-01-31
## 7805 drew.ries@enron.com 2001-01-31
## 7806 drew.ries@enron.com 2001-01-31
## 7807 mary.cook@enron.com 2001-02-07
## 7808 christian.yoder@enron.com 1999-06-01
## 7809 christian.yoder@enron.com 1999-06-01
## 7810 christian.yoder@enron.com 1999-06-01
## 7811 christian.yoder@enron.com 2001-04-16
## 7812 christian.yoder@enron.com 2000-02-17
## 7813 christian.yoder@enron.com 2000-02-17
## 7814 christian.yoder@enron.com 2000-02-17
## 7815 christian.yoder@enron.com 2000-01-10
## 7816 christian.yoder@enron.com 1999-05-26
## 7817 christian.yoder@enron.com 1999-05-25
## 7818 christian.yoder@enron.com 1999-05-25
## 7819 christian.yoder@enron.com 1999-05-22
## 7820 christian.yoder@enron.com 1999-05-22
## 7821 christian.yoder@enron.com 1999-05-22
## 7822 christian.yoder@enron.com 1999-03-02
## 7823 christian.yoder@enron.com 1999-03-02
## 7824 christian.yoder@enron.com 1999-03-02
## 7825 mark.elliott@enron.com 1999-05-13
## 7826 mark.elliott@enron.com 1999-05-13
## 7827 mark.elliott@enron.com 1999-05-11
## 7828 mark.elliott@enron.com 1999-05-11
## 7829 mark.elliott@enron.com 1999-05-10
## 7830 mark.elliott@enron.com 1999-05-05
## 7831 maria.nartey@enron.com 1999-04-30
## 7832 maria.nartey@enron.com 1999-04-30
## 7833 mark.elliott@enron.com 1999-04-30
## 7834 mark.elliott@enron.com 1999-04-30
## 7835 maria.nartey@enron.com 1999-04-30
## 7836 maria.nartey@enron.com 1999-04-30
## 7837 mark.elliott@enron.com 1999-04-30
## 7838 mark.elliott@enron.com 1999-04-30
## 7839 mark.elliott@enron.com 1999-04-30
## 7840 mark.elliott@enron.com 1999-04-28
## 7841 mark.elliott@enron.com 1999-02-23
## 7842 mark.elliott@enron.com 1999-02-23
## 7843 mark.elliott@enron.com 1999-02-23
## 7844 mark.elliott@enron.com 1999-02-09
## 7845 mark.elliott@enron.com 1999-02-09
## 7846 mark.elliott@enron.com 1999-02-09
## 7847 mark.elliott@enron.com 1999-02-09
## 7848 mark.elliott@enron.com 1999-02-05
## 7849 mark.elliott@enron.com 1999-02-05
## 7850 mark.elliott@enron.com 1999-02-03
## 7851 paul.waine@enron.com 1999-01-22
## 7852 scott.sefton@enron.com 1999-01-21
## 7853 scott.sefton@enron.com 1999-01-21
## 7854 mark.e.taylor@enron.com 2000-06-08
## 7855 mark.e.taylor@enron.com 2000-05-30
## 7856 mark.e.taylor@enron.com 1999-07-30
## 7857 mark.e.taylor@enron.com 1999-07-02
## 7858 mark.e.taylor@enron.com 2001-06-07
## 7859 mark.e.taylor@enron.com 2001-06-07
## 7860 mark.e.taylor@enron.com 2001-06-07
## 7861 mark.e.taylor@enron.com 2001-06-07
## 7862 mark.e.taylor@enron.com 2001-06-05
## 7863 mark.e.taylor@enron.com 2001-06-04
## 7864 mark.e.taylor@enron.com 2001-06-01
## 7865 mark.e.taylor@enron.com 2001-06-01
## 7866 mark.e.taylor@enron.com 2001-06-01
## 7867 mark.e.taylor@enron.com 2001-06-01
## 7868 mark.e.taylor@enron.com 2001-06-01
## 7869 mark.e.taylor@enron.com 2001-06-01
## 7870 mark.e.taylor@enron.com 2001-06-01
## 7871 mark.e.taylor@enron.com 2001-06-01
## 7872 mark.e.taylor@enron.com 2001-06-01
## 7873 mark.e.taylor@enron.com 2001-06-01
## 7874 mark.e.taylor@enron.com 2001-06-01
## 7875 mark.e.taylor@enron.com 2001-06-01
## 7876 mark.e.taylor@enron.com 2001-06-01
## 7877 mark.e.taylor@enron.com 2001-06-01
## 7878 mark.e.taylor@enron.com 2001-06-01
## 7879 mark.e.taylor@enron.com 2001-06-01
## 7880 mark.e.taylor@enron.com 2001-05-31
## 7881 mark.e.taylor@enron.com 2001-05-31
## 7882 mark.e.taylor@enron.com 2001-05-31
## 7883 mark.e.taylor@enron.com 2001-05-31
## 7884 mark.e.taylor@enron.com 2001-05-31
## 7885 mark.e.taylor@enron.com 2001-05-31
## 7886 mark.e.taylor@enron.com 2001-05-31
## 7887 mark.e.taylor@enron.com 2001-05-31
## 7888 mark.e.taylor@enron.com 2001-05-31
## 7889 mark.e.taylor@enron.com 2001-05-31
## 7890 mark.e.taylor@enron.com 2001-05-29
## 7891 mark.e.taylor@enron.com 2001-05-25
## 7892 mark.e.taylor@enron.com 2001-05-25
## 7893 mark.e.taylor@enron.com 2001-05-25
## 7894 mark.e.taylor@enron.com 2001-05-25
## 7895 mark.e.taylor@enron.com 2001-05-25
## 7896 mark.e.taylor@enron.com 2001-05-25
## 7897 mark.e.taylor@enron.com 2001-05-25
## 7898 mark.e.taylor@enron.com 2001-05-25
## 7899 mark.e.taylor@enron.com 2001-05-25
## 7900 mark.e.taylor@enron.com 2001-05-25
## 7901 mark.e.taylor@enron.com 2001-05-25
## 7902 mark.e.taylor@enron.com 2001-05-24
## 7903 mark.e.taylor@enron.com 2001-05-24
## 7904 mark.e.taylor@enron.com 2001-05-24
## 7905 mark.e.taylor@enron.com 2001-05-24
## 7906 mark.e.taylor@enron.com 2001-05-24
## 7907 mark.e.taylor@enron.com 2001-05-24
## 7908 mark.e.taylor@enron.com 2001-05-24
## 7909 mark.e.taylor@enron.com 2001-05-24
## 7910 mark.e.taylor@enron.com 2001-05-24
## 7911 mark.e.taylor@enron.com 2001-05-24
## 7912 mark.e.taylor@enron.com 2001-05-22
## 7913 mark.e.taylor@enron.com 2001-05-22
## 7914 mark.e.taylor@enron.com 2001-05-22
## 7915 mark.e.taylor@enron.com 2001-05-22
## 7916 mark.e.taylor@enron.com 2001-05-22
## 7917 mark.e.taylor@enron.com 2001-05-22
## 7918 mark.e.taylor@enron.com 2001-05-22
## 7919 mark.e.taylor@enron.com 2001-05-10
## 7920 mark.e.taylor@enron.com 2001-05-10
## 7921 mark.e.taylor@enron.com 2001-05-10
## 7922 mark.e.taylor@enron.com 2001-05-10
## 7923 mark.e.taylor@enron.com 2001-05-10
## 7924 mark.e.taylor@enron.com 2001-05-10
## 7925 mark.e.taylor@enron.com 2001-05-10
## 7926 mark.e.taylor@enron.com 2001-05-10
## 7927 mark.e.taylor@enron.com 2001-05-10
## 7928 mark.e.taylor@enron.com 2001-05-10
## 7929 mark.e.taylor@enron.com 2001-05-10
## 7930 mark.e.taylor@enron.com 2001-05-10
## 7931 mark.e.taylor@enron.com 2001-05-10
## 7932 mark.e.taylor@enron.com 2001-05-10
## 7933 mark.e.taylor@enron.com 2001-05-10
## 7934 mark.e.taylor@enron.com 2001-05-10
## 7935 mark.e.taylor@enron.com 2001-05-10
## 7936 mark.e.taylor@enron.com 2001-05-10
## 7937 mark.e.taylor@enron.com 2001-05-10
## 7938 mark.e.taylor@enron.com 2001-05-10
## 7939 mark.e.taylor@enron.com 2001-05-10
## 7940 mark.e.taylor@enron.com 2001-05-10
## 7941 mark.e.taylor@enron.com 2001-05-10
## 7942 mark.e.taylor@enron.com 2001-05-10
## 7943 mark.e.taylor@enron.com 2001-05-10
## 7944 mark.e.taylor@enron.com 2001-05-10
## 7945 mark.e.taylor@enron.com 2001-05-10
## 7946 mark.e.taylor@enron.com 2001-05-10
## 7947 mark.e.taylor@enron.com 2001-05-10
## 7948 mark.e.taylor@enron.com 2001-05-10
## 7949 mark.e.taylor@enron.com 2001-05-10
## 7950 mark.e.taylor@enron.com 2001-05-10
## 7951 mark.e.taylor@enron.com 2001-05-10
## 7952 mark.e.taylor@enron.com 2001-05-10
## 7953 mark.e.taylor@enron.com 2001-05-10
## 7954 mark.e.taylor@enron.com 2001-05-09
## 7955 mark.e.taylor@enron.com 2001-05-09
## 7956 mark.e.taylor@enron.com 2001-05-09
## 7957 mark.e.taylor@enron.com 2001-05-09
## 7958 mark.e.taylor@enron.com 2001-05-09
## 7959 mark.e.taylor@enron.com 2001-05-09
## 7960 mark.e.taylor@enron.com 2001-05-09
## 7961 mark.e.taylor@enron.com 2001-05-09
## 7962 mark.e.taylor@enron.com 2001-05-09
## 7963 mark.e.taylor@enron.com 2001-05-09
## 7964 mark.e.taylor@enron.com 2001-05-09
## 7965 mark.e.taylor@enron.com 2001-05-09
## 7966 mark.e.taylor@enron.com 2001-05-09
## 7967 mark.e.taylor@enron.com 2001-05-09
## 7968 mark.e.taylor@enron.com 2001-05-09
## 7969 mark.e.taylor@enron.com 2001-05-09
## 7970 mark.e.taylor@enron.com 2001-05-09
## 7971 mark.e.taylor@enron.com 2001-05-09
## 7972 mark.e.taylor@enron.com 2001-05-08
## 7973 mark.e.taylor@enron.com 2001-05-08
## 7974 mark.e.taylor@enron.com 2001-05-03
## 7975 mark.e.taylor@enron.com 2001-05-03
## 7976 mark.e.taylor@enron.com 2001-05-03
## 7977 mark.e.taylor@enron.com 2001-05-03
## 7978 mark.e.taylor@enron.com 2001-05-03
## 7979 mark.e.taylor@enron.com 2001-05-03
## 7980 mark.e.taylor@enron.com 2001-05-03
## 7981 mark.e.taylor@enron.com 2001-05-03
## 7982 mark.e.taylor@enron.com 2001-05-03
## 7983 mark.e.taylor@enron.com 2001-05-03
## 7984 mark.e.taylor@enron.com 2001-05-01
## 7985 mark.e.taylor@enron.com 2001-05-01
## 7986 mark.e.taylor@enron.com 2001-05-01
## 7987 mark.e.taylor@enron.com 2001-05-01
## 7988 mark.e.taylor@enron.com 2001-05-01
## 7989 mark.e.taylor@enron.com 2001-05-01
## 7990 mark.e.taylor@enron.com 2001-05-01
## 7991 mark.e.taylor@enron.com 2001-05-01
## 7992 mark.e.taylor@enron.com 2001-05-01
## 7993 mark.e.taylor@enron.com 2001-05-01
## 7994 mark.e.taylor@enron.com 2001-05-01
## 7995 mark.e.taylor@enron.com 2001-05-01
## 7996 mark.e.taylor@enron.com 2001-05-01
## 7997 mark.e.taylor@enron.com 2001-05-01
## 7998 mark.e.taylor@enron.com 2001-05-01
## 7999 mark.e.taylor@enron.com 2001-04-30
## 8000 mark.e.taylor@enron.com 2001-04-27
## 8001 mark.e.taylor@enron.com 2001-04-27
## 8002 mark.e.taylor@enron.com 2001-04-27
## 8003 mark.e.taylor@enron.com 2001-04-27
## 8004 mark.e.taylor@enron.com 2001-04-27
## 8005 mark.e.taylor@enron.com 2001-04-27
## 8006 mark.e.taylor@enron.com 2001-04-27
## 8007 mark.e.taylor@enron.com 2001-04-27
## 8008 mark.e.taylor@enron.com 2001-04-25
## 8009 mark.e.taylor@enron.com 2001-04-25
## 8010 mark.e.taylor@enron.com 2001-04-24
## 8011 mark.e.taylor@enron.com 2001-04-19
## 8012 mark.e.taylor@enron.com 2001-04-19
## 8013 mark.e.taylor@enron.com 2001-04-19
## 8014 mark.e.taylor@enron.com 2001-04-19
## 8015 mark.e.taylor@enron.com 2001-04-19
## 8016 mark.e.taylor@enron.com 2001-04-19
## 8017 mark.e.taylor@enron.com 2001-04-19
## 8018 mark.e.taylor@enron.com 2001-04-19
## 8019 mark.e.taylor@enron.com 2001-04-19
## 8020 mark.e.taylor@enron.com 2001-04-19
## 8021 mark.e.taylor@enron.com 2001-04-19
## 8022 mark.e.taylor@enron.com 2001-04-19
## 8023 mark.e.taylor@enron.com 2001-04-19
## 8024 mark.e.taylor@enron.com 2001-04-19
## 8025 mark.e.taylor@enron.com 2001-04-19
## 8026 mark.e.taylor@enron.com 2001-04-19
## 8027 mark.e.taylor@enron.com 2001-04-19
## 8028 mark.e.taylor@enron.com 2001-04-19
## 8029 mark.e.taylor@enron.com 2001-04-19
## 8030 mark.e.taylor@enron.com 2001-04-16
## 8031 mark.e.taylor@enron.com 2001-04-16
## 8032 mark.e.taylor@enron.com 2001-04-16
## 8033 mark.e.taylor@enron.com 2001-04-16
## 8034 mark.e.taylor@enron.com 2001-04-16
## 8035 mark.e.taylor@enron.com 2001-04-16
## 8036 mark.e.taylor@enron.com 2001-04-16
## 8037 mark.e.taylor@enron.com 2001-04-16
## 8038 mark.e.taylor@enron.com 2001-04-16
## 8039 mark.e.taylor@enron.com 2001-04-16
## 8040 mark.e.taylor@enron.com 2001-04-16
## 8041 mark.e.taylor@enron.com 2001-04-16
## 8042 mark.e.taylor@enron.com 2001-04-16
## 8043 mark.e.taylor@enron.com 2001-04-16
## 8044 mark.e.taylor@enron.com 2001-04-16
## 8045 mark.e.taylor@enron.com 2001-04-16
## 8046 mark.e.taylor@enron.com 2001-04-16
## 8047 mark.e.taylor@enron.com 2001-04-16
## 8048 mark.e.taylor@enron.com 2001-04-16
## 8049 mark.e.taylor@enron.com 2001-04-16
## 8050 mark.e.taylor@enron.com 2001-04-16
## 8051 mark.e.taylor@enron.com 2001-04-16
## 8052 mark.e.taylor@enron.com 2001-04-16
## 8053 mark.e.taylor@enron.com 2001-04-16
## 8054 mark.e.taylor@enron.com 2001-04-16
## 8055 mark.e.taylor@enron.com 2001-04-16
## 8056 mark.e.taylor@enron.com 2001-04-16
## 8057 mark.e.taylor@enron.com 2001-04-16
## 8058 mark.e.taylor@enron.com 2001-04-13
## 8059 mark.e.taylor@enron.com 2001-04-12
## 8060 mark.e.taylor@enron.com 2001-04-12
## 8061 mark.e.taylor@enron.com 2001-04-11
## 8062 mark.e.taylor@enron.com 2001-04-11
## 8063 mark.e.taylor@enron.com 2001-04-11
## 8064 mark.e.taylor@enron.com 2001-04-11
## 8065 mark.e.taylor@enron.com 2001-04-11
## 8066 mark.e.taylor@enron.com 2001-04-11
## 8067 mark.e.taylor@enron.com 2001-04-11
## 8068 mark.e.taylor@enron.com 2001-04-11
## 8069 mark.e.taylor@enron.com 2001-04-11
## 8070 mark.e.taylor@enron.com 2001-04-10
## 8071 mark.e.taylor@enron.com 2001-04-10
## 8072 mark.e.taylor@enron.com 2001-04-10
## 8073 mark.e.taylor@enron.com 2001-04-10
## 8074 mark.e.taylor@enron.com 2001-04-10
## 8075 mark.e.taylor@enron.com 2001-04-03
## 8076 mark.e.taylor@enron.com 2001-04-03
## 8077 mark.e.taylor@enron.com 2001-04-03
## 8078 mark.e.taylor@enron.com 2001-04-03
## 8079 mark.e.taylor@enron.com 2001-04-03
## 8080 mark.e.taylor@enron.com 2001-04-03
## 8081 mark.e.taylor@enron.com 2001-04-03
## 8082 mark.e.taylor@enron.com 2001-04-03
## 8083 mark.e.taylor@enron.com 2001-04-03
## 8084 mark.e.taylor@enron.com 2001-04-03
## 8085 mark.e.taylor@enron.com 2001-04-03
## 8086 mark.e.taylor@enron.com 2001-04-03
## 8087 mark.e.taylor@enron.com 2001-04-03
## 8088 mark.e.taylor@enron.com 2001-04-03
## 8089 mark.e.taylor@enron.com 2001-04-03
## 8090 mark.e.taylor@enron.com 2001-04-03
## 8091 mark.e.taylor@enron.com 2001-04-03
## 8092 mark.e.taylor@enron.com 2001-04-03
## 8093 mark.e.taylor@enron.com 2001-04-03
## 8094 mark.e.taylor@enron.com 2001-04-03
## 8095 mark.e.taylor@enron.com 2001-04-03
## 8096 mark.e.taylor@enron.com 2001-04-03
## 8097 mark.e.taylor@enron.com 2001-04-03
## 8098 mark.e.taylor@enron.com 2001-04-02
## 8099 mark.e.taylor@enron.com 2001-04-02
## 8100 mark.e.taylor@enron.com 2001-03-30
## 8101 mark.e.taylor@enron.com 2001-03-30
## 8102 mark.e.taylor@enron.com 2001-03-28
## 8103 mark.e.taylor@enron.com 2001-03-16
## 8104 mark.e.taylor@enron.com 2001-03-16
## 8105 mark.e.taylor@enron.com 2001-03-16
## 8106 mark.e.taylor@enron.com 2001-03-16
## 8107 mark.e.taylor@enron.com 2001-03-16
## 8108 mark.e.taylor@enron.com 2001-03-16
## 8109 mark.e.taylor@enron.com 2001-03-16
## 8110 mark.e.taylor@enron.com 2001-03-16
## 8111 mark.e.taylor@enron.com 2001-03-16
## 8112 mark.e.taylor@enron.com 2001-03-16
## 8113 mark.e.taylor@enron.com 2001-03-16
## 8114 mark.e.taylor@enron.com 2001-03-16
## 8115 mark.e.taylor@enron.com 2001-03-16
## 8116 mark.e.taylor@enron.com 2001-03-16
## 8117 mark.e.taylor@enron.com 2001-03-16
## 8118 mark.e.taylor@enron.com 2001-03-16
## 8119 mark.e.taylor@enron.com 2001-03-16
## 8120 mark.e.taylor@enron.com 2001-03-15
## 8121 mark.e.taylor@enron.com 2001-03-15
## 8122 mark.e.taylor@enron.com 2001-03-15
## 8123 mark.e.taylor@enron.com 2001-03-15
## 8124 mark.e.taylor@enron.com 2001-03-15
## 8125 mark.e.taylor@enron.com 2001-03-15
## 8126 mark.e.taylor@enron.com 2001-03-15
## 8127 mark.e.taylor@enron.com 2001-03-15
## 8128 mark.e.taylor@enron.com 2001-03-15
## 8129 mark.e.taylor@enron.com 2001-03-15
## 8130 mark.e.taylor@enron.com 2001-03-15
## 8131 mark.e.taylor@enron.com 2001-03-15
## 8132 mark.e.taylor@enron.com 2001-03-15
## 8133 mark.e.taylor@enron.com 2001-03-15
## 8134 mark.e.taylor@enron.com 2001-03-15
## 8135 mark.e.taylor@enron.com 2001-03-15
## 8136 mark.e.taylor@enron.com 2001-03-15
## 8137 mark.e.taylor@enron.com 2001-03-15
## 8138 mark.e.taylor@enron.com 2001-03-15
## 8139 mark.e.taylor@enron.com 2001-03-14
## 8140 mark.e.taylor@enron.com 2001-03-14
## 8141 mark.e.taylor@enron.com 2001-03-14
## 8142 mark.e.taylor@enron.com 2001-03-14
## 8143 mark.e.taylor@enron.com 2001-03-14
## 8144 mark.e.taylor@enron.com 2001-03-14
## 8145 mark.e.taylor@enron.com 2001-03-14
## 8146 mark.e.taylor@enron.com 2001-03-14
## 8147 mark.e.taylor@enron.com 2001-03-14
## 8148 mark.e.taylor@enron.com 2001-03-14
## 8149 mark.e.taylor@enron.com 2001-03-13
## 8150 mark.e.taylor@enron.com 2001-03-13
## 8151 mark.e.taylor@enron.com 2001-03-13
## 8152 mark.e.taylor@enron.com 2001-03-13
## 8153 mark.e.taylor@enron.com 2001-03-13
## 8154 mark.e.taylor@enron.com 2001-03-13
## 8155 mark.e.taylor@enron.com 2001-03-13
## 8156 mark.e.taylor@enron.com 2001-03-13
## 8157 mark.e.taylor@enron.com 2001-03-12
## 8158 mark.e.taylor@enron.com 2001-03-12
## 8159 mark.e.taylor@enron.com 2001-03-12
## 8160 mark.e.taylor@enron.com 2001-03-12
## 8161 mark.e.taylor@enron.com 2001-03-12
## 8162 mark.e.taylor@enron.com 2001-03-12
## 8163 mark.e.taylor@enron.com 2001-03-12
## 8164 mark.e.taylor@enron.com 2001-03-12
## 8165 mark.e.taylor@enron.com 2001-03-12
## 8166 mark.e.taylor@enron.com 2001-03-12
## 8167 mark.e.taylor@enron.com 2001-03-12
## 8168 mark.e.taylor@enron.com 2001-03-12
## 8169 mark.e.taylor@enron.com 2001-03-12
## 8170 mark.e.taylor@enron.com 2001-03-12
## 8171 mark.e.taylor@enron.com 2001-03-12
## 8172 mark.e.taylor@enron.com 2001-03-12
## 8173 mark.e.taylor@enron.com 2001-03-12
## 8174 mark.e.taylor@enron.com 2001-03-12
## 8175 mark.e.taylor@enron.com 2001-03-12
## 8176 mark.e.taylor@enron.com 2001-03-12
## 8177 mark.e.taylor@enron.com 2001-03-08
## 8178 mark.e.taylor@enron.com 2001-03-08
## 8179 mark.e.taylor@enron.com 2001-03-08
## 8180 mark.e.taylor@enron.com 2001-03-08
## 8181 mark.e.taylor@enron.com 2001-03-08
## 8182 mark.e.taylor@enron.com 2001-03-07
## 8183 mark.e.taylor@enron.com 2001-03-07
## 8184 mark.e.taylor@enron.com 2001-03-07
## 8185 mark.e.taylor@enron.com 2001-03-07
## 8186 mark.e.taylor@enron.com 2001-03-07
## 8187 mark.e.taylor@enron.com 2001-03-06
## 8188 mark.e.taylor@enron.com 2001-03-06
## 8189 mark.e.taylor@enron.com 2001-03-06
## 8190 mark.e.taylor@enron.com 2001-03-06
## 8191 mark.e.taylor@enron.com 2001-03-06
## 8192 mark.e.taylor@enron.com 2001-03-06
## 8193 mark.e.taylor@enron.com 2001-03-06
## 8194 mark.e.taylor@enron.com 2001-03-06
## 8195 mark.e.taylor@enron.com 2001-03-06
## 8196 mark.e.taylor@enron.com 2001-03-06
## 8197 mark.e.taylor@enron.com 2001-03-06
## 8198 mark.e.taylor@enron.com 2001-03-06
## 8199 mark.e.taylor@enron.com 2001-03-06
## 8200 mark.e.taylor@enron.com 2001-03-02
## 8201 mark.e.taylor@enron.com 2001-03-01
## 8202 mark.e.taylor@enron.com 2001-03-01
## 8203 mark.e.taylor@enron.com 2001-03-01
## 8204 mark.e.taylor@enron.com 2001-02-28
## 8205 mark.e.taylor@enron.com 2001-02-28
## 8206 mark.e.taylor@enron.com 2001-02-27
## 8207 mark.e.taylor@enron.com 2001-02-27
## 8208 mark.e.taylor@enron.com 2001-02-27
## 8209 mark.e.taylor@enron.com 2001-02-27
## 8210 mark.e.taylor@enron.com 2001-02-27
## 8211 mark.e.taylor@enron.com 2001-02-27
## 8212 mark.e.taylor@enron.com 2001-02-26
## 8213 mark.e.taylor@enron.com 2001-02-23
## 8214 mark.e.taylor@enron.com 2001-02-23
## 8215 mark.e.taylor@enron.com 2001-02-23
## 8216 mark.e.taylor@enron.com 2001-02-23
## 8217 mark.e.taylor@enron.com 2001-02-23
## 8218 mark.e.taylor@enron.com 2001-02-23
## 8219 mark.e.taylor@enron.com 2001-02-23
## 8220 mark.e.taylor@enron.com 2001-02-22
## 8221 mark.e.taylor@enron.com 2001-02-22
## 8222 mark.e.taylor@enron.com 2001-02-22
## 8223 mark.e.taylor@enron.com 2001-02-22
## 8224 mark.e.taylor@enron.com 2001-02-21
## 8225 mark.e.taylor@enron.com 2001-02-21
## 8226 mark.e.taylor@enron.com 2001-02-21
## 8227 mark.e.taylor@enron.com 2001-02-21
## 8228 mark.e.taylor@enron.com 2001-02-21
## 8229 mark.e.taylor@enron.com 2001-02-21
## 8230 mark.e.taylor@enron.com 2001-02-20
## 8231 mark.e.taylor@enron.com 2001-02-20
## 8232 mark.e.taylor@enron.com 2001-02-20
## 8233 mark.e.taylor@enron.com 2001-02-20
## 8234 mark.e.taylor@enron.com 2001-02-20
## 8235 mark.e.taylor@enron.com 2001-02-20
## 8236 mark.e.taylor@enron.com 2001-02-20
## 8237 mark.e.taylor@enron.com 2001-02-20
## 8238 mark.e.taylor@enron.com 2001-02-20
## 8239 mark.e.taylor@enron.com 2001-02-20
## 8240 mark.e.taylor@enron.com 2001-02-20
## 8241 mark.e.taylor@enron.com 2001-02-20
## 8242 mark.e.taylor@enron.com 2001-02-20
## 8243 mark.e.taylor@enron.com 2001-02-16
## 8244 mark.e.taylor@enron.com 2001-02-16
## 8245 mark.e.taylor@enron.com 2001-02-16
## 8246 mark.e.taylor@enron.com 2001-02-16
## 8247 mark.e.taylor@enron.com 2001-02-15
## 8248 mark.e.taylor@enron.com 2001-02-15
## 8249 mark.e.taylor@enron.com 2001-02-15
## 8250 mark.e.taylor@enron.com 2001-02-15
## 8251 mark.e.taylor@enron.com 2001-02-15
## 8252 mark.e.taylor@enron.com 2001-02-15
## 8253 mark.e.taylor@enron.com 2001-02-14
## 8254 mark.e.taylor@enron.com 2001-02-14
## 8255 mark.e.taylor@enron.com 2001-02-14
## 8256 mark.e.taylor@enron.com 2001-02-11
## 8257 mark.e.taylor@enron.com 2001-02-11
## 8258 mark.e.taylor@enron.com 2001-02-11
## 8259 mark.e.taylor@enron.com 2001-02-11
## 8260 mark.e.taylor@enron.com 2001-02-10
## 8261 mark.e.taylor@enron.com 2001-02-09
## 8262 mark.e.taylor@enron.com 2001-02-09
## 8263 mark.e.taylor@enron.com 2001-02-09
## 8264 mark.e.taylor@enron.com 2001-02-09
## 8265 mark.e.taylor@enron.com 2001-02-08
## 8266 mark.e.taylor@enron.com 2001-02-08
## 8267 mark.e.taylor@enron.com 2001-02-08
## 8268 mark.e.taylor@enron.com 2001-02-08
## 8269 mark.e.taylor@enron.com 2001-02-08
## 8270 mark.e.taylor@enron.com 2001-02-07
## 8271 mark.e.taylor@enron.com 2001-02-07
## 8272 mark.e.taylor@enron.com 2001-02-06
## 8273 mark.e.taylor@enron.com 2001-02-06
## 8274 mark.e.taylor@enron.com 2001-02-06
## 8275 mark.e.taylor@enron.com 2001-02-06
## 8276 mark.e.taylor@enron.com 2001-02-06
## 8277 mark.e.taylor@enron.com 2001-02-06
## 8278 mark.e.taylor@enron.com 2001-02-06
## 8279 mark.e.taylor@enron.com 2001-02-06
## 8280 mark.e.taylor@enron.com 2001-02-06
## 8281 mark.e.taylor@enron.com 2001-02-06
## 8282 mark.e.taylor@enron.com 2001-02-06
## 8283 mark.e.taylor@enron.com 2001-02-06
## 8284 mark.e.taylor@enron.com 2001-02-06
## 8285 mark.e.taylor@enron.com 2001-02-06
## 8286 mark.e.taylor@enron.com 2001-02-06
## 8287 mark.e.taylor@enron.com 2001-02-06
## 8288 mark.e.taylor@enron.com 2001-02-06
## 8289 mark.e.taylor@enron.com 2001-02-06
## 8290 mark.e.taylor@enron.com 2001-02-06
## 8291 mark.e.taylor@enron.com 2001-02-06
## 8292 mark.e.taylor@enron.com 2001-02-05
## 8293 mark.e.taylor@enron.com 2001-02-05
## 8294 mark.e.taylor@enron.com 2001-02-05
## 8295 mark.e.taylor@enron.com 2001-02-05
## 8296 mark.e.taylor@enron.com 2001-02-05
## 8297 mark.e.taylor@enron.com 2001-02-02
## 8298 mark.e.taylor@enron.com 2001-02-01
## 8299 mark.e.taylor@enron.com 2001-02-01
## 8300 mark.e.taylor@enron.com 2001-01-31
## 8301 mark.e.taylor@enron.com 2001-01-31
## 8302 mark.e.taylor@enron.com 2001-01-31
## 8303 mark.e.taylor@enron.com 2001-01-30
## 8304 mark.e.taylor@enron.com 2001-01-30
## 8305 mark.e.taylor@enron.com 2001-01-30
## 8306 mark.e.taylor@enron.com 2001-01-29
## 8307 mark.e.taylor@enron.com 2001-01-29
## 8308 mark.e.taylor@enron.com 2001-01-29
## 8309 mark.e.taylor@enron.com 2001-01-29
## 8310 mark.e.taylor@enron.com 2001-01-29
## 8311 mark.e.taylor@enron.com 2001-01-29
## 8312 mark.e.taylor@enron.com 2001-01-29
## 8313 mark.e.taylor@enron.com 2001-01-26
## 8314 mark.e.taylor@enron.com 2001-01-24
## 8315 mark.e.taylor@enron.com 2001-01-24
## 8316 mark.e.taylor@enron.com 2001-01-24
## 8317 mark.e.taylor@enron.com 2001-01-21
## 8318 mark.e.taylor@enron.com 2001-01-19
## 8319 mark.e.taylor@enron.com 2001-01-18
## 8320 mark.e.taylor@enron.com 2001-01-18
## 8321 mark.e.taylor@enron.com 2001-01-18
## 8322 mark.e.taylor@enron.com 2001-01-18
## 8323 mark.e.taylor@enron.com 2001-01-18
## 8324 mark.e.taylor@enron.com 2001-01-17
## 8325 mark.e.taylor@enron.com 2001-01-16
## 8326 mark.e.taylor@enron.com 2001-01-16
## 8327 mark.e.taylor@enron.com 2001-01-16
## 8328 mark.e.taylor@enron.com 2001-01-16
## 8329 mark.e.taylor@enron.com 2001-01-16
## 8330 mark.e.taylor@enron.com 2001-01-16
## 8331 mark.e.taylor@enron.com 2001-01-16
## 8332 mark.e.taylor@enron.com 2001-01-16
## 8333 mark.e.taylor@enron.com 2001-01-16
## 8334 mark.e.taylor@enron.com 2001-01-16
## 8335 mark.e.taylor@enron.com 2001-01-16
## 8336 mark.e.taylor@enron.com 2001-01-16
## 8337 mark.e.taylor@enron.com 2001-01-16
## 8338 mark.e.taylor@enron.com 2001-01-16
## 8339 mark.e.taylor@enron.com 2001-01-16
## 8340 mark.e.taylor@enron.com 2001-01-16
## 8341 mark.e.taylor@enron.com 2001-01-16
## 8342 mark.e.taylor@enron.com 2001-01-12
## 8343 mark.e.taylor@enron.com 2001-01-11
## 8344 mark.e.taylor@enron.com 2001-01-11
## 8345 mark.e.taylor@enron.com 2001-01-11
## 8346 mark.e.taylor@enron.com 2001-01-11
## 8347 mark.e.taylor@enron.com 2001-01-11
## 8348 mark.e.taylor@enron.com 2001-01-09
## 8349 mark.e.taylor@enron.com 2001-01-08
## 8350 mark.e.taylor@enron.com 2001-01-08
## 8351 mark.e.taylor@enron.com 2001-01-08
## 8352 mark.e.taylor@enron.com 2001-01-08
## 8353 mark.e.taylor@enron.com 2001-01-05
## 8354 mark.e.taylor@enron.com 2001-01-05
## 8355 mark.e.taylor@enron.com 2001-01-05
## 8356 mark.e.taylor@enron.com 2001-01-05
## 8357 mark.e.taylor@enron.com 2001-01-04
## 8358 mark.e.taylor@enron.com 2001-01-04
## 8359 mark.e.taylor@enron.com 2001-01-04
## 8360 mark.e.taylor@enron.com 2001-01-04
## 8361 mark.e.taylor@enron.com 2001-01-04
## 8362 mark.e.taylor@enron.com 2001-01-04
## 8363 mark.e.taylor@enron.com 2001-01-04
## 8364 mark.e.taylor@enron.com 2001-01-04
## 8365 mark.e.taylor@enron.com 2001-01-04
## 8366 mark.e.taylor@enron.com 2001-01-04
## 8367 mark.e.taylor@enron.com 2001-01-04
## 8368 mark.e.taylor@enron.com 2001-01-04
## 8369 mark.e.taylor@enron.com 2001-01-04
## 8370 mark.e.taylor@enron.com 2001-01-04
## 8371 mark.e.taylor@enron.com 2001-01-04
## 8372 mark.e.taylor@enron.com 2001-01-04
## 8373 mark.e.taylor@enron.com 2001-01-04
## 8374 mark.e.taylor@enron.com 2001-01-04
## 8375 mark.e.taylor@enron.com 2001-01-04
## 8376 mark.e.taylor@enron.com 2001-01-04
## 8377 mark.e.taylor@enron.com 2001-01-04
## 8378 mark.e.taylor@enron.com 2001-01-04
## 8379 mark.e.taylor@enron.com 2001-01-04
## 8380 mark.e.taylor@enron.com 2001-01-04
## 8381 mark.e.taylor@enron.com 2001-01-04
## 8382 mark.e.taylor@enron.com 2001-01-04
## 8383 mark.e.taylor@enron.com 2001-01-04
## 8384 mark.e.taylor@enron.com 2001-01-04
## 8385 mark.e.taylor@enron.com 2001-01-04
## 8386 mark.e.taylor@enron.com 2001-01-04
## 8387 mark.e.taylor@enron.com 2001-01-04
## 8388 mark.e.taylor@enron.com 2001-01-04
## 8389 mark.e.taylor@enron.com 2001-01-04
## 8390 mark.e.taylor@enron.com 2001-01-04
## 8391 mark.e.taylor@enron.com 2001-01-04
## 8392 mark.e.taylor@enron.com 2001-01-04
## 8393 mark.e.taylor@enron.com 2001-01-04
## 8394 mark.e.taylor@enron.com 2001-01-04
## 8395 mark.e.taylor@enron.com 2001-01-04
## 8396 mark.e.taylor@enron.com 2001-01-04
## 8397 mark.e.taylor@enron.com 2001-01-04
## 8398 mark.e.taylor@enron.com 2001-01-03
## 8399 mark.e.taylor@enron.com 2001-01-03
## 8400 mark.e.taylor@enron.com 2001-01-03
## 8401 mark.e.taylor@enron.com 2001-01-03
## 8402 mark.e.taylor@enron.com 2001-01-03
## 8403 mark.e.taylor@enron.com 2001-01-03
## 8404 mark.e.taylor@enron.com 2001-01-03
## 8405 mark.e.taylor@enron.com 2001-01-03
## 8406 mark.e.taylor@enron.com 2001-01-03
## 8407 mark.e.taylor@enron.com 2001-01-02
## 8408 mark.e.taylor@enron.com 2001-01-02
## 8409 mark.e.taylor@enron.com 2001-01-02
## 8410 mark.e.taylor@enron.com 2001-01-02
## 8411 mark.e.taylor@enron.com 2001-01-02
## 8412 mark.e.taylor@enron.com 2001-01-02
## 8413 mark.e.taylor@enron.com 2001-01-02
## 8414 mark.e.taylor@enron.com 2001-01-02
## 8415 mark.e.taylor@enron.com 2001-01-02
## 8416 mark.e.taylor@enron.com 2000-12-27
## 8417 mark.e.taylor@enron.com 2000-12-27
## 8418 mark.e.taylor@enron.com 2000-12-21
## 8419 mark.e.taylor@enron.com 2000-12-21
## 8420 mark.e.taylor@enron.com 2000-12-21
## 8421 mark.e.taylor@enron.com 2000-12-20
## 8422 mark.e.taylor@enron.com 2000-12-20
## 8423 mark.e.taylor@enron.com 2000-12-19
## 8424 mark.e.taylor@enron.com 2000-12-19
## 8425 mark.e.taylor@enron.com 2000-12-15
## 8426 mark.e.taylor@enron.com 2000-12-15
## 8427 mark.e.taylor@enron.com 2000-12-15
## 8428 mark.e.taylor@enron.com 2000-12-15
## 8429 mark.e.taylor@enron.com 2000-12-15
## 8430 mark.e.taylor@enron.com 2000-12-15
## 8431 mark.e.taylor@enron.com 2000-12-14
## 8432 mark.e.taylor@enron.com 2000-12-14
## 8433 mark.e.taylor@enron.com 2000-12-13
## 8434 mark.e.taylor@enron.com 2000-12-13
## 8435 mark.e.taylor@enron.com 2000-12-13
## 8436 mark.e.taylor@enron.com 2000-12-13
## 8437 mark.e.taylor@enron.com 2000-12-13
## 8438 mark.e.taylor@enron.com 2000-12-13
## 8439 mark.e.taylor@enron.com 2000-12-13
## 8440 mark.e.taylor@enron.com 2000-12-13
## 8441 mark.e.taylor@enron.com 2000-12-13
## 8442 mark.e.taylor@enron.com 2000-12-13
## 8443 mark.e.taylor@enron.com 2000-12-13
## 8444 mark.e.taylor@enron.com 2000-12-13
## 8445 mark.e.taylor@enron.com 2000-12-12
## 8446 mark.e.taylor@enron.com 2000-12-12
## 8447 mark.e.taylor@enron.com 2000-12-12
## 8448 mark.e.taylor@enron.com 2000-12-12
## 8449 mark.e.taylor@enron.com 2000-12-12
## 8450 mark.e.taylor@enron.com 2000-12-12
## 8451 mark.e.taylor@enron.com 2000-12-12
## 8452 mark.e.taylor@enron.com 2000-12-12
## 8453 mark.e.taylor@enron.com 2000-12-12
## 8454 mark.e.taylor@enron.com 2000-12-12
## 8455 mark.e.taylor@enron.com 2000-12-12
## 8456 mark.e.taylor@enron.com 2000-12-12
## 8457 mark.e.taylor@enron.com 2000-12-12
## 8458 mark.e.taylor@enron.com 2000-12-12
## 8459 mark.e.taylor@enron.com 2000-12-12
## 8460 mark.e.taylor@enron.com 2000-12-12
## 8461 mark.e.taylor@enron.com 2000-12-12
## 8462 mark.e.taylor@enron.com 2000-12-12
## 8463 mark.e.taylor@enron.com 2000-12-11
## 8464 mark.e.taylor@enron.com 2000-12-11
## 8465 mark.e.taylor@enron.com 2000-12-11
## 8466 mark.e.taylor@enron.com 2000-12-11
## 8467 mark.e.taylor@enron.com 2000-12-11
## 8468 mark.e.taylor@enron.com 2000-12-11
## 8469 mark.e.taylor@enron.com 2000-12-11
## 8470 mark.e.taylor@enron.com 2000-12-11
## 8471 mark.e.taylor@enron.com 2000-12-08
## 8472 mark.e.taylor@enron.com 2000-12-08
## 8473 mark.e.taylor@enron.com 2000-12-08
## 8474 mark.e.taylor@enron.com 2000-12-08
## 8475 mark.e.taylor@enron.com 2000-12-07
## 8476 mark.e.taylor@enron.com 2000-12-07
## 8477 mark.e.taylor@enron.com 2000-12-06
## 8478 mark.e.taylor@enron.com 2000-12-04
## 8479 mark.e.taylor@enron.com 2000-12-04
## 8480 mark.e.taylor@enron.com 2000-12-01
## 8481 mark.e.taylor@enron.com 2000-11-30
## 8482 mark.e.taylor@enron.com 2000-11-29
## 8483 mark.e.taylor@enron.com 2000-11-29
## 8484 mark.e.taylor@enron.com 2000-11-28
## 8485 mark.e.taylor@enron.com 2000-11-27
## 8486 mark.e.taylor@enron.com 2000-11-27
## 8487 mark.e.taylor@enron.com 2000-11-27
## 8488 mark.e.taylor@enron.com 2000-11-27
## 8489 mark.e.taylor@enron.com 2000-11-22
## 8490 mark.e.taylor@enron.com 2000-11-22
## 8491 mark.e.taylor@enron.com 2000-11-21
## 8492 mark.e.taylor@enron.com 2000-11-21
## 8493 mark.e.taylor@enron.com 2000-11-21
## 8494 mark.e.taylor@enron.com 2000-11-21
## 8495 mark.e.taylor@enron.com 2000-11-21
## 8496 mark.e.taylor@enron.com 2000-11-21
## 8497 mark.e.taylor@enron.com 2000-11-21
## 8498 mark.e.taylor@enron.com 2000-11-21
## 8499 mark.e.taylor@enron.com 2000-11-21
## 8500 mark.e.taylor@enron.com 2000-11-21
## 8501 mark.e.taylor@enron.com 2000-11-21
## 8502 mark.e.taylor@enron.com 2000-11-21
## 8503 mark.e.taylor@enron.com 2000-11-21
## 8504 mark.e.taylor@enron.com 2000-11-21
## 8505 mark.e.taylor@enron.com 2000-11-21
## 8506 mark.e.taylor@enron.com 2000-11-20
## 8507 mark.e.taylor@enron.com 2000-11-15
## 8508 mark.e.taylor@enron.com 2000-11-13
## 8509 mark.e.taylor@enron.com 2000-11-13
## 8510 mark.e.taylor@enron.com 2000-11-13
## 8511 mark.e.taylor@enron.com 2000-11-13
## 8512 mark.e.taylor@enron.com 2000-11-13
## 8513 mark.e.taylor@enron.com 2000-11-13
## 8514 mark.e.taylor@enron.com 2000-11-13
## 8515 mark.e.taylor@enron.com 2000-11-13
## 8516 mark.e.taylor@enron.com 2000-11-13
## 8517 mark.e.taylor@enron.com 2000-11-13
## 8518 mark.e.taylor@enron.com 2000-11-13
## 8519 mark.e.taylor@enron.com 2000-11-13
## 8520 mark.e.taylor@enron.com 2000-11-13
## 8521 mark.e.taylor@enron.com 2000-11-13
## 8522 mark.e.taylor@enron.com 2000-11-13
## 8523 mark.e.taylor@enron.com 2000-11-13
## 8524 mark.e.taylor@enron.com 2000-11-13
## 8525 mark.e.taylor@enron.com 2000-11-10
## 8526 mark.e.taylor@enron.com 2000-11-10
## 8527 mark.e.taylor@enron.com 2000-11-10
## 8528 mark.e.taylor@enron.com 2000-11-10
## 8529 mark.e.taylor@enron.com 2000-11-10
## 8530 mark.e.taylor@enron.com 2000-11-10
## 8531 mark.e.taylor@enron.com 2000-11-10
## 8532 mark.e.taylor@enron.com 2000-11-10
## 8533 mark.e.taylor@enron.com 2000-11-10
## 8534 mark.e.taylor@enron.com 2000-11-10
## 8535 mark.e.taylor@enron.com 2000-11-10
## 8536 mark.e.taylor@enron.com 2000-11-10
## 8537 mark.e.taylor@enron.com 2000-11-10
## 8538 mark.e.taylor@enron.com 2000-11-10
## 8539 mark.e.taylor@enron.com 2000-11-10
## 8540 mark.e.taylor@enron.com 2000-11-10
## 8541 mark.e.taylor@enron.com 2000-11-10
## 8542 mark.e.taylor@enron.com 2000-11-10
## 8543 mark.e.taylor@enron.com 2000-11-10
## 8544 mark.e.taylor@enron.com 2000-11-10
## 8545 mark.e.taylor@enron.com 2000-11-10
## 8546 mark.e.taylor@enron.com 2000-11-10
## 8547 mark.e.taylor@enron.com 2000-11-10
## 8548 mark.e.taylor@enron.com 2000-11-10
## 8549 mark.e.taylor@enron.com 2000-11-10
## 8550 mark.e.taylor@enron.com 2000-11-10
## 8551 mark.e.taylor@enron.com 2000-11-10
## 8552 mark.e.taylor@enron.com 2000-11-10
## 8553 mark.e.taylor@enron.com 2000-11-10
## 8554 mark.e.taylor@enron.com 2000-11-10
## 8555 mark.e.taylor@enron.com 2000-11-10
## 8556 mark.e.taylor@enron.com 2000-11-10
## 8557 mark.e.taylor@enron.com 2000-11-10
## 8558 mark.e.taylor@enron.com 2000-11-10
## 8559 mark.e.taylor@enron.com 2000-11-10
## 8560 mark.e.taylor@enron.com 2000-11-10
## 8561 mark.e.taylor@enron.com 2000-11-10
## 8562 mark.e.taylor@enron.com 2000-11-10
## 8563 mark.e.taylor@enron.com 2000-11-10
## 8564 mark.e.taylor@enron.com 2000-11-10
## 8565 mark.e.taylor@enron.com 2000-11-10
## 8566 mark.e.taylor@enron.com 2000-11-10
## 8567 mark.e.taylor@enron.com 2000-11-10
## 8568 mark.e.taylor@enron.com 2000-11-10
## 8569 mark.e.taylor@enron.com 2000-11-10
## 8570 mark.e.taylor@enron.com 2000-11-10
## 8571 mark.e.taylor@enron.com 2000-11-10
## 8572 mark.e.taylor@enron.com 2000-11-10
## 8573 mark.e.taylor@enron.com 2000-11-10
## 8574 mark.e.taylor@enron.com 2000-11-10
## 8575 mark.e.taylor@enron.com 2000-11-10
## 8576 mark.e.taylor@enron.com 2000-11-10
## 8577 mark.e.taylor@enron.com 2000-11-10
## 8578 mark.e.taylor@enron.com 2000-11-10
## 8579 mark.e.taylor@enron.com 2000-11-10
## 8580 mark.e.taylor@enron.com 2000-11-10
## 8581 mark.e.taylor@enron.com 2000-11-10
## 8582 mark.e.taylor@enron.com 2000-11-10
## 8583 mark.e.taylor@enron.com 2000-11-10
## 8584 mark.e.taylor@enron.com 2000-11-10
## 8585 mark.e.taylor@enron.com 2000-11-10
## 8586 mark.e.taylor@enron.com 2000-11-10
## 8587 mark.e.taylor@enron.com 2000-11-09
## 8588 mark.e.taylor@enron.com 2000-11-09
## 8589 mark.e.taylor@enron.com 2000-11-09
## 8590 mark.e.taylor@enron.com 2000-11-09
## 8591 mark.e.taylor@enron.com 2000-11-09
## 8592 mark.e.taylor@enron.com 2000-11-09
## 8593 mark.e.taylor@enron.com 2000-11-09
## 8594 mark.e.taylor@enron.com 2000-11-09
## 8595 mark.e.taylor@enron.com 2000-11-09
## 8596 mark.e.taylor@enron.com 2000-11-09
## 8597 mark.e.taylor@enron.com 2000-11-09
## 8598 mark.e.taylor@enron.com 2000-11-09
## 8599 mark.e.taylor@enron.com 2000-11-09
## 8600 mark.e.taylor@enron.com 2000-11-09
## 8601 mark.e.taylor@enron.com 2000-11-09
## 8602 mark.e.taylor@enron.com 2000-11-09
## 8603 mark.e.taylor@enron.com 2000-11-09
## 8604 mark.e.taylor@enron.com 2000-11-09
## 8605 mark.e.taylor@enron.com 2000-11-09
## 8606 mark.e.taylor@enron.com 2000-11-07
## 8607 mark.e.taylor@enron.com 2000-11-07
## 8608 mark.e.taylor@enron.com 2000-11-07
## 8609 mark.e.taylor@enron.com 2000-11-07
## 8610 mark.e.taylor@enron.com 2000-11-07
## 8611 mark.e.taylor@enron.com 2000-11-07
## 8612 mark.e.taylor@enron.com 2000-11-07
## 8613 mark.e.taylor@enron.com 2000-11-07
## 8614 mark.e.taylor@enron.com 2000-11-07
## 8615 mark.e.taylor@enron.com 2000-11-06
## 8616 mark.e.taylor@enron.com 2000-11-03
## 8617 mark.e.taylor@enron.com 2000-11-03
## 8618 mark.e.taylor@enron.com 2000-11-03
## 8619 mark.e.taylor@enron.com 2000-11-02
## 8620 mark.e.taylor@enron.com 2000-11-02
## 8621 mark.e.taylor@enron.com 2000-11-02
## 8622 mark.e.taylor@enron.com 2000-11-02
## 8623 mark.e.taylor@enron.com 2000-11-02
## 8624 mark.e.taylor@enron.com 2000-11-02
## 8625 mark.e.taylor@enron.com 2000-11-02
## 8626 mark.e.taylor@enron.com 2000-11-02
## 8627 mark.e.taylor@enron.com 2000-11-01
## 8628 mark.e.taylor@enron.com 2000-11-01
## 8629 mark.e.taylor@enron.com 2000-10-31
## 8630 mark.e.taylor@enron.com 2000-10-31
## 8631 mark.e.taylor@enron.com 2000-10-31
## 8632 mark.e.taylor@enron.com 2000-10-31
## 8633 mark.e.taylor@enron.com 2000-10-31
## 8634 mark.e.taylor@enron.com 2000-10-31
## 8635 mark.e.taylor@enron.com 2000-10-31
## 8636 mark.e.taylor@enron.com 2000-10-31
## 8637 mark.e.taylor@enron.com 2000-10-31
## 8638 mark.e.taylor@enron.com 2000-10-31
## 8639 mark.e.taylor@enron.com 2000-10-31
## 8640 mark.e.taylor@enron.com 2000-10-31
## 8641 mark.e.taylor@enron.com 2000-10-31
## 8642 mark.e.taylor@enron.com 2000-10-31
## 8643 mark.e.taylor@enron.com 2000-10-30
## 8644 mark.e.taylor@enron.com 2000-10-30
## 8645 mark.e.taylor@enron.com 2000-10-30
## 8646 mark.e.taylor@enron.com 2000-10-30
## 8647 mark.e.taylor@enron.com 2000-10-30
## 8648 mark.e.taylor@enron.com 2000-10-30
## 8649 mark.e.taylor@enron.com 2000-10-30
## 8650 mark.e.taylor@enron.com 2000-10-30
## 8651 mark.e.taylor@enron.com 2000-10-30
## 8652 mark.e.taylor@enron.com 2000-10-30
## 8653 mark.e.taylor@enron.com 2000-10-30
## 8654 mark.e.taylor@enron.com 2000-10-30
## 8655 mark.e.taylor@enron.com 2000-10-30
## 8656 mark.e.taylor@enron.com 2000-10-30
## 8657 mark.e.taylor@enron.com 2000-10-30
## 8658 mark.e.taylor@enron.com 2000-10-30
## 8659 mark.e.taylor@enron.com 2000-10-30
## 8660 mark.e.taylor@enron.com 2000-10-30
## 8661 mark.e.taylor@enron.com 2000-10-30
## 8662 mark.e.taylor@enron.com 2000-10-27
## 8663 mark.e.taylor@enron.com 2000-10-27
## 8664 mark.e.taylor@enron.com 2000-10-27
## 8665 mark.e.taylor@enron.com 2000-10-26
## 8666 mark.e.taylor@enron.com 2000-10-26
## 8667 mark.e.taylor@enron.com 2000-10-26
## 8668 mark.e.taylor@enron.com 2000-10-26
## 8669 mark.e.taylor@enron.com 2000-10-26
## 8670 mark.e.taylor@enron.com 2000-10-26
## 8671 mark.e.taylor@enron.com 2000-10-26
## 8672 mark.e.taylor@enron.com 2000-10-26
## 8673 mark.e.taylor@enron.com 2000-10-26
## 8674 mark.e.taylor@enron.com 2000-10-26
## 8675 mark.e.taylor@enron.com 2000-10-26
## 8676 mark.e.taylor@enron.com 2000-10-26
## 8677 mark.e.taylor@enron.com 2000-10-26
## 8678 mark.e.taylor@enron.com 2000-10-26
## 8679 mark.e.taylor@enron.com 2000-10-25
## 8680 mark.e.taylor@enron.com 2000-10-25
## 8681 mark.e.taylor@enron.com 2000-10-25
## 8682 mark.e.taylor@enron.com 2000-10-25
## 8683 mark.e.taylor@enron.com 2000-10-25
## 8684 mark.e.taylor@enron.com 2000-10-25
## 8685 mark.e.taylor@enron.com 2000-10-25
## 8686 mark.e.taylor@enron.com 2000-10-25
## 8687 mark.e.taylor@enron.com 2000-10-25
## 8688 mark.e.taylor@enron.com 2000-10-25
## 8689 mark.e.taylor@enron.com 2000-10-25
## 8690 mark.e.taylor@enron.com 2000-10-25
## 8691 mark.e.taylor@enron.com 2000-10-25
## 8692 mark.e.taylor@enron.com 2000-10-25
## 8693 mark.e.taylor@enron.com 2000-10-25
## 8694 mark.e.taylor@enron.com 2000-10-24
## 8695 mark.e.taylor@enron.com 2000-10-24
## 8696 mark.e.taylor@enron.com 2000-10-24
## 8697 mark.e.taylor@enron.com 2000-10-24
## 8698 mark.e.taylor@enron.com 2000-10-23
## 8699 mark.e.taylor@enron.com 2000-10-23
## 8700 mark.e.taylor@enron.com 2000-10-23
## 8701 mark.e.taylor@enron.com 2000-10-20
## 8702 mark.e.taylor@enron.com 2000-10-20
## 8703 mark.e.taylor@enron.com 2000-10-20
## 8704 mark.e.taylor@enron.com 2000-10-20
## 8705 mark.e.taylor@enron.com 2000-10-20
## 8706 mark.e.taylor@enron.com 2000-10-20
## 8707 mark.e.taylor@enron.com 2000-10-20
## 8708 mark.e.taylor@enron.com 2000-10-20
## 8709 mark.e.taylor@enron.com 2000-10-20
## 8710 mark.e.taylor@enron.com 2000-10-20
## 8711 mark.e.taylor@enron.com 2000-10-20
## 8712 mark.e.taylor@enron.com 2000-10-20
## 8713 mark.e.taylor@enron.com 2000-10-20
## 8714 mark.e.taylor@enron.com 2000-10-20
## 8715 mark.e.taylor@enron.com 2000-10-20
## 8716 mark.e.taylor@enron.com 2000-10-20
## 8717 mark.e.taylor@enron.com 2000-10-19
## 8718 mark.e.taylor@enron.com 2000-10-19
## 8719 mark.e.taylor@enron.com 2000-10-19
## 8720 mark.e.taylor@enron.com 2000-10-18
## 8721 mark.e.taylor@enron.com 2000-10-18
## 8722 mark.e.taylor@enron.com 2000-10-18
## 8723 mark.e.taylor@enron.com 2000-10-18
## 8724 mark.e.taylor@enron.com 2000-10-18
## 8725 mark.e.taylor@enron.com 2000-10-18
## 8726 mark.e.taylor@enron.com 2000-10-17
## 8727 mark.e.taylor@enron.com 2000-10-17
## 8728 mark.e.taylor@enron.com 2000-10-17
## 8729 mark.e.taylor@enron.com 2000-10-17
## 8730 mark.e.taylor@enron.com 2000-10-17
## 8731 mark.e.taylor@enron.com 2000-10-17
## 8732 mark.e.taylor@enron.com 2000-10-17
## 8733 mark.e.taylor@enron.com 2000-10-17
## 8734 mark.e.taylor@enron.com 2000-10-17
## 8735 mark.e.taylor@enron.com 2000-10-17
## 8736 mark.e.taylor@enron.com 2000-10-17
## 8737 mark.e.taylor@enron.com 2000-10-17
## 8738 mark.e.taylor@enron.com 2000-10-17
## 8739 mark.e.taylor@enron.com 2000-10-09
## 8740 mark.e.taylor@enron.com 2000-10-09
## 8741 mark.e.taylor@enron.com 2000-10-09
## 8742 mark.e.taylor@enron.com 2000-10-09
## 8743 mark.e.taylor@enron.com 2000-10-08
## 8744 mark.e.taylor@enron.com 2000-10-08
## 8745 mark.e.taylor@enron.com 2000-10-08
## 8746 mark.e.taylor@enron.com 2000-10-08
## 8747 mark.e.taylor@enron.com 2000-10-05
## 8748 mark.e.taylor@enron.com 2000-10-05
## 8749 mark.e.taylor@enron.com 2000-10-05
## 8750 mark.e.taylor@enron.com 2000-10-05
## 8751 mark.e.taylor@enron.com 2000-10-05
## 8752 mark.e.taylor@enron.com 2000-10-05
## 8753 mark.e.taylor@enron.com 2000-10-05
## 8754 mark.e.taylor@enron.com 2000-10-05
## 8755 mark.e.taylor@enron.com 2000-10-05
## 8756 mark.e.taylor@enron.com 2000-10-05
## 8757 mark.e.taylor@enron.com 2000-10-05
## 8758 mark.e.taylor@enron.com 2000-10-04
## 8759 mark.e.taylor@enron.com 2000-10-04
## 8760 mark.e.taylor@enron.com 2000-10-04
## 8761 mark.e.taylor@enron.com 2000-09-20
## 8762 mark.e.taylor@enron.com 2000-09-20
## 8763 mark.e.taylor@enron.com 2000-09-20
## 8764 mark.e.taylor@enron.com 2000-09-20
## 8765 mark.e.taylor@enron.com 2000-09-20
## 8766 mark.e.taylor@enron.com 2000-09-20
## 8767 mark.e.taylor@enron.com 2000-09-20
## 8768 mark.e.taylor@enron.com 2000-09-20
## 8769 mark.e.taylor@enron.com 2000-09-20
## 8770 mark.e.taylor@enron.com 2000-09-20
## 8771 mark.e.taylor@enron.com 2000-09-20
## 8772 mark.e.taylor@enron.com 2000-09-20
## 8773 mark.e.taylor@enron.com 2000-09-20
## 8774 mark.e.taylor@enron.com 2000-09-20
## 8775 mark.e.taylor@enron.com 2000-09-20
## 8776 mark.e.taylor@enron.com 2000-09-19
## 8777 mark.e.taylor@enron.com 2000-09-19
## 8778 mark.e.taylor@enron.com 2000-09-19
## 8779 mark.e.taylor@enron.com 2000-09-19
## 8780 mark.e.taylor@enron.com 2000-09-19
## 8781 mark.e.taylor@enron.com 2000-09-15
## 8782 mark.e.taylor@enron.com 2000-09-15
## 8783 mark.e.taylor@enron.com 2000-09-14
## 8784 mark.e.taylor@enron.com 2000-09-14
## 8785 mark.e.taylor@enron.com 2000-09-14
## 8786 mark.e.taylor@enron.com 2000-09-14
## 8787 mark.e.taylor@enron.com 2000-09-14
## 8788 mark.e.taylor@enron.com 2000-09-14
## 8789 mark.e.taylor@enron.com 2000-09-14
## 8790 mark.e.taylor@enron.com 2000-09-14
## 8791 mark.e.taylor@enron.com 2000-09-14
## 8792 mark.e.taylor@enron.com 2000-09-14
## 8793 mark.e.taylor@enron.com 2000-09-14
## 8794 mark.e.taylor@enron.com 2000-09-14
## 8795 mark.e.taylor@enron.com 2000-09-14
## 8796 mark.e.taylor@enron.com 2000-09-14
## 8797 mark.e.taylor@enron.com 2000-09-14
## 8798 mark.e.taylor@enron.com 2000-09-14
## 8799 mark.e.taylor@enron.com 2000-09-13
## 8800 mark.e.taylor@enron.com 2000-09-12
## 8801 mark.e.taylor@enron.com 2000-09-11
## 8802 mark.e.taylor@enron.com 2000-09-11
## 8803 mark.e.taylor@enron.com 2000-09-11
## 8804 mark.e.taylor@enron.com 2000-09-11
## 8805 mark.e.taylor@enron.com 2000-09-11
## 8806 mark.e.taylor@enron.com 2000-09-11
## 8807 mark.e.taylor@enron.com 2000-09-11
## 8808 mark.e.taylor@enron.com 2000-09-11
## 8809 mark.e.taylor@enron.com 2000-09-11
## 8810 mark.e.taylor@enron.com 2000-09-11
## 8811 mark.e.taylor@enron.com 2000-09-11
## 8812 mark.e.taylor@enron.com 2000-09-11
## 8813 mark.e.taylor@enron.com 2000-09-11
## 8814 mark.e.taylor@enron.com 2000-09-08
## 8815 mark.e.taylor@enron.com 2000-09-08
## 8816 mark.e.taylor@enron.com 2000-09-08
## 8817 mark.e.taylor@enron.com 2000-09-08
## 8818 mark.e.taylor@enron.com 2000-09-08
## 8819 mark.e.taylor@enron.com 2000-09-08
## 8820 mark.e.taylor@enron.com 2000-09-08
## 8821 mark.e.taylor@enron.com 2000-09-08
## 8822 mark.e.taylor@enron.com 2000-09-08
## 8823 mark.e.taylor@enron.com 2000-09-08
## 8824 mark.e.taylor@enron.com 2000-09-08
## 8825 mark.e.taylor@enron.com 2000-09-07
## 8826 mark.e.taylor@enron.com 2000-09-07
## 8827 mark.e.taylor@enron.com 2000-09-07
## 8828 mark.e.taylor@enron.com 2000-09-07
## 8829 mark.e.taylor@enron.com 2000-09-07
## 8830 mark.e.taylor@enron.com 2000-09-07
## 8831 mark.e.taylor@enron.com 2000-09-07
## 8832 mark.e.taylor@enron.com 2000-09-07
## 8833 mark.e.taylor@enron.com 2000-09-07
## 8834 mark.e.taylor@enron.com 2000-09-07
## 8835 mark.e.taylor@enron.com 2000-09-07
## 8836 mark.e.taylor@enron.com 2000-09-07
## 8837 mark.e.taylor@enron.com 2000-09-07
## 8838 mark.e.taylor@enron.com 2000-09-07
## 8839 mark.e.taylor@enron.com 2000-09-06
## 8840 mark.e.taylor@enron.com 2000-09-06
## 8841 mark.e.taylor@enron.com 2000-09-06
## 8842 mark.e.taylor@enron.com 2000-09-06
## 8843 mark.e.taylor@enron.com 2000-09-06
## 8844 mark.e.taylor@enron.com 2000-09-06
## 8845 mark.e.taylor@enron.com 2000-09-06
## 8846 mark.e.taylor@enron.com 2000-09-06
## 8847 mark.e.taylor@enron.com 2000-09-06
## 8848 mark.e.taylor@enron.com 2000-09-06
## 8849 mark.e.taylor@enron.com 2000-09-06
## 8850 mark.e.taylor@enron.com 2000-09-06
## 8851 mark.e.taylor@enron.com 2000-09-06
## 8852 mark.e.taylor@enron.com 2000-09-06
## 8853 mark.e.taylor@enron.com 2000-09-06
## 8854 mark.e.taylor@enron.com 2000-09-06
## 8855 mark.e.taylor@enron.com 2000-09-06
## 8856 mark.e.taylor@enron.com 2000-09-06
## 8857 mark.e.taylor@enron.com 2000-09-06
## 8858 mark.e.taylor@enron.com 2000-09-06
## 8859 mark.e.taylor@enron.com 2000-09-06
## 8860 mark.e.taylor@enron.com 2000-09-06
## 8861 mark.e.taylor@enron.com 2000-09-06
## 8862 mark.e.taylor@enron.com 2000-09-06
## 8863 mark.e.taylor@enron.com 2000-09-06
## 8864 mark.e.taylor@enron.com 2000-09-06
## 8865 mark.e.taylor@enron.com 2000-09-05
## 8866 mark.e.taylor@enron.com 2000-09-05
## 8867 mark.e.taylor@enron.com 2000-09-05
## 8868 mark.e.taylor@enron.com 2000-09-05
## 8869 mark.e.taylor@enron.com 2000-09-05
## 8870 mark.e.taylor@enron.com 2000-09-05
## 8871 mark.e.taylor@enron.com 2000-09-05
## 8872 mark.e.taylor@enron.com 2000-09-05
## 8873 mark.e.taylor@enron.com 2000-09-05
## 8874 mark.e.taylor@enron.com 2000-09-05
## 8875 mark.e.taylor@enron.com 2000-09-05
## 8876 mark.e.taylor@enron.com 2000-09-05
## 8877 mark.e.taylor@enron.com 2000-09-05
## 8878 mark.e.taylor@enron.com 2000-09-05
## 8879 mark.e.taylor@enron.com 2000-09-05
## 8880 mark.e.taylor@enron.com 2000-09-05
## 8881 mark.e.taylor@enron.com 2000-09-05
## 8882 mark.e.taylor@enron.com 2000-09-05
## 8883 mark.e.taylor@enron.com 2000-09-05
## 8884 mark.e.taylor@enron.com 2000-09-05
## 8885 mark.e.taylor@enron.com 2000-09-05
## 8886 mark.e.taylor@enron.com 2000-09-05
## 8887 mark.e.taylor@enron.com 2000-09-05
## 8888 mark.e.taylor@enron.com 2000-09-05
## 8889 mark.e.taylor@enron.com 2000-09-05
## 8890 mark.e.taylor@enron.com 2000-09-05
## 8891 mark.e.taylor@enron.com 2000-09-01
## 8892 mark.e.taylor@enron.com 2000-09-01
## 8893 mark.e.taylor@enron.com 2000-09-01
## 8894 mark.e.taylor@enron.com 2000-09-01
## 8895 mark.e.taylor@enron.com 2000-09-01
## 8896 mark.e.taylor@enron.com 2000-09-01
## 8897 mark.e.taylor@enron.com 2000-09-01
## 8898 mark.e.taylor@enron.com 2000-09-01
## 8899 mark.e.taylor@enron.com 2000-08-31
## 8900 mark.e.taylor@enron.com 2000-08-31
## 8901 mark.e.taylor@enron.com 2000-08-31
## 8902 mark.e.taylor@enron.com 2000-08-31
## 8903 mark.e.taylor@enron.com 2000-08-31
## 8904 mark.e.taylor@enron.com 2000-08-31
## 8905 mark.e.taylor@enron.com 2000-08-31
## 8906 mark.e.taylor@enron.com 2000-08-30
## 8907 mark.e.taylor@enron.com 2000-08-30
## 8908 mark.e.taylor@enron.com 2000-08-30
## 8909 mark.e.taylor@enron.com 2000-08-30
## 8910 mark.e.taylor@enron.com 2000-08-30
## 8911 mark.e.taylor@enron.com 2000-08-30
## 8912 mark.e.taylor@enron.com 2000-08-30
## 8913 mark.e.taylor@enron.com 2000-08-30
## 8914 mark.e.taylor@enron.com 2000-08-30
## 8915 mark.e.taylor@enron.com 2000-08-30
## 8916 mark.e.taylor@enron.com 2000-08-30
## 8917 mark.e.taylor@enron.com 2000-08-30
## 8918 mark.e.taylor@enron.com 2000-08-30
## 8919 mark.e.taylor@enron.com 2000-08-30
## 8920 mark.e.taylor@enron.com 2000-08-30
## 8921 mark.e.taylor@enron.com 2000-08-30
## 8922 mark.e.taylor@enron.com 2000-08-30
## 8923 mark.e.taylor@enron.com 2000-08-29
## 8924 mark.e.taylor@enron.com 2000-08-29
## 8925 mark.e.taylor@enron.com 2000-08-29
## 8926 mark.e.taylor@enron.com 2000-08-29
## 8927 mark.e.taylor@enron.com 2000-08-29
## 8928 mark.e.taylor@enron.com 2000-08-29
## 8929 mark.e.taylor@enron.com 2000-08-29
## 8930 mark.e.taylor@enron.com 2000-08-29
## 8931 mark.e.taylor@enron.com 2000-08-29
## 8932 mark.e.taylor@enron.com 2000-08-28
## 8933 mark.e.taylor@enron.com 2000-08-28
## 8934 mark.e.taylor@enron.com 2000-08-25
## 8935 mark.e.taylor@enron.com 2000-08-25
## 8936 mark.e.taylor@enron.com 2000-08-25
## 8937 mark.e.taylor@enron.com 2000-08-25
## 8938 mark.e.taylor@enron.com 2000-08-25
## 8939 mark.e.taylor@enron.com 2000-08-25
## 8940 mark.e.taylor@enron.com 2000-08-25
## 8941 mark.e.taylor@enron.com 2000-08-25
## 8942 mark.e.taylor@enron.com 2000-08-24
## 8943 mark.e.taylor@enron.com 2000-08-23
## 8944 mark.e.taylor@enron.com 2000-08-23
## 8945 mark.e.taylor@enron.com 2000-08-23
## 8946 mark.e.taylor@enron.com 2000-08-23
## 8947 mark.e.taylor@enron.com 2000-08-22
## 8948 mark.e.taylor@enron.com 2000-08-22
## 8949 mark.e.taylor@enron.com 2000-08-22
## 8950 mark.e.taylor@enron.com 2000-08-22
## 8951 mark.e.taylor@enron.com 2000-08-22
## 8952 mark.e.taylor@enron.com 2000-08-22
## 8953 mark.e.taylor@enron.com 2000-08-22
## 8954 mark.e.taylor@enron.com 2000-08-22
## 8955 mark.e.taylor@enron.com 2000-08-22
## 8956 mark.e.taylor@enron.com 2000-08-22
## 8957 mark.e.taylor@enron.com 2000-08-21
## 8958 mark.e.taylor@enron.com 2000-08-21
## 8959 mark.e.taylor@enron.com 2000-08-21
## 8960 mark.e.taylor@enron.com 2000-08-21
## 8961 mark.e.taylor@enron.com 2000-08-20
## 8962 mark.e.taylor@enron.com 2000-08-20
## 8963 mark.e.taylor@enron.com 2000-08-20
## 8964 mark.e.taylor@enron.com 2000-08-20
## 8965 mark.e.taylor@enron.com 2000-08-20
## 8966 mark.e.taylor@enron.com 2000-08-20
## 8967 mark.e.taylor@enron.com 2000-08-18
## 8968 mark.e.taylor@enron.com 2000-08-18
## 8969 mark.e.taylor@enron.com 2000-08-18
## 8970 mark.e.taylor@enron.com 2000-08-18
## 8971 mark.e.taylor@enron.com 2000-08-18
## 8972 mark.e.taylor@enron.com 2000-08-18
## 8973 mark.e.taylor@enron.com 2000-08-18
## 8974 mark.e.taylor@enron.com 2000-08-18
## 8975 mark.e.taylor@enron.com 2000-08-18
## 8976 mark.e.taylor@enron.com 2000-08-18
## 8977 mark.e.taylor@enron.com 2000-08-18
## 8978 mark.e.taylor@enron.com 2000-08-18
## 8979 mark.e.taylor@enron.com 2000-08-18
## 8980 mark.e.taylor@enron.com 2000-08-18
## 8981 mark.e.taylor@enron.com 2000-08-18
## 8982 mark.e.taylor@enron.com 2000-08-18
## 8983 mark.e.taylor@enron.com 2000-08-17
## 8984 mark.e.taylor@enron.com 2000-08-17
## 8985 mark.e.taylor@enron.com 2000-08-17
## 8986 mark.e.taylor@enron.com 2000-08-17
## 8987 mark.e.taylor@enron.com 2000-08-17
## 8988 mark.e.taylor@enron.com 2000-08-17
## 8989 mark.e.taylor@enron.com 2000-08-17
## 8990 mark.e.taylor@enron.com 2000-08-17
## 8991 mark.e.taylor@enron.com 2000-08-17
## 8992 mark.e.taylor@enron.com 2000-08-17
## 8993 mark.e.taylor@enron.com 2000-08-16
## 8994 mark.e.taylor@enron.com 2000-08-16
## 8995 mark.e.taylor@enron.com 2000-08-16
## 8996 mark.e.taylor@enron.com 2000-08-16
## 8997 mark.e.taylor@enron.com 2000-08-16
## 8998 mark.e.taylor@enron.com 2000-08-16
## 8999 mark.e.taylor@enron.com 2000-08-16
## 9000 mark.e.taylor@enron.com 2000-08-16
## 9001 mark.e.taylor@enron.com 2000-08-16
## 9002 mark.e.taylor@enron.com 2000-08-16
## 9003 mark.e.taylor@enron.com 2000-08-16
## 9004 mark.e.taylor@enron.com 2000-08-16
## 9005 mark.e.taylor@enron.com 2000-08-15
## 9006 mark.e.taylor@enron.com 2000-08-15
## 9007 mark.e.taylor@enron.com 2000-08-14
## 9008 mark.e.taylor@enron.com 2000-08-14
## 9009 mark.e.taylor@enron.com 2000-08-14
## 9010 mark.e.taylor@enron.com 2000-08-14
## 9011 mark.e.taylor@enron.com 2000-08-11
## 9012 mark.e.taylor@enron.com 2000-08-11
## 9013 mark.e.taylor@enron.com 2000-08-11
## 9014 mark.e.taylor@enron.com 2000-08-11
## 9015 mark.e.taylor@enron.com 2000-08-11
## 9016 mark.e.taylor@enron.com 2000-08-11
## 9017 mark.e.taylor@enron.com 2000-08-11
## 9018 mark.e.taylor@enron.com 2000-08-11
## 9019 mark.e.taylor@enron.com 2000-08-11
## 9020 mark.e.taylor@enron.com 2000-08-11
## 9021 mark.e.taylor@enron.com 2000-08-11
## 9022 mark.e.taylor@enron.com 2000-08-11
## 9023 mark.e.taylor@enron.com 2000-08-09
## 9024 mark.e.taylor@enron.com 2000-08-09
## 9025 mark.e.taylor@enron.com 2000-08-09
## 9026 mark.e.taylor@enron.com 2000-08-09
## 9027 mark.e.taylor@enron.com 2000-08-09
## 9028 mark.e.taylor@enron.com 2000-08-08
## 9029 mark.e.taylor@enron.com 2000-08-08
## 9030 mark.e.taylor@enron.com 2000-08-08
## 9031 mark.e.taylor@enron.com 2000-08-04
## 9032 mark.e.taylor@enron.com 2000-08-04
## 9033 mark.e.taylor@enron.com 2000-08-04
## 9034 mark.e.taylor@enron.com 2000-08-04
## 9035 mark.e.taylor@enron.com 2000-08-04
## 9036 mark.e.taylor@enron.com 2000-08-04
## 9037 mark.e.taylor@enron.com 2000-08-04
## 9038 mark.e.taylor@enron.com 2000-08-04
## 9039 mark.e.taylor@enron.com 2000-08-04
## 9040 mark.e.taylor@enron.com 2000-08-04
## 9041 mark.e.taylor@enron.com 2000-08-04
## 9042 mark.e.taylor@enron.com 2000-08-04
## 9043 mark.e.taylor@enron.com 2000-08-04
## 9044 mark.e.taylor@enron.com 2000-08-04
## 9045 mark.e.taylor@enron.com 2000-08-04
## 9046 mark.e.taylor@enron.com 2000-08-04
## 9047 mark.e.taylor@enron.com 2000-08-04
## 9048 mark.e.taylor@enron.com 2000-08-04
## 9049 mark.e.taylor@enron.com 2000-08-04
## 9050 mark.e.taylor@enron.com 2000-08-04
## 9051 mark.e.taylor@enron.com 2000-08-04
## 9052 mark.e.taylor@enron.com 2000-08-04
## 9053 mark.e.taylor@enron.com 2000-08-04
## 9054 mark.e.taylor@enron.com 2000-08-04
## 9055 mark.e.taylor@enron.com 2000-08-04
## 9056 mark.e.taylor@enron.com 2000-08-03
## 9057 mark.e.taylor@enron.com 2000-08-03
## 9058 mark.e.taylor@enron.com 2000-08-03
## 9059 mark.e.taylor@enron.com 2000-08-03
## 9060 mark.e.taylor@enron.com 2000-07-31
## 9061 mark.e.taylor@enron.com 2000-07-31
## 9062 mark.e.taylor@enron.com 2000-07-31
## 9063 mark.e.taylor@enron.com 2000-07-31
## 9064 mark.e.taylor@enron.com 2000-07-31
## 9065 mark.e.taylor@enron.com 2000-07-31
## 9066 mark.e.taylor@enron.com 2000-07-31
## 9067 mark.e.taylor@enron.com 2000-07-31
## 9068 mark.e.taylor@enron.com 2000-07-31
## 9069 mark.e.taylor@enron.com 2000-07-31
## 9070 mark.e.taylor@enron.com 2000-07-31
## 9071 mark.e.taylor@enron.com 2000-07-31
## 9072 mark.e.taylor@enron.com 2000-07-31
## 9073 mark.e.taylor@enron.com 2000-07-31
## 9074 mark.e.taylor@enron.com 2000-07-31
## 9075 mark.e.taylor@enron.com 2000-07-31
## 9076 mark.e.taylor@enron.com 2000-07-31
## 9077 mark.e.taylor@enron.com 2000-07-31
## 9078 mark.e.taylor@enron.com 2000-07-31
## 9079 mark.e.taylor@enron.com 2000-07-31
## 9080 mark.e.taylor@enron.com 2000-07-31
## 9081 mark.e.taylor@enron.com 2000-07-31
## 9082 mark.e.taylor@enron.com 2000-07-31
## 9083 mark.e.taylor@enron.com 2000-07-31
## 9084 mark.e.taylor@enron.com 2000-07-28
## 9085 mark.e.taylor@enron.com 2000-07-28
## 9086 mark.e.taylor@enron.com 2000-07-28
## 9087 mark.e.taylor@enron.com 2000-07-28
## 9088 mark.e.taylor@enron.com 2000-07-28
## 9089 mark.e.taylor@enron.com 2000-07-28
## 9090 mark.e.taylor@enron.com 2000-07-28
## 9091 mark.e.taylor@enron.com 2000-07-28
## 9092 mark.e.taylor@enron.com 2000-07-28
## 9093 mark.e.taylor@enron.com 2000-07-28
## 9094 mark.e.taylor@enron.com 2000-07-28
## 9095 mark.e.taylor@enron.com 2000-07-28
## 9096 mark.e.taylor@enron.com 2000-07-28
## 9097 mark.e.taylor@enron.com 2000-07-28
## 9098 mark.e.taylor@enron.com 2000-07-28
## 9099 mark.e.taylor@enron.com 2000-07-28
## 9100 mark.e.taylor@enron.com 2000-07-28
## 9101 mark.e.taylor@enron.com 2000-07-28
## 9102 mark.e.taylor@enron.com 2000-07-28
## 9103 mark.e.taylor@enron.com 2000-07-28
## 9104 mark.e.taylor@enron.com 2000-07-28
## 9105 mark.e.taylor@enron.com 2000-07-28
## 9106 mark.e.taylor@enron.com 2000-07-28
## 9107 mark.e.taylor@enron.com 2000-07-28
## 9108 mark.e.taylor@enron.com 2000-07-28
## 9109 mark.e.taylor@enron.com 2000-07-28
## 9110 mark.e.taylor@enron.com 2000-07-28
## 9111 mark.e.taylor@enron.com 2000-07-28
## 9112 mark.e.taylor@enron.com 2000-07-28
## 9113 mark.e.taylor@enron.com 2000-07-28
## 9114 mark.e.taylor@enron.com 2000-07-27
## 9115 mark.e.taylor@enron.com 2000-07-27
## 9116 mark.e.taylor@enron.com 2000-07-27
## 9117 mark.e.taylor@enron.com 2000-07-27
## 9118 mark.e.taylor@enron.com 2000-07-27
## 9119 mark.e.taylor@enron.com 2000-07-27
## 9120 mark.e.taylor@enron.com 2000-07-27
## 9121 mark.e.taylor@enron.com 2000-07-27
## 9122 mark.e.taylor@enron.com 2000-07-27
## 9123 mark.e.taylor@enron.com 2000-07-27
## 9124 mark.e.taylor@enron.com 2000-07-27
## 9125 mark.e.taylor@enron.com 2000-07-27
## 9126 mark.e.taylor@enron.com 2000-07-27
## 9127 mark.e.taylor@enron.com 2000-07-27
## 9128 mark.e.taylor@enron.com 2000-07-27
## 9129 mark.e.taylor@enron.com 2000-07-27
## 9130 mark.e.taylor@enron.com 2000-07-27
## 9131 mark.e.taylor@enron.com 2000-07-27
## 9132 mark.e.taylor@enron.com 2000-07-27
## 9133 mark.e.taylor@enron.com 2000-07-27
## 9134 mark.e.taylor@enron.com 2000-07-27
## 9135 mark.e.taylor@enron.com 2000-07-27
## 9136 mark.e.taylor@enron.com 2000-07-27
## 9137 mark.e.taylor@enron.com 2000-07-27
## 9138 mark.e.taylor@enron.com 2000-07-26
## 9139 mark.e.taylor@enron.com 2000-07-26
## 9140 mark.e.taylor@enron.com 2000-07-26
## 9141 mark.e.taylor@enron.com 2000-07-26
## 9142 mark.e.taylor@enron.com 2000-07-26
## 9143 mark.e.taylor@enron.com 2000-07-26
## 9144 mark.e.taylor@enron.com 2000-07-26
## 9145 mark.e.taylor@enron.com 2000-07-26
## 9146 mark.e.taylor@enron.com 2000-07-26
## 9147 mark.e.taylor@enron.com 2000-07-26
## 9148 mark.e.taylor@enron.com 2000-07-26
## 9149 mark.e.taylor@enron.com 2000-07-26
## 9150 mark.e.taylor@enron.com 2000-07-25
## 9151 mark.e.taylor@enron.com 2000-07-25
## 9152 mark.e.taylor@enron.com 2000-07-25
## 9153 mark.e.taylor@enron.com 2000-07-24
## 9154 mark.e.taylor@enron.com 2000-07-24
## 9155 mark.e.taylor@enron.com 2000-07-24
## 9156 mark.e.taylor@enron.com 2000-07-24
## 9157 mark.e.taylor@enron.com 2000-07-21
## 9158 mark.e.taylor@enron.com 2000-07-21
## 9159 mark.e.taylor@enron.com 2000-07-21
## 9160 mark.e.taylor@enron.com 2000-07-21
## 9161 mark.e.taylor@enron.com 2000-07-20
## 9162 mark.e.taylor@enron.com 2000-07-20
## 9163 mark.e.taylor@enron.com 2000-07-20
## 9164 mark.e.taylor@enron.com 2000-07-20
## 9165 mark.e.taylor@enron.com 2000-07-20
## 9166 mark.e.taylor@enron.com 2000-07-20
## 9167 mark.e.taylor@enron.com 2000-07-20
## 9168 mark.e.taylor@enron.com 2000-07-20
## 9169 mark.e.taylor@enron.com 2000-07-20
## 9170 mark.e.taylor@enron.com 2000-07-19
## 9171 mark.e.taylor@enron.com 2000-07-19
## 9172 mark.e.taylor@enron.com 2000-07-19
## 9173 mark.e.taylor@enron.com 2000-07-19
## 9174 mark.e.taylor@enron.com 2000-07-19
## 9175 mark.e.taylor@enron.com 2000-07-19
## 9176 mark.e.taylor@enron.com 2000-07-19
## 9177 mark.e.taylor@enron.com 2000-07-19
## 9178 mark.e.taylor@enron.com 2000-07-19
## 9179 mark.e.taylor@enron.com 2000-07-19
## 9180 mark.e.taylor@enron.com 2000-07-19
## 9181 mark.e.taylor@enron.com 2000-07-19
## 9182 mark.e.taylor@enron.com 2000-07-19
## 9183 mark.e.taylor@enron.com 2000-07-19
## 9184 mark.e.taylor@enron.com 2000-07-19
## 9185 mark.e.taylor@enron.com 2000-07-19
## 9186 mark.e.taylor@enron.com 2000-07-19
## 9187 mark.e.taylor@enron.com 2000-07-19
## 9188 mark.e.taylor@enron.com 2000-07-19
## 9189 mark.e.taylor@enron.com 2000-07-19
## 9190 mark.e.taylor@enron.com 2000-07-19
## 9191 mark.e.taylor@enron.com 2000-07-18
## 9192 mark.e.taylor@enron.com 2000-07-18
## 9193 mark.e.taylor@enron.com 2000-07-18
## 9194 mark.e.taylor@enron.com 2000-07-18
## 9195 mark.e.taylor@enron.com 2000-07-18
## 9196 mark.e.taylor@enron.com 2000-07-18
## 9197 mark.e.taylor@enron.com 2000-07-18
## 9198 mark.e.taylor@enron.com 2000-07-18
## 9199 mark.e.taylor@enron.com 2000-07-18
## 9200 mark.e.taylor@enron.com 2000-07-17
## 9201 mark.e.taylor@enron.com 2000-07-14
## 9202 mark.e.taylor@enron.com 2000-07-14
## 9203 mark.e.taylor@enron.com 2000-07-14
## 9204 mark.e.taylor@enron.com 2000-07-14
## 9205 mark.e.taylor@enron.com 2000-07-13
## 9206 mark.e.taylor@enron.com 2000-07-13
## 9207 mark.e.taylor@enron.com 2000-07-13
## 9208 mark.e.taylor@enron.com 2000-07-13
## 9209 mark.e.taylor@enron.com 2000-07-13
## 9210 mark.e.taylor@enron.com 2000-07-13
## 9211 mark.e.taylor@enron.com 2000-07-13
## 9212 mark.e.taylor@enron.com 2000-07-13
## 9213 mark.e.taylor@enron.com 2000-07-13
## 9214 mark.e.taylor@enron.com 2000-07-12
## 9215 mark.e.taylor@enron.com 2000-07-12
## 9216 mark.e.taylor@enron.com 2000-07-12
## 9217 mark.e.taylor@enron.com 2000-07-12
## 9218 mark.e.taylor@enron.com 2000-07-12
## 9219 mark.e.taylor@enron.com 2000-07-12
## 9220 mark.e.taylor@enron.com 2000-07-12
## 9221 mark.e.taylor@enron.com 2000-07-12
## 9222 mark.e.taylor@enron.com 2000-07-12
## 9223 mark.e.taylor@enron.com 2000-07-11
## 9224 mark.e.taylor@enron.com 2000-07-11
## 9225 mark.e.taylor@enron.com 2000-07-11
## 9226 mark.e.taylor@enron.com 2000-07-10
## 9227 mark.e.taylor@enron.com 2000-07-10
## 9228 mark.e.taylor@enron.com 2000-07-10
## 9229 mark.e.taylor@enron.com 2000-07-10
## 9230 mark.e.taylor@enron.com 2000-07-10
## 9231 mark.e.taylor@enron.com 2000-07-10
## 9232 mark.e.taylor@enron.com 2000-07-10
## 9233 mark.e.taylor@enron.com 2000-07-10
## 9234 mark.e.taylor@enron.com 2000-07-10
## 9235 mark.e.taylor@enron.com 2000-07-10
## 9236 mark.e.taylor@enron.com 2000-07-10
## 9237 mark.e.taylor@enron.com 2000-07-10
## 9238 mark.e.taylor@enron.com 2000-07-10
## 9239 mark.e.taylor@enron.com 2000-07-10
## 9240 mark.e.taylor@enron.com 2000-07-06
## 9241 mark.e.taylor@enron.com 2000-07-06
## 9242 mark.e.taylor@enron.com 2000-07-06
## 9243 mark.e.taylor@enron.com 2000-07-06
## 9244 mark.e.taylor@enron.com 2000-07-06
## 9245 mark.e.taylor@enron.com 2000-07-05
## 9246 mark.e.taylor@enron.com 2000-07-05
## 9247 mark.e.taylor@enron.com 2000-07-05
## 9248 mark.e.taylor@enron.com 2000-07-05
## 9249 mark.e.taylor@enron.com 2000-07-05
## 9250 mark.e.taylor@enron.com 2000-07-05
## 9251 mark.e.taylor@enron.com 2000-07-05
## 9252 mark.e.taylor@enron.com 2000-07-05
## 9253 mark.e.taylor@enron.com 2000-07-05
## 9254 mark.e.taylor@enron.com 2000-07-05
## 9255 mark.e.taylor@enron.com 2000-07-05
## 9256 mark.e.taylor@enron.com 2000-07-05
## 9257 mark.e.taylor@enron.com 2000-07-05
## 9258 mark.e.taylor@enron.com 2000-07-05
## 9259 mark.e.taylor@enron.com 2000-07-05
## 9260 mark.e.taylor@enron.com 2000-07-05
## 9261 mark.e.taylor@enron.com 2000-06-29
## 9262 mark.e.taylor@enron.com 2000-06-28
## 9263 mark.e.taylor@enron.com 2000-06-28
## 9264 mark.e.taylor@enron.com 2000-06-28
## 9265 mark.e.taylor@enron.com 2000-06-28
## 9266 mark.e.taylor@enron.com 2000-06-28
## 9267 mark.e.taylor@enron.com 2000-06-28
## 9268 mark.e.taylor@enron.com 2000-06-27
## 9269 mark.e.taylor@enron.com 2000-06-26
## 9270 mark.e.taylor@enron.com 2000-06-22
## 9271 mark.e.taylor@enron.com 2000-06-22
## 9272 mark.e.taylor@enron.com 2000-06-22
## 9273 mark.e.taylor@enron.com 2000-06-22
## 9274 mark.e.taylor@enron.com 2000-06-22
## 9275 mark.e.taylor@enron.com 2000-06-20
## 9276 mark.e.taylor@enron.com 2000-06-20
## 9277 mark.e.taylor@enron.com 2000-06-20
## 9278 mark.e.taylor@enron.com 2000-06-20
## 9279 mark.e.taylor@enron.com 2000-06-20
## 9280 mark.e.taylor@enron.com 2000-06-20
## 9281 mark.e.taylor@enron.com 2000-06-20
## 9282 mark.e.taylor@enron.com 2000-06-20
## 9283 mark.e.taylor@enron.com 2000-06-20
## 9284 mark.e.taylor@enron.com 2000-06-20
## 9285 mark.e.taylor@enron.com 2000-06-20
## 9286 mark.e.taylor@enron.com 2000-06-20
## 9287 mark.e.taylor@enron.com 2000-06-20
## 9288 mark.e.taylor@enron.com 2000-06-19
## 9289 mark.e.taylor@enron.com 2000-06-19
## 9290 mark.e.taylor@enron.com 2000-06-19
## 9291 mark.e.taylor@enron.com 2000-06-19
## 9292 mark.e.taylor@enron.com 2000-06-16
## 9293 mark.e.taylor@enron.com 2000-06-16
## 9294 mark.e.taylor@enron.com 2000-06-16
## 9295 mark.e.taylor@enron.com 2000-06-16
## 9296 mark.e.taylor@enron.com 2000-06-16
## 9297 mark.e.taylor@enron.com 2000-06-16
## 9298 mark.e.taylor@enron.com 2000-06-16
## 9299 mark.e.taylor@enron.com 2000-06-16
## 9300 mark.e.taylor@enron.com 2000-06-16
## 9301 mark.e.taylor@enron.com 2000-06-16
## 9302 mark.e.taylor@enron.com 2000-06-16
## 9303 mark.e.taylor@enron.com 2000-06-16
## 9304 mark.e.taylor@enron.com 2000-06-13
## 9305 mark.e.taylor@enron.com 2000-06-13
## 9306 mark.e.taylor@enron.com 2000-06-13
## 9307 mark.e.taylor@enron.com 2000-06-13
## 9308 mark.e.taylor@enron.com 2000-06-13
## 9309 mark.e.taylor@enron.com 2000-06-13
## 9310 mark.e.taylor@enron.com 2000-06-13
## 9311 mark.e.taylor@enron.com 2000-06-13
## 9312 mark.e.taylor@enron.com 2000-06-09
## 9313 mark.e.taylor@enron.com 2000-06-09
## 9314 mark.e.taylor@enron.com 2000-06-08
## 9315 mark.e.taylor@enron.com 2000-06-08
## 9316 mark.e.taylor@enron.com 2000-06-08
## 9317 mark.e.taylor@enron.com 2000-06-08
## 9318 mark.e.taylor@enron.com 2000-06-08
## 9319 mark.e.taylor@enron.com 2000-06-08
## 9320 mark.e.taylor@enron.com 2000-06-08
## 9321 mark.e.taylor@enron.com 2000-06-08
## 9322 mark.e.taylor@enron.com 2000-06-08
## 9323 mark.e.taylor@enron.com 2000-06-08
## 9324 mark.e.taylor@enron.com 2000-06-08
## 9325 mark.e.taylor@enron.com 2000-06-08
## 9326 mark.e.taylor@enron.com 2000-06-07
## 9327 mark.e.taylor@enron.com 2000-06-07
## 9328 mark.e.taylor@enron.com 2000-06-07
## 9329 mark.e.taylor@enron.com 2000-06-06
## 9330 mark.e.taylor@enron.com 2000-06-06
## 9331 mark.e.taylor@enron.com 2000-06-06
## 9332 mark.e.taylor@enron.com 2000-06-06
## 9333 mark.e.taylor@enron.com 2000-06-06
## 9334 mark.e.taylor@enron.com 2000-06-06
## 9335 mark.e.taylor@enron.com 2000-06-06
## 9336 mark.e.taylor@enron.com 2000-06-06
## 9337 mark.e.taylor@enron.com 2000-06-06
## 9338 mark.e.taylor@enron.com 2000-06-02
## 9339 mark.e.taylor@enron.com 2000-06-01
## 9340 mark.e.taylor@enron.com 2000-05-31
## 9341 mark.e.taylor@enron.com 2000-05-31
## 9342 mark.e.taylor@enron.com 2000-05-31
## 9343 mark.e.taylor@enron.com 2000-05-31
## 9344 mark.e.taylor@enron.com 2000-05-31
## 9345 mark.e.taylor@enron.com 2000-05-31
## 9346 mark.e.taylor@enron.com 2000-05-31
## 9347 mark.e.taylor@enron.com 2000-05-31
## 9348 mark.e.taylor@enron.com 2000-05-31
## 9349 mark.e.taylor@enron.com 2000-05-31
## 9350 mark.e.taylor@enron.com 2000-05-31
## 9351 mark.e.taylor@enron.com 2000-05-31
## 9352 mark.e.taylor@enron.com 2000-05-31
## 9353 mark.e.taylor@enron.com 2000-05-31
## 9354 mark.e.taylor@enron.com 2000-05-31
## 9355 mark.e.taylor@enron.com 2000-05-31
## 9356 mark.e.taylor@enron.com 2000-05-31
## 9357 mark.e.taylor@enron.com 2000-05-31
## 9358 mark.e.taylor@enron.com 2000-05-31
## 9359 mark.e.taylor@enron.com 2000-05-31
## 9360 mark.e.taylor@enron.com 2000-05-31
## 9361 mark.e.taylor@enron.com 2000-05-31
## 9362 mark.e.taylor@enron.com 2000-05-31
## 9363 mark.e.taylor@enron.com 2000-05-31
## 9364 mark.e.taylor@enron.com 2000-05-31
## 9365 mark.e.taylor@enron.com 2000-05-31
## 9366 mark.e.taylor@enron.com 2000-05-31
## 9367 mark.e.taylor@enron.com 2000-05-31
## 9368 mark.e.taylor@enron.com 2000-05-30
## 9369 mark.e.taylor@enron.com 2000-05-30
## 9370 mark.e.taylor@enron.com 2000-05-30
## 9371 mark.e.taylor@enron.com 2000-05-30
## 9372 mark.e.taylor@enron.com 2000-05-30
## 9373 mark.e.taylor@enron.com 2000-05-30
## 9374 mark.e.taylor@enron.com 2000-05-30
## 9375 mark.e.taylor@enron.com 2000-05-30
## 9376 mark.e.taylor@enron.com 2000-05-30
## 9377 mark.e.taylor@enron.com 2000-05-30
## 9378 mark.e.taylor@enron.com 2000-05-30
## 9379 mark.e.taylor@enron.com 2000-05-30
## 9380 mark.e.taylor@enron.com 2000-05-26
## 9381 mark.e.taylor@enron.com 2000-05-26
## 9382 mark.e.taylor@enron.com 2000-05-25
## 9383 mark.e.taylor@enron.com 2000-05-25
## 9384 mark.e.taylor@enron.com 2000-05-25
## 9385 mark.e.taylor@enron.com 2000-05-25
## 9386 mark.e.taylor@enron.com 2000-05-25
## 9387 mark.e.taylor@enron.com 2000-05-25
## 9388 mark.e.taylor@enron.com 2000-05-25
## 9389 mark.e.taylor@enron.com 2000-05-25
## 9390 mark.e.taylor@enron.com 2000-05-25
## 9391 mark.e.taylor@enron.com 2000-05-22
## 9392 mark.e.taylor@enron.com 2000-05-22
## 9393 mark.e.taylor@enron.com 2000-05-22
## 9394 mark.e.taylor@enron.com 2000-05-22
## 9395 mark.e.taylor@enron.com 2000-05-19
## 9396 mark.e.taylor@enron.com 2000-05-19
## 9397 mark.e.taylor@enron.com 2000-05-19
## 9398 mark.e.taylor@enron.com 2000-05-18
## 9399 mark.e.taylor@enron.com 2000-05-18
## 9400 mark.e.taylor@enron.com 2000-05-18
## 9401 mark.e.taylor@enron.com 2000-05-18
## 9402 mark.e.taylor@enron.com 2000-05-18
## 9403 mark.e.taylor@enron.com 2000-05-17
## 9404 mark.e.taylor@enron.com 2000-05-17
## 9405 mark.e.taylor@enron.com 2000-05-16
## 9406 mark.e.taylor@enron.com 2000-05-16
## 9407 mark.e.taylor@enron.com 2000-05-16
## 9408 mark.e.taylor@enron.com 2000-05-16
## 9409 mark.e.taylor@enron.com 2000-05-16
## 9410 mark.e.taylor@enron.com 2000-05-16
## 9411 mark.e.taylor@enron.com 2000-05-16
## 9412 mark.e.taylor@enron.com 2000-05-16
## 9413 mark.e.taylor@enron.com 2000-05-16
## 9414 mark.e.taylor@enron.com 2000-05-16
## 9415 mark.e.taylor@enron.com 2000-05-16
## 9416 mark.e.taylor@enron.com 2000-05-16
## 9417 mark.e.taylor@enron.com 2000-05-16
## 9418 mark.e.taylor@enron.com 2000-05-16
## 9419 mark.e.taylor@enron.com 2000-05-16
## 9420 mark.e.taylor@enron.com 2000-05-16
## 9421 mark.e.taylor@enron.com 2000-05-16
## 9422 mark.e.taylor@enron.com 2000-05-16
## 9423 mark.e.taylor@enron.com 2000-05-16
## 9424 mark.e.taylor@enron.com 2000-05-15
## 9425 mark.e.taylor@enron.com 2000-05-15
## 9426 mark.e.taylor@enron.com 2000-05-13
## 9427 mark.e.taylor@enron.com 2000-05-12
## 9428 mark.e.taylor@enron.com 2000-05-11
## 9429 mark.e.taylor@enron.com 2000-05-11
## 9430 mark.e.taylor@enron.com 2000-05-11
## 9431 mark.e.taylor@enron.com 2000-05-11
## 9432 mark.e.taylor@enron.com 2000-05-11
## 9433 mark.e.taylor@enron.com 2000-05-11
## 9434 mark.e.taylor@enron.com 2000-05-10
## 9435 mark.e.taylor@enron.com 2000-05-10
## 9436 mark.e.taylor@enron.com 2000-05-10
## 9437 mark.e.taylor@enron.com 2000-05-10
## 9438 mark.e.taylor@enron.com 2000-05-10
## 9439 mark.e.taylor@enron.com 2000-05-10
## 9440 mark.e.taylor@enron.com 2000-05-10
## 9441 mark.e.taylor@enron.com 2000-05-10
## 9442 mark.e.taylor@enron.com 2000-05-10
## 9443 mark.e.taylor@enron.com 2000-05-10
## 9444 mark.e.taylor@enron.com 2000-05-10
## 9445 mark.e.taylor@enron.com 2000-05-10
## 9446 mark.e.taylor@enron.com 2000-05-10
## 9447 mark.e.taylor@enron.com 2000-05-10
## 9448 mark.e.taylor@enron.com 2000-05-09
## 9449 mark.e.taylor@enron.com 2000-05-09
## 9450 mark.e.taylor@enron.com 2000-05-09
## 9451 mark.e.taylor@enron.com 2000-05-09
## 9452 mark.e.taylor@enron.com 2000-05-09
## 9453 mark.e.taylor@enron.com 2000-05-08
## 9454 mark.e.taylor@enron.com 2000-05-08
## 9455 mark.e.taylor@enron.com 2000-05-08
## 9456 mark.e.taylor@enron.com 2000-05-08
## 9457 mark.e.taylor@enron.com 2000-05-08
## 9458 mark.e.taylor@enron.com 2000-05-03
## 9459 mark.e.taylor@enron.com 2000-05-03
## 9460 mark.e.taylor@enron.com 2000-05-03
## 9461 mark.e.taylor@enron.com 2000-05-03
## 9462 mark.e.taylor@enron.com 2000-05-03
## 9463 mark.e.taylor@enron.com 2000-05-03
## 9464 mark.e.taylor@enron.com 2000-05-02
## 9465 mark.e.taylor@enron.com 2000-05-02
## 9466 mark.e.taylor@enron.com 2000-05-02
## 9467 mark.e.taylor@enron.com 2000-05-02
## 9468 mark.e.taylor@enron.com 2000-05-02
## 9469 mark.e.taylor@enron.com 2000-05-02
## 9470 mark.e.taylor@enron.com 2000-05-02
## 9471 mark.e.taylor@enron.com 2000-05-02
## 9472 mark.e.taylor@enron.com 2000-05-02
## 9473 mark.e.taylor@enron.com 2000-05-02
## 9474 mark.e.taylor@enron.com 2000-05-02
## 9475 mark.e.taylor@enron.com 2000-05-02
## 9476 mark.e.taylor@enron.com 2000-05-01
## 9477 mark.e.taylor@enron.com 2000-05-01
## 9478 mark.e.taylor@enron.com 2000-05-01
## 9479 mark.e.taylor@enron.com 2000-05-01
## 9480 mark.e.taylor@enron.com 2000-05-01
## 9481 mark.e.taylor@enron.com 2000-05-01
## 9482 mark.e.taylor@enron.com 2000-05-01
## 9483 mark.e.taylor@enron.com 2000-05-01
## 9484 mark.e.taylor@enron.com 2000-05-01
## 9485 mark.e.taylor@enron.com 2000-05-01
## 9486 mark.e.taylor@enron.com 2000-05-01
## 9487 mark.e.taylor@enron.com 2000-05-01
## 9488 mark.e.taylor@enron.com 2000-05-01
## 9489 mark.e.taylor@enron.com 2000-05-01
## 9490 mark.e.taylor@enron.com 2000-05-01
## 9491 mark.e.taylor@enron.com 2000-04-28
## 9492 mark.e.taylor@enron.com 2000-04-28
## 9493 mark.e.taylor@enron.com 2000-04-28
## 9494 mark.e.taylor@enron.com 2000-04-28
## 9495 mark.e.taylor@enron.com 2000-04-28
## 9496 mark.e.taylor@enron.com 2000-04-28
## 9497 mark.e.taylor@enron.com 2000-04-28
## 9498 mark.e.taylor@enron.com 2000-04-28
## 9499 mark.e.taylor@enron.com 2000-04-28
## 9500 mark.e.taylor@enron.com 2000-04-28
## 9501 mark.e.taylor@enron.com 2000-04-28
## 9502 mark.e.taylor@enron.com 2000-04-28
## 9503 mark.e.taylor@enron.com 2000-04-28
## 9504 mark.e.taylor@enron.com 2000-04-28
## 9505 mark.e.taylor@enron.com 2000-04-28
## 9506 mark.e.taylor@enron.com 2000-04-28
## 9507 mark.e.taylor@enron.com 2000-04-28
## 9508 mark.e.taylor@enron.com 2000-04-28
## 9509 mark.e.taylor@enron.com 2000-04-28
## 9510 mark.e.taylor@enron.com 2000-04-28
## 9511 mark.e.taylor@enron.com 2000-04-28
## 9512 mark.e.taylor@enron.com 2000-04-28
## 9513 mark.e.taylor@enron.com 2000-04-28
## 9514 mark.e.taylor@enron.com 2000-04-28
## 9515 mark.e.taylor@enron.com 2000-04-28
## 9516 mark.e.taylor@enron.com 2000-04-28
## 9517 mark.e.taylor@enron.com 2000-04-28
## 9518 mark.e.taylor@enron.com 2000-04-27
## 9519 mark.e.taylor@enron.com 2000-04-27
## 9520 mark.e.taylor@enron.com 2000-04-27
## 9521 mark.e.taylor@enron.com 2000-04-27
## 9522 mark.e.taylor@enron.com 2000-04-27
## 9523 mark.e.taylor@enron.com 2000-04-27
## 9524 mark.e.taylor@enron.com 2000-04-27
## 9525 mark.e.taylor@enron.com 2000-04-27
## 9526 mark.e.taylor@enron.com 2000-04-27
## 9527 mark.e.taylor@enron.com 2000-04-27
## 9528 mark.e.taylor@enron.com 2000-04-27
## 9529 mark.e.taylor@enron.com 2000-04-27
## 9530 mark.e.taylor@enron.com 2000-04-27
## 9531 mark.e.taylor@enron.com 2000-04-27
## 9532 mark.e.taylor@enron.com 2000-04-27
## 9533 mark.e.taylor@enron.com 2000-04-27
## 9534 mark.e.taylor@enron.com 2000-04-26
## 9535 mark.e.taylor@enron.com 2000-04-26
## 9536 mark.e.taylor@enron.com 2000-04-26
## 9537 mark.e.taylor@enron.com 2000-04-26
## 9538 mark.e.taylor@enron.com 2000-04-26
## 9539 mark.e.taylor@enron.com 2000-04-26
## 9540 mark.e.taylor@enron.com 2000-04-26
## 9541 mark.e.taylor@enron.com 2000-04-26
## 9542 mark.e.taylor@enron.com 2000-04-26
## 9543 mark.e.taylor@enron.com 2000-04-26
## 9544 mark.e.taylor@enron.com 2000-04-26
## 9545 mark.e.taylor@enron.com 2000-04-26
## 9546 mark.e.taylor@enron.com 2000-04-26
## 9547 mark.e.taylor@enron.com 2000-04-26
## 9548 mark.e.taylor@enron.com 2000-04-26
## 9549 mark.e.taylor@enron.com 2000-04-26
## 9550 mark.e.taylor@enron.com 2000-04-26
## 9551 mark.e.taylor@enron.com 2000-04-26
## 9552 mark.e.taylor@enron.com 2000-04-26
## 9553 mark.e.taylor@enron.com 2000-04-26
## 9554 mark.e.taylor@enron.com 2000-04-26
## 9555 mark.e.taylor@enron.com 2000-04-21
## 9556 mark.e.taylor@enron.com 2000-04-21
## 9557 mark.e.taylor@enron.com 2000-04-21
## 9558 mark.e.taylor@enron.com 2000-04-21
## 9559 mark.e.taylor@enron.com 2000-04-21
## 9560 mark.e.taylor@enron.com 2000-04-21
## 9561 mark.e.taylor@enron.com 2000-04-20
## 9562 mark.e.taylor@enron.com 2000-04-20
## 9563 mark.e.taylor@enron.com 2000-04-20
## 9564 mark.e.taylor@enron.com 2000-04-20
## 9565 mark.e.taylor@enron.com 2000-04-20
## 9566 mark.e.taylor@enron.com 2000-04-20
## 9567 mark.e.taylor@enron.com 2000-04-20
## 9568 mark.e.taylor@enron.com 2000-04-20
## 9569 mark.e.taylor@enron.com 2000-04-20
## 9570 mark.e.taylor@enron.com 2000-04-20
## 9571 mark.e.taylor@enron.com 2000-04-20
## 9572 mark.e.taylor@enron.com 2000-04-20
## 9573 mark.e.taylor@enron.com 2000-04-18
## 9574 mark.e.taylor@enron.com 2000-04-18
## 9575 mark.e.taylor@enron.com 2000-04-18
## 9576 mark.e.taylor@enron.com 2000-04-18
## 9577 mark.e.taylor@enron.com 2000-04-17
## 9578 mark.e.taylor@enron.com 2000-04-17
## 9579 mark.e.taylor@enron.com 2000-04-17
## 9580 mark.e.taylor@enron.com 2000-04-17
## 9581 mark.e.taylor@enron.com 2000-04-17
## 9582 mark.e.taylor@enron.com 2000-04-17
## 9583 mark.e.taylor@enron.com 2000-04-17
## 9584 mark.e.taylor@enron.com 2000-04-17
## 9585 mark.e.taylor@enron.com 2000-04-17
## 9586 mark.e.taylor@enron.com 2000-04-17
## 9587 mark.e.taylor@enron.com 2000-04-17
## 9588 mark.e.taylor@enron.com 2000-04-17
## 9589 mark.e.taylor@enron.com 2000-04-17
## 9590 mark.e.taylor@enron.com 2000-04-17
## 9591 mark.e.taylor@enron.com 2000-04-11
## 9592 mark.e.taylor@enron.com 2000-04-11
## 9593 mark.e.taylor@enron.com 2000-04-11
## 9594 mark.e.taylor@enron.com 2000-04-11
## 9595 mark.e.taylor@enron.com 2000-04-11
## 9596 mark.e.taylor@enron.com 2000-04-10
## 9597 mark.e.taylor@enron.com 2000-04-10
## 9598 mark.e.taylor@enron.com 2000-04-10
## 9599 mark.e.taylor@enron.com 2000-04-10
## 9600 mark.e.taylor@enron.com 2000-04-09
## 9601 mark.e.taylor@enron.com 2000-04-09
## 9602 mark.e.taylor@enron.com 2000-04-09
## 9603 mark.e.taylor@enron.com 2000-04-09
## 9604 mark.e.taylor@enron.com 2000-04-09
## 9605 mark.e.taylor@enron.com 2000-04-09
## 9606 mark.e.taylor@enron.com 2000-04-09
## 9607 mark.e.taylor@enron.com 2000-04-09
## 9608 mark.e.taylor@enron.com 2000-04-09
## 9609 mark.e.taylor@enron.com 2000-04-05
## 9610 mark.e.taylor@enron.com 2000-04-05
## 9611 mark.e.taylor@enron.com 2000-04-05
## 9612 mark.e.taylor@enron.com 2000-04-05
## 9613 mark.e.taylor@enron.com 2000-04-05
## 9614 mark.e.taylor@enron.com 2000-04-04
## 9615 mark.e.taylor@enron.com 2000-04-04
## 9616 mark.e.taylor@enron.com 2000-04-03
## 9617 mark.e.taylor@enron.com 2000-04-03
## 9618 mark.e.taylor@enron.com 2000-04-03
## 9619 mark.e.taylor@enron.com 2000-03-30
## 9620 mark.e.taylor@enron.com 2000-03-30
## 9621 mark.e.taylor@enron.com 2000-03-30
## 9622 mark.e.taylor@enron.com 2000-03-29
## 9623 mark.e.taylor@enron.com 2000-03-29
## 9624 mark.e.taylor@enron.com 2000-03-29
## 9625 mark.e.taylor@enron.com 2000-03-29
## 9626 mark.e.taylor@enron.com 2000-03-28
## 9627 mark.e.taylor@enron.com 2000-03-28
## 9628 mark.e.taylor@enron.com 2000-03-28
## 9629 mark.e.taylor@enron.com 2000-03-28
## 9630 mark.e.taylor@enron.com 2000-03-28
## 9631 mark.e.taylor@enron.com 2000-03-28
## 9632 mark.e.taylor@enron.com 2000-03-28
## 9633 mark.e.taylor@enron.com 2000-03-28
## 9634 mark.e.taylor@enron.com 2000-03-28
## 9635 mark.e.taylor@enron.com 2000-03-27
## 9636 mark.e.taylor@enron.com 2000-03-24
## 9637 mark.e.taylor@enron.com 2000-03-24
## 9638 mark.e.taylor@enron.com 2000-03-23
## 9639 mark.e.taylor@enron.com 2000-03-23
## 9640 mark.e.taylor@enron.com 2000-03-23
## 9641 mark.e.taylor@enron.com 2000-03-21
## 9642 mark.e.taylor@enron.com 2000-03-21
## 9643 mark.e.taylor@enron.com 2000-03-21
## 9644 mark.e.taylor@enron.com 2000-03-21
## 9645 mark.e.taylor@enron.com 2000-03-21
## 9646 mark.e.taylor@enron.com 2000-03-20
## 9647 mark.e.taylor@enron.com 2000-03-20
## 9648 mark.e.taylor@enron.com 2000-03-20
## 9649 mark.e.taylor@enron.com 2000-03-15
## 9650 mark.e.taylor@enron.com 2000-03-15
## 9651 mark.e.taylor@enron.com 2000-03-15
## 9652 mark.e.taylor@enron.com 2000-03-15
## 9653 mark.e.taylor@enron.com 2000-03-15
## 9654 mark.e.taylor@enron.com 2000-03-15
## 9655 mark.e.taylor@enron.com 2000-03-15
## 9656 mark.e.taylor@enron.com 2000-03-15
## 9657 mark.e.taylor@enron.com 2000-03-15
## 9658 mark.e.taylor@enron.com 2000-03-15
## 9659 mark.e.taylor@enron.com 2000-03-15
## 9660 mark.e.taylor@enron.com 2000-03-15
## 9661 mark.e.taylor@enron.com 2000-03-13
## 9662 mark.e.taylor@enron.com 2000-03-13
## 9663 mark.e.taylor@enron.com 2000-03-13
## 9664 mark.e.taylor@enron.com 2000-03-13
## 9665 mark.e.taylor@enron.com 2000-03-13
## 9666 mark.e.taylor@enron.com 2000-03-13
## 9667 mark.e.taylor@enron.com 2000-03-13
## 9668 mark.e.taylor@enron.com 2000-03-12
## 9669 mark.e.taylor@enron.com 2000-03-12
## 9670 mark.e.taylor@enron.com 2000-03-12
## 9671 mark.e.taylor@enron.com 2000-03-12
## 9672 mark.e.taylor@enron.com 2000-03-12
## 9673 mark.e.taylor@enron.com 2000-03-07
## 9674 mark.e.taylor@enron.com 2000-03-06
## 9675 mark.e.taylor@enron.com 2000-03-06
## 9676 mark.e.taylor@enron.com 2000-03-06
## 9677 mark.e.taylor@enron.com 2000-03-03
## 9678 mark.e.taylor@enron.com 2000-03-03
## 9679 mark.e.taylor@enron.com 2000-03-03
## 9680 mark.e.taylor@enron.com 2000-03-03
## 9681 mark.e.taylor@enron.com 2000-03-03
## 9682 mark.e.taylor@enron.com 2000-03-03
## 9683 mark.e.taylor@enron.com 2000-03-03
## 9684 mark.e.taylor@enron.com 2000-03-03
## 9685 mark.e.taylor@enron.com 2000-03-03
## 9686 mark.e.taylor@enron.com 2000-03-03
## 9687 mark.e.taylor@enron.com 2000-03-03
## 9688 mark.e.taylor@enron.com 2000-03-03
## 9689 mark.e.taylor@enron.com 2000-03-03
## 9690 mark.e.taylor@enron.com 2000-03-01
## 9691 mark.e.taylor@enron.com 2000-03-01
## 9692 mark.e.taylor@enron.com 2000-03-01
## 9693 mark.e.taylor@enron.com 2000-03-01
## 9694 mark.e.taylor@enron.com 2000-03-01
## 9695 mark.e.taylor@enron.com 2000-03-01
## 9696 mark.e.taylor@enron.com 2000-03-01
## 9697 mark.e.taylor@enron.com 2000-03-01
## 9698 mark.e.taylor@enron.com 2000-03-01
## 9699 mark.e.taylor@enron.com 2000-03-01
## 9700 mark.e.taylor@enron.com 2000-03-01
## 9701 mark.e.taylor@enron.com 2000-03-01
## 9702 mark.e.taylor@enron.com 2000-03-01
## 9703 mark.e.taylor@enron.com 2000-03-01
## 9704 mark.e.taylor@enron.com 2000-03-01
## 9705 mark.e.taylor@enron.com 2000-02-28
## 9706 mark.e.taylor@enron.com 2000-02-28
## 9707 mark.e.taylor@enron.com 2000-02-28
## 9708 mark.e.taylor@enron.com 2000-02-28
## 9709 mark.e.taylor@enron.com 2000-02-28
## 9710 mark.e.taylor@enron.com 2000-02-28
## 9711 mark.e.taylor@enron.com 2000-02-28
## 9712 mark.e.taylor@enron.com 2000-02-28
## 9713 mark.e.taylor@enron.com 2000-02-28
## 9714 mark.e.taylor@enron.com 2000-02-28
## 9715 mark.e.taylor@enron.com 2000-02-28
## 9716 mark.e.taylor@enron.com 2000-02-28
## 9717 mark.e.taylor@enron.com 2000-02-28
## 9718 mark.e.taylor@enron.com 2000-02-28
## 9719 mark.e.taylor@enron.com 2000-02-28
## 9720 mark.e.taylor@enron.com 2000-02-28
## 9721 mark.e.taylor@enron.com 2000-02-28
## 9722 mark.e.taylor@enron.com 2000-02-28
## 9723 mark.e.taylor@enron.com 2000-02-28
## 9724 mark.e.taylor@enron.com 2000-02-28
## 9725 mark.e.taylor@enron.com 2000-02-25
## 9726 mark.e.taylor@enron.com 2000-02-25
## 9727 mark.e.taylor@enron.com 2000-02-25
## 9728 mark.e.taylor@enron.com 2000-02-25
## 9729 mark.e.taylor@enron.com 2000-02-24
## 9730 mark.e.taylor@enron.com 2000-02-24
## 9731 mark.e.taylor@enron.com 2000-02-24
## 9732 mark.e.taylor@enron.com 2000-02-24
## 9733 mark.e.taylor@enron.com 2000-02-24
## 9734 mark.e.taylor@enron.com 2000-02-24
## 9735 mark.e.taylor@enron.com 2000-02-24
## 9736 mark.e.taylor@enron.com 2000-02-24
## 9737 mark.e.taylor@enron.com 2000-02-24
## 9738 mark.e.taylor@enron.com 2000-02-24
## 9739 mark.e.taylor@enron.com 2000-02-24
## 9740 mark.e.taylor@enron.com 2000-02-24
## 9741 mark.e.taylor@enron.com 2000-02-24
## 9742 mark.e.taylor@enron.com 2000-02-24
## 9743 mark.e.taylor@enron.com 2000-02-24
## 9744 mark.e.taylor@enron.com 2000-02-24
## 9745 mark.e.taylor@enron.com 2000-02-24
## 9746 mark.e.taylor@enron.com 2000-02-22
## 9747 mark.e.taylor@enron.com 2000-02-22
## 9748 mark.e.taylor@enron.com 2000-02-22
## 9749 mark.e.taylor@enron.com 2000-02-22
## 9750 mark.e.taylor@enron.com 2000-02-22
## 9751 mark.e.taylor@enron.com 2000-02-22
## 9752 mark.e.taylor@enron.com 2000-02-22
## 9753 mark.e.taylor@enron.com 2000-02-22
## 9754 mark.e.taylor@enron.com 2000-02-22
## 9755 mark.e.taylor@enron.com 2000-02-22
## 9756 mark.e.taylor@enron.com 2000-02-22
## 9757 mark.e.taylor@enron.com 2000-02-22
## 9758 mark.e.taylor@enron.com 2000-02-22
## 9759 mark.e.taylor@enron.com 2000-02-22
## 9760 mark.e.taylor@enron.com 2000-02-22
## 9761 mark.e.taylor@enron.com 2000-02-22
## 9762 mark.e.taylor@enron.com 2000-02-22
## 9763 mark.e.taylor@enron.com 2000-02-22
## 9764 mark.e.taylor@enron.com 2000-02-22
## 9765 mark.e.taylor@enron.com 2000-02-22
## 9766 mark.e.taylor@enron.com 2000-02-22
## 9767 mark.e.taylor@enron.com 2000-02-22
## 9768 mark.e.taylor@enron.com 2000-02-22
## 9769 mark.e.taylor@enron.com 2000-02-22
## 9770 mark.e.taylor@enron.com 2000-02-22
## 9771 mark.e.taylor@enron.com 2000-02-22
## 9772 mark.e.taylor@enron.com 2000-02-22
## 9773 mark.e.taylor@enron.com 2000-02-22
## 9774 mark.e.taylor@enron.com 2000-02-22
## 9775 mark.e.taylor@enron.com 2000-02-22
## 9776 mark.e.taylor@enron.com 2000-02-22
## 9777 mark.e.taylor@enron.com 2000-02-22
## 9778 mark.e.taylor@enron.com 2000-02-22
## 9779 mark.e.taylor@enron.com 2000-02-22
## 9780 mark.e.taylor@enron.com 2000-02-22
## 9781 mark.e.taylor@enron.com 2000-02-22
## 9782 mark.e.taylor@enron.com 2000-02-22
## 9783 mark.e.taylor@enron.com 2000-02-22
## 9784 mark.e.taylor@enron.com 2000-02-21
## 9785 mark.e.taylor@enron.com 2000-02-21
## 9786 mark.e.taylor@enron.com 2000-02-19
## 9787 mark.e.taylor@enron.com 2000-02-18
## 9788 mark.e.taylor@enron.com 2000-02-17
## 9789 mark.e.taylor@enron.com 2000-02-17
## 9790 mark.e.taylor@enron.com 2000-02-17
## 9791 mark.e.taylor@enron.com 2000-02-17
## 9792 mark.e.taylor@enron.com 2000-02-17
## 9793 mark.e.taylor@enron.com 2000-02-17
## 9794 mark.e.taylor@enron.com 2000-02-17
## 9795 mark.e.taylor@enron.com 2000-02-17
## 9796 mark.e.taylor@enron.com 2000-02-17
## 9797 mark.e.taylor@enron.com 2000-02-17
## 9798 mark.e.taylor@enron.com 2000-02-16
## 9799 mark.e.taylor@enron.com 2000-02-16
## 9800 mark.e.taylor@enron.com 2000-02-16
## 9801 mark.e.taylor@enron.com 2000-02-16
## 9802 mark.e.taylor@enron.com 2000-02-16
## 9803 mark.e.taylor@enron.com 2000-02-16
## 9804 mark.e.taylor@enron.com 2000-02-16
## 9805 mark.e.taylor@enron.com 2000-02-16
## 9806 mark.e.taylor@enron.com 2000-02-16
## 9807 mark.e.taylor@enron.com 2000-02-16
## 9808 mark.e.taylor@enron.com 2000-02-16
## 9809 mark.e.taylor@enron.com 2000-02-16
## 9810 mark.e.taylor@enron.com 2000-02-16
## 9811 mark.e.taylor@enron.com 2000-02-15
## 9812 mark.e.taylor@enron.com 2000-02-15
## 9813 mark.e.taylor@enron.com 2000-02-15
## 9814 mark.e.taylor@enron.com 2000-02-15
## 9815 mark.e.taylor@enron.com 2000-02-15
## 9816 mark.e.taylor@enron.com 2000-02-15
## 9817 mark.e.taylor@enron.com 2000-02-15
## 9818 mark.e.taylor@enron.com 2000-02-15
## 9819 mark.e.taylor@enron.com 2000-02-15
## 9820 mark.e.taylor@enron.com 2000-02-15
## 9821 mark.e.taylor@enron.com 2000-02-14
## 9822 mark.e.taylor@enron.com 2000-02-14
## 9823 mark.e.taylor@enron.com 2000-02-14
## 9824 mark.e.taylor@enron.com 2000-02-14
## 9825 mark.e.taylor@enron.com 2000-02-14
## 9826 mark.e.taylor@enron.com 2000-02-14
## 9827 mark.e.taylor@enron.com 2000-02-14
## 9828 mark.e.taylor@enron.com 2000-02-13
## 9829 mark.e.taylor@enron.com 2000-02-11
## 9830 mark.e.taylor@enron.com 2000-02-11
## 9831 mark.e.taylor@enron.com 2000-02-11
## 9832 mark.e.taylor@enron.com 2000-02-11
## 9833 mark.e.taylor@enron.com 2000-02-11
## 9834 mark.e.taylor@enron.com 2000-02-11
## 9835 mark.e.taylor@enron.com 2000-02-11
## 9836 mark.e.taylor@enron.com 2000-02-11
## 9837 mark.e.taylor@enron.com 2000-02-11
## 9838 mark.e.taylor@enron.com 2000-02-11
## 9839 mark.e.taylor@enron.com 2000-02-10
## 9840 mark.e.taylor@enron.com 2000-02-10
## 9841 mark.e.taylor@enron.com 2000-02-08
## 9842 mark.e.taylor@enron.com 2000-02-08
## 9843 mark.e.taylor@enron.com 2000-02-04
## 9844 mark.e.taylor@enron.com 2000-02-04
## 9845 mark.e.taylor@enron.com 2000-02-04
## 9846 mark.e.taylor@enron.com 2000-02-04
## 9847 mark.e.taylor@enron.com 2000-02-04
## 9848 mark.e.taylor@enron.com 2000-02-04
## 9849 mark.e.taylor@enron.com 2000-02-04
## 9850 mark.e.taylor@enron.com 2000-02-04
## 9851 mark.e.taylor@enron.com 2000-02-04
## 9852 mark.e.taylor@enron.com 2000-02-03
## 9853 mark.e.taylor@enron.com 2000-02-01
## 9854 mark.e.taylor@enron.com 2000-01-31
## 9855 mark.e.taylor@enron.com 2000-01-31
## 9856 mark.e.taylor@enron.com 2000-01-31
## 9857 mark.e.taylor@enron.com 2000-01-31
## 9858 mark.e.taylor@enron.com 2000-01-28
## 9859 mark.e.taylor@enron.com 2000-01-28
## 9860 mark.e.taylor@enron.com 2000-01-28
## 9861 mark.e.taylor@enron.com 2000-01-28
## 9862 mark.e.taylor@enron.com 2000-01-28
## 9863 mark.e.taylor@enron.com 2000-01-28
## 9864 mark.e.taylor@enron.com 2000-01-27
## 9865 mark.e.taylor@enron.com 2000-01-27
## 9866 mark.e.taylor@enron.com 2000-01-27
## 9867 mark.e.taylor@enron.com 2000-01-27
## 9868 mark.e.taylor@enron.com 2000-01-27
## 9869 mark.e.taylor@enron.com 2000-01-27
## 9870 mark.e.taylor@enron.com 2000-01-26
## 9871 mark.e.taylor@enron.com 2000-01-26
## 9872 mark.e.taylor@enron.com 2000-01-26
## 9873 mark.e.taylor@enron.com 2000-01-26
## 9874 mark.e.taylor@enron.com 2000-01-25
## 9875 mark.e.taylor@enron.com 2000-01-25
## 9876 mark.e.taylor@enron.com 2000-01-25
## 9877 mark.e.taylor@enron.com 2000-01-25
## 9878 mark.e.taylor@enron.com 2000-01-25
## 9879 mark.e.taylor@enron.com 2000-01-25
## 9880 mark.e.taylor@enron.com 2000-01-25
## 9881 mark.e.taylor@enron.com 2000-01-25
## 9882 mark.e.taylor@enron.com 2000-01-25
## 9883 mark.e.taylor@enron.com 2000-01-25
## 9884 mark.e.taylor@enron.com 2000-01-25
## 9885 mark.e.taylor@enron.com 2000-01-25
## 9886 mark.e.taylor@enron.com 2000-01-25
## 9887 mark.e.taylor@enron.com 2000-01-24
## 9888 mark.e.taylor@enron.com 2000-01-24
## 9889 mark.e.taylor@enron.com 2000-01-21
## 9890 mark.e.taylor@enron.com 2000-01-21
## 9891 mark.e.taylor@enron.com 2000-01-21
## 9892 mark.e.taylor@enron.com 2000-01-21
## 9893 mark.e.taylor@enron.com 2000-01-21
## 9894 mark.e.taylor@enron.com 2000-01-21
## 9895 mark.e.taylor@enron.com 2000-01-21
## 9896 mark.e.taylor@enron.com 2000-01-21
## 9897 mark.e.taylor@enron.com 2000-01-21
## 9898 mark.e.taylor@enron.com 2000-01-20
## 9899 mark.e.taylor@enron.com 2000-01-20
## 9900 mark.e.taylor@enron.com 2000-01-20
## 9901 mark.e.taylor@enron.com 2000-01-20
## 9902 mark.e.taylor@enron.com 2000-01-20
## 9903 mark.e.taylor@enron.com 2000-01-20
## 9904 mark.e.taylor@enron.com 2000-01-20
## 9905 mark.e.taylor@enron.com 2000-01-20
## 9906 mark.e.taylor@enron.com 2000-01-19
## 9907 mark.e.taylor@enron.com 2000-01-19
## 9908 mark.e.taylor@enron.com 2000-01-19
## 9909 mark.e.taylor@enron.com 2000-01-19
## 9910 mark.e.taylor@enron.com 2000-01-19
## 9911 mark.e.taylor@enron.com 2000-01-19
## 9912 mark.e.taylor@enron.com 2000-01-19
## 9913 mark.e.taylor@enron.com 2000-01-19
## 9914 mark.e.taylor@enron.com 2000-01-19
## 9915 mark.e.taylor@enron.com 2000-01-19
## 9916 mark.e.taylor@enron.com 2000-01-18
## 9917 mark.e.taylor@enron.com 2000-01-18
## 9918 mark.e.taylor@enron.com 2000-01-18
## 9919 mark.e.taylor@enron.com 2000-01-18
## 9920 mark.e.taylor@enron.com 2000-01-18
## 9921 mark.e.taylor@enron.com 2000-01-18
## 9922 mark.e.taylor@enron.com 2000-01-18
## 9923 mark.e.taylor@enron.com 2000-01-18
## 9924 mark.e.taylor@enron.com 2000-01-18
## 9925 mark.e.taylor@enron.com 2000-01-18
## 9926 mark.e.taylor@enron.com 2000-01-18
## 9927 mark.e.taylor@enron.com 2000-01-18
## 9928 mark.e.taylor@enron.com 2000-01-18
## 9929 mark.e.taylor@enron.com 2000-01-18
## 9930 mark.e.taylor@enron.com 2000-01-18
## 9931 mark.e.taylor@enron.com 2000-01-18
## 9932 mark.e.taylor@enron.com 2000-01-18
## 9933 mark.e.taylor@enron.com 2000-01-18
## 9934 mark.e.taylor@enron.com 2000-01-17
## 9935 mark.e.taylor@enron.com 2000-01-17
## 9936 mark.e.taylor@enron.com 2000-01-17
## 9937 mark.e.taylor@enron.com 2000-01-17
## 9938 mark.e.taylor@enron.com 2000-01-17
## 9939 mark.e.taylor@enron.com 2000-01-17
## 9940 mark.e.taylor@enron.com 2000-01-17
## 9941 mark.e.taylor@enron.com 2000-01-17
## 9942 mark.e.taylor@enron.com 2000-01-17
## 9943 mark.e.taylor@enron.com 2000-01-14
## 9944 mark.e.taylor@enron.com 2000-01-11
## 9945 mark.e.taylor@enron.com 2000-01-11
## 9946 mark.e.taylor@enron.com 2000-01-11
## 9947 mark.e.taylor@enron.com 2000-01-11
## 9948 mark.e.taylor@enron.com 2000-01-11
## 9949 mark.e.taylor@enron.com 2000-01-11
## 9950 mark.e.taylor@enron.com 2000-01-11
## 9951 mark.e.taylor@enron.com 2000-01-11
## 9952 mark.e.taylor@enron.com 2000-01-11
## 9953 mark.e.taylor@enron.com 2000-01-11
## 9954 mark.e.taylor@enron.com 2000-01-11
## 9955 mark.e.taylor@enron.com 2000-01-11
## 9956 mark.e.taylor@enron.com 2000-01-11
## 9957 mark.e.taylor@enron.com 2000-01-11
## 9958 mark.e.taylor@enron.com 2000-01-11
## 9959 mark.e.taylor@enron.com 2000-01-11
## 9960 mark.e.taylor@enron.com 2000-01-10
## 9961 mark.e.taylor@enron.com 2000-01-07
## 9962 mark.e.taylor@enron.com 2000-01-07
## 9963 mark.e.taylor@enron.com 2000-01-07
## 9964 mark.e.taylor@enron.com 2000-01-07
## 9965 mark.e.taylor@enron.com 2000-01-07
## 9966 mark.e.taylor@enron.com 2000-01-06
## 9967 mark.e.taylor@enron.com 2000-01-06
## 9968 mark.e.taylor@enron.com 2000-01-06
## 9969 mark.e.taylor@enron.com 2000-01-06
## 9970 mark.e.taylor@enron.com 2000-01-06
## 9971 mark.e.taylor@enron.com 2000-01-06
## 9972 mark.e.taylor@enron.com 2000-01-05
## 9973 mark.e.taylor@enron.com 2000-01-05
## 9974 mark.e.taylor@enron.com 2000-01-04
## 9975 mark.e.taylor@enron.com 2000-01-04
## 9976 mark.e.taylor@enron.com 2000-01-04
## 9977 mark.e.taylor@enron.com 1999-12-30
## 9978 mark.e.taylor@enron.com 1999-12-29
## 9979 mark.e.taylor@enron.com 1999-12-29
## 9980 mark.e.taylor@enron.com 1999-12-28
## 9981 mark.e.taylor@enron.com 1999-12-27
## 9982 mark.e.taylor@enron.com 1999-12-27
## 9983 mark.e.taylor@enron.com 1999-12-27
## 9984 mark.e.taylor@enron.com 1999-12-27
## 9985 mark.e.taylor@enron.com 1999-12-27
## 9986 mark.e.taylor@enron.com 1999-12-22
## 9987 mark.e.taylor@enron.com 1999-12-22
## 9988 mark.e.taylor@enron.com 1999-12-22
## 9989 mark.e.taylor@enron.com 1999-12-22
## 9990 mark.e.taylor@enron.com 1999-12-22
## 9991 mark.e.taylor@enron.com 1999-12-22
## 9992 mark.e.taylor@enron.com 1999-12-22
## 9993 mark.e.taylor@enron.com 1999-12-22
## 9994 mark.e.taylor@enron.com 1999-12-22
## 9995 mark.e.taylor@enron.com 1999-12-22
## 9996 mark.e.taylor@enron.com 1999-12-21
## 9997 mark.e.taylor@enron.com 1999-12-21
## 9998 mark.e.taylor@enron.com 1999-12-21
## 9999 mark.e.taylor@enron.com 1999-12-21
## 10000 mark.e.taylor@enron.com 1999-12-21
## 10001 mark.e.taylor@enron.com 1999-12-21
## 10002 mark.e.taylor@enron.com 1999-12-21
## 10003 mark.e.taylor@enron.com 1999-12-21
## 10004 mark.e.taylor@enron.com 1999-12-21
## 10005 mark.e.taylor@enron.com 1999-12-21
## 10006 mark.e.taylor@enron.com 1999-12-21
## 10007 mark.e.taylor@enron.com 1999-12-21
## 10008 mark.e.taylor@enron.com 1999-12-21
## 10009 mark.e.taylor@enron.com 1999-12-20
## 10010 mark.e.taylor@enron.com 1999-12-20
## 10011 mark.e.taylor@enron.com 1999-12-20
## 10012 mark.e.taylor@enron.com 1999-12-17
## 10013 mark.e.taylor@enron.com 1999-12-17
## 10014 mark.e.taylor@enron.com 1999-12-17
## 10015 mark.e.taylor@enron.com 1999-12-17
## 10016 mark.e.taylor@enron.com 1999-12-17
## 10017 mark.e.taylor@enron.com 1999-12-16
## 10018 mark.e.taylor@enron.com 1999-12-16
## 10019 mark.e.taylor@enron.com 1999-12-16
## 10020 mark.e.taylor@enron.com 1999-12-15
## 10021 mark.e.taylor@enron.com 1999-12-15
## 10022 mark.e.taylor@enron.com 1999-12-15
## 10023 mark.e.taylor@enron.com 1999-12-14
## 10024 mark.e.taylor@enron.com 1999-12-14
## 10025 mark.e.taylor@enron.com 1999-12-14
## 10026 mark.e.taylor@enron.com 1999-12-14
## 10027 mark.e.taylor@enron.com 1999-12-14
## 10028 mark.e.taylor@enron.com 1999-12-14
## 10029 mark.e.taylor@enron.com 1999-12-14
## 10030 mark.e.taylor@enron.com 1999-12-14
## 10031 mark.e.taylor@enron.com 1999-12-14
## 10032 mark.e.taylor@enron.com 1999-12-14
## 10033 mark.e.taylor@enron.com 1999-12-14
## 10034 mark.e.taylor@enron.com 1999-12-14
## 10035 mark.e.taylor@enron.com 1999-12-14
## 10036 mark.e.taylor@enron.com 1999-12-14
## 10037 mark.e.taylor@enron.com 1999-12-14
## 10038 mark.e.taylor@enron.com 1999-12-14
## 10039 mark.e.taylor@enron.com 1999-12-14
## 10040 mark.e.taylor@enron.com 1999-12-14
## 10041 mark.e.taylor@enron.com 1999-12-14
## 10042 mark.e.taylor@enron.com 1999-12-14
## 10043 mark.e.taylor@enron.com 1999-12-14
## 10044 mark.e.taylor@enron.com 1999-12-14
## 10045 mark.e.taylor@enron.com 1999-12-14
## 10046 mark.e.taylor@enron.com 1999-12-14
## 10047 mark.e.taylor@enron.com 1999-12-14
## 10048 mark.e.taylor@enron.com 1999-12-14
## 10049 mark.e.taylor@enron.com 1999-12-14
## 10050 mark.e.taylor@enron.com 1999-12-14
## 10051 mark.e.taylor@enron.com 1999-12-14
## 10052 mark.e.taylor@enron.com 1999-12-14
## 10053 mark.e.taylor@enron.com 1999-12-13
## 10054 mark.e.taylor@enron.com 1999-12-10
## 10055 mark.e.taylor@enron.com 1999-12-10
## 10056 mark.e.taylor@enron.com 1999-12-09
## 10057 mark.e.taylor@enron.com 1999-12-08
## 10058 mark.e.taylor@enron.com 1999-12-08
## 10059 mark.e.taylor@enron.com 1999-12-08
## 10060 mark.e.taylor@enron.com 1999-12-08
## 10061 mark.e.taylor@enron.com 1999-12-07
## 10062 mark.e.taylor@enron.com 1999-12-06
## 10063 mark.e.taylor@enron.com 1999-12-06
## 10064 mark.e.taylor@enron.com 1999-12-03
## 10065 mark.e.taylor@enron.com 1999-12-03
## 10066 mark.e.taylor@enron.com 1999-12-03
## 10067 mark.e.taylor@enron.com 1999-12-03
## 10068 mark.e.taylor@enron.com 1999-12-02
## 10069 mark.e.taylor@enron.com 1999-12-02
## 10070 mark.e.taylor@enron.com 1999-12-02
## 10071 mark.e.taylor@enron.com 1999-12-01
## 10072 mark.e.taylor@enron.com 1999-11-30
## 10073 mark.e.taylor@enron.com 1999-11-30
## 10074 mark.e.taylor@enron.com 1999-11-30
## 10075 mark.e.taylor@enron.com 1999-11-30
## 10076 mark.e.taylor@enron.com 1999-11-30
## 10077 mark.e.taylor@enron.com 1999-11-30
## 10078 mark.e.taylor@enron.com 1999-11-29
## 10079 mark.e.taylor@enron.com 1999-11-29
## 10080 mark.e.taylor@enron.com 1999-11-29
## 10081 mark.e.taylor@enron.com 1999-11-29
## 10082 mark.e.taylor@enron.com 1999-11-29
## 10083 mark.e.taylor@enron.com 1999-11-29
## 10084 mark.e.taylor@enron.com 1999-11-29
## 10085 mark.e.taylor@enron.com 1999-11-29
## 10086 mark.e.taylor@enron.com 1999-11-29
## 10087 mark.e.taylor@enron.com 1999-11-29
## 10088 mark.e.taylor@enron.com 1999-11-29
## 10089 mark.e.taylor@enron.com 1999-11-29
## 10090 mark.e.taylor@enron.com 1999-11-29
## 10091 mark.e.taylor@enron.com 1999-11-29
## 10092 mark.e.taylor@enron.com 1999-11-29
## 10093 mark.e.taylor@enron.com 1999-11-29
## 10094 mark.e.taylor@enron.com 1999-11-29
## 10095 mark.e.taylor@enron.com 1999-11-29
## 10096 mark.e.taylor@enron.com 1999-11-29
## 10097 mark.e.taylor@enron.com 1999-11-19
## 10098 mark.e.taylor@enron.com 1999-11-19
## 10099 mark.e.taylor@enron.com 1999-11-19
## 10100 mark.e.taylor@enron.com 1999-11-19
## 10101 mark.e.taylor@enron.com 1999-11-19
## 10102 mark.e.taylor@enron.com 1999-11-19
## 10103 mark.e.taylor@enron.com 1999-11-19
## 10104 mark.e.taylor@enron.com 1999-11-19
## 10105 mark.e.taylor@enron.com 1999-11-19
## 10106 mark.e.taylor@enron.com 1999-11-19
## 10107 mark.e.taylor@enron.com 1999-11-19
## 10108 mark.e.taylor@enron.com 1999-11-19
## 10109 mark.e.taylor@enron.com 1999-11-19
## 10110 mark.e.taylor@enron.com 1999-11-19
## 10111 mark.e.taylor@enron.com 1999-11-19
## 10112 mark.e.taylor@enron.com 1999-11-19
## 10113 mark.e.taylor@enron.com 1999-11-19
## 10114 mark.e.taylor@enron.com 1999-11-19
## 10115 mark.e.taylor@enron.com 1999-11-19
## 10116 mark.e.taylor@enron.com 1999-11-19
## 10117 mark.e.taylor@enron.com 1999-11-19
## 10118 mark.e.taylor@enron.com 1999-11-19
## 10119 mark.e.taylor@enron.com 1999-11-19
## 10120 mark.e.taylor@enron.com 1999-11-19
## 10121 mark.e.taylor@enron.com 1999-11-19
## 10122 mark.e.taylor@enron.com 1999-11-19
## 10123 mark.e.taylor@enron.com 1999-11-19
## 10124 mark.e.taylor@enron.com 1999-11-19
## 10125 mark.e.taylor@enron.com 1999-11-19
## 10126 mark.e.taylor@enron.com 1999-11-18
## 10127 mark.e.taylor@enron.com 1999-11-18
## 10128 mark.e.taylor@enron.com 1999-11-18
## 10129 mark.e.taylor@enron.com 1999-11-18
## 10130 mark.e.taylor@enron.com 1999-11-18
## 10131 mark.e.taylor@enron.com 1999-11-18
## 10132 mark.e.taylor@enron.com 1999-11-18
## 10133 mark.e.taylor@enron.com 1999-11-18
## 10134 mark.e.taylor@enron.com 1999-11-17
## 10135 mark.e.taylor@enron.com 1999-11-17
## 10136 mark.e.taylor@enron.com 1999-11-17
## 10137 mark.e.taylor@enron.com 1999-11-17
## 10138 mark.e.taylor@enron.com 1999-11-17
## 10139 mark.e.taylor@enron.com 1999-11-17
## 10140 mark.e.taylor@enron.com 1999-11-17
## 10141 mark.e.taylor@enron.com 1999-11-17
## 10142 mark.e.taylor@enron.com 1999-11-17
## 10143 mark.e.taylor@enron.com 1999-11-17
## 10144 mark.e.taylor@enron.com 1999-11-17
## 10145 mark.e.taylor@enron.com 1999-11-17
## 10146 mark.e.taylor@enron.com 1999-11-17
## 10147 mark.e.taylor@enron.com 1999-11-17
## 10148 mark.e.taylor@enron.com 1999-11-17
## 10149 mark.e.taylor@enron.com 1999-11-16
## 10150 mark.e.taylor@enron.com 1999-11-16
## 10151 mark.e.taylor@enron.com 1999-11-16
## 10152 mark.e.taylor@enron.com 1999-11-08
## 10153 mark.e.taylor@enron.com 1999-11-08
## 10154 mark.e.taylor@enron.com 1999-11-08
## 10155 mark.e.taylor@enron.com 1999-11-08
## 10156 mark.e.taylor@enron.com 1999-11-08
## 10157 mark.e.taylor@enron.com 1999-11-08
## 10158 mark.e.taylor@enron.com 1999-11-08
## 10159 mark.e.taylor@enron.com 1999-11-08
## 10160 mark.e.taylor@enron.com 1999-11-08
## 10161 mark.e.taylor@enron.com 1999-11-05
## 10162 mark.e.taylor@enron.com 1999-11-05
## 10163 mark.e.taylor@enron.com 1999-11-05
## 10164 mark.e.taylor@enron.com 1999-11-05
## 10165 mark.e.taylor@enron.com 1999-11-05
## 10166 mark.e.taylor@enron.com 1999-11-05
## 10167 mark.e.taylor@enron.com 1999-11-04
## 10168 mark.e.taylor@enron.com 1999-11-04
## 10169 mark.e.taylor@enron.com 1999-11-04
## 10170 mark.e.taylor@enron.com 1999-11-04
## 10171 mark.e.taylor@enron.com 1999-11-04
## 10172 mark.e.taylor@enron.com 1999-11-04
## 10173 mark.e.taylor@enron.com 1999-11-04
## 10174 mark.e.taylor@enron.com 1999-11-04
## 10175 mark.e.taylor@enron.com 1999-11-04
## 10176 mark.e.taylor@enron.com 1999-11-04
## 10177 mark.e.taylor@enron.com 1999-11-03
## 10178 mark.e.taylor@enron.com 1999-11-03
## 10179 mark.e.taylor@enron.com 1999-11-03
## 10180 mark.e.taylor@enron.com 1999-11-03
## 10181 mark.e.taylor@enron.com 1999-11-03
## 10182 mark.e.taylor@enron.com 1999-11-03
## 10183 mark.e.taylor@enron.com 1999-11-03
## 10184 mark.e.taylor@enron.com 1999-11-03
## 10185 mark.e.taylor@enron.com 1999-11-03
## 10186 mark.e.taylor@enron.com 1999-11-01
## 10187 mark.e.taylor@enron.com 1999-11-01
## 10188 mark.e.taylor@enron.com 1999-11-01
## 10189 mark.e.taylor@enron.com 1999-11-01
## 10190 mark.e.taylor@enron.com 1999-10-28
## 10191 mark.e.taylor@enron.com 1999-10-28
## 10192 mark.e.taylor@enron.com 1999-10-27
## 10193 mark.e.taylor@enron.com 1999-10-27
## 10194 mark.e.taylor@enron.com 1999-10-27
## 10195 mark.e.taylor@enron.com 1999-10-27
## 10196 mark.e.taylor@enron.com 1999-10-27
## 10197 mark.e.taylor@enron.com 1999-10-27
## 10198 mark.e.taylor@enron.com 1999-10-27
## 10199 mark.e.taylor@enron.com 1999-10-27
## 10200 mark.e.taylor@enron.com 1999-10-27
## 10201 mark.e.taylor@enron.com 1999-10-27
## 10202 mark.e.taylor@enron.com 1999-10-27
## 10203 mark.e.taylor@enron.com 1999-10-27
## 10204 mark.e.taylor@enron.com 1999-10-27
## 10205 mark.e.taylor@enron.com 1999-10-27
## 10206 mark.e.taylor@enron.com 1999-10-27
## 10207 mark.e.taylor@enron.com 1999-10-27
## 10208 mark.e.taylor@enron.com 1999-10-27
## 10209 mark.e.taylor@enron.com 1999-10-27
## 10210 mark.e.taylor@enron.com 1999-10-27
## 10211 mark.e.taylor@enron.com 1999-10-27
## 10212 mark.e.taylor@enron.com 1999-10-27
## 10213 mark.e.taylor@enron.com 1999-10-27
## 10214 mark.e.taylor@enron.com 1999-10-27
## 10215 mark.e.taylor@enron.com 1999-10-27
## 10216 mark.e.taylor@enron.com 1999-10-27
## 10217 mark.e.taylor@enron.com 1999-10-27
## 10218 mark.e.taylor@enron.com 1999-10-27
## 10219 mark.e.taylor@enron.com 1999-10-27
## 10220 mark.e.taylor@enron.com 1999-10-27
## 10221 mark.e.taylor@enron.com 1999-10-27
## 10222 mark.e.taylor@enron.com 1999-10-27
## 10223 mark.e.taylor@enron.com 1999-10-27
## 10224 mark.e.taylor@enron.com 1999-10-27
## 10225 mark.e.taylor@enron.com 1999-10-27
## 10226 mark.e.taylor@enron.com 1999-10-27
## 10227 mark.e.taylor@enron.com 1999-10-27
## 10228 mark.e.taylor@enron.com 1999-10-27
## 10229 mark.e.taylor@enron.com 1999-10-27
## 10230 mark.e.taylor@enron.com 1999-10-27
## 10231 mark.e.taylor@enron.com 1999-10-27
## 10232 mark.e.taylor@enron.com 1999-10-27
## 10233 mark.e.taylor@enron.com 1999-10-27
## 10234 mark.e.taylor@enron.com 1999-10-27
## 10235 mark.e.taylor@enron.com 1999-10-27
## 10236 mark.e.taylor@enron.com 1999-10-27
## 10237 mark.e.taylor@enron.com 1999-10-27
## 10238 mark.e.taylor@enron.com 1999-10-27
## 10239 mark.e.taylor@enron.com 1999-10-27
## 10240 mark.e.taylor@enron.com 1999-10-27
## 10241 mark.e.taylor@enron.com 1999-10-27
## 10242 mark.e.taylor@enron.com 1999-10-27
## 10243 mark.e.taylor@enron.com 1999-10-27
## 10244 mark.e.taylor@enron.com 1999-10-27
## 10245 mark.e.taylor@enron.com 1999-10-27
## 10246 mark.e.taylor@enron.com 1999-10-27
## 10247 mark.e.taylor@enron.com 1999-10-27
## 10248 mark.e.taylor@enron.com 1999-10-27
## 10249 mark.e.taylor@enron.com 1999-10-27
## 10250 mark.e.taylor@enron.com 1999-10-27
## 10251 mark.e.taylor@enron.com 1999-10-27
## 10252 mark.e.taylor@enron.com 1999-10-27
## 10253 mark.e.taylor@enron.com 1999-10-27
## 10254 mark.e.taylor@enron.com 1999-10-27
## 10255 mark.e.taylor@enron.com 1999-10-27
## 10256 mark.e.taylor@enron.com 1999-10-27
## 10257 mark.e.taylor@enron.com 1999-10-27
## 10258 mark.e.taylor@enron.com 1999-10-27
## 10259 mark.e.taylor@enron.com 1999-10-27
## 10260 mark.e.taylor@enron.com 1999-10-27
## 10261 mark.e.taylor@enron.com 1999-10-27
## 10262 mark.e.taylor@enron.com 1999-10-27
## 10263 mark.e.taylor@enron.com 1999-10-27
## 10264 mark.e.taylor@enron.com 1999-10-27
## 10265 mark.e.taylor@enron.com 1999-10-27
## 10266 mark.e.taylor@enron.com 1999-10-27
## 10267 mark.e.taylor@enron.com 1999-10-27
## 10268 mark.e.taylor@enron.com 1999-10-27
## 10269 mark.e.taylor@enron.com 1999-10-27
## 10270 mark.e.taylor@enron.com 1999-10-27
## 10271 mark.e.taylor@enron.com 1999-10-26
## 10272 mark.e.taylor@enron.com 1999-10-26
## 10273 mark.e.taylor@enron.com 1999-10-25
## 10274 mark.e.taylor@enron.com 1999-10-25
## 10275 mark.e.taylor@enron.com 1999-10-25
## 10276 mark.e.taylor@enron.com 1999-10-25
## 10277 mark.e.taylor@enron.com 1999-10-25
## 10278 mark.e.taylor@enron.com 1999-10-25
## 10279 mark.e.taylor@enron.com 1999-10-25
## 10280 mark.e.taylor@enron.com 1999-10-25
## 10281 mark.e.taylor@enron.com 1999-10-23
## 10282 mark.e.taylor@enron.com 1999-10-23
## 10283 mark.e.taylor@enron.com 1999-10-23
## 10284 mark.e.taylor@enron.com 1999-10-23
## 10285 mark.e.taylor@enron.com 1999-10-23
## 10286 mark.e.taylor@enron.com 1999-10-23
## 10287 mark.e.taylor@enron.com 1999-10-23
## 10288 mark.e.taylor@enron.com 1999-10-23
## 10289 mark.e.taylor@enron.com 1999-10-23
## 10290 mark.e.taylor@enron.com 1999-10-23
## 10291 mark.e.taylor@enron.com 1999-10-23
## 10292 mark.e.taylor@enron.com 1999-10-23
## 10293 mark.e.taylor@enron.com 1999-10-23
## 10294 mark.e.taylor@enron.com 1999-10-23
## 10295 mark.e.taylor@enron.com 1999-10-23
## 10296 mark.e.taylor@enron.com 1999-10-23
## 10297 mark.e.taylor@enron.com 1999-10-22
## 10298 mark.e.taylor@enron.com 1999-10-22
## 10299 mark.e.taylor@enron.com 1999-10-22
## 10300 mark.e.taylor@enron.com 1999-10-22
## 10301 mark.e.taylor@enron.com 1999-10-22
## 10302 mark.e.taylor@enron.com 1999-10-22
## 10303 mark.e.taylor@enron.com 1999-10-22
## 10304 mark.e.taylor@enron.com 1999-10-21
## 10305 mark.e.taylor@enron.com 1999-10-21
## 10306 mark.e.taylor@enron.com 1999-10-21
## 10307 mark.e.taylor@enron.com 1999-10-21
## 10308 mark.e.taylor@enron.com 1999-10-21
## 10309 mark.e.taylor@enron.com 1999-10-21
## 10310 mark.e.taylor@enron.com 1999-10-21
## 10311 mark.e.taylor@enron.com 1999-10-21
## 10312 mark.e.taylor@enron.com 1999-10-21
## 10313 mark.e.taylor@enron.com 1999-10-21
## 10314 mark.e.taylor@enron.com 1999-10-21
## 10315 mark.e.taylor@enron.com 1999-10-20
## 10316 mark.e.taylor@enron.com 1999-10-20
## 10317 mark.e.taylor@enron.com 1999-10-20
## 10318 mark.e.taylor@enron.com 1999-10-20
## 10319 mark.e.taylor@enron.com 1999-10-20
## 10320 mark.e.taylor@enron.com 1999-10-20
## 10321 mark.e.taylor@enron.com 1999-10-20
## 10322 mark.e.taylor@enron.com 1999-10-20
## 10323 mark.e.taylor@enron.com 1999-10-20
## 10324 mark.e.taylor@enron.com 1999-10-20
## 10325 mark.e.taylor@enron.com 1999-10-20
## 10326 mark.e.taylor@enron.com 1999-10-20
## 10327 mark.e.taylor@enron.com 1999-10-20
## 10328 mark.e.taylor@enron.com 1999-10-20
## 10329 mark.e.taylor@enron.com 1999-10-20
## 10330 mark.e.taylor@enron.com 1999-10-20
## 10331 mark.e.taylor@enron.com 1999-10-19
## 10332 mark.e.taylor@enron.com 1999-10-19
## 10333 mark.e.taylor@enron.com 1999-10-19
## 10334 mark.e.taylor@enron.com 1999-10-18
## 10335 mark.e.taylor@enron.com 1999-10-18
## 10336 mark.e.taylor@enron.com 1999-10-18
## 10337 mark.e.taylor@enron.com 1999-10-18
## 10338 mark.e.taylor@enron.com 1999-10-18
## 10339 mark.e.taylor@enron.com 1999-10-18
## 10340 mark.e.taylor@enron.com 1999-10-18
## 10341 mark.e.taylor@enron.com 1999-10-18
## 10342 mark.e.taylor@enron.com 1999-10-18
## 10343 mark.e.taylor@enron.com 1999-10-18
## 10344 mark.e.taylor@enron.com 1999-10-15
## 10345 mark.e.taylor@enron.com 1999-10-15
## 10346 mark.e.taylor@enron.com 1999-10-14
## 10347 mark.e.taylor@enron.com 1999-10-13
## 10348 mark.e.taylor@enron.com 1999-10-13
## 10349 mark.e.taylor@enron.com 1999-10-12
## 10350 mark.e.taylor@enron.com 1999-10-12
## 10351 mark.e.taylor@enron.com 1999-10-11
## 10352 mark.e.taylor@enron.com 1999-10-11
## 10353 mark.e.taylor@enron.com 1999-10-11
## 10354 mark.e.taylor@enron.com 1999-10-08
## 10355 mark.e.taylor@enron.com 1999-10-08
## 10356 mark.e.taylor@enron.com 1999-10-08
## 10357 mark.e.taylor@enron.com 1999-10-08
## 10358 mark.e.taylor@enron.com 1999-10-08
## 10359 mark.e.taylor@enron.com 1999-10-08
## 10360 mark.e.taylor@enron.com 1999-10-08
## 10361 mark.e.taylor@enron.com 1999-10-08
## 10362 mark.e.taylor@enron.com 1999-10-08
## 10363 mark.e.taylor@enron.com 1999-10-08
## 10364 mark.e.taylor@enron.com 1999-10-07
## 10365 mark.e.taylor@enron.com 1999-10-07
## 10366 mark.e.taylor@enron.com 1999-10-07
## 10367 mark.e.taylor@enron.com 1999-10-07
## 10368 mark.e.taylor@enron.com 1999-10-07
## 10369 mark.e.taylor@enron.com 1999-10-07
## 10370 mark.e.taylor@enron.com 1999-10-07
## 10371 mark.e.taylor@enron.com 1999-10-07
## 10372 mark.e.taylor@enron.com 1999-10-07
## 10373 mark.e.taylor@enron.com 1999-10-07
## 10374 mark.e.taylor@enron.com 1999-10-07
## 10375 mark.e.taylor@enron.com 1999-10-07
## 10376 mark.e.taylor@enron.com 1999-10-07
## 10377 mark.e.taylor@enron.com 1999-10-07
## 10378 mark.e.taylor@enron.com 1999-10-07
## 10379 mark.e.taylor@enron.com 1999-10-07
## 10380 mark.e.taylor@enron.com 1999-10-07
## 10381 mark.e.taylor@enron.com 1999-10-07
## 10382 mark.e.taylor@enron.com 1999-10-07
## 10383 mark.e.taylor@enron.com 1999-10-05
## 10384 mark.e.taylor@enron.com 1999-10-05
## 10385 mark.e.taylor@enron.com 1999-10-05
## 10386 mark.e.taylor@enron.com 1999-10-05
## 10387 mark.e.taylor@enron.com 1999-10-05
## 10388 mark.e.taylor@enron.com 1999-10-05
## 10389 mark.e.taylor@enron.com 1999-10-05
## 10390 mark.e.taylor@enron.com 1999-10-05
## 10391 mark.e.taylor@enron.com 1999-10-05
## 10392 mark.e.taylor@enron.com 1999-10-05
## 10393 mark.e.taylor@enron.com 1999-10-05
## 10394 mark.e.taylor@enron.com 1999-10-05
## 10395 mark.e.taylor@enron.com 1999-10-05
## 10396 mark.e.taylor@enron.com 1999-10-05
## 10397 mark.e.taylor@enron.com 1999-10-05
## 10398 mark.e.taylor@enron.com 1999-10-05
## 10399 mark.e.taylor@enron.com 1999-10-05
## 10400 mark.e.taylor@enron.com 1999-10-05
## 10401 mark.e.taylor@enron.com 1999-10-04
## 10402 mark.e.taylor@enron.com 1999-10-04
## 10403 mark.e.taylor@enron.com 1999-10-04
## 10404 mark.e.taylor@enron.com 1999-10-04
## 10405 mark.e.taylor@enron.com 1999-10-04
## 10406 mark.e.taylor@enron.com 1999-10-04
## 10407 mark.e.taylor@enron.com 1999-10-04
## 10408 mark.e.taylor@enron.com 1999-10-04
## 10409 mark.e.taylor@enron.com 1999-10-04
## 10410 mark.e.taylor@enron.com 1999-10-04
## 10411 mark.e.taylor@enron.com 1999-10-04
## 10412 mark.e.taylor@enron.com 1999-10-04
## 10413 mark.e.taylor@enron.com 1999-10-04
## 10414 mark.e.taylor@enron.com 1999-10-04
## 10415 mark.e.taylor@enron.com 1999-10-04
## 10416 mark.e.taylor@enron.com 1999-10-01
## 10417 mark.e.taylor@enron.com 1999-10-01
## 10418 mark.e.taylor@enron.com 1999-10-01
## 10419 mark.e.taylor@enron.com 1999-10-01
## 10420 mark.e.taylor@enron.com 1999-10-01
## 10421 mark.e.taylor@enron.com 1999-10-01
## 10422 mark.e.taylor@enron.com 1999-09-30
## 10423 mark.e.taylor@enron.com 1999-09-30
## 10424 mark.e.taylor@enron.com 1999-09-30
## 10425 mark.e.taylor@enron.com 1999-09-30
## 10426 mark.e.taylor@enron.com 1999-09-30
## 10427 mark.e.taylor@enron.com 1999-09-30
## 10428 mark.e.taylor@enron.com 1999-09-30
## 10429 mark.e.taylor@enron.com 1999-09-30
## 10430 mark.e.taylor@enron.com 1999-09-30
## 10431 mark.e.taylor@enron.com 1999-09-30
## 10432 mark.e.taylor@enron.com 1999-09-29
## 10433 mark.e.taylor@enron.com 1999-09-28
## 10434 mark.e.taylor@enron.com 1999-09-28
## 10435 mark.e.taylor@enron.com 1999-09-28
## 10436 mark.e.taylor@enron.com 1999-09-28
## 10437 mark.e.taylor@enron.com 1999-09-28
## 10438 mark.e.taylor@enron.com 1999-09-28
## 10439 mark.e.taylor@enron.com 1999-09-28
## 10440 mark.e.taylor@enron.com 1999-09-28
## 10441 mark.e.taylor@enron.com 1999-09-28
## 10442 mark.e.taylor@enron.com 1999-09-27
## 10443 mark.e.taylor@enron.com 1999-09-27
## 10444 mark.e.taylor@enron.com 1999-09-27
## 10445 mark.e.taylor@enron.com 1999-09-27
## 10446 mark.e.taylor@enron.com 1999-09-27
## 10447 mark.e.taylor@enron.com 1999-09-27
## 10448 mark.e.taylor@enron.com 1999-09-27
## 10449 mark.e.taylor@enron.com 1999-09-27
## 10450 mark.e.taylor@enron.com 1999-09-27
## 10451 mark.e.taylor@enron.com 1999-09-27
## 10452 mark.e.taylor@enron.com 1999-09-27
## 10453 mark.e.taylor@enron.com 1999-09-27
## 10454 mark.e.taylor@enron.com 1999-09-27
## 10455 mark.e.taylor@enron.com 1999-09-27
## 10456 mark.e.taylor@enron.com 1999-09-27
## 10457 mark.e.taylor@enron.com 1999-09-27
## 10458 mark.e.taylor@enron.com 1999-09-27
## 10459 mark.e.taylor@enron.com 1999-09-27
## 10460 mark.e.taylor@enron.com 1999-09-27
## 10461 mark.e.taylor@enron.com 1999-09-27
## 10462 mark.e.taylor@enron.com 1999-09-27
## 10463 mark.e.taylor@enron.com 1999-09-27
## 10464 mark.e.taylor@enron.com 1999-09-27
## 10465 mark.e.taylor@enron.com 1999-09-24
## 10466 mark.e.taylor@enron.com 1999-09-24
## 10467 mark.e.taylor@enron.com 1999-09-23
## 10468 mark.e.taylor@enron.com 1999-09-23
## 10469 mark.e.taylor@enron.com 1999-09-23
## 10470 mark.e.taylor@enron.com 1999-09-23
## 10471 mark.e.taylor@enron.com 1999-09-23
## 10472 mark.e.taylor@enron.com 1999-09-23
## 10473 mark.e.taylor@enron.com 1999-09-23
## 10474 mark.e.taylor@enron.com 1999-09-23
## 10475 mark.e.taylor@enron.com 1999-09-23
## 10476 mark.e.taylor@enron.com 1999-09-23
## 10477 mark.e.taylor@enron.com 1999-09-22
## 10478 mark.e.taylor@enron.com 1999-09-22
## 10479 mark.e.taylor@enron.com 1999-09-22
## 10480 mark.e.taylor@enron.com 1999-09-22
## 10481 mark.e.taylor@enron.com 1999-09-22
## 10482 mark.e.taylor@enron.com 1999-09-16
## 10483 mark.e.taylor@enron.com 1999-09-16
## 10484 mark.e.taylor@enron.com 1999-09-16
## 10485 mark.e.taylor@enron.com 1999-09-16
## 10486 mark.e.taylor@enron.com 1999-09-16
## 10487 mark.e.taylor@enron.com 1999-09-16
## 10488 mark.e.taylor@enron.com 1999-09-16
## 10489 mark.e.taylor@enron.com 1999-09-16
## 10490 mark.e.taylor@enron.com 1999-09-16
## 10491 mark.e.taylor@enron.com 1999-09-16
## 10492 mark.e.taylor@enron.com 1999-09-16
## 10493 mark.e.taylor@enron.com 1999-09-16
## 10494 mark.e.taylor@enron.com 1999-09-14
## 10495 mark.e.taylor@enron.com 1999-09-14
## 10496 mark.e.taylor@enron.com 1999-09-14
## 10497 mark.e.taylor@enron.com 1999-09-14
## 10498 mark.e.taylor@enron.com 1999-09-14
## 10499 mark.e.taylor@enron.com 1999-09-14
## 10500 mark.e.taylor@enron.com 1999-09-14
## 10501 mark.e.taylor@enron.com 1999-09-14
## 10502 mark.e.taylor@enron.com 1999-09-14
## 10503 mark.e.taylor@enron.com 1999-09-14
## 10504 mark.e.taylor@enron.com 1999-09-14
## 10505 mark.e.taylor@enron.com 1999-09-14
## 10506 mark.e.taylor@enron.com 1999-09-14
## 10507 mark.e.taylor@enron.com 1999-09-14
## 10508 mark.e.taylor@enron.com 1999-09-14
## 10509 mark.e.taylor@enron.com 1999-09-14
## 10510 mark.e.taylor@enron.com 1999-09-14
## 10511 mark.e.taylor@enron.com 1999-09-14
## 10512 mark.e.taylor@enron.com 1999-09-14
## 10513 mark.e.taylor@enron.com 1999-09-14
## 10514 mark.e.taylor@enron.com 1999-09-14
## 10515 mark.e.taylor@enron.com 1999-09-14
## 10516 mark.e.taylor@enron.com 1999-09-14
## 10517 mark.e.taylor@enron.com 1999-09-14
## 10518 mark.e.taylor@enron.com 1999-09-14
## 10519 mark.e.taylor@enron.com 1999-09-14
## 10520 mark.e.taylor@enron.com 1999-09-14
## 10521 mark.e.taylor@enron.com 1999-09-13
## 10522 mark.e.taylor@enron.com 1999-09-13
## 10523 mark.e.taylor@enron.com 1999-09-13
## 10524 mark.e.taylor@enron.com 1999-08-25
## 10525 mark.e.taylor@enron.com 1999-08-25
## 10526 mark.e.taylor@enron.com 1999-08-25
## 10527 mark.e.taylor@enron.com 1999-08-25
## 10528 mark.e.taylor@enron.com 1999-08-25
## 10529 mark.e.taylor@enron.com 1999-08-25
## 10530 mark.e.taylor@enron.com 1999-08-25
## 10531 mark.e.taylor@enron.com 1999-08-25
## 10532 mark.e.taylor@enron.com 1999-08-25
## 10533 mark.e.taylor@enron.com 1999-08-25
## 10534 mark.e.taylor@enron.com 1999-08-25
## 10535 mark.e.taylor@enron.com 1999-08-25
## 10536 mark.e.taylor@enron.com 1999-08-25
## 10537 mark.e.taylor@enron.com 1999-08-25
## 10538 mark.e.taylor@enron.com 1999-08-25
## 10539 mark.e.taylor@enron.com 1999-08-25
## 10540 mark.e.taylor@enron.com 1999-08-25
## 10541 mark.e.taylor@enron.com 1999-08-25
## 10542 mark.e.taylor@enron.com 1999-08-25
## 10543 mark.e.taylor@enron.com 1999-08-25
## 10544 mark.e.taylor@enron.com 1999-08-25
## 10545 mark.e.taylor@enron.com 1999-08-25
## 10546 mark.e.taylor@enron.com 1999-08-25
## 10547 mark.e.taylor@enron.com 1999-08-25
## 10548 mark.e.taylor@enron.com 1999-08-25
## 10549 mark.e.taylor@enron.com 1999-08-25
## 10550 mark.e.taylor@enron.com 1999-08-25
## 10551 mark.e.taylor@enron.com 1999-08-25
## 10552 mark.e.taylor@enron.com 1999-08-25
## 10553 mark.e.taylor@enron.com 1999-08-25
## 10554 mark.e.taylor@enron.com 1999-08-25
## 10555 mark.e.taylor@enron.com 1999-08-24
## 10556 mark.e.taylor@enron.com 1999-08-24
## 10557 mark.e.taylor@enron.com 1999-08-24
## 10558 mark.e.taylor@enron.com 1999-08-24
## 10559 mark.e.taylor@enron.com 1999-08-24
## 10560 mark.e.taylor@enron.com 1999-08-24
## 10561 mark.e.taylor@enron.com 1999-08-24
## 10562 mark.e.taylor@enron.com 1999-08-24
## 10563 mark.e.taylor@enron.com 1999-08-24
## 10564 mark.e.taylor@enron.com 1999-08-24
## 10565 mark.e.taylor@enron.com 1999-08-24
## 10566 mark.e.taylor@enron.com 1999-08-23
## 10567 mark.e.taylor@enron.com 1999-08-23
## 10568 mark.e.taylor@enron.com 1999-08-23
## 10569 mark.e.taylor@enron.com 1999-08-23
## 10570 mark.e.taylor@enron.com 1999-08-23
## 10571 mark.e.taylor@enron.com 1999-08-23
## 10572 mark.e.taylor@enron.com 1999-08-23
## 10573 mark.e.taylor@enron.com 1999-08-23
## 10574 mark.e.taylor@enron.com 1999-08-17
## 10575 mark.e.taylor@enron.com 1999-08-17
## 10576 mark.e.taylor@enron.com 1999-08-17
## 10577 mark.e.taylor@enron.com 1999-08-16
## 10578 mark.e.taylor@enron.com 1999-08-16
## 10579 mark.e.taylor@enron.com 1999-08-16
## 10580 mark.e.taylor@enron.com 1999-08-16
## 10581 mark.e.taylor@enron.com 1999-08-16
## 10582 mark.e.taylor@enron.com 1999-08-16
## 10583 mark.e.taylor@enron.com 1999-08-16
## 10584 mark.e.taylor@enron.com 1999-08-15
## 10585 mark.e.taylor@enron.com 1999-08-15
## 10586 mark.e.taylor@enron.com 1999-08-15
## 10587 mark.e.taylor@enron.com 1999-08-15
## 10588 mark.e.taylor@enron.com 1999-08-15
## 10589 mark.e.taylor@enron.com 1999-08-15
## 10590 mark.e.taylor@enron.com 1999-08-15
## 10591 mark.e.taylor@enron.com 1999-08-15
## 10592 mark.e.taylor@enron.com 1999-08-15
## 10593 mark.e.taylor@enron.com 1999-08-15
## 10594 mark.e.taylor@enron.com 1999-08-15
## 10595 mark.e.taylor@enron.com 1999-08-15
## 10596 mark.e.taylor@enron.com 1999-08-15
## 10597 mark.e.taylor@enron.com 1999-08-15
## 10598 mark.e.taylor@enron.com 1999-08-15
## 10599 mark.e.taylor@enron.com 1999-08-15
## 10600 mark.e.taylor@enron.com 1999-08-15
## 10601 mark.e.taylor@enron.com 1999-08-15
## 10602 mark.e.taylor@enron.com 1999-08-15
## 10603 mark.e.taylor@enron.com 1999-08-15
## 10604 mark.e.taylor@enron.com 1999-08-13
## 10605 mark.e.taylor@enron.com 1999-08-13
## 10606 mark.e.taylor@enron.com 1999-08-13
## 10607 mark.e.taylor@enron.com 1999-08-13
## 10608 mark.e.taylor@enron.com 1999-08-13
## 10609 mark.e.taylor@enron.com 1999-08-13
## 10610 mark.e.taylor@enron.com 1999-08-13
## 10611 mark.e.taylor@enron.com 1999-08-13
## 10612 mark.e.taylor@enron.com 1999-08-13
## 10613 mark.e.taylor@enron.com 1999-08-13
## 10614 mark.e.taylor@enron.com 1999-08-13
## 10615 mark.e.taylor@enron.com 1999-08-13
## 10616 mark.e.taylor@enron.com 1999-08-13
## 10617 mark.e.taylor@enron.com 1999-08-13
## 10618 mark.e.taylor@enron.com 1999-08-13
## 10619 mark.e.taylor@enron.com 1999-08-13
## 10620 mark.e.taylor@enron.com 1999-08-13
## 10621 mark.e.taylor@enron.com 1999-08-12
## 10622 mark.e.taylor@enron.com 1999-08-12
## 10623 mark.e.taylor@enron.com 1999-08-10
## 10624 mark.e.taylor@enron.com 1999-08-09
## 10625 mark.e.taylor@enron.com 1999-08-06
## 10626 mark.e.taylor@enron.com 1999-08-06
## 10627 mark.e.taylor@enron.com 1999-08-06
## 10628 mark.e.taylor@enron.com 1999-08-06
## 10629 mark.e.taylor@enron.com 1999-08-05
## 10630 mark.e.taylor@enron.com 1999-08-05
## 10631 mark.e.taylor@enron.com 1999-08-05
## 10632 mark.e.taylor@enron.com 1999-08-05
## 10633 mark.e.taylor@enron.com 1999-08-05
## 10634 mark.e.taylor@enron.com 1999-08-05
## 10635 mark.e.taylor@enron.com 1999-08-05
## 10636 mark.e.taylor@enron.com 1999-08-05
## 10637 mark.e.taylor@enron.com 1999-08-05
## 10638 mark.e.taylor@enron.com 1999-08-05
## 10639 mark.e.taylor@enron.com 1999-08-05
## 10640 mark.e.taylor@enron.com 1999-08-05
## 10641 mark.e.taylor@enron.com 1999-08-04
## 10642 mark.e.taylor@enron.com 1999-08-04
## 10643 mark.e.taylor@enron.com 1999-08-04
## 10644 mark.e.taylor@enron.com 1999-08-04
## 10645 mark.e.taylor@enron.com 1999-08-04
## 10646 mark.e.taylor@enron.com 1999-08-04
## 10647 mark.e.taylor@enron.com 1999-08-04
## 10648 mark.e.taylor@enron.com 1999-08-04
## 10649 mark.e.taylor@enron.com 1999-08-04
## 10650 mark.e.taylor@enron.com 1999-08-04
## 10651 mark.e.taylor@enron.com 1999-08-03
## 10652 mark.e.taylor@enron.com 1999-08-03
## 10653 mark.e.taylor@enron.com 1999-08-03
## 10654 mark.e.taylor@enron.com 1999-08-03
## 10655 mark.e.taylor@enron.com 1999-08-03
## 10656 mark.e.taylor@enron.com 1999-08-02
## 10657 mark.e.taylor@enron.com 1999-08-02
## 10658 mark.e.taylor@enron.com 1999-08-02
## 10659 mark.e.taylor@enron.com 1999-08-02
## 10660 mark.e.taylor@enron.com 1999-08-02
## 10661 mark.e.taylor@enron.com 1999-08-02
## 10662 mark.e.taylor@enron.com 1999-08-02
## 10663 mark.e.taylor@enron.com 1999-08-02
## 10664 mark.e.taylor@enron.com 1999-08-02
## 10665 mark.e.taylor@enron.com 1999-08-02
## 10666 mark.e.taylor@enron.com 1999-08-02
## 10667 mark.e.taylor@enron.com 1999-08-02
## 10668 mark.e.taylor@enron.com 1999-08-02
## 10669 mark.e.taylor@enron.com 1999-08-02
## 10670 mark.e.taylor@enron.com 1999-08-02
## 10671 mark.e.taylor@enron.com 1999-07-30
## 10672 mark.e.taylor@enron.com 1999-07-30
## 10673 mark.e.taylor@enron.com 1999-07-30
## 10674 mark.e.taylor@enron.com 1999-07-30
## 10675 mark.e.taylor@enron.com 1999-07-30
## 10676 mark.e.taylor@enron.com 1999-07-30
## 10677 mark.e.taylor@enron.com 1999-07-30
## 10678 mark.e.taylor@enron.com 1999-07-30
## 10679 mark.e.taylor@enron.com 1999-07-30
## 10680 mark.e.taylor@enron.com 1999-07-30
## 10681 mark.e.taylor@enron.com 1999-07-30
## 10682 mark.e.taylor@enron.com 1999-07-29
## 10683 mark.e.taylor@enron.com 1999-07-29
## 10684 mark.e.taylor@enron.com 1999-07-29
## 10685 mark.e.taylor@enron.com 1999-07-29
## 10686 mark.e.taylor@enron.com 1999-07-29
## 10687 mark.e.taylor@enron.com 1999-07-29
## 10688 mark.e.taylor@enron.com 1999-07-29
## 10689 mark.e.taylor@enron.com 1999-07-29
## 10690 mark.e.taylor@enron.com 1999-07-29
## 10691 mark.e.taylor@enron.com 1999-07-28
## 10692 mark.e.taylor@enron.com 1999-07-28
## 10693 mark.e.taylor@enron.com 1999-07-28
## 10694 mark.e.taylor@enron.com 1999-07-28
## 10695 mark.e.taylor@enron.com 1999-07-28
## 10696 mark.e.taylor@enron.com 1999-07-28
## 10697 mark.e.taylor@enron.com 1999-07-28
## 10698 mark.e.taylor@enron.com 1999-07-26
## 10699 mark.e.taylor@enron.com 1999-07-26
## 10700 mark.e.taylor@enron.com 1999-07-26
## 10701 mark.e.taylor@enron.com 1999-07-23
## 10702 mark.e.taylor@enron.com 1999-07-22
## 10703 mark.e.taylor@enron.com 1999-07-22
## 10704 mark.e.taylor@enron.com 1999-07-22
## 10705 mark.e.taylor@enron.com 1999-07-22
## 10706 mark.e.taylor@enron.com 1999-07-22
## 10707 mark.e.taylor@enron.com 1999-07-22
## 10708 mark.e.taylor@enron.com 1999-07-22
## 10709 mark.e.taylor@enron.com 1999-07-22
## 10710 mark.e.taylor@enron.com 1999-07-22
## 10711 mark.e.taylor@enron.com 1999-07-22
## 10712 mark.e.taylor@enron.com 1999-07-22
## 10713 mark.e.taylor@enron.com 1999-07-22
## 10714 mark.e.taylor@enron.com 1999-07-22
## 10715 mark.e.taylor@enron.com 1999-07-22
## 10716 mark.e.taylor@enron.com 1999-07-22
## 10717 mark.e.taylor@enron.com 1999-07-22
## 10718 mark.e.taylor@enron.com 1999-07-22
## 10719 mark.e.taylor@enron.com 1999-07-22
## 10720 mark.e.taylor@enron.com 1999-07-22
## 10721 mark.e.taylor@enron.com 1999-07-22
## 10722 mark.e.taylor@enron.com 1999-07-22
## 10723 mark.e.taylor@enron.com 1999-07-22
## 10724 mark.e.taylor@enron.com 1999-07-22
## 10725 mark.e.taylor@enron.com 1999-07-22
## 10726 mark.e.taylor@enron.com 1999-07-22
## 10727 mark.e.taylor@enron.com 1999-07-21
## 10728 mark.e.taylor@enron.com 1999-07-21
## 10729 mark.e.taylor@enron.com 1999-07-21
## 10730 mark.e.taylor@enron.com 1999-07-21
## 10731 mark.e.taylor@enron.com 1999-07-21
## 10732 mark.e.taylor@enron.com 1999-07-21
## 10733 mark.e.taylor@enron.com 1999-07-21
## 10734 mark.e.taylor@enron.com 1999-07-19
## 10735 mark.e.taylor@enron.com 1999-07-16
## 10736 mark.e.taylor@enron.com 1999-07-16
## 10737 mark.e.taylor@enron.com 1999-07-16
## 10738 mark.e.taylor@enron.com 1999-07-16
## 10739 mark.e.taylor@enron.com 1999-07-15
## 10740 mark.e.taylor@enron.com 1999-07-15
## 10741 mark.e.taylor@enron.com 1999-07-15
## 10742 mark.e.taylor@enron.com 1999-07-15
## 10743 mark.e.taylor@enron.com 1999-07-14
## 10744 mark.e.taylor@enron.com 1999-07-14
## 10745 mark.e.taylor@enron.com 1999-07-13
## 10746 mark.e.taylor@enron.com 1999-07-12
## 10747 mark.e.taylor@enron.com 1999-07-09
## 10748 mark.e.taylor@enron.com 1999-07-09
## 10749 mark.e.taylor@enron.com 1999-07-08
## 10750 mark.e.taylor@enron.com 1999-07-08
## 10751 mark.e.taylor@enron.com 1999-07-08
## 10752 mark.e.taylor@enron.com 1999-07-08
## 10753 mark.e.taylor@enron.com 1999-07-08
## 10754 mark.e.taylor@enron.com 1999-07-07
## 10755 mark.e.taylor@enron.com 1999-07-02
## 10756 mark.e.taylor@enron.com 1999-07-02
## 10757 mark.e.taylor@enron.com 1999-07-01
## 10758 mark.e.taylor@enron.com 1999-07-01
## 10759 mark.e.taylor@enron.com 1999-07-01
## 10760 mark.e.taylor@enron.com 1999-07-01
## 10761 mark.e.taylor@enron.com 1999-07-01
## 10762 mark.e.taylor@enron.com 1999-07-01
## 10763 mark.e.taylor@enron.com 1999-07-01
## 10764 mark.e.taylor@enron.com 1999-06-29
## 10765 mark.e.taylor@enron.com 1999-06-29
## 10766 mark.e.taylor@enron.com 1999-06-29
## 10767 mark.e.taylor@enron.com 1999-06-29
## 10768 mark.e.taylor@enron.com 1999-06-29
## 10769 mark.e.taylor@enron.com 1999-06-29
## 10770 mark.e.taylor@enron.com 1999-06-29
## 10771 mark.e.taylor@enron.com 1999-06-29
## 10772 mark.e.taylor@enron.com 1999-06-29
## 10773 mark.e.taylor@enron.com 1999-06-29
## 10774 mark.e.taylor@enron.com 1999-06-29
## 10775 mark.e.taylor@enron.com 1999-06-29
## 10776 mark.e.taylor@enron.com 1999-06-29
## 10777 mark.e.taylor@enron.com 1999-06-28
## 10778 mark.e.taylor@enron.com 1999-06-28
## 10779 mark.e.taylor@enron.com 1999-06-28
## 10780 mark.e.taylor@enron.com 1999-06-28
## 10781 mark.e.taylor@enron.com 1999-06-28
## 10782 mark.e.taylor@enron.com 1999-06-28
## 10783 mark.e.taylor@enron.com 1999-06-28
## 10784 mark.e.taylor@enron.com 1999-06-25
## 10785 mark.e.taylor@enron.com 1999-06-25
## 10786 mark.e.taylor@enron.com 1999-06-25
## 10787 mark.e.taylor@enron.com 1999-06-25
## 10788 mark.e.taylor@enron.com 1999-06-25
## 10789 mark.e.taylor@enron.com 1999-06-24
## 10790 mark.e.taylor@enron.com 1999-06-24
## 10791 mark.e.taylor@enron.com 1999-06-24
## 10792 mark.e.taylor@enron.com 1999-06-24
## 10793 mark.e.taylor@enron.com 1999-06-24
## 10794 mark.e.taylor@enron.com 1999-06-24
## 10795 mark.e.taylor@enron.com 1999-06-24
## 10796 mark.e.taylor@enron.com 1999-06-24
## 10797 mark.e.taylor@enron.com 1999-06-24
## 10798 mark.e.taylor@enron.com 1999-06-24
## 10799 mark.e.taylor@enron.com 1999-06-24
## 10800 mark.e.taylor@enron.com 1999-06-24
## 10801 mark.e.taylor@enron.com 1999-06-24
## 10802 mark.e.taylor@enron.com 1999-06-24
## 10803 mark.e.taylor@enron.com 1999-06-24
## 10804 mark.e.taylor@enron.com 1999-06-24
## 10805 mark.e.taylor@enron.com 1999-06-24
## 10806 mark.e.taylor@enron.com 1999-06-24
## 10807 mark.e.taylor@enron.com 1999-06-24
## 10808 mark.e.taylor@enron.com 1999-06-24
## 10809 mark.e.taylor@enron.com 1999-06-24
## 10810 mark.e.taylor@enron.com 1999-06-24
## 10811 mark.e.taylor@enron.com 1999-06-24
## 10812 mark.e.taylor@enron.com 1999-06-24
## 10813 mark.e.taylor@enron.com 1999-06-24
## 10814 mark.e.taylor@enron.com 1999-06-24
## 10815 mark.e.taylor@enron.com 1999-06-24
## 10816 mark.e.taylor@enron.com 1999-06-23
## 10817 mark.e.taylor@enron.com 1999-06-16
## 10818 mark.e.taylor@enron.com 1999-06-16
## 10819 mark.e.taylor@enron.com 1999-06-16
## 10820 mark.e.taylor@enron.com 1999-06-16
## 10821 mark.e.taylor@enron.com 1999-06-16
## 10822 mark.e.taylor@enron.com 1999-06-16
## 10823 mark.e.taylor@enron.com 1999-06-16
## 10824 mark.e.taylor@enron.com 1999-06-16
## 10825 mark.e.taylor@enron.com 1999-06-16
## 10826 mark.e.taylor@enron.com 1999-06-16
## 10827 mark.e.taylor@enron.com 1999-06-15
## 10828 mark.e.taylor@enron.com 1999-06-14
## 10829 mark.e.taylor@enron.com 1999-06-13
## 10830 mark.e.taylor@enron.com 1999-06-11
## 10831 mark.e.taylor@enron.com 1999-06-03
## 10832 mark.e.taylor@enron.com 1999-06-03
## 10833 mark.e.taylor@enron.com 1999-06-02
## 10834 mark.e.taylor@enron.com 1999-06-02
## 10835 mark.e.taylor@enron.com 1999-06-02
## 10836 mark.e.taylor@enron.com 1999-06-02
## 10837 mark.e.taylor@enron.com 1999-06-02
## 10838 mark.e.taylor@enron.com 1999-06-02
## 10839 mark.e.taylor@enron.com 1999-06-02
## 10840 mark.e.taylor@enron.com 1999-06-02
## 10841 mark.e.taylor@enron.com 1999-06-02
## 10842 mark.e.taylor@enron.com 1999-06-02
## 10843 mark.e.taylor@enron.com 1999-06-02
## 10844 mark.e.taylor@enron.com 1999-06-02
## 10845 mark.e.taylor@enron.com 1999-06-02
## 10846 mark.e.taylor@enron.com 1999-06-02
## 10847 mark.e.taylor@enron.com 1999-06-02
## 10848 mark.e.taylor@enron.com 1999-06-02
## 10849 mark.e.taylor@enron.com 1999-06-02
## 10850 mark.e.taylor@enron.com 1999-06-02
## 10851 mark.e.taylor@enron.com 1999-06-02
## 10852 mark.e.taylor@enron.com 1999-06-02
## 10853 mark.e.taylor@enron.com 1999-06-02
## 10854 mark.e.taylor@enron.com 1999-06-01
## 10855 mark.e.taylor@enron.com 1999-06-01
## 10856 mark.e.taylor@enron.com 1999-05-27
## 10857 mark.e.taylor@enron.com 1999-05-27
## 10858 mark.e.taylor@enron.com 1999-05-27
## 10859 mark.e.taylor@enron.com 1999-05-26
## 10860 mark.e.taylor@enron.com 1999-05-26
## 10861 mark.e.taylor@enron.com 1999-05-25
## 10862 mark.e.taylor@enron.com 1999-05-25
## 10863 mark.e.taylor@enron.com 1999-05-25
## 10864 mark.e.taylor@enron.com 1999-05-25
## 10865 mark.e.taylor@enron.com 1999-05-24
## 10866 mark.e.taylor@enron.com 1999-05-21
## 10867 mark.e.taylor@enron.com 1999-05-21
## 10868 mark.e.taylor@enron.com 1999-05-21
## 10869 mark.e.taylor@enron.com 1999-05-21
## 10870 mark.e.taylor@enron.com 1999-05-21
## 10871 mark.e.taylor@enron.com 1999-05-21
## 10872 mark.e.taylor@enron.com 1999-05-20
## 10873 mark.e.taylor@enron.com 1999-05-20
## 10874 mark.e.taylor@enron.com 1999-05-20
## 10875 mark.e.taylor@enron.com 1999-05-20
## 10876 mark.e.taylor@enron.com 1999-05-19
## 10877 mark.e.taylor@enron.com 1999-05-19
## 10878 mark.e.taylor@enron.com 1999-05-19
## 10879 mark.e.taylor@enron.com 1999-05-19
## 10880 mark.e.taylor@enron.com 1999-05-19
## 10881 mark.e.taylor@enron.com 1999-05-19
## 10882 mark.e.taylor@enron.com 1999-05-19
## 10883 mark.e.taylor@enron.com 1999-05-19
## 10884 mark.e.taylor@enron.com 1999-05-19
## 10885 mark.e.taylor@enron.com 1999-05-19
## 10886 mark.e.taylor@enron.com 1999-05-19
## 10887 mark.e.taylor@enron.com 1999-05-14
## 10888 mark.e.taylor@enron.com 1999-05-13
## 10889 mark.e.taylor@enron.com 1999-05-13
## 10890 mark.e.taylor@enron.com 1999-05-13
## 10891 mark.e.taylor@enron.com 1999-05-13
## 10892 mark.e.taylor@enron.com 1999-05-13
## 10893 mark.e.taylor@enron.com 1999-05-12
## 10894 mark.e.taylor@enron.com 1999-05-12
## 10895 mark.e.taylor@enron.com 1999-05-12
## 10896 mark.e.taylor@enron.com 1999-05-12
## 10897 mark.e.taylor@enron.com 1999-05-12
## 10898 mark.e.taylor@enron.com 1999-05-12
## 10899 mark.e.taylor@enron.com 1999-05-12
## 10900 mark.e.taylor@enron.com 1999-05-12
## 10901 mark.e.taylor@enron.com 1999-05-12
## 10902 mark.e.taylor@enron.com 1999-05-12
## 10903 mark.e.taylor@enron.com 1999-05-11
## 10904 mark.e.taylor@enron.com 1999-05-11
## 10905 mark.e.taylor@enron.com 1999-05-10
## 10906 mark.e.taylor@enron.com 1999-05-10
## 10907 mark.e.taylor@enron.com 1999-05-10
## 10908 mark.e.taylor@enron.com 1999-05-05
## 10909 mark.e.taylor@enron.com 1999-05-05
## 10910 mark.e.taylor@enron.com 1999-05-03
## 10911 mark.e.taylor@enron.com 1999-05-03
## 10912 mark.e.taylor@enron.com 1999-05-03
## 10913 mark.e.taylor@enron.com 1999-04-27
## 10914 mark.e.taylor@enron.com 1999-04-26
## 10915 mark.e.taylor@enron.com 1999-04-23
## 10916 mark.e.taylor@enron.com 1999-04-23
## 10917 mark.e.taylor@enron.com 1999-04-23
## 10918 mark.e.taylor@enron.com 1999-04-22
## 10919 mark.e.taylor@enron.com 1999-04-21
## 10920 mark.e.taylor@enron.com 1999-04-21
## 10921 mark.e.taylor@enron.com 1999-04-20
## 10922 mark.e.taylor@enron.com 1999-04-15
## 10923 mark.e.taylor@enron.com 1999-04-12
## 10924 mark.e.taylor@enron.com 1999-04-12
## 10925 mark.e.taylor@enron.com 1999-04-12
## 10926 mark.e.taylor@enron.com 1999-04-12
## 10927 mark.e.taylor@enron.com 1999-04-12
## 10928 mark.e.taylor@enron.com 1999-04-08
## 10929 mark.e.taylor@enron.com 1999-04-08
## 10930 mark.e.taylor@enron.com 1999-04-06
## 10931 mark.e.taylor@enron.com 1999-04-01
## 10932 mark.e.taylor@enron.com 1999-04-01
## 10933 mark.e.taylor@enron.com 1999-03-31
## 10934 mark.e.taylor@enron.com 1999-03-31
## 10935 mark.e.taylor@enron.com 1999-03-31
## 10936 mark.e.taylor@enron.com 1999-03-31
## 10937 mark.e.taylor@enron.com 1999-03-31
## 10938 mark.e.taylor@enron.com 1999-03-30
## 10939 mark.e.taylor@enron.com 1999-03-30
## 10940 mark.e.taylor@enron.com 1999-03-30
## 10941 mark.e.taylor@enron.com 1999-03-25
## 10942 mark.e.taylor@enron.com 1999-03-25
## 10943 mark.e.taylor@enron.com 1999-03-25
## 10944 mark.e.taylor@enron.com 1999-03-25
## 10945 mark.e.taylor@enron.com 1999-03-25
## 10946 mark.e.taylor@enron.com 1999-03-25
## 10947 mark.e.taylor@enron.com 1999-03-25
## 10948 mark.e.taylor@enron.com 1999-03-25
## 10949 mark.e.taylor@enron.com 1999-03-25
## 10950 mark.e.taylor@enron.com 1999-03-23
## 10951 mark.e.taylor@enron.com 1999-03-23
## 10952 mark.e.taylor@enron.com 1999-03-22
## 10953 mark.e.taylor@enron.com 1999-03-22
## 10954 mark.e.taylor@enron.com 1999-03-19
## 10955 mark.e.taylor@enron.com 1999-03-19
## 10956 mark.e.taylor@enron.com 1999-03-19
## 10957 mark.e.taylor@enron.com 1999-03-19
## 10958 mark.e.taylor@enron.com 1999-03-19
## 10959 mark.e.taylor@enron.com 1999-03-18
## 10960 mark.e.taylor@enron.com 1999-03-18
## 10961 mark.e.taylor@enron.com 1999-03-12
## 10962 mark.e.taylor@enron.com 1999-03-12
## 10963 mark.e.taylor@enron.com 1999-03-12
## 10964 mark.e.taylor@enron.com 1999-03-12
## 10965 mark.e.taylor@enron.com 1999-03-12
## 10966 mark.e.taylor@enron.com 1999-03-11
## 10967 mark.e.taylor@enron.com 1999-03-11
## 10968 mark.e.taylor@enron.com 1999-03-11
## 10969 mark.e.taylor@enron.com 1999-03-11
## 10970 mark.e.taylor@enron.com 1999-03-10
## 10971 mark.e.taylor@enron.com 1999-03-10
## 10972 mark.e.taylor@enron.com 1999-03-10
## 10973 mark.e.taylor@enron.com 1999-03-10
## 10974 mark.e.taylor@enron.com 1999-03-10
## 10975 mark.e.taylor@enron.com 1999-03-10
## 10976 mark.e.taylor@enron.com 1999-03-09
## 10977 mark.e.taylor@enron.com 1999-03-05
## 10978 mark.e.taylor@enron.com 1999-03-05
## 10979 mark.e.taylor@enron.com 1999-03-05
## 10980 mark.e.taylor@enron.com 1999-03-04
## 10981 mark.e.taylor@enron.com 1999-03-01
## 10982 mark.e.taylor@enron.com 1999-02-26
## 10983 mark.e.taylor@enron.com 1999-02-25
## 10984 mark.e.taylor@enron.com 1999-02-25
## 10985 mark.e.taylor@enron.com 1999-02-25
## 10986 mark.e.taylor@enron.com 1999-02-25
## 10987 mark.e.taylor@enron.com 1999-02-22
## 10988 mark.e.taylor@enron.com 1999-02-22
## 10989 mark.e.taylor@enron.com 1999-02-19
## 10990 mark.e.taylor@enron.com 1999-02-17
## 10991 mark.e.taylor@enron.com 1999-02-17
## 10992 mark.e.taylor@enron.com 1999-02-16
## 10993 mark.e.taylor@enron.com 1999-02-16
## 10994 mark.e.taylor@enron.com 1999-02-16
## 10995 mark.e.taylor@enron.com 1999-02-16
## 10996 mark.e.taylor@enron.com 1999-02-16
## 10997 mark.e.taylor@enron.com 1999-02-16
## 10998 mark.e.taylor@enron.com 1999-02-16
## 10999 mark.e.taylor@enron.com 1999-02-12
## 11000 mark.e.taylor@enron.com 1999-02-12
## 11001 mark.e.taylor@enron.com 1999-02-12
## 11002 mark.e.taylor@enron.com 1999-02-12
## 11003 mark.e.taylor@enron.com 1999-02-12
## 11004 mark.e.taylor@enron.com 1999-02-10
## 11005 mark.e.taylor@enron.com 1999-02-10
## 11006 mark.e.taylor@enron.com 1999-02-10
## 11007 mark.e.taylor@enron.com 1999-02-10
## 11008 mark.e.taylor@enron.com 1999-02-10
## 11009 mark.e.taylor@enron.com 1999-02-10
## 11010 mark.e.taylor@enron.com 1999-02-09
## 11011 mark.e.taylor@enron.com 1999-02-08
## 11012 mark.e.taylor@enron.com 1999-02-08
## 11013 mark.e.taylor@enron.com 1999-02-05
## 11014 mark.e.taylor@enron.com 1999-02-05
## 11015 mark.e.taylor@enron.com 1999-02-04
## 11016 mark.e.taylor@enron.com 1999-02-02
## 11017 mark.e.taylor@enron.com 1999-02-01
## 11018 mark.e.taylor@enron.com 1999-02-01
## 11019 mark.e.taylor@enron.com 1999-02-01
## 11020 mark.e.taylor@enron.com 1999-02-01
## 11021 mark.e.taylor@enron.com 1999-02-01
## 11022 mark.e.taylor@enron.com 1999-02-01
## 11023 mark.e.taylor@enron.com 1999-01-28
## 11024 mark.e.taylor@enron.com 1999-01-28
## 11025 mark.e.taylor@enron.com 1999-01-28
## 11026 mark.e.taylor@enron.com 1999-01-27
## 11027 mark.e.taylor@enron.com 1999-01-27
## 11028 mark.e.taylor@enron.com 1999-01-27
## 11029 mark.e.taylor@enron.com 1999-01-27
## 11030 mark.e.taylor@enron.com 1999-01-27
## 11031 mark.e.taylor@enron.com 1999-01-27
## 11032 mark.e.taylor@enron.com 1999-01-27
## 11033 mark.e.taylor@enron.com 1999-01-27
## 11034 mark.e.taylor@enron.com 1999-01-27
## 11035 mark.e.taylor@enron.com 1999-01-27
## 11036 mark.e.taylor@enron.com 1999-01-27
## 11037 mark.e.taylor@enron.com 1999-01-27
## 11038 mark.e.taylor@enron.com 1999-01-27
## 11039 mark.e.taylor@enron.com 1999-01-27
## 11040 mark.e.taylor@enron.com 1999-01-27
## 11041 mark.e.taylor@enron.com 1999-01-27
## 11042 mark.e.taylor@enron.com 1999-01-27
## 11043 mark.e.taylor@enron.com 1999-01-27
## 11044 mark.e.taylor@enron.com 1999-01-23
## 11045 mark.e.taylor@enron.com 1999-01-23
## 11046 mark.e.taylor@enron.com 1999-01-20
## 11047 mark.e.taylor@enron.com 1999-01-20
## 11048 mark.e.taylor@enron.com 1999-01-20
## 11049 mark.e.taylor@enron.com 1999-01-20
## 11050 mark.e.taylor@enron.com 1999-01-20
## 11051 mark.e.taylor@enron.com 1999-01-20
## 11052 mark.e.taylor@enron.com 1999-01-18
## 11053 mark.e.taylor@enron.com 1999-01-18
## 11054 mark.e.taylor@enron.com 1999-01-18
## 11055 mark.e.taylor@enron.com 1999-01-18
## 11056 mark.e.taylor@enron.com 1999-01-18
## 11057 mark.e.taylor@enron.com 1999-01-18
## 11058 mark.e.taylor@enron.com 1999-01-18
## 11059 mark.e.taylor@enron.com 1999-01-18
## 11060 mark.e.taylor@enron.com 1999-01-18
## 11061 mark.e.taylor@enron.com 1999-01-18
## 11062 mark.e.taylor@enron.com 1999-01-18
## 11063 mark.e.taylor@enron.com 1999-01-18
## 11064 mark.e.taylor@enron.com 1999-01-18
## 11065 mark.e.taylor@enron.com 1999-01-15
## 11066 mark.e.taylor@enron.com 1999-01-15
## 11067 mark.e.taylor@enron.com 1999-01-15
## 11068 mark.e.taylor@enron.com 1999-01-15
## 11069 mark.e.taylor@enron.com 1999-01-15
## 11070 mark.e.taylor@enron.com 1999-01-15
## 11071 mark.e.taylor@enron.com 1999-01-15
## 11072 mark.e.taylor@enron.com 1999-01-15
## 11073 mark.e.taylor@enron.com 1999-01-15
## 11074 mark.e.taylor@enron.com 1999-01-14
## 11075 mark.e.taylor@enron.com 1999-01-13
## 11076 mark.e.taylor@enron.com 1999-01-13
## 11077 mark.e.taylor@enron.com 1999-01-13
## 11078 mark.e.taylor@enron.com 1999-01-13
## 11079 mark.e.taylor@enron.com 1999-01-13
## 11080 mark.e.taylor@enron.com 1999-01-13
## 11081 mark.e.taylor@enron.com 1999-01-13
## 11082 mark.e.taylor@enron.com 1999-01-13
## 11083 mark.e.taylor@enron.com 1999-01-13
## 11084 mark.e.taylor@enron.com 1999-01-13
## 11085 mark.e.taylor@enron.com 1999-01-13
## 11086 mark.e.taylor@enron.com 1999-01-13
## 11087 mark.e.taylor@enron.com 1999-01-13
## 11088 mark.e.taylor@enron.com 1999-01-13
## 11089 mark.e.taylor@enron.com 1999-01-13
## 11090 mark.e.taylor@enron.com 1999-01-13
## 11091 mark.e.taylor@enron.com 1999-01-13
## 11092 mark.e.taylor@enron.com 1999-01-13
## 11093 mark.e.taylor@enron.com 1999-01-13
## 11094 mark.e.taylor@enron.com 1999-01-13
## 11095 mark.e.taylor@enron.com 1999-01-13
## 11096 mark.e.taylor@enron.com 1999-01-13
## 11097 mark.e.taylor@enron.com 1999-01-13
## 11098 mark.e.taylor@enron.com 1999-01-13
## 11099 mark.e.taylor@enron.com 1999-01-13
## 11100 mark.e.taylor@enron.com 1999-01-13
## 11101 mark.e.taylor@enron.com 1999-01-13
## 11102 mark.e.taylor@enron.com 1999-01-13
## 11103 mark.e.taylor@enron.com 1999-01-13
## 11104 mark.e.taylor@enron.com 1999-01-13
## 11105 mark.e.taylor@enron.com 1999-01-13
## 11106 mark.e.taylor@enron.com 1999-01-13
## 11107 mark.e.taylor@enron.com 1999-01-13
## 11108 mark.e.taylor@enron.com 1999-01-13
## 11109 mark.e.taylor@enron.com 1999-01-13
## 11110 mark.e.taylor@enron.com 1999-01-13
## 11111 mark.e.taylor@enron.com 1999-01-13
## subject
## 1 Set of Graphs
## 2 Block Forward Financial Trades
## 3 Block Forward Financial Trades
## 4 Block Forward Financial Trades
## 5 Block forwards
## 6 Block forwards
## 7 Block forwards
## 8 CAISO Energy - Brokers (2)
## 9 CAISO Energy - Brokers (2)
## 10 CAISO Energy - Brokers (2)
## 11 CAISO Energy - Brokers (2)
## 12 CAISO Counterparties
## 13 Report on Calif. Electricity Price Spikes by CPUC and EOB
## 14 Report on Calif. Electricity Price Spikes by CPUC and EOB
## 15 Report on Calif. Electricity Price Spikes by CPUC and EOB
## 16 EXPORT FEES
## 17 EXPORT FEES
## 18 EXPORT FEES
## 19 EXPORT FEES
## 20 EXPORT FEES
## 21 EXPORT FEES
## 22 Bilateral Contracts for SCE, PG&E and SDG&E
## 23 Bilateral Contracts for SCE, PG&E and SDG&E
## 24 Yesterday s Events
## 25 Yesterday s Events
## 26 Yesterday s Events
## 27 Yesterday s Events
## 28 Bilateral Contracts for SCE, PG&E and SDG&E - Quantity limits
## 29 Bilateral Contracts for SCE, PG&E and SDG&E - Quantity limits
## 30 DJ BIG PICTURE: Wider Econ Risks In California s Power Woes
## 31 DJ BIG PICTURE: Wider Econ Risks In California s Power Woes
## 32 DJ BIG PICTURE: Wider Econ Risks In California s Power Woes
## 33 DJ BIG PICTURE: Wider Econ Risks In California s Power Woes
## 34 DJ BIG PICTURE: Wider Econ Risks In California s Power Woes
## 35 DJ BIG PICTURE: Wider Econ Risks In California s Power Woes
## 36 DJ BIG PICTURE: Wider Econ Risks In California s Power Woes
## 37 Explanation of CAISO Energy vs. "Schedule C"
## 38 SRRS Password
## 39 Enron Air Consultants
## 40 Confirmation Template for CAISO Firm Energy Trades
## 41 Enron s transmission/power exchange model for discussion
## 42 Enron s transmission/power exchange model for discussion
## 43 Enron s transmission/power exchange model for discussion
## 44 RE: Path 26 OTC increase -- IMPORTANT
## 45 Re: Wharton Recruiting
## 46
## 47
## 48 DJ Clinton To Direct Govt To Help Calif On Electricity Woes
## 49 DJ Clinton To Direct Govt To Help Calif On Electricity Woes
## 50 DJ Clinton To Direct Govt To Help Calif On Electricity Woes
## 51 DJ Clinton To Direct Govt To Help Calif On Electricity Woes
## 52 DJ Clinton To Direct Govt To Help Calif On Electricity Woes
## 53 DJ Clinton To Direct Govt To Help Calif On Electricity Woes
## 54 DJ Clinton To Direct Govt To Help Calif On Electricity Woes
## 55 Change to EnData
## 56 Change to EnData
## 57 Change to EnData
## 58 Change to EnData
## 59 Change to EnData
## 60 DJ Calif Assembly Delays SDG&E Rate Roll-Back Vote To Thu
## 61 DJ Calif Assembly Delays SDG&E Rate Roll-Back Vote To Thu
## 62 DJ Calif Assembly Delays SDG&E Rate Roll-Back Vote To Thu
## 63 DJ Calif Assembly Delays SDG&E Rate Roll-Back Vote To Thu
## 64 DJ Calif Assembly Delays SDG&E Rate Roll-Back Vote To Thu
## 65 DJ Calif Assembly Delays SDG&E Rate Roll-Back Vote To Thu
## 66 DJ Calif Assembly Delays SDG&E Rate Roll-Back Vote To Thu
## 67 Utility Environment Report Newsletter (pdf)
## 68 FW: Calif Gov Hopes To Get New Rate-Freeze Bill Unveiled Thursday
## 69 FW: Calif Gov Hopes To Get New Rate-Freeze Bill Unveiled Thursday
## 70 FW: Calif Gov Hopes To Get New Rate-Freeze Bill Unveiled Thursday
## 71 FW: Calif Gov Hopes To Get New Rate-Freeze Bill Unveiled Thursday
## 72 FW: Calif Gov Hopes To Get New Rate-Freeze Bill Unveiled Thursday
## 73 FW: Calif Gov Hopes To Get New Rate-Freeze Bill Unveiled Thursday
## 74 FW: Calif Gov Hopes To Get New Rate-Freeze Bill Unveiled Thursday
## 75 Bloomberg - Good News!
## 76 Bloomberg - Good News!
## 77 DJ US Northwest Pwr Forwards Higher On Water; SW 3Q Up
## 78 DJ US Northwest Pwr Forwards Higher On Water; SW 3Q Up
## 79 DJ US Northwest Pwr Forwards Higher On Water; SW 3Q Up
## 80 DJ US Northwest Pwr Forwards Higher On Water; SW 3Q Up
## 81 DJ US Northwest Pwr Forwards Higher On Water; SW 3Q Up
## 82 DJ US Northwest Pwr Forwards Higher On Water; SW 3Q Up
## 83 DJ US Northwest Pwr Forwards Higher On Water; SW 3Q Up
## 84 New Generation
## 85 New Generation
## 86 New Generation
## 87 New Generation
## 88 New Generation
## 89 New Generation
## 90 EnronOnline Phase 2
## 91 EnronOnline Phase 2
## 92 EnronOnline Phase 2
## 93 EnronOnline Phase 2
## 94 VAR Reports
## 95 VAR Reports
## 96 VAR Reports
## 97 VAR Reports
## 98 VAR Reports
## 99 VAR Reports
## 100 VAR Reports
## 101 VAR Reports
## 102 ACTION REQUIRED: Your Attendance at EnronOnline Training/Presentation
## 103 ACTION REQUIRED: Your Attendance at EnronOnline Training/Presentation
## 104 ACTION REQUIRED: Your Attendance at EnronOnline Training/Presentation
## 105 ACTION REQUIRED: Your Attendance at EnronOnline Training/Presentation
## 106 ACTION REQUIRED: Your Attendance at EnronOnline Training/Presentation
## 107 Ameren Services Company
## 108 Ameren Services Company
## 109 Ameren Services Company
## 110 Ameren Services Company
## 111 Ameren Services Company
## 112 Ameren Services Company
## 113 Ameren Services Company
## 114 Ameren Services Company
## 115 Ameren Services Company
## 116 Ameren Services Company
## 117 Ameren Services Company
## 118 Ameren Services Company
## 119 DEAL CORRECTION REPORT 8-25
## 120 DEAL CORRECTION REPORT 8-25
## 121 DEAL CORRECTION REPORT 8-25
## 122 DEAL CORRECTION REPORT 8-25
## 123 DEAL CORRECTION REPORT 8-25
## 124 DEAL CORRECTION REPORT 8-25
## 125 DEAL CORRECTION REPORT 8-25
## 126 ISO To Participate in Super Peak Market
## 127 ISO To Participate in Super Peak Market
## 128 Out of Office Procedure
## 129 Out of Office Procedure
## 130 Out of Office Procedure
## 131 Out of Office Procedure
## 132 Out of Office Procedure
## 133 Out of Office
## 134 Out of Office
## 135 Out of Office
## 136 Out of Office
## 137 Out of Office
## 138 Out of Office
## 139 SDG&E Emergency Motion for Bilateral Authority-Draft Decision
## 140 SDG&E Emergency Motion for Bilateral Authority-Draft Decision
## 141 SDG&E Emergency Motion for Bilateral Authority-Draft Decision
## 142 SDG&E Emergency Motion for Bilateral Authority-Draft Decision
## 143 ISO To Participate in Super Peak Market
## 144 ISO To Participate in Super Peak Market
## 145 ISO To Participate in Super Peak Market
## 146 OPTIMUM
## 147 OPTIMUM
## 148 OPTIMUM
## 149 OPTIMUM
## 150 OPTIMUM
## 151 OPTIMUM
## 152 OPTIMUM
## 153 D.C. REPORT 8-29
## 154 D.C. REPORT 8-29
## 155 D.C. REPORT 8-29
## 156 D.C. REPORT 8-29
## 157 D.C. REPORT 8-29
## 158 D.C. REPORT 8-29
## 159 D.C. REPORT 8-29
## 160 EnronOnline Training Dates Change
## 161 EnronOnline Training Dates Change
## 162 EnronOnline Training Dates Change
## 163 EnronOnline Training Dates Change
## 164 EnronOnline Training Dates Change
## 165 EnronOnline Training Dates Change
## 166 EnronOnline Training Dates Change
## 167 EnronOnline Training Dates Change
## 168 EnronOnline Training Dates Change
## 169 EnronOnline Training Dates Change
## 170 EnronOnline Training Dates Change
## 171 EnronOnline Training Dates Change
## 172 EnronOnline Training Dates Change
## 173 EnronOnline Training Dates Change
## 174 EnronOnline Training Dates Change
## 175 EnronOnline Training Dates Change
## 176 EnronOnline Training Dates Change
## 177 EnronOnline Training Dates Change
## 178 EnronOnline Training Dates Change
## 179 EnronOnline Training Dates Change
## 180 EnronOnline Training Dates Change
## 181 EnronOnline Training Dates Change
## 182 EnronOnline Training Dates Change
## 183 EnronOnline Training Dates Change
## 184 EnronOnline Training Dates Change
## 185 EnronOnline Training Dates Change
## 186 EnronOnline Training Dates Change
## 187 EnronOnline Training Dates Change
## 188 EnronOnline Training Dates Change
## 189 EnronOnline Training Dates Change
## 190 EnronOnline Training Dates Change
## 191 EnronOnline Training Dates Change
## 192 EnronOnline Training Dates Change
## 193 EnronOnline Training Dates Change
## 194 EnronOnline Training Dates Change
## 195 EnronOnline Training Dates Change
## 196 EnronOnline Training Dates Change
## 197 EnronOnline Training Dates Change
## 198 EnronOnline Training Dates Change
## 199 EnronOnline Training Dates Change
## 200 EnronOnline Training Dates Change
## 201 EnronOnline Training Dates Change
## 202 EnronOnline Training Dates Change
## 203 EnronOnline Training Dates Change
## 204 EnronOnline Training Dates Change
## 205 EnronOnline Training Dates Change
## 206 EnronOnline Training Dates Change
## 207 EnronOnline Training Dates Change
## 208 EnronOnline Training Dates Change
## 209 DJ Power Price Cap In Calif Puts Brinksmanship On Grid
## 210 DJ Power Price Cap In Calif Puts Brinksmanship On Grid
## 211 DJ Power Price Cap In Calif Puts Brinksmanship On Grid
## 212 DJ Power Price Cap In Calif Puts Brinksmanship On Grid
## 213 DJ Power Price Cap In Calif Puts Brinksmanship On Grid
## 214 DJ Power Price Cap In Calif Puts Brinksmanship On Grid
## 215 DJ Power Price Cap In Calif Puts Brinksmanship On Grid
## 216 DJ Rising Electricity Prices Could Be Wild Card In July CPI
## 217 DJ Rising Electricity Prices Could Be Wild Card In July CPI
## 218 DJ Rising Electricity Prices Could Be Wild Card In July CPI
## 219 DJ Rising Electricity Prices Could Be Wild Card In July CPI
## 220 DJ Rising Electricity Prices Could Be Wild Card In July CPI
## 221 DJ Rising Electricity Prices Could Be Wild Card In July CPI
## 222 DJ Rising Electricity Prices Could Be Wild Card In July CPI
## 223 DJ POWER CUTS: Blackouts Lead Firms To Examine Power Supply
## 224 DJ POWER CUTS: Blackouts Lead Firms To Examine Power Supply
## 225 DJ POWER CUTS: Blackouts Lead Firms To Examine Power Supply
## 226 DJ POWER CUTS: Blackouts Lead Firms To Examine Power Supply
## 227 DJ POWER CUTS: Blackouts Lead Firms To Examine Power Supply
## 228 DJ POWER CUTS: Blackouts Lead Firms To Examine Power Supply
## 229 DJ POWER CUTS: Blackouts Lead Firms To Examine Power Supply
## 230 DJ Calif Pwr Producers Urge FERC Reject Price Cap Petition
## 231 DJ Calif Pwr Producers Urge FERC Reject Price Cap Petition
## 232 DJ Calif Pwr Producers Urge FERC Reject Price Cap Petition
## 233 DJ Calif Pwr Producers Urge FERC Reject Price Cap Petition
## 234 DJ Calif Pwr Producers Urge FERC Reject Price Cap Petition
## 235 DJ Calif Pwr Producers Urge FERC Reject Price Cap Petition
## 236 DJ Calif Pwr Producers Urge FERC Reject Price Cap Petition
## 237 DJ Calif ISO Exceeded $250 Cap In Off-system Buys -Sources
## 238 DJ Calif ISO Exceeded $250 Cap In Off-system Buys -Sources
## 239 DJ Calif ISO Exceeded $250 Cap In Off-system Buys -Sources
## 240 DJ Calif ISO Exceeded $250 Cap In Off-system Buys -Sources
## 241 DJ Calif ISO Exceeded $250 Cap In Off-system Buys -Sources
## 242 DJ Calif ISO Exceeded $250 Cap In Off-system Buys -Sources
## 243 DJ Calif ISO Exceeded $250 Cap In Off-system Buys -Sources
## 244 DJ Calif Generators: `We Welcome Probe Into Power Market - DJ Ca\tlif ISO Urges FERC To Reject Pwr Producers Complaint
## 245 DJ Calif Generators: `We Welcome Probe Into Power Market - DJ Ca\tlif ISO Urges FERC To Reject Pwr Producers Complaint
## 246 DJ Calif Generators: `We Welcome Probe Into Power Market - DJ Ca\tlif ISO Urges FERC To Reject Pwr Producers Complaint
## 247 DJ Calif Generators: `We Welcome Probe Into Power Market - DJ Ca\tlif ISO Urges FERC To Reject Pwr Producers Complaint
## 248 DJ Calif Generators: `We Welcome Probe Into Power Market - DJ Ca\tlif ISO Urges FERC To Reject Pwr Producers Complaint
## 249 DJ Calif Generators: `We Welcome Probe Into Power Market - DJ Ca\tlif ISO Urges FERC To Reject Pwr Producers Complaint
## 250 DJ Calif Generators: `We Welcome Probe Into Power Market - DJ Ca\tlif ISO Urges FERC To Reject Pwr Producers Complaint
## 251 daily block forwards new charges
## 252 daily block forwards new charges
## 253 daily block forwards new charges
## 254 CalPX Market Compliance Unit Submits its 2nd Annual Report to FERC
## 255 CalPX Market Compliance Unit Submits its 2nd Annual Report to FERC
## 256 CalPX Market Compliance Unit Submits its 2nd Annual Report to FERC
## 257 CalPX Market Compliance Unit Submits its 2nd Annual Report to FERC
## 258 CalPX Market Compliance Unit Submits its 2nd Annual Report to FERC
## 259 CalPX Market Compliance Unit Submits its 2nd Annual Report to FERC
## 260 CalPX Market Compliance Unit Submits its 2nd Annual Report to FERC
## 261 CalPX Market Compliance Unit Submits its 2nd Annual Report to FERC
## 262 CalPX Market Compliance Unit Submits its 2nd Annual Report to FERC
## 263 CalPX Market Compliance Unit Submits its 2nd Annual Report to FERC
## 264 CalPX Market Compliance Unit Submits its 2nd Annual Report to FERC
## 265 CalPX Market Compliance Unit Submits its 2nd Annual Report to FERC
## 266 PX Letter
## 267 Meeting with CAISO re Desert Southwest
## 268 Meeting with CAISO re Desert Southwest
## 269 *** INTERRUPTIBLE CUSTOMERS CAN PARTICIPATE IN ISO A/S PROGRAM ***
## 270 *** INTERRUPTIBLE CUSTOMERS CAN PARTICIPATE IN ISO A/S PROGRAM ***
## 271 *** INTERRUPTIBLE CUSTOMERS CAN PARTICIPATE IN ISO A/S PROGRAM ***
## 272 *** INTERRUPTIBLE CUSTOMERS CAN PARTICIPATE IN ISO A/S PROGRAM ***
## 273 *** INTERRUPTIBLE CUSTOMERS CAN PARTICIPATE IN ISO A/S PROGRAM ***
## 274 Budget Language on Cal PX
## 275 Budget Language on Cal PX
## 276 Budget Language on Cal PX
## 277 Update on Discussions between CAISO and DSW Parties
## 278 GREAT NEWS ****FERC Order on Morgan Stanley Complaint Against ISO
## 279 GREAT NEWS ****FERC Order on Morgan Stanley Complaint Against ISO
## 280 GREAT NEWS ****FERC Order on Morgan Stanley Complaint Against ISO
## 281 GREAT NEWS ****FERC Order on Morgan Stanley Complaint Against ISO
## 282 information from iso
## 283 information from iso
## 284 information from iso
## 285 CAISO Congestion Model
## 286 Re: Governor s Press Conference -- Shot Across the Bow
## 287 Re: Governor s Press Conference -- Shot Across the Bow
## 288 Re: Governor s Press Conference -- Shot Across the Bow
## 289 Re: Governor s Press Conference -- Shot Across the Bow
## 290 Re: Governor s Press Conference -- Shot Across the Bow
## 291 Re: Governor s Press Conference -- Shot Across the Bow
## 292 Re: Governor s Press Conference -- Shot Across the Bow
## 293 Re: Governor s Press Conference -- Shot Across the Bow
## 294 Re: Governor s Press Conference -- Shot Across the Bow
## 295 Re: Governor s Press Conference -- Shot Across the Bow
## 296 Re: Governor s Press Conference -- Shot Across the Bow
## 297 Re: Governor s Press Conference -- Shot Across the Bow
## 298 CA ISO / CAL PX Information Related to 2000 Market Activity
## 299 CA ISO / CAL PX Information Related to 2000 Market Activity
## 300 Re: SDG&E Offer
## 301 RE: Commission Investigation into Functioning of Wholesale/Retail Markets in San Diego
## 302 RE: Commission Investigation into Functioning of Wholesale/Retail Markets in San Diego
## 303 Critics Seek More Control Over ISO
## 304 Critics Seek More Control Over ISO
## 305 Critics Seek More Control Over ISO
## 306 Critics Seek More Control Over ISO
## 307 Critics Seek More Control Over ISO
## 308 Critics Seek More Control Over ISO
## 309 Critics Seek More Control Over ISO
## 310 Critics Seek More Control Over ISO
## 311 Critics Seek More Control Over ISO
## 312 Critics Seek More Control Over ISO
## 313 Critics Seek More Control Over ISO
## 314 SDG&E FERC Ad
## 315 SDG&E FERC Ad
## 316 Prehearing Conference Statement
## 317 Prehearing Conference Statement
## 318 Deregulation: `Conspiracy of Incompetence Even if energy prices are being manipulated, it may not be illegal. AND Gov. Davis Calls for Cut in Electricity Bills:
## 319 Deregulation: `Conspiracy of Incompetence Even if energy prices are being manipulated, it may not be illegal. AND Gov. Davis Calls for Cut in Electricity Bills:
## 320 Deregulation: `Conspiracy of Incompetence Even if energy prices are being manipulated, it may not be illegal. AND Gov. Davis Calls for Cut in Electricity Bills:
## 321 Deregulation: `Conspiracy of Incompetence Even if energy prices are being manipulated, it may not be illegal. AND Gov. Davis Calls for Cut in Electricity Bills:
## 322 Deregulation: `Conspiracy of Incompetence Even if energy prices are being manipulated, it may not be illegal. AND Gov. Davis Calls for Cut in Electricity Bills:
## 323 Deregulation: `Conspiracy of Incompetence Even if energy prices are being manipulated, it may not be illegal. AND Gov. Davis Calls for Cut in Electricity Bills:
## 324 Deregulation: `Conspiracy of Incompetence Even if energy prices are being manipulated, it may not be illegal. AND Gov. Davis Calls for Cut in Electricity Bills:
## 325 Deregulation: `Conspiracy of Incompetence Even if energy prices are being manipulated, it may not be illegal. AND Gov. Davis Calls for Cut in Electricity Bills:
## 326 Deregulation: `Conspiracy of Incompetence Even if energy prices are being manipulated, it may not be illegal. AND Gov. Davis Calls for Cut in Electricity Bills:
## 327 Deregulation: `Conspiracy of Incompetence Even if energy prices are being manipulated, it may not be illegal. AND Gov. Davis Calls for Cut in Electricity Bills:
## 328 Deregulation: `Conspiracy of Incompetence Even if energy prices are being manipulated, it may not be illegal. AND Gov. Davis Calls for Cut in Electricity Bills:
## 329 Deregulation: `Conspiracy of Incompetence Even if energy prices are being manipulated, it may not be illegal. AND Gov. Davis Calls for Cut in Electricity Bills:
## 330 Deregulation: `Conspiracy of Incompetence Even if energy prices are being manipulated, it may not be illegal. AND Gov. Davis Calls for Cut in Electricity Bills:
## 331 Deregulation: `Conspiracy of Incompetence Even if energy prices are being manipulated, it may not be illegal. AND Gov. Davis Calls for Cut in Electricity Bills:
## 332 Deregulation: `Conspiracy of Incompetence Even if energy prices are being manipulated, it may not be illegal. AND Gov. Davis Calls for Cut in Electricity Bills:
## 333 ISO Special 8.10.00 Report on Energy Market Issues and Performance: May-June, 2000
## 334 ISO Special 8.10.00 Report on Energy Market Issues and Performance: May-June, 2000
## 335 ISO Special 8.10.00 Report on Energy Market Issues and Performance: May-June, 2000
## 336 USBS Painewebber
## 337 FW: Access to TAGG
## 338 RE: RE: Whats up!!!!!
## 339 RE: Expense Receipts
## 340 RE: BADGE
## 341 RE: BADGE
## 342 RE: Badge Access
## 343 Asset Development - Weekly Report
## 344 Asset Development - Weekly Report
## 345 Asset Development - Weekly Report
## 346 RE: Mid 4 to Mid 3 Quote
## 347 RE: Backhaul Rates from NNG to Waha
## 348 Waha Backhaul
## 349 Mid 4 to Mid 3 Quote
## 350 Re: Gas Injection Project
## 351 Re: Gas Injection Project
## 352 Re: Gas Injection Project
## 353 Re: Gas Injection Project
## 354 Mount Mckinley NGL Storage
## 355 Gas Modelling Results
## 356 Gas Modelling Results
## 357 Gas Modelling Results
## 358 Gas Modelling Results
## 359 Re: Conference call change
## 360 Re: Conference call change
## 361 Re: Conference call change
## 362 Re: Conference call change
## 363 Re: Conference call change
## 364 Re: Conference call change
## 365 Re: Conference call change
## 366 Re: Conference call change
## 367 Re: Gas Injection Project
## 368 Re: Gas Injection Project
## 369 Re: Gas Injection Project
## 370 Re: Gas Injection Project
## 371 Re: Gas Injection Project
## 372 Re: Gas Injection Project
## 373 TW Gomez lateral offer memo
## 374 TW Gomez lateral offer memo
## 375 TW Gomez lateral offer memo
## 376 TW Gomez lateral offer memo
## 377 TW Gomez lateral offer memo
## 378 TW Gomez lateral offer memo
## 379 RE: Potential sale of Gomez lateral pipe
## 380 FW: Potential sale of Gomez lateral pipe
## 381 FW: Potential sale of Gomez lateral pipe
## 382 RE: Location Number
## 383 RE: Location Number
## 384 FW: Location Number
## 385 Potential sale of Gomez lateral pipe
## 386 Potential sale of Gomez lateral pipe
## 387 Potential sale of Gomez lateral pipe
## 388 Potential sale of Gomez lateral pipe
## 389 Potential sale of Gomez lateral pipe
## 390 Potential sale of Gomez lateral pipe
## 391 Potential sale of Gomez lateral pipe
## 392 RE: Alaska project work order
## 393 Producers Tell Alaska Governor the Project is Now A Long Shot
## 394 Alaskan Drilling Starts
## 395
## 396 CERA Talks About Alaska Pipe Chances
## 397 Foothills Makes Statement on Alaska Pipe
## 398 FW: New Iowa Pipeline
## 399 Press Release from Arctic Resources Company
## 400 Press Release from Arctic Resources Company
## 401 Alaskan Info
## 402 Sempra Eyes LNG Terminal in North Baja
## 403 Sempra Eyes LNG Terminal in North Baja
## 404 RE: Call from Exxon re: Alaskan gas transportation options
## 405 RE: Call from Exxon re: Alaskan gas transportation options
## 406 Revised- Confidential: Phoenix, AZ gas market research study
## 407 RE: Additional Budget Authorization Request
## 408 RE: Additional Budget Authorization Request
## 409 RE: Sun Devil Cost Sheet
## 410 RE: Sun Devil Cost Sheet
## 411 RE: Sun Devil Cost Sheet
## 412 FW: Sun Devil Cost Sheet
## 413 FW: Sun Devil Cost Sheet
## 414 SouthWest Gas ROW
## 415 SouthWest Gas ROW
## 416 SouthWest Gas ROW
## 417 El Paso Capacity Allocation
## 418 Initial Comments
## 419 Sun Devil
## 420 FW: Sun Devil
## 421 Weekly update 3/15
## 422 Weekly update 3/15
## 423 Weekly update 3/15
## 424 Weekly update 3/15
## 425 Weekly update 3/15
## 426 Weekly update 3/15
## 427 FW: Sun Devil Cost Sheet
## 428 Sun Devil - "to do" list
## 429 weekly update 3/8
## 430 weekly update 3/8
## 431 weekly update 3/8
## 432 weekly update 3/8
## 433 ACC approval
## 434 ETS Asset Development weekly update - 3/1/02
## 435 ETS Asset Development weekly update - 3/1/02
## 436 ETS Asset Development weekly update - 3/1/02
## 437 ETS Asset Development weekly update - 3/1/02
## 438 ETS Asset Development weekly update - 3/1/02
## 439 ETS Asset Development weekly update - 3/1/02
## 440 ETS Asset Development weekly update - 3/1/02
## 441 ETS Asset Development weekly update - 3/1/02
## 442 RE: Sun Devil - ambient temperature affect on pipeline capacity
## 443 FW: Sun Devil
## 444 RE: Gas Pipeline Station Waste Heat Recovery
## 445 RE: Gas Pipeline Station Waste Heat Recovery
## 446 Sun Devil - Pinnacle West term sheet
## 447 Horsepower Requirements
## 448 Horsepower Requirements
## 449 FW: Sun Devil Fuel Use - Revised 02/20/02
## 450 Sun Devil Structure thing
## 451 RE: Az Public Service update on Sun Devil
## 452 RE: Contract POI s
## 453 Article
## 454 Article
## 455 RE: sun devil shipper credit proposal
## 456 weekly update 2/15
## 457 weekly update 2/15
## 458 weekly update 2/15
## 459 weekly update 2/15
## 460 FW: CPUC Infrastructure Report
## 461 Sun Devil Expansion Options
## 462 Re: revised Panda term sheet
## 463 Sun Devil Alterative - Revision #10
## 464 Sun Devil Alterative - Revision #10
## 465 Sun Devil Design Conditions
## 466 Sun Devil Design Conditions
## 467 FW: Clip
## 468 Sun Devil update 2/1
## 469 Sun Devil update 2/1
## 470 Sun Devil Cases
## 471 Weekly update 1/25
## 472 Weekly update 1/25
## 473 RE: FERC application cost for Sun Devil
## 474 Weekly Update 1/4
## 475 Weekly Update 1/4
## 476 weekly update 1/11
## 477 weekly update 1/11
## 478 RE: Panda Energy
## 479 FW: Sun Devil/Sonoran Pipeline
## 480 Response to Proposal issues
## 481 Response to Proposal issues
## 482 Response to Proposal issues
## 483 Response to Proposal issues
## 484 FW: Gila Bend (TECO-Panda deals)
## 485 RE: Sun Devil delivery pressure
## 486 RE: Confidentiality Agreement
## 487 RE: Confidentiality Agreement
## 488 FW: Transwestern Presentation / Proposal
## 489 RE: SFV Rate Design for Sun Devil
## 490 Maximum Hourly Flow
## 491 Sun Devil Cost Reconciliation
## 492 Sun Devil
## 493 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 494 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 495 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 496 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 497 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 498 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 499 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 500 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 501 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 502 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 503 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 504 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 505 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 506 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 507 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 508 Sun Devil
## 509 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 510 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 511 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 512 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 513 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 514 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 515 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 516 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 517 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 518 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 519 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 520 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 521 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 522 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 523 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 524 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 525 RE: Review Draft - Sundevil Fatal Flaw Analysis/Briefing Report
## 526 RE: Salt storage
## 527 Sun Devil Estimate
## 528 RE: Agencies and NGOs already contacted for Sun Devil
## 529 Costs/Activities to FERC Filing- Sun Devil
## 530 RE: NARUC-IOGCC Pipeline Permitting Workgroup Report
## 531 Preliminary Environmental Timeline for Sun Devil Project
## 532 Preliminary Environmental Timeline for Sun Devil Project
## 533 Preliminary Environmental Timeline for Sun Devil Project
## 534 Preliminary Environmental Timeline for Sun Devil Project
## 535 FW: Kinder Morgan - Sonoran Project
## 536 FW: Kinder Morgan - Sonoran Project
## 537 FW: Kinder Morgan - Sonoran Project
## 538 FW: Kinder Morgan - Sonoran Project
## 539 FW: Kinder Morgan - Sonoran Project
## 540 RE: Panda Energy Extension
## 541 RE: Confidentiality of Sun Devil???
## 542 FW: Confidentiality of Sun Devil???
## 543 RE: Additional Cost Estimate - Sun Devil Project
## 544 RE: Additional Cost Estimate - Sun Devil Project
## 545 RE: Additional Cost Estimate - Sun Devil Project
## 546 RE: PR Firm in Arizona
## 547 RE: PR Firm in Arizona
## 548 RE: Additional Cost Estimate - Sun Devil Project
## 549 RE: Additional Cost Estimate - Sun Devil Project
## 550 RE: Additional Cost Estimate - Sun Devil Project
## 551 RE: Additional Cost Estimate - Sun Devil Project
## 552 RE: Additional Cost Estimate - Sun Devil Project
## 553 RE: Additional Cost Estimate - Sun Devil Project
## 554 RE: Schedule for Preliminary Cost Estimate
## 555 RE: Schedule for Preliminary Cost Estimate
## 556 RE: GITA GIS for Oil and Gas meeting
## 557 Ssun Devil Expansion Project - Level A Estimate
## 558 RE: Construction Cams
## 559 Sun Devil Max Rate Contract
## 560 Sun Devil Max Rate Contract
## 561 Sun Devil Contracts
## 562 Sun Devil Contracts
## 563 Sun Devil - - Negotiated Rate Contract
## 564 Sun Devil - - Negotiated Rate Contract
## 565 RE: Panda Energy lateral
## 566 RE: TW ROW Alignment
## 567 RE: TW ROW Alignment
## 568 Sun Devil Project Comparisons To El Paso
## 569 Revised Cost Estimate for El Paso Sun Devil Competitive Estimate
## 570 Press Release for your Review - TW s Sun Devil Expansion
## 571 Press Release for your Review - TW s Sun Devil Expansion
## 572 Press Release for your Review - TW s Sun Devil Expansion
## 573 Press Release for your Review - TW s Sun Devil Expansion
## 574 Press Release for your Review - TW s Sun Devil Expansion
## 575 RE: Draft 4 - TW Sun Devil Successful Open Season Press Release
## 576 RE: Draft 4 - TW Sun Devil Successful Open Season Press Release
## 577 RE: Draft 4 - TW Sun Devil Successful Open Season Press Release
## 578 RE: Draft 4 - TW Sun Devil Successful Open Season Press Release
## 579 RE: Draft 4 - TW Sun Devil Successful Open Season Press Release
## 580 RE: Draft 4 - TW Sun Devil Successful Open Season Press Release
## 581 RE: Draft 4 - TW Sun Devil Successful Open Season Press Release
## 582 RE: Draft 4 - TW Sun Devil Successful Open Season Press Release
## 583 RE: Draft 4 - TW Sun Devil Successful Open Season Press Release
## 584 Kinder Morgan - Sonoran Project
## 585 Kinder Morgan - Sonoran Project
## 586 Kinder Morgan - Sonoran Project
## 587 RE: Additional Questions from Eric
## 588 RE: Draft 2 - TW Sun Devil Successful Open Season Press Release
## 589 RE: Draft 2 - TW Sun Devil Successful Open Season Press Release
## 590 RE: Draft 2 - TW Sun Devil Successful Open Season Press Release
## 591 RE: Draft 2 - TW Sun Devil Successful Open Season Press Release
## 592 Sun Devil - Helicopter Fly-Over of Routes
## 593 Sun Devil - Helicopter Fly-Over of Routes
## 594 Sun Devil - Helicopter Fly-Over of Routes
## 595 RE: Sun Devil Pipeline Lengths
## 596 Re: Sun Devil Marketing.xls
## 597 Navajo ROW - Sun Devil
## 598 Navajo ROW - Sun Devil
## 599 Navajo ROW - Sun Devil
## 600 Navajo ROW - Sun Devil
## 601 Dick Ingersoll
## 602 Sun Devil Fatal Flaw Analysis/Aff. W.O.
## 603 Sun Devil Fatal Flaw Analysis/Aff. W.O.
## 604 Sun Devil Project - Level B Request "REVISED"
## 605 FW: High Schools for Habitat Article in the Bugle(September-October 2001)
## 606 FW: FW: High Schools for Habitat Article in the Bugle (September-October 2001)
## 607 FW: Endangered Species Surveys, Red Rock Expansion
## 608 RE: map coordinates
## 609 Sun Devil Project Phoenix terminus
## 610 Sun Devil Project Phoenix terminus
## 611 FW: Power Plant Development
## 612 Preliminary Environmental Timeline - Sun Devil
## 613 Preliminary Environmental Timeline - Sun Devil
## 614 Preliminary Environmental Timeline - Sun Devil
## 615 Sun Devil Project - Preliminary Scoping and Fatal Flaw Analysis
## 616 Sun Devil Project - Preliminary Scoping and Fatal Flaw Analysis
## 617 Sun Devil Project - Preliminary Scoping and Fatal Flaw Analysis
## 618 Re: FW: Sun Devil Marketing
## 619 RE: Phone Conversation with TNC - Sun Devil Project
## 620 RE: Phone Conversation with TNC - Sun Devil Project
## 621 RE: Phone Conversation with TNC - Sun Devil Project
## 622 FW: Phone Conversation with TNC
## 623 FW: Phone Conversation with TNC
## 624 FW: Phone Conversation with TNC
## 625 Re: Project Sun Devil EIS
## 626 Re: Project Sun Devil EIS
## 627 Re: Project Sun Devil EIS
## 628
## 629 RE: Project Sun Devil EIS
## 630 RE: Project Sun Devil EIS
## 631 RE: ENSR
## 632 Sun Devil Project - Level B Request
## 633 Sun Devil Project
## 634 RE: Phone Conversation with TNC - Sun Devil Project
## 635 New Mexico Power Plant Project
## 636 New Mexico Power Plant Project
## 637 New Mexico Power Plant Project
## 638 New Mexico Power Plant Project
## 639 Graphical Depiction of AZNMNV Sub Region of New Generation Projected
## 640 eSource Request -
## 641 Rockies/SanJuan/Four Corners
## 642 RE: Sun Devil open season draft
## 643 RE: Sun Devil open season draft
## 644 Electricity Price Discovery
## 645 Pricing Information - AZ Market
## 646 Sun Devil Project
## 647 Sun Devil Pipeline Project
## 648 RE: TW lateral pipe sale
## 649 San Juan Basin Most Active Operators
## 650 San Juan Basin Most Active Operators
## 651 El Paso Proceeding
## 652 Transwestern Historical Pressures - Kingman
## 653 Transwestern Historical Pressures - Kingman
## 654 FW: Salt storage
## 655 FW: Salt storage
## 656 Trans Pecos Letter from Kim
## 657 Contact list.
## 658 RE: Keystone Storage Proposal
## 659 RE: Keystone Storage Proposal
## 660 NNG Storage Assets
## 661 NNG Storage Assets
## 662 FW: New Generation Report for June 2001
## 663 Form w/Instructions
## 664 Keystone capacity
## 665 Keystone capacity
## 666 keystone
## 667 Citizens Flagstaff Interconnect
## 668 FW: Citizens Flagstaff Interconnect
## 669 FW: Citizens Flagstaff Interconnect
## 670 RE: Citizens Flagstaff Interconnect / EES generation
## 671 RE: Citizens Flagstaff Interconnect / EES generation
## 672 RE: Citizens Flagstaff Interconnect / EES generation
## 673 RE: Citizens Flagstaff Interconnect / EES generation
## 674 RE: Citizens Flagstaff Interconnect / EES generation
## 675 RE: Citizens Flagstaff Interconnect / EES generation
## 676 Interconnect Services
## 677 FW: Pacer PL
## 678 FW: Pacer PL
## 679 RE: Nitrogen facility
## 680 RE: Nitrogen facility
## 681 CA Settlement Stalls; Generator Construction on Track
## 682 EAMR Interconnect and Measurement Services
## 683 Pacer PL
## 684 Asset development deal sheet
## 685 Power plant site development
## 686 Re: Pacer Pipeline
## 687 Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 688 RE: Rough Estimate of Costs For Possible TW MAOP Upgrade - 30" Mainline & Loop Lines Sta 5 to Colorado River
## 689 Cost Estimate for MAOP facility requirements
## 690 TW - SJ Lateral MAOP Increase
## 691 TW - SJ Lateral MAOP Increase
## 692 TW - SJ Lateral MAOP Increase
## 693 TW - SJ Lateral MAOP Increase
## 694 TW - SJ Lateral MAOP Increase
## 695 ST Confidentiality Agreement
## 696 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 697 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 698 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 699 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 700 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 701 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 702 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 703 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 704 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 705 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 706 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 707 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 708 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 709 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 710 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 711 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 712 RE: Ameramex - Bloomfield Energy Farm Project - Trigon-Sheehan Information Request
## 713 Big Sandy Project pressure information
## 714 Big Sandy Project pressure information
## 715 Big Sandy Project pressure information
## 716 Big Sandy Project pressure information
## 717 P-2 Recycle & Cooling Issue
## 718 P-2 Recycle & Cooling Issue
## 719 P-2 Recycle & Cooling Issue
## 720 P-2 Recycle & Cooling Issue
## 721 P-2 Recycle & Cooling Issue
## 722 P-2 Recycle & Cooling Issue
## 723 Enron - Kinder Morgan Hueco Pipeline Project
## 724 Enron - Kinder Morgan Hueco Pipeline Project
## 725 Enron - Kinder Morgan Hueco Pipeline Project
## 726 Enron - Kinder Morgan Hueco Pipeline Project
## 727 Enron - Kinder Morgan Hueco Pipeline Project
## 728 San Juan Upgrade Pressures
## 729 TW San Juan Lateral
## 730 TW San Juan Lateral
## 731 TW San Juan Lateral
## 732 TW San Juan Lateral
## 733 TW San Juan Lateral
## 734 TW-West Texas Expansion Level "A" release cost estimate 4/5/2001
## 735 TW-West Texas Expansion Level "A" release cost estimate 4/5/2001
## 736 TW-West Texas Expansion Level "A" release cost estimate 4/5/2001
## 737 TW-West Texas Expansion Level "A" release cost estimate 4/5/2001
## 738 Topock Lateral
## 739 Topock Lateral
## 740 Topock Lateral
## 741 Topock Lateral
## 742 Needles Pressure Requirement
## 743 Re: Needles Pressure Requirement
## 744 Re: Needles Pressure Requirement
## 745 revised form agreement
## 746 revised form agreement
## 747 revised form agreement
## 748 Re: TW Expansion
## 749 Re: TW Expansion
## 750 Re: TW Expansion
## 751 Re: TW Expansion
## 752 Re: TW Expansion
## 753 Re: TW Expansion
## 754 Re: TW Expansion
## 755 Re: TW Expansion
## 756 Re: TW Expansion
## 757 Re: TW Expansion
## 758 Re: TW Expansion
## 759 Re: TW Expansion
## 760 Re: TW Expansion
## 761 Re: TW Expansion
## 762 Re: TW Expansion
## 763 Re: TW Expansion
## 764 Re: TW Expansion
## 765 Recycle Line/Coolers
## 766 Belen, NM site gas supply
## 767 Belen, NM site gas supply
## 768 Belen, NM site gas supply
## 769 Belen, NM site gas supply
## 770 Re: Ameramex Project- Bloomfield
## 771 Re: Ameramex Project- Bloomfield
## 772 Re: Ameramex Project- Bloomfield
## 773 Re: Ameramex Project- Bloomfield
## 774 Re: Ameramex Project- Bloomfield
## 775 Re: Ameramex Project- Bloomfield
## 776 TW Mainline Expansion
## 777 TW Mainline Expansion
## 778 TW Mainline Expansion
## 779 TW Mainline Expansion
## 780 TW Mainline Expansion
## 781 TW Mainline Expansion
## 782 Caithness Big Sandy, LLP
## 783 Caithness Big Sandy, LLP
## 784 Caithness Big Sandy, LLP
## 785 Caithness Big Sandy, LLP
## 786 Caithness Big Sandy, LLP
## 787 Caithness Big Sandy, LLP
## 788 Re: Transwestern Update Meeting
## 789 Re: Transwestern Update Meeting
## 790 Re: Transwestern Update Meeting
## 791 Re: Transwestern Update Meeting
## 792 TW Expansion OH Rate
## 793 TW Expansion Rates Sensitivity
## 794 TW Expansion Rates Sensitivity
## 795 TW Expansion Rates Sensitivity
## 796 TW Expansion Rates Sensitivity
## 797 Get Bulington info done
## 798 Get KeyEx list from LL
## 799 What did JF learn from Dave Fuller on Black Mesa / Mojave gen plant and AES?
## 800 follow up with Rick Dietz on Unbound Tech meeting and what Julie Gomez is trying to do with all the pipes
## 801 Did JH Cathey at LStar reschedule meeting
## 802 Follow up w/ Artesia Team on Isler interconnect for Agave
## 803 Did CS get customer list from Koch on potential TW shippers thru their plant?
## 804 Get w/ Lyn Blair on $500k owed us by Plains Farmers Coop - why didn t Credit catch this?
## 805 Check w/ Soldano on El Paso letter response with Stan
## 806 Call Hans at NGPL on other I/C opportunities
## 807 What did Terry G find out from Dave Foti on converting the deal profit program from Netscape to MSN IE?
## 808 TK and CS on Richardson contract ext. and new capacity
## 809 Get w/ Steve on Agave strategy - previous ideas we had worked on for connecting more supply and giving a CAIC
## 810 Review Unbound draft, meet w/ Rick and Terry Lehn
## 811 Caithness, what happened at meeting (JF)
## 812 what is paperwork that has to go out on EOL deal USGT did?
## 813 Did Jim Crump x31533 call?
## 814 Get objectives for M Lokay
## 815 get ep tariff for lou
## 816 Did R Sanders x35587 send FJ letter to Steve?
## 817 Quantify EP volume in $ based on index prices
## 818 Follow up w/ Susan Scott on filing liens on Oasis and let Ted Chavez know for collection of $20k
## 819 Get El Paso demand letter written
## 820 Get w/ Jean McFarland 87-7173 on RDI map set up
## 821 Call Tom Knox at Cobisa on Pueblo and Belen 713-932-8070
## 822 Did Wayne Mays get us an answer for Pueblo?
## 823 Call Jere Bates w/ Tri State
## 824 Check into getting laptop for group
## 825 TW Fuel swap info to Larry Pavlou
## 826 power contact names for JB Smith
## 827 Get w/ Jeff on PGE core visit
## 828 Call Holiday Inn Express on shirt
## 829 call Doug Pedigo 713-374-3945 VP and Assoc Gen l counsel in Intergen No. America
## 830 Call Agave and confirm appt for 3/30
## 831 Call Rex Bigler re: to see if they got exec approval for their storage project
## 832 Get map for TW / NNG project
## 833 Get Benelli catalogs back from Rick Krejci
## 834 Check job web for Bard & Stan
## 835 Deal structures for Pueblo
## 836 Get industrial data base for New Mex to Mark Baldwin
## 837 Call Kent on TK responsibilities
## 838 Call Brad Richter on gen projects in NM, AZ 503-464-3831
## 839 Get w/ Foti on variable costs for east end
## 840 KeyEx stuff w/ Team
## 841 Get w/ Steve re: filling new position and having TK on board
## 842 Talk w/ Christine re: team work
## 843 Call Larry Pavlou on Gallup hedge
## 844 Note to team on interconnect and well connect procedures
## 845 Call Jerry re: CUC selling LDC assets to Navajo
## 846 Call Greer Tidwell at BFS
## 847 Call JB re: incremental 20mm day he could connect to TW
## 848 Call John Allario on SJ storage project
## 849 Call Hawks for Benelli 28"
## 850 GET flow info done for ECS Gallup compressor
## 851 Follow on Agave meeting notes
## 852 Follow up w/ CS on getting CIG firm gas onto TW
## 853 Follow up w/ Lynn Blair on market services cheat sheet
## 854 Did CS get customer list for Koch plant in W TX for potential gas shippers
## 855 Follow up with Ron M on schematic for Koch products line to serve Cannon AFB
## 856 Weekly bullets before 10:00
## 857 Status of WT2 cooler - Ken Chow x36317
## 858 Call Lou Soldano on Oasis Demand letter
## 859 Update project list for Steve
## 860 Glenn Rector
## 861 John Millar
## 862 Technical Support
## 863 Palm III Accessories
## 864 Updated EP2002 NGI.xls
## 865 Re: Duke Energy update
## 866 Performance Reviews
## 867 2002 Opportunities
## 868 RE: Panda Energy
## 869 Re: FW: Sun Devil/Sonoran Pipeline
## 870 Re: FW: Sun Devil/Sonoran Pipeline
## 871 Sun Devil Project - Fuel Study
## 872 SW Pipeline Corp.
## 873 FW: Inside Ferc s Pipeline Project Tracker - 2nd request
## 874 Sun Devil
## 875 Sun Devil
## 876 Sun Devil
## 877
## 878 FW: Arizona & New Mexico Project
## 879 Levelized Sun Devil Rates
## 880 Levelized Sun Devil Rates
## 881 FW: Meeting with Shelley
## 882 El Paso Capacity Allocation
## 883 RE: Sun Devil Cost Sheet
## 884 RE: Sun Devil Cost Sheet
## 885 RE: NMPRC Proposed Renewable Energy Rule
## 886 Sun Devil Fuel Use - 1000 MMcf/d Expansion Scenario
## 887 Sun Devil - next steps
## 888 Sun Devil - project model
## 889 Generic model.
## 890 RE: TW Fuel Revenue
## 891 RE: TW Fuel Revenue
## 892 RE: TW Fuel Revenue
## 893 FW: CONFIDENTIAL: Enron Sun Devil Term sheet
## 894 RE: Performance Reviews
## 895 Duke Energy update
## 896 CONFIDENTIAL: Enron Sun Devil Term sheet
## 897 CONFIDENTIAL: Enron Sun Devil Term sheet
## 898 RE: Benelli
## 899 RE: Stranger things have happened...
## 900 Panda Update
## 901 Panda Update
## 902 Panda Update
## 903 RE: Enron Kids Adopt A Child Program
## 904 WSCC Power AZNMNV.xls
## 905 WSCC Power AZNMNV.xls
## 906 WSCC Power AZNMNV.xls
## 907 WSCC Power AZNMNV.xls
## 908 FW: 2002 Opportunities
## 909 RE: Enron Kids Adopt A Child Program
## 910 RE: Enron Kids Adopt A Child Program
## 911 RE: Enron Kids
## 912 RE: Enron Kids Adopt A Child Program
## 913 RE: Re: Enron Kids
## 914 Sun Devil Update no meeting 11/19 or 11/26
## 915 Sun Devil Update no meeting 11/19 or 11/26
## 916 Sun Devil Update no meeting 11/19 or 11/26
## 917 Sun Devil Update no meeting 11/19 or 11/26
## 918 Sun Devil Update no meeting 11/19 or 11/26
## 919 Sun Devil Update no meeting 11/19 or 11/26
## 920 Sun Devil Update no meeting 11/19 or 11/26
## 921 Sun Devil Update no meeting 11/19 or 11/26
## 922 Sun Devil Update no meeting 11/19 or 11/26
## 923 Sun Devil Update no meeting 11/19 or 11/26
## 924 Sun Devil Update no meeting 11/19 or 11/26
## 925 Sun Devil Update no meeting 11/19 or 11/26
## 926 RE: sizes for adopted child
## 927 RE: Vacation time
## 928 RE: Vacation time
## 929 RE: Vacation time
## 930 Revised: FW: Western Capacity Meeting
## 931 Revised: FW: Western Capacity Meeting
## 932 Revised: FW: Western Capacity Meeting
## 933 Revised: FW: Western Capacity Meeting
## 934 Revised: FW: Western Capacity Meeting
## 935 Revised: FW: Western Capacity Meeting
## 936 Revised: FW: Western Capacity Meeting
## 937 Revised: FW: Western Capacity Meeting
## 938 Revised: FW: Western Capacity Meeting
## 939 Revised: FW: Western Capacity Meeting
## 940 FW: Western Capacity Meeting
## 941 FW: Western Capacity Meeting
## 942 Western Capacity Meeting
## 943 Western Capacity Meeting
## 944 Western Capacity Meeting
## 945 Western Capacity Meeting
## 946 Western Capacity Meeting
## 947 Western Capacity Meeting
## 948 Sun Devil to Panda line pressure
## 949 Sun Devil to Panda line pressure
## 950 Measurement Stds
## 951 RE: Inside Ferc s Pipeline Project Tracker - 2nd request
## 952 Interconnect agrmt
## 953 RE: Contact info
## 954 RE: Matching Gift Program
## 955 RE: Matching Gift Program
## 956 RE: Matching Gift Program
## 957 RE: Contact info
## 958 RE: Contact info
## 959 SFV Rate Design for Sun Devil
## 960 SFV Rate Design for Sun Devil
## 961 SFV Rate Design for Sun Devil
## 962 SFV Rate Design for Sun Devil
## 963 Sun Devil update meeting Monday 11/12 cancelled
## 964 Sun Devil update meeting Monday 11/12 cancelled
## 965 Sun Devil update meeting Monday 11/12 cancelled
## 966 Sun Devil update meeting Monday 11/12 cancelled
## 967 Sun Devil update meeting Monday 11/12 cancelled
## 968 Sun Devil update meeting Monday 11/12 cancelled
## 969 Sun Devil update meeting Monday 11/12 cancelled
## 970 Sun Devil update meeting Monday 11/12 cancelled
## 971 Sun Devil update meeting Monday 11/12 cancelled
## 972 Sun Devil update meeting Monday 11/12 cancelled
## 973 Sun Devil update meeting Monday 11/12 cancelled
## 974 Sun Devil update meeting Monday 11/12 cancelled
## 975 Sun Devil update meeting Monday 11/12 cancelled
## 976 Weekly update 11/9
## 977 Weekly update 11/9
## 978 RE: Sun Devil delivery pressure
## 979 Sun Devil delivery pressure
## 980 Sun Devil delivery pressure
## 981 Sun Devil delivery pressure
## 982 Sun Devil delivery pressure
## 983 Sun Devil delivery pressure
## 984 Sun Devil delivery pressure
## 985 Monday sign ups for EK
## 986 Monday sign ups for EK
## 987 Sun Devil Fuel
## 988 Sun Devil Fuel
## 989 Sun Devil Fuel
## 990 Sun Devil Fuel
## 991 Sun Devil Fuel
## 992 Sun Devil Fuel
## 993 Sun Devil Fuel
## 994 Sun Devil Fuel
## 995 Sun Devil Fuel
## 996 Sun Devil Fuel
## 997 Sun Devil Fuel
## 998 Sun Devil Fuel
## 999 Sun Devil Fuel
## 1000 Sun Devil Fuel
## 1001 Sun Devil Fuel
## 1002 Sun Devil Fuel
## 1003 Sun Devil Fuel
## 1004 Sun Devil Fuel
## 1005 Sun Devil Fuel
## 1006 Sun Devil Fuel
## 1007 Sun Devil Fuel
## 1008 Sun Devil Fuel
## 1009 Sun Devil Fuel
## 1010 Sun Devil Fuel
## 1011 Sun Devil Fuel
## 1012 Sun Devil Fuel
## 1013 Sun Devil Fuel
## 1014 Sun Devil Fuel
## 1015 RE: Enron Kid s Poster
## 1016 RE: Kern River New Delivery Point Filing
## 1017 FW:
## 1018 FW: Maximum Hourly Flow
## 1019 weekly update 11/2
## 1020 weekly update 11/2
## 1021 weekly update 11/2
## 1022 RE: Maximum Hourly Flow
## 1023 RE: Maximum Hourly Flow
## 1024 RE: Maximum Hourly Flow
## 1025 Copper Eagle.xls
## 1026 Copper Eagle.xls
## 1027 Copper Eagle.xls
## 1028 Panda Energy
## 1029 Panda Energy
## 1030 Panda Energy
## 1031 RE: Meeting for 11/6
## 1032 remove kevin.hyatt@enron.com
## 1033 RE: Kern River New Delivery Point Filing
## 1034 Sun Devil Talking Points for Albuquerque
## 1035 Sun Devil Talking Points for Albuquerque
## 1036 weekly update 10/26
## 1037 weekly update 10/26
## 1038 Canceled: Lunch w/ Jules
## 1039 Canceled: Lunch w/ Jules
## 1040 Canceled: Lunch w/ Jules
## 1041 FW: Message from a Hawg Driver (A-10 Warthog)
## 1042 FW: Message from a Hawg Driver (A-10 Warthog)
## 1043 FW: Message from a Hawg Driver (A-10 Warthog)
## 1044 FW: Message from a Hawg Driver (A-10 Warthog)
## 1045 FW: Message from a Hawg Driver (A-10 Warthog)
## 1046 FW: Message from a Hawg Driver (A-10 Warthog)
## 1047 FW: Message from a Hawg Driver (A-10 Warthog)
## 1048 FW: Message from a Hawg Driver (A-10 Warthog)
## 1049 FW: Message from a Hawg Driver (A-10 Warthog)
## 1050 RE: El Paso comments
## 1051 spinal injuries
## 1052 RE: UBS PAINEWEBBER - APPOINTMENT W/ MICHAEL GAPINKSI on 10/26 @ 8:00 a.m.
## 1053 RE: Sun Devil Weekly Meeting
## 1054 RE: wrong number
## 1055 RE: wrong number
## 1056 RE: EIA Announcement
## 1057 FW: Gas Indices
## 1058 FW: Gas Indices
## 1059 thank you
## 1060 RE: Oasis Dairy Farms Judgement - update
## 1061 RE: Oasis Dairy Farms Judgement - update
## 1062 RE: Oasis Dairy Farms Judgement - update
## 1063 Irish humor
## 1064 RE: Proposed EG Projects.xls
## 1065 RE: CA Capacity Report
## 1066 Electric Pwr Conf - Natural Gas Infrastructure Committee
## 1067 RE: Proposed EG Projects.xls
## 1068 RE: Oasis Dairy Farms Judgement
## 1069 RE: Oasis Dairy Farms Judgement
## 1070 RE: Oasis Dairy Farms Judgement
## 1071 RE: Fax Machine - REVISED
## 1072 RE: Fax Machine - REVISED
## 1073 RE: Fax Machine - REVISED
## 1074 FW: El Paso Capacity Allocation
## 1075 RE: El Paso Capacity Allocation
## 1076 RE: El Paso Full Requirements Customers
## 1077 RE: El Paso Full Requirements Customers
## 1078 RE: El Paso Full Requirements Customers
## 1079 RE: El Paso Full Requirements Customers
## 1080 RE: El Paso Full Requirements Customers
## 1081 RE: Camping
## 1082 RE: Updating your information in the HR site
## 1083 SD Volumes.xls
## 1084 SD Volumes.xls
## 1085 SD Volumes.xls
## 1086 RE: Day of Vacation
## 1087 RE: Look at this and see if you think it might be worthwhile.
## 1088 FW: Presentation, discussion on El Paso FR vs. CD
## 1089 Monahans / Gomez lateral field trip
## 1090 Monahans / Gomez lateral field trip
## 1091 Monahans / Gomez lateral field trip
## 1092 RE: AGAVE ENERGY COMPANY
## 1093 FW: AGAVE ENERGY COMPANY
## 1094 RE: Sun Devil presentation
## 1095 FW: An Inbound Message For You Has Been Quarantined
## 1096 FW: Accounting Controls & Procedures Group
## 1097 Firm Rec/Del questions from potential Aquila Red Lake shippers
## 1098 Firm Rec/Del questions from potential Aquila Red Lake shippers
## 1099 Firm Rec/Del questions from potential Aquila Red Lake shippers
## 1100 Firm Rec/Del questions from potential Aquila Red Lake shippers
## 1101 Firm Rec/Del questions from potential Aquila Red Lake shippers
## 1102 Firm Rec/Del questions from potential Aquila Red Lake shippers
## 1103 Firm Rec/Del questions from potential Aquila Red Lake shippers
## 1104 Firm Rec/Del questions from potential Aquila Red Lake shippers
## 1105 Sun Devil project costs
## 1106 Sun Devil project costs
## 1107 Sun Devil project costs
## 1108 Sun Devil project costs
## 1109 Sun Devil project costs
## 1110 ORMAT
## 1111 RE: Kern River deal
## 1112 RE: New TW POI contact persons
## 1113 RE: NMPRC Proposed Renewable Energy Rule
## 1114 RE: NMPRC Proposed Renewable Energy Rule
## 1115 RE: NMPRC Proposed Renewable Energy Rule
## 1116 RE: NMPRC Proposed Renewable Energy Rule
## 1117 RE: NMPRC Proposed Renewable Energy Rule
## 1118 RE: NMPRC Proposed Renewable Energy Rule
## 1119 RE: New TW POI contact persons
## 1120 Follow up from Red Lake meeting
## 1121 Follow up from Red Lake meeting
## 1122 Follow up from Red Lake meeting
## 1123 Follow up from Red Lake meeting
## 1124 RE: Panda CA
## 1125 RE: Re: CA - TW
## 1126 RE: Re: CA - TW
## 1127 RE: Re: CA - TW
## 1128 RE: REORIENTATION
## 1129 FW: Sun Devil Cost Recovery Model
## 1130 FW: Red Lake Storage w/Kevin Hyatt
## 1131 root canal
## 1132 root canal
## 1133 FW: New Uniforms for the other Big Red
## 1134 FW: New Uniforms for the other Big Red
## 1135 meet w/ David Rosenberg
## 1136 meet w/ David Rosenberg
## 1137 meet w/ David Rosenberg
## 1138 RE:
## 1139 Red Lake Storage project
## 1140 Red Lake Storage project
## 1141 Red Lake Storage project
## 1142 Red Lake Storage project
## 1143 Red Lake Storage project
## 1144 Red Lake Storage project
## 1145 Red Lake Storage project
## 1146 Red Lake Storage project
## 1147 Red Lake Storage project
## 1148 Red Lake Storage project
## 1149 RE: Potential sale of Gomez lateral pipe
## 1150 Aquila Red Lake storage project
## 1151 Aquila Red Lake storage project
## 1152 Aquila Red Lake storage project
## 1153 Aquila Red Lake storage project
## 1154 Aquila Red Lake storage project
## 1155 Aquila Red Lake storage project
## 1156 check this out
## 1157 RE: ACC approval
## 1158 RE: eTicket Receipt
## 1159 FW: ETS Asset Development weekly update - 3/1/02
## 1160 RE: Electric Power Conference 2002 - St. Louis
## 1161 SD 750 case w/ Red Hawk lateral
## 1162 RE: Sun Devil Expansion
## 1163 FW: Sun Devil
## 1164 RE: RDI access
## 1165 conf call w/ PWE to discuss latest proposal
## 1166 FW: Electric Power Conference 2002
## 1167 Electric Power Conference 2002
## 1168 Electric Power Conference 2002
## 1169 Electric Power Conference 2002
## 1170 RE: Potential sale of Gomez lateral pipe
## 1171 FW: Potential sale of Gomez lateral pipe
## 1172 RE: TW lateral pipe sale
## 1173 RE: Sun Devil - Pinnacle West term sheet
## 1174 RE: TW lateral pipe sale
## 1175 RE: RDI Subscription
## 1176 RE: RDI Subscription
## 1177 RE: windows help
## 1178 El Paso Full requirements shippers
## 1179 El Paso Full requirements shippers
## 1180 RE: RDI Subscription
## 1181 FW: RDI Subscription
## 1182 FW: Generic model.
## 1183 windows help
## 1184 Pioneer Gas Pipeline
## 1185 RE: Location Number
## 1186 RE: Location Number
## 1187 RE: Location Number
## 1188 RE: Location Number
## 1189 RE: Location Number
## 1190 RE: Location Number
## 1191 RE: Location Number
## 1192 contract file
## 1193 RE: Location Number
## 1194 RE: Location Number
## 1195 RE: Location Number
## 1196 RE: Sun Devil Btu Content
## 1197 RE: Sun Devil backhaul rate to Phoenix
## 1198 Sun Devil backhaul rate to Phoenix
## 1199 Sun Devil backhaul rate to Phoenix
## 1200 Sun Devil backhaul rate to Phoenix
## 1201 Sun Devil meeting
## 1202 Sun Devil meeting
## 1203 Sun Devil meeting
## 1204 Sun Devil meeting
## 1205 Sun Devil meeting
## 1206 Sun Devil meeting
## 1207 Sun Devil meeting
## 1208 Sun Devil meeting
## 1209 Sun Devil meeting
## 1210 Sun Devil meeting
## 1211 Sun Devil meeting
## 1212 Sun Devil meeting
## 1213 Sun Devil meeting
## 1214 Sun Devil meeting
## 1215 Sun Devil meeting
## 1216 MMBtu content
## 1217 MMBtu content
## 1218 RE: Location Number
## 1219 RE: Location Number
## 1220 FW: Article
## 1221 FW: weekly update 2/15
## 1222 Lunch w/ Phil Allard, Pioneer Gas Pipeline
## 1223 RE: TW lateral pipe sale
## 1224 Contract POI s
## 1225 RE: Well I won t need a seeing eye dog
## 1226 FW: Gomez lateral
## 1227 FW: Gomez lateral
## 1228 Gomez lateral
## 1229 TW lateral pipe sale
## 1230 RE: Pinnacle West
## 1231 San Juan supply.xls
## 1232 RE: Eric s tasks for San Juan
## 1233 RE: Your vacation day
## 1234 SD 750 case.XLS
## 1235 RE: Snowmobiles.
## 1236 Transwestern Credit Issue
## 1237 Transwestern Credit Issue
## 1238 RE: TW Credit Rating
## 1239 TW Credit Rating
## 1240 RE: Color Printer
## 1241 Arizona Public Service & Sun Devil
## 1242 Arizona Public Service & Sun Devil
## 1243 Arizona Public Service & Sun Devil
## 1244 RE: Breakfast with Panda energy?
## 1245 RE: Breakfast with Panda energy?
## 1246 RE: Breakfast with Panda energy?
## 1247 RE: Breakfast with Panda energy?
## 1248 Breakfast with Panda energy?
## 1249 Az Public Service update on Sun Devil
## 1250 vacation day
## 1251 vacation day
## 1252 One good joke deserves another
## 1253 RE: Updated: Meet w/ Jim Adams (Panda) & Bob Adrian (TECO)
## 1254 FW: Viagra Contest
## 1255 FW: Viagra Contest
## 1256 FW: Viagra Contest
## 1257 FW: Viagra Contest
## 1258 FW: Viagra Contest
## 1259 FW: Viagra Contest
## 1260 FW: Viagra Contest
## 1261 FW: Viagra Contest
## 1262 FW: Viagra Contest
## 1263 FW: Viagra Contest
## 1264 FW: Viagra Contest
## 1265 FW: Viagra Contest
## 1266 FW: Viagra Contest
## 1267 FW: Viagra Contest
## 1268 FW: Viagra Contest
## 1269 FW: Viagra Contest
## 1270 Updated: Meet w/ Jim Adams (Panda) & Bob Adrian (TECO)
## 1271 Updated: Meet w/ Jim Adams (Panda) & Bob Adrian (TECO)
## 1272 Updated: Meet w/ Jim Adams (Panda) & Bob Adrian (TECO)
## 1273 Updated: Meet w/ Jim Adams (Panda) & Bob Adrian (TECO)
## 1274 Updated: Meet w/ Jim Adams (Panda) & Bob Adrian (TECO)
## 1275 FW: ANNUAL NORTH AMERICAN SUPPLY MOVEMENT
## 1276 RE: SD model
## 1277 SD model
## 1278 Sun Devil meeting today cancelled
## 1279 Sun Devil meeting today cancelled
## 1280 Sun Devil meeting today cancelled
## 1281 Sun Devil meeting today cancelled
## 1282 Sun Devil meeting today cancelled
## 1283 Sun Devil meeting today cancelled
## 1284 Sun Devil meeting today cancelled
## 1285 Sun Devil meeting today cancelled
## 1286 Sun Devil meeting today cancelled
## 1287 Sun Devil meeting today cancelled
## 1288 Sun Devil meeting today cancelled
## 1289 Meet w/ Jim Adams (Panda) & Bob Adrian (TECO)
## 1290 revised Panda term sheet
## 1291 RE: Sun Devil
## 1292 meet w/ E Gadd on new Sun Devil case economics
## 1293 meet w/ E Gadd on new Sun Devil case economics
## 1294 meet w/ E Gadd on new Sun Devil case economics
## 1295 Aquila Storage
## 1296 Aquila Storage
## 1297 Aquila Storage
## 1298 Aquila Storage
## 1299 Aquila Storage
## 1300 Aquila Storage
## 1301 Sun Devil
## 1302 RE: TW project information
## 1303 FW: Sun Devil Weekly update 1/25
## 1304 FASB
## 1305 SD Mgmt update2 Dec-01.ppt
## 1306 SD Mgmt update2 Dec-01.ppt
## 1307 SD Mgmt update2 Dec-01.ppt
## 1308 RE: Request
## 1309 Parking Reimbursement
## 1310 another new western gas storage project
## 1311 FERC application cost for Sun Devil
## 1312 FERC application cost for Sun Devil
## 1313 FERC application cost for Sun Devil
## 1314 FW: Your help is greatly appreciated in getting the word out
## 1315 Lunch TK / KH west end storage
## 1316 weekly Sun Devil update meeting
## 1317 weekly Sun Devil update meeting
## 1318 weekly Sun Devil update meeting
## 1319 weekly Sun Devil update meeting
## 1320 weekly Sun Devil update meeting
## 1321 weekly Sun Devil update meeting
## 1322 weekly Sun Devil update meeting
## 1323 weekly Sun Devil update meeting
## 1324 weekly Sun Devil update meeting
## 1325 weekly Sun Devil update meeting
## 1326 weekly Sun Devil update meeting
## 1327 weekly Sun Devil update meeting
## 1328 weekly Sun Devil update meeting
## 1329 weekly Sun Devil update meeting
## 1330 weekly Sun Devil update meeting
## 1331 weekly Sun Devil update meeting
## 1332 RE: thank you letter
## 1333 Firm Park N Ride service on TW
## 1334 Firm Park N Ride service on TW
## 1335 Firm Park N Ride service on TW
## 1336 Firm Park N Ride service on TW
## 1337 Firm Park N Ride service on TW
## 1338 Firm Park N Ride service on TW
## 1339 Firm Park N Ride service on TW
## 1340 Firm Park N Ride service on TW
## 1341 Sun Devil levelized accounting and FASB
## 1342 Sun Devil levelized accounting and FASB
## 1343 Sun Devil levelized accounting and FASB
## 1344 Sun Devil levelized accounting and FASB
## 1345 Sun Devil levelized accounting and FASB
## 1346 Sun Devil levelized accounting and FASB
## 1347 RE: 1/15 - 15C1 from 1 to 2 is reserved for you.
## 1348 Sun Devil update moved to tues 1/15
## 1349 Sun Devil update moved to tues 1/15
## 1350 Sun Devil update moved to tues 1/15
## 1351 Sun Devil update moved to tues 1/15
## 1352 Sun Devil update moved to tues 1/15
## 1353 Sun Devil update moved to tues 1/15
## 1354 Sun Devil update moved to tues 1/15
## 1355 Sun Devil update moved to tues 1/15
## 1356 Sun Devil update moved to tues 1/15
## 1357 Sun Devil update moved to tues 1/15
## 1358 Sun Devil update moved to tues 1/15
## 1359 Sun Devil update moved to tues 1/15
## 1360 FW: Needles Golf Tournament
## 1361 Pipeline 30 Years
## 1362 Pipeline 20 Years
## 1363 SD Meet w/ Stan
## 1364 RE: Enron Kids
## 1365 FW: Sun Devil Pipeline L.P.1.ppt
## 1366 RE: Enron Kids
## 1367 RE: Enron Kids
## 1368 FW: What Enron Did Right
## 1369 sizes for adopted child
## 1370 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 1371 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 1372 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 1373 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 1374 FW: High Inventories and Weak Jet Demand Shape the Heating Oil Market - CERA Alert
## 1375 RE: sizes for adopted child
## 1376 FW: plz review and approve travel for kevin hyatt
## 1377 PG&E Gas Transmission Puts New Lliine in Service and Files for 2003 Expansion
## 1378 PG&E Gas Transmission Puts New Lliine in Service and Files for 2003 Expansion
## 1379 PG&E Gas Transmission Puts New Lliine in Service and Files for 2003 Expansion
## 1380 PG&E Gas Transmission Puts New Lliine in Service and Files for 2003 Expansion
## 1381 PG&E Gas Transmission Puts New Lliine in Service and Files for 2003 Expansion
## 1382 WARNING: Your mailbox is approaching the size limit
## 1383 WARNING: Your mailbox is approaching the size limit
## 1384 WARNING: Your mailbox is approaching the size limit
## 1385 WARNING: Your mailbox is approaching the size limit
## 1386 TW/ Agave---Atoka-3 capacity
## 1387 FW: TW Map
## 1388 TW/ BP in Eddy County, NM.
## 1389 TW/ BP in Eddy County, NM.
## 1390 TW/ Agave ----meeting of Feb-8-2001
## 1391 TW/ Agave ----meeting of Feb-8-2001
## 1392 TW/ Agave ----meeting of Feb-8-2001
## 1393 Re: Agave & Atoka System
## 1394 Re: Agave & Atoka System
## 1395 FW: Atoka Equipment Enhancement Analysis by ACTT - ACTT Quote 089100077
## 1396 ATOKA SYSTEM INFORMATION
## 1397 SoCal RLS Tariff/peaking rates
## 1398 SoCal RLS Tariff/peaking rates
## 1399 SoCal RLS Tariff/peaking rates
## 1400 SoCal RLS Tariff/peaking rates
## 1401 FW: Southern Trails Article on Western Leg
## 1402 FW: Southern Trails Article on Western Leg
## 1403 FW: Southern Trails Article on Western Leg
## 1404 FW: Southern Trails Article on Western Leg
## 1405 Article on SoCal "Peaking" Rate
## 1406 Article on SoCal "Peaking" Rate
## 1407 Article on SoCal "Peaking" Rate
## 1408 Article on SoCal "Peaking" Rate
## 1409 RE: SoCal RLS Tariff revision (will help So Trails)
## 1410 Did you See this Article on SoCal today?
## 1411 Did you See this Article on SoCal today?
## 1412 Did you See this Article on SoCal today?
## 1413 Did you See this Article on SoCal today?
## 1414 ALJ decision on RLS tariff
## 1415 ALJ decision on RLS tariff
## 1416 ALJ decision on RLS tariff
## 1417 WARNING: Your mailbox is approaching the size limit
## 1418 FW: Enron Kids Program for 2001
## 1419 Monday Staff Meetings no longer held over lunch time
## 1420 Project Account Request
## 1421 Project Account Request
## 1422 Transwestern Pipeline - Gas Quality
## 1423 New Compressor Station in Eddy County, NM.
## 1424 Big Sandy Project
## 1425 Big Sandy Project
## 1426 Big Sandy Project
## 1427 Big Sandy Project
## 1428 Big Sandy Project
## 1429 Big Sandy Project
## 1430 EOG Pronghorn
## 1431 EOG Pronghorn
## 1432 EOG Pronghorn
## 1433 EOG Pronghorn
## 1434 Transwestern Compressor Stations
## 1435 Big Sandy Project
## 1436 Big Sandy Project
## 1437 Big Sandy Project
## 1438 Big Sandy Project
## 1439 Big Sandy Project
## 1440 Big Sandy Project
## 1441 Recommended flow for drag reducer application
## 1442 RE: Electric Pwr Conf - Natural Gas Infrastructure Committee
## 1443 postponed Sun Devil update for Monday 10/29
## 1444 postponed Sun Devil update for Monday 10/29
## 1445 postponed Sun Devil update for Monday 10/29
## 1446 postponed Sun Devil update for Monday 10/29
## 1447 postponed Sun Devil update for Monday 10/29
## 1448 postponed Sun Devil update for Monday 10/29
## 1449 postponed Sun Devil update for Monday 10/29
## 1450 postponed Sun Devil update for Monday 10/29
## 1451 postponed Sun Devil update for Monday 10/29
## 1452 postponed Sun Devil update for Monday 10/29
## 1453 postponed Sun Devil update for Monday 10/29
## 1454 postponed Sun Devil update for Monday 10/29
## 1455 postponed Sun Devil update for Monday 10/29
## 1456 postponed Sun Devil update for Monday 10/29
## 1457 RE: LNG discussion
## 1458 RE: Review and approve Kevin Hyatt travel for 6NOV01
## 1459 FW: Sun Devil MOU Draft1
## 1460 RE: EK Poster Info
## 1461 RE: Inside FERC s Pipeline Project Tracker
## 1462 EPFS interconnect
## 1463 EPFS interconnect
## 1464 RE: EPFS interconnect
## 1465 RE: EPFS interconnect
## 1466 RE: EPFS interconnect
## 1467 RE: EPFS interconnect
## 1468 RE: EPFS interconnect
## 1469 RE: EPFS interconnect
## 1470 EPFS Cost Estimate
## 1471 EPFS Cost Estimate
## 1472 Re: Sun Devil - Helicopter Fly-Over of Routes
## 1473 Re: Sun Devil - Helicopter Fly-Over of Routes
## 1474 Re: Sun Devil - Helicopter Fly-Over of Routes
## 1475 Re: Sun Devil - Helicopter Fly-Over of Routes
## 1476 Re: Sun Devil - Helicopter Fly-Over of Routes
## 1477 Re: Sun Devil - Helicopter Fly-Over of Routes
## 1478 Re: Sun Devil - Helicopter Fly-Over of Routes
## 1479 Re: Sun Devil - Helicopter Fly-Over of Routes
## 1480 Re: Sun Devil - Helicopter Fly-Over of Routes
## 1481 Re: Sun Devil - Helicopter Fly-Over of Routes
## 1482 Re: Sun Devil - Helicopter Fly-Over of Routes
## 1483 Re: Sun Devil - Helicopter Fly-Over of Routes
## 1484 Re: Sun Devil - Helicopter Fly-Over of Routes
## 1485 Re: Sun Devil - Helicopter Fly-Over of Routes
## 1486 Re: Sun Devil - Helicopter Fly-Over of Routes
## 1487 Re: Sun Devil - Helicopter Fly-Over of Routes
## 1488 Re: Sun Devil - Helicopter Fly-Over of Routes
## 1489 Re: Sun Devil - Helicopter Fly-Over of Routes
## 1490 Re: Sun Devil - Helicopter Fly-Over of Routes
## 1491 RE: Confidential: Phoenix, AZ gas market research study
## 1492 RE: Confidential: Phoenix, AZ gas market research study
## 1493 PLEASE NOTE!!!!!
## 1494 PLEASE NOTE!!!!!
## 1495 PLEASE NOTE!!!!!
## 1496 PLEASE NOTE!!!!!
## 1497 Meeting w/ Rob Kilmer
## 1498 FW: Mexico and Multiservice Contracts: What s the Deal? - CERA Conference Call Notification
## 1499 RE: Stranger things have happened...
## 1500 Stranger things have happened...
## 1501 WARNING: Your mailbox is approaching the size limit
## 1502 RE: Enron Kids Adopt A Child Program
## 1503 Notification of Enrollment
## 1504 Re: Panda Update
## 1505 Your enrollment status has been modified.
## 1506 RE: Sun Devil meeting is on for 11/26 3pm in 15c1
## 1507 Business Week- Chevron
## 1508 PEP Reviews
## 1509 PEP Reviews
## 1510 PEP Reviews
## 1511 Enron Kids Mtg
## 1512 FW: Enron Kids Adopt A Child Program
## 1513 Re: Enron Kids
## 1514 FW: Mexico Gas and Power Summary Notes: Power Issues - CERA Report
## 1515 FW: Low Load GRI changes for 2002
## 1516 FW: Low Load GRI changes for 2002
## 1517 FW: Low Load GRI changes for 2002
## 1518 FW: Low Load GRI changes for 2002
## 1519 WARNING: Your mailbox is approaching the size limit
## 1520 WARNING: Your mailbox is approaching the size limit
## 1521 WARNING: Your mailbox is approaching the size limit
## 1522 WARNING: Your mailbox is approaching the size limit
## 1523 WARNING: Your mailbox is approaching the size limit
## 1524 WARNING: Your mailbox is approaching the size limit
## 1525 WARNING: Your mailbox is approaching the size limit
## 1526 New TW POI contact persons
## 1527 New TW POI contact persons
## 1528 Commission Agenda
## 1529 RE: RDI Subscription
## 1530 RE: RDI Subscription
## 1531 FW: RDI Subscription
## 1532 FW: RDI Subscription
## 1533 RE: REORIENTATION
## 1534 It could be our last lunch together
## 1535 It could be our last lunch together
## 1536 It could be our last lunch together
## 1537 It could be our last lunch together
## 1538 RE: Red Lake Storage project
## 1539 Red Lake Storage w/Kevin Hyatt
## 1540 Red Lake Storage w/Kevin Hyatt
## 1541 Red Lake Storage w/Kevin Hyatt
## 1542 Red Lake Storage w/Kevin Hyatt
## 1543 Red Lake Storage w/Kevin Hyatt
## 1544 RE: New Uniforms for the other Big Red
## 1545 RE: eTicket Receipt
## 1546 Dinner to be rescheduled
## 1547 Dinner to be rescheduled
## 1548 Dinner to be rescheduled
## 1549 Dinner to be rescheduled
## 1550 Dinner to be rescheduled
## 1551 RE: Potential sale of Gomez lateral pipe
## 1552 RE: eTicket Receipt
## 1553 RE: Potential sale of Gomez lateral pipe
## 1554 RE: Surprise Birthday for Paul Tomorrow!!!
## 1555 RE: Surprise Birthday for Paul Tomorrow!!!
## 1556 RE: Surprise Birthday for Paul Tomorrow!!!
## 1557 RE: Surprise Birthday for Paul Tomorrow!!!
## 1558 RE: REORIENTATION
## 1559 RE: REORIENTATION
## 1560 FW: Sun Devil
## 1561 Surprise Birthday for Paul Tomorrow!!!
## 1562 Surprise Birthday for Paul Tomorrow!!!
## 1563 Surprise Birthday for Paul Tomorrow!!!
## 1564 Surprise Birthday for Paul Tomorrow!!!
## 1565 FW: RDI access
## 1566 FW: RDI access
## 1567 RE: windows help
## 1568 FW: RDI access
## 1569 RE: Electric Power Conference 2002
## 1570 RE: TW lateral pipe sale
## 1571 RE: RDI Subscription
## 1572 Sun Devil - Fuel Retention
## 1573 FW: RDI Subscription
## 1574 RE: RDI Subscription
## 1575 Re: FW: aps term sheet & cover
## 1576 RE: Location Number
## 1577 RE: Invitation to a Sun Devil Meeting 2/21 at 1:30
## 1578 FW: quite amusing....
## 1579 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 1580 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 1581 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 1582 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 1583 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 1584 FW: Location Number
## 1585 FW: Location Number
## 1586 RE: Location Number
## 1587 RE: PWEcover
## 1588 Invitation to a Sun Devil Meeting 2/21 at 1:30
## 1589 Sun Devil Btu Content
## 1590 RE: Sun Devil backhaul rate to Phoenix
## 1591 RE: Color Printer for Kevin Hyatt
## 1592 RE: Color Printer for Kevin Hyatt
## 1593 FW: Location Number
## 1594 Re: Sun Devil meeting
## 1595 Out of Office AutoReply: Sun Devil meeting
## 1596 RE: weekly update 2/15
## 1597 RE: weekly update 2/15
## 1598 RE: Article
## 1599 RE: Article
## 1600 RE: Well I won t need a seeing eye dog
## 1601 Well I won t need a seeing eye dog
## 1602 Color Printer for Kevin Hyatt
## 1603 Color Printer for Kevin Hyatt
## 1604 Pinnacle West
## 1605 Enron Voice Mail System
## 1606 Enron Voice Mail System
## 1607 Medical Out of Office
## 1608 Medical Out of Office
## 1609 RE: Eric s tasks for San Juan
## 1610 Eric s tasks for San Juan
## 1611 FW: [GCFL] Redneck Valentines Day Poem
## 1612 Your vacation day
## 1613 Sun Devil Capex
## 1614
## 1615 Snowmobiles.
## 1616 RE: TW Credit Rating
## 1617 Color Printer
## 1618 RE: Breakfast with Panda energy?
## 1619 RE: Updated: Meet w/ Jim Adams (Panda) & Bob Adrian (TECO)
## 1620 RE: Breakfast with Panda energy?
## 1621 RE: vacation day
## 1622 Re: Updated: Meet w/ Jim Adams (Panda) & Bob Adrian (TECO)
## 1623
## 1624 Re: SD model
## 1625 I have a pre-op exam this afternoon and
## 1626 I have a pre-op exam this afternoon and
## 1627 RE: Sun Devil Alterative - Revision #10
## 1628 RE: Sun Devil Alterative - Revision #10
## 1629 Re: Sun Devil
## 1630 RE: Sun Devil
## 1631 Sun Devil
## 1632 Parking Receipt for Benefit Purpose - Correction Notice
## 1633 RE: TW project information
## 1634
## 1635 TW project information
## 1636 TW project information
## 1637 TW project information
## 1638 no snow
## 1639 Bonus present
## 1640 RE: steve s contact #
## 1641 RE: Lunch TK / KH west end storage
## 1642 You are enrolled.
## 1643 Mid 4 to Mid 3 Quote
## 1644 RE: Backhaul Rates from NNG to Waha
## 1645 Waha Backhaul
## 1646 RE: Mid 4 to Mid 3 Quote
## 1647 Re: SD Mgmt update2 Dec-01.ppt
## 1648 RE: TransPecos and Sun Devil
## 1649 RE: TransPecos and Sun Devil
## 1650 RE: another new western gas storage project
## 1651 FW: Request
## 1652 FW: Request
## 1653 RE: Bonus present
## 1654 RE: Your help is greatly appreciated in getting the word out
## 1655 RE: JunusResume
## 1656 Second Cataract Surgery
## 1657 RE: Second Cataract Surgery
## 1658 RE: Second Cataract Surgery
## 1659 RE: Second Cataract Surgery
## 1660 Bid Cycle Meeting Notice
## 1661 Bid Cycle Meeting Notice
## 1662 Bid Cycle Meeting Notice
## 1663 Bid Cycle Meeting Notice
## 1664 RE:
## 1665
## 1666 steve s contact #
## 1667 An Inbound Message For You Has Been Quarantined
## 1668 FW: thank you letter
## 1669 FW: thank you letter
## 1670 FW: thank you letter
## 1671 FW: thank you letter
## 1672 FW: thank you letter
## 1673 FW: thank you letter
## 1674 FW: thank you letter
## 1675 FW: thank you letter
## 1676 FW: thank you letter
## 1677 FW: thank you letter
## 1678 FW: thank you letter
## 1679 FW: thank you letter
## 1680 RE: weekly Sun Devil update meeting
## 1681 WARNING: Your mailbox is approaching the size limit
## 1682 Good Trade
## 1683 Good Trade
## 1684 RE: thank you letter
## 1685 RE: thank you letter
## 1686 RE: thank you letter
## 1687 RE: thank you letter
## 1688 RE: thank you letter
## 1689 WARNING: Your mailbox is approaching the size limit
## 1690 WARNING: Your mailbox is approaching the size limit
## 1691 RE: Needles Golf Tournament
## 1692 RE: Needles Golf Tournament
## 1693 RE: Needles Golf Tournament
## 1694 RE: Needles Golf Tournament
## 1695 RE: Needles Golf Tournament
## 1696 Need your Help!
## 1697 Need your Help!
## 1698 Needles Golf Tournament
## 1699 Needles Golf Tournament
## 1700 WARNING: Your mailbox is approaching the size limit
## 1701 on Tuesday, 1/15, I have to return to the
## 1702 WARNING: Your mailbox is approaching the size limit
## 1703 WARNING: Your mailbox is approaching the size limit
## 1704 TW fuel value at risk
## 1705 Sun Devil Update moved to Tues 3:30 pm 15c1
## 1706 Sun Devil Update moved to Tues 3:30 pm 15c1
## 1707 Sun Devil Update moved to Tues 3:30 pm 15c1
## 1708 Sun Devil Update moved to Tues 3:30 pm 15c1
## 1709 Sun Devil Update moved to Tues 3:30 pm 15c1
## 1710 Sun Devil Update moved to Tues 3:30 pm 15c1
## 1711 Sun Devil Update moved to Tues 3:30 pm 15c1
## 1712 Sun Devil Update moved to Tues 3:30 pm 15c1
## 1713 Sun Devil Update moved to Tues 3:30 pm 15c1
## 1714 Sun Devil Update moved to Tues 3:30 pm 15c1
## 1715 Sun Devil Update moved to Tues 3:30 pm 15c1
## 1716 Sun Devil Update moved to Tues 3:30 pm 15c1
## 1717 Sun Devil Update moved to Tues 3:30 pm 15c1
## 1718 Sun Devil Update moved to Tues 3:30 pm 15c1
## 1719 meeting Wed pm
## 1720 RE: Sun Devil conf call at 9:00 am Friday 01-11
## 1721 FW: Fw: one liners
## 1722 FW: Fw: one liners
## 1723 FW: Fw: one liners
## 1724 FW: Fw: one liners
## 1725 FW: Fw: one liners
## 1726 RE: You are Invited to an Open Season Reception for Desert Crossing Gas Storage and Transportation System
## 1727 Revised: Map to Gordon Elementary
## 1728 Revised- Confidential: Phoenix, AZ gas market research study
## 1729 Automating Negotiated Rates for Invoice Purposes
## 1730 Automating Negotiated Rates for Invoice Purposes
## 1731 Automating Negotiated Rates for Invoice Purposes
## 1732 Automating Negotiated Rates for Invoice Purposes
## 1733 Automating Negotiated Rates for Invoice Purposes
## 1734 Automating Negotiated Rates for Invoice Purposes
## 1735 Automating Negotiated Rates for Invoice Purposes
## 1736 Automating Negotiated Rates for Invoice Purposes
## 1737 Automating Negotiated Rates for Invoice Purposes
## 1738 Automating Negotiated Rates for Invoice Purposes
## 1739 Automating Negotiated Rates for Invoice Purposes
## 1740 Automating Negotiated Rates for Invoice Purposes
## 1741 Automating Negotiated Rates for Invoice Purposes
## 1742 Automating Negotiated Rates for Invoice Purposes
## 1743 Automating Negotiated Rates for Invoice Purposes
## 1744 Automating Negotiated Rates for Invoice Purposes
## 1745 Automating Negotiated Rates for Invoice Purposes
## 1746 Automating Negotiated Rates for Invoice Purposes
## 1747 Automating Negotiated Rates for Invoice Purposes
## 1748 Re: FW: 25841 Contract Changes for 1/20/01
## 1749 Re: FW: 25841 Contract Changes for 1/20/01
## 1750 Rates
## 1751 Rates
## 1752 Bullets
## 1753 Bullets
## 1754 FW: You are Invited to an Open Season Reception for Desert Crossing Gas Storage and Transportation System
## 1755 FW: You are Invited to an Open Season Reception for Desert Crossing Gas Storage and Transportation System
## 1756 FW: You are Invited to an Open Season Reception for Desert Crossing Gas Storage and Transportation System
## 1757 FW: You are Invited to an Open Season Reception for Desert Crossing Gas Storage and Transportation System
## 1758 FW: You are Invited to an Open Season Reception for Desert Crossing Gas Storage and Transportation System
## 1759 Sun Devil
## 1760 FW: You are Invited to an Open Season Reception for Desert Crossing Gas Storage and Transportation System
## 1761 FW: You are Invited to an Open Season Reception for Desert Crossing Gas Storage and Transportation System
## 1762 APS Meeting
## 1763 Fw: RE: Meeting with APS
## 1764 PNM Terminates Merger with Western Resources
## 1765 PNM Terminates Merger with Western Resources
## 1766 PNM Terminates Merger with Western Resources
## 1767 PNM Terminates Merger with Western Resources
## 1768 PNM Terminates Merger with Western Resources
## 1769 RE: Fw: one liners
## 1770 Sun Devil conf call at 9:00 am Friday 01-11
## 1771 Re: Agenda for meeting on Thursday with Tom Carlson
## 1772 WARNING: Your mailbox is approaching the size limit
## 1773 WARNING: Your mailbox is approaching the size limit
## 1774 FW: You are Invited to an Open Season Reception for Desert Crossing Gas Storage and Transportation System
## 1775 WARNING: Your mailbox is approaching the size limit
## 1776 FW: Kevin Hyatt final itinerary
## 1777 Contracts/PLE on-call schedule
## 1778 Contracts/PLE on-call schedule
## 1779 Contracts/PLE on-call schedule
## 1780 Contracts/PLE on-call schedule
## 1781 Contracts/PLE on-call schedule
## 1782 WARNING: Your mailbox is approaching the size limit
## 1783 follow up w/ Donna Wiese @ Pearl Street on storage council
## 1784 Don t forget to register!
## 1785 Lonestar
## 1786 Call Don Mauldin @ Devon 405-228-4407
## 1787 NGI s Article on the Merger
## 1788 NGI s Article on the Merger
## 1789 NGI s Article on the Merger
## 1790 NGI s Article on the Merger
## 1791 NGI s Article on the Merger
## 1792 NGI s Article on the Merger
## 1793 NGI s Article on the Merger
## 1794 NGI s Article on the Merger
## 1795 NGI s Article on the Merger
## 1796 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 1797 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 1798 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 1799 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 1800 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 1801 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 1802 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 1803 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 1804 WSJ Article on Enron/Portland General Sale to Northwest Natural
## 1805 FGT s Customer Letter
## 1806 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 1807 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 1808 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 1809 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 1810 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 1811 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 1812 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 1813 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 1814 Transwestern Denies Withheld Capacity to Boost Negotiated Deals
## 1815 San Juan Team Advisor
## 1816 San Juan Team Advisor
## 1817 San Juan Team Advisor
## 1818 RE: Chad Garren Memorial Scholarship-Thank You
## 1819 RE: Chad Garren Memorial Scholarship-Thank You
## 1820 Enron s Kids Truck
## 1821 Enron s Kids Truck
## 1822 contact information
## 1823 Enron Kids
## 1824 Enron Kids
## 1825 RE: Enron Kids Registration
## 1826 FW: Enron Kids announcement
## 1827 FW: Enron Kids announcement
## 1828 RE: Enron Kids Volunteer Signup
## 1829 RE: Matching Gift Form
## 1830 EK Poster Info
## 1831 RE: Preview Party
## 1832 EIA Announcement
## 1833 Enron Kids
## 1834 Enron Kids Meeting
## 1835 FW: Conference Room Reservations
## 1836 Enron Kids Meeting - 6/1/2001
## 1837 RE: Enron Kids Meeting - 6/1/2001
## 1838 RE: Enron Kids Meeting - 6/1/2001
## 1839 FW: Gordon Elementary School
## 1840 Enron Kids Docs
## 1841 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 1842 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 1843 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 1844 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 1845 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 1846 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 1847 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 1848 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 1849 FW: RDI Consulting s New Gas Transportation Markets in the U.S. study\t is about to release!
## 1850 RDI Subscription
## 1851 RDI Subscription
## 1852 RDI Subscription
## 1853 RDI Subscription
## 1854 RDI Subscription
## 1855 RDI Subscription
## 1856 RE: ANNUAL NORTH AMERICAN SUPPLY MOVEMENT
## 1857 FERC Approves Sempra s North Baja Pipeline
## 1858 FERC Approves Sempra s North Baja Pipeline
## 1859 FERC Approves Sempra s North Baja Pipeline
## 1860 FERC Approves Sempra s North Baja Pipeline
## 1861 FERC Approves Sempra s North Baja Pipeline
## 1862 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 1863 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 1864 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 1865 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 1866 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 1867 TransCanada Announces Export Expansion into Northwest and California Markets Named Westpath Expansion
## 1868 Pipes on the Way for Constrained Rockies
## 1869 Southern Trails Cancels Calif Part of Pipeline Conversion
## 1870 Southern Trails Cancels Calif Part of Pipeline Conversion
## 1871 Southern Trails Cancels Calif Part of Pipeline Conversion
## 1872 Southern Trails Cancels Calif Part of Pipeline Conversion
## 1873 Southern Trails Cancels Calif Part of Pipeline Conversion
## 1874 Williams Files Evergreen Expansion Project
## 1875 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 1876 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 1877 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 1878 FW: North American Gas Productive Capacity Is Expanding - CERA Decision Brief
## 1879 RE: Draft Copy of CEC s Final Report on California Infrastructure
## 1880 Kern River 2003 Expansion
## 1881 Kern River 2003 Expansion
## 1882 Kern River 2003 Expansion
## 1883 Kern River 2003 Expansion
## 1884 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 1885 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 1886 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 1887 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 1888 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 1889 Kinder Morgan Makes Some Expansion Announcements for Rockies
## 1890 Williams Orders Pipe for 906 MMcf/d Expansion of Kern
## 1891 Williams Orders Pipe for 906 MMcf/d Expansion of Kern
## 1892 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 1893 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 1894 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 1895 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 1896 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 1897 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 1898 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 1899 Kinder Morgan Announcements--Earnings, An Acquisition, and RMtn Plans
## 1900 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 1901 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 1902 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 1903 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 1904 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 1905 FW: Western Energy--Fundamentals and Regulations Change Outlooks - CERA Monthly Briefing
## 1906 El Paso Holds Binding Open Season for Line 2000 Capacity
## 1907 El Paso Holds Binding Open Season for Line 2000 Capacity
## 1908 Kern River Expansion Completed Ahead of Schedule
## 1909 Kern River Expansion Completed Ahead of Schedule
## 1910 Kern River Expansion Completed Ahead of Schedule
## 1911 Kern River Expansion Completed Ahead of Schedule
## 1912 Kern River Expansion Completed Ahead of Schedule
## 1913 Gas Pipeline Rush is Alive, Well in NW
## 1914 Report Pessimistic on Planned Power Plants
## 1915 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 1916 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 1917 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 1918 PG&E GT-NW Receives Open Season Requests Totaling 300-400 MM/d
## 1919 New Generation Starts Up in CA; Others Drop Out
## 1920 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 1921 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 1922 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 1923 CIG is Doing Their Open Season for Rockies East to Greensburg Capacity
## 1924 El Paso Moves Forward on California Expansion Projects
## 1925 El Paso Moves Forward on California Expansion Projects
## 1926 PG&E Eyes Backbone, Storage Expansions as Part of Gas Accord II
## 1927 PG&E Eyes Backbone, Storage Expansions as Part of Gas Accord II
## 1928 PG&E NEG Breaks Ground on 1,048 MW Harquahala Plant
## 1929 FERC Approves North Baja Pipeline
## 1930 FERC Approves North Baja Pipeline
## 1931 Questar Holding 3 Open Seasons, North, South and Storage
## 1932 Questar Holding 3 Open Seasons, North, South and Storage
## 1933 Questar Holding 3 Open Seasons, North, South and Storage
## 1934 Questar Holding 3 Open Seasons, North, South and Storage
## 1935 Questar Holding 3 Open Seasons, North, South and Storage
## 1936 Another California Pipeline Expansion Plan Announced by PG&E Northwest
## 1937 Another California Pipeline Expansion Plan Announced by PG&E Northwest
## 1938 Another California Pipeline Expansion Plan Announced by PG&E Northwest
## 1939 Another California Pipeline Expansion Plan Announced by PG&E Northwest
## 1940 A Revitalized Ruby Pipelines for CIG to California
## 1941 A Revitalized Ruby Pipelines for CIG to California
## 1942 A Revitalized Ruby Pipelines for CIG to California
## 1943 A Revitalized Ruby Pipelines for CIG to California
## 1944 A Revitalized Ruby Pipelines for CIG to California
## 1945 A Revitalized Ruby Pipelines for CIG to California
## 1946 Another Western Canadian Pipeline Proposed
## 1947 Another Western Canadian Pipeline Proposed
## 1948 Another Western Canadian Pipeline Proposed
## 1949 Another Western Canadian Pipeline Proposed
## 1950 Tuscarora expansion
## 1951 Tuscarora expansion
## 1952 Tuscarora expansion
## 1953 FERC ruling on Kern expansion
## 1954 FERC ruling on Kern expansion
## 1955 FERC ruling on Kern expansion
## 1956 FERC ruling on Kern expansion
## 1957 FERC ruling on Kern expansion
## 1958 FW: SoCalGas to Make System Enhancements
## 1959 Kern River problems
## 1960 Kern River problems
## 1961 Kern River problems
## 1962 Kern River problems
## 1963 CA Supply Realities
## 1964 CA Supply Realities
## 1965 CA Supply Realities
## 1966 CA Supply Realities
## 1967 More news... EPNG Expansion open season
## 1968 More news... EPNG Expansion open season
## 1969 More news... EPNG Expansion open season
## 1970 El Paso Plans for the Future--See Last Paragraph
## 1971 El Paso Plans for the Future--See Last Paragraph
## 1972 El Paso Plans for the Future--See Last Paragraph
## 1973 El Paso Plans for the Future--See Last Paragraph
## 1974 El Paso Plans for the Future--See Last Paragraph
## 1975 El Paso Capacity Results of Open Season for Available Capacity
## 1976 El Paso Capacity Results of Open Season for Available Capacity
## 1977 El Paso Capacity Results of Open Season for Available Capacity
## 1978 El Paso Capacity Results of Open Season for Available Capacity
## 1979 El Paso Capacity Results of Open Season for Available Capacity
## 1980 El Paso Capacity Results of Open Season for Available Capacity
## 1981 El Paso Open Season Results/More stuff
## 1982 El Paso Open Season Results/More stuff
## 1983 El Paso Open Season Results/More stuff
## 1984 El Paso Open Season Results/More stuff
## 1985 El Paso Open Season Results/More stuff
## 1986 You are enrolled.
## 1987 Sun Devil eBiz blurb
## 1988 FW: Medicine Recall
## 1989 FW: Medicine Recall
## 1990 FW: Medicine Recall
## 1991 eRequest
## 1992 eRequest
## 1993 eRequest
## 1994 Dow Jones User Id and Password
## 1995 Password Reset
## 1996 RE: REORIENTATION
## 1997 You will need to change your location in the system in order to receive your mail and pay stub.
## 1998 New Uniforms for the other Big Red
## 1999 For your Labels and boxes and to change your info on people finder, etc.
## 2000 eTicket Receipt
## 2001 RE: RDI access
## 2002 RE: RDI access
## 2003 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 2004 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 2005 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 2006 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 2007 FW: TW Marketing Data Move - Tomorrow At 5:00p
## 2008 FW: Enron Song
## 2009 FW: Enron Song
## 2010 FW: Parking Reimbursement
## 2011 Holiday Humor
## 2012 RE: Vacation time
## 2013 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 2014 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 2015 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 2016 IT Weekly Tip - Use vCards to share your contact info with clients and businesses
## 2017 *** Shared Folder Move ***
## 2018 RE: I am interested in seeing Energy News Live on Esource
## 2019 Electronic Pay Stubs
## 2020 RE: Hyatt course enrollments
## 2021 Nissan Maxima for sale
## 2022 FW: Rebuild
## 2023 FW: Fw:
## 2024 Weekly staff working lunch meeting
## 2025 My Info
## 2026 FW: Susan, Come Make an Offer!!!
## 2027 RE: Follow up
## 2028 Thank you for your Contribution! Together we CAN change lives!
## 2029 Thank you for your Contribution! Together we CAN change lives!
## 2030 FW: resume Michelle Norton
## 2031 Scottish Power
## 2032 Password Reset
## 2033 Updated Contact list of Direct Reports for Danny McCarty
## 2034 Updated Contact list of Direct Reports for Danny McCarty
## 2035 Organization Announcement
## 2036 Organization Announcement
## 2037 Organization Announcement
## 2038 Organization Announcement
## 2039 Organization Announcement
## 2040 Organization Announcement
## 2041 Organization Announcement
## 2042 Organization Announcement
## 2043 Organization Announcement
## 2044 California Sing-along
## 2045 California Sing-along
## 2046 California Sing-along
## 2047 HotTap RAS password change instructions
## 2048 HotTap RAS password change instructions
## 2049 HotTap RAS password change instructions
## 2050 HotTap RAS password change instructions
## 2051 photo s
## 2052 Getting to other mail
## 2053 Re: Global Counterparty Trader ID
## 2054 Re: Global Counterparty Trader ID
## 2055 Re: Global Counterparty Trader ID
## 2056 WSPP report for 3rd quarter
## 2057 Re: WSPP report for 3rd quarter
## 2058 Re: WSPP report for 3rd quarter
## 2059 NW Transmission
## 2060 NW Transmission
## 2061 NW Transmission
## 2062 NW Transmission
## 2063 NW Transmission
## 2064 Duke files Interconnection Procedures at FERC
## 2065 Duke files Interconnection Procedures at FERC
## 2066 Re: APPLICATION FOR MBR PURCHASES FROM Industrials
## 2067 Re: APPLICATION FOR MBR PURCHASES FROM Industrials
## 2068 Re: APPLICATION FOR MBR PURCHASES FROM Industrials
## 2069 Re: APPLICATION FOR MBR PURCHASES FROM Industrials
## 2070 Re: APPLICATION FOR MBR PURCHASES FROM Industrials
## 2071 Re: APPLICATION FOR MBR PURCHASES FROM Industrials
## 2072 Re: APPLICATION FOR MBR PURCHASES FROM Industrials
## 2073 Re: APPLICATION FOR MBR PURCHASES FROM Industrials
## 2074 Re: APPLICATION FOR MBR PURCHASES FROM Industrials
## 2075 Re: APPLICATION FOR MBR PURCHASES FROM Industrials
## 2076 Re: APPLICATION FOR MBR PURCHASES FROM Industrials
## 2077 RE: WSPP 4th Quarter 2000 Report
## 2078 RE: WSPP 4th Quarter 2000 Report
## 2079 RE: WSPP 4th Quarter 2000 Report
## 2080 RE: WSPP 4th Quarter 2000 Report
## 2081 RE: WSPP 4th Quarter 2000 Report
## 2082 RE: WSPP 4th Quarter 2000 Report
## 2083 Re: FERC and DOE 4th Quarter Reports
## 2084 Re: FERC and DOE 4th Quarter Reports
## 2085 Re: FERC and DOE 4th Quarter Reports
## 2086 Re: FERC and DOE 4th Quarter Reports
## 2087 Re: FERC and DOE 4th Quarter Reports
## 2088 Re: FERC and DOE 4th Quarter Reports
## 2089 Re: FERC and DOE 4th Quarter Reports
## 2090 Re: FERC and DOE 4th Quarter Reports
## 2091 Re: FERC and DOE 4th Quarter Reports
## 2092 Re: FERC and DOE 4th Quarter Reports
## 2093 Re: FERC and DOE 4th Quarter Reports
## 2094 Re: FERC and DOE 4th Quarter Reports
## 2095 Re: FERC and DOE 4th Quarter Reports
## 2096 Re: FERC and DOE 4th Quarter Reports
## 2097 Re: FERC and DOE 4th Quarter Reports
## 2098 Re: FERC and DOE 4th Quarter Reports
## 2099 Re: FERC and DOE 4th Quarter Reports
## 2100 Re: FERC and DOE 4th Quarter Reports
## 2101 Re: FERC and DOE 4th Quarter Reports
## 2102 Recent FERC interconnection orders
## 2103 Recent FERC interconnection orders
## 2104 Recent FERC interconnection orders
## 2105 Recent FERC interconnection orders
## 2106 Recent FERC interconnection orders
## 2107 Recent FERC interconnection orders
## 2108 Recent FERC interconnection orders
## 2109 Re: NEW: Generator Interconnections: A Primer on Procedures and\tAgreements
## 2110 Re: NEW: Generator Interconnections: A Primer on Procedures and\tAgreements
## 2111 Interconnection questions
## 2112 Interconnection questions
## 2113 Interconnection questions
## 2114 Interconnection questions
## 2115 Interconnection questions
## 2116 EPMI files protest of Entergy Transco
## 2117 EPMI files protest of Entergy Transco
## 2118 EPMI files protest of Entergy Transco
## 2119 EPMI files protest of Entergy Transco
## 2120 EPMI files protest of Entergy Transco
## 2121 EPMI files protest of Entergy Transco
## 2122 Conference Call Today
## 2123 Conference Call Today
## 2124 Conference Call Today
## 2125 Details of real time market
## 2126 Details of real time market
## 2127 2000 Lobbying Expenses
## 2128 2000 Lobbying Expenses
## 2129 2000 Lobbying Expenses
## 2130 2000 Lobbying Expenses
## 2131 2000 Lobbying Expenses
## 2132 2000 Lobbying Expenses
## 2133 Re: RTO Advocacy Positions
## 2134 Re: RTO Advocacy Positions
## 2135 Re: RTO Advocacy Positions
## 2136 Re: RTO Advocacy Positions
## 2137 Re: RTO Advocacy Positions
## 2138 Re: RTO Advocacy Positions
## 2139 Re: RTO Advocacy Positions
## 2140 Re: RTO Advocacy Positions
## 2141 Re: RTO Advocacy Positions
## 2142 Re: RTO Advocacy Positions
## 2143 Re: RTO Advocacy Positions
## 2144 Re: RTO Advocacy Positions
## 2145 Re: RTO Advocacy Positions
## 2146 Re: RTO Advocacy Positions
## 2147 Re: RTO Advocacy Positions
## 2148 Scope of FERC Jurisdiction Over State-Owned Utility
## 2149 Scope of FERC Jurisdiction Over State-Owned Utility
## 2150 Scope of FERC Jurisdiction Over State-Owned Utility
## 2151 Scope of FERC Jurisdiction Over State-Owned Utility
## 2152 OASIS Transmission Providers - West
## 2153 GridFlorida s response to EPMI request for real time market
## 2154 GridFlorida s response to EPMI request for real time market
## 2155 GridFlorida s response to EPMI request for real time market
## 2156 GridFlorida s response to EPMI request for real time market
## 2157 GridFlorida s response to EPMI request for real time market
## 2158 GridFlorida s response to EPMI request for real time market
## 2159 GridFlorida s response to EPMI request for real time market
## 2160 GA Department Meeting, Friday, March 9
## 2161 GA Department Meeting, Friday, March 9
## 2162 GA Department Meeting, Friday, March 9
## 2163 GA Department Meeting, Friday, March 9
## 2164 GA Department Meeting, Friday, March 9
## 2165 Re: A Request to Talk to One of our Customers
## 2166 Re: A Request to Talk to One of our Customers
## 2167 APS and Enron
## 2168 APS and Enron
## 2169 APS and Enron
## 2170 APS and Enron
## 2171 APS and Enron
## 2172 APS and Enron
## 2173 APS and Enron
## 2174 APS and Enron
## 2175 APS and Enron
## 2176 APS and Enron
## 2177 Re: Regional Structurers
## 2178 Re: APS and Enron
## 2179 Kevin s RTO Ideas for East
## 2180 Kevin s RTO Ideas for East
## 2181 Kevin s RTO Ideas for East
## 2182 Kevin s RTO Ideas for East
## 2183 Lobbying Questionnaire Clarification
## 2184 Lobbying Questionnaire Clarification
## 2185 Lobbying Questionnaire Clarification
## 2186 Lobbying Questionnaire Clarification
## 2187 Lobbying Questionnaire Clarification
## 2188 RTO filings on CD rom
## 2189 Foster OASIS - Provider list
## 2190 Ed Baughman heads Midwest and NE
## 2191 FYI_____ISO announces Market Stabilization Proposal
## 2192 FYI_____ISO announces Market Stabilization Proposal
## 2193 FYI_____ISO announces Market Stabilization Proposal
## 2194 FYI_____ISO announces Market Stabilization Proposal
## 2195 FYI_____ISO announces Market Stabilization Proposal
## 2196 FYI_____ISO announces Market Stabilization Proposal
## 2197 FYI_____ISO announces Market Stabilization Proposal
## 2198 FYI_____ISO announces Market Stabilization Proposal
## 2199 FYI_____ISO announces Market Stabilization Proposal
## 2200 Enpower Deal Entry Changes
## 2201 Enpower Deal Entry Changes
## 2202 Enpower Deal Entry Changes
## 2203 Enpower Deal Entry Changes
## 2204 Enpower Deal Entry Changes
## 2205 Enpower Deal Entry Changes
## 2206 Enpower Deal Entry Changes
## 2207 Enpower Deal Entry Changes
## 2208 Enpower Deal Entry Changes
## 2209 Enpower Deal Entry Changes
## 2210 Enpower Deal Entry Changes
## 2211 Enpower Deal Entry Changes
## 2212 Enpower Deal Entry Changes
## 2213 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 2214 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 2215 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 2216 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 2217 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 2218 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 2219 Agenda - Government Affairs/The Americas Meetings, March 8th & 9th, 2001
## 2220 Filings to buy power from industrials
## 2221 Filings to buy power from industrials
## 2222 Filings to buy power from industrials
## 2223 Filings to buy power from industrials
## 2224 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 2225 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 2226 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 2227 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 2228 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 2229 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 2230 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 2231 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 2232 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 2233 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 2234 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 2235 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 2236 Calif ISO: Qualifying Facils Capable Of 1,800 MW Off-Line
## 2237 Revised Agenda
## 2238 Revised Agenda
## 2239 Revised Agenda
## 2240 Revised Agenda
## 2241 Revised Agenda
## 2242 Revised Agenda
## 2243 Revised Agenda
## 2244 Due Mon.Contains Cal. info--Alliance Draft
## 2245 RTO filings on FERC agenda for Wed. 3/14
## 2246 RTO filings on FERC agenda for Wed. 3/14
## 2247 2001 Enron Law Conference (Distribution List 4)
## 2248 2001 Enron Law Conference (Distribution List 4)
## 2249 FW: 2000 Lobbying Expenses
## 2250 FW: 2000 Lobbying Expenses
## 2251 FW: 2000 Lobbying Expenses
## 2252 Re: Fwd: California - March 9 Order Addressing Refunds for Jan.\t2001 Sales
## 2253 Memorandum from Julie Simon on FERC order on refunds from March 9
## 2254 Memorandum from Julie Simon on FERC order on refunds from March 9
## 2255 Memorandum from Julie Simon on FERC order on refunds from March 9
## 2256 Memorandum from Julie Simon on FERC order on refunds from March 9
## 2257 Memorandum from Julie Simon on FERC order on refunds from March 9
## 2258 Memorandum from Julie Simon on FERC order on refunds from March 9
## 2259 Memorandum from Julie Simon on FERC order on refunds from March 9
## 2260 Memorandum from Julie Simon on FERC order on refunds from March 9
## 2261 Memorandum from Julie Simon on FERC order on refunds from March 9
## 2262 Memorandum from Julie Simon on FERC order on refunds from March 9
## 2263 Memorandum from Julie Simon on FERC order on refunds from March 9
## 2264 Memorandum from Julie Simon on FERC order on refunds from March 9
## 2265 Memorandum from Julie Simon on FERC order on refunds from March 9
## 2266 Memorandum from Julie Simon on FERC order on refunds from March 9
## 2267
## 2268 Re: FERC Order and DWR
## 2269 Enron Activity At FERC RE California Issues
## 2270 Enron Activity At FERC RE California Issues
## 2271 Enron Activity At FERC RE California Issues
## 2272 Enron Activity At FERC RE California Issues
## 2273 Enron Activity At FERC RE California Issues
## 2274 Enron Activity At FERC RE California Issues
## 2275 Enron Activity At FERC RE California Issues
## 2276 Enron Activity At FERC RE California Issues
## 2277 Enron Activity At FERC RE California Issues
## 2278 Enron Activity At FERC RE California Issues
## 2279 Enron Activity At FERC RE California Issues
## 2280 Enron Activity At FERC RE California Issues
## 2281 WACM Transmission Losses
## 2282 Status of California Cases
## 2283 Status of California Cases
## 2284 Status of California Cases
## 2285 Status of California Cases
## 2286 Status of California Cases
## 2287 Re: PGE RFP
## 2288 New York Regulatory Summary
## 2289 New York Regulatory Summary
## 2290 New York Regulatory Summary
## 2291 New York Regulatory Summary
## 2292 Weekly Electric FERC Report
## 2293 Weekly Electric FERC Report
## 2294 Weekly Electric FERC Report
## 2295 Weekly Electric FERC Report
## 2296 Weekly Electric FERC Report
## 2297 Re: FERC Jurisdiction Over California Investigations
## 2298 Re: Weekly Electric FERC Report
## 2299 Re: Weekly Electric FERC Report
## 2300 Re: Weekly Electric FERC Report
## 2301 Request from Bob Frank
## 2302 Request from Bob Frank
## 2303 Request from Bob Frank
## 2304 Request from Bob Frank
## 2305 PLEASE DISTRIBUTE TO THE GROUP. THANKS.
## 2306 PLEASE DISTRIBUTE TO THE GROUP. THANKS.
## 2307 PLEASE DISTRIBUTE TO THE GROUP. THANKS.
## 2308 PLEASE DISTRIBUTE TO THE GROUP. THANKS.
## 2309 FERC order re: imbalances
## 2310 FERC order re: imbalances
## 2311 FERC order re: imbalances
## 2312 Weekly Electric FERC Report
## 2313 Weekly Electric FERC Report
## 2314 Re: Draft interconnection procedure
## 2315 Re: Draft interconnection procedure
## 2316 Re: You Can Put A Stake in Their Hearts but They Never Die
## 2317 Re: You Can Put A Stake in Their Hearts but They Never Die
## 2318 Re: You Can Put A Stake in Their Hearts but They Never Die
## 2319 Re: You Can Put A Stake in Their Hearts but They Never Die
## 2320 Re: You Can Put A Stake in Their Hearts but They Never Die
## 2321 Re: You Can Put A Stake in Their Hearts but They Never Die
## 2322 Re: You Can Put A Stake in Their Hearts but They Never Die
## 2323 Re: You Can Put A Stake in Their Hearts but They Never Die
## 2324 Senators Dianne Feinstein and Gordon Smith Announce Partnership in Response to the Western Energy Crisis
## 2325 Senators Dianne Feinstein and Gordon Smith Announce Partnership in Response to the Western Energy Crisis
## 2326 Senators Dianne Feinstein and Gordon Smith Announce Partnership in Response to the Western Energy Crisis
## 2327 Senators Dianne Feinstein and Gordon Smith Announce Partnership in Response to the Western Energy Crisis
## 2328 Senators Dianne Feinstein and Gordon Smith Announce Partnership in Response to the Western Energy Crisis
## 2329 Senators Dianne Feinstein and Gordon Smith Announce Partnership in Response to the Western Energy Crisis
## 2330 Re: Interventions in Tuscon Complaint Proceeding
## 2331 Draft re Interactions with PGE
## 2332 Draft re Interactions with PGE
## 2333 Draft re Interactions with PGE
## 2334 Draft re Interactions with PGE
## 2335 Draft re Interactions with PGE
## 2336 Re: Weekly Electric FERC Report
## 2337 Re: Weekly Electric FERC Report
## 2338 Re: Weekly Electric FERC Report
## 2339 Re: Weekly Electric FERC Report
## 2340 Project Requires RCR
## 2341 Project Requires RCR
## 2342 Project Requires RCR
## 2343 Re: FILING FOR COLLECTION OF ISO BALANCING PENALTY
## 2344 RCR Meeting
## 2345 RCR Meeting
## 2346 RCR Meeting
## 2347 RCR Meeting
## 2348 Weekly Reports
## 2349 Weekly Reports
## 2350 Weekly Reports
## 2351 Weekly Reports
## 2352 Weekly Reports
## 2353 Weekly Reports
## 2354 Weekly Reports
## 2355 Weekly Reports
## 2356 Weekly Reports
## 2357 Weekly Reports
## 2358 Re: Draft interconnection procedure
## 2359 Re: Draft interconnection procedure
## 2360 Re: Draft re Interactions with PGE
## 2361 Re: Draft re Interactions with PGE
## 2362 Energy Issues
## 2363 Energy Issues
## 2364 Energy Issues
## 2365 Energy Issues
## 2366 Energy Issues
## 2367 Weekly Electric FERC Report
## 2368 Weekly Electric FERC Report
## 2369 Marchris Robinson s new baby - FYI
## 2370 Marchris Robinson s new baby - FYI
## 2371 Marchris Robinson s new baby - FYI
## 2372 Marchris Robinson s new baby - FYI
## 2373 Confirming What We Already Knew
## 2374 Confirming What We Already Knew
## 2375 Confirming What We Already Knew
## 2376 Confirming What We Already Knew
## 2377 Confirming What We Already Knew
## 2378 Confirming What We Already Knew
## 2379 Confirming What We Already Knew
## 2380 Confirming What We Already Knew
## 2381 Confirming What We Already Knew
## 2382 Confirming What We Already Knew
## 2383 Confirming What We Already Knew
## 2384 Confirming What We Already Knew
## 2385 Confirming What We Already Knew
## 2386 Confirming What We Already Knew
## 2387 Confirming What We Already Knew
## 2388 Confirming What We Already Knew
## 2389 Feb Order -- The FERC Order Saying which companies should refund - not Enron
## 2390 Feb Order -- The FERC Order Saying which companies should refund - not Enron
## 2391 Feb Order -- The FERC Order Saying which companies should refund - not Enron
## 2392 Feb Order -- The FERC Order Saying which companies should refund - not Enron
## 2393 Feb Order -- The FERC Order Saying which companies should refund - not Enron
## 2394 Feb Order -- The FERC Order Saying which companies should refund - not Enron
## 2395 Feb Order -- The FERC Order Saying which companies should refund - not Enron
## 2396 Feb Order -- The FERC Order Saying which companies should refund - not Enron
## 2397 2001 Enron Law Conference (Distribution List 4)
## 2398 2001 Enron Law Conference (Distribution List 4)
## 2399 Re: Draft interconnection procedure
## 2400 Re: Draft interconnection procedure
## 2401 Underscheduling Penalty
## 2402 Underscheduling Penalty
## 2403 Enron EHS Contact on California Environmental Issues
## 2404 Enron EHS Contact on California Environmental Issues
## 2405 Enron EHS Contact on California Environmental Issues
## 2406 Enron EHS Contact on California Environmental Issues
## 2407 Re: Enron Activity At FERC RE California Issues
## 2408 Re: Enron Activity At FERC RE California Issues
## 2409 Re: Enron Activity At FERC RE California Issues
## 2410 Re: Enron Activity At FERC RE California Issues
## 2411 Rotating Outages underway in CA --
## 2412 Rotating Outages underway in CA --
## 2413 Rotating Outages underway in CA --
## 2414 Rotating Outages underway in CA --
## 2415 Rotating Outages underway in CA --
## 2416 Rotating Outages underway in CA --
## 2417 Rotating Outages underway in CA --
## 2418 Rotating Outages underway in CA --
## 2419 RSVP Form Update (Distribution List 4)
## 2420 RSVP Form Update (Distribution List 4)
## 2421 Re: Underscheduling Penalty
## 2422 IEP FERC/ISO: Draft IEP FERC Cmts on Staff Report
## 2423 IEP FERC/ISO: Draft IEP FERC Cmts on Staff Report
## 2424 IEP FERC/ISO: Draft IEP FERC Cmts on Staff Report
## 2425 IEP FERC/ISO: Draft IEP FERC Cmts on Staff Report
## 2426 IEP FERC/ISO: Draft IEP FERC Cmts on Staff Report
## 2427 IEP FERC/ISO: Draft IEP FERC Cmts on Staff Report
## 2428 IEP FERC/ISO: Draft IEP FERC Cmts on Staff Report
## 2429 IEP FERC/ISO: Draft IEP FERC Cmts on Staff Report
## 2430 IEP FERC/ISO: Draft IEP FERC Cmts on Staff Report
## 2431 IEP FERC/ISO: Draft IEP FERC Cmts on Staff Report
## 2432 California Messaging
## 2433 California Messaging
## 2434 California Messaging
## 2435 California Messaging
## 2436 California Messaging
## 2437 Ridgewood s Petition To Be Released From QF Contracts
## 2438 Ridgewood s Petition To Be Released From QF Contracts
## 2439 Ridgewood s Petition To Be Released From QF Contracts
## 2440 Ridgewood s Petition To Be Released From QF Contracts
## 2441 Ridgewood s Petition To Be Released From QF Contracts
## 2442 Ridgewood s Petition To Be Released From QF Contracts
## 2443 Ridgewood s Petition To Be Released From QF Contracts
## 2444 Ridgewood s Petition To Be Released From QF Contracts
## 2445 Ridgewood s Petition To Be Released From QF Contracts
## 2446 Dow Jones says CPUC will "Order" utiltities to pay QFs $1 bil
## 2447 Dow Jones says CPUC will "Order" utiltities to pay QFs $1 bil
## 2448 Dow Jones says CPUC will "Order" utiltities to pay QFs $1 bil
## 2449 Dow Jones says CPUC will "Order" utiltities to pay QFs $1 bil
## 2450 Dow Jones says CPUC will "Order" utiltities to pay QFs $1 bil
## 2451 Dow Jones says CPUC will "Order" utiltities to pay QFs $1 bil
## 2452 Dow Jones says CPUC will "Order" utiltities to pay QFs $1 bil
## 2453 Dow Jones says CPUC will "Order" utiltities to pay QFs $1 bil
## 2454 Transmission Week - March 19, 2001 -- 9 pages
## 2455 CONFERENCE CALL INVITATION Re: Draft FERC Comments
## 2456 *CONFIRMATION* of CONFERENCE CALL INVITATION Re: Draft FERC Comments
## 2457 Commission Actions to Remove Obstacles in Western US- Key\tPoints for EPSA Comments, Due MARCH 30TH
## 2458 Commission Actions to Remove Obstacles in Western US- Key\tPoints for EPSA Comments, Due MARCH 30TH
## 2459 Commission Actions to Remove Obstacles in Western US- Key\tPoints for EPSA Comments, Due MARCH 30TH
## 2460 Commission Actions to Remove Obstacles in Western US- Key\tPoints for EPSA Comments, Due MARCH 30TH
## 2461 Commission Actions to Remove Obstacles in Western US- Key\tPoints for EPSA Comments, Due MARCH 30TH
## 2462 Commission Actions to Remove Obstacles in Western US- Key\tPoints for EPSA Comments, Due MARCH 30TH
## 2463 Commission Actions to Remove Obstacles in Western US- Key\tPoints for EPSA Comments, Due MARCH 30TH
## 2464 Commission Actions to Remove Obstacles in Western US- Key\tPoints for EPSA Comments, Due MARCH 30TH
## 2465 Commission Actions to Remove Obstacles in Western US- Key\tPoints for EPSA Comments, Due MARCH 30TH
## 2466 Commission Actions to Remove Obstacles in Western US- Key\tPoints for EPSA Comments, Due MARCH 30TH
## 2467 Commission Actions to Remove Obstacles in Western US- Key\tPoints for EPSA Comments, Due MARCH 30TH
## 2468 Commission Actions to Remove Obstacles in Western US- Key\tPoints for EPSA Comments, Due MARCH 30TH
## 2469 Commission Actions to Remove Obstacles in Western US- Key\tPoints for EPSA Comments, Due MARCH 30TH
## 2470 Commission Actions to Remove Obstacles in Western US- Key\tPoints for EPSA Comments, Due MARCH 30TH
## 2471 GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 2472 GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 2473 GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 2474 GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 2475 GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 2476 GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 2477 GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 2478 GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 2479 Dept. Conf. Call Cancelled
## 2480 Dept. Conf. Call Cancelled
## 2481 Dept. Conf. Call Cancelled
## 2482 Dept. Conf. Call Cancelled
## 2483 CA FERC Filings
## 2484 EES trader changes
## 2485 EES trader changes
## 2486 EES trader changes
## 2487 Please send to everyone
## 2488 Please send to everyone
## 2489 Please send to everyone
## 2490 Please send to everyone
## 2491 Entergy/FPL
## 2492 Entergy/FPL
## 2493 Re: Emergency Motion of City of San Diego
## 2494 Re: Emergency Motion of City of San Diego
## 2495 Re: Emergency Motion of City of San Diego
## 2496 Re: Emergency Motion of City of San Diego
## 2497 Re: Emergency Motion of City of San Diego
## 2498 Re: Emergency Motion of City of San Diego
## 2499 Re: Emergency Motion of City of San Diego
## 2500 Re: Emergency Motion of City of San Diego
## 2501 Re: Emergency Motion of City of San Diego
## 2502 Re: Emergency Motion of City of San Diego
## 2503 Re: Emergency Motion of City of San Diego
## 2504 Re: Emergency Motion of City of San Diego
## 2505 Re: Emergency Motion of City of San Diego
## 2506 Re: Emergency Motion of City of San Diego
## 2507 Re: Emergency Motion of City of San Diego
## 2508 Re: Emergency Motion of City of San Diego
## 2509 Re: Emergency Motion of City of San Diego
## 2510 Re: Emergency Motion of City of San Diego
## 2511 Re: Emergency Motion of City of San Diego
## 2512 Weekly Regulatory Report
## 2513 Weekly Regulatory Report
## 2514 Weekly Regulatory Report
## 2515 Weekly Regulatory Report
## 2516 Weekly Regulatory Report
## 2517 Energy Issues
## 2518 Energy Issues
## 2519 Energy Issues
## 2520 Energy Issues
## 2521 Energy Issues
## 2522 FYI - PX sues ISO
## 2523 FYI - PX sues ISO
## 2524 FYI - PX sues ISO
## 2525 FYI - PX sues ISO
## 2526 FYI - PX sues ISO
## 2527 FYI - PX sues ISO
## 2528 FYI - PX sues ISO
## 2529 FYI - PX sues ISO
## 2530 FYI - PX sues ISO
## 2531 FYI - PX sues ISO
## 2532 FYI - PX sues ISO
## 2533 FYI - PX sues ISO
## 2534 FYI - PX sues ISO
## 2535 GridSouth and Southern RTO Orders
## 2536 GridSouth and Southern RTO Orders
## 2537 GridSouth and Southern RTO Orders
## 2538 GridSouth and Southern RTO Orders
## 2539 GridSouth and Southern RTO Orders
## 2540 Great Sacramento Bee Editorial Today -- CA Gray-Outs
## 2541 Great Sacramento Bee Editorial Today -- CA Gray-Outs
## 2542 Great Sacramento Bee Editorial Today -- CA Gray-Outs
## 2543 Great Sacramento Bee Editorial Today -- CA Gray-Outs
## 2544 Great Sacramento Bee Editorial Today -- CA Gray-Outs
## 2545 Great Sacramento Bee Editorial Today -- CA Gray-Outs
## 2546 Great Sacramento Bee Editorial Today -- CA Gray-Outs
## 2547 Great Sacramento Bee Editorial Today -- CA Gray-Outs
## 2548 Calif State Controller: General Fund Surplus Cut Down by 60% for Energy Purchases!!!
## 2549 Calif State Controller: General Fund Surplus Cut Down by 60% for Energy Purchases!!!
## 2550 Calif State Controller: General Fund Surplus Cut Down by 60% for Energy Purchases!!!
## 2551 Calif State Controller: General Fund Surplus Cut Down by 60% for Energy Purchases!!!
## 2552 Calif State Controller: General Fund Surplus Cut Down by 60% for Energy Purchases!!!
## 2553 Calif State Controller: General Fund Surplus Cut Down by 60% for Energy Purchases!!!
## 2554 Calif State Controller: General Fund Surplus Cut Down by 60% for Energy Purchases!!!
## 2555 Calif State Controller: General Fund Surplus Cut Down by 60% for Energy Purchases!!!
## 2556 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 2557 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 2558 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 2559 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 2560 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 2561 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 2562 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 2563 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 2564 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 2565 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 2566 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 2567 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 2568 Re: GOVERNOR DAVIS ANNOUNCES STATE AGREEMENTS TO SPUR ENERGY EFFICIENT BUILDINGS -- EES Wins $1.5 million
## 2569 STAFF MEETING REMINDER & AGENDA REQUEST
## 2570 Re: Weekly Regulatory Report
## 2571 Re: Weekly Regulatory Report
## 2572 FERC Filing on Credit Due TOmorrow
## 2573 FERC Filing on Credit Due TOmorrow
## 2574 Allegheny Energy Supply Company LLC - Merrill Lynch Capital Services, Inc.
## 2575 Allegheny Energy Supply Company LLC - Merrill Lynch Capital Services, Inc.
## 2576 Allegheny Energy Supply Company LLC - Merrill Lynch Capital Services, Inc.
## 2577 Allegheny Energy Supply Company LLC - Merrill Lynch Capital Services, Inc.
## 2578 Allegheny Energy Supply Company LLC - Merrill Lynch Capital Services, Inc.
## 2579 Allegheny Energy Supply Company LLC - Merrill Lynch Capital Services, Inc.
## 2580 Allegheny Energy Supply Company LLC - Merrill Lynch Capital Services, Inc.
## 2581 Allegheny Energy Supply Company LLC - Merrill Lynch Capital Services, Inc.
## 2582 Allegheny Energy Supply Company LLC - Merrill Lynch Capital Services, Inc.
## 2583 Allegheny Energy Supply Company LLC - Merrill Lynch Capital Services, Inc.
## 2584 Allegheny Energy Supply Company LLC - Merrill Lynch Capital Services, Inc.
## 2585 Allegheny Energy Supply Company LLC - Merrill Lynch Capital Services, Inc.
## 2586 Allegheny Energy Supply Company LLC - Merrill Lynch Capital Services, Inc.
## 2587 Allegheny Energy Supply Company LLC - Merrill Lynch Capital Services, Inc.
## 2588 Allegheny Energy Supply Company LLC - Merrill Lynch Capital Services, Inc.
## 2589 Allegheny Energy Supply Company LLC - Merrill Lynch Capital Services, Inc.
## 2590 Allegheny Energy Supply Company LLC - Merrill Lynch Capital Services, Inc.
## 2591 Allegheny Energy Supply Company LLC - Merrill Lynch Capital Services, Inc.
## 2592 Allegheny Energy Supply Company LLC - Merrill Lynch Capital Services, Inc.
## 2593 Allegheny Energy Supply Company LLC - Merrill Lynch Capital Services, Inc.
## 2594 Allegheny Energy Supply Company LLC - Merrill Lynch Capital Services, Inc.
## 2595 Allegheny Energy Supply Company LLC - Merrill Lynch Capital Services, Inc.
## 2596 Allegheny Energy Supply Company LLC - Merrill Lynch Capital Services, Inc.
## 2597 Allegheny Energy Supply Company LLC - Merrill Lynch Capital Services, Inc.
## 2598 Allegheny Energy Supply Company LLC - Merrill Lynch Capital Services, Inc.
## 2599 Allegheny Energy Supply Company LLC - Merrill Lynch Capital Services, Inc.
## 2600 Allegheny Energy Supply Company LLC - Merrill Lynch Capital Services, Inc.
## 2601 Allegheny Energy Supply Company LLC - Merrill Lynch Capital Services, Inc.
## 2602 Allegheny Energy Supply Company LLC - Merrill Lynch Capital Services, Inc.
## 2603 Allegheny Energy Supply Company LLC - Merrill Lynch Capital Services, Inc.
## 2604 Allegheny Energy Supply Company LLC - Merrill Lynch Capital Services, Inc.
## 2605 FERC grants EPMI changes in APS Interconnection Procedures
## 2606 FERC grants EPMI changes in APS Interconnection Procedures
## 2607 FERC grants EPMI changes in APS Interconnection Procedures
## 2608 FERC grants EPMI changes in APS Interconnection Procedures
## 2609 State Controller Kathleen Connell Press Conference
## 2610 State Controller Kathleen Connell Press Conference
## 2611 State Controller Kathleen Connell Press Conference
## 2612 State Controller Kathleen Connell Press Conference
## 2613 State Controller Kathleen Connell Press Conference
## 2614 State Controller Kathleen Connell Press Conference
## 2615 State Controller Kathleen Connell Press Conference
## 2616 State Controller Kathleen Connell Press Conference
## 2617 Call-in Number for Staff Meeting
## 2618 More CA FERC Filings
## 2619 FW: Associated Press story: Power spending imperils state s finan\tcial health, controller says
## 2620 FW: Associated Press story: Power spending imperils state s finan\tcial health, controller says
## 2621 FW: Associated Press story: Power spending imperils state s finan\tcial health, controller says
## 2622 FW: Associated Press story: Power spending imperils state s finan\tcial health, controller says
## 2623 FW: Associated Press story: Power spending imperils state s finan\tcial health, controller says
## 2624 FW: Associated Press story: Power spending imperils state s finan\tcial health, controller says
## 2625 FW: Associated Press story: Power spending imperils state s finan\tcial health, controller says
## 2626 FW: Associated Press story: Power spending imperils state s finan\tcial health, controller says
## 2627 Re: GridSouth and Southern RTO Orders
## 2628 Re: GridSouth and Southern RTO Orders
## 2629 Re: GridSouth and Southern RTO Orders
## 2630 Re: GridSouth and Southern RTO Orders
## 2631 Re: GridSouth and Southern RTO Orders
## 2632 Re: GridSouth and Southern RTO Orders
## 2633 Re: GridSouth and Southern RTO Orders
## 2634 Re: GridSouth and Southern RTO Orders
## 2635 Re: GridSouth and Southern RTO Orders
## 2636 Re: GridSouth and Southern RTO Orders
## 2637 GridFlorida and Spp/Entergy RTOs
## 2638 Energy Issues
## 2639 Energy Issues
## 2640 Energy Issues
## 2641 Energy Issues
## 2642 Energy Issues
## 2643 Re: FYI - PX sues ISO
## 2644 Re: FYI - PX sues ISO
## 2645 Re: FYI - PX sues ISO
## 2646 Re: FYI - PX sues ISO
## 2647 Re: FYI - PX sues ISO
## 2648 Re: FYI - PX sues ISO
## 2649 Re: FYI - PX sues ISO
## 2650 Re: FYI - PX sues ISO
## 2651 Re: FYI - PX sues ISO
## 2652 Re: FYI - PX sues ISO
## 2653 Re: FYI - PX sues ISO
## 2654 Re: FYI - PX sues ISO
## 2655 Re: FYI - PX sues ISO
## 2656 Re: FYI - PX sues ISO
## 2657 Re: FYI - PX sues ISO
## 2658 Re: FYI - PX sues ISO
## 2659 Re: FYI - PX sues ISO
## 2660 Re: FYI - PX sues ISO
## 2661 Re: FYI - PX sues ISO
## 2662 Re: FYI - PX sues ISO
## 2663 Re: FYI - PX sues ISO
## 2664 Re: FYI - PX sues ISO
## 2665 Re: FYI - PX sues ISO
## 2666 Re: FYI - PX sues ISO
## 2667 Re: Ridgewood s Petition To Be Released From QF Contracts
## 2668 Re: Ridgewood s Petition To Be Released From QF Contracts
## 2669 Re: Ridgewood s Petition To Be Released From QF Contracts
## 2670 Re: Ridgewood s Petition To Be Released From QF Contracts
## 2671 Re: Ridgewood s Petition To Be Released From QF Contracts
## 2672 Re: Ridgewood s Petition To Be Released From QF Contracts
## 2673 Re: Ridgewood s Petition To Be Released From QF Contracts
## 2674 Re: Ridgewood s Petition To Be Released From QF Contracts
## 2675 Re: Ridgewood s Petition To Be Released From QF Contracts
## 2676 Re: Ridgewood s Petition To Be Released From QF Contracts
## 2677 Re: Ridgewood s Petition To Be Released From QF Contracts
## 2678 Re: Ridgewood s Petition To Be Released From QF Contracts
## 2679 Re: Ridgewood s Petition To Be Released From QF Contracts
## 2680 Re: Ridgewood s Petition To Be Released From QF Contracts
## 2681 Re: Ridgewood s Petition To Be Released From QF Contracts
## 2682 Re: Ridgewood s Petition To Be Released From QF Contracts
## 2683 Re: Ridgewood s Petition To Be Released From QF Contracts
## 2684 Re: Ridgewood s Petition To Be Released From QF Contracts
## 2685 Re: Ridgewood s Petition To Be Released From QF Contracts
## 2686 Commission Agenda
## 2687 Commission Agenda
## 2688 Commission Agenda
## 2689 Commission Agenda
## 2690 Commission Agenda
## 2691 Commission Agenda
## 2692 Commission Agenda
## 2693 Commission Agenda
## 2694 Commission Agenda
## 2695 Commission Agenda
## 2696 ISO Report on Overcharging -- Market Power
## 2697 ISO Report on Overcharging -- Market Power
## 2698 ISO Report on Overcharging -- Market Power
## 2699 ISO Report on Overcharging -- Market Power
## 2700 ISO Report on Overcharging -- Market Power
## 2701 ISO Press Conference -- $5.5 billion in refunds is wrong
## 2702 ISO Press Conference -- $5.5 billion in refunds is wrong
## 2703 ISO Press Conference -- $5.5 billion in refunds is wrong
## 2704 ISO Press Conference -- $5.5 billion in refunds is wrong
## 2705 ISO Press Conference -- $5.5 billion in refunds is wrong
## 2706 ISO Press Conference -- $5.5 billion in refunds is wrong
## 2707 The other shoe dropped: accepted bid and cost data for all EPMI transactions with PX/ISO Oct - Nov
## 2708 More info from ISO -- May be Providing Confidential Data to State
## 2709 More info from ISO -- May be Providing Confidential Data to State
## 2710 More info from ISO -- May be Providing Confidential Data to State
## 2711 More info from ISO -- May be Providing Confidential Data to State
## 2712 More info from ISO -- May be Providing Confidential Data to State
## 2713 More info from ISO -- May be Providing Confidential Data to State
## 2714 RTO I/A terms can supersede current I/A
## 2715 RTO I/A terms can supersede current I/A
## 2716 RTO I/A terms can supersede current I/A
## 2717 RTO I/A terms can supersede current I/A
## 2718 Re: Electronic Scheduling
## 2719 Re: Electronic Scheduling
## 2720 Re: Electronic Scheduling
## 2721 ESC and RTO
## 2722 ESC and RTO
## 2723 ESC and RTO
## 2724 ESC and RTO
## 2725 ESC and RTO
## 2726 ESC and RTO
## 2727 ESC and RTO
## 2728 ESC and RTO
## 2729 ESC and RTO
## 2730 ESC and RTO
## 2731 ESC and RTO
## 2732 ESC and RTO
## 2733 ESC and RTO
## 2734 ESC and RTO
## 2735 ESC and RTO
## 2736 ESC and RTO
## 2737 Energy Issues
## 2738 Energy Issues
## 2739 Energy Issues
## 2740 Energy Issues
## 2741 Energy Issues
## 2742 Mary Hain EXP MCH032301
## 2743 Mary Hain EXP MCH032301
## 2744 FYI -- "Green Coal" power plant planned for Washington State
## 2745 FYI -- "Green Coal" power plant planned for Washington State
## 2746 FYI -- "Green Coal" power plant planned for Washington State
## 2747 FYI -- "Green Coal" power plant planned for Washington State
## 2748 FYI -- "Green Coal" power plant planned for Washington State
## 2749 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2750 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2751 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2752 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2753 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2754 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2755 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2756 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2757 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2758 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2759 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2760 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2761 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2762 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2763 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2764 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2765 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2766 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2767 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2768 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2769 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2770 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2771 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2772 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2773 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2774 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2775 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2776 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2777 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2778 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2779 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2780 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2781 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2782 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2783 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2784 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2785 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2786 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2787 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2788 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2789 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2790 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2791 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2792 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2793 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2794 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2795 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2796 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2797 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2798 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2799 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2800 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2801 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2802 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2803 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2804 Re: Today s ISO Filings in Response to FERC Staff s Mitigation\tPlan
## 2805 Weekly Reports: FERC and State Government
## 2806 Weekly Reports: FERC and State Government
## 2807 Weekly Reports: FERC and State Government
## 2808 Weekly Reports: FERC and State Government
## 2809 Weekly Reports: FERC and State Government
## 2810 Weekly Reports: FERC and State Government
## 2811 Weekly Reports: FERC and State Government
## 2812 Weekly Reports: FERC and State Government
## 2813 Weekly Reports: FERC and State Government
## 2814 Weekly Reports: FERC and State Government
## 2815 RCR Meeting
## 2816 RCR Meeting
## 2817 RCR Meeting
## 2818 RCR Meeting
## 2819 Energy Issues -- Pt.2
## 2820 Energy Issues -- Pt.2
## 2821 Energy Issues -- Pt.2
## 2822 Energy Issues -- Pt.2
## 2823 Energy Issues -- Pt.2
## 2824 CPUC News -- From Press Conference as we Speak
## 2825 CPUC News -- From Press Conference as we Speak
## 2826 CPUC News -- From Press Conference as we Speak
## 2827 CPUC News -- From Press Conference as we Speak
## 2828 CPUC News -- From Press Conference as we Speak
## 2829 CPUC News -- From Press Conference as we Speak
## 2830 CPUC News -- From Press Conference as we Speak
## 2831 CPUC News -- From Press Conference as we Speak
## 2832 Government Affairs-The Americas - Organizational Announcement
## 2833 Government Affairs-The Americas - Organizational Announcement
## 2834 Government Affairs-The Americas - Organizational Announcement
## 2835 Government Affairs-The Americas - Organizational Announcement
## 2836 Government Affairs-The Americas - Organizational Announcement
## 2837 Government Affairs-The Americas - Organizational Announcement
## 2838 Government Affairs-The Americas - Organizational Announcement
## 2839 Government Affairs-The Americas - Organizational Announcement
## 2840 Government Affairs-The Americas - Organizational Announcement
## 2841 Government Affairs-The Americas - Organizational Announcement
## 2842 Energy Issues
## 2843 Energy Issues
## 2844 Energy Issues
## 2845 Energy Issues
## 2846 Energy Issues
## 2847 Energy Issues
## 2848 Energy Issues
## 2849 Energy Issues
## 2850 Energy Issues
## 2851 Energy Issues
## 2852 FERC Items
## 2853 FERC Items
## 2854 FERC Items
## 2855 FERC Items
## 2856 FERC Items
## 2857 FERC Items
## 2858 FERC Items
## 2859 FERC Items
## 2860 FERC Items
## 2861 FERC Items
## 2862 Summary of Commission Meeting
## 2863 Summary of Commission Meeting
## 2864 Summary of Commission Meeting
## 2865 Summary of Commission Meeting
## 2866 Summary of Commission Meeting
## 2867 Summary of Commission Meeting
## 2868 Summary of Commission Meeting
## 2869 Summary of Commission Meeting
## 2870 Summary of Commission Meeting
## 2871 Summary of Commission Meeting
## 2872 Energy Issues
## 2873 Energy Issues
## 2874 Energy Issues
## 2875 Energy Issues
## 2876 Energy Issues
## 2877 Leaving soon
## 2878 Leaving soon
## 2879 Leaving soon
## 2880 Leaving soon
## 2881 Leaving soon
## 2882 Leaving soon
## 2883 Leaving soon
## 2884 Leaving soon
## 2885 Leaving soon
## 2886 Leaving soon
## 2887 Leaving soon
## 2888 Leaving soon
## 2889 Leaving soon
## 2890 Leaving soon
## 2891 Leaving soon
## 2892 Leaving soon
## 2893 Leaving soon
## 2894 Leaving soon
## 2895 Leaving soon
## 2896 Leaving soon
## 2897 Leaving soon
## 2898 Leaving soon
## 2899 Leaving soon
## 2900 REMINDER -- Law Conference (Distribution List 1)
## 2901 REMINDER -- Law Conference (Distribution List 1)
## 2902 REMINDER -- Law Conference (Distribution List 1)
## 2903 REMINDER -- Law Conference (Distribution List 1)
## 2904 Weekly FERC Electric Report
## 2905 Weekly FERC Electric Report
## 2906 Weekly FERC Electric Report
## 2907 Weekly FERC Electric Report
## 2908 Weekly FERC Electric Report
## 2909 Weekly FERC Electric Report
## 2910 Weekly FERC Electric Report
## 2911 Weekly FERC Electric Report
## 2912 Weekly FERC Electric Report
## 2913 Weekly FERC Electric Report
## 2914 Energy Crisis Press Conferences at the Capitol: CAUSE and Assem. \tRepublicans file suit against Gov. Davis et al
## 2915 Energy Crisis Press Conferences at the Capitol: CAUSE and Assem. \tRepublicans file suit against Gov. Davis et al
## 2916 Energy Crisis Press Conferences at the Capitol: CAUSE and Assem. \tRepublicans file suit against Gov. Davis et al
## 2917 Energy Crisis Press Conferences at the Capitol: CAUSE and Assem. \tRepublicans file suit against Gov. Davis et al
## 2918 Energy Crisis Press Conferences at the Capitol: CAUSE and Assem. \tRepublicans file suit against Gov. Davis et al
## 2919 Energy Crisis Press Conferences at the Capitol: CAUSE and Assem. \tRepublicans file suit against Gov. Davis et al
## 2920 Energy Crisis Press Conferences at the Capitol: CAUSE and Assem. \tRepublicans file suit against Gov. Davis et al
## 2921 Energy Crisis Press Conferences at the Capitol: CAUSE and Assem. \tRepublicans file suit against Gov. Davis et al
## 2922 FERC order denying SPP/Entergy RTO -Summary
## 2923 FERC order denying SPP/Entergy RTO -Summary
## 2924 FERC order denying SPP/Entergy RTO -Summary
## 2925 FERC order denying SPP/Entergy RTO -Summary
## 2926 FERC order denying SPP/Entergy RTO -Summary
## 2927 FERC order denying SPP/Entergy RTO -Summary
## 2928 FERC order denying SPP/Entergy RTO -Summary
## 2929 FERC order denying SPP/Entergy RTO -Summary
## 2930 FERC order denying SPP/Entergy RTO -Summary
## 2931 FERC order denying SPP/Entergy RTO -Summary
## 2932 Enron Pipeline Comments in EL01-47
## 2933 Enron Pipeline Comments in EL01-47
## 2934 Enron Pipeline Comments in EL01-47
## 2935 Enron Pipeline Comments in EL01-47
## 2936 Enron Pipeline Comments in EL01-47
## 2937 Enron Pipeline Comments in EL01-47
## 2938 Enron Pipeline Comments in EL01-47
## 2939 Enron Pipeline Comments in EL01-47
## 2940 Enron Pipeline Comments in EL01-47
## 2941 Enron Pipeline Comments in EL01-47
## 2942 Enron Pipeline Comments in EL01-47
## 2943 Enron Pipeline Comments in EL01-47
## 2944 Enron Pipeline Comments in EL01-47
## 2945 Enron Pipeline Comments in EL01-47
## 2946 Enron Pipeline Comments in EL01-47
## 2947 Enron Pipeline Comments in EL01-47
## 2948 Enron Pipeline Comments in EL01-47
## 2949 Enron Pipeline Comments in EL01-47
## 2950 Enron Pipeline Comments in EL01-47
## 2951 Enron Pipeline Comments in EL01-47
## 2952 Enron Pipeline Comments in EL01-47
## 2953 Enron Pipeline Comments in EL01-47
## 2954 Enron Pipeline Comments in EL01-47
## 2955 Enron Pipeline Comments in EL01-47
## 2956 Enron Pipeline Comments in EL01-47
## 2957 Enron Pipeline Comments in EL01-47
## 2958 Enron Pipeline Comments in EL01-47
## 2959 Enron Pipeline Comments in EL01-47
## 2960 Enron Pipeline Comments in EL01-47
## 2961 Enron Pipeline Comments in EL01-47
## 2962 Enron Pipeline Comments in EL01-47
## 2963 Enron Pipeline Comments in EL01-47
## 2964 Enron Pipeline Comments in EL01-47
## 2965 Enron Pipeline Comments in EL01-47
## 2966 Enron Pipeline Comments in EL01-47
## 2967 Enron Pipeline Comments in EL01-47
## 2968 Enron Pipeline Comments in EL01-47
## 2969 Enron Pipeline Comments in EL01-47
## 2970 Enron Pipeline Comments in EL01-47
## 2971 Enron Pipeline Comments in EL01-47
## 2972 Enron Pipeline Comments in EL01-47
## 2973 Enron Pipeline Comments in EL01-47
## 2974 Enron Pipeline Comments in EL01-47
## 2975 Enron Pipeline Comments in EL01-47
## 2976 Enron Pipeline Comments in EL01-47
## 2977 Enron Pipeline Comments in EL01-47
## 2978 Enron Pipeline Comments in EL01-47
## 2979 Enron Pipeline Comments in EL01-47
## 2980 Enron Pipeline Comments in EL01-47
## 2981 Enron Pipeline Comments in EL01-47
## 2982 Enron Pipeline Comments in EL01-47
## 2983 Enron Pipeline Comments in EL01-47
## 2984 Enron Pipeline Comments in EL01-47
## 2985 Enron Pipeline Comments in EL01-47
## 2986 Enron Pipeline Comments in EL01-47
## 2987 Enron Pipeline Comments in EL01-47
## 2988 Enron Pipeline Comments in EL01-47
## 2989 Enron Pipeline Comments in EL01-47
## 2990 Enron Pipeline Comments in EL01-47
## 2991 Enron Pipeline Comments in EL01-47
## 2992 Enron Pipeline Comments in EL01-47
## 2993 Enron Pipeline Comments in EL01-47
## 2994 Enron Pipeline Comments in EL01-47
## 2995 Enron Pipeline Comments in EL01-47
## 2996 Enron Pipeline Comments in EL01-47
## 2997 Enron Pipeline Comments in EL01-47
## 2998 Enron Pipeline Comments in EL01-47
## 2999 Enron Pipeline Comments in EL01-47
## 3000 Enron Pipeline Comments in EL01-47
## 3001 Enron Pipeline Comments in EL01-47
## 3002 Enron Pipeline Comments in EL01-47
## 3003 Enron Pipeline Comments in EL01-47
## 3004 Enron Pipeline Comments in EL01-47
## 3005 Enron Pipeline Comments in EL01-47
## 3006 Enron Pipeline Comments in EL01-47
## 3007 Enron Pipeline Comments in EL01-47
## 3008 Enron Pipeline Comments in EL01-47
## 3009 Enron Pipeline Comments in EL01-47
## 3010 Enron Pipeline Comments in EL01-47
## 3011 Enron Pipeline Comments in EL01-47
## 3012 Enron Pipeline Comments in EL01-47
## 3013 Enron Pipeline Comments in EL01-47
## 3014 Enron Pipeline Comments in EL01-47
## 3015 Enron Pipeline Comments in EL01-47
## 3016 Enron Pipeline Comments in EL01-47
## 3017 Enron Pipeline Comments in EL01-47
## 3018 Enron Pipeline Comments in EL01-47
## 3019 Enron Pipeline Comments in EL01-47
## 3020 Enron Pipeline Comments in EL01-47
## 3021 Enron Pipeline Comments in EL01-47
## 3022 Enron Pipeline Comments in EL01-47
## 3023 Enron Pipeline Comments in EL01-47
## 3024 Enron Pipeline Comments in EL01-47
## 3025 Enron Pipeline Comments in EL01-47
## 3026 Enron Pipeline Comments in EL01-47
## 3027 Enron Pipeline Comments in EL01-47
## 3028 Enron Pipeline Comments in EL01-47
## 3029 Enron Pipeline Comments in EL01-47
## 3030 Enron Pipeline Comments in EL01-47
## 3031 Enron Pipeline Comments in EL01-47
## 3032 Enron Pipeline Comments in EL01-47
## 3033 Enron Pipeline Comments in EL01-47
## 3034 Enron Pipeline Comments in EL01-47
## 3035 Enron Pipeline Comments in EL01-47
## 3036 Enron Pipeline Comments in EL01-47
## 3037 Enron Pipeline Comments in EL01-47
## 3038 Enron Pipeline Comments in EL01-47
## 3039 Summary of CA CPUC Meeting 4-3-01 -- CPA Method Voted Out -- Other Decisions Held
## 3040 Summary of CA CPUC Meeting 4-3-01 -- CPA Method Voted Out -- Other Decisions Held
## 3041 Summary of CA CPUC Meeting 4-3-01 -- CPA Method Voted Out -- Other Decisions Held
## 3042 Summary of CA CPUC Meeting 4-3-01 -- CPA Method Voted Out -- Other Decisions Held
## 3043 Summary of CA CPUC Meeting 4-3-01 -- CPA Method Voted Out -- Other Decisions Held
## 3044 Summary of CA CPUC Meeting 4-3-01 -- CPA Method Voted Out -- Other Decisions Held
## 3045 Summary of CA CPUC Meeting 4-3-01 -- CPA Method Voted Out -- Other Decisions Held
## 3046 Summary of CA CPUC Meeting 4-3-01 -- CPA Method Voted Out -- Other Decisions Held
## 3047 EES Position at the customer/utility level - April 2001
## 3048 EES Position at the customer/utility level - April 2001
## 3049 EES Position at the customer/utility level - April 2001
## 3050 Davis on "primetime" Today
## 3051 Davis on "primetime" Today
## 3052 Davis on "primetime" Today
## 3053 Davis on "primetime" Today
## 3054 Davis on "primetime" Today
## 3055 Davis on "primetime" Today
## 3056 Davis on "primetime" Today
## 3057 Davis on "primetime" Today
## 3058 Davis Announcement may be about New Public Power Agency
## 3059 Davis Announcement may be about New Public Power Agency
## 3060 Davis Announcement may be about New Public Power Agency
## 3061 Davis Announcement may be about New Public Power Agency
## 3062 Davis Announcement may be about New Public Power Agency
## 3063 Davis Announcement may be about New Public Power Agency
## 3064 Davis Announcement may be about New Public Power Agency
## 3065 Davis Announcement may be about New Public Power Agency
## 3066 FW: Proposed Windfall Profit Tax
## 3067 FW: Proposed Windfall Profit Tax
## 3068 FW: Proposed Windfall Profit Tax
## 3069 FW: Proposed Windfall Profit Tax
## 3070 FW: Proposed Windfall Profit Tax
## 3071 FW: Proposed Windfall Profit Tax
## 3072 FW: Proposed Windfall Profit Tax
## 3073 FW: Proposed Windfall Profit Tax
## 3074 CA Can t Require Gen to Stay In State As Condition of Permit
## 3075 CA Can t Require Gen to Stay In State As Condition of Permit
## 3076 CA Can t Require Gen to Stay In State As Condition of Permit
## 3077 CA Can t Require Gen to Stay In State As Condition of Permit
## 3078 CA Can t Require Gen to Stay In State As Condition of Permit
## 3079 CA Can t Require Gen to Stay In State As Condition of Permit
## 3080 CA Can t Require Gen to Stay In State As Condition of Permit
## 3081 CA Can t Require Gen to Stay In State As Condition of Permit
## 3082 Dan Walters: Politicians seek shelter as energy Armageddon looms
## 3083 Dan Walters: Politicians seek shelter as energy Armageddon looms
## 3084 Dan Walters: Politicians seek shelter as energy Armageddon looms
## 3085 Dan Walters: Politicians seek shelter as energy Armageddon looms
## 3086 Dan Walters: Politicians seek shelter as energy Armageddon looms
## 3087 Dan Walters: Politicians seek shelter as energy Armageddon looms
## 3088 Dan Walters: Politicians seek shelter as energy Armageddon looms
## 3089 Dan Walters: Politicians seek shelter as energy Armageddon looms
## 3090 Update on Senate Windfall Profits tax lang. -- from IEP
## 3091 Update on Senate Windfall Profits tax lang. -- from IEP
## 3092 Update on Senate Windfall Profits tax lang. -- from IEP
## 3093 Update on Senate Windfall Profits tax lang. -- from IEP
## 3094 Update on Senate Windfall Profits tax lang. -- from IEP
## 3095 Update on Senate Windfall Profits tax lang. -- from IEP
## 3096 Update on Senate Windfall Profits tax lang. -- from IEP
## 3097 Update on Senate Windfall Profits tax lang. -- from IEP
## 3098 RCR Meeting (Time Change for Monday, April 9)
## 3099 RCR Meeting (Time Change for Monday, April 9)
## 3100 RCR Meeting (Time Change for Monday, April 9)
## 3101 RCR Meeting (Time Change for Monday, April 9)
## 3102 Davis makes statement in support of DA -- Understands State is Short of Power
## 3103 Davis makes statement in support of DA -- Understands State is Short of Power
## 3104 Davis makes statement in support of DA -- Understands State is Short of Power
## 3105 Davis makes statement in support of DA -- Understands State is Short of Power
## 3106 Davis makes statement in support of DA -- Understands State is Short of Power
## 3107 Davis makes statement in support of DA -- Understands State is Short of Power
## 3108 Davis makes statement in support of DA -- Understands State is Short of Power
## 3109 Davis makes statement in support of DA -- Understands State is Short of Power
## 3110 Re: Davis makes statement in support of DA -- Understands State is Short of Power
## 3111 Re: Davis makes statement in support of DA -- Understands State is Short of Power
## 3112 Re: Davis makes statement in support of DA -- Understands State is Short of Power
## 3113 Re: Davis makes statement in support of DA -- Understands State is Short of Power
## 3114 Re: Davis makes statement in support of DA -- Understands State is Short of Power
## 3115 Re: Davis makes statement in support of DA -- Understands State is Short of Power
## 3116 Re: Davis makes statement in support of DA -- Understands State is Short of Power
## 3117 Re: Davis makes statement in support of DA -- Understands State is Short of Power
## 3118 Re: Davis makes statement in support of DA -- Understands State is Short of Power
## 3119 Re: Davis makes statement in support of DA -- Understands State is Short of Power
## 3120 Re: Davis makes statement in support of DA -- Understands State is Short of Power
## 3121 Re: Davis makes statement in support of DA -- Understands State is Short of Power
## 3122 Re: Davis makes statement in support of DA -- Understands State is Short of Power
## 3123 Re: Davis makes statement in support of DA -- Understands State is Short of Power
## 3124 Re: EPSA request for technical conference on seams issues
## 3125 Re: EPSA request for technical conference on seams issues
## 3126 Gov. Davis is expected to deliver a five-minute speech to Californians Thursday night
## 3127 Gov. Davis is expected to deliver a five-minute speech to Californians Thursday night
## 3128 Gov. Davis is expected to deliver a five-minute speech to Californians Thursday night
## 3129 Gov. Davis is expected to deliver a five-minute speech to Californians Thursday night
## 3130 Gov. Davis is expected to deliver a five-minute speech to Californians Thursday night
## 3131 Gov. Davis is expected to deliver a five-minute speech to Californians Thursday night
## 3132 Gov. Davis is expected to deliver a five-minute speech to Californians Thursday night
## 3133 Gov. Davis is expected to deliver a five-minute speech to Californians Thursday night
## 3134 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3135 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3136 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3137 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3138 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3139 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3140 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3141 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3142 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3143 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3144 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3145 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3146 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3147 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3148 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3149 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3150 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3151 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3152 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3153 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3154 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3155 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3156 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3157 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3158 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3159 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3160 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3161 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3162 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3163 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3164 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3165 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3166 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3167 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3168 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3169 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3170 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3171 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3172 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3173 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3174 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3175 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3176 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3177 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3178 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3179 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3180 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3181 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3182 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3183 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3184 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3185 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3186 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3187 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3188 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3189 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3190 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3191 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3192 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3193 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3194 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3195 Agenda for 4.9.01 Call at 10:30 Houston Time
## 3196 Travel Costs Control
## 3197 Travel Costs Control
## 3198 Travel Costs Control
## 3199 Travel Costs Control
## 3200 Governor to announce deal with Edison
## 3201 Governor to announce deal with Edison
## 3202 Governor to announce deal with Edison
## 3203 Governor to announce deal with Edison
## 3204 Governor to announce deal with Edison
## 3205 Governor to announce deal with Edison
## 3206 Governor to announce deal with Edison
## 3207 Governor to announce deal with Edison
## 3208 IT resources - databases and websites
## 3209 IT resources - databases and websites
## 3210 IT resources - databases and websites
## 3211 IT resources - databases and websites
## 3212 Re: The production schedule to update and review the largest 50 curves.
## 3213 Re: The production schedule to update and review the largest 50 curves.
## 3214 Re: The production schedule to update and review the largest 50 curves.
## 3215 Re: The production schedule to update and review the largest 50 curves.
## 3216 RCR Meeting
## 3217 RCR Meeting
## 3218 RCR Meeting
## 3219 RCR Meeting
## 3220 CAISO Notice: Market Notice re: Credit Issues
## 3221 Re: The production schedule to update and review the largest 50 curves.
## 3222 Re: The production schedule to update and review the largest 50 curves.
## 3223 Re: The production schedule to update and review the largest 50 curves.
## 3224 Re: The production schedule to update and review the largest 50 curves.
## 3225 Re: The production schedule to update and review the largest 50 curves.
## 3226 Re: The production schedule to update and review the largest 50 curves.
## 3227 Re: The production schedule to update and review the largest 50 curves.
## 3228 Re: The production schedule to update and review the largest 50 curves.
## 3229 FW: SENATORS CALL FOR GAO INVESTIGATION INTO EFFECTIVENESS OF FEDERAL\t ENERGY REGULATION
## 3230 FW: SENATORS CALL FOR GAO INVESTIGATION INTO EFFECTIVENESS OF FEDERAL\t ENERGY REGULATION
## 3231 FW: SENATORS CALL FOR GAO INVESTIGATION INTO EFFECTIVENESS OF FEDERAL\t ENERGY REGULATION
## 3232 FW: SENATORS CALL FOR GAO INVESTIGATION INTO EFFECTIVENESS OF FEDERAL\t ENERGY REGULATION
## 3233 FW: SENATORS CALL FOR GAO INVESTIGATION INTO EFFECTIVENESS OF FEDERAL\t ENERGY REGULATION
## 3234 FW: SENATORS CALL FOR GAO INVESTIGATION INTO EFFECTIVENESS OF FEDERAL\t ENERGY REGULATION
## 3235 FW: SENATORS CALL FOR GAO INVESTIGATION INTO EFFECTIVENESS OF FEDERAL\t ENERGY REGULATION
## 3236 FW: SENATORS CALL FOR GAO INVESTIGATION INTO EFFECTIVENESS OF FEDERAL\t ENERGY REGULATION
## 3237 Entities that do not need FERC power marketing authorization
## 3238 Entities that do not need FERC power marketing authorization
## 3239 Entities that do not need FERC power marketing authorization
## 3240 Entities that do not need FERC power marketing authorization
## 3241 Entities that do not need FERC power marketing authorization
## 3242 Entities that do not need FERC power marketing authorization
## 3243 Entities that do not need FERC power marketing authorization
## 3244 Entities that do not need FERC power marketing authorization
## 3245 Fwd: Californians for Renewable Energy, Inc. (CARE) v. BC\tHydro, et al., EL01-65
## 3246 Fwd: Californians for Renewable Energy, Inc. (CARE) v. BC\tHydro, et al., EL01-65
## 3247 Fwd: Californians for Renewable Energy, Inc. (CARE) v. BC\tHydro, et al., EL01-65
## 3248 Fwd: Californians for Renewable Energy, Inc. (CARE) v. BC\tHydro, et al., EL01-65
## 3249 Fwd: Californians for Renewable Energy, Inc. (CARE) v. BC\tHydro, et al., EL01-65
## 3250 Fwd: Californians for Renewable Energy, Inc. (CARE) v. BC\tHydro, et al., EL01-65
## 3251 Fwd: Californians for Renewable Energy, Inc. (CARE) v. BC\tHydro, et al., EL01-65
## 3252 Fwd: Californians for Renewable Energy, Inc. (CARE) v. BC\tHydro, et al., EL01-65
## 3253 Ninth Circuit Upholds FERC Actions as Reasonable in CA MArket 4-18-01
## 3254 Ninth Circuit Upholds FERC Actions as Reasonable in CA MArket 4-18-01
## 3255 Ninth Circuit Upholds FERC Actions as Reasonable in CA MArket 4-18-01
## 3256 Ninth Circuit Upholds FERC Actions as Reasonable in CA MArket 4-18-01
## 3257 Ninth Circuit Upholds FERC Actions as Reasonable in CA MArket 4-18-01
## 3258 Ninth Circuit Upholds FERC Actions as Reasonable in CA MArket 4-18-01
## 3259 Ninth Circuit Upholds FERC Actions as Reasonable in CA MArket 4-18-01
## 3260 Ninth Circuit Upholds FERC Actions as Reasonable in CA MArket 4-18-01
## 3261 ATTORNEY GENERAL DEMANDS RELIANTAND MIRANT ENERGY RECORDS FOR PROBE OF POSSIBLE PRICE-GOUGING, ANTI-COMPETITIVE BEHAVIOR AFFECTING ELECTRICITY PRICES
## 3262 ATTORNEY GENERAL DEMANDS RELIANTAND MIRANT ENERGY RECORDS FOR PROBE OF POSSIBLE PRICE-GOUGING, ANTI-COMPETITIVE BEHAVIOR AFFECTING ELECTRICITY PRICES
## 3263 ATTORNEY GENERAL DEMANDS RELIANTAND MIRANT ENERGY RECORDS FOR PROBE OF POSSIBLE PRICE-GOUGING, ANTI-COMPETITIVE BEHAVIOR AFFECTING ELECTRICITY PRICES
## 3264 ATTORNEY GENERAL DEMANDS RELIANTAND MIRANT ENERGY RECORDS FOR PROBE OF POSSIBLE PRICE-GOUGING, ANTI-COMPETITIVE BEHAVIOR AFFECTING ELECTRICITY PRICES
## 3265 ATTORNEY GENERAL DEMANDS RELIANTAND MIRANT ENERGY RECORDS FOR PROBE OF POSSIBLE PRICE-GOUGING, ANTI-COMPETITIVE BEHAVIOR AFFECTING ELECTRICITY PRICES
## 3266 ATTORNEY GENERAL DEMANDS RELIANTAND MIRANT ENERGY RECORDS FOR PROBE OF POSSIBLE PRICE-GOUGING, ANTI-COMPETITIVE BEHAVIOR AFFECTING ELECTRICITY PRICES
## 3267 ATTORNEY GENERAL DEMANDS RELIANTAND MIRANT ENERGY RECORDS FOR PROBE OF POSSIBLE PRICE-GOUGING, ANTI-COMPETITIVE BEHAVIOR AFFECTING ELECTRICITY PRICES
## 3268 ATTORNEY GENERAL DEMANDS RELIANTAND MIRANT ENERGY RECORDS FOR PROBE OF POSSIBLE PRICE-GOUGING, ANTI-COMPETITIVE BEHAVIOR AFFECTING ELECTRICITY PRICES
## 3269 Monday RTO conference call cancelled
## 3270 White Paper on Why Price Caps are Bad
## 3271 White Paper on Why Price Caps are Bad
## 3272 White Paper on Why Price Caps are Bad
## 3273 White Paper on Why Price Caps are Bad
## 3274 DO NOT DISTRIBUTE!!! White Paper on Why Price Caps are Bad
## 3275 DO NOT DISTRIBUTE!!! White Paper on Why Price Caps are Bad
## 3276 DO NOT DISTRIBUTE!!! White Paper on Why Price Caps are Bad
## 3277 DO NOT DISTRIBUTE!!! White Paper on Why Price Caps are Bad
## 3278 DO NOT DISTRIBUTE!!! White Paper on Why Price Caps are Bad
## 3279 DO NOT DISTRIBUTE!!! White Paper on Why Price Caps are Bad
## 3280 DO NOT DISTRIBUTE!!! White Paper on Why Price Caps are Bad
## 3281 DO NOT DISTRIBUTE!!! White Paper on Why Price Caps are Bad
## 3282 2001 Budget - Update/Hiring Committee Formation
## 3283 2001 Budget - Update/Hiring Committee Formation
## 3284 2001 Budget - Update/Hiring Committee Formation
## 3285 2001 Budget - Update/Hiring Committee Formation
## 3286 Final Price Caps
## 3287 Final Price Caps
## 3288 Final Price Caps
## 3289 Final Price Caps
## 3290 EES Position at the customer/utility level - May 2001
## 3291 EES Position at the customer/utility level - May 2001
## 3292 EES Position at the customer/utility level - May 2001
## 3293 EES Position at the customer/utility level - May 2001
## 3294 EES Position at the customer/utility level - May 2001
## 3295 SPP REHEARING
## 3296 SPP REHEARING
## 3297 SPP REHEARING
## 3298 Summary of SB 1x hearing 4-30 -- Windfall Profits Tax
## 3299 Summary of SB 1x hearing 4-30 -- Windfall Profits Tax
## 3300 Summary of SB 1x hearing 4-30 -- Windfall Profits Tax
## 3301 Summary of SB 1x hearing 4-30 -- Windfall Profits Tax
## 3302 Summary of SB 1x hearing 4-30 -- Windfall Profits Tax
## 3303 Summary of SB 1x hearing 4-30 -- Windfall Profits Tax
## 3304 Summary of SB 1x hearing 4-30 -- Windfall Profits Tax
## 3305 Summary of SB 1x hearing 4-30 -- Windfall Profits Tax
## 3306 NYTimes.com Article: Power Concern Offers California a Secret Deal
## 3307 NYTimes.com Article: Power Concern Offers California a Secret Deal
## 3308 NYTimes.com Article: Power Concern Offers California a Secret Deal
## 3309 NYTimes.com Article: Power Concern Offers California a Secret Deal
## 3310 NYTimes.com Article: Power Concern Offers California a Secret Deal
## 3311 NYTimes.com Article: Power Concern Offers California a Secret Deal
## 3312 NYTimes.com Article: Power Concern Offers California a Secret Deal
## 3313 NYTimes.com Article: Power Concern Offers California a Secret Deal
## 3314 Corbett Press Conference on Windfall Profits Tax
## 3315 Corbett Press Conference on Windfall Profits Tax
## 3316 Corbett Press Conference on Windfall Profits Tax
## 3317 Corbett Press Conference on Windfall Profits Tax
## 3318 Corbett Press Conference on Windfall Profits Tax
## 3319 Corbett Press Conference on Windfall Profits Tax
## 3320 Corbett Press Conference on Windfall Profits Tax
## 3321 Corbett Press Conference on Windfall Profits Tax
## 3322 Do you use Dow Jones Interactive?
## 3323 Do you use Dow Jones Interactive?
## 3324 Do you use Dow Jones Interactive?
## 3325 Do you use Dow Jones Interactive?
## 3326 Do you use Dow Jones Interactive?
## 3327 Do you use Dow Jones Interactive?
## 3328 Do you use Dow Jones Interactive?
## 3329 Do you use Dow Jones Interactive?
## 3330 Do you use Dow Jones Interactive?
## 3331 PEP Deadline Moved Back
## 3332 PEP Deadline Moved Back
## 3333 PEP Deadline Moved Back
## 3334 PEP Deadline Moved Back
## 3335 Utility Risk Management Position as of June 2001
## 3336 Utility Risk Management Position as of June 2001
## 3337 Utility Risk Management Position as of June 2001
## 3338 Utility Risk Management Position as of June 2001
## 3339 Utility Risk Management Position as of June 2001
## 3340 Special Bulletin -- Mark Palmer quoted on Dow Jones Newswire
## 3341 Special Bulletin -- Mark Palmer quoted on Dow Jones Newswire
## 3342 Special Bulletin -- Mark Palmer quoted on Dow Jones Newswire
## 3343 Special Bulletin -- Mark Palmer quoted on Dow Jones Newswire
## 3344 Special Bulletin -- Mark Palmer quoted on Dow Jones Newswire
## 3345 2002 Plan Template - Revsion #4
## 3346 FW: Revised Allocations from ENA to BUs - 2002 Plan
## 3347 RE: MMF allocations
## 3348 MMF allocations
## 3349 Global Employee Services Group - 2002 Plan Assumption
## 3350 2002 Corporate Allocations - Revision #1
## 3351 2002 Corporate Assessments - PRELIMINARY
## 3352 Key Dates for 2002-2004 Plan - REVISED
## 3353 2002 Benefit Rates and Analyst/Associate Charges
## 3354 Capital Charge
## 3355 REVISED-Capital Charge and Revised Plan Template
## 3356 Capital Charge
## 3357 Capital Charge Update
## 3358 EOTT Capitalization Plan
## 3359 EOTT Analysis
## 3360 EOTT Analysis
## 3361 NFL Gain/Loss Analysis
## 3362 NFL Gain/Loss Analysis
## 3363 Final script for EOTT Conference Call
## 3364 Final script for EOTT Conference Call
## 3365 Final script for EOTT Conference Call
## 3366 EOTT Energy Partners L.P. Fourth Quarter Earnings Conference Call
## 3367 Reserve Reversals
## 3368 Revised: NNG/TW Functional Income Statements - Original Plan
## 3369 FW: Rate Case Request
## 3370 Updated 2002 Corporate Assessments - Revision #3
## 3371 Steele 2002 Forecast For 1N9
## 3372 FW: Trailblazer Plan Revenues - 2002/2003
## 3373 ETS 2002 Service Award Estimates
## 3374 Goodwill Presentation and Exposure Draft - FYI
## 3375 Goodwill Presentation and Exposure Draft - FYI
## 3376 Goodwill Presentation and Exposure Draft - FYI
## 3377 Goodwill Presentation and Exposure Draft - FYI
## 3378 Goodwill Presentation and Exposure Draft - FYI
## 3379 Goodwill Presentation and Exposure Draft - FYI
## 3380 Goodwill Presentation and Exposure Draft - FYI
## 3381 Goodwill Presentation and Exposure Draft - FYI
## 3382 Goodwill Presentation and Exposure Draft - FYI
## 3383 Goodwill Presentation and Exposure Draft - FYI
## 3384 Goodwill Presentation and Exposure Draft - FYI
## 3385 Goodwill Presentation and Exposure Draft - FYI
## 3386 RE: JOB FUNCTION LIST
## 3387 RE: JOB FUNCTION LIST
## 3388 RE: JOB FUNCTION LIST
## 3389 RE: JOB FUNCTION LIST
## 3390 RE: JOB FUNCTION LIST
## 3391 RE: JOB FUNCTION LIST
## 3392 NGTI Compensation Survey
## 3393 RE: Pre-Tax Return
## 3394 RE: Pre-Tax Return
## 3395 RE: Pre-Tax Return
## 3396 RE: Pre-Tax Return
## 3397 RE: Pre-Tax Return
## 3398 RE: Pre-Tax Return
## 3399 RE: Pre-Tax Return
## 3400 RE: Pre-Tax Return
## 3401 RE: Pre-Tax Return
## 3402 RE: Pre-Tax Return
## 3403 RE: Pre-Tax Return
## 3404 RE: Pre-Tax Return
## 3405 RE: Pre-Tax Return
## 3406 RE: Pre-Tax Return
## 3407 RE: Pre-Tax Return
## 3408 Adjusted Final Gross Bonus Spending by Company
## 3409 FW: Deal Summary with ECOutlook
## 3410
## 3411
## 3412 EPSC April Invoice
## 3413 EPSC MAy Invoice
## 3414 RE:
## 3415 RE: Lunch
## 3416 You Notes Mail Database Has Been Moved
## 3417 Verifying Locker Assignments
## 3418 FW: O&M Analysis - Years 1996, 1997, 1998, 1999 and 2000
## 3419 RE: Transwestern Pipeline [TWP] (La Plata) Colorado Sales & Use Tax Audit - Summary and Status
## 3420 RE: Transwestern Pipeline [TWP] (La Plata) Colorado Sales & Use Tax Audit - Summary and Status
## 3421 Southern Trails letter of interest
## 3422 Southern Trails letter of interest
## 3423 Southern Trails letter of interest
## 3424 Southern Trails letter of interest
## 3425 Southern Trails letter of interest
## 3426 FW: Trans Pecos
## 3427 FW: Trans Pecos
## 3428 FW: Trans Pecos
## 3429 FW: Measurement Weekly
## 3430 TW March 01 reserves.
## 3431 TW March 01 reserves.
## 3432 Azurix 1st CE
## 3433 FW: Transwestern Linepack
## 3434 FW: Transwestern Linepack
## 3435 Re: Transwestern Linepack
## 3436 Re: Transwestern Linepack
## 3437 Presentation
## 3438 Presentation
## 3439 Presentation
## 3440 Revised Reserves for TW Negotiated Rate Deals for 1Q 2001 & April
## 3441 FW: Board Presentation
## 3442 FW: TW presentation
## 3443 FW: TW presentation
## 3444 FW: TW presentation
## 3445 FW: TW presentation
## 3446 FW: TW presentation
## 3447 Revised Summary of Q1 Negotiated Rate Deals
## 3448 Revised Summary of Q1 Negotiated Rate Deals
## 3449 Revised TW Weekly for April 13
## 3450 FW: ENE 10Q
## 3451 FW: TW Capacity--drag reducer
## 3452 RE: TW-Speculative Deals Jan Revenue
## 3453 TW Weekly for March 30, 2001
## 3454 TW Weekly for March 30, 2001
## 3455 TW Weekly for March 30, 2001
## 3456 TW Weekly for March 30, 2001
## 3457 TW Weekly for March 30, 2001
## 3458 TW Weekly for March 30, 2001
## 3459 TW Weekly for March 30, 2001
## 3460 Weekly Bullets
## 3461 TW 2000 Customers
## 3462 TW 2000 Customers
## 3463 FW: March 9, 2000 Weekly, Qtr 1 Forecast
## 3464 FYI: TW Expansion Overhead Rate
## 3465 FYI: TW Expansion Overhead Rate
## 3466 FYI: TW Expansion Overhead Rate
## 3467 RE: EAMR Interconnect and Measurement Services
## 3468 RE: EAMR Interconnect and Measurement Services
## 3469 RE: EAMR Interconnect and Measurement Services
## 3470 RE: EAMR Interconnect and Measurement Services
## 3471 RE: EAMR Interconnect and Measurement Services
## 3472 RE: EAMR Interconnect and Measurement Services
## 3473 RE: EAMR Interconnect and Measurement Services
## 3474 RE: EAMR Interconnect and Measurement Services
## 3475 RE: EAMR Interconnect and Measurement Services
## 3476 RE: EAMR Interconnect and Measurement Services
## 3477 RE: EAMR Interconnect and Measurement Services
## 3478 RE: EAMR Interconnect and Measurement Services
## 3479 RE: EAMR Interconnect and Measurement Services
## 3480 RE: EAMR Interconnect and Measurement Services
## 3481 TW Weekly For February, 2001
## 3482 TW Weekly For February, 2001
## 3483 TW Weekly For February, 2001
## 3484 TW Weekly For February, 2001
## 3485 TW Weekly For February, 2001
## 3486 TW Weekly For February, 2001
## 3487 TW Weekly For February, 2001
## 3488 Certificate Status Report
## 3489 TW Weekly for week ending February 23, 2001
## 3490 TW Weekly for week ending February 23, 2001
## 3491 TW Weekly for week ending February 23, 2001
## 3492 TW Weekly for week ending February 23, 2001
## 3493 TW Weekly for week ending February 23, 2001
## 3494 TW Weekly for week ending February 23, 2001
## 3495 TW Weekly for week ending February 23, 2001
## 3496 ETS Group - New Formation
## 3497 ETS Group - New Formation
## 3498 TW Weekly 2/16/01
## 3499 TW Weekly 2/16/01
## 3500 TW Weekly 2/16/01
## 3501 TW Weekly 2/16/01
## 3502 TW Weekly 2/16/01
## 3503 TW Weekly 2/16/01
## 3504 TW Weekly 2/16/01
## 3505 TW Weekly-Feb, 9,2001
## 3506 TW Weekly-Feb, 9,2001
## 3507 TW Weekly-Feb, 9,2001
## 3508 TW Weekly-Feb, 9,2001
## 3509 TW Weekly-Feb, 9,2001
## 3510 TW Weekly-Feb, 9,2001
## 3511 TW Weekly-Feb, 9,2001
## 3512 TW Weekly 1/31/01
## 3513 TW Weekly 1/31/01
## 3514 TW Weekly 1/31/01
## 3515 TW Weekly 1/31/01
## 3516 TW Weekly 1/31/01
## 3517 TW Weekly 1/31/01
## 3518 TW Weekly 1/31/01
## 3519 Cash needs
## 3520 RE: Five Day Rolling Forecast
## 3521 RE: Five Day Rolling Forecast
## 3522 RE: NNG/Dynegy Due Diligence
## 3523 RE: NNG/Dynegy Due Diligence
## 3524 RE: NNG/Dynegy Due Diligence
## 3525 RE: NNG/Dynegy Due Diligence
## 3526 RE: NNG/Dynegy Due Diligence
## 3527 RE: NNG/Dynegy Due Diligence
## 3528 RE: NNG/Dynegy Due Diligence
## 3529 RE: NNG/Dynegy Due Diligence
## 3530 RE: NNG/Dynegy Due Diligence
## 3531 RE: NNG/Dynegy Due Diligence
## 3532 RE: NNG/Dynegy Due Diligence
## 3533 Property User Group Meeting
## 3534 RE: Data Room
## 3535 RE: Data Room
## 3536 RE: Data Room
## 3537 RE: Data Room
## 3538 RE: Data Room
## 3539 RE: Data Room
## 3540 RE: Data Room
## 3541 RE: Data Room
## 3542 RE: Data Room
## 3543 Fw: Data Room
## 3544 Fw: Data Room
## 3545 Fw: Data Room
## 3546 Fw: Data Room
## 3547 Fw: Data Room
## 3548 Fw: Data Room
## 3549 Fw: Data Room
## 3550 Fw: Data Room
## 3551 RE: TW imbal revaluation
## 3552 Omaha
## 3553 TW imbal revaluation
## 3554 Property User Group Meeting
## 3555 S. Gilbert availability
## 3556 S. Gilbert availability
## 3557 Fw: CAPEX
## 3558 Questions for the meeting @ 2:30
## 3559
## 3560 RE: NNG revenue backup
## 3561 RE: NNG revenue backup
## 3562 RE: NNG revenue backup
## 3563 RE: NNG revenue backup
## 3564 RE: NNG revenue backup
## 3565 NNG revenue backup
## 3566 NNG revenue backup
## 3567 RE: Capital for TW
## 3568 RE: NNG & TW Direct Cash Flow Estimate (11/27 -11/30)
## 3569 FW: Cash Forecasting
## 3570 FW: Cash Forecasting
## 3571 FW: Cash Forecasting
## 3572 TW Weekly for November 30, 2001
## 3573 NNG & TW Direct Cash Flow Estimate (11/27 -11/30)
## 3574 NNG & TW Direct Cash Flow Estimate (11/27 -11/30)
## 3575 FW: NNG DUE DILLIGENCE REQUEST MEETING
## 3576 FW: NNG DUE DILLIGENCE REQUEST MEETING
## 3577 Agave I/C
## 3578 Agave I/C
## 3579 Capacity Subscription Strategy
## 3580 Capacity Subscription Strategy
## 3581 Capacity Subscription Strategy
## 3582 RE: pipelines 97- 00
## 3583 RE: pipelines 97- 00
## 3584 RE: Adaytum Status 11-20-01
## 3585 RE: Adaytum Status 11-20-01
## 3586 RE:
## 3587 FW: Cost Center
## 3588 FW: TW Plan and Forecast revenue backup
## 3589 FW: TW Plan and Forecast revenue backup
## 3590 FW: TW Plan and Forecast revenue backup
## 3591 Update on NBP s Progress with Adaytum
## 3592 RE: TW Plan and Forecast revenue backup
## 3593 RE: TW Plan and Forecast revenue backup
## 3594 RE: TW Plan and Forecast revenue backup
## 3595 O&M Estimates
## 3596 O&M Estimates
## 3597 FW: HSR info needed
## 3598 RE:
## 3599 RE: Expansion Fuel Analysis
## 3600 RE: Expansion Fuel Analysis
## 3601 RE: Expansion Fuel Analysis
## 3602 FW: Slides for Stan
## 3603 Cal Throughput.xls
## 3604 Cal Throughput.xls
## 3605 Cal Throughput.xls
## 3606 Cal Throughput.xls
## 3607 Cal Throughput.xls
## 3608 WSCC Power AZNMNV.xls
## 3609 WSCC Power AZNMNV.xls
## 3610 WSCC Power AZNMNV.xls
## 3611 WSCC Power AZNMNV.xls
## 3612 RE: Expansion Fuel Analysis
## 3613 RE: Expansion Fuel Analysis
## 3614 RE: Expansion Fuel Analysis
## 3615 FW: Red Rock additions
## 3616 Expansion Fuel Analysis
## 3617 Expansion Fuel Analysis
## 3618 Expansion Fuel Analysis
## 3619 California Proposed Projects
## 3620 California Proposed Projects
## 3621 California Proposed Projects
## 3622 California Proposed Projects
## 3623 FW: <<Concur Expense Document>> - Tracy Geaccone
## 3624 Property User Group Meeting
## 3625 FW: TW Available Capacity for 2002
## 3626 FW: TW Available Capacity for 2002
## 3627 FW: TW Available Capacity for 2002
## 3628 FW: Activity Rates for 2002
## 3629 FW: Radical Shift in Western Power and Gas Market Dynamics - CERA Monthly Briefing
## 3630 FW: Radical Shift in Western Power and Gas Market Dynamics - CERA Monthly Briefing
## 3631 #4 - files you requested
## 3632 #4 - files you requested
## 3633 #3 - files you requested
## 3634 #3 - files you requested
## 3635 files you requested
## 3636 files you requested
## 3637 FW: Consultant s view on gas transmission into California
## 3638 FW: Consultant s view on gas transmission into California
## 3639 FW: Consultant s view on gas transmission into California
## 3640 FW: Consultant s view on gas transmission into California
## 3641 FW: Consultant s view on gas transmission into California
## 3642 FW: Consultant s view on gas transmission into California
## 3643 FW: Consultant s view on gas transmission into California
## 3644 FW: Consultant s view on gas transmission into California
## 3645 FW: Consultant s view on gas transmission into California
## 3646 FW: Consultant s view on gas transmission into California
## 3647 FW: Consultant s view on gas transmission into California
## 3648 FW: Consultant s view on gas transmission into California
## 3649 FW: Consultant s view on gas transmission into California
## 3650 FW: Consultant s view on gas transmission into California
## 3651 FW: Consultant s view on gas transmission into California
## 3652 TW Forecast
## 3653 TW Forecast
## 3654 FW: Personal Achievement Awards
## 3655 FW: Personal Achievement Awards
## 3656 FW: Personal Achievement Awards
## 3657 FW: Personal Achievement Awards
## 3658 FW: Personal Achievement Awards
## 3659 FW: Personal Achievement Awards
## 3660 FW: Personal Achievement Awards
## 3661 FW: Personal Achievement Awards
## 3662 FW: Personal Achievement Awards
## 3663 FW: Personal Achievement Awards
## 3664 FW: Personal Achievement Awards
## 3665 FW: Personal Achievement Awards
## 3666 FW: Summary of Covenants under Merger and Loan Documents
## 3667 FW: Summary of Covenants under Merger and Loan Documents
## 3668 FW: Summary of Covenants under Merger and Loan Documents
## 3669 FW: Summary of Covenants under Merger and Loan Documents
## 3670 FW: Summary of Covenants under Merger and Loan Documents
## 3671 FW: Summary of Covenants under Merger and Loan Documents
## 3672 FW: Summary of Covenants under Merger and Loan Documents
## 3673 FW: Summary of Covenants under Merger and Loan Documents
## 3674 FW: Summary of Covenants under Merger and Loan Documents
## 3675 FW: Summary of Covenants under Merger and Loan Documents
## 3676 FW: Summary of Covenants under Merger and Loan Documents
## 3677 FW: Summary of Covenants under Merger and Loan Documents
## 3678 C.014107 - Agave WT I/C
## 3679 RE:
## 3680 Keiser vacation plans
## 3681 Keiser vacation plans
## 3682 RE: Updated: Adaytum and Data Warehouse Data Flow (Development of Specs)
## 3683 RE: Updated: Adaytum and Data Warehouse Data Flow (Development of Specs)
## 3684 FW: Reminder: Whalley Budget Meeting - 11/20 @ 11:00 a.m. in EB32C2
## 3685
## 3686 FW: Weekly Report
## 3687
## 3688
## 3689
## 3690 FW: Daily Summary of Risk Data
## 3691 FW: Memo regarding Enron/Dynegy Agreement and Plan of Merger - Compliance with the Conduct of Business Covenants
## 3692 FW: Memo regarding Enron/Dynegy Agreement and Plan of Merger - Compliance with the Conduct of Business Covenants
## 3693 FW: Memo regarding Enron/Dynegy Agreement and Plan of Merger - Compliance with the Conduct of Business Covenants
## 3694 FW: Memo regarding Enron/Dynegy Agreement and Plan of Merger - Compliance with the Conduct of Business Covenants
## 3695 FW: Memo regarding Enron/Dynegy Agreement and Plan of Merger - Compliance with the Conduct of Business Covenants
## 3696 FW: Memo regarding Enron/Dynegy Agreement and Plan of Merger - Compliance with the Conduct of Business Covenants
## 3697 FW: Memo regarding Enron/Dynegy Agreement and Plan of Merger - Compliance with the Conduct of Business Covenants
## 3698 FW: Memo regarding Enron/Dynegy Agreement and Plan of Merger - Compliance with the Conduct of Business Covenants
## 3699 FW: Memo regarding Enron/Dynegy Agreement and Plan of Merger - Compliance with the Conduct of Business Covenants
## 3700 FW: Memo regarding Enron/Dynegy Agreement and Plan of Merger - Compliance with the Conduct of Business Covenants
## 3701 FW: Memo regarding Enron/Dynegy Agreement and Plan of Merger - Compliance with the Conduct of Business Covenants
## 3702 FW: Memo regarding Enron/Dynegy Agreement and Plan of Merger - Compliance with the Conduct of Business Covenants
## 3703 Re: Corp Request
## 3704 FW: Red Rock (Transwestern) Cashflow
## 3705 Revised Schedules
## 3706 Re: FW: Information Request
## 3707 Information Request
## 3708 RE: Information Request
## 3709 RE: Actual vs Plan 2002
## 3710 Corporate Request
## 3711 FW: Information Request
## 3712 Information Request
## 3713 Expense Analysis
## 3714 Operations Financial Planning - Holiday Coverage
## 3715 RE: Free Shipping & $1,300 in Savings
## 3716 RE: Fw: Undeliverable: Fw: Last schedule
## 3717 RE: Fw: Undeliverable: Fw: Last schedule
## 3718 RE: Fw: Undeliverable: Fw: Last schedule
## 3719 RE: Fw: Undeliverable: Fw: Last schedule
## 3720 RE: Fw: Undeliverable: Fw: Last schedule
## 3721 RE: Fw: Undeliverable: Fw: Last schedule
## 3722 RE: Fw: Undeliverable: Fw: Last schedule
## 3723 RE: Fw: Undeliverable: Fw: Last schedule
## 3724 RE: Fw: Undeliverable: Fw: Last schedule
## 3725 RE: Fw: Undeliverable: Fw: Last schedule
## 3726 4th Qtr Forecast, Expense Analysis, $224 Reserve
## 3727 G&A Function definitions
## 3728 RE: Fw: Undeliverable: Fw: Last schedule
## 3729 RE: Fw: Undeliverable: Fw: Last schedule
## 3730 RE: Fw: Undeliverable: Fw: Last schedule
## 3731 FW: Fw: Undeliverable: Fw: Last schedule
## 3732 FW: Fw: Undeliverable: Fw: Last schedule
## 3733 RE: pipelines 97- 00
## 3734 RE: pipelines 97- 00
## 3735 FW: pipelines 97- 00
## 3736 FW: pipelines 97- 00
## 3737 FW: pipelines 97- 00
## 3738 FW: pipelines 97- 00
## 3739 FW: pipelines 97- 00
## 3740 RE:
## 3741 FW: Global Assets Org Structure
## 3742 Request reply
## 3743 RE:
## 3744 Revised 3CE vs. Forecast Comparison
## 3745 3CE vs. Forecast Comparison
## 3746 FW: Set up FAR orders for EPSC billing
## 3747 EAP
## 3748 Fw: Gentle Reminder
## 3749 FW: Transwestern v. SoCal Gas
## 3750 FW: Transwestern v. SoCal Gas
## 3751 RE: Fw: Undeliverable: Fw: Last schedule
## 3752 RE: Fw: Undeliverable: Fw: Last schedule
## 3753 RE: Fw: Undeliverable: Fw: Last schedule
## 3754 NNG Functional Income Statement & O&M - 6th workday
## 3755 Bullets for Week of November 5th
## 3756 RE: Forecast for MGT
## 3757 RE: EPPI GPM Oneok agreement
## 3758 RE: EPPI GPM Oneok agreement
## 3759 RE: Operations Rebates
## 3760 RE: EPPI GPM Oneok agreement
## 3761 Coding Structure for Revolver Costs
## 3762 Coding Structure for Revolver Costs
## 3763 Forecast for MGT
## 3764 FERC Charges
## 3765 TW Weekly for November 9
## 3766 EGS Presentation
## 3767 Operations Rebates
## 3768 forecast update
## 3769 EPPI GPM Oneok agreement
## 3770 Final plan presentation
## 3771 RE: Are we to stop IT spending on equipment upgrades????
## 3772 RE: Are we to stop IT spending on equipment upgrades????
## 3773 RE: Are we to stop IT spending on equipment upgrades????
## 3774 RE: Are we to stop IT spending on equipment upgrades????
## 3775 RE: Are we to stop IT spending on equipment upgrades????
## 3776 RE: Are we to stop IT spending on equipment upgrades????
## 3777 RE: Are we to stop IT spending on equipment upgrades????
## 3778 RE: Are we to stop IT spending on equipment upgrades????
## 3779 RE: Are we to stop IT spending on equipment upgrades????
## 3780 RE: Are we to stop IT spending on equipment upgrades????
## 3781 RE: Are we to stop IT spending on equipment upgrades????
## 3782 RE: Are we to stop IT spending on equipment upgrades????
## 3783 RE: Are we to stop IT spending on equipment upgrades????
## 3784 RE: Are we to stop IT spending on equipment upgrades????
## 3785 RE: Are we to stop IT spending on equipment upgrades????
## 3786 RE: Are we to stop IT spending on equipment upgrades????
## 3787 RE: Are we to stop IT spending on equipment upgrades????
## 3788 RE: Are we to stop IT spending on equipment upgrades????
## 3789 RE: Are we to stop IT spending on equipment upgrades????
## 3790 RE: Are we to stop IT spending on equipment upgrades????
## 3791 RE: Are we to stop IT spending on equipment upgrades????
## 3792 RE: Are we to stop IT spending on equipment upgrades????
## 3793 RE: Are we to stop IT spending on equipment upgrades????
## 3794 RE: Are we to stop IT spending on equipment upgrades????
## 3795 RE: Are we to stop IT spending on equipment upgrades????
## 3796 RE: Are we to stop IT spending on equipment upgrades????
## 3797 RE: Are we to stop IT spending on equipment upgrades????
## 3798 RE: Are we to stop IT spending on equipment upgrades????
## 3799 RE: Are we to stop IT spending on equipment upgrades????
## 3800 RE: Are we to stop IT spending on equipment upgrades????
## 3801 RE: Are we to stop IT spending on equipment upgrades????
## 3802 Spreadsheet for Mtg this morning
## 3803 Spreadsheet for Mtg this morning
## 3804 Spreadsheet for Mtg this morning
## 3805 EEOS
## 3806 UPDATE - UH Recruiting Date Change!
## 3807 UPDATE - UH Recruiting Date Change!
## 3808 UPDATE - UH Recruiting Date Change!
## 3809 UPDATE - UH Recruiting Date Change!
## 3810 UPDATE - UH Recruiting Date Change!
## 3811 UPDATE - UH Recruiting Date Change!
## 3812 EREC 02 Plan Presentation
## 3813 PLEASE READ - UH Recruiting
## 3814 PLEASE READ - UH Recruiting
## 3815 PLEASE READ - UH Recruiting
## 3816 PLEASE READ - UH Recruiting
## 3817 PLEASE READ - UH Recruiting
## 3818 PLEASE READ - UH Recruiting
## 3819 RE: 2002 Presentation
## 3820 2002 Plan Review Presentation
## 3821 FW: More base gas questions
## 3822 FW: More base gas questions
## 3823 Slide for Lay Presentation
## 3824 RE: Pipeline investments
## 3825 Pipeline investments
## 3826 More base gas questions
## 3827 NNG Commercial 2002 Plan - Lay Presentation
## 3828 RE: Transwestern Fair Value
## 3829 RE: Transwestern Fair Value
## 3830 RE: Transwestern Fair Value
## 3831 RE: Transwestern Fair Value
## 3832 FW: Transwestern Fair Value
## 3833 FW: Transwestern Fair Value
## 3834 FW: Transwestern Fair Value
## 3835 FW: Transwestern Fair Value
## 3836 RE:
## 3837 RE: Transwestern Fair Value
## 3838 EEOS IBIT
## 3839 How are we doing and what are my issues meeting?
## 3840 How are we doing and what are my issues meeting?
## 3841 How are we doing and what are my issues meeting?
## 3842 Fw: Enron Wind Aviation
## 3843 RE: 2001 3CE and 2002 Plan
## 3844 RE: 2001 3CE and 2002 Plan
## 3845 RE: 2001 3CE and 2002 Plan
## 3846 NNG & TW 2001 Third Current Estimate - Earning Models
## 3847 NNG & TW 2001 Third Current Estimate - Balance Sheet Support for Regulatory Assets/Liabilities
## 3848 NNG & TW 2001 Third Current Estimate - Balance Sheet Support for Regulatory Assets/Liabilities
## 3849 FW: Estimates for 1/30/2002 payout
## 3850 REMINDER
## 3851 RE: Numbers
## 3852 NNG & TW 2002 Operating Plan - Earning (EM) and Indirect Cash Flow/Balance Sheet (CF) Models
## 3853 NNG & TW 2002 Operating Plan - Earning (EM) and Indirect Cash Flow/Balance Sheet (CF) Models
## 3854 Omaha - Certificate Status Report
## 3855 Omaha - Certificate Status Report
## 3856 Omaha - Certificate Status Report
## 3857 Omaha - Certificate Status Report
## 3858 Omaha - Certificate Status Report
## 3859 Omaha - Certificate Status Report
## 3860 Omaha - Certificate Status Report
## 3861 Omaha - Certificate Status Report
## 3862 Omaha - Certificate Status Report
## 3863 Final Slide
## 3864 RE: 2002 Plan Lay Presentation Run Through
## 3865 FW: Gas Logistics 2001 C.E. vs 2002 Plan
## 3866 EREC 2002 Plan Presentation
## 3867 Gas Logistics 2001 C.E. vs 2002 Plan
## 3868 IT 2001 C.E. vs 2002 Plan
## 3869 FW: progress report
## 3870
## 3871 FW: Q3 Earnings - PGG
## 3872 FW: California Receivables and FERC Proceedings
## 3873 FW: Azurix 3Q charge analysis
## 3874 AEL June Operating Reports
## 3875 RE: 2002 Plan Lay Presentation Run Through
## 3876 RE. Adaytum Update
## 3877 New Corp Dev Slides
## 3878 NEPCO BUSINESS REVIEW TUESDAY 10/30
## 3879 FW:
## 3880 FW:
## 3881 FW:
## 3882 4Q 2CE vs 3CE reconciliations
## 3883 RE: ETS - Investor Questions
## 3884 Re: FW: 2002 Plan Lay Presentation Run Through
## 3885 FW: Weekly Progress and Expense reports
## 3886 RE:
## 3887 2002 Plan - Business Development Slides
## 3888 2002 Plan - Business Development Slides
## 3889 weekly forecast to Corp
## 3890 FW: SAN JUAN IMBALANCE GAS ANALYSIS
## 3891 FW: SAN JUAN IMBALANCE GAS ANALYSIS
## 3892 FW: SAN JUAN IMBALANCE GAS ANALYSIS
## 3893 FW: Operating Cost Request
## 3894 Detail of Net Income
## 3895 RE: ETS - Investor Questions
## 3896 RE: ETS - Investor Questions
## 3897 FW: ETS - Investor Questions
## 3898 FW: ETS - Investor Questions
## 3899 FW: ETS - Investor Questions
## 3900 FW: ETS - Investor Questions
## 3901 FW: ETS - Investor Questions
## 3902 FW: ETS - Investor Questions
## 3903 NNG & TW 2002 Operating Plan - Income Statements, Debt Data, Balance Sheets and Cash Flows
## 3904 NNG & TW 2002 Operating Plan - Income Statements, Debt Data, Balance Sheets and Cash Flows
## 3905 RE:
## 3906 Schedules for the Lay Presentation
## 3907 Revision to Exposure Item# 4
## 3908 FW: 2002 Plan Allocations from ENA to Other Business Units
## 3909 RE: 2002 Plan Lay Presentation Run Through
## 3910 RE:
## 3911 Clean Fuels 2001 4th Qtr Fcst Net Income
## 3912 Re: FW: 2002 Plan Assessments as of 10/19/01 for EREC
## 3913 RE: 2002 Plan Allocations from ENA to Other Business Units
## 3914 Capital Expenditures Meeting
## 3915 Capital Expenditures Meeting
## 3916 Capital Expenditures Meeting
## 3917
## 3918 FW: Budget Meeting Schedule Changes
## 3919 FW: November Operational Storage Purchases
## 3920 FW: November Operational Storage Purchases
## 3921 FW: November Operational Storage Purchases
## 3922 FW: SoCalGas Complaint (Message from Greg Porter)
## 3923 FW: Acquisition Projects
## 3924 Updated: Thank you Luncheon
## 3925 Acquisition Projects
## 3926 FW: Business Review Updates
## 3927 EEOS 4Q Forecast
## 3928 RE: 2002 Plan Lay Presentation Run Through
## 3929 Re: 2002 Plan Lay Presentation Run Through
## 3930 RE: 4 Quarter Update
## 3931 Bullets for Week of October 15
## 3932 Re: 4 Quarter Update
## 3933 RE: 4 Quarter Update
## 3934 FW: EGAS 4th Qtr
## 3935 RE: 4 Quarter Update
## 3936 Oneok Claim on EPPI
## 3937 Oneok Claim on EPPI
## 3938 FW: 2002 Plan Lay Presentation Run Through
## 3939 RE: LaPlata DRA Application Cost Estimate
## 3940 FW: 2002 plan other operating expense details
## 3941 Weekly Information for Steve
## 3942 BUSINESS REVIEWS IN EUROPE END OF 1ST QUARTER, 2002
## 3943 FW: EGAS 4th Qtr
## 3944 EOTT Issue
## 3945 EOTT Issue
## 3946 EOTT Issue
## 3947 EOTT Issue
## 3948 EOTT Issue
## 3949 EOTT Issue
## 3950 EOTT Issue
## 3951 FW: How are we doing and what are my issues meeting?
## 3952 FW: How are we doing and what are my issues meeting?
## 3953 RE: How are we doing and what are my issues meeting?
## 3954 RE: How are we doing and what are my issues meeting?
## 3955 FW: AT&T TeleConference Confirmation - HOST Copy
## 3956 EGAS 4th Qtr
## 3957 EGAS 4th Qtr
## 3958 EGAS 4th Qtr
## 3959 EGAS 4th Qtr
## 3960 EREC Preliminary 2002 Plan
## 3961 EREC Preliminary 2002 Plan
## 3962 How are we doing and what are my issues meeting?
## 3963 How are we doing and what are my issues meeting?
## 3964 How are we doing and what are my issues meeting?
## 3965 How are we doing and what are my issues meeting?
## 3966 How are we doing and what are my issues meeting?
## 3967 How are we doing and what are my issues meeting?
## 3968 How are we doing and what are my issues meeting?
## 3969 How are we doing and what are my issues meeting?
## 3970 How are we doing and what are my issues meeting?
## 3971 How are we doing and what are my issues meeting?
## 3972 How are we doing and what are my issues meeting?
## 3973 How are we doing and what are my issues meeting?
## 3974 How are we doing and what are my issues meeting?
## 3975 How are we doing and what are my issues meeting?
## 3976 How are we doing and what are my issues meeting?
## 3977 FW: Additional followup earnings release questions from Tony Jackson
## 3978 RE: ETS resource requirements
## 3979 ETS resource requirements
## 3980 Insurance Issues
## 3981 Insurance Issues
## 3982 Insurance Issues
## 3983 Insurance Issues
## 3984 Insurance Issues
## 3985 Insurance Issues
## 3986 Insurance Issues
## 3987 Insurance Issues
## 3988 RE: 2 nd version of Plan...
## 3989 RE: 2 nd version of Plan...
## 3990 RE: Adaytum Invoices Issues
## 3991 RE: Adaytum Invoices Issues
## 3992 RE: 2 nd version of Plan...
## 3993 FW: TW-COGS
## 3994 FW: TW-COGS
## 3995 Revised slide
## 3996 UNCLAIMED PROPERTY REPORTING - F. Y. I.
## 3997 UNCLAIMED PROPERTY REPORTING - F. Y. I.
## 3998 FW: EGAS 2002 Budget followup items
## 3999 FW: 2002 Plan Review Agenda
## 4000 RE: Utilicorp $1.2 million
## 4001 RE: Utilicorp $1.2 million
## 4002 RE: Utilicorp $1.2 million
## 4003 RE: Utilicorp $1.2 million
## 4004 RE: Utilicorp $1.2 million
## 4005 RE: Utilicorp $1.2 million
## 4006 RE: Utilicorp $1.2 million
## 4007 RE: Utilicorp $1.2 million
## 4008 RE: Utilicorp $1.2 million
## 4009 RE: Utilicorp $1.2 million
## 4010 RE: Utilicorp $1.2 million
## 4011 RE: Utilicorp $1.2 million
## 4012 2nd revised pres
## 4013 RE: Utilicorp $1.2 million
## 4014 RE: Utilicorp $1.2 million
## 4015 RE: Utilicorp $1.2 million
## 4016 Utilicorp $1.2 million
## 4017 Utilicorp $1.2 million
## 4018 Utilicorp $1.2 million
## 4019 Revised Pres
## 4020 2002 Plan Pres
## 4021 2002 Plan Pres
## 4022 2002 Plan Pres
## 4023 Agenda
## 4024 RE: EGAS 2002 Capital Budget Review
## 4025 RE: EGAS 2002 Capital Budget Review
## 4026 RE: EGAS 2002 Capital Budget Review
## 4027 FW: ETS SLIDES
## 4028 FW: 3CE and Sept Flash
## 4029 BUSINESS PLAN REVIEW TRIP TO PORTLAND
## 4030 BUSINESS PLAN REVIEW TRIP TO PORTLAND
## 4031 Use this one--2002 Plan PPT files -
## 4032 Reised ETS Info Page
## 4033 FW: Enron Net Works 2002 Budget Process
## 4034 FW: Enron Net Works 2002 Budget Process
## 4035 FW: Enron Net Works 2002 Budget Process
## 4036 FW: Enron Net Works 2002 Budget Process
## 4037 FW: Enron Net Works 2002 Budget Process
## 4038 FW: Enron Net Works 2002 Budget Process
## 4039 FW: Enron Net Works 2002 Budget Process
## 4040 ETS Operations companies (1202, 42P, and 184)
## 4041 FW: Enron Net Works 2002 Budget Process
## 4042 FW: Enron Net Works 2002 Budget Process
## 4043 FW: Enron Net Works 2002 Budget Process
## 4044 2002 Issues
## 4045 2002 Issues
## 4046 2002 Issues
## 4047 2002 Issues
## 4048 2002 Issues
## 4049 2002 Issues
## 4050 2002 Issues
## 4051 2002 Issues
## 4052 2002 Issues
## 4053 2002 Issues
## 4054 2002 Issues
## 4055 2002 Issues
## 4056 2002 Issues
## 4057 FW: Standby / Cooper Pre-Buy
## 4058 FW: O & M in categories by legal entity.
## 4059 FW: NNG & TW Ad Valorem Tax Accrual - 2002 Plan vs. 2001 Forecast
## 4060 FW: NNG & TW Ad Valorem Tax Accrual - 2002 Plan vs. 2001 Forecast
## 4061 FW: NNG & TW Ad Valorem Tax Accrual - 2002 Plan vs. 2001 Forecast
## 4062 RE: NNG & TW Ad Valorem Tax Accrual - 2002 Plan vs. 2001 Forecast
## 4063 RE: NNG & TW Ad Valorem Tax Accrual - 2002 Plan vs. 2001 Forecast
## 4064 RE: TW 2002 Plan Summary
## 4065 RE: REQUEST - 2001 Operating Expenses - High Priority
## 4066 RE: REQUEST - 2001 Operating Expenses - High Priority
## 4067 RE: Azurix 2002 Plan Review
## 4068 Azurix 2002 Plan Review
## 4069 RE: Azurix 2002 Plan Review
## 4070 FW: Correct Reg. Roundtable Agenda
## 4071 FW: Correct Reg. Roundtable Agenda
## 4072 FW: Correct Reg. Roundtable Agenda
## 4073
## 4074 RE: Transwestern pipeline Colorado Audit FEIN 74-1294795 (Account\t L80-30571) To April 2001
## 4075 TRIP TO PORTLAND NEXT WEEK
## 4076 TRIP TO PORTLAND NEXT WEEK
## 4077 Electronic Pay Stubs
## 4078 Wessex net income forecast
## 4079 FW: PGG Q3 Forecast - Confidential
## 4080 2002 Plan
## 4081 2002 Plan
## 4082 2002 Plan
## 4083 Weekly progress report
## 4084 FW: Project Nikita Memo
## 4085 FW: Project Nikita Memo
## 4086 FW: Project Nikita Memo
## 4087 Re: Azurix 2002 Plan Review
## 4088 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 4089 FW: Western Energy--Power and Gas Prices and Volatility Expected to Fall - CERA Monthly Briefing
## 4090 Project Sunrise September 30 Go-Live Status
## 4091 FW: 2002 Plan Headcount for ENW
## 4092 FW: Energy Affiliate Notice of Proposed Rulemaking
## 4093 FW: Energy Affiliate Notice of Proposed Rulemaking
## 4094 FW: Energy Affiliate Notice of Proposed Rulemaking
## 4095 FW: Energy Affiliate Notice of Proposed Rulemaking
## 4096 FW: Energy Affiliate Notice of Proposed Rulemaking
## 4097 FW: Energy Affiliate Notice of Proposed Rulemaking
## 4098 FW: Energy Affiliate Notice of Proposed Rulemaking
## 4099 FW: Energy Affiliate Notice of Proposed Rulemaking
## 4100 FW: Energy Affiliate Notice of Proposed Rulemaking
## 4101 FW: Energy Affiliate Notice of Proposed Rulemaking
## 4102 FW: Energy Affiliate Notice of Proposed Rulemaking
## 4103 FW: Energy Affiliate Notice of Proposed Rulemaking
## 4104 FW: Energy Affiliate Notice of Proposed Rulemaking
## 4105 FW: TW Daily Balance Report
## 4106 FW: TW Daily Balance Report
## 4107 FW: TW Daily Balance Report
## 4108 FW: TW Daily Balance Report
## 4109 2002 Budget Review - EEOS
## 4110 2002 Budget Review - EEOS
## 4111 FW: TW Daily Balance 09/27/01
## 4112 Definitions for 2001 Plan
## 4113 FW: Summary of Commission Meeting
## 4114 FW: Summary of Commission Meeting
## 4115 FW: Summary of Commission Meeting
## 4116 FW: Summary of Commission Meeting
## 4117 FW: Summary of Commission Meeting
## 4118 FW: Summary of Commission Meeting
## 4119 FW: Summary of Commission Meeting
## 4120 FW: Summary of Commission Meeting
## 4121 FW: Summary of Commission Meeting
## 4122 FW: Summary of Commission Meeting
## 4123 FW: Summary of Commission Meeting
## 4124 FW: Summary of Commission Meeting
## 4125 FW: Summary of Commission Meeting
## 4126 CONFIDENTIAL: updated reserve & impairment schedule
## 4127 CONFIDENTIAL: updated reserve & impairment schedule
## 4128 CONFIDENTIAL: updated reserve & impairment schedule
## 4129 FW: Project Timber Final Memo
## 4130 FW: Project Timber Final Memo
## 4131 FW: Project Timber Final Memo
## 4132 FW: Project Timber Final Memo
## 4133 FW: Project Timber Final Memo
## 4134 FW: Project Timber Final Memo
## 4135 FW: Commission Meeting
## 4136 FW: Commission Meeting
## 4137 FW: Commission Meeting
## 4138 FW: Commission Meeting
## 4139 FW: Commission Meeting
## 4140 FW: Commission Meeting
## 4141 FW: Commission Meeting
## 4142 FW: Commission Meeting
## 4143 FW: Commission Meeting
## 4144 FW: Commission Meeting
## 4145 FW: Commission Meeting
## 4146 FW: Commission Meeting
## 4147 FW: Commission Meeting
## 4148 FW: Next Scheduled Budget Meeting - 10/16 @ 11:00 a.m. EB32C2
## 4149 2002 Corp. Charges
## 4150 FW: EOTT Gain Calculation
## 4151 FW: EOTT Gain Calculation
## 4152 FW: Revised Gain
## 4153 FW: Revised Gain
## 4154 Corporate Charge questions
## 4155 FW: Revised Allocations from ENA to BUs - 2002 Plan
## 4156 MMF Factors
## 4157 FW: Goodwill Allocation Memorandum
## 4158 FW: Project Timber EOTT Accounting Memo
## 4159 FW: Project Timber EOTT Accounting Memo
## 4160 FW: Project Timber EOTT Accounting Memo
## 4161 Project Sunrise Financial Data Warehouse Usage
## 4162 RE: EOTT budget
## 4163 FW: Sun Devil project
## 4164 FW: Sun Devil project
## 4165 RE: NNG/Utilcorp $100,000 a month Reserve
## 4166 RE: NNG/Utilcorp $100,000 a month Reserve
## 4167 RE: NNG/Utilcorp $100,000 a month Reserve
## 4168 FW: Transwestern
## 4169 FW: Transwestern
## 4170 FW: Transwestern
## 4171 FW: Transwestern
## 4172 FW: Agenda for TW Meeting: PRIVILEGED AND CONFIDENTIAL, ATTORNEY CLIENT PRIVILEGE
## 4173 RE:
## 4174 RE:
## 4175 RE:
## 4176 RE:
## 4177 2002 Net Income
## 4178 Budget: 2001-2002
## 4179 FW: Remapping AFUDC
## 4180 Meeting Location in Houston
## 4181 Meeting Location in Houston
## 4182 FW: ENA Allocations to Othe BUs - Plan 2002
## 4183 RE: ENA Allocations to Othe BUs - Plan 2002
## 4184 Re: FW: URGENT REQUEST
## 4185 Big Sandy Delivery Point Const and Oper Agreement
## 4186 Big Sandy Delivery Point Const and Oper Agreement
## 4187 Big Sandy Delivery Point Const and Oper Agreement
## 4188 FW: PGE Power Costs
## 4189 Re: FW: URGENT REQUEST
## 4190 RE: URGENT REQUEST
## 4191 Agenda - Global Accounting Leadership Conference - Sept 20 & 21
## 4192 Agenda - Global Accounting Leadership Conference - Sept 20 & 21
## 4193 Agenda - Global Accounting Leadership Conference - Sept 20 & 21
## 4194
## 4195 August Capital Charge - again
## 4196 FW: MESSAGE FROM MARK LINDSEY - 4TH Q 2001 - REMINDER
## 4197 Capital Charge
## 4198 FW: Q3 Adjustments - AA&Co. Review
## 4199 FW:
## 4200 FW: 2002 budget
## 4201 Tw CE and 2002 Plan
## 4202 NNG Reserve Analysis
## 4203 Commercial Net Contribution Schedule
## 4204 Commercial Net Contribution Schedule
## 4205 RE: 2002 Corporate Allocations - Revision #1
## 4206 FW: Sunrise update; Steering Committee meeting postponed
## 4207 FW: Sunrise update; Steering Committee meeting postponed
## 4208 FW: Sunrise update; Steering Committee meeting postponed
## 4209 FW: Sunrise update; Steering Committee meeting postponed
## 4210 FW: Sunrise update; Steering Committee meeting postponed
## 4211 FW: Sunrise update; Steering Committee meeting postponed
## 4212 FW: Sunrise update; Steering Committee meeting postponed
## 4213 FW: Sunrise update; Steering Committee meeting postponed
## 4214 FW: Sunrise update; Steering Committee meeting postponed
## 4215 FW: Sunrise update; Steering Committee meeting postponed
## 4216 FW: Sunrise update; Steering Committee meeting postponed
## 4217 FW: Sunrise update; Steering Committee meeting postponed
## 4218 FW: Sunrise update; Steering Committee meeting postponed
## 4219 FW: FW: MESSAGE FROM MARK LINDSEY - 4TH Q 2001
## 4220 Global Accounting Offsite - Reading Material
## 4221 Global Accounting Offsite - Reading Material
## 4222 Global Accounting Offsite - Reading Material
## 4223 FW: EOL Annual Maintenance.
## 4224 RE: 2002 PLAN TEMPLATE
## 4225 FW: EOTT budget
## 4226 RE: TW Red Rock Cashflow
## 4227 RE: TW Red Rock Cashflow
## 4228 FW: Corp. Costs for 2002
## 4229 Corp. Costs for 2002
## 4230 Corp. Costs for 2002
## 4231 FW: TW Red Rock Cashflow
## 4232 RE: LaPlata DRA Application Cost Estimate
## 4233 LaPlata DRA Application Cost Estimate
## 4234 Cunningham Base Gas/2002 Plan
## 4235 FW: Beatrice Trailblazer PAF Comparison (Gray County)
## 4236 FW: Beatrice Trailblazer PAF Comparison (Gray County)
## 4237 FW: Beatrice Trailblazer PAF Comparison (Gray County)
## 4238 FW: Beatrice Trailblazer PAF Comparison (Gray County)
## 4239 RE: funds flow
## 4240 Re: FW: Ken Lay Reviews for 2002 Plan
## 4241 FW: Segments
## 4242 FW: Segments
## 4243 FW: Segments
## 4244 RE: Ken Lay Reviews for 2002 Plan
## 4245 Global Accounting Offsite - Sept 20 & 21
## 4246 Global Accounting Offsite - Sept 20 & 21
## 4247 Global Accounting Offsite - Sept 20 & 21
## 4248 RE: EREC 02 Plan Assessments
## 4249 3rd CE NNG Comm. Capital
## 4250 3rd CE NNG Comm. Capital
## 4251 Additional $4.9 capital spending for NNG in 2001
## 4252 Additional $4.9 capital spending for NNG in 2001
## 4253 Additional $4.9 capital spending for NNG in 2001
## 4254 2002 PLAN - Change to Key Dates
## 4255 RE: 2002 Capital Plan
## 4256 TW-Balance Sheet -info
## 4257 FW: 2002 plan meeting with Jim Hughes
## 4258 FW: 2002 plan meeting with Jim Hughes
## 4259 FW: 2002 plan meeting with Jim Hughes
## 4260 FW: Revised EGAS 2002 plan overall agenda
## 4261 FW: 2002 Capital Plan
## 4262 FW: 2002 Capital Plan
## 4263 FW: MESSAGE FROM MARK LINDSEY - 4TH Q 2001
## 4264 FW: MESSAGE FROM MARK LINDSEY - 4TH Q 2001
## 4265 FW: MESSAGE FROM MARK LINDSEY - 4TH Q 2001
## 4266 FW: MESSAGE FROM MARK LINDSEY - 4TH Q 2001
## 4267 FW: MESSAGE FROM MARK LINDSEY - 4TH Q 2001
## 4268 FW: MESSAGE FROM MARK LINDSEY - 4TH Q 2001
## 4269 FW:
## 4270 FW:
## 4271 FW:
## 4272 FW:
## 4273 FW:
## 4274 FW:
## 4275 FW:
## 4276 FW:
## 4277 FW: Jim s meeting - version #6
## 4278 FW: 2002 plan - meeting with Jim Hughes
## 4279 RE: ETS - SAP Security Access Review Meeting
## 4280 Reminder - Preliminary Allocations
## 4281 Outage Coordination Commercial Review (Date Change)
## 4282 Outage Coordination Commercial Review (Date Change)
## 4283 Outage Coordination Commercial Review (Date Change)
## 4284 Outage Coordination Commercial Review (Date Change)
## 4285 EREC "PRELIMINARY" 2002 plan assessments from ENW
## 4286 2002 Plan
## 4287 2002 Plan
## 4288 2002 Plan
## 4289 2002 Plan
## 4290 RE: Global Employee Services Group - 2002 Plan Assumption
## 4291 FW: Sun Devil Open Season Results --CONFIDENTIAL--
## 4292 FW: Sun Devil Open Season Results --CONFIDENTIAL--
## 4293 FW: Sun Devil Open Season Results --CONFIDENTIAL--
## 4294 FW: Sun Devil Open Season Results --CONFIDENTIAL--
## 4295 FW: Sun Devil Open Season Results --CONFIDENTIAL--
## 4296 FW: Sun Devil Open Season Results --CONFIDENTIAL--
## 4297 FW: Sun Devil Open Season Results --CONFIDENTIAL--
## 4298 FW: Sun Devil Open Season Results --CONFIDENTIAL--
## 4299 FW: 2002 plan - meeting with Jim Hughes
## 4300 RE: Ken Lay Reviews for 2002 Plan
## 4301 RE: Ken Lay Reviews for 2002 Plan
## 4302 RE: Ken Lay Reviews for 2002 Plan
## 4303 RE: Ken Lay Reviews for 2002 Plan
## 4304 RE: Ken Lay Reviews for 2002 Plan
## 4305 RE: Ken Lay Reviews for 2002 Plan
## 4306 RE: Ken Lay Reviews for 2002 Plan
## 4307 RE: Ken Lay Reviews for 2002 Plan
## 4308 RE: Ken Lay Reviews for 2002 Plan
## 4309 RE: Ken Lay Reviews for 2002 Plan
## 4310 RE: Ken Lay Reviews for 2002 Plan
## 4311 RE: Ken Lay Reviews for 2002 Plan
## 4312 RE: Ken Lay Reviews for 2002 Plan
## 4313 RE: Ken Lay Reviews for 2002 Plan
## 4314 RE: Ken Lay Reviews for 2002 Plan
## 4315 RE: Ken Lay Reviews for 2002 Plan
## 4316 RE: Ken Lay Reviews for 2002 Plan
## 4317 RE: Ken Lay Reviews for 2002 Plan
## 4318 RE: Ken Lay Reviews for 2002 Plan
## 4319 RE: Ken Lay Reviews for 2002 Plan
## 4320 RE: Ken Lay Reviews for 2002 Plan
## 4321 RE: Ken Lay Reviews for 2002 Plan
## 4322 RE: Ken Lay Reviews for 2002 Plan
## 4323 RE: Ken Lay Reviews for 2002 Plan
## 4324 RE: Ken Lay Reviews for 2002 Plan
## 4325 RE: Ken Lay Reviews for 2002 Plan
## 4326 RE: Ken Lay Reviews for 2002 Plan
## 4327 RE: Ken Lay Reviews for 2002 Plan
## 4328 RE: Ken Lay Reviews for 2002 Plan
## 4329 RE: Ken Lay Reviews for 2002 Plan
## 4330 RE: Ken Lay Reviews for 2002 Plan
## 4331 RE: Ken Lay Reviews for 2002 Plan
## 4332 Existing Project Sunrise Data Warehouse Setup Request
## 4333 Legal Essentials for Managers Training
## 4334 Legal Essentials for Managers Training
## 4335 Legal Essentials for Managers Training
## 4336 Legal Essentials for Managers Training
## 4337 Legal Essentials for Managers Training
## 4338 Legal Essentials for Managers Training
## 4339 Legal Essentials for Managers Training
## 4340 2nd Annual Accounting Leadership Conference
## 4341 FW: STAN HORTON S CURRENT TOP TWENTY-ONE LIST
## 4342 FW: STAN HORTON S CURRENT TOP TWENTY-ONE LIST
## 4343 FW: STAN HORTON S CURRENT TOP TWENTY-ONE LIST
## 4344 FW: STAN HORTON S CURRENT TOP TWENTY-ONE LIST
## 4345 FW: STAN HORTON S CURRENT TOP TWENTY-ONE LIST
## 4346 FW: STAN HORTON S CURRENT TOP TWENTY-ONE LIST
## 4347 FW: STAN HORTON S CURRENT TOP TWENTY-ONE LIST
## 4348 FW: STAN HORTON S CURRENT TOP TWENTY-ONE LIST
## 4349 FW: STAN HORTON S CURRENT TOP TWENTY-ONE LIST
## 4350 FW: STAN HORTON S CURRENT TOP TWENTY-ONE LIST
## 4351 FW: STAN HORTON S CURRENT TOP TWENTY-ONE LIST
## 4352 FW: STAN HORTON S CURRENT TOP TWENTY-ONE LIST
## 4353 FW: STAN HORTON S CURRENT TOP TWENTY-ONE LIST
## 4354 2001_3QF_F07, as requested!
## 4355 2001_3QF_F07, as requested!
## 4356 RE: Horton review
## 4357 RE: 0701 UAF Gain
## 4358 RE: 0701 UAF Gain
## 4359 RE: 0701 UAF Gain
## 4360 FW: 2002 Plan Dates & Information
## 4361 RE: La Plata DRA Conference Call - 9:00 CST, Friday, 8/31
## 4362 RE: La Plata DRA Conference Call - 9:00 CST, Friday, 8/31
## 4363 RE: La Plata DRA Conference Call - 9:00 CST, Friday, 8/31
## 4364 RE: Headcount and CE for ETS
## 4365 RE: Headcount and CE for ETS
## 4366 Re: FW: Request: Current Headcount
## 4367 Accounting headcount & 2nd CE
## 4368 La Plata DRA Conference Call - 9:00 CST, Friday, 8/31
## 4369 La Plata DRA Conference Call - 9:00 CST, Friday, 8/31
## 4370 La Plata DRA Conference Call - 9:00 CST, Friday, 8/31
## 4371 RE: 0701 UAF Gain
## 4372 RE: 0701 UAF Gain
## 4373 RE: 0701 UAF Gain
## 4374 2002 Capital Plan
## 4375 FW: O&M/Capital Review with Stan
## 4376 RE: 0701 UAF Gain
## 4377 RE: 0701 UAF Gain
## 4378 RE: 0701 UAF Gain
## 4379 O&M/Capital Review with Stan
## 4380 O&M/Capital Review with Stan
## 4381 O&M/Capital Review with Stan
## 4382 O&M/Capital Review with Stan
## 4383 O&M/Capital Review with Stan
## 4384 O&M/Capital Review with Stan
## 4385 O&M/Capital Review with Stan
## 4386 2002 Plan Dates & Information
## 4387 La Plata to Bloomfield Drag Reducing Agent Conference Call
## 4388 La Plata to Bloomfield Drag Reducing Agent Conference Call
## 4389 La Plata to Bloomfield Drag Reducing Agent Conference Call
## 4390 RE: Functional Reclass
## 4391 FW: Transwestern pipeline Colorado Audit FEIN 74-1294795 (Account\t L80-30571) Tour, Status and Protest (COMPRESSOR FUEL)
## 4392 FW: Transwestern pipeline Colorado Audit FEIN 74-1294795 (Account\t L80-30571) Tour, Status and Protest (COMPRESSOR FUEL)
## 4393 RE: Request: Current Headcount
## 4394 Review Adaytum Model - Prior to Replication
## 4395 RE: Request: Current Headcount
## 4396 RE: Request: Current Headcount
## 4397 RE: Request: Current Headcount
## 4398 Depreciation
## 4399 RE: Transwestern pipeline Colorado Audit FEIN 74-1294795 (Account\t L80-30571) Tour, Status and Protest (COMPRESSOR FUEL)
## 4400 Revised Gas Logistics
## 4401 La Plata to Bloomfield Drag Reducing Agent Application Proposal
## 4402 La Plata to Bloomfield Drag Reducing Agent Application Proposal
## 4403 La Plata to Bloomfield Drag Reducing Agent Application Proposal
## 4404 FW: Transwestern pipeline Colorado Audit FEIN 74-1294795 (Account\t L80-30571) Tour, Status and Protest (COMPRESSOR FUEL)
## 4405 FW: Transwestern pipeline Colorado Audit FEIN 74-1294795 (Account\t L80-30571) Tour, Status and Protest (COMPRESSOR FUEL)
## 4406 FW: Job Descriptions
## 4407 Personnel Requirement
## 4408 Personnel Requirement
## 4409 Personnel Requirement
## 4410 Personnel Requirement
## 4411 Personnel Requirement
## 4412 Personnel Requirement
## 4413 Personnel Requirement
## 4414 Personnel Requirement
## 4415 Personnel Requirement
## 4416 Personnel Requirement
## 4417 Personnel Requirement
## 4418 Personnel Requirement
## 4419 Personnel Requirement
## 4420 Personnel Requirement
## 4421 Personnel Requirement
## 4422 Personnel Requirement
## 4423 Personnel Requirement
## 4424 Personnel Requirement
## 4425 Personnel Requirement
## 4426 Personnel Requirement
## 4427 Request: Current Headcount
## 4428 2002 Plan-O&M
## 4429 NNG 2002 Capital Plan
## 4430 FW: 2002 Budget Timeline
## 4431 TW Comm2002PlanDepreciation.xls
## 4432 TW Commercial O&M,Capital Schedules
## 4433 Capital Projects
## 4434 Capital Projects
## 4435 FW: 2002 Aviation budget
## 4436 FW: 2002 Aviation budget
## 4437 FW: AEL 2001 forecast
## 4438 FW: CASH FLOW - MESSAGE FROM MARK LINDSEY
## 4439 Weekly Bullets - TW COMMERCIAL SUPPORT TEAM
## 4440 FW: 2002 Budget Timeline
## 4441 FW: 2002 Budget Timeline
## 4442 FW: 2002 Budget Timeline
## 4443 NNG Transportation Reserve Analysis
## 4444 RE: Preliminary (informal) Review with Rod and Tracey
## 4445 RE: Preliminary (informal) Review with Rod and Tracey
## 4446 VP/Above - 2002 Budget
## 4447 FW: # of Adaytum Consulting/Training Days (as of August 17, 2001)
## 4448 FW: Contacts for EPSC Bill File Location
## 4449 FW: Contacts for EPSC Bill File Location
## 4450 RE: ISC 2002 Allocation Methodology
## 4451 RE: ISC 2002 Allocation Methodology
## 4452 RE: ISC 2002 Allocation Methodology
## 4453 RE: ISC 2002 Allocation Methodology
## 4454 RE: ISC 2002 Allocation Methodology
## 4455 RE: ISC 2002 Allocation Methodology
## 4456 RE: ISC 2002 Allocation Methodology
## 4457 RE: ISC 2002 Allocation Methodology
## 4458 RE: ISC 2002 Allocation Methodology
## 4459 RE: ISC 2002 Allocation Methodology
## 4460 RE: 2002 Plan Review With Stan Rescheduled
## 4461 Fundraising Efforts
## 4462 Fundraising Efforts
## 4463 RE: Plan Review with Stan scheduled for October 10 & Other revisions?
## 4464 FW: DRAFT STATUS REPORT ON ETS 2001 GOALS & OBJECTIVES
## 4465 FW: DRAFT STATUS REPORT ON ETS 2001 GOALS & OBJECTIVES
## 4466 FW: DRAFT STATUS REPORT ON ETS 2001 GOALS & OBJECTIVES
## 4467 FW: DRAFT STATUS REPORT ON ETS 2001 GOALS & OBJECTIVES
## 4468 FW: DRAFT STATUS REPORT ON ETS 2001 GOALS & OBJECTIVES
## 4469 FW: DRAFT STATUS REPORT ON ETS 2001 GOALS & OBJECTIVES
## 4470 FW: DRAFT STATUS REPORT ON ETS 2001 GOALS & OBJECTIVES
## 4471 FW: DRAFT STATUS REPORT ON ETS 2001 GOALS & OBJECTIVES
## 4472 FW: DRAFT STATUS REPORT ON ETS 2001 GOALS & OBJECTIVES
## 4473 FW: DRAFT STATUS REPORT ON ETS 2001 GOALS & OBJECTIVES
## 4474 FW: DRAFT STATUS REPORT ON ETS 2001 GOALS & OBJECTIVES
## 4475 FW: DRAFT STATUS REPORT ON ETS 2001 GOALS & OBJECTIVES
## 4476 FW: DRAFT STATUS REPORT ON ETS 2001 GOALS & OBJECTIVES
## 4477 Company-Wide Accounting Training Off-site
## 4478 Company-Wide Accounting Training Off-site
## 4479 Global Strategic Sourcing Travel Services Survey
## 4480 Change to September 14th CBR meeting (formerly known as NG/TW Actuals)
## 4481 Change to September 14th CBR meeting (formerly known as NG/TW Actuals)
## 4482 CHANGES TO 2002 Budget Review - Thursday, August 16th @ 9:00
## 4483 CHANGES TO 2002 Budget Review - Thursday, August 16th @ 9:00
## 4484 CHANGES TO 2002 Budget Review - Thursday, August 16th @ 9:00
## 4485 Here s the scoop on the Financial meetings
## 4486 Here s the scoop on the Financial meetings
## 4487 Here s the scoop on the Financial meetings
## 4488 NNG, TBPL & TW Functional / Entity Actuals
## 4489 NNG, TBPL & TW Functional / Entity Actuals
## 4490 FW: Quarter Forecast Meeting with Stan Canceled
## 4491 FW: R Cost Centers
## 4492 Depr./AFUDC Current Estimate
## 4493 RE: IBIT
## 4494 FW: R Cost Centers
## 4495 RE: Benefits Costs
## 4496 RE: Benefits Costs
## 4497 RE: Benefits Costs
## 4498 RE: Benefits Costs
## 4499 NNG & TW Functional / Entity Earnings Models - Update (Incl. Non Earnings / Cash Flow Data)
## 4500 RE: ETS 2002 Service Award Estimates
## 4501 FW: ETS Depreciation Rates
## 4502 FW: ETS Remodel Budget-Y2002
## 4503 FW: ETS Remodel Budget-Y2002
## 4504 FW: Sun Devil D R A F T and meeting notice
## 4505 RE: Gray County Interconnect
## 4506 RE: Gray County Interconnect
## 4507 RE: Gray County Interconnect
## 4508 RE: Gray County Interconnect
## 4509 RE: Gray County Interconnect
## 4510 RE: Gray County Interconnect
## 4511 RE: Gray County Interconnect
## 4512 RE: Gray County Interconnect
## 4513 RE: Gray County Interconnect
## 4514 RE: Gray County Interconnect
## 4515 RE: Gray County Interconnect
## 4516 RE: Gray County Interconnect
## 4517 RE: Gray County Interconnect
## 4518 RE: Gray County Interconnect
## 4519 RE: Gray County Interconnect
## 4520 RE: Gray County Interconnect
## 4521 RE: Gray County Interconnect
## 4522 RE: Gray County Interconnect
## 4523 RE: Gray County Interconnect
## 4524 RE: Gray County Interconnect
## 4525 RE: Gray County Interconnect
## 4526 RE: Gray County Interconnect
## 4527 RE: Gray County Interconnect
## 4528 RE: Gray County Interconnect
## 4529 Consolidated Legal Plan Mtg - Rescheduled, Aug 15
## 4530 Consolidated Legal Plan Mtg - Rescheduled, Aug 15
## 4531 Consolidated Legal Plan Mtg - Rescheduled, Aug 15
## 4532 FW: TW Daily Balance 07/27
## 4533 FW: United Way 2001 - Team ETS
## 4534 FW: United Way 2001 - Team ETS
## 4535 FW: United Way 2001 - Team ETS
## 4536 FW: United Way 2001 - Team ETS
## 4537 FW: United Way 2001 - Team ETS
## 4538 FW: United Way 2001 - Team ETS
## 4539 FW: United Way 2001 - Team ETS
## 4540 FW: United Way 2001 - Team ETS
## 4541 FW: United Way 2001 - Team ETS
## 4542 FW: United Way 2001 - Team ETS
## 4543 FW: United Way 2001 - Team ETS
## 4544 FW: United Way 2001 - Team ETS
## 4545 FW: United Way 2001 - Team ETS
## 4546 FW: Deferred Gain on Sale of Part to Cooper Energy Services
## 4547 FW: Project Sun Devil Description
## 4548 RE: Trans Pecos
## 4549 FW: Gross / Net Specs - 07/27/01
## 4550 FW: Current Estimate Review for ETS Companies
## 4551 FW: Cash needs
## 4552 FW:
## 4553 FW:
## 4554 FW:
## 4555 FW:
## 4556 FW:
## 4557 FW:
## 4558 FW:
## 4559 FW:
## 4560 FW:
## 4561 FW:
## 4562 FW:
## 4563 FW:
## 4564 RE: Five Day Rolling Forecast
## 4565 RE: P00577146 697834 C Rideau (mar)
## 4566 RE: Five Day Rolling Forecast
## 4567 RE: Five Day Rolling Forecast
## 4568 RE: Cash forecast
## 4569 RE: Cash forecast
## 4570 RE: Cash forecast
## 4571 Re: TW financials
## 4572 Re: TW financials
## 4573 Re: TW information
## 4574 RE: Agave Letter
## 4575 Re: FW: Agave Letter
## 4576 Re: TW imbal revaluation
## 4577 FW: Cap file for TW
## 4578 FW: Cap file for TW
## 4579 FW: Cap file for TW
## 4580 FW: Cap file for TW
## 4581 RE: CAPEX
## 4582 RE: CAPEX
## 4583 RE: CAPEX
## 4584 RE:
## 4585 RE: 4th current estimate
## 4586 FW: Capacity Subscription Strategy
## 4587 Fw: Transpecos
## 4588 Transpecos
## 4589 RE: NNG revenue backup
## 4590 Fw: RE: Capital for TW
## 4591 Re: NNG revenue backup
## 4592 Re: NNG revenue backup
## 4593 Re: FW: IM Meeting Agenda
## 4594
## 4595 Fw: RE: NNG & TW Direct Cash Flow Estimate (11/27 -11/30)
## 4596 Re: FW: Cash Forecasting
## 4597 FW: NNG & TW Direct Cash Flow Estimate (11/27 -11/30)
## 4598 RE: PEP SYSTEM Reviewers?
## 4599 FW: Cost Center
## 4600 FW: HSR info needed
## 4601 FW: HSR info needed
## 4602 RE:
## 4603
## 4604 RE:
## 4605 RE:
## 4606 RE:
## 4607 FW: Slides for Stan
## 4608 RE:
## 4609
## 4610
## 4611 RE: NNG/TW Actual meeting
## 4612 FW: Red Rock additions
## 4613 RE: Updated: Update on financings
## 4614 RE: NNG/TW Actual meeting
## 4615 RE:
## 4616 RE:
## 4617 FW: TW Available Capacity for 2002
## 4618 FW: Red Rock (Transwestern) Cashflow
## 4619 FW: Red Rock (Transwestern) Cashflow
## 4620 RE: C.014107 - Agave WT I/C
## 4621 RE: C.014107 - Agave WT I/C
## 4622 RE: C.014107 - Agave WT I/C
## 4623 FW:
## 4624 FW:
## 4625 Re: FW: Additional TW information request
## 4626 RE: FW:
## 4627
## 4628 RE: FW:
## 4629 RE: FW:
## 4630 RE: FW:
## 4631 RE: FW:
## 4632 FW: Memo regarding Enron/Dynegy Agreement and Plan of Merger - Compliance with the Conduct of Business Covenants
## 4633 FW:
## 4634
## 4635
## 4636 RE:
## 4637 FW:
## 4638 Aviation
## 4639
## 4640 Corp Request
## 4641 Corp Request
## 4642 Corp Request
## 4643 RE: corp information requests
## 4644 RE: corp information requests
## 4645 FW: FW: Information Request
## 4646 FW: Information Request
## 4647 FW: Information Request
## 4648 RE:
## 4649 FW: Information Request
## 4650 FW: Information Request
## 4651 FW: Information Request
## 4652 FW: Information Request
## 4653 FW: Information Request
## 4654 FW: Information Request
## 4655 FW: Information Request
## 4656 FW: Information Request
## 4657 FW: Information Request
## 4658 FW: Information Request
## 4659 FW: Information Request
## 4660 FW: Information Request
## 4661 FW: Information Request
## 4662 FW: Information Request
## 4663 FW: Information Request
## 4664 FW: Information Request
## 4665 RE:
## 4666 FW: Continental Airlines Vacations Special Deals
## 4667 RE: Free Shipping & $1,300 in Savings
## 4668 FW: FREE Personalization for Your Holiday Gifts!
## 4669 FW: Free Shipping & $1,300 in Savings
## 4670 FW: pipelines 97- 00
## 4671 List of key employees
## 4672 FW: G&A Function definitions
## 4673 RE:
## 4674
## 4675 4th Q EGAS
## 4676 4th Q EGAS
## 4677 4th Q EGAS
## 4678 bio
## 4679 RE: map
## 4680 RE: map
## 4681
## 4682 map
## 4683 RE: P00504745 682504 J Moore
## 4684 RE: P00504745 682504 J Moore
## 4685 RE:
## 4686 RE:
## 4687 RE: Set up FAR orders for EPSC billing
## 4688 RE: Set up FAR orders for EPSC billing
## 4689 RE: Set up FAR orders for EPSC billing
## 4690 FW: EAP
## 4691 FW: EAP
## 4692 FW: EAP
## 4693 FW: EAP
## 4694 FW: 4th Quarter Forecast Meetings Canceled
## 4695 FW: 4th Quarter Forecast Meetings Canceled
## 4696 FW: 4th Quarter Forecast Meetings Canceled
## 4697 FW: 4th Quarter Forecast Meetings Canceled
## 4698 FW: Gentle Reminder
## 4699 RE: Azurix CE
## 4700
## 4701
## 4702 Re: EGS Presentation
## 4703 Re: Need 6 more tpc form2
## 4704 Re: Tpc form 2
## 4705 RE: Adaytum Consultant Services
## 4706 RE: Adaytum Consultant Services
## 4707 RE: Adaytum Consultant Services
## 4708 RE: Adaytum Consultant Services
## 4709 RE: Adaytum Consultant Services
## 4710 FW: GRI Msg: Time Sheet Submitted for JEANETTE Y . DOLL.
## 4711 RE: EPPI GPM Oneok agreement
## 4712 RE: EPPI GPM Oneok agreement
## 4713 RE: EPPI GPM Oneok agreement
## 4714 RE: EPPI GPM Oneok agreement
## 4715 RE: EPPI GPM Oneok agreement
## 4716 RE: EPPI GPM Oneok agreement
## 4717 RE: EPPI GPM Oneok agreement
## 4718 RE: EPPI GPM Oneok agreement
## 4719 4th Quarter Forecast Meetings Canceled
## 4720 4th Quarter Forecast Meetings Canceled
## 4721 4th Quarter Forecast Meetings Canceled
## 4722 4th Quarter Forecast Meetings Canceled
## 4723 4th Quarter Forecast Meetings Canceled
## 4724 4th Quarter Forecast Meetings Canceled
## 4725 4th Quarter Forecast Meetings Canceled
## 4726 4th Quarter Forecast Meetings Canceled
## 4727 4th Quarter Forecast Meetings Canceled
## 4728 4th Quarter Forecast Meetings Canceled
## 4729 4th Quarter Forecast Meetings Canceled
## 4730 4th Quarter Forecast Meetings Canceled
## 4731 4th Quarter Forecast Meetings Canceled
## 4732 4th Quarter Forecast Meetings Canceled
## 4733 4th Quarter Forecast Meetings Canceled
## 4734 4th Quarter Forecast Meetings Canceled
## 4735 4th Quarter Forecast Meetings Canceled
## 4736 4th Quarter Forecast Meetings Canceled
## 4737 4th Quarter Forecast Meetings Canceled
## 4738 4th Quarter Forecast Meetings Canceled
## 4739 4th Quarter Forecast Meetings Canceled
## 4740 4th Quarter Forecast Meetings Canceled
## 4741 4th Quarter Forecast Meetings Canceled
## 4742 4th Quarter Forecast Meetings Canceled
## 4743 4th Quarter Forecast Meetings Canceled
## 4744 4th Quarter Forecast Meetings Canceled
## 4745 4th Quarter Forecast Meetings Canceled
## 4746 4th Quarter Forecast Meetings Canceled
## 4747 4th Quarter Forecast Meetings Canceled
## 4748 4th Quarter Forecast Meetings Canceled
## 4749 4th Quarter Forecast Meetings Canceled
## 4750 4th Quarter Forecast Meetings Canceled
## 4751 4th Quarter Forecast Meetings Canceled
## 4752 4th Quarter Forecast Meetings Canceled
## 4753 4th Quarter Forecast Meetings Canceled
## 4754 4th Quarter Forecast Meetings Canceled
## 4755 4th Quarter Forecast Meetings Canceled
## 4756 4th Quarter Forecast Meetings Canceled
## 4757 4th Quarter Forecast Meetings Canceled
## 4758 4th Quarter Forecast Meetings Canceled
## 4759 4th Quarter Forecast Meetings Canceled
## 4760 4th Quarter Forecast Meetings Canceled
## 4761 4th Quarter Forecast Meetings Canceled
## 4762 4th Quarter Forecast Meetings Canceled
## 4763 4th Quarter Forecast Meetings Canceled
## 4764 4th Quarter Forecast Meetings Canceled
## 4765 4th Quarter Forecast Meetings Canceled
## 4766 4th Quarter Forecast Meetings Canceled
## 4767 4th Quarter Forecast Meetings Canceled
## 4768 4th Quarter Forecast Meetings Canceled
## 4769 RE: How are we doing & my issues mtg.
## 4770
## 4771 RE: More base gas questions
## 4772 Fw: More base gas questions
## 4773 FW: PGE Incentive
## 4774 FW: Adaytum Update
## 4775 FW: Adaytum Update
## 4776 FW: GRI Msg: Time Sheet Submitted for JEANETTE Y . DOLL.
## 4777 FW: 4 Quarter for Stan
## 4778 4 Quarter EEOS
## 4779 4 Quarter EEOS
## 4780 4 Quarter EEOS
## 4781 4 Quarter EEOS
## 4782 FW: Transwestern Fair Value
## 4783 RE: Transwestern Fair Value
## 4784 RE: Transwestern Fair Value
## 4785
## 4786
## 4787
## 4788
## 4789
## 4790
## 4791
## 4792
## 4793
## 4794
## 4795
## 4796
## 4797
## 4798 RE: EPSC charges to cost centers
## 4799 RE: EPSC charges to cost centers
## 4800 RE: EPSC charges to cost centers
## 4801 RE: Bank question
## 4802 RE: Bank question
## 4803 RE: Bank question
## 4804 RE: Bank question
## 4805 RE: Bank question
## 4806 RE: EPSC charges to cost centers
## 4807 RE: EPSC charges to cost centers
## 4808 RE: EPSC charges to cost centers
## 4809 RE: EPSC charges to cost centers
## 4810 RE: EPSC charges to cost centers
## 4811 FW: Bank question
## 4812 FW: 2001 3CE and 2002 Plan
## 4813 FW: 2001 3CE and 2002 Plan
## 4814 Re: FW: Rockne questions
## 4815 Re:
## 4816 Re:
## 4817 Re:
## 4818 Fw: Re: Additional bank requests
## 4819 Re: Additional bank requests
## 4820 RE: Budget Meetings
## 4821 FW: TW Fuel Useage by compressor
## 4822 RE: Weekly Forecast
## 4823 RE: Weekly Forecast
## 4824 RE: Weekly Forecast
## 4825 RE: Weekly Forecast
## 4826 RE: revised timeline
## 4827 RE: revised timeline
## 4828 RE: revised timeline
## 4829 RE: 2002 Plan - Business Development Slides
## 4830 RE: 2002 Plan - Business Development Slides
## 4831 RE: 2002 Plan - Business Development Slides
## 4832 RE: 2002 Plan - Business Development Slides
## 4833 FW: FW: 2002 Plan Assessments as of 10/19/01 for EREC
## 4834 Accepted: Updated: Plan, Actuals, Data Warehouse, Adaytum
## 4835 RE: Suggested Template for Lay Reviews
## 4836 FW: Suggested Template for Lay Reviews
## 4837 FW: Suggested Template for Lay Reviews
## 4838 FW: Suggested Template for Lay Reviews
## 4839 FW: Suggested Template for Lay Reviews
## 4840 FW: Suggested Template for Lay Reviews
## 4841 FW: Suggested Template for Lay Reviews
## 4842 FW: Suggested Template for Lay Reviews
## 4843 Nov. 1 Meeting with Stan
## 4844 Nov. 1 Meeting with Stan
## 4845 Nov. 1 Meeting with Stan
## 4846 Nov. 1 Meeting with Stan
## 4847 Nov. 1 Meeting with Stan
## 4848 RE: Adaytum Project Update
## 4849 RE: Adaytum Project Update
## 4850 RE: Adaytum Project Update
## 4851 RE: Adaytum Project Update
## 4852 FW: Adaytum Project Update
## 4853 RE: Adaytum Project Update
## 4854 RE: Adaytum Project Update
## 4855 RE:
## 4856 RE:
## 4857 RE:
## 4858 RE: 2002 Plan - Lay Presentation w/Stan
## 4859 RE: November 13th Quarter Forecast meeting
## 4860 RE: November 13th Quarter Forecast meeting
## 4861 RE: November 13th Quarter Forecast meeting
## 4862 RE: 2002 Plan Lay Presentation Run Through
## 4863 data requested
## 4864 data requested
## 4865 data requested
## 4866 FW: 2002 Plan Lay Presentation Run Through
## 4867 FW: 2002 Plan Lay Presentation Run Through
## 4868 FW: 2002 Plan Lay Presentation Run Through
## 4869 FW: 2002 Plan Lay Presentation Run Through
## 4870 RE:
## 4871
## 4872 RE: October 26th "Weekly Commercial Net Contribution Summary"
## 4873 RE: ETS - Investor Questions
## 4874 RE: ETS - Investor Questions
## 4875 RE: ETS - Investor Questions
## 4876 FW: Cost Center
## 4877 FW: Cost Center
## 4878 FW: Cost Center
## 4879 RE: FW: BUSINESS REVIEWS IN EUROPE END OF 1ST QUARTER, 2002
## 4880 4th Q Revised
## 4881 4th Q Revised
## 4882 4th Q Revised
## 4883 FW: weekly forecast to Corp
## 4884 Suggested Template for Lay Reviews
## 4885 Suggested Template for Lay Reviews
## 4886 Suggested Template for Lay Reviews
## 4887 Suggested Template for Lay Reviews
## 4888 Suggested Template for Lay Reviews
## 4889 Suggested Template for Lay Reviews
## 4890 Suggested Template for Lay Reviews
## 4891 FW: FW: BUSINESS REVIEWS IN EUROPE END OF 1ST QUARTER, 2002
## 4892 FW: ETS - Investor Questions
## 4893 FW: ETS - Investor Questions
## 4894 FW: ETS - Investor Questions
## 4895 FW: 2002 IM Structure
## 4896 FW: 2002 IM Structure
## 4897 FW: 2002 IM Structure
## 4898 FW: 2002 IM Structure
## 4899 FW: 2002 IM Structure
## 4900 FW: 2002 IM Structure
## 4901 FW: 2002 IM Structure
## 4902 FW: 2002 IM Structure
## 4903 FW: 2002 IM Structure
## 4904 FW: 2002 IM Structure
## 4905 FW: 2002 IM Structure
## 4906 FW: template for Lay Reviews
## 4907 RE:
## 4908 RE: TW Weekly
## 4909 FW: 2002 Corporate Assessments - Revision #4
## 4910 FW: 2002 Corporate Assessments - Revision #4
## 4911 Accepted: Kevin Hyatt, J.Centilli re Rates Struc for Sun Devil
## 4912 FW: template for Lay Reviews
## 4913 FW: template for Lay Reviews
## 4914 RE: Mary Cate Love 14 months
## 4915 FW: Enron Article in Oct. 23 WSJ
## 4916 FW: Enron Article in Oct. 23 WSJ
## 4917 RE: Mary Cate Love 14 months
## 4918 RE: 2002 Plan Lay Presentation Run Through
## 4919 FW: 2002 Plan Lay Presentation Run Through
## 4920 RE: Mary Cate Love 14 months
## 4921 RE: FW: 2002 Plan Assessments as of 10/19/01 for EREC
## 4922 RE: Jan Moore 20 Years with Enron
## 4923 Jan Moore 20 Years with Enron
## 4924 Jan Moore 20 Years with Enron
## 4925 Jan Moore 20 Years with Enron
## 4926 Jan Moore 20 Years with Enron
## 4927 Jan Moore 20 Years with Enron
## 4928 Jan Moore 20 Years with Enron
## 4929 Jan Moore 20 Years with Enron
## 4930
## 4931 FW: FW: 2002 Plan Assessments as of 10/19/01 for EREC
## 4932 RE: FW: 2002 Plan Assessments as of 10/19/01 for EREC
## 4933 FW: Baby Copeland
## 4934 RE: 2002 Plan Allocations from ENA to Other Business Units
## 4935 FW: 2002 Plan Allocations from ENA to Other Business Units
## 4936 FW: 2002 Plan Lay Presentation Run Through
## 4937 FW: 2002 Plan Lay Presentation Run Through
## 4938 FW: 2002 Plan Lay Review Run Through
## 4939 FW: 2002 Plan Lay Review Run Through
## 4940 FW: 2002 Plan Lay Review Run Through
## 4941 FW: 2002 Plan Lay Review Run Through
## 4942 FW: 2002 Plan Lay Review Run Through
## 4943 FW: 2002 Plan Lay Review Run Through
## 4944 FW: 2002 Plan Lay Review Run Through
## 4945 FW: 2002 Plan Lay Review Run Through
## 4946 FW: 2002 Plan Lay Review Run Through
## 4947 FW: 2002 Plan Lay Review Run Through
## 4948 FW: 2002 Plan Lay Review Run Through
## 4949 FW: 2002 Plan Lay Review Run Through
## 4950 FW: 2002 Plan Lay Review Run Through
## 4951 FW: 2002 Plan Lay Review Run Through
## 4952 FW: 2002 Plan Lay Review Run Through
## 4953 FW: 2002 Plan Lay Review Run Through
## 4954 FW: 2002 Plan Lay Review Run Through
## 4955 FW: 2002 Plan Lay Review Run Through
## 4956 FW: 2002 Plan Lay Review Run Through
## 4957 FW: 2002 Plan Lay Review Run Through
## 4958 FW: 2002 Plan Lay Review Run Through
## 4959 FW: 2002 Plan Lay Review Run Through
## 4960 FW: 2002 Plan Lay Presentation Run Through
## 4961 FW: 2002 Plan Lay Presentation Run Through
## 4962 FW: 2002 Plan Lay Presentation Run Through
## 4963 FW: 2002 Plan Lay Presentation Run Through
## 4964 FW: 2002 Plan Lay Presentation Run Through
## 4965 FW: 2002 Plan Lay Presentation Run Through
## 4966 FW: 2002 Plan Lay Presentation Run Through
## 4967 FW: 2002 Plan Lay Presentation Run Through
## 4968 FW: 2002 Plan Lay Presentation Run Through
## 4969 FW: 2002 Plan Lay Presentation Run Through
## 4970 FW: 2002 Plan Lay Presentation Run Through
## 4971 FW: 2002 Plan Lay Presentation Run Through
## 4972 FW: 2002 Plan Lay Presentation Run Through
## 4973 FW: 2002 Plan Lay Presentation Run Through
## 4974 FW: 2002 Plan Lay Presentation Run Through
## 4975 FW: 2002 Plan Lay Presentation Run Through
## 4976 FW: 2002 Plan Lay Review Run Through
## 4977 FW: 2002 Plan Lay Review Run Through
## 4978 FW: 2002 Plan Lay Review Run Through
## 4979 FW: 2002 Plan Lay Review Run Through
## 4980 FW: 2002 Plan Lay Review Run Through
## 4981 FW: 2002 Plan Lay Review Run Through
## 4982 FW: 2002 Plan Lay Review Run Through
## 4983 FW: 2002 Plan Lay Review Run Through
## 4984 FW: 2002 Plan Lay Review Run Through
## 4985 FW: 2002 Plan Lay Review Run Through
## 4986 FW: 2002 Plan Lay Review Run Through
## 4987 FW: 2002 Plan Lay Review Run Through
## 4988 FW: 2002 Plan Lay Review Run Through
## 4989 FW: 2002 Plan Lay Review Run Through
## 4990 FW: 2002 Plan Lay Review Run Through
## 4991 FW: 2002 Plan Lay Review Run Through
## 4992 FW: 2002 Plan Lay Review Run Through
## 4993 FW: 2002 Plan Lay Review Run Through
## 4994 FW: 2002 Plan Lay Review Run Through
## 4995 FW: 2002 Plan Lay Review Run Through
## 4996 FW: 2002 Plan Lay Review Run Through
## 4997 FW: 2002 Plan Lay Review Run Through
## 4998 RE: Acquisition Projects
## 4999 RE: Acquisition Projects
## 5000 RE: Acquisition Projects
## 5001 RE: Acquisition Projects
## 5002 RE: Acquisition Projects
## 5003 2002 Plan Lay Review Run Through
## 5004 2002 Plan Lay Review Run Through
## 5005 2002 Plan Lay Review Run Through
## 5006 2002 Plan Lay Review Run Through
## 5007 2002 Plan Lay Review Run Through
## 5008 2002 Plan Lay Review Run Through
## 5009 2002 Plan Lay Review Run Through
## 5010 2002 Plan Lay Review Run Through
## 5011 2002 Plan Lay Review Run Through
## 5012 2002 Plan Lay Review Run Through
## 5013 2002 Plan Lay Review Run Through
## 5014 2002 Plan Lay Review Run Through
## 5015 2002 Plan Lay Review Run Through
## 5016 2002 Plan Lay Review Run Through
## 5017 2002 Plan Lay Review Run Through
## 5018 2002 Plan Lay Review Run Through
## 5019 2002 Plan Lay Review Run Through
## 5020 2002 Plan Lay Review Run Through
## 5021 2002 Plan Lay Review Run Through
## 5022 2002 Plan Lay Review Run Through
## 5023 RE: Oasis Dairy Farms Judgement
## 5024 RE:
## 5025 FW: 2002 Plan Lay Presentation Run Through
## 5026 FW: 2002 Plan Lay Presentation Run Through
## 5027 FW: 2002 Plan Lay Presentation Run Through
## 5028 FW: 2002 Plan Lay Presentation Run Through
## 5029 FW: 4 Quarter Update
## 5030 FW: 2002 Plan Assessments as of 10/19/01 for EREC
## 5031 FW: 2002 Plan Assessments as of 10/19/01 for EREC
## 5032 FW: 2002 Plan Assessments as of 10/19/01 for EREC
## 5033 FW: 2002 Plan Assessments as of 10/19/01 for EREC
## 5034 FW: 2002 Plan Assessments as of 10/19/01 for EREC
## 5035 FW: 2002 Plan Assessments as of 10/19/01 for EREC
## 5036 FW: 2002 Plan Assessments as of 10/19/01 for EREC
## 5037 FW: 2002 Plan Assessments as of 10/19/01 for EREC
## 5038 FW: 2002 Plan Assessments as of 10/19/01 for ETS
## 5039 RE: Southern Trails Project
## 5040 RE: Southern Trails Project
## 5041 RE: 2002 Plan Lay Presentation Run Through
## 5042 RE: 2002 Plan Lay Presentation Run Through
## 5043 RE: 2002 Plan Lay Presentation Run Through
## 5044 RE: Oneok Claim on EPPI
## 5045 RE: Oneok Claim on EPPI
## 5046 RE: Oneok Claim on EPPI
## 5047 RE: Oneok Claim on EPPI
## 5048 RE: Oneok Claim on EPPI
## 5049 RE: Oneok Claim on EPPI
## 5050 RE: Oneok Claim on EPPI
## 5051 RE: Oneok Claim on EPPI
## 5052 RE: Oneok Claim on EPPI
## 5053 RE: Oneok Claim on EPPI
## 5054 RE: 3CE
## 5055 RE: 3CE
## 5056 RE: 3CE
## 5057 RE: 3CE
## 5058 RE: 3CE
## 5059 RE: 3CE
## 5060 RE: 3CE
## 5061 FW: Allocations
## 5062 FW: 2002 Plan Lay Presentation Run Through
## 5063 FW: Bullets for Week of October 15
## 5064 FW: Bullets for Week of October 15
## 5065 FW: Bullets for Week of October 15
## 5066 FW: Bullets for Week of October 15
## 5067 FW: Bullets for Week of October 15
## 5068 FW: Bullets for Week of October 15
## 5069 FW: Bullets for Week of October 15
## 5070 FW: October 18 4th Quarter Forecast Review with Stan Canceled
## 5071 FW: October 18 4th Quarter Forecast Review with Stan Canceled
## 5072 RE: 4 Quarter Update
## 5073 RE: 4 Quarter Update
## 5074 RE: 4 Quarter Update
## 5075 RE:
## 5076 RE: 4 Quarter Update
## 5077 RE: 4 Quarter Update
## 5078 RE: 4 Quarter Update
## 5079 RE: 4 Quarter Update
## 5080 FW: 2002 Plan Lay Presentation Run Through
## 5081 FW: 2002 Plan Lay Presentation Run Through
## 5082 RE: Louise Kitchen meeting rescheduled again
## 5083 4 Quarter Update
## 5084 4 Quarter Update
## 5085 4 Quarter Update
## 5086 4 Quarter Update
## 5087 4 Quarter Update
## 5088 4 Quarter Update
## 5089 4 Quarter Update
## 5090 4 Quarter Update
## 5091 4 Quarter Update
## 5092 4 Quarter Update
## 5093 FW: 2002 Plan Lay Presentation Run Through
## 5094 FW: 2002 Plan Lay Presentation Run Through
## 5095 FW: 2002 Plan Lay Presentation Run Through
## 5096 FW: 2002 Plan Lay Presentation Run Through
## 5097 FW: 2002 Plan Lay Presentation Run Through
## 5098 FW: 2002 Plan Lay Presentation Run Through
## 5099 2002 Plan Lay Presentation Run Through
## 5100 2002 Plan Lay Presentation Run Through
## 5101 2002 Plan Lay Presentation Run Through
## 5102 2002 Plan Lay Presentation Run Through
## 5103 2002 Plan Lay Presentation Run Through
## 5104 2002 Plan Lay Presentation Run Through
## 5105 2002 Plan Lay Presentation Run Through
## 5106 2002 Plan Lay Presentation Run Through
## 5107 2002 Plan Lay Presentation Run Through
## 5108 2002 Plan Lay Presentation Run Through
## 5109 2002 Plan Lay Presentation Run Through
## 5110 2002 Plan Lay Presentation Run Through
## 5111 2002 Plan Lay Presentation Run Through
## 5112 2002 Plan Lay Presentation Run Through
## 5113 2002 Plan Lay Presentation Run Through
## 5114 2002 Plan Lay Presentation Run Through
## 5115 2002 Plan Lay Presentation Run Through
## 5116 2002 Plan Lay Presentation Run Through
## 5117 2002 Plan Lay Presentation Run Through
## 5118 2002 Plan Lay Presentation Run Through
## 5119 2002 Plan Lay Presentation Run Through
## 5120 2002 Plan Lay Presentation Run Through
## 5121 2002 Plan Lay Presentation Run Through
## 5122 2002 Plan Lay Presentation Run Through
## 5123 2002 Plan Lay Presentation Run Through
## 5124 2002 Plan Lay Presentation Run Through
## 5125 2002 Plan Lay Presentation Run Through
## 5126 2002 Plan Lay Presentation Run Through
## 5127 2002 Plan Lay Presentation Run Through
## 5128 RE: Status of Trading Activities
## 5129 RE: EGAS 4th Qtr
## 5130 RE: EGAS 4th Qtr
## 5131 RE: Questar Southern Trails Due Diligence
## 5132 RE: Questar Southern Trails Due Diligence
## 5133 RE: Questar Southern Trails Due Diligence
## 5134 RE: Questar Southern Trails Due Diligence
## 5135 RE: Questar Southern Trails Due Diligence
## 5136 RE: LaPlata DRA Application Cost Estimate
## 5137 RE: Status of Trading Activities
## 5138 RE: 2002 Plan - Presentation Pages for Executive Review
## 5139 FW: BUSINESS REVIEWS IN EUROPE END OF 1ST QUARTER, 2002
## 5140 FW: BUSINESS REVIEWS IN EUROPE END OF 1ST QUARTER, 2002
## 5141
## 5142 FW: October 22 Meeting Canceled
## 5143 RE: Are you up for a make up game?
## 5144 RE: 2002 Capital Budget
## 5145 October 22 Meeting Canceled
## 5146 October 22 Meeting Canceled
## 5147 October 22 Meeting Canceled
## 5148 October 22 Meeting Canceled
## 5149 October 22 Meeting Canceled
## 5150 October 22 Meeting Canceled
## 5151 October 22 Meeting Canceled
## 5152 October 22 Meeting Canceled
## 5153 October 22 Meeting Canceled
## 5154 October 22 Meeting Canceled
## 5155 October 22 Meeting Canceled
## 5156 October 22 Meeting Canceled
## 5157 October 22 Meeting Canceled
## 5158 October 22 Meeting Canceled
## 5159 October 22 Meeting Canceled
## 5160 October 22 Meeting Canceled
## 5161 October 22 Meeting Canceled
## 5162 October 22 Meeting Canceled
## 5163 October 22 Meeting Canceled
## 5164 October 22 Meeting Canceled
## 5165 October 22 Meeting Canceled
## 5166 October 22 Meeting Canceled
## 5167 October 22 Meeting Canceled
## 5168 October 22 Meeting Canceled
## 5169 October 22 Meeting Canceled
## 5170 October 22 Meeting Canceled
## 5171 October 22 Meeting Canceled
## 5172 October 22 Meeting Canceled
## 5173 October 22 Meeting Canceled
## 5174 October 22 Meeting Canceled
## 5175 October 22 Meeting Canceled
## 5176 October 22 Meeting Canceled
## 5177 October 22 Meeting Canceled
## 5178 October 22 Meeting Canceled
## 5179 October 22 Meeting Canceled
## 5180 October 22 Meeting Canceled
## 5181 October 22 Meeting Canceled
## 5182 October 22 Meeting Canceled
## 5183 October 22 Meeting Canceled
## 5184 October 22 Meeting Canceled
## 5185 October 22 Meeting Canceled
## 5186 October 22 Meeting Canceled
## 5187 October 22 Meeting Canceled
## 5188 FW: Organizational Announcement
## 5189 FW: Updated 2002 Corporate Assessments - Revision #3
## 5190 RE: P00406292 - 643012 Kim Phan (Eva)
## 5191 RE: P00406292 - 643012 Kim Phan (Eva)
## 5192 RE: P00406292 - 643012 Kim Phan (Eva)
## 5193 RE: P00406292 - 643012 Kim Phan (Eva)
## 5194 RE: P00406292 - 643012 Kim Phan (Eva)
## 5195 RE: P00406292 - 643012 Kim Phan (Eva)
## 5196 RE: P00406292 - 643012 Kim Phan (Eva)
## 5197 RE: P00406292 - 643012 Kim Phan (Eva)
## 5198 FW: Updated 2002 Corporate Assessments - Revision #3
## 5199 FW: Updated 2002 Corporate Assessments - Revision #3
## 5200 FW: Updated 2002 Corporate Assessments - Revision #3
## 5201 FW: Updated 2002 Corporate Assessments - Revision #3
## 5202 FW: Updated 2002 Corporate Assessments - Revision #3
## 5203 RE: Lay Presentation
## 5204 RE: Lay Presentation
## 5205 RE: Lay Presentation
## 5206 RE: Lay Presentation
## 5207 RE: Nutcracker Market
## 5208 RE: Nutcracker Market
## 5209 RE: EGAS 4th Qtr
## 5210 RE: EGAS 4th Qtr
## 5211 RE: EGAS 4th Qtr
## 5212 RE: EGAS 4th Qtr
## 5213 RE: EGAS 4th Qtr
## 5214 RE: EGAS 4th Qtr
## 5215 RE: EGAS 4th Qtr
## 5216 RE: EGAS 4th Qtr
## 5217 RE: EGAS 4th Qtr
## 5218 RE: Lay Presentation
## 5219 RE: Lay Presentation
## 5220 RE: Lay Presentation
## 5221 RE: Lay Presentation
## 5222 RE: How are we doing and what are my issues meeting?
## 5223 RE: How are we doing and what are my issues meeting?
## 5224 RE: How are we doing and what are my issues meeting?
## 5225 RE: Additional followup earnings release questions from Tony Jackson
## 5226 RE: ETS resource requirements
## 5227 Accepted: Updated: Location updated....Data Warehouse Efforts Re: Adaytum, Plan and Cost Reporting for 2002
## 5228 RE: Coyonosa
## 5229 RE: Coyonosa
## 5230 FW: 2 nd version of Plan...
## 5231 FW: TW-COGS
## 5232 RE: 2 nd version of Plan...
## 5233 RE: 2 nd version of Plan...
## 5234 RE: 2 nd version of Plan...
## 5235 RE: 2 nd version of Plan...
## 5236 RE: 2 nd version of Plan...
## 5237 RE: 2 nd version of Plan...
## 5238 RE: 2 nd version of Plan...
## 5239 FW: 2002 Plan Allocations from ENA
## 5240 FW: Adaytum Invoices Issues
## 5241 RE: Exceptions
## 5242 RE: UH 2000 Recruiting Team.xls
## 5243 ETS Commercial Summary Page
## 5244 FW: 2002 Plan Pres
## 5245 October 18 4th Quarter Forecast Review with Stan Canceled
## 5246 October 18 4th Quarter Forecast Review with Stan Canceled
## 5247 October 18 4th Quarter Forecast Review with Stan Canceled
## 5248 October 18 4th Quarter Forecast Review with Stan Canceled
## 5249 October 18 4th Quarter Forecast Review with Stan Canceled
## 5250 October 18 4th Quarter Forecast Review with Stan Canceled
## 5251 October 18 4th Quarter Forecast Review with Stan Canceled
## 5252 October 18 4th Quarter Forecast Review with Stan Canceled
## 5253 October 18 4th Quarter Forecast Review with Stan Canceled
## 5254 October 18 4th Quarter Forecast Review with Stan Canceled
## 5255 October 18 4th Quarter Forecast Review with Stan Canceled
## 5256 October 18 4th Quarter Forecast Review with Stan Canceled
## 5257 October 18 4th Quarter Forecast Review with Stan Canceled
## 5258 October 18 4th Quarter Forecast Review with Stan Canceled
## 5259 October 18 4th Quarter Forecast Review with Stan Canceled
## 5260 October 18 4th Quarter Forecast Review with Stan Canceled
## 5261 October 18 4th Quarter Forecast Review with Stan Canceled
## 5262 October 18 4th Quarter Forecast Review with Stan Canceled
## 5263 October 18 4th Quarter Forecast Review with Stan Canceled
## 5264 October 18 4th Quarter Forecast Review with Stan Canceled
## 5265 October 18 4th Quarter Forecast Review with Stan Canceled
## 5266 October 18 4th Quarter Forecast Review with Stan Canceled
## 5267 October 18 4th Quarter Forecast Review with Stan Canceled
## 5268 October 18 4th Quarter Forecast Review with Stan Canceled
## 5269 October 18 4th Quarter Forecast Review with Stan Canceled
## 5270 October 18 4th Quarter Forecast Review with Stan Canceled
## 5271 October 18 4th Quarter Forecast Review with Stan Canceled
## 5272 October 18 4th Quarter Forecast Review with Stan Canceled
## 5273 October 18 4th Quarter Forecast Review with Stan Canceled
## 5274 October 18 4th Quarter Forecast Review with Stan Canceled
## 5275 October 18 4th Quarter Forecast Review with Stan Canceled
## 5276 October 18 4th Quarter Forecast Review with Stan Canceled
## 5277 October 18 4th Quarter Forecast Review with Stan Canceled
## 5278 October 18 4th Quarter Forecast Review with Stan Canceled
## 5279 October 18 4th Quarter Forecast Review with Stan Canceled
## 5280 FW: Outage Commericial Review Meeting
## 5281 FW: Outage Commericial Review Meeting
## 5282 FW: Cal s resume
## 5283 FW: Cal s resume
## 5284 RE: September Capital Charge
## 5285 FW: 2002 Plan Review Agenda
## 5286 FW: September Capital Charge
## 5287 FW:
## 5288 RE: 620382: Greg McIlwain: DB
## 5289 RE:
## 5290 RE:
## 5291 RE:
## 5292 FW: ETS SLIDES
## 5293 FW: ETS SLIDES
## 5294 FW: ETS SLIDES
## 5295 RE: SAP COSTS 2002
## 5296 SAP COSTS 2002
## 5297 SAP COSTS 2002
## 5298 SAP COSTS 2002
## 5299 SAP COSTS 2002
## 5300 RE: Allocations in the 2002 Plan
## 5301 RE: ETS SLIDES
## 5302 FW: 2002 Plan
## 5303 RE: NNG Commercial "Worry List for 2002"
## 5304 RE: NNG Commercial "Worry List for 2002"
## 5305
## 5306
## 5307 RE:
## 5308 RE: Lay Agenda
## 5309 RE: Password needed FW: ETS Statistics
## 5310 RE: Password needed FW: ETS Statistics
## 5311 RE: Password needed FW: ETS Statistics
## 5312 RE: Password needed FW: ETS Statistics
## 5313 RE: Password needed FW: ETS Statistics
## 5314 RE: Password needed FW: ETS Statistics
## 5315 RE: Password needed FW: ETS Statistics
## 5316 RE: Proposed Meeting next Thursday
## 5317 Lay Agenda
## 5318 Lay Review Agenda
## 5319 EGAS 2002 Capital Budget Review
## 5320 EGAS 2002 Capital Budget Review
## 5321 EGAS 2002 Capital Budget Review
## 5322 NEPCO Meeting Oct. 9
## 5323 NEPCO Meeting Oct. 9
## 5324 NEPCO Meeting Oct. 9
## 5325 NEPCO Meeting Oct. 9
## 5326 NEPCO Meeting Oct. 9
## 5327 NEPCO Meeting Oct. 9
## 5328 NEPCO Meeting Oct. 9
## 5329 RE: Proposed Meeting next Thursday
## 5330 RE: Proposed Meeting next Thursday
## 5331 FW: 2002 Plan
## 5332 RE: Proposed Meeting next Thursday
## 5333 RE: Proposed Meeting next Thursday
## 5334 RE: Proposed Meeting next Thursday
## 5335 RE: Proposed Meeting next Thursday
## 5336 RE: Proposed Meeting next Thursday
## 5337 RE: 3rd Quarter Reporting Package for 2001 (E-Schedules)
## 5338 FW: Standby / Cooper Pre-Buy
## 5339 FW: Standby / Cooper Pre-Buy
## 5340 RE: Proposed Meeting next Thursday
## 5341 RE: Proposed Meeting next Thursday
## 5342 RE: Proposed Meeting next Thursday
## 5343 RE: Proposed Meeting next Thursday
## 5344 FW: Functional Roll Forward
## 5345 RE: October Weekly
## 5346 FW: NNG & TW Ad Valorem Tax Accrual - 2002 Plan vs. 2001 Forecast
## 5347 RE: corp charges review
## 5348 RE: O & M in categories by legal entity.
## 5349 FW:
## 5350 RE: 2002 O&M by Legal Entity
## 5351 RE: 2002 O&M by Legal Entity
## 5352 RE: 2002 O&M by Legal Entity
## 5353 RE: 2002 O&M by Legal Entity
## 5354 RE: 2002 O&M by Legal Entity
## 5355 RE: 2002 O&M by Legal Entity
## 5356 RE: 2002 O&M by Legal Entity
## 5357 RE: corp charges review
## 5358 RE: corp charges review
## 5359 RE: corp charges review
## 5360 RE: 2002 Budget Review - EEOS
## 5361 RE: 2002 Budget Review - EEOS
## 5362 FW: 2002 Budget Review - EEOS
## 5363 RE: United Way Young Leaders
## 5364 FW: Days Off
## 5365 RE: Days Off
## 5366 FW: REQUEST - 2001 Operating Expenses - High Priority
## 5367 FW: EGF 2002 Allocations - ETS/Others
## 5368 FW: EGF 2002 Allocations - ETS/Others
## 5369 RE: c.c.#111703
## 5370 RE: Weekly Commercial Net Contribution Summary
## 5371 O & M in categories by legal entity.
## 5372 O & M in categories by legal entity.
## 5373 O & M in categories by legal entity.
## 5374 FW: 2002 Plan Template - REVISION
## 5375 FW: 2002 Plan Template - REVISION
## 5376 FW: 2002 Plan Template - REVISION
## 5377 FW: 2002 Plan Template - REVISION
## 5378 FW: 2002 Plan Template - REVISION
## 5379 RE: 2002 Budget Review - EEOS
## 5380 RE: 2002 Budget Review - EEOS
## 5381 RE: 2002 Budget Review - EEOS
## 5382 RE: 2002 Budget Review - EEOS
## 5383 RE: 2002 Budget Review - EEOS
## 5384 RE: 2002 Budget Review - EEOS
## 5385 RE: 2002 Budget Review - EEOS
## 5386 RE: Help
## 5387 RE: TW 2002 Plan Summary
## 5388 FW: Azurix 2002 Plan Review
## 5389 FW: Azurix 2002 Plan Review
## 5390 FW: Azurix 2002 Plan Review
## 5391 FW: Azurix 2002 Plan Review
## 5392 FW: Azurix 2002 Plan Review
## 5393 FW: Azurix 2002 Plan Review
## 5394 FW: Azurix 2002 Plan Review
## 5395 FW:
## 5396 FW: Azurix 2002 Plan Review
## 5397 RE: Weekly Commercial Net Contribution Summary
## 5398 RE: Weekly Commercial Net Contribution Summary
## 5399 RE: Weekly Commercial Net Contribution Summary
## 5400 RE: Weekly Commercial Net Contribution Summary
## 5401 RE: Weekly Commercial Net Contribution Summary
## 5402 RE: Weekly Commercial Net Contribution Summary
## 5403 RE:
## 5404 RE: REQUEST - 2001 Operating Expenses - High Priority
## 5405 FW: Azurix 2002 Plan Review
## 5406 FW: Azurix 2002 Plan Review
## 5407 FW:
## 5408 RE: Honeymoon in Vegas
## 5409 FW: REQUEST - 2001 Operating Expenses - High Priority
## 5410 RE: Azurix 2002 Plan Review
## 5411 FW: REQUEST - 2001 Operating Expenses - High Priority
## 5412 FW: REQUEST - 2001 Operating Expenses - High Priority
## 5413 FW: REQUEST - 2001 Operating Expenses - High Priority
## 5414 FW: REQUEST - 2001 Operating Expenses - High Priority
## 5415 Azurix 2002 Plan Review
## 5416 Azurix 2002 Plan Review
## 5417 Azurix 2002 Plan Review
## 5418 FW: REQUEST - 2001 Operating Expenses - High Priority
## 5419 FW: 2002 Plan
## 5420 Targets
## 5421
## 5422 FW: 2002 Plan Headcount for ENW
## 5423 RE: FW:
## 5424 RE: FW:
## 5425 RE: Azurix 2002 Plan Review
## 5426 FW: Project Sunrise September 30 Go-Live Status
## 5427 FW: Azurix 2002 Plan Review
## 5428 RE:
## 5429 Azurix 2002 Plan Review
## 5430 Wessex 2002 Plan Review with Stan
## 5431 Wessex 2002 Plan Review with Stan
## 5432 Wessex 2002 Plan Review with Stan
## 5433 Wessex 2002 Plan Review with Stan
## 5434 Wessex 2002 Plan Review with Stan
## 5435 Wessex 2002 Plan Review with Stan
## 5436 Wessex 2002 Plan Review with Stan
## 5437 FW: New Employee Expense accounts
## 5438 FW: Hoang s Availability - Week of 10/29
## 5439 RE: TW Daily Balance 09/27/01
## 5440 RE: TW Daily Balance 09/27/01
## 5441 RE: TW Daily Balance 09/27/01
## 5442 RE: TW Daily Balance 09/27/01
## 5443 RE: TW Daily Balance 09/27/01
## 5444 RE: TW Daily Balance 09/27/01
## 5445 RE: TW Daily Balance 09/27/01
## 5446 4th Q IBIT
## 5447 4th Q IBIT
## 5448 4th Q IBIT
## 5449 4th Q IBIT
## 5450 4th Q IBIT
## 5451 RE:
## 5452 insurance
## 5453 RE:
## 5454
## 5455 RE:
## 5456 RE:
## 5457 RE: TW Order 637 Filing
## 5458 RE: Doctor s Appointment
## 5459 TW Order 637 Filing
## 5460 TW Order 637 Filing
## 5461 TW Order 637 Filing
## 5462 TW Order 637 Filing
## 5463 TW Order 637 Filing
## 5464 TW Order 637 Filing
## 5465 TW Order 637 Filing
## 5466 TW Order 637 Filing
## 5467 TW Order 637 Filing
## 5468 RE:
## 5469 RE: Doctor s Appointment
## 5470 Doctor s Appointment
## 5471 RE: REORIENTATION
## 5472 RE: PPA Processing
## 5473 FW: PPA Processing
## 5474 FW: PPA Processing
## 5475 FW: PPA Processing
## 5476 RE: Accumulated Deferred inc taxes
## 5477 FW: Please plan to attend
## 5478 FW: TW Tariff
## 5479 FW: TW Tariff
## 5480 FW: Quote for the day, #1,246.
## 5481 RE: TW rate sheets
## 5482 RE: TW rate sheets
## 5483 RE: TW rate sheets
## 5484 RE: TW rate sheets
## 5485 RE: TW rate sheets
## 5486 RE: TW Year End Audit
## 5487 RE: TW Year End Audit
## 5488 RE: West Florida Electric Co-op for Sta. 13
## 5489 FW: West Florida Electric Co-op for Sta. 13
## 5490 RE: March Vacation Plan
## 5491 FW: i luv this one
## 5492 RE: Phase V Pack, Purge and Blowdown Strategy Meeting 2/27/02 9AM in 46C2
## 5493 Invoice from Platt s
## 5494 Invoice from Platt s
## 5495 Invoice from Platt s
## 5496 Invoice from Platt s
## 5497 Invoice from Platt s
## 5498 Invoice from Platt s
## 5499 Invoice from Platt s
## 5500 Invoice from Platt s
## 5501 Invoice from Platt s
## 5502 RE: TW rate base at 12/31/01
## 5503 FW: Current Regulatory Regime
## 5504 FW: Current Regulatory Regime
## 5505 RE: PAL Postings
## 5506 RE: PAL Postings
## 5507 RE: PAL Postings
## 5508 RE: PAL Postings
## 5509 RE: PAL Postings
## 5510 RE: PAL Postings
## 5511 FW: Interest Rate in Tariff
## 5512 RE: Today
## 5513 RE: Fuel Meeting Rescheduled
## 5514 RE: Fuel Meeting Rescheduled
## 5515 RE: Fuel Meeting Rescheduled
## 5516 RE: Fuel Meeting Rescheduled
## 5517 RE: Fuel Meeting Rescheduled
## 5518 RE: Fuel Meeting Rescheduled
## 5519 RE: Fuel Meeting Rescheduled
## 5520 RE: Fuel Meeting Rescheduled
## 5521 RE: Fuel Meeting Rescheduled
## 5522 FERC Reporting Requirements for California Gas Deliveries
## 5523 FERC Reporting Requirements for California Gas Deliveries
## 5524 FERC Reporting Requirements for California Gas Deliveries
## 5525 FERC Reporting Requirements for California Gas Deliveries
## 5526 FERC Reporting Requirements for California Gas Deliveries
## 5527 FERC Reporting Requirements for California Gas Deliveries
## 5528 FERC Reporting Requirements for California Gas Deliveries
## 5529 RE: Fuel Meeting Rescheduled
## 5530 RE: Fuel Meeting Rescheduled
## 5531 RE: Fuel Meeting Rescheduled
## 5532 RE: Fuel Meeting Rescheduled
## 5533 RE: Fuel Meeting Rescheduled
## 5534 RE: Fuel Meeting Rescheduled
## 5535 RE: Fuel Meeting Rescheduled
## 5536 RE: Fuel Meeting Rescheduled
## 5537 RE: Meeting
## 5538 RE: Plan Assumptions with Stan, 2/6/02, 8:00 am
## 5539 RE: Plan Assumptions with Stan, 2/6/02, 8:00 am
## 5540 RE: Plan Assumptions with Stan, 2/6/02, 8:00 am
## 5541 RE: Plan Assumptions with Stan, 2/6/02, 8:00 am
## 5542 RE: Plan Assumptions with Stan, 2/6/02, 8:00 am
## 5543 RE: Plan Assumptions with Stan, 2/6/02, 8:00 am
## 5544 RE: Plan Assumptions with Stan, 2/6/02, 8:00 am
## 5545 RE: Plan Assumptions with Stan, 2/6/02, 8:00 am
## 5546 RE: INGAA Conference Call
## 5547 RE: INGAA Conference Call
## 5548 RE: TW Overhead WO
## 5549 RE: TW Overhead WO
## 5550 RE: TW Overhead WO
## 5551 RE: TW Overhead WO
## 5552 RE: TW Overhead WO
## 5553 RE: TW Overhead WO
## 5554 RE: TW Overhead WO
## 5555 RE: TW Overhead WO
## 5556 RE: TW Overhead WO
## 5557 RE: TW Overhead WO
## 5558 RE: Appointments
## 5559 RE: SoCalGas Counter Offer
## 5560 RE: DVC Letter
## 5561 RE: DVC Letter
## 5562 RE: DVC Letter
## 5563 RE: DVC Letter
## 5564 RE: AVAILABLE FIRM CAPACITY ON TRANSWESTERN
## 5565 RE: AVAILABLE FIRM CAPACITY ON TRANSWESTERN
## 5566 RE: AVAILABLE FIRM CAPACITY ON TRANSWESTERN
## 5567 RE: TW Tariff changes to allow for Electronic Contracting
## 5568 RE: TW Tariff changes to allow for Electronic Contracting
## 5569 RE: TW Tariff changes to allow for Electronic Contracting
## 5570 RE: TW Tariff changes to allow for Electronic Contracting
## 5571 RE: TW Tariff changes to allow for Electronic Contracting
## 5572 RE: TW Tariff changes to allow for Electronic Contracting
## 5573 RE: TW Tariff changes to allow for Electronic Contracting
## 5574 RE: TW Tariff changes to allow for Electronic Contracting
## 5575 RE: TW Tariff changes to allow for Electronic Contracting
## 5576 RE: Motion to Intervene in PG&E FERC Proceeding
## 5577 RE: Motion to Intervene in PG&E FERC Proceeding
## 5578 RE: Motion to Intervene in PG&E FERC Proceeding
## 5579 RE: Motion to Intervene in PG&E FERC Proceeding
## 5580 RE: Motion to Intervene in PG&E FERC Proceeding
## 5581 RE: Motion to Intervene in PG&E FERC Proceeding
## 5582 RE: Motion to Intervene in PG&E FERC Proceeding
## 5583 RE: Motion to Intervene in PG&E FERC Proceeding
## 5584 RE: Motion to Intervene in PG&E FERC Proceeding
## 5585 RE: Interconnect Agreement - Questar Southern Trails
## 5586 RE: PGS Segmenting Alternate Pt. Priorities
## 5587 RE: Why markers don t make good Christmas gifts...
## 5588 RE: PGS Segmenting Alternate Pt. Priorities
## 5589 RE: TW Tariff Sheet 73
## 5590 RE: TW Tariff Sheet 73
## 5591 RE: TW Tariff Sheet 73
## 5592 RE: TW Tariff Sheet 73
## 5593 RE: TW Tariff Sheet 73
## 5594 RE: TW Tariff Sheet 73
## 5595 RE: TW Tariff Sheet 73
## 5596 RE: TW Tariff Sheet 73
## 5597 RE: TW Tariff Sheet 73
## 5598 FW: Fw: A cat s tale
## 5599 FW: Fw: A cat s tale
## 5600 FW: Web Site Posting for New Cash Out Pricing Provisions
## 5601 FW: RED ROCK WEEKLY REPORT W/E 01/10/02
## 5602 RE: SFTS conversions
## 5603 RE: SFTS conversions
## 5604 RE: SFTS conversions
## 5605 RE: SFTS conversions
## 5606 RE: SFTS conversions
## 5607 RE: SFTS conversions
## 5608 RE: SFTS conversions
## 5609 RE: SFTS conversions
## 5610 FW: Web Site Posting for New Cash Out Pricing Provisions
## 5611 RE: How To Tell Which Cat Ate Your Drugs
## 5612 RE: Index Posting
## 5613 RE: Index Posting
## 5614 RE: Index Posting
## 5615 RE: Index Posting
## 5616 FW: 2nd Revised Ratings Outline - TW
## 5617 RE: Attachment A - Payment Schedule
## 5618 RE: Attachment A - Payment Schedule
## 5619 RE: Attachment A - Payment Schedule
## 5620 RE: Attachment A - Payment Schedule
## 5621 RE: Attachment A - Payment Schedule
## 5622 RE: Attachment A - Payment Schedule
## 5623 RE: Attachment A - Payment Schedule
## 5624 RE: Can t Please Everyone
## 5625 RE: Paper Situation
## 5626 RE: Paper Situation
## 5627 RE: Paper Situation
## 5628 RE: Paper Situation
## 5629 RE: Paper Situation
## 5630 RE: Paper Situation
## 5631 RE: Paper Situation
## 5632 RE: Paper Situation
## 5633 RE: Paper Situation
## 5634 RE: Paper Situation
## 5635 RE: Paper Situation
## 5636 RE: Paper Situation
## 5637 RE: Paper Situation
## 5638 RE: Paper Situation
## 5639 RE: Paper Situation
## 5640 RE: Paper Situation
## 5641 RE: Paper Situation
## 5642 RE: Paper Situation
## 5643 RE: Paper Situation
## 5644 RE: Paper Situation
## 5645 RE: Paper Situation
## 5646 RE: Paper Situation
## 5647 RE: Paper Situation
## 5648 RE: Paper Situation
## 5649 RE: Paper Situation
## 5650 RE: Paper Situation
## 5651 RE: Paper Situation
## 5652 RE: Paper Situation
## 5653 RE: Paper Situation
## 5654 RE: Paper Situation
## 5655 RE: Paper Situation
## 5656 RE: Paper Situation
## 5657 RE: Paper Situation
## 5658 RE: Paper Situation
## 5659 RE: Paper Situation
## 5660 RE: Paper Situation
## 5661 RE: Paper Situation
## 5662 RE: Paper Situation
## 5663 RE: Paper Situation
## 5664 RE: Paper Situation
## 5665 RE: Paper Situation
## 5666 RE: Paper Situation
## 5667 RE: Paper Situation
## 5668 RE: Paper Situation
## 5669 RE: Paper Situation
## 5670 RE: Paper Situation
## 5671 RE: Paper Situation
## 5672 RE: Paper Situation
## 5673 RE: Paper Situation
## 5674 RE: Paper Situation
## 5675 RE: Paper Situation
## 5676 RE: Paper Situation
## 5677 RE: Paper Situation
## 5678 RE: Paper Situation
## 5679 RE: Paper Situation
## 5680 RE: Paper Situation
## 5681 RE: Paper Situation
## 5682 RE: Paper Situation
## 5683 RE: Paper Situation
## 5684 RE: Paper Situation
## 5685 RE: Paper Situation
## 5686 RE: Paper Situation
## 5687 RE: Paper Situation
## 5688 RE: Paper Situation
## 5689 RE: Paper Situation
## 5690 RE: Paper Situation
## 5691 RE: Paper Situation
## 5692 RE: Paper Situation
## 5693 RE: Paper Situation
## 5694 RE: Paper Situation
## 5695 RE: Paper Situation
## 5696 RE: Paper Situation
## 5697 RE: Jeanette Doll
## 5698 RE: Jeanette Doll
## 5699 RE: Jeanette Doll
## 5700 RE: Jeanette Doll
## 5701 RE: Jeanette Doll
## 5702 RE: Jeanette Doll
## 5703 RE: Jeanette Doll
## 5704 RE: Jeanette Doll
## 5705 RE: Jeanette Doll
## 5706 RE: Jeanette Doll
## 5707 RE: Jeanette Doll
## 5708 RE: Jeanette Doll
## 5709 RE: Jeanette Doll
## 5710 RE: Jeanette Doll
## 5711 RE: Jeanette Doll
## 5712 RE: Jeanette Doll
## 5713 FW: Jeanette Doll
## 5714 FW: Jeanette Doll
## 5715 Toaster
## 5716 Toaster
## 5717 Toaster
## 5718 Toaster
## 5719 Toaster
## 5720 Toaster
## 5721 Toaster
## 5722 Toaster
## 5723 Toaster
## 5724 Toaster
## 5725 Toaster
## 5726 Toaster
## 5727 Toaster
## 5728 Toaster
## 5729 Toaster
## 5730 Toaster
## 5731 Toaster
## 5732 Toaster
## 5733 Toaster
## 5734 Toaster
## 5735 Toaster
## 5736 Toaster
## 5737 Toaster
## 5738 Toaster
## 5739 Toaster
## 5740 Toaster
## 5741 Toaster
## 5742 FW: Paper Situation
## 5743 FW: Paper Situation
## 5744 FW: Paper Situation
## 5745 FW: Paper Situation
## 5746 FW: Paper Situation
## 5747 FW: Paper Situation
## 5748 FW: Paper Situation
## 5749 FW: Paper Situation
## 5750 RE: Capacity Lease (Backhaul) - Gulfstream
## 5751 RE: Capacity Lease (Backhaul) - Gulfstream
## 5752 RE: Capacity Lease (Backhaul) - Gulfstream
## 5753 RE: Capacity Lease (Backhaul) - Gulfstream
## 5754 RE: Capacity Lease (Backhaul) - Gulfstream
## 5755 RE: Capacity Lease (Backhaul) - Gulfstream
## 5756 FW: Transwestern Pipeline Company
## 5757 FW: Transwestern Pipeline Company
## 5758 FW: Transwestern Pipeline Company
## 5759 RE: F.P.U. NEW SMYRNA DELIVERY POINT QUESTION
## 5760 RE: F.P.U. NEW SMYRNA DELIVERY POINT QUESTION
## 5761 RE: F.P.U. NEW SMYRNA DELIVERY POINT QUESTION
## 5762 RE: F.P.U. NEW SMYRNA DELIVERY POINT QUESTION
## 5763 RE: F.P.U. NEW SMYRNA DELIVERY POINT QUESTION
## 5764 RE: F.P.U. NEW SMYRNA DELIVERY POINT QUESTION
## 5765 RE: F.P.U. NEW SMYRNA DELIVERY POINT QUESTION
## 5766 RE: F.P.U. NEW SMYRNA DELIVERY POINT QUESTION
## 5767 RE: F.P.U. NEW SMYRNA DELIVERY POINT QUESTION
## 5768 RE: F.P.U. NEW SMYRNA DELIVERY POINT QUESTION
## 5769 RE: FPU
## 5770 RE: FPU
## 5771 RE: Angels are ....
## 5772 FW: Angels are ....
## 5773 FW: Angels are ....
## 5774 FW: Angels are ....
## 5775 FW: Angels are ....
## 5776 FW: Angels are ....
## 5777 FW: Angels are ....
## 5778 FW: Angels are ....
## 5779 FW: Angels are ....
## 5780 FW: Angels are ....
## 5781 FW: Angels are ....
## 5782 FW: Angels are ....
## 5783 RE: Gas Daily Table
## 5784 RE: Gas Daily Table
## 5785 RE: Electric Compression
## 5786 RE: Test
## 5787 RE: ETS TW Teams Appreciation Luncheon - Last Round
## 5788 RE: T-shirt
## 5789 RE: LFT Language
## 5790 FW: P.A. Agave I/c
## 5791 FW: P.A. Agave I/c
## 5792 FW: P.A. Agave I/c
## 5793 FW: P.A. Agave I/c
## 5794 FW: P.A. Agave I/c
## 5795 FW: P.A. Agave I/c
## 5796 FW: P.A. Agave I/c
## 5797 FW: P.A. Agave I/c
## 5798 FW: P.A. Agave I/c
## 5799 Loaned Gas Audit
## 5800 FW: Electronic Contracting Compliance Filing
## 5801 RE: Pemex (MGI) Proposal
## 5802 RE: Pemex (MGI) Proposal
## 5803 RE: Pemex (MGI) Proposal
## 5804 RE: Pemex (MGI) Proposal
## 5805 RE: Pemex (MGI) Proposal
## 5806 RE: Pemex (MGI) Proposal
## 5807 RE: Pemex (MGI) Proposal
## 5808 RE: Pemex (MGI) Proposal
## 5809 RE: Pemex (MGI) Proposal
## 5810 RE: Question
## 5811 RE: Question
## 5812 RE: Chairman s Award Nomination for Alice Johnson
## 5813 RE: Compressor Station # 6
## 5814 RE: Compressor Station # 6
## 5815 RE: Compressor Station # 6
## 5816 RE: Compressor Station # 6
## 5817 RE: Compressor Station # 6
## 5818 RE: Compressor Station # 6
## 5819 RE: Compressor Station # 6
## 5820 FW: Amending Red Rock Contracts
## 5821 FW: Amending Red Rock Contracts
## 5822 FW: Amending Red Rock Contracts
## 5823 FW: Settlement Offer
## 5824 FW: Settlement Offer
## 5825 FW: Transwestern Proposed Tariff Sheets for Settlement
## 5826 RE: Amending Red Rock Contracts
## 5827 RE: Amending Red Rock Contracts
## 5828 RE: Amending Red Rock Contracts
## 5829 RE: Amending Red Rock Contracts
## 5830 RE: Amending Red Rock Contracts
## 5831 RE: Amending Red Rock Contracts
## 5832 RE: Amending Red Rock Contracts
## 5833 RE: Amending Red Rock Contracts
## 5834 RE: Amending Red Rock Contracts
## 5835 FW: First military move
## 5836 FW: Updated chart
## 5837 FW: Settlement Offer of Transwestern Pipeline Company
## 5838 FW: Settlement Offer of Transwestern Pipeline Company
## 5839 FW: Gas Daily Zone 2 gas prices
## 5840 FW: Increased Take-away at SoCal Needles
## 5841 FW: Nonviolent Solutions
## 5842 FW: Nonviolent Solutions
## 5843 FW: Nonviolent Solutions
## 5844 FW: Nonviolent Solutions
## 5845 FW: Nonviolent Solutions
## 5846 FW: Nonviolent Solutions
## 5847 FW: Nonviolent Solutions
## 5848 FW: Nonviolent Solutions
## 5849 FW: Nonviolent Solutions
## 5850 FW: Location change - Sun Devil weekly meeting
## 5851 FW: Revised meeting location for Sun Devil update (again)
## 5852 RE: Invitation to Jennifer Lev s Baby Shower
## 5853 FW: Questar Southern Trail West Leg due diligence meeting
## 5854 RE: EB15C1 for Monday s Sun Devil Meeting from 3-4
## 5855 RE: EB15C1 for Monday s Sun Devil Meeting from 3-4
## 5856 RE: EB15C1 for Monday s Sun Devil Meeting from 3-4
## 5857 RE: EB15C1 for Monday s Sun Devil Meeting from 3-4
## 5858 RE: EB15C1 for Monday s Sun Devil Meeting from 3-4
## 5859 RE: EB15C1 for Monday s Sun Devil Meeting from 3-4
## 5860 RE: EB15C1 for Monday s Sun Devil Meeting from 3-4
## 5861 RE: EB15C1 for Monday s Sun Devil Meeting from 3-4
## 5862 RE: EB15C1 for Monday s Sun Devil Meeting from 3-4
## 5863 RE: EB15C1 for Monday s Sun Devil Meeting from 3-4
## 5864 FW: EB15C1 for Monday s Sun Devil Meeting from 3-4
## 5865 FW: Southern Trails Data Request List
## 5866 RE: Trying to set up conf call re: TW Weather Drivative (involves potential affiliate issue)
## 5867 FW: Article on Enron
## 5868 FW: Article on Enron
## 5869 FW: Article on Enron
## 5870 FW: Article on Enron
## 5871 FW: Article on Enron
## 5872 FW: Article on Enron
## 5873 RE: Article on Enron
## 5874 RE: Order 637--Imbalance Provisions
## 5875
## 5876 Visitor
## 5877 FW: LONG BUT WORTH IT !
## 5878 RE: LONG BUT WORTH IT !
## 5879 Great ones
## 5880 Future of Military Funding
## 5881 Excerpts From "A Cat s Guide To Human Beings"
## 5882 Subject: Black Panties
## 5883 FW: Big Kitty
## 5884
## 5885 FW: The World Today
## 5886 RE: PAL Postings
## 5887 Updated: Red Rock PSR
## 5888 Updated: Red Rock PSR
## 5889 Updated: Red Rock PSR
## 5890 Updated: Red Rock PSR
## 5891 PAL Postings
## 5892 ETS and Corporate Change Control
## 5893 ETS and Corporate Change Control
## 5894 RED ROCK WEEKLY REPORT W/E 02/14/02
## 5895 RED ROCK WEEKLY REPORT W/E 02/14/02
## 5896 RED ROCK WEEKLY REPORT W/E 02/14/02
## 5897 Interest Rate in Tariff
## 5898 Phase V Tie In
## 5899 Phase V Tie In
## 5900 Transwestern FERC California Monthly Report - January 2002 (Preliminary)
## 5901 Transwestern FERC California Monthly Report - January 2002 (Preliminary)
## 5902 Transwestern FERC California Monthly Report - January 2002 (Preliminary)
## 5903 Transwestern FERC California Monthly Report - January 2002 (Preliminary)
## 5904 Transwestern FERC California Monthly Report - January 2002 (Preliminary)
## 5905 Transwestern FERC California Monthly Report - January 2002 (Preliminary)
## 5906 Welcome Baby Patterson
## 5907 Steve s Staff Meeting - Holiday Change
## 5908 Steve s Staff Meeting - Holiday Change
## 5909 Steve s Staff Meeting - Holiday Change
## 5910 Steve s Staff Meeting - Holiday Change
## 5911 Steve s Staff Meeting - Holiday Change
## 5912 Steve s Staff Meeting - Holiday Change
## 5913 Steve s Staff Meeting - Holiday Change
## 5914 Steve s Staff Meeting - Holiday Change
## 5915 FW: Phase V exhibits
## 5916 FW: Fuel Meeting Rescheduled
## 5917 FW: Fuel Meeting Rescheduled
## 5918 FW: Fuel Meeting Rescheduled
## 5919 FW: Fuel Meeting Rescheduled
## 5920 RE: FERC Reporting Requirements for California Gas Deliveries
## 5921 Weekly Report of 2/8/02
## 5922 Weekly Report of 2/8/02
## 5923 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5924 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5925 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5926 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5927 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5928 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5929 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5930 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5931 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5932 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5933 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5934 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5935 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5936 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5937 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5938 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5939 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5940 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5941 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5942 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5943 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5944 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5945 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5946 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5947 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5948 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5949 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5950 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5951 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5952 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5953 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5954 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5955 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5956 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5957 2002 Initiatives Meeting
## 5958 2002 Initiatives Meeting
## 5959 2002 Initiatives Meeting
## 5960 Order 637 ROFR Pricing Policy
## 5961 FW: Fuel Meeting Rescheduled
## 5962 FW: Fuel Meeting Rescheduled
## 5963 FW: Fuel Meeting Rescheduled
## 5964 FW: Fuel Meeting Rescheduled
## 5965 CPUC Data Request
## 5966 CPUC Data Request
## 5967 CPUC Data Request
## 5968 Business plan outline and time table
## 5969 Discussions on FT Shippers Changing Primary Points
## 5970 Discussions on FT Shippers Changing Primary Points
## 5971 Discussions on FT Shippers Changing Primary Points
## 5972 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5973 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5974 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5975 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5976 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5977 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5978 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5979 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5980 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5981 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5982 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5983 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5984 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5985 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5986 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5987 RE: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5988 FW: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5989 FW: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5990 FW: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5991 FW: Transwestern Pipeline Payment Under Protest (Confirmed PAYMENT BY MAIL ONLY - $356,736.95)
## 5992 Welcome Baby Patterson
## 5993 FW: FW: How to tell which cat ate your Prozac !!!
## 5994 Revised Assumption Discussion Points for hand out
## 5995 Revised Assumption Discussion Points for hand out
## 5996 Assumption topics
## 5997 Sun Devil meeting today cancelled
## 5998 Sun Devil meeting today cancelled
## 5999 Sun Devil meeting today cancelled
## 6000 Sun Devil meeting today cancelled
## 6001 Sun Devil meeting today cancelled
## 6002 Sun Devil meeting today cancelled
## 6003 Sun Devil meeting today cancelled
## 6004 Sun Devil meeting today cancelled
## 6005 Sun Devil meeting today cancelled
## 6006 Sun Devil meeting today cancelled
## 6007 Sun Devil meeting today cancelled
## 6008 RE: Houston Ship Channel/ruling on summary jgment
## 6009 RE: Houston Ship Channel/ruling on summary jgment
## 6010 RE: Houston Ship Channel/ruling on summary jgment
## 6011 Planning Sessions
## 6012 Planning Sessions
## 6013 Planning Sessions
## 6014 Planning Sessions
## 6015 Planning Sessions
## 6016 Planning Sessions
## 6017 Planning Sessions
## 6018 Planning Sessions
## 6019 Planning Sessions
## 6020 Planning Sessions
## 6021 Planning Sessions
## 6022 RE: Plan Assumptions with Stan, 2/6/02, 8:00 am
## 6023 RE: Plan Assumptions with Stan, 2/6/02, 8:00 am
## 6024 Plan Assumptions with Stan, 2/6/02, 8:00 am
## 6025 FW: Read all it is really cute
## 6026 FW: Fuel Meeting Rescheduled
## 6027 Weekly Report of 2/1/02
## 6028 Weekly Report of 2/1/02
## 6029 Order 637 Filing--Protests
## 6030 Order 637 Filing--Protests
## 6031 Order 637 Filing--Protests
## 6032 Log of GISB Requests
## 6033 Log of GISB Requests
## 6034 Log of GISB Requests
## 6035 Move to 2nd Floor
## 6036 Move to 2nd Floor
## 6037 Move to 2nd Floor
## 6038 Move to 2nd Floor
## 6039 Move to 2nd Floor
## 6040 Final Draft of NOPR Comments
## 6041
## 6042 RE: El Paso Data Request
## 6043 RE: El Paso Data Request
## 6044 RE: El Paso Data Request
## 6045 RE: El Paso Data Request
## 6046 RE: El Paso Data Request
## 6047 RE: El Paso Data Request
## 6048 Updated: Red Rock PSR
## 6049 Updated: Red Rock PSR
## 6050 Updated: Red Rock PSR
## 6051 Updated: Red Rock PSR
## 6052 Updated: Red Rock PSR
## 6053 Updated: Red Rock PSR
## 6054 Revised NNG Recap / UAF numbers
## 6055 Revised NNG Recap / UAF numbers
## 6056 Revised NNG Recap / UAF numbers
## 6057 Revised NNG Recap / UAF numbers
## 6058 Updated: Sun Devil Rates and Accounting meeting with Eric Gadd - please advise of your availability to Susan X31878 or return invitation
## 6059 Updated: Sun Devil Rates and Accounting meeting with Eric Gadd - please advise of your availability to Susan X31878 or return invitation
## 6060 FTS2 meeting
## 6061 FERC Tariff Contact for TW
## 6062 Resend of Southeast UAF agenda
## 6063 Resend of Southeast UAF agenda
## 6064 Resend of Southeast UAF agenda
## 6065 Resend of Southeast UAF agenda
## 6066 RE: DVC Letter
## 6067 DVC Letter
## 6068 RE: TW 637 Filing
## 6069 Transwestern FERC California Monthly Report - Dec 2001
## 6070 Transwestern FERC California Monthly Report - Dec 2001
## 6071 Transwestern FERC California Monthly Report - Dec 2001
## 6072 Transwestern FERC California Monthly Report - Dec 2001
## 6073 FW: INGAA Conference Call
## 6074 RE: Meeting on Material Deviations
## 6075 RE: Meeting on Material Deviations
## 6076 RE: TW Overhead WO
## 6077 RE: TW Overhead WO
## 6078 RE: TW Overhead WO
## 6079 RE: TW Overhead WO
## 6080 RE: TW Overhead WO
## 6081 RE: TW Overhead WO
## 6082 Load Factor Calculation
## 6083 FW: KMART--A little humor on a very bad day
## 6084 FW: KMART--A little humor on a very bad day
## 6085 RE: GISB Update Meeting
## 6086 RE: GISB Update Meeting
## 6087 RE: GISB Update Meeting
## 6088 Weekly Report of 1/25/02
## 6089 Weekly Report of 1/25/02
## 6090 Transwestern Tariff Changes - Capacity Release Form D
## 6091 FW: Quote for the day, #1,222.
## 6092 Utilitiy Information
## 6093 GISB Update Meeting
## 6094 GISB Update Meeting
## 6095 GISB Update Meeting
## 6096 Out of Office AutoReply: TW 637 Filing
## 6097 FW: Enron Song
## 6098 RE: Re: Transwestern Record Storage at Iron Mountain (Omaha)
## 6099 RE: Re: Transwestern Record Storage at Iron Mountain (Omaha)
## 6100 Re: Transwestern Record Storage at Iron Mountain (Omaha)
## 6101 Transwestern FERC Subpoena (follow-up)
## 6102 Transwestern FERC Subpoena (follow-up)
## 6103 FW: EIP Draft NOPR Comments
## 6104 Washington office address
## 6105 RED ROCK WEEKLY REPORT W/E 01/24/02
## 6106 RED ROCK WEEKLY REPORT W/E 01/24/02
## 6107 RED ROCK WEEKLY REPORT W/E 01/24/02
## 6108 An Inbound Message For You Has Been Quarantined
## 6109 Cash in/out questions
## 6110 RE: TW Overhead WO
## 6111 RE: TW Overhead WO
## 6112 Cash In/Out calculation questions
## 6113 RE: TW Overhead WO
## 6114 RE: TW Overhead WO
## 6115 Updated: Red Rock Conference Call
## 6116 Updated: Red Rock Conference Call
## 6117 FW: TW Overhead WO
## 6118 FW: TW Overhead WO
## 6119 FW: TW Overhead WO
## 6120 FW: TW Overhead WO
## 6121 Proposed Reversal of Levelized Asset Acctg Acctg
## 6122 Segmented Backhauls
## 6123 Benefits/Intercompany Reports
## 6124 Red Rock PSR
## 6125 Red Rock PSR
## 6126 TransPecos LOI
## 6127 TransPecos LOI
## 6128 Appointments
## 6129 RE: Transwestern FERC California Monthly Report - Dec 2001 (Preliminary)
## 6130 RE: Transwestern FERC California Monthly Report - Dec 2001 (Preliminary)
## 6131 RE: Transwestern FERC California Monthly Report - Dec 2001 (Preliminary)
## 6132 RE: Transwestern FERC California Monthly Report - Dec 2001 (Preliminary)
## 6133 RE: Transwestern FERC California Monthly Report - Dec 2001 (Preliminary)
## 6134 RE: Transwestern FERC California Monthly Report - Dec 2001 (Preliminary)
## 6135 Revised DVC Letter
## 6136 Revised DVC Letter
## 6137 TransPecos LOI
## 6138 TransPecos LOI
## 6139 FW: San Juan Expansion Options - Small Volume
## 6140 FW: San Juan Expansion Options - Small Volume
## 6141 RE: Motion to Intervene in PG&E FERC Proceeding
## 6142 RE: Motion to Intervene in PG&E FERC Proceeding
## 6143 RE: Motion to Intervene in PG&E FERC Proceeding
## 6144 SURPIRSE - Denis Tu Birthday
## 6145 TransPecos LOI
## 6146 RE: AVAILABLE FIRM CAPACITY ON TRANSWESTERN
## 6147 RE: AVAILABLE FIRM CAPACITY ON TRANSWESTERN
## 6148 AVAILABLE FIRM CAPACITY ON TRANSWESTERN
## 6149 AVAILABLE FIRM CAPACITY ON TRANSWESTERN
## 6150 AVAILABLE FIRM CAPACITY ON TRANSWESTERN
## 6151 FW: San Juan Expansion Options - Small Volume
## 6152 FW: SoCalGas Counter Offer
## 6153 FW: SoCalGas Counter Offer
## 6154 FW: SoCalGas Counter Offer
## 6155 DVC Letter
## 6156 RE: Interconnect Agreement - Questar Southern Trails
## 6157 FW: San Juan Expansion Options - Small Volume
## 6158 Phase VII / Gulfstream "Strategy" Meeting - Tuesday 1/22 at 1:30 in 39C1
## 6159 FW: SoCalGas/SDG&E BCAPs -- ALJ Brown Denies EGA Motion to Strike
## 6160 FW: SoCalGas/SDG&E BCAPs -- ALJ Brown Denies EGA Motion to Strike
## 6161 Teb s Affidavit
## 6162 FW: San Juan Expansion Options - Small Volume
## 6163 FW: San Juan Expansion Options - Small Volume
## 6164 RE: Interconnect Agreement - Questar Southern Trails
## 6165 FW: TW Tariff changes to allow for Electronic Contracting
## 6166 TW Tariff changes to allow for Electronic Contracting
## 6167 RE: SFTS conversions
## 6168 RE: morn meet 1/17/02
## 6169 RE: morn meet 1/17/02
## 6170 RE: morn meet 1/17/02
## 6171 FW: TransPecos LOI with Pemex
## 6172 CPUC Proceedings
## 6173 RE: morn meet 1/17/02
## 6174 RE: morn meet 1/17/02
## 6175 RE: morn meet 1/17/02
## 6176 RE: morn meet 1/17/02
## 6177 RE: morn meet 1/17/02
## 6178 RE: morn meet 1/17/02
## 6179 RE: morn meet 1/17/02
## 6180 RE: morn meet 1/17/02
## 6181 RE: morn meet 1/17/02
## 6182 Order 637 - Capacity Release Price Cap Waiver
## 6183 Remote Access Changes
## 6184 Remote Access Changes
## 6185 weekly Sun Devil update meeting
## 6186 weekly Sun Devil update meeting
## 6187 weekly Sun Devil update meeting
## 6188 weekly Sun Devil update meeting
## 6189 weekly Sun Devil update meeting
## 6190 weekly Sun Devil update meeting
## 6191 weekly Sun Devil update meeting
## 6192 weekly Sun Devil update meeting
## 6193 weekly Sun Devil update meeting
## 6194 weekly Sun Devil update meeting
## 6195 weekly Sun Devil update meeting
## 6196 weekly Sun Devil update meeting
## 6197 weekly Sun Devil update meeting
## 6198 weekly Sun Devil update meeting
## 6199 weekly Sun Devil update meeting
## 6200 weekly Sun Devil update meeting
## 6201 RE: TW systems & me
## 6202 RE: TW systems & me
## 6203 RE: PGS Segmenting Alternate Pt. Priorities
## 6204 FW: TransPecos LOI 1/15/02
## 6205 Declined: PGS Segmenting Alternate Pt. Priorities
## 6206 FW: Why markers don t make good Christmas gifts...
## 6207 Black Marlin affidavit
## 6208 FERC Phase VI AFUDC Answer
## 6209 FERC Phase VI AFUDC Answer
## 6210 TW Tariff Sheet 73
## 6211 TW Tariff Sheet 73
## 6212 TW systems & me
## 6213 TW systems & me
## 6214 TW Model Office Move
## 6215 TW Model Office Move
## 6216 TW Model Office Move
## 6217 Data Response Draft
## 6218 PG&E Plan of Reorganization
## 6219 PG&E Plan of Reorganization
## 6220 PG&E Plan of Reorganization
## 6221 PG&E Plan of Reorganization
## 6222 FW: NOPR - Accounting and Reporting of Financial Instruments - RM02-3
## 6223 RE: Fw: A cat s tale
## 6224 NOPR - Accounting and Reporting of Financial Instruments - RM02-3
## 6225 NOPR - Accounting and Reporting of Financial Instruments - RM02-3
## 6226 More TW Boxes
## 6227 More TW Boxes
## 6228 FW: Red Rock Files
## 6229 Data Request on Phase VI - Non Environmental
## 6230 Sun Devil levelized accounting and FASB
## 6231 Sun Devil levelized accounting and FASB
## 6232 Sun Devil levelized accounting and FASB
## 6233 Sun Devil levelized accounting and FASB
## 6234 Sun Devil levelized accounting and FASB
## 6235 Sun Devil levelized accounting and FASB
## 6236 Sun Devil update moved to tues 1/15
## 6237 Sun Devil update moved to tues 1/15
## 6238 Sun Devil update moved to tues 1/15
## 6239 Sun Devil update moved to tues 1/15
## 6240 Sun Devil update moved to tues 1/15
## 6241 Sun Devil update moved to tues 1/15
## 6242 Sun Devil update moved to tues 1/15
## 6243 Sun Devil update moved to tues 1/15
## 6244 Sun Devil update moved to tues 1/15
## 6245 Sun Devil update moved to tues 1/15
## 6246 Sun Devil update moved to tues 1/15
## 6247 Sun Devil update moved to tues 1/15
## 6248 RE: RED ROCK WEEKLY REPORT W/E 01/10/02
## 6249 RE: Web Site Posting for New Cash Out Pricing Provisions
## 6250 RE: Web Site Posting for New Cash Out Pricing Provisions
## 6251 RE: Web Site Posting for New Cash Out Pricing Provisions
## 6252 RE: Web Site Posting for New Cash Out Pricing Provisions
## 6253 RE: Web Site Posting for New Cash Out Pricing Provisions
## 6254 RE: Web Site Posting for New Cash Out Pricing Provisions
## 6255 RE: Web Site Posting for New Cash Out Pricing Provisions
## 6256 RE: Web Site Posting for New Cash Out Pricing Provisions
## 6257 FW: RED ROCK WEEKLY REPORT - from k. allen
## 6258 RE: RED ROCK WEEKLY REPORT W/E 01/10/02
## 6259 RE: RED ROCK WEEKLY REPORT W/E 01/10/02
## 6260 FW: RED ROCK WEEKLY REPORT W/E 01/10/02
## 6261 FW: RED ROCK WEEKLY REPORT W/E 01/10/02
## 6262 SFTS conversions
## 6263 SFTS conversions
## 6264 SFTS conversions
## 6265 Weekly Report of 1/11/02
## 6266 Weekly Report of 1/11/02
## 6267 RE: Web Site Posting for New Cash Out Pricing Provisions
## 6268 RE: Web Site Posting for New Cash Out Pricing Provisions
## 6269 RE: Index Posting
## 6270 RE: Gulfstream Interconnects - Meeting Wednesday 1/16 at 1:30 in EB39C1 - DATE CHANGE
## 6271 RE: Web Site Posting for New Cash Out Pricing Provisions
## 6272 RE: Web Site Posting for New Cash Out Pricing Provisions
## 6273 Web Site Posting for New Cash Out Pricing Provisions
## 6274 Web Site Posting for New Cash Out Pricing Provisions
## 6275 Web Site Posting for New Cash Out Pricing Provisions
## 6276 Web Site Posting for New Cash Out Pricing Provisions
## 6277 Web Site Posting for New Cash Out Pricing Provisions
## 6278 Web Site Posting for New Cash Out Pricing Provisions
## 6279 Web Site Posting for New Cash Out Pricing Provisions
## 6280 Web Site Posting for New Cash Out Pricing Provisions
## 6281 RE: Index Posting
## 6282 RE: Index Posting
## 6283 Index Posting
## 6284 Index Posting
## 6285 Steve Harris Staff Meeting
## 6286 Steve Harris Staff Meeting
## 6287 Steve Harris Staff Meeting
## 6288 Steve Harris Staff Meeting
## 6289 Steve Harris Staff Meeting
## 6290 Steve Harris Staff Meeting
## 6291 Steve Harris Staff Meeting
## 6292 Steve Harris Staff Meeting
## 6293 Transwestern FERC California Monthly Report - Dec 2001 (Preliminary)
## 6294 Transwestern FERC California Monthly Report - Dec 2001 (Preliminary)
## 6295 Transwestern FERC California Monthly Report - Dec 2001 (Preliminary)
## 6296 Transwestern FERC California Monthly Report - Dec 2001 (Preliminary)
## 6297 Transwestern FERC California Monthly Report - Dec 2001 (Preliminary)
## 6298 Transwestern FERC California Monthly Report - Dec 2001 (Preliminary)
## 6299 RE: Attachment A - Payment Schedule
## 6300 RE: Attachment A - Payment Schedule
## 6301 RE: Attachment A - Payment Schedule
## 6302 RE: Attachment A - Payment Schedule
## 6303 RE: Attachment A - Payment Schedule
## 6304 RE: Attachment A - Payment Schedule
## 6305 RE: Attachment A - Payment Schedule
## 6306 FW: Attachment A - Payment Schedule
## 6307 FW: Attachment A - Payment Schedule
## 6308 2002 UAF meeting dates
## 6309 2002 UAF meeting dates
## 6310 2002 UAF meeting dates
## 6311 2002 UAF meeting dates
## 6312 RE: 2nd Revised Ratings Outline - TW
## 6313 2nd Revised Ratings Outline - TW
## 6314 CITY OF HOMESTEAD NEW ACTING DIRECTOR OF UTILITIES AND CONTACT/F.Y.I.
## 6315 CITY OF HOMESTEAD NEW ACTING DIRECTOR OF UTILITIES AND CONTACT/F.Y.I.
## 6316 FW: Can t Please Everyone
## 6317 Revised Ratings outline
## 6318 Gulfstream Interconnects - Meeting Tuesday 1/15 at 1:30 in EB39C1
## 6319 Summary of SoCalGas Unbundling Customer Meeting
## 6320 Summary of SoCalGas Unbundling Customer Meeting
## 6321 Summary of SoCalGas Unbundling Customer Meeting
## 6322 Summary of SoCalGas Unbundling Customer Meeting
## 6323 Summary of SoCalGas Unbundling Customer Meeting
## 6324 Amendment to Permit Use of Alternate Point outside of path
## 6325 RE: Paper Situation
## 6326 RE: Paper Situation
## 6327 RE: Ratings Package Outline and tables
## 6328 FW: Duplicate numbers - update
## 6329 Red Rock Projected Revenue - from k. allen
## 6330 Red Rock Projected Revenue - from k. allen
## 6331 RE: Paper Situation
## 6332 RE: Paper Situation
## 6333 RE: Paper Situation
## 6334 RE: Paper Situation
## 6335 RE: Jeanette Doll
## 6336 RE: Jeanette Doll
## 6337 RE: Toaster
## 6338 RE: Jeanette Doll
## 6339 Jeanette Doll
## 6340 FW: Paper Situation
## 6341 RE: Toaster
## 6342 TW Files
## 6343 TW Files
## 6344 FW: Paper Situation
## 6345 Ratings Package Outline and tables
## 6346 RE: Capacity Lease (Backhaul) - Gulfstream
## 6347 FW: Steve Bergstrom Interview on 1290 KKAR
## 6348 Capacity Lease (Backhaul) - Gulfstream
## 6349 Transwestern Pipeline Company
## 6350 RE: F.P.U. NEW SMYRNA DELIVERY POINT QUESTION
## 6351 Sun Devil Update moved to Tues 3:30 pm 15c1
## 6352 Sun Devil Update moved to Tues 3:30 pm 15c1
## 6353 Sun Devil Update moved to Tues 3:30 pm 15c1
## 6354 Sun Devil Update moved to Tues 3:30 pm 15c1
## 6355 Sun Devil Update moved to Tues 3:30 pm 15c1
## 6356 Sun Devil Update moved to Tues 3:30 pm 15c1
## 6357 Sun Devil Update moved to Tues 3:30 pm 15c1
## 6358 Sun Devil Update moved to Tues 3:30 pm 15c1
## 6359 Sun Devil Update moved to Tues 3:30 pm 15c1
## 6360 Sun Devil Update moved to Tues 3:30 pm 15c1
## 6361 Sun Devil Update moved to Tues 3:30 pm 15c1
## 6362 Sun Devil Update moved to Tues 3:30 pm 15c1
## 6363 Sun Devil Update moved to Tues 3:30 pm 15c1
## 6364 Sun Devil Update moved to Tues 3:30 pm 15c1
## 6365 Weekly Report of 1/4/02
## 6366 Weekly Report of 1/4/02
## 6367 CPUC Infrastructure Report
## 6368 CPUC Infrastructure Report
## 6369 CPUC Infrastructure Report
## 6370 CPUC Infrastructure Report
## 6371 CPUC Infrastructure Report
## 6372 CPUC Infrastructure Report
## 6373 RE: SoCalGas Billing Issue
## 6374 RE: SoCalGas Billing Issue
## 6375 TW Filings Calendar
## 6376 Ratings Outline File
## 6377 RE: SocalGas Billing Issue
## 6378 RE: SocalGas Billing Issue
## 6379 Re: SocalGas Billing Issue
## 6380 Re: SocalGas Billing Issue
## 6381 Your password has been reset
## 6382 SocalGas Billing Issue
## 6383 SocalGas Billing Issue
## 6384 RE: FPU
## 6385 637 Imbalance Provisions
## 6386 637 Imbalance Provisions
## 6387 637 Imbalance Provisions
## 6388 FW: FPU
## 6389 RE: FNG Bartow Delivery
## 6390 RE: FNG Bartow Delivery
## 6391 FW: Jennifer Lev & Ms. Emma
## 6392 FPU
## 6393 FW: SoCalGas BCAP
## 6394 FW: SoCalGas BCAP
## 6395 RE: FNG Bartow Delivery
## 6396 RE: FNG Bartow Delivery
## 6397
## 6398 1996-2001 Purchase/Sale/Deferred Exchange Data
## 6399 FW: 20 Reasons Why Athletes should not be role models
## 6400 Mary Kay Miller s Weekly Report
## 6401 Mary Kay Miller s Weekly Report
## 6402 Mary Kay Miller s Weekly Report
## 6403 Mary Kay Miller s Weekly Report
## 6404 TW Files
## 6405 TW Files
## 6406 Your password has been reset
## 6407 TW Tariff Sheets Needing Conversion
## 6408 TW Tariff Sheets Needing Conversion
## 6409 Weekly Report of 12/21/01
## 6410 Weekly Report of 12/21/01
## 6411 RE: Angels are ....
## 6412 Out of Office AutoReply: Angels are ....
## 6413 FW: Angels are ....
## 6414 Revised: TW OBA Filing Info.
## 6415 Revised: TW OBA Filing Info.
## 6416 Revised: TW OBA Filing Info.
## 6417 TW OBA Filing Revision Info.
## 6418 TW OBA Filing Revision Info.
## 6419 TW OBA Filing Revision Info.
## 6420 Directions to Farrells
## 6421 Scheduling Alt FT by Price
## 6422 Scheduling Alt FT by Price
## 6423 Scheduling Alt FT by Price
## 6424 Scheduling Alt FT by Price
## 6425 Scheduling Alt FT by Price
## 6426 Scheduling Alt FT by Price
## 6427 Scheduling Alt FT by Price
## 6428 Scheduling Alt FT by Price
## 6429 Scheduling Alt FT by Price
## 6430 Scheduling Alt FT by Price
## 6431 Scheduling Alt FT by Price
## 6432 Scheduling Alt FT by Price
## 6433 Scheduling Alt FT by Price
## 6434 Scheduling Alt FT by Price
## 6435 Scheduling Alt FT by Price
## 6436 FW: Outstanding Invoices Related to Transwestern Pipeline Capacity Release Acquisitions from Citizens Communications Company
## 6437 RE: sun devil weekly meeting update
## 6438 RE: sun devil weekly meeting update
## 6439 RE: sun devil weekly meeting update
## 6440 FW: United Way contributions
## 6441 sun devil weekly meeting update
## 6442 sun devil weekly meeting update
## 6443 sun devil weekly meeting update
## 6444 sun devil weekly meeting update
## 6445 sun devil weekly meeting update
## 6446 sun devil weekly meeting update
## 6447 sun devil weekly meeting update
## 6448 sun devil weekly meeting update
## 6449 sun devil weekly meeting update
## 6450 sun devil weekly meeting update
## 6451 sun devil weekly meeting update
## 6452 sun devil weekly meeting update
## 6453 sun devil weekly meeting update
## 6454 sun devil weekly meeting update
## 6455 SOUTH FLORIDA NATURAL GAS, NEW SMYRNA BEACH FLORIDA (PART OF SOUTHERN UNION) SOLD TO FLORIDA PUBLIC UTILITIES/F.Y.I.
## 6456 FW: Quote for the day, #1,203.
## 6457 FW: Updated Q&As for Enron Employees
## 6458 GISB Update
## 6459 GISB Update
## 6460 GISB Update
## 6461 GISB Update
## 6462 Weekly Report of 12/14/01
## 6463 Weekly Report of 12/14/01
## 6464 CMS/CAS/CRS Team Support for December
## 6465 CMS/CAS/CRS Team Support for December
## 6466 CMS/CAS/CRS Team Support for December
## 6467 Frazier King
## 6468 Staci Holtzman
## 6469 reviews
## 6470 RE: Negotiated Rate Cover letter
## 6471 RE: Negotiated Rate Cover letter
## 6472 Out of Office AutoReply: EGS and Industry Mentions
## 6473 RE: OBA & Scheduling Alt FT by Price Tariff Filings
## 6474 RE: OBA & Scheduling Alt FT by Price Tariff Filings
## 6475 RE: OBA & Scheduling Alt FT by Price Tariff Filings
## 6476 RE: OBA & Scheduling Alt FT by Price Tariff Filings
## 6477 RE: OBA & Scheduling Alt FT by Price Tariff Filings
## 6478 RE: OBA & Scheduling Alt FT by Price Tariff Filings
## 6479 RE: OBA & Scheduling Alt FT by Price Tariff Filings
## 6480 RE: OBA & Scheduling Alt FT by Price Tariff Filings
## 6481 RE: OBA & Scheduling Alt FT by Price Tariff Filings
## 6482 RE: OBA & Scheduling Alt FT by Price Tariff Filings
## 6483 RE: OBA & Scheduling Alt FT by Price Tariff Filings
## 6484 RE: OBA & Scheduling Alt FT by Price Tariff Filings
## 6485 RE: OBA & Scheduling Alt FT by Price Tariff Filings
## 6486 RE: OBA & Scheduling Alt FT by Price Tariff Filings
## 6487 RE: OBA & Scheduling Alt FT by Price Tariff Filings
## 6488 RE: OBA & Scheduling Alt FT by Price Tariff Filings
## 6489 RE: OBA & Scheduling Alt FT by Price Tariff Filings
## 6490 RE: OBA & Scheduling Alt FT by Price Tariff Filings
## 6491 RE: OBA & Scheduling Alt FT by Price Tariff Filings
## 6492 RE: OBA & Scheduling Alt FT by Price Tariff Filings
## 6493 RE: OBA & Scheduling Alt FT by Price Tariff Filings
## 6494 OBA & Scheduling Alt FT by Price Tariff Filings
## 6495 OBA & Scheduling Alt FT by Price Tariff Filings
## 6496 OBA & Scheduling Alt FT by Price Tariff Filings
## 6497 OBA & Scheduling Alt FT by Price Tariff Filings
## 6498 OBA & Scheduling Alt FT by Price Tariff Filings
## 6499 OBA & Scheduling Alt FT by Price Tariff Filings
## 6500 OBA & Scheduling Alt FT by Price Tariff Filings
## 6501 OBA & Scheduling Alt FT by Price Tariff Filings
## 6502 OBA & Scheduling Alt FT by Price Tariff Filings
## 6503 OBA & Scheduling Alt FT by Price Tariff Filings
## 6504 OBA & Scheduling Alt FT by Price Tariff Filings
## 6505 OBA & Scheduling Alt FT by Price Tariff Filings
## 6506 OBA & Scheduling Alt FT by Price Tariff Filings
## 6507 OBA & Scheduling Alt FT by Price Tariff Filings
## 6508 OBA & Scheduling Alt FT by Price Tariff Filings
## 6509 OBA & Scheduling Alt FT by Price Tariff Filings
## 6510 Lunch
## 6511 RE: SoCal Unbundling
## 6512 RE: SoCal Unbundling
## 6513 RE: SoCal Unbundling
## 6514 RE: SoCal Unbundling
## 6515 RE: SoCal Unbundling
## 6516 RE: SoCal Unbundling
## 6517 RE: SoCal Unbundling
## 6518 RE: SoCal Unbundling
## 6519 RE: SoCal Unbundling
## 6520 RE: SoCal Unbundling
## 6521 RE: SoCal Unbundling
## 6522 RE: SoCal Unbundling
## 6523 RE: SoCal Unbundling
## 6524 RE: SoCal Unbundling
## 6525 RE: SoCal Unbundling
## 6526 RE: SoCal Unbundling
## 6527 RE: SoCal Unbundling
## 6528 RE: SoCal Unbundling
## 6529 Data for Comments and for Economist s Report
## 6530 Data for Comments and for Economist s Report
## 6531 Data for Comments and for Economist s Report
## 6532 Data for Comments and for Economist s Report
## 6533 SoCal Unbundling
## 6534 SoCal Unbundling
## 6535 SoCal Unbundling
## 6536 SoCal Unbundling
## 6537 SoCal Unbundling
## 6538 DVC spreadsheet
## 6539 RE: Gas Daily Table
## 6540 RE: Gas Daily Table
## 6541 RE: Gas Daily Table
## 6542 RE: Gas Daily Table
## 6543 RE: Gas Daily Table
## 6544 RE: Gas Daily Table
## 6545 RE: Gas Daily Table
## 6546 RE: Gas Daily Table
## 6547 RE: Gas Daily Table
## 6548 RE: Gas Daily Table
## 6549 RE: Gas Daily Table
## 6550 Gas Daily Table
## 6551 Gas Daily Table
## 6552 Electric Compression
## 6553 Electric Compressor Agreement with ENA and ECS
## 6554 Electric Compressor Agreement with ENA and ECS
## 6555 Electric Compressor Agreement with ENA and ECS
## 6556 Electric Compressor Agreement with ENA and ECS
## 6557 Electric Compressor Agreement with ENA and ECS
## 6558 RE: Transwestern Response to FERC Data Request - USGT Negotiated Rate Filing
## 6559 RE: Transwestern Response to FERC Data Request - USGT Negotiated Rate Filing
## 6560 RE: Transwestern Response to FERC Data Request - USGT Negotiated Rate Filing
## 6561 FW: Settlement Offer
## 6562 FW: Settlement Offer
## 6563 FW: Kern County power plants
## 6564 ETS & Industry Mentions
## 6565 ETS & Industry Mentions
## 6566 ETS & Industry Mentions
## 6567 ETS & Industry Mentions
## 6568 ETS & Industry Mentions
## 6569 ETS & Industry Mentions
## 6570 ETS & Industry Mentions
## 6571 ETS & Industry Mentions
## 6572 ETS & Industry Mentions
## 6573 RE: Two proceeding changes
## 6574 RE: Two proceeding changes
## 6575 RE: Two proceeding changes
## 6576 RE: Two proceeding changes
## 6577 RE: Two proceeding changes
## 6578 RE: Two proceeding changes
## 6579 RE: Two proceeding changes
## 6580 RE: Two proceeding changes
## 6581 RE: Two proceeding changes
## 6582 RE: Two proceeding changes
## 6583 RE: Two proceeding changes
## 6584 RE: Two proceeding changes
## 6585 RE: Two proceeding changes
## 6586 RE: Two proceeding changes
## 6587 RE: Two proceeding changes
## 6588 RE: Two proceeding changes
## 6589 RE: Two proceeding changes
## 6590 RE: Two proceeding changes
## 6591 RE: Two proceeding changes
## 6592 RE: Two proceeding changes
## 6593 EOL Confirmation -Transwestern Pipeline Company
## 6594 EOL Confirmation -Transwestern Pipeline Company
## 6595 FW: Organization Changes
## 6596 FW: Proofreader
## 6597 FW: TW Negotiated Rates
## 6598 FW: TW Negotiated Rates
## 6599 Ethane Content Various Locations July 99 thur July 01
## 6600 FW: soCalGas Complaint
## 6601 RE: August 2001 FERC California Report - Preliminary Ready for Review (Items 1, 2, 3)
## 6602 RE: August 2001 FERC California Report - Preliminary Ready for Review (Items 1, 2, 3)
## 6603 RE: August 2001 FERC California Report - Preliminary Ready for Review (Items 1, 2, 3)
## 6604 EGS & Industry Mentions
## 6605 EGS & Industry Mentions
## 6606 EGS & Industry Mentions
## 6607 EGS & Industry Mentions
## 6608 EGS & Industry Mentions
## 6609 EGS & Industry Mentions
## 6610 EGS & Industry Mentions
## 6611 EGS & Industry Mentions
## 6612 EGS & Industry Mentions
## 6613 RE: ETS TW Teams Appreciation Luncheon - Last Round
## 6614 RE: ETS TW Teams Appreciation Luncheon - Last Round
## 6615 RE: ETS TW Teams Appreciation Luncheon - Last Round
## 6616 RE: ETS TW Teams Appreciation Luncheon - Last Round
## 6617 RE: ETS TW Teams Appreciation Luncheon - Last Round
## 6618 RE: ETS TW Teams Appreciation Luncheon - Last Round
## 6619 RE: ETS TW Teams Appreciation Luncheon - Last Round
## 6620 RE: ETS TW Teams Appreciation Luncheon - Last Round
## 6621 T-shirt
## 6622 CA Capacity Report
## 6623 CA Capacity Report
## 6624 CA Capacity Report
## 6625 Out of Office AutoReply: T-shirt
## 6626 Commission Meeting
## 6627 Commission Meeting
## 6628 Commission Meeting
## 6629 Commission Meeting
## 6630 Commission Meeting
## 6631 Commission Meeting
## 6632 Commission Meeting
## 6633 Commission Meeting
## 6634 Commission Meeting
## 6635 Commission Meeting
## 6636 EGS & Industry Mentions
## 6637 EGS & Industry Mentions
## 6638 EGS & Industry Mentions
## 6639 EGS & Industry Mentions
## 6640 EGS & Industry Mentions
## 6641 EGS & Industry Mentions
## 6642 EGS & Industry Mentions
## 6643 EGS & Industry Mentions
## 6644 EGS & Industry Mentions
## 6645 LFT Language
## 6646 FW: P.A. Agave I/c
## 6647 FW: P.A. Agave I/c
## 6648 FERC Discussion on OFOs
## 6649 FERC Discussion on OFOs
## 6650 FERC Discussion on OFOs
## 6651 FERC Discussion on OFOs
## 6652 FERC Discussion on OFOs
## 6653 FERC Discussion on OFOs
## 6654 FERC Discussion on OFOs
## 6655 FERC Discussion on OFOs
## 6656 FERC Discussion on OFOs
## 6657 FERC Discussion on OFOs
## 6658 FERC Discussion on OFOs
## 6659 FERC Discussion on OFOs
## 6660 NOPR - Energy Affiliate Rule
## 6661 NOPR - Energy Affiliate Rule
## 6662 Response to FERC on Electronic Contracting
## 6663 FW: The latest from Nintendo...
## 6664 UNCF Collections
## 6665 Juvenile Diabetes Research Foundation
## 6666 FW: tw filings
## 6667 FW: UNCF Deposit Changed to 5 p.m. Today
## 6668 Richard Babin Retirement
## 6669 FW: The Fall TV Schedule for the Middle East Region
## 6670 Electronic Contracting Compliance Filing
## 6671 FW: Keep this man in our Prayers
## 6672 Pemex (MGI) Proposal
## 6673 Pemex (MGI) Proposal
## 6674 EGS & Industry Mentions
## 6675 EGS & Industry Mentions
## 6676 EGS & Industry Mentions
## 6677 EGS & Industry Mentions
## 6678 EGS & Industry Mentions
## 6679 EGS & Industry Mentions
## 6680 EGS & Industry Mentions
## 6681 EGS & Industry Mentions
## 6682 EGS & Industry Mentions
## 6683 RE: Pemex (MGI) Proposal
## 6684 RE: Pemex (MGI) Proposal
## 6685 RE: Pemex (MGI) Proposal
## 6686 RE: Pemex (MGI) Proposal
## 6687 RE: Pemex (MGI) Proposal
## 6688 RE: Pemex (MGI) Proposal
## 6689 RE: Pemex (MGI) Proposal
## 6690 RE: Pemex (MGI) Proposal
## 6691 RE: Pemex (MGI) Proposal
## 6692 RE: Pemex (MGI) Proposal
## 6693 RE: Pemex (MGI) Proposal
## 6694 FW: Air Force??
## 6695 FW: Kern County power plants
## 6696 Member Appreciation Day Results
## 6697 Member Appreciation Day Results
## 6698 Member Appreciation Day Results
## 6699 Member Appreciation Day Results
## 6700 Member Appreciation Day Results
## 6701 Member Appreciation Day Results
## 6702 Member Appreciation Day Results
## 6703 Member Appreciation Day Results
## 6704 Member Appreciation Day Results.2
## 6705 Member Appreciation Day Results.2
## 6706 Member Appreciation Day Results.2
## 6707 Member Appreciation Day Results.2
## 6708 Member Appreciation Day Results.2
## 6709 Member Appreciation Day Results.2
## 6710 Member Appreciation Day Results.2
## 6711 Member Appreciation Day Results.2
## 6712 Okaloosa s NNTS for April and October
## 6713 Okaloosa s NNTS for April and October
## 6714 No Sun Devil update meeting Monday 10/1
## 6715 No Sun Devil update meeting Monday 10/1
## 6716 No Sun Devil update meeting Monday 10/1
## 6717 No Sun Devil update meeting Monday 10/1
## 6718 No Sun Devil update meeting Monday 10/1
## 6719 No Sun Devil update meeting Monday 10/1
## 6720 No Sun Devil update meeting Monday 10/1
## 6721 No Sun Devil update meeting Monday 10/1
## 6722 No Sun Devil update meeting Monday 10/1
## 6723 No Sun Devil update meeting Monday 10/1
## 6724 No Sun Devil update meeting Monday 10/1
## 6725 No Sun Devil update meeting Monday 10/1
## 6726 North & Southeast UAF meeting - Oct 3rd. - Additional Reports
## 6727 North & Southeast UAF meeting - Oct 3rd. - Additional Reports
## 6728 North & Southeast UAF meeting - Oct 3rd. - Additional Reports
## 6729 North & Southeast UAF meeting - Oct 3rd. - Additional Reports
## 6730 Weekly Regulatory Report
## 6731 Weekly Regulatory Report
## 6732 Weekly Regulatory Report
## 6733 Weekly Regulatory Report
## 6734 Weekly Regulatory Report
## 6735 Weekly Regulatory Report
## 6736 Weekly Regulatory Report
## 6737 Weekly Regulatory Report
## 6738 Weekly Regulatory Report
## 6739 Weekly Regulatory Report
## 6740 RE: UNCF Deposit Changed to 5 p.m. Today
## 6741 Chairman s Award Nomination for Alice Johnson
## 6742 EGS and Industry Mentions
## 6743 EGS and Industry Mentions
## 6744 EGS and Industry Mentions
## 6745 EGS and Industry Mentions
## 6746 EGS and Industry Mentions
## 6747 EGS and Industry Mentions
## 6748 EGS and Industry Mentions
## 6749 EGS and Industry Mentions
## 6750 EGS and Industry Mentions
## 6751 Updated: KUA and FPC - Cane Island lateral and meters
## 6752 RE: Pemex (MGI) Proposal
## 6753 RE: Pemex (MGI) Proposal
## 6754 FW: Question
## 6755 RE: Question
## 6756 Rates & Revenue Project Kickoff - Business Team
## 6757 Rates & Revenue Project Kickoff - Business Team
## 6758 Electronic Pay Stubs
## 6759 TW Tariff Sheets to Convert
## 6760 FW: Correct Reg. Roundtable Agenda
## 6761 FW: Correct Reg. Roundtable Agenda
## 6762 FW: Correct Reg. Roundtable Agenda
## 6763 FW: Correct Reg. Roundtable Agenda
## 6764 FW: Correct Reg. Roundtable Agenda
## 6765 FW: Correct Reg. Roundtable Agenda
## 6766 FW: Correct Reg. Roundtable Agenda
## 6767 FW: Correct Reg. Roundtable Agenda
## 6768 FW: Correct Reg. Roundtable Agenda
## 6769 RE: FERC Discussion on OFOs
## 6770 RE: FERC Discussion on OFOs
## 6771 RE: FERC Discussion on OFOs
## 6772 RE: SoCalGas Developments
## 6773 RE: SoCalGas Developments
## 6774 RE: SoCalGas Developments
## 6775 RE: SoCalGas Developments
## 6776 RE: SoCalGas Developments
## 6777 RE: SoCalGas Developments
## 6778 RE: SoCalGas Developments
## 6779 RE: SoCalGas Developments
## 6780 RE: SoCalGas Developments
## 6781 RE: SoCalGas Developments
## 6782 RE: SoCalGas Developments
## 6783 RE: SoCalGas Developments
## 6784 RE: SoCalGas Developments
## 6785 RE: SoCalGas Developments
## 6786 RE: SoCalGas Developments
## 6787 FW: Refrigerator on 39
## 6788 Response to FERC on Electronic Contracting
## 6789 Response to FERC on Electronic Contracting
## 6790 Response to FERC on Electronic Contracting
## 6791 Response to FERC on Electronic Contracting
## 6792 Response to FERC on Electronic Contracting
## 6793 Response to FERC on Electronic Contracting
## 6794 Response to FERC on Electronic Contracting
## 6795 RE: Response to FERC on Electronic Contracting
## 6796 FW: Response to FERC on Electronic Contracting
## 6797 Add l Roundtable materials
## 6798 Add l Roundtable materials
## 6799 Add l Roundtable materials
## 6800 Add l Roundtable materials
## 6801 Add l Roundtable materials
## 6802 Add l Roundtable materials
## 6803 Add l Roundtable materials
## 6804 Add l Roundtable materials
## 6805 Add l Roundtable materials
## 6806 FW: Amending Red Rock Contracts
## 6807 RE: UNCF Follow-up Meeting Thursday, Oct. 4; EB4102; 12-1pm
## 6808 Commission Agenda
## 6809 Commission Agenda
## 6810 Commission Agenda
## 6811 Commission Agenda
## 6812 Commission Agenda
## 6813 Commission Agenda
## 6814 Commission Agenda
## 6815 Commission Agenda
## 6816 Commission Agenda
## 6817 Commission Agenda
## 6818 FW: Transwestern Proposed Tariff Sheets for Settlement
## 6819 FW: Transwestern Proposed Tariff Sheets for Settlement
## 6820 CMS/CRS Ops Committee Mtg, 10/5
## 6821 CMS/CRS Ops Committee Mtg, 10/5
## 6822 CMS/CRS Ops Cmte Mtg/EB30C2-OMA3C1
## 6823 CMS/CRS Ops Cmte Mtg/EB30C2-OMA3C1
## 6824 RE: SoCal Needles - Marketing Strategy for Incremental Delivery Capacity
## 6825 RE: SoCal Needles - Marketing Strategy for Incremental Delivery Capacity
## 6826 RE: SoCal Needles - Marketing Strategy for Incremental Delivery Capacity
## 6827 RE: SoCal Needles - Marketing Strategy for Incremental Delivery Capacity
## 6828 RE: SoCal Needles - Marketing Strategy for Incremental Delivery Capacity
## 6829 RE: SoCal Needles - Marketing Strategy for Incremental Delivery Capacity
## 6830 ROUTE: Non-Standard Amendment to PPL #27714
## 6831 ROUTE: Non-Standard Amendment to PPL #27714
## 6832 RE: Response to FERC on Electronic Contracting
## 6833 RE: Response to FERC on Electronic Contracting
## 6834 RE: Amending Red Rock Contracts
## 6835 FW: Amending Red Rock Contracts
## 6836 FW: SoCal Needles - Marketing Strategy for Incremental Delivery Capacity
## 6837 RE: ROUTE: Non-Standard Amendment to PPL #27714
## 6838 RE: ROUTE: Non-Standard Amendment to PPL #27714
## 6839 RE: Amending Red Rock Contracts
## 6840 RE: CMS/CRS Ops Committee Mtg, 10/5
## 6841 RE: CMS/CRS Ops Committee Mtg, 10/5
## 6842 Updated: CMS/CRS Ops Cmte Mtg/EB30C2-OMA3C1
## 6843 Updated: CMS/CRS Ops Cmte Mtg/EB30C2-OMA3C1
## 6844 Weekly Reports
## 6845 Weekly Reports
## 6846 Weekly Reports
## 6847 Weekly Reports
## 6848 Weekly Reports
## 6849 Weekly Reports
## 6850 Weekly Reports
## 6851 Weekly Reports
## 6852 Weekly Reports
## 6853 Weekly Reports
## 6854 RE: Chairman s Award Nomination for Alice Johnson
## 6855 Updated chart
## 6856 FW: Agenda for 4 PM Meeting
## 6857 FW: Agenda for 4 PM Meeting
## 6858 FW: Agenda for 4 PM Meeting
## 6859 Sun Devil meeting
## 6860 Sun Devil meeting
## 6861 Sun Devil meeting
## 6862 Sun Devil meeting
## 6863 Sun Devil meeting
## 6864 Sun Devil meeting
## 6865 Sun Devil meeting
## 6866 Sun Devil meeting
## 6867 Sun Devil meeting
## 6868 Sun Devil meeting
## 6869 RE: TW Trading Imbalances
## 6870 RE: TW Trading Imbalances
## 6871 RE: TW Trading Imbalances
## 6872 RE: TW Trading Imbalances
## 6873 THE GREAT WALL --An American Dream !!!!!...
## 6874 FW: Pharmacist
## 6875 FW: Constance sent you a Yahoo! Greeting
## 6876 CMS/CRS Implementation Update Mtg./EB42C2-OMA696
## 6877 CMS/CRS Implementation Update Mtg./EB42C2-OMA696
## 6878 CMS/CRS Implementation Update Mtg./EB42C2-OMA696
## 6879 CMS/CRS Implementation Update Mtg./EB42C2-OMA696
## 6880 RE: TW Trading Imbalances
## 6881 RE: TW Trading Imbalances
## 6882 RE: TW Trading Imbalances
## 6883 RE: TW Trading Imbalances
## 6884 FW: Settlement Offer of Transwestern Pipeline Company
## 6885 Capacity Awards
## 6886 Capacity Awards
## 6887 RE: Settlement Offer of Transwestern Pipeline Company
## 6888 FW: Weekly Report of 10/5/01
## 6889 Gas Daily Zone 2 gas prices
## 6890 TW s West Texas Leg & NNG s Southend Strategy Meeting
## 6891 TW s West Texas Leg & NNG s Southend Strategy Meeting
## 6892 TW s West Texas Leg & NNG s Southend Strategy Meeting
## 6893 Increased Take-away at SoCal Needles
## 6894 Equity AFUDC and Ramp-Up Accounting
## 6895 FW: SoCal - November 1 Changes
## 6896 FW: SoCal - November 1 Changes
## 6897 FW: SoCal - November 1 Changes
## 6898 UNCF Walk Collections
## 6899 FW: TW Global Settlement
## 6900 RE: Pooling points
## 6901 RE: Pooling points
## 6902 CA rept requirements rehearing denied
## 6903 CA rept requirements rehearing denied
## 6904 CA rept requirements rehearing denied
## 6905 Invitation to Jennifer Lev s Baby Shower
## 6906 Re: Invitation to Jennifer Lev s Baby Shower
## 6907 RRS Business Team Project Kickoff
## 6908 RRS Business Team Project Kickoff
## 6909 RRS Business Team Project Kickoff
## 6910 FW: Electronic Filing and Electronic Service (Docket RM01-11)
## 6911 Levelized Sun Devil Rates
## 6912 Levelized Sun Devil Rates
## 6913 FW: Price Quote for New Laptop
## 6914 Comments on SoCal GIR Proposed Decision
## 6915 Comments on SoCal GIR Proposed Decision
## 6916 Comments on SoCal GIR Proposed Decision
## 6917 Comments on SoCal GIR Proposed Decision
## 6918 Comments on SoCal GIR Proposed Decision
## 6919 FW: Increased Take-away at SoCal Needles
## 6920 FW: Increased Take-away at SoCal Needles
## 6921 FW: Increased Take-away at SoCal Needles
## 6922 FW: Increased Take-away at SoCal Needles
## 6923 Prices and Imbalance Quantities for August 2000 thru July 2001
## 6924 RE: GIR Conf. Call
## 6925 RE: GIR Conf. Call
## 6926 RE: GIR Conf. Call
## 6927 RE: GIR Conf. Call
## 6928 RE: GIR Conf. Call
## 6929 RE: GIR Conf. Call
## 6930 RE: GIR Conf. Call
## 6931 RE: GIR Conf. Call
## 6932 RE: GIR Conf. Call
## 6933 RE: GIR Conf. Call
## 6934 RE: GIR Conf. Call
## 6935 RE: GIR Conf. Call
## 6936 RE: GIR Conf. Call
## 6937 RE: GIR Conf. Call
## 6938 RE: GIR Conf. Call
## 6939 EB15C1 for Monday s Sun Devil Meeting from 3-4
## 6940 EB15C1 for Monday s Sun Devil Meeting from 3-4
## 6941 Weekly Reports
## 6942 Weekly Reports
## 6943 Weekly Reports
## 6944 Weekly Reports
## 6945 Weekly Reports
## 6946 Weekly Reports
## 6947 Weekly Reports
## 6948 Weekly Reports
## 6949 Weekly Reports
## 6950 Weekly Reports
## 6951 Weekly Reports
## 6952 SoCalGas Complaint (Message from Greg Porter)
## 6953 SoCalGas Complaint (Message from Greg Porter)
## 6954 SoCalGas Complaint (Message from Greg Porter)
## 6955 SoCalGas Complaint (Message from Greg Porter)
## 6956 SoCalGas Complaint (Message from Greg Porter)
## 6957 SoCalGas Complaint (Message from Greg Porter)
## 6958 SoCalGas Complaint (Message from Greg Porter)
## 6959 SoCalGas Complaint (Message from Greg Porter)
## 6960 FW: Trying to set up conf call re: TW Weather Drivative (involves potential affiliate issue)
## 6961 Southern Trails Data Request List
## 6962 Reminder-Jennifer Lev s Baby Shower
## 6963 FW: texas gas tries one more time -- modified cash pool filing
## 6964
## 6965 Intercompany Billings Follow-Up
## 6966 Intercompany Billings Follow-Up
## 6967 RE: Intercompany Billings Follow-Up
## 6968 RE: Intercompany Billings Follow-Up
## 6969 RE: Intercompany Billings Follow-Up
## 6970 RE: Intercompany Billings Follow-Up
## 6971 Gray County Interconnect
## 6972 Gray County Interconnect
## 6973 USGT Neg Rate Filing
## 6974 USGT Neg Rate Filing
## 6975 USGT Neg Rate Filing
## 6976 USGT Neg Rate Filing
## 6977 USGT Neg Rate Filing
## 6978 USGT Neg Rate Filing
## 6979 RE: USGT Neg Rate Filing
## 6980 RE: USGT Neg Rate Filing
## 6981 RE: USGT Neg Rate Filing
## 6982 EnronUser Training Time Approval
## 6983 Enron User Training
## 6984 TW v. SoCalGas (Dictation Draft from Greg Porter)
## 6985 TW v. SoCalGas (Dictation Draft from Greg Porter)
## 6986 TW v. SoCalGas (Dictation Draft from Greg Porter)
## 6987 TW v. SoCalGas (Dictation Draft from Greg Porter)
## 6988 TW v. SoCalGas (Dictation Draft from Greg Porter)
## 6989 TW v. SoCalGas (Dictation Draft from Greg Porter)
## 6990 FW:
## 6991 Active Listing 10/24/01
## 6992 RE: Active Listing 10/24/01
## 6993 EOL Confirmation -Transwestern Pipeline Company
## 6994 EOL Confirmation -Transwestern Pipeline Company
## 6995 FW: Revised Prices and Imbalances worksheet
## 6996 SoCal GIR/Unbundling
## 6997 SoCal GIR/Unbundling
## 6998 SoCal GIR/Unbundling
## 6999 SoCal GIR/Unbundling
## 7000 Order 637--Imbalance Provisions
## 7001 Order 637--Imbalance Provisions
## 7002 FW: Notes from 637 Imbal Mtg 9/18/01
## 7003 EOL Confirmation -Transwestern Pipeline Company
## 7004 EOL Confirmation -Transwestern Pipeline Company
## 7005 Two Tickets Available for NAACP Banquet Tonight
## 7006 RE: No Rate Changes Effective 11/1/2001
## 7007 RE: Two Tickets Available for NAACP Banquet Tonight
## 7008 FERC Notice
## 7009 Pillow Talk
## 7010 California Capacity Report
## 7011 California Capacity Report
## 7012 California Capacity Report
## 7013 California Capacity Report
## 7014 job description
## 7015 FW: MARKET FOCUSED ON LIQUIDITY CRUNCH AND UNKNOWN
## 7016 Columbia Gulf order on negotiated rates
## 7017 Columbia Gulf order on negotiated rates
## 7018 Columbia Gulf order on negotiated rates
## 7019 RE: Columbia Gulf order on negotiated rates
## 7020 RE: Columbia Gulf order on negotiated rates
## 7021 RE: Columbia Gulf order on negotiated rates
## 7022 Phase VI draft
## 7023 postponed Sun Devil update for Monday 10/29
## 7024 postponed Sun Devil update for Monday 10/29
## 7025 postponed Sun Devil update for Monday 10/29
## 7026 postponed Sun Devil update for Monday 10/29
## 7027 postponed Sun Devil update for Monday 10/29
## 7028 postponed Sun Devil update for Monday 10/29
## 7029 postponed Sun Devil update for Monday 10/29
## 7030 postponed Sun Devil update for Monday 10/29
## 7031 postponed Sun Devil update for Monday 10/29
## 7032 postponed Sun Devil update for Monday 10/29
## 7033 postponed Sun Devil update for Monday 10/29
## 7034 postponed Sun Devil update for Monday 10/29
## 7035 postponed Sun Devil update for Monday 10/29
## 7036 postponed Sun Devil update for Monday 10/29
## 7037 SUN DEVIL MTG. Cost Allocation and Rate Design
## 7038 SUN DEVIL MTG. Cost Allocation and Rate Design
## 7039 Reschedule- Rescheduled Meeting: Tarrif Game Plan Date: Monday, February 26, 2001 Time: 10:30 - 12:00pm Location: 3AC-18C3 (26 Feb 02:00 PM CST)
## 7040 Updated: Discuss GE Capital - Trades Payable Program >ETS rollout
## 7041 Updated: Discuss GE Capital - Trades Payable Program >ETS rollout
## 7042 Operations Cmte. Kickoff Mtg/EB49C2 & OMA7
## 7043 Operations Cmte. Kickoff Mtg/EB49C2 & OMA7
## 7044 Contracts/Capacity Release Project - Bi-weekly Ops Cmte Mtg
## 7045 Contracts/Capacity Release Project - Bi-weekly Ops Cmte Mtg
## 7046 Meeting with Teb Lokey to discuss cost estimate
## 7047 Meeting with Teb, Rob and Blair Ned, Tess and Alice in Conference Room EB3872 to dicuss tariff calculations and other Open Season issues
## 7048 Phase IV Line Pack-EB39C1
## 7049 Updated: Exhibit K Calypso PIpeline ***************NOTE LOCATION CHANGE 3AC 18 C3 ****************
## 7050 OPS CMTE. Mtg/ EB49C2/OMA7
## 7051 Ops Cmte Mtg.- EB4102/OMA6
## 7052 Ops Cmte Mtg.- EB4102/OMA6
## 7053 FW: Cost of Svc meeting for Sun Devil Project
## 7054 Meeting
## 7055 FW: PPAR Team: FERC Order 598
## 7056 Conf. Call-Omaha
## 7057 FW: Transwestern Meeting
## 7058 FW: Transwestern Meeting
## 7059 FW: Transwestern Meeting
## 7060 FW: TW Order report formats and data capture Mtg
## 7061 TMS Allocation process
## 7062 Updated: KUA and FPC - Cane Island lateral and meters
## 7063 Updated: CMS/CRS Ops Cmte Mtg/EB30C2-OMA3C1
## 7064 Updated: CMS/CRS Ops Cmte Mtg/EB30C2-OMA3C1
## 7065 Updated: Rates & Revenue Project Kickoff - Business Team
## 7066 Updated: Rates & Revenue Project Kickoff - Business Team
## 7067 Unwinding Index Deals
## 7068 Unwinding Index Deals
## 7069 Unwinding Index Deals
## 7070 Unwinding Index Deals
## 7071 Unwinding Index Deals
## 7072 Unwinding Index Deals
## 7073 Canceled: Unwinding 1 to 1 deals
## 7074 Canceled: Unwinding 1 to 1 deals
## 7075 Canceled: Unwinding 1 to 1 deals
## 7076 Canceled: Unwinding 1 to 1 deals
## 7077 Canceled: Unwinding 1 to 1 deals
## 7078 Canceled: Unwinding 1 to 1 deals
## 7079 Canceled: Unwinding 1 to 1 deals
## 7080 Canceled: Unwinding 1 to 1 deals
## 7081 New Discount for GSA Contract
## 7082 New Discount for GSA Contract
## 7083 RE:
## 7084 FW: EESI (EnronE) account in eCapacity II
## 7085 RE: Move Location to 6 in Old Enron Building (ECN)
## 7086 RE: Move Location to 6 in Old Enron Building (ECN)
## 7087 RE: Move Location to 6 in Old Enron Building (ECN)
## 7088 RE: Move Location to 6 in Old Enron Building (ECN)
## 7089 Canceled: Org. Structure
## 7090 Canceled: Org. Structure
## 7091 FW: Move Location to 6 in Old Enron Building (ECN)
## 7092 RE: Riverside County Waste Mgt
## 7093 RE: Riverside County Waste Mgt
## 7094 RE: Riverside County Waste Mgt
## 7095 RE: Riverside County Waste Mgt
## 7096 RE: Superbowl Party and Fish Fry
## 7097
## 7098 RE: Green Power Partners
## 7099 Saturday Golf
## 7100
## 7101 FW: Superbowl Party and Fish Fry
## 7102 RE: Superbowl Party
## 7103 NYISO Invoice (December 2001) Detail
## 7104 NYISO Invoice (December 2001) Detail
## 7105 NYISO Invoice (December 2001) Detail
## 7106
## 7107 FW: Green Power Partners
## 7108 FW: Green Power Partners
## 7109 FW: Green Power Partners
## 7110 FW: Green Power Partners
## 7111 FW: Green Power Partners
## 7112 FW: Green Power Partners
## 7113 FW: Green Power Partners
## 7114 RE: Green Power Partners
## 7115 RE: Green Power Partners
## 7116 RE: Green Power Partners
## 7117 RE: Green Power Partners
## 7118 RE: Green Power Partners
## 7119 RE: Green Power Partners
## 7120 RE: Green Power Partners
## 7121 RE: Green Power Partners
## 7122 RE: Green Power Partners
## 7123 RE: Green Power Partners
## 7124 FW: 2002 Holiday Schedule
## 7125 FW: 2002 Holiday Schedule
## 7126 RE: Garnet changing to APX
## 7127 RE: Oct Green Power
## 7128 FW: GreenPowerSept01.xls
## 7129
## 7130
## 7131 FW: NYSRC Reliability Rules Subcommittee Meeting No. 32-January 3, 20\t02
## 7132 FW: Invoices
## 7133 RE: Labels
## 7134 Renewable Positions
## 7135
## 7136 RE: ma rps
## 7137 RE: ma rps
## 7138 RE: ma rps
## 7139 FW: Termination Proceedings
## 7140 FW: Termination Proceedings
## 7141 FW: Termination Proceedings
## 7142 FW: Boston Globe Article
## 7143 RE: Riverside Contract Draft
## 7144 FW: EPA Houston TX Renewable Request for Information
## 7145 FW: EPA Houston TX Renewable Request for Information
## 7146 FW: EPA Houston TX Renewable Request for Information
## 7147 RE: Wind Farm
## 7148 FW:
## 7149 MA Standard Offer Prices
## 7150 FW: October 31, 2001 BAWG Agenda
## 7151 FW: NYS Reliability Council - Reliability Compliance Monitoring Subcommittee Meeting No. 23 - November 1, 2001 - LOCATION CHANGE
## 7152
## 7153 RE: Refresh pricing
## 7154 RE: Refresh pricing
## 7155 RE: Refresh pricing
## 7156 Riverside Waste County Management Department
## 7157 FW: Sun Micro information
## 7158 December CEC Reporting
## 7159 NYISO_Comparison
## 7160 NYISO_Comparison
## 7161 CEC Reporting Information
## 7162 Move Location to 6 in Old Enron Building (ECN)
## 7163 Parking Receipt for Benefit Purpose - Correction Notice
## 7164 FW: PJM (PECO ENERGY COMPANY)
## 7165 Stay in Touch
## 7166 contact info
## 7167 RE: Stay in Touch
## 7168 FW: Yale SOM
## 7169 RE: hellooo
## 7170 RE: hellooo
## 7171 Leaving Enron.....
## 7172 Leaving Enron.....
## 7173 Leaving Enron.....
## 7174 Customer Account # s
## 7175 Customer Account # s
## 7176 Re: Customer Account # s
## 7177 Customer Account # s
## 7178 Customer Account # s
## 7179 Re: Customer Account # s -- Simon
## 7180 Customer Account # s - Lucent
## 7181 Customer Account # s - Lucent
## 7182 Customer Account # s
## 7183 Customer Account # s
## 7184 Enron Center Garage
## 7185 Enron Center Garage
## 7186 Enron Center Garage
## 7187 Enron Center Garage
## 7188 Environmental, Health and Safety Web Site
## 7189 Environmental, Health and Safety Web Site
## 7190 Environmental, Health and Safety Web Site
## 7191 Environmental, Health and Safety Web Site
## 7192 4-URGENT - OWA Please print this now.
## 7193 Service Management III Organizational Chart
## 7194 An Enron Jingle
## 7195 FW: [Fwd: Fw: Wash. Post article on power transmission]
## 7196 FW: Renewable Trading Group
## 7197 FW: Net Generation and Utility Retail SalesApril 2001
## 7198 Data requirements for enrollment
## 7199 Re: Edison Electric Institute "Master Agreement"
## 7200 FW: Court Decision on NOx - EPA Section 126 Rule
## 7201 FW: PIRA s Monthly Gas Forecasts 08/24/01
## 7202 FW: PIRA s Gas Flash Weekly 09/05/01
## 7203 FW: pjm-media PJM News Release - September 6, 2001
## 7204 saturday get together
## 7205 FW: NERC 10 Year Assessment - Early Draft
## 7206 MA Accounts List
## 7207 BGE Index Product - Change to LMP BGE Zone Index
## 7208 BGE Index Product - Change to LMP BGE Zone Index
## 7209 RE: BGE Index Product - Change to LMP BGE Zone Index
## 7210 RE: BGE Index Product - Change to LMP BGE Zone Index
## 7211 RE: BGE Index Product - Change to LMP BGE Zone Index
## 7212 RE: BGE Index Product - Change to LMP BGE Zone Index
## 7213 Financial to Physical Switching
## 7214 FW: Electricity Is Not Cyclical/Kit Konolige/MS Electric Utilities Research
## 7215 RE: Unforced capacity credits
## 7216 RE: Unforced capacity credits
## 7217 RE: Unforced capacity credits
## 7218 RE: PJM UCAP May-02 thru Dec-02
## 7219 RE: Unforced capacity credits
## 7220 RE: PJM_UCAP
## 7221 RE: PJM_UCAP
## 7222 FTRs Allocation
## 7223 Electronic Pay Stubs
## 7224 RE: Riverside Contract Status
## 7225 RE:
## 7226 FW:
## 7227 RE:
## 7228 FW: FYI-Floor Plan
## 7229 FW: VAMC Cogen and GSA Commodity Deal
## 7230 FW: VAMC Cogen and GSA Commodity Deal
## 7231 FW: Performance Bonds
## 7232 FW: Performance Bonds
## 7233 mass
## 7234 FW: Green Power Partners
## 7235 RE: Green Power Partners
## 7236 RE: Green Power Partners
## 7237 New Home for Curve Generators
## 7238 FW: Available Now - REPORT ON EXISTING AND POTENTIAL ELECTRIC SYSTEM \tCONSTRAINTS AND NEEDS WITHIN THE ERCOT REGION
## 7239 Green Purchases Analysis
## 7240 FW: Termination Proceedings
## 7241 Maryland "Index Plus" Product
## 7242 Re: NJ Index plus
## 7243 Re: NJ Index plus
## 7244 FW: Grant Green
## 7245 Orders issued today in NYISO and ISO-NE proceedings
## 7246 Orders issued today in NYISO and ISO-NE proceedings
## 7247 Orders issued today in NYISO and ISO-NE proceedings
## 7248 Orders issued today in NYISO and ISO-NE proceedings
## 7249 Orders issued today in NYISO and ISO-NE proceedings
## 7250 Orders issued today in NYISO and ISO-NE proceedings
## 7251 Orders issued today in NYISO and ISO-NE proceedings
## 7252 Orders issued today in NYISO and ISO-NE proceedings
## 7253 Re: NJ Index plus
## 7254 Re: NJ Index plus
## 7255 EEMC Purchases
## 7256 Re: NJ Index plus
## 7257 Re: NJ Index plus
## 7258 Riverside Contract Draft
## 7259 Richard Ring/Jennifer Medcalf re: A lones Teaming Agreement
## 7260 WARNING: Your mailbox is approaching the size limit
## 7261 ma rps
## 7262 RE:
## 7263 FW: EPA Houston TX Renewable Request for Information
## 7264 Leaving Enron.....
## 7265 Leaving Enron.....
## 7266 Leaving Enron.....
## 7267
## 7268 RE: ma rps
## 7269 EEMC NEPOOL PGE&T
## 7270 Updated: Richard Ring/Jennifer Medcalf re: A lones Teaming Agreement
## 7271 final comments
## 7272 final comments
## 7273 Re: NJ Index plus
## 7274 Re: NJ Index plus
## 7275 Re: NJ Index plus
## 7276 Re: NJ Index plus
## 7277 Boston Globe Article
## 7278 Summary version
## 7279 Summary version
## 7280 Summary version
## 7281
## 7282
## 7283 Wind Farm
## 7284 Wind Farm
## 7285 NYISO Training
## 7286 NYISO Training
## 7287 NYISO Training
## 7288 FW: FERC Approval of the NYISO Virtual Bidding Proposal
## 7289 FW: FERC Approval of the NYISO Virtual Bidding Proposal
## 7290 FW: FERC Approval of the NYISO Virtual Bidding Proposal
## 7291 Enron Corp.: Enron Unit,New England Market Downplay Report Of Default
## 7292 info/catch up/ RPS predictions
## 7293 FW: Update Required for National Grid FTP Site Access
## 7294 FW: Market Meeting Agenda
## 7295 Refresh pricing
## 7296 FW: Refresh pricing
## 7297 Spreadsheet of EES positions
## 7298 FW: NYMOC - Houston, Texas: December 11-13
## 7299 FW: NYMOC - Houston, Texas: December 11-13
## 7300 FW: NYMOC - Houston, Texas: December 11-13
## 7301 FW: Greatest Savings
## 7302 RE: Green Power Partners
## 7303 RE: Green Power Partners
## 7304 RE: Green Power Partners
## 7305 RE: Green Power Partners
## 7306 RE: Green Power Partners
## 7307 RE: Green Power Partners
## 7308 RE: Green Power Partners
## 7309 RE: Green Power Partners
## 7310 RE: Riverside County Waste Mgt
## 7311 RE: Riverside County Waste Mgt
## 7312 RE: Riverside County Waste Mgt
## 7313 FW: Enron Wind Termination
## 7314 RE: GreenPowerSept01.xls
## 7315 FW: Oct Green Power
## 7316 FW: Garnet changing to APX
## 7317 RE: Garnet changing to APX
## 7318 Massachusetts Labels
## 7319 Massachusetts Labels
## 7320 Meeting regarding Maine Annual Report and California Annual Report
## 7321 Meeting regarding Maine Annual Report and California Annual Report
## 7322 Green Power Production
## 7323 Labels
## 7324 RE: EESI Renewable Product
## 7325 FW: env disc - regional data
## 7326 FW: env disc - regional data
## 7327 FW: Potential green customers
## 7328
## 7329 Patagonia Consumption
## 7330 RE: Green Power
## 7331 Green Power
## 7332 Green Power
## 7333 Green Power
## 7334 EES Contact Information?
## 7335 EES Contact Information?
## 7336 FW: Greatest Savings
## 7337 RE:
## 7338 RE: EPA RFI
## 7339 FW: phone into Edgefield
## 7340
## 7341
## 7342 Conference Call
## 7343 FW: Conference Call
## 7344
## 7345
## 7346 FW:
## 7347 FW: Renewables
## 7348 FW: [calrps] State Incentives for Renewables
## 7349 Spreadsheet of EES positions
## 7350 FW: Renewables Fundamentals URL
## 7351 FW: Generator based sourcing standards
## 7352 August MPR s
## 7353 Customer Reporting Requirements
## 7354 Customer Reporting Requirements
## 7355 RE: EPA RFI
## 7356 RE: epa
## 7357 EPA RFI
## 7358 epa
## 7359 RE: epa
## 7360 RE: PennFuture s E-Cubed - Wind Market Power
## 7361 Refresh pricing
## 7362 FW: Refresh pricing
## 7363 Green Purchases Analysis
## 7364 EEMC Purchases
## 7365 FW: Grant Green
## 7366 RE: REVISED MA Disclosure Label and Terms of Service Summary
## 7367 EES OH / Quarterly Disclosure Label to Customers & PUC
## 7368 Re: MA disclosure label for mid-market physical product (with price variability)
## 7369 Re: MA disclosure label for mid-market physical product (with price variability)
## 7370 AZ, MT & NV
## 7371 EES env product strategy mtg
## 7372 Dinner Invitation on the 31st in Portland
## 7373 Dinner Invitation on the 31st in Portland
## 7374 RE: EES env product strategy mtg
## 7375 EES credit refund to EPMI
## 7376 FW: Dinner Invitation on the 31st in Portland
## 7377 FW: Dinner Invitation on the 31st in Portland
## 7378 Energy Efficiency info for Green Power meeting
## 7379 Energy Efficiency info for Green Power meeting
## 7380 RE: Energy Efficiency info for Green Power meeting
## 7381 RE: Energy Efficiency info for Green Power meeting
## 7382 Renewable Orig/Trading Opportunities Mtg
## 7383 Renewable Orig/Trading Opportunities Mtg
## 7384 Renewable Orig/Trading Opportunities Mtg
## 7385 Renewable Orig/Trading Opportunities Mtg
## 7386 Renewable Orig/Trading Opportunities Mtg
## 7387 Renewable Orig/Trading Opportunities Mtg
## 7388 Renewable Orig/Trading Opportunities Mtg
## 7389 Renewable Orig/Trading Opportunities Mtg
## 7390 Renewable Orig/Trading Opportunities Mtg
## 7391 Follow up on Greening the bldg
## 7392 Follow up on Greening the bldg
## 7393 Re: Follow up on Greening the bldg
## 7394 RE: Follow up on Greening the bldg
## 7395 Elimination of BizMix Product Offering
## 7396 Elimination of BizMix Product Offering
## 7397 Re: Elimination of BizMix Product Offering
## 7398 CA BIZMIX Issues
## 7399 RE: CA BIZMIX Issues
## 7400 RE: CA BIZMIX Issues
## 7401 RE: CA BIZMIX Issues
## 7402 RE: CA BIZMIX Issues
## 7403 RE: CA BIZMIX Issues
## 7404 RE: CA BIZMIX Issues
## 7405 RE: CA BIZMIX Issues
## 7406 Lost Arrow (Patagonia)
## 7407 Re: ME & NJ disclosure labels for direct mini forms -- PLEASE REVIEW
## 7408 Re: ME & NJ disclosure labels for direct mini forms -- PLEASE REVIEW
## 7409 RE: CA BIZMIX Issues/Confidential
## 7410 RE: CA BIZMIX Issues/Confidential
## 7411 RE: CA BIZMIX Issues/Confidential
## 7412 RE: CA BIZMIX Issues/Confidential
## 7413 follow up w/ DOE/NREL
## 7414 RE: Organization Update - EES USA
## 7415 July Riverside Unit
## 7416 RE: follow up w/ DOE/NREL
## 7417 FW: Renewable Orig/Trading Opportunities Mtg
## 7418 FW: Renewable Orig/Trading Opportunities Mtg
## 7419 FW: Renewable Orig/Trading Opportunities Mtg
## 7420 FW: Renewable Orig/Trading Opportunities Mtg
## 7421 FW: Renewable Orig/Trading Opportunities Mtg
## 7422 FW: Renewable Orig/Trading Opportunities Mtg
## 7423 FW: Renewable Orig/Trading Opportunities Mtg
## 7424 FW: Renewable Orig/Trading Opportunities Mtg
## 7425 FW: Renewable Orig/Trading Opportunities Mtg
## 7426 ME Direct Mini Form
## 7427 EES Jan
## 7428 Re: EES OH / Quarterly Disclosure Label to Customers & PUC
## 7429 RE: CA BIZMIX Issues/Confidential
## 7430 TX Disclosure
## 7431 TX Disclosure
## 7432 FW: TX Disclosure
## 7433 RE: Mass. Disclosure
## 7434 Mass Financial to Physical Customers
## 7435 TX Disclosure
## 7436 TX Disclosure
## 7437 Maine and Massachusetts Price per kWh Information
## 7438 Maine and Massachusetts Price per kWh Information
## 7439 Re: Ohio Disclosure Labels
## 7440 Re: Maine and Massachusetts Price per kWh Information
## 7441 Re: Maine and Massachusetts Price per kWh Information
## 7442 Renewable Orig/Trading Opportunities Mtg TODAY
## 7443 Renewable Orig/Trading Opportunities Mtg TODAY
## 7444 Renewable Orig/Trading Opportunities Mtg TODAY
## 7445 Renewable Orig/Trading Opportunities Mtg TODAY
## 7446 Renewable Orig/Trading Opportunities Mtg TODAY
## 7447 Renewable Orig/Trading Opportunities Mtg TODAY
## 7448 Renewable Orig/Trading Opportunities Mtg TODAY
## 7449 Renewable Orig/Trading Opportunities Mtg TODAY
## 7450 Renewable Orig/Trading Opportunities Mtg TODAY
## 7451 RE: CA emissions factor
## 7452 Riverside Update
## 7453 RE: CA emissions factor
## 7454 Weekly conference Call information
## 7455 Riverside Generation
## 7456 Re: Ohio Disclosure Labels
## 7457 Riverside Charges
## 7458 FW: Enron s Wind Unit Reported in Talks Energy: Turbine division may fetch $723 million ...
## 7459 FW: Enron s Wind Unit Reported in Talks Energy: Turbine division may fetch $723 million ...
## 7460 Kinko s renewable energy provision
## 7461 Riverside Update
## 7462 RE: Confirm for "latest" biomass deal
## 7463 California & Mass Label
## 7464 Kinko s Electric Master
## 7465 Patagonia contact
## 7466 Environmental Labels
## 7467 RE: Greetings
## 7468 FW:
## 7469 FW:
## 7470 Re: Maine and Massachusetts Price per kWh Information
## 7471 Re: Maine and Massachusetts Price per kWh Information
## 7472 Re: Kinko s Electric Master
## 7473 Re: Kinko s Electric Master
## 7474 PUC Press Release - PUC Statement on Wind Farm Project in Southeast PA
## 7475 Kinko s Electric Master
## 7476 CA Labels
## 7477 CA Labels
## 7478 MA, ME & CA Labels
## 7479 Building meeting
## 7480 TX disclosure
## 7481 TX disclosure
## 7482 TX disclosure
## 7483 TX disclosure
## 7484 Revised Green Tag Confirm
## 7485 Re: Building meeting
## 7486 Re: Building meeting
## 7487 File
## 7488 RE: File
## 7489 CA RPS proposal & potential impact
## 7490 CA RPS proposal & potential impact
## 7491 CA RPS proposal & potential impact
## 7492 RE: CA RPS proposal & potential impact
## 7493 RE: CA RPS proposal & potential impact
## 7494 RE: CA RPS proposal & potential impact
## 7495 RE: CA RPS proposal & potential impact
## 7496 RE: CA RPS proposal & potential impact
## 7497 RE: CA RPS proposal & potential impact
## 7498 RE: CA RPS proposal & potential impact
## 7499 RE: CA RPS proposal & potential impact
## 7500 RE: CA RPS proposal & potential impact
## 7501 RE: CA RPS proposal & potential impact
## 7502 RE: CA RPS proposal & potential impact
## 7503 RE: CA RPS proposal & potential impact
## 7504 RE: CA RPS proposal & potential impact
## 7505 RE: CA RPS proposal & potential impact
## 7506 RE: CA RPS proposal & potential impact
## 7507 RE: CA RPS proposal & potential impact
## 7508 RE: CA RPS proposal & potential impact
## 7509 RE: CA RPS proposal & potential impact
## 7510 RE: Building meeting
## 7511 RE: Building meeting
## 7512 calculation
## 7513 RE: CA RPS proposal & potential impact
## 7514 RE: CA RPS proposal & potential impact
## 7515 RE: CA RPS proposal & potential impact
## 7516 FW: Building meeting
## 7517 RE: CA BIZMIX Issues/Confidential
## 7518 RE: CA BIZMIX Issues/Confidential
## 7519 RE: CA BIZMIX Issues/Confidential
## 7520 RE: CA BIZMIX Issues/Confidential
## 7521
## 7522
## 7523 FW: Marketers Conference call
## 7524 Here is the documentation of Badlands unit
## 7525 Renewable Power Desk Activities
## 7526 Maine Green Power
## 7527 RE: CA Labels
## 7528 RE: CA Labels
## 7529 MI language
## 7530 california potential RPS
## 7531 california potential RPS
## 7532 california potential RPS
## 7533 california potential RPS
## 7534 california potential RPS
## 7535 MA RPS intelligence
## 7536 MA RPS intelligence
## 7537 MA RPS intelligence
## 7538 RE:
## 7539 FW: GPMDG Proposal
## 7540 FW: Case No. U-12487 Comments on Calculating Regionsl\tFuel/Emissions Data
## 7541 August 2001 "Riverside Unit"
## 7542 Cal Labels
## 7543 Re: kinko s
## 7544 FW: June s MPR
## 7545 Re: California CEC 2000 Annual Report & Maine 2000 Annual Report
## 7546 FW: Renewables directive finally adopted
## 7547 FW: SIX 27 - Direct Access
## 7548 Riverside County
## 7549 FW: Kevin Presto comments on the summary of Bingaman bill
## 7550 FW: Kevin Presto comments on the summary of Bingaman bill
## 7551 FW: Kevin Presto comments on the summary of Bingaman bill
## 7552 FW: Kevin Presto comments on the summary of Bingaman bill
## 7553 FW: Kevin Presto comments on the summary of Bingaman bill
## 7554 FW: Kevin Presto comments on the summary of Bingaman bill
## 7555 Kinko s comments
## 7556 FW: Nick H.
## 7557 CEC Renewable Filings
## 7558 CEC Renewable Filings
## 7559 RE: CEC Renewable Filings
## 7560 RE: CEC Renewable Filings
## 7561 conference call sb agenda
## 7562 conference call sb agenda
## 7563 FW: Corporate Responsibility Report
## 7564 FW: Renewable Power Desk Activities
## 7565 Biz School Reading
## 7566 i m on a conference call.....
## 7567 REC fees/TX transmission
## 7568 REC fees/TX transmission
## 7569 REC fees/TX transmission
## 7570 RE: i m on a conference call.....
## 7571 RE: i m on a conference call.....
## 7572 FW: plants: Military Contractors Stock Prices Soar
## 7573 FW: Green energy ready to boom
## 7574 FW: Renewable Energy Today - 09.19.01
## 7575 RE: REC fees/TX transmission
## 7576 RE: REC fees/TX transmission
## 7577 RE: REC fees/TX transmission
## 7578 RE: REC fees/TX transmission
## 7579 RE: REC fees/TX transmission
## 7580 RE: REC fees/TX transmission
## 7581 RE: Renewable Energy Today - 09.19.01
## 7582 RE: Renewable Energy Today - 09.19.01
## 7583 RE:
## 7584 RE:
## 7585 RE:
## 7586 RE: Question about the Enron Power Marketings Purchase from BPA &Grant Co
## 7587 RE: request
## 7588 FW: Report on today s ERCOT Wind Meeting
## 7589 FW: Report on today s ERCOT Wind Meeting
## 7590 FW: Report on today s ERCOT Wind Meeting
## 7591 Calif Renewable Pwr Plant Owners Fight Edison Bankruptcy
## 7592 please look over
## 7593 sb weekly
## 7594 sb weekly
## 7595 Massachusetts Customers
## 7596 fundamentals
## 7597 FW: fundamentals
## 7598 FW: fundamentals
## 7599 Green power price curve
## 7600 New Renewable Energy Page
## 7601 New Renewable Energy Page
## 7602 New Renewable Energy Page
## 7603 New Renewable Energy Page
## 7604 RE: New Renewable Energy Page
## 7605 RE: New Renewable Energy Page
## 7606 FW: Conference call
## 7607 FW: Renewables customer for upsell on a green ticket swap
## 7608 FW: Is this statement correct?
## 7609 FW: Is this statement correct?
## 7610 FW: Price request
## 7611 RE:
## 7612 FW: Environmental News: Global Warming: MIRANT TO FUND AT LEAST $50 MILLION IN CLIMATE CHANGE ...
## 7613 RE: Green power prices - Starbucks
## 7614 TX intelligence
## 7615 FW: Congress defies Bush on arsenic, global warming
## 7616 RE: Green power prices - Starbucks
## 7617 Re: Cal_2000_Historical_EnronEarthSmartBizmix_Disclosure_Label
## 7618 Mass Labels
## 7619 RE: Cal_2000_Historical_EnronEarthSmartBizmix_Disclosure_Label
## 7620 Conference Call
## 7621
## 7622 RE: Conference Call
## 7623 Fetzer Vineyards and renewable power
## 7624 Fetzer Vineyards and renewable power
## 7625 RE: Conference Call
## 7626 RE: Conference Call
## 7627 RE: Conference Call
## 7628 Green Credit Spreadsheets
## 7629 Renewable Power Group
## 7630 RE: Fetzer Vineyards and renewable power
## 7631 RE: Fetzer Vineyards and renewable power
## 7632 RE: NEW! Energy Efficiency Management for Texas
## 7633 FW: Discussion Document
## 7634 FW: Navitas/certificates
## 7635 RE: competitive analysis
## 7636 GSA Label
## 7637 FW: Environmental Strategy: Not A Time for Second-guessing - CERA Insight
## 7638 FW: Environmental Strategy: Not A Time for Second-guessing - CERA Insight
## 7639 RE:
## 7640 FW: Draft RPS REGS
## 7641 RE:
## 7642 RE:
## 7643 RE:
## 7644 RE:
## 7645 RE:
## 7646 RE:
## 7647 FW:
## 7648 FW: [NEWSRELEASES-LIST] Energy Commission Auction Increases California s Yield of\tGreen Power
## 7649 FW: 1999 Small Hydro inventory
## 7650 FW: PJM Mtg Recap
## 7651 Web sites for our group
## 7652 This Week
## 7653 Renewable Energy folder on O-drive
## 7654 RE: Renewable Energy folder on O-drive
## 7655 RE: Renewable Energy folder on O-drive
## 7656 Product Description
## 7657 RE: Product Description
## 7658 RE: Product Description
## 7659 RE: Renewable Energy folder on O-drive
## 7660 Call-in number
## 7661 FW: Product Description
## 7662 RE: Product Description
## 7663 FW: off-site
## 7664 Product Offering
## 7665 RE:
## 7666 RE:
## 7667 RE: Access to O drive
## 7668 RE: Renewable Energy Product Description
## 7669 Retreat
## 7670 RE: off-site
## 7671 Access to O drive
## 7672 Progress Report
## 7673 RE: badlands
## 7674 RE: badlands
## 7675 Request for True-up calculations
## 7676 Request for True-up calculations
## 7677 e-mail to Heather
## 7678 IMPORTANT - Renewable power group retreat
## 7679 travel to Portland
## 7680 Dinner, Wed. Nov. 7
## 7681 RE: Ohio Label
## 7682 RE: Ohio Label
## 7683 RE: Ohio Label
## 7684 RE: Ohio Label
## 7685 Call today - 3pm Central
## 7686 Renewables fundies site
## 7687 Riverside County Waste Mgt
## 7688 Needs information-Customers requesting ConEd bundled services
## 7689 Needs information-Customers requesting ConEd bundled services
## 7690 RE: Needs information-Customers requesting ConEd bundled services
## 7691 FW: Massachusetts Electric Default Customer List - FTP Site Instructions
## 7692 FW: Massachusetts Electric Default Customer List - FTP Site Instructions
## 7693 Maryland Index Product - Update
## 7694 FW: Exelon Show Cause Order
## 7695 MD Index Product - Draft TC
## 7696 MD Index Product - Draft TC
## 7697 RE: Maryland Index Product - Update
## 7698 Re: MD Index Product - Draft TC
## 7699 Re: MD Index Product - Draft TC
## 7700 Re: FW: MD Index Product - Draft TC
## 7701 Re: TC
## 7702 BGE Index Product - Draft Confirm
## 7703 BGE Index Product - Draft Confirm
## 7704 Re: BGE Index Product - Draft Confirm
## 7705 Re: BGE Index Product - Draft Confirm
## 7706 Re: BGE Index Product - Draft Confirm
## 7707 Re: BGE Index Product - Draft Confirm
## 7708 Most recent version of TC
## 7709 Most recent version of TC
## 7710 RE: Most recent version of TC
## 7711 RE: Most recent version of TC
## 7712 MD Index Product - Scheduling Fee
## 7713 RE: MD Index Product - Scheduling Fee
## 7714 RE: PJM UCAP
## 7715 RE: MD Index Product - Draft Invoice and Calculations
## 7716 RE: MD Index Product - Draft Invoice and Calculations
## 7717 RE: MD Index Product - Draft Invoice and Calculations
## 7718 RE: MD Index Product - Draft Invoice and Calculations
## 7719
## 7720
## 7721 MD Index Product PAT
## 7722 MD Index Product PAT
## 7723 PJM FTRs
## 7724 Allen Meyer Willamette Bids for PJM ICAP.xls
## 7725 MD Index Product Approval Template Revisions
## 7726 FW: Energy Reconciliation Letter Sent 10/12/01
## 7727 FW: Energy Reconciliation Letter Sent 10/12/01
## 7728 EES loads in PECO
## 7729 EES loads in PECO
## 7730 New forecast of EES hourly loads in PECO
## 7731 New forecast of EES hourly loads in PECO
## 7732 RE: Green Power Partners
## 7733 RE: Green Power Partners
## 7734 RE: Green Power Partners
## 7735 RE: Green Power Partners
## 7736 RE: Enron Energy Services, Inc. - Notice of Financial Assurance Policy Default
## 7737 RE: Enron Energy Services, Inc. - Notice of Financial Assurance Policy Default
## 7738 RE: Enron Energy Services, Inc. - Notice of Financial Assurance Policy Default
## 7739 NEPOOL Discussions
## 7740 NEPOOL Discussions
## 7741 NEPOOL Discussions
## 7742 NEPOOL Discussions
## 7743 NEPOOL Discussions
## 7744 NEPOOL Discussions
## 7745 NEPOOL Discussions
## 7746 NEPOOL Discussions
## 7747 RE: Invoice
## 7748 RE: Invoice
## 7749 Invoice # 440677 Bond No. 613 1506
## 7750 Summary version
## 7751 Summary version
## 7752 Summary version
## 7753 FW: Rejected Invoices for Bond Premiums
## 7754 FW: NEPOOL Markets Committee Oct 9-10 Meeting Report
## 7755 FW: NEPOOL Markets Committee Oct 9-10 Meeting Report
## 7756 FW: NEPOOL Markets Committee Oct 9-10 Meeting Report
## 7757 FW: NEPOOL Markets Committee Oct 9-10 Meeting Report
## 7758 FW: NEPOOL Markets Committee Oct 9-10 Meeting Report
## 7759 FW: NEPOOL Markets Committee Oct 9-10 Meeting Report
## 7760 ISO New England Special Interim Market Rule (EL00-62-035)
## 7761 ISO New England Special Interim Market Rule (EL00-62-035)
## 7762 ISO New England Special Interim Market Rule (EL00-62-035)
## 7763 ISO New England Special Interim Market Rule (EL00-62-035)
## 7764 ISO New England Special Interim Market Rule (EL00-62-035)
## 7765 ISO New England Special Interim Market Rule (EL00-62-035)
## 7766 ISO New England Special Interim Market Rule (EL00-62-035)
## 7767 ISO New England Special Interim Market Rule (EL00-62-035)
## 7768 D.O.T. Proposal and Interval Data
## 7769 D.O.T. Proposal and Interval Data
## 7770 Phyisical Delivery in MA
## 7771 RECEIVED: A Lones Group / Mirant Energy Americas, L.P
## 7772 RE: A Lones Group / Mirant Energy Americas, L.P
## 7773 RE: A Lones Group / Mirant Energy Americas, L.P
## 7774 RE: A Lones Group / Mirant Energy Americas, L.P
## 7775 Re: New Acc t Numbers
## 7776 Conf Call re: Invoicing for GSA Renewable Power
## 7777 Conf Call re: Invoicing for GSA Renewable Power
## 7778 RE: Conf Call re: Invoicing for GSA Renewable Power
## 7779 Fwd: We ll go forward from this moment
## 7780 GSA Green Power Billing
## 7781 GSA Green Power Billing
## 7782 Renewable Costs for GSA for FY 2001
## 7783 RE: Edison Electric Institute/Master Power Purchase & Sale Agreement
## 7784 RE: Edison Electric Institute/Master Power Purchase & Sale Agreement
## 7785 RE: Edison Electric Institute/Master Power Purchase & Sale Agreement
## 7786 GSA Region 1 Projects Transition
## 7787 RE: GSA Region 1 Projects Transition
## 7788 RE: GSA Region 1 Projects Transition
## 7789 RE: GSA Region 1 Projects Transition
## 7790 Re: A Lones Group
## 7791 RE: A Lones Group
## 7792 RE: A Lones Group
## 7793 Comments on GSA Region 1 Projects Transition
## 7794 Comments on GSA Region 1 Projects Transition
## 7795 RE: A Lones Group
## 7796 Re: Credit Information
## 7797 Negawatts from Cogen
## 7798 RE: A lones transaction
## 7799 VAMC Cogen and GSA Commodity Deal
## 7800 FW: GSA contract
## 7801 Re: FW: VAMC Cogen and GSA Commodity Deal
## 7802 Re: FW: VAMC Cogen and GSA Commodity Deal
## 7803 GSA Commodity
## 7804 EOL/Kiodex Co-Marketing Agreement
## 7805 EOL/Kiodex Co-Marketing Agreement
## 7806 EOL/Kiodex Co-Marketing Agreement
## 7807 Cabinets
## 7808 Re: FYI
## 7809 Re: FYI
## 7810 Re: FYI
## 7811 Re: O Brian article
## 7812 system outage risk
## 7813 system outage risk
## 7814 system outage risk
## 7815 Re: Grief
## 7816 Re: Trading Limits
## 7817 Mt. Hood
## 7818 Mt. Hood
## 7819 Trading Limits
## 7820 Trading Limits
## 7821 Trading Limits
## 7822 Heads Up
## 7823 Heads Up
## 7824 Heads Up
## 7825 URGENT - OMLX IT Agreements
## 7826 OMLX - URGENT: Susan Gill s details
## 7827 OMLX - Re: Revised ENRON CLICK Licence
## 7828 OMLX - Re: ENRON electronic agreements
## 7829 IMPORTANT & URGENT - Re: OMLX - ENRON electronic agreements
## 7830 OMLX application
## 7831 Re: Documentation from OM
## 7832 Re: Documentation from OM
## 7833 Re: Documentation from OM
## 7834 Re: Documentation from OM
## 7835 Re: Documentation from OM
## 7836 Re: Documentation from OM
## 7837 Re: Documentation from OM
## 7838 Re: Documentation from OM
## 7839 OMLX - Re: electronic connection - agreements
## 7840 URGENT - OMLX - WDS Agreement and Schedule 1
## 7841 Proposed FX and Interest Rate Desk in India
## 7842 Proposed FX and Interest Rate Desk in India
## 7843 Proposed FX and Interest Rate Desk in India
## 7844 ECTII - Equities trading from Houston - German-listed stocks
## 7845 ECTII - Equities trading from Houston - German-listed stocks
## 7846 ECTII - Equities trading from Houston - German-listed stocks
## 7847 ECTII - Equities trading from Houston - German-listed stocks
## 7848 London Equities Trading Desk - US legal advice
## 7849 London Equities Trading Desk - US legal advice
## 7850 Proposed London Equity Trading Desk
## 7851 Re: Possible C/P s - for ISDA s
## 7852 Helsinki Oil Trading
## 7853 Helsinki Oil Trading
## 7854 west power
## 7855 Re: ACalo
## 7856 E-Ticket Travel Itinerary and Receipt
## 7857 Re: Performance Feedback
## 7858 Re: 2- SURVEY/INFORMATION EMAIL
## 7859 PR Candidate Resume
## 7860 (01-191) EXCHANGE TO SUBSTITUTE POSITION ACCOUNTABILITY REQUIREMENTS FOR POSITION LIMIT RULES
## 7861 Re: Tanker Freight Long Description
## 7862 FW: ISDA
## 7863 Re: Tanker Freight Long Description
## 7864 Re: Margin Calls - Financial
## 7865 Re: Margin Calls - Financial
## 7866 Re: Margin Calls - Financial
## 7867 Re: Margin Calls - Financial
## 7868 Re: Margin Calls - Financial
## 7869 Re: Margin Calls - Financial
## 7870 Re: Margin Calls - Financial
## 7871 Re: Tanker Freight Long Description
## 7872 Re: Tanker Freight Long Description
## 7873 Re: Tanker Freight Long Description
## 7874 Re: Tanker Freight Long Description
## 7875 Re: Tanker Freight Long Description
## 7876 Re: Tanker Freight Long Description
## 7877 Re: Tanker Freight Long Description
## 7878 Re: Tanker Freight Long Description
## 7879 Re: Tanker Freight Long Description
## 7880 Tanker Freight Long Description
## 7881 Tanker Freight Long Description
## 7882 Tanker Freight Long Description
## 7883 Tanker Freight Long Description
## 7884 Tanker Freight Long Description
## 7885 Tanker Freight Long Description
## 7886 Tanker Freight Long Description
## 7887 Limit Order Brochure & Help Text for Review
## 7888 FW: ENRON ON LINE - PETROLEUM TANKER FREIGHT
## 7889 FW: ENRON ON LINE - PETROLEUM TANKER FREIGHT
## 7890 Marketing Manager candidate
## 7891 Letters of Credit; Preference; Swap Transactions
## 7892 Letters of Credit; Preference; Swap Transactions
## 7893 Letters of Credit; Preference; Swap Transactions
## 7894 Letters of Credit; Preference; Swap Transactions
## 7895 Product Type approval needed (CAN Newsprint Phy)
## 7896 New Computer Screen
## 7897 Re: Letters of Credit; Preference; Swap Transactions
## 7898 Re: Letters of Credit; Preference; Swap Transactions
## 7899 Re: Letters of Credit; Preference; Swap Transactions
## 7900 Re: iBuyit eProcurement Request
## 7901 Re: Tanker Freight Swap
## 7902 ISDA European Energy Conference Agenda
## 7903 ISDA European Energy Conference Agenda
## 7904 ISDA European Energy Conference Agenda
## 7905 ISDA European Energy Conference Agenda
## 7906 ISDA European Energy Conference Agenda
## 7907 ISDA European Energy Conference Agenda
## 7908 ISDA European Energy Conference Agenda
## 7909 ISDA European Energy Conference Agenda
## 7910 ISDA European Energy Conference Agenda
## 7911 ISDA European Energy Conference Agenda
## 7912 e-mail address
## 7913 e-mail address
## 7914 CONFIDENTIAL BUSINESS PROPOSAL
## 7915 CONFIDENTIAL BUSINESS PROPOSAL
## 7916 Graham s leaving date
## 7917
## 7918
## 7919 Seminar on Letters of Credit
## 7920 FW: National Poetry Month
## 7921 Trader Training Sessions
## 7922 Trader Training Sessions
## 7923 Trader Training Sessions
## 7924 Trader Training Sessions
## 7925 Trader Training Sessions
## 7926 Trader Training Sessions
## 7927 Trader Training Sessions
## 7928 Trader Training Sessions
## 7929 Trader Training Sessions
## 7930 Trader Training Sessions
## 7931 Trader Training Sessions
## 7932 Trader Training Sessions
## 7933 Trader Training Sessions
## 7934 Re: Ontario Standard Contract
## 7935 Re: Ontario Standard Contract
## 7936 Re: Ontario Standard Contract
## 7937 Re: Ontario Standard Contract
## 7938 Re: Ontario Standard Contract
## 7939 RE: Blue Sox
## 7940 Blue Sox
## 7941 BankLogic Deal Team Mtg. - "Project Bluesox"
## 7942 Project bluesox contract / legal rep for deal team
## 7943 Re: Financial Transactions - Enron Direct Canada
## 7944 Re: Financial Transactions - Enron Direct Canada
## 7945 Re: Financial Transactions - Enron Direct Canada
## 7946 Re: Financial Transactions - Enron Direct Canada
## 7947 Re: Financial Transactions - Enron Direct Canada
## 7948 Re: Financial Transactions - Enron Direct Canada
## 7949 Re: Financial Transactions - Enron Direct Canada
## 7950 Re: Financial Transactions - Enron Direct Canada
## 7951 Re: Financial Transactions - Enron Direct Canada
## 7952 Re: Financial Transactions - Enron Direct Canada
## 7953 Re: Financial Transactions - Enron Direct Canada
## 7954 No More Confirms Agreement
## 7955 No More Confirms Agreement
## 7956 Re: FW: Please Approve New Product Type: US Steel Hot Rolled Plate Financial Swap (2069)
## 7957 Revised - Title Correction - Final Schedule - Brad Eastman
## 7958 Performance Review Process
## 7959 Performance Review Process
## 7960 Performance Review Process
## 7961 Performance Review Process
## 7962 Performance Review Process
## 7963 Performance Review Process
## 7964 Performance Review Process
## 7965 Performance Review Process
## 7966 Performance Review Process
## 7967 Performance Review Process
## 7968 Performance Review Process
## 7969 Performance Review Process
## 7970 Performance Review Process
## 7971 Performance Review Process
## 7972 (01-154) Implementation of New NYMEX Rule 9.11A (Give-Up Trades)
## 7973 Legal Staffing Question
## 7974 Visiting Attorneys
## 7975 Re: Reorg - Capitalisation of LLC
## 7976 Re: Reorg - Capitalisation of LLC
## 7977 Re: Reorg - Capitalisation of LLC
## 7978 Re: Reorg - Capitalisation of LLC
## 7979 Re: Reorg - Capitalisation of LLC
## 7980 Re: Reorg - Capitalisation of LLC
## 7981 Re: Reorg - Capitalisation of LLC
## 7982 Re: Reorg - Capitalisation of LLC
## 7983 Re: Reorg - Capitalisation of LLC
## 7984 Re: Dinner Tomorrow in San Antonio
## 7985 Group Meeting
## 7986 Group Meeting
## 7987 Group Meeting
## 7988 Group Meeting
## 7989 Group Meeting
## 7990 Group Meeting
## 7991 Group Meeting
## 7992 Group Meeting
## 7993 Group Meeting
## 7994 Group Meeting
## 7995 Group Meeting
## 7996 Group Meeting
## 7997 Re: dinner Weds. night in San Antonio
## 7998 Additional Folks
## 7999 (No Subject)
## 8000 RE: Electronic Trading Facilities for Transaction in Exempt Commodities
## 8001 RE: Electronic Trading Facilities for Transaction in Exempt Commodities
## 8002 RE: Electronic Trading Facilities for Transaction in Exempt Commodities
## 8003 Re: Dinner on Wednesday, May 2, 2001, San Antonio Legal Conference
## 8004 Electronic Trading Facilities for Transaction in Exempt Commodities
## 8005 Electronic Trading Facilities for Transaction in Exempt Commodities
## 8006 Electronic Trading Facilities for Transaction in Exempt Commodities
## 8007 Electronic Trading Facilities for Transaction in Exempt Commodities
## 8008 Re: EnronOnline GTC s
## 8009 Re: FW: Elimination of Confirmations for EOL Transactions
## 8010 Meeting with David Minns
## 8011 Re: Quick Question RE: COMEX bid/offers for Reuters
## 8012 Re: Quick Question RE: COMEX bid/offers for Reuters
## 8013 Re: Quick Question RE: COMEX bid/offers for Reuters
## 8014 Re: Quick Question RE: COMEX bid/offers for Reuters
## 8015 Re: Quick Question RE: COMEX bid/offers for Reuters
## 8016 Re: Quick Question RE: COMEX bid/offers for Reuters
## 8017 Re: Quick Question RE: COMEX bid/offers for Reuters
## 8018 Re: Quick Question RE: COMEX bid/offers for Reuters
## 8019 Re: Quick Question RE: COMEX bid/offers for Reuters
## 8020 Board of Trustees Meeting, April 20-21,2001
## 8021 Re: Quick Question RE: COMEX bid/offers for Reuters
## 8022 Re: Quick Question RE: COMEX bid/offers for Reuters
## 8023 Re: Quick Question RE: COMEX bid/offers for Reuters
## 8024 Re: Quick Question RE: COMEX bid/offers for Reuters
## 8025 Re: Quick Question RE: COMEX bid/offers for Reuters
## 8026 Re: Quick Question RE: COMEX bid/offers for Reuters
## 8027 Re: Quick Question RE: COMEX bid/offers for Reuters
## 8028 Re: Quick Question RE: COMEX bid/offers for Reuters
## 8029 Re: Quick Question RE: COMEX bid/offers for Reuters
## 8030 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 8031 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 8032 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 8033 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 8034 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 8035 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 8036 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 8037 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 8038 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 8039 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 8040 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 8041 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 8042 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 8043 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 8044 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 8045 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 8046 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 8047 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 8048 Re: Urgent - Counterparty Divisions: Cargill Ferrous International
## 8049 Product type approval (US Steel Hot Rolled Plate Phy)
## 8050 Urgent - Counterparty Divisions: Cargill Ferrous International
## 8051 Urgent - Counterparty Divisions: Cargill Ferrous International
## 8052 Urgent - Counterparty Divisions: Cargill Ferrous International
## 8053 Urgent - Counterparty Divisions: Cargill Ferrous International
## 8054 Urgent - Counterparty Divisions: Cargill Ferrous International
## 8055 Urgent - Counterparty Divisions: Cargill Ferrous International
## 8056 Urgent - Counterparty Divisions: Cargill Ferrous International
## 8057 O Brian article
## 8058 Credit Lawyer responsibilities
## 8059 EnronOnline Presentation
## 8060 RE: InternetWeek
## 8061 Re: New internal product type (US Gas Fin Swap ENA (INTERNAL ONLY))
## 8062 Hawaii Presentation
## 8063 Hawaii Presentation
## 8064 Hawaii Presentation
## 8065 Hawaii Presentation
## 8066 Hawaii Presentation
## 8067 Hawaii Presentation
## 8068 Hawaii Presentation
## 8069 Hawaii Presentation
## 8070 Re: Paralegals
## 8071 Re: Paralegals
## 8072 Re: Paralegals
## 8073 RMT Master Swap Agreement
## 8074 RE: Are the following OK w/ Credit?
## 8075 Re: Cash Collateral
## 8076 Re: Cash Collateral
## 8077 Re: Cash Collateral
## 8078 Re: Cash Collateral
## 8079 Re: Cash Collateral
## 8080 Re: Cash Collateral
## 8081 Re: Cash Collateral
## 8082 Re: Cash Collateral
## 8083 Re: Cash Collateral
## 8084 Re: Cash Collateral
## 8085 Re: Cash Collateral
## 8086 Re: Cash Collateral
## 8087 Re: Cash Collateral
## 8088 Re: Cash Collateral
## 8089 Re: Cash Collateral
## 8090 Re: Cash Collateral
## 8091 Re: Cash Collateral
## 8092 Re: Cash Collateral
## 8093 Re: Cash Collateral
## 8094 Re: Cash Collateral
## 8095 Re: Cash Collateral
## 8096 Re: Cash Collateral
## 8097 Re: Cash Collateral
## 8098 Re: March expenses - deadline 04-04-01 2:00pm
## 8099 Re: Long descriptions
## 8100 ISDA Annual Meeting-Jones Day Cocktail Party
## 8101 ISDA Annual Meeting -- Jones Day Cocktail Party
## 8102 Re: Rockets Vs. Phoenix Suns - Thursday, March 29, 2001
## 8103 Performance Reviews
## 8104 Re: EnronOnline
## 8105 Re: EnronOnline
## 8106 Re: EnronOnline
## 8107 Vacation Memo
## 8108 Vacation Memo
## 8109 Vacation Memo
## 8110 Vacation Memo
## 8111 Vacation Memo
## 8112 Re: Singapore ISDA MASTER AGREEMENT
## 8113 Re: Singapore ISDA MASTER AGREEMENT
## 8114 Re: Singapore ISDA MASTER AGREEMENT
## 8115 Re: Singapore ISDA MASTER AGREEMENT
## 8116 Re: Singapore ISDA MASTER AGREEMENT
## 8117 Re: Singapore ISDA MASTER AGREEMENT
## 8118 Re: Singapore ISDA MASTER AGREEMENT
## 8119 (01-91) Exchange Selects GlobalView Software Inc. c for enymex Customer Interface Infrastructure
## 8120 Re: DealBench
## 8121 Re: DealBench
## 8122 Re: DealBench
## 8123 Re: DealBench
## 8124 Re: DealBench
## 8125 Re: ISDA for Irving Oil
## 8126 Re: ISDA for Irving Oil
## 8127 Re: ISDA for Irving Oil
## 8128 RE: (01-91) Exchange Selects GlobalView Software Inc. c for enymex Customer Interface Infrastructure
## 8129 Re: FW: Spreads for West power
## 8130 Re: FW: Spreads for West power
## 8131 Re: FW: Spreads for West power
## 8132 EnronOnline - Power Spread Long Description
## 8133 EnronOnline - Power Spread Long Description
## 8134 EnronOnline - Power Spread Long Description
## 8135 EnronOnline - Power Spread Long Description
## 8136 EnronOnline - Power Spread Long Description
## 8137 (01-91) Exchange Selects GlobalView Software Inc. c for enymex Customer Interface Infrastructure
## 8138 Re: New Message
## 8139 RE: Merrill Lynch assignment to Allegheny
## 8140 Re: Merrill Lynch assignment to Allegheny
## 8141 Merrill Lynch assignment to Allegheny
## 8142 Re: Cheryl Nelson s Cel Phone
## 8143 Re: Staffing Requisition
## 8144 Re: trip to Houston
## 8145 Re: PLEASE RESPOND: US Residual Fuel Oil 1% Fin Spd / US Residual Fuel Oil 3% Fin Spd
## 8146 Re: trip to Houston
## 8147 Re: trip to Houston
## 8148 Re: trip to Houston
## 8149 AIG
## 8150 AIG
## 8151 AIG
## 8152 RE: Staffing Requisition
## 8153 Slightly Revised Swap Agreements
## 8154 Slightly Revised Swap Agreements
## 8155 Re: Staffing Requisition
## 8156 computer
## 8157 Re: Meeting/Dinner
## 8158 Enron Risk Consulting - Next Steps
## 8159 Re: Option Language
## 8160 Re: Option Language
## 8161 Re: Option Language
## 8162 Re: Option Language
## 8163 Re: Option Language
## 8164 Re: Option Language
## 8165 Re: Option Language
## 8166 Re: Option Language
## 8167 Re: Option Language
## 8168 Re: Option Language
## 8169 Re: Option Language
## 8170 Re: Option Language
## 8171 Re: Option Language
## 8172 Re: Option Language
## 8173 Re: Vacation
## 8174 Re: Vacation
## 8175 Re: Vacation
## 8176 Re: Vacation
## 8177 Re: Entity for softs trading- signoff
## 8178 Re: Entity for softs trading- signoff
## 8179 Re: Entity for softs trading- signoff
## 8180 Term Sheet
## 8181 term sheet
## 8182 Re: FW: Enron On-Line
## 8183 Re: Enron Wholesale Services 2001 Legal Conference
## 8184 Re: Paralegals
## 8185 Re: Suggested Messages
## 8186 Re: XMS
## 8187 Group Meeting
## 8188 Group Meeting
## 8189 Group Meeting
## 8190 Group Meeting
## 8191 Group Meeting
## 8192 Group Meeting
## 8193 Group Meeting
## 8194 Group Meeting
## 8195 Group Meeting
## 8196 Group Meeting
## 8197 Group Meeting
## 8198 Group Meeting
## 8199 Group Meeting
## 8200 CANCELED - Offline Update Meeting
## 8201 H.R. 333 Passes U.S. House Of Representatives
## 8202 Oxley Amendment - Call to House Judiciary Committee Democrats
## 8203 Remote Access Request
## 8204 New Equipment
## 8205 Bankruptcy Update
## 8206 Letter to House Rules Committee Supporting Netting Amendment
## 8207 Re: Newsome
## 8208 REquest
## 8209 Bankruptcy Reform Amendments
## 8210 Re: Moving Date to 38
## 8211 Re: Meeting Reminder
## 8212 HPL/AEP Credit Issues Meeting
## 8213 Mark Greenberg - flat screen monitor
## 8214 Spread Long Description
## 8215 Spread
## 8216 US Gas Spread
## 8217 RE: ISDA TDCC(Dow)/Enron
## 8218 Broker Legal & Privacy Statement
## 8219 Broker Legal & Privacy Statement
## 8220 Re:
## 8221 Re: Vacation
## 8222 Re: Francisco Pinto Leite
## 8223 Bankruptcy Update
## 8224 Global Accounting Promotions
## 8225 Bankruptcy Update
## 8226
## 8227 Re: "Chinese Wall" Classroom Training
## 8228 Re: "Chinese Wall" Classroom Training
## 8229 Re: "Chinese Wall" Classroom Training
## 8230 football shaped and puntable
## 8231 RE: ISDA TDCC(Dow)/Enron
## 8232 RE: ISDA TDCC(Dow)/Enron
## 8233 RE: ISDA TDCC(Dow)/Enron
## 8234 RE: ISDA TDCC(Dow)/Enron
## 8235 RE: ISDA TDCC(Dow)/Enron
## 8236 RE: ISDA TDCC(Dow)/Enron
## 8237 RE: ISDA TDCC(Dow)/Enron
## 8238 Re: Commodity Trading Account
## 8239 Re: Commodity Trading Account
## 8240 Re: Commodity Trading Account
## 8241 Policy re On-Line Trading Platforms
## 8242 Enron - Services Agreement.
## 8243 Promotion
## 8244 Promotion
## 8245 Mexico City Conference - FEBRUARY 16, 2001
## 8246 FW: Revised S.220 markup and summary
## 8247 Re: Legal Task Force
## 8248 Re: Legal Task Force
## 8249 Re: Legal Task Force
## 8250 Re: US REGULATORY CALL
## 8251 Enron - License and Services Agreement.
## 8252 Enron - License and Services Agreement.
## 8253 Agenda Item for this afternoon
## 8254 S&C Memo Re:Proposed Regulations Providing for Ordinary Character Treatment for Hedging Transactions
## 8255 Bankruptcy Reform
## 8256 FW: DRAFT SUMMARY OF S. 220 POINTS
## 8257 Fwd: Enron Monterrey Project - Draft ISDA Master Agreement\tSchedule
## 8258 Fwd: Enron Monterrey Project - Draft ISDA Master Agreement\tSchedule
## 8259 Fwd: Enron Monterrey Project - Draft ISDA Master Agreement\tSchedule
## 8260 Final Information for ASE in Dallas Feb 12 & 13
## 8261 Re: 1/2 day vacation
## 8262 Re: 1/2 day vacation
## 8263 Re: 1/2 day vacation
## 8264 ISDAs
## 8265 Re: Bankruptcy Legislation/Bond Market Association
## 8266 NDAs
## 8267 NDAs
## 8268 NDAs
## 8269 USA: INTERVIEW-Online exchange TradeSpark says building critical mass.
## 8270 Space Planning for the new building
## 8271 More Dallas ASE Information
## 8272 Conectiv/Delmarva
## 8273 Re: Hardware Request
## 8274 Re: Hardware Request
## 8275 Re: Hardware Request
## 8276 Hess-Enron ISDA Agreement(s)
## 8277 Re: Hardware Request
## 8278
## 8279
## 8280
## 8281
## 8282 Whitewing Presentation--Thursday February 8th from 11am to 1pm
## 8283 Hardware Request
## 8284 File Space
## 8285 File Space
## 8286 File Space
## 8287 File Space
## 8288 File Space
## 8289 File Space
## 8290 File Space
## 8291 Additional Information - Dallas ASE February 12-13th
## 8292 EnronOnline Transaction Confirmations
## 8293 EnronOnline Transaction Confirmations
## 8294 EnronOnline Transaction Confirmations
## 8295 Composition of the ABA Board prior to last year s elections (haven t heard back from Richard yet)
## 8296 Last year s American Arbitration Association Board elections - press release
## 8297 Re: FW: Nuther NDA Request
## 8298 FW: HoustonChronicle.com
## 8299 ASE on February 12-13, 2001 in Dallas, TX
## 8300 Grassley Bankruptcy Legislation Press Release
## 8301 ISDA Schedule
## 8302 ISDA Schedule
## 8303 Dow Jones Bandwidth Intelligence Alert
## 8304 Dow Jones Bandwidth Intelligence Alert
## 8305 Re: Rockets v. Miami Heat Tickets
## 8306 Re:
## 8307 Re:
## 8308 Re:
## 8309 Austin Hotels
## 8310 Re: Conference Call re: CFTC RM
## 8311 Re: TIMESHEETS - January 16-31, 2001
## 8312 Re: NDA
## 8313 ECOutlook
## 8314 Alan Sommer, Michael Patrick and Bruce Garner
## 8315 Re: Office
## 8316 Re: 5- dr. f/c
## 8317 Re: Guest Password
## 8318 ASAP-Preliminary List of Online Contracts
## 8319 Re: Late Delivery
## 8320 Offline
## 8321 Net Works Documentation
## 8322 Net Works Documentation
## 8323 Net Works Documentation
## 8324 January gardening newsletter
## 8325 Rainer
## 8326 ISDA Legal Opinions
## 8327 ISDA Legal Opinions
## 8328 ISDA Legal Opinions
## 8329 ISDA Legal Opinions
## 8330 ISDA Legal Opinions
## 8331 ISDA Legal Opinions
## 8332 ISDA Legal Opinions
## 8333 ISDA Legal Opinions
## 8334 ISDA Legal Opinions
## 8335 ISDA Legal Opinions
## 8336 ISDA Legal Opinions
## 8337 ISDA Legal Opinions
## 8338 ISDA Legal Opinions
## 8339 Friday ISDA call
## 8340 Re: Work Report Form
## 8341 Re: Steel Financial Swap Term Sheets
## 8342 Re: CLE Credits
## 8343 Re: Arcor Indemnity Agreement
## 8344 Re: FW: Linking Agreements - Indemnity Issue
## 8345 Final Envera Documents
## 8346 Section 8.2
## 8347 Section 8.2
## 8348 Re: ISDA Collateral Question
## 8349 Re: ISDA Collateral Question
## 8350 ECOutlook Term Sheet
## 8351 Flat Screen Monitor
## 8352
## 8353 Re: Dina s new location
## 8354 Re: Dina s new location
## 8355 Re: Dina s new location
## 8356 Flat Computer Screen
## 8357 Construction Schedule - Office Moves
## 8358 Construction Schedule - Office Moves
## 8359 Construction Schedule - Office Moves
## 8360 Construction Schedule - Office Moves
## 8361 Construction Schedule - Office Moves
## 8362 Construction Schedule - Office Moves
## 8363 Construction Schedule - Office Moves
## 8364 Construction Schedule - Office Moves
## 8365 Construction Schedule - Office Moves
## 8366 Construction Schedule - Office Moves
## 8367 Construction Schedule - Office Moves
## 8368 Construction Schedule - Office Moves
## 8369 Construction Schedule - Office Moves
## 8370 Construction Schedule - Office Moves
## 8371 Construction Schedule - Office Moves
## 8372 Construction Schedule - Office Moves
## 8373 Construction Schedule - Office Moves
## 8374
## 8375
## 8376
## 8377
## 8378
## 8379
## 8380
## 8381
## 8382
## 8383
## 8384
## 8385
## 8386
## 8387
## 8388
## 8389 Re: Merger - El Paso Merchant Energy, L.P.
## 8390 Re: Merger - El Paso Merchant Energy, L.P.
## 8391 Re: Merger - El Paso Merchant Energy, L.P.
## 8392 Re: SA Legal Team Mtg.
## 8393 Re: CFTC Interim-Chair
## 8394 Re: Vacation
## 8395 Re: Vacation
## 8396 Re: Vacation
## 8397 38th floor issues
## 8398 38th floor issues
## 8399 Oracle NDA
## 8400 Oracle NDA
## 8401 Oracle NDA
## 8402 Re: My time - Suggestion
## 8403 Cost Center Number
## 8404 Network NDAs
## 8405 Network NDAs
## 8406 Network NDAs
## 8407 Re: wouldn t you like to see us
## 8408 Re: wouldn t you like to see us
## 8409 Re: Enron Canada EOL Financial Power Product
## 8410 Re: Enron Canada EOL Financial Power Product
## 8411 Re: Enron Canada EOL Financial Power Product
## 8412 Re: Enron Canada EOL Financial Power Product
## 8413 Re: Enron Canada EOL Financial Power Product
## 8414 Re: Enron Canada EOL Financial Power Product
## 8415 Re: Enron Canada EOL Financial Power Product
## 8416 Re: PRC
## 8417 Re: ENA Legal Opinion
## 8418 Re: Organizational Announcement
## 8419 Phone Numbers for 12/26
## 8420 Phone Numbers for 12/26
## 8421 Re: J. Aron/Statoil assignment
## 8422 Statoil assignment to J. Aron
## 8423 Re: Nominated Master User
## 8424 Power Merchants LOI
## 8425 Update of responsibilities info
## 8426 Re: PA Review Bank of Nova Scotia
## 8427 Re: PA Review Bank of Nova Scotia
## 8428 Re: PA Review Bank of Nova Scotia
## 8429 Re: PA Review Bank of Nova Scotia
## 8430 Re: VPP Vehicle
## 8431 Re: Risk Management & Trading Corp. ("RMT") Guidelines
## 8432 Re: Hedge Fund and CTA list
## 8433 Re: Hedge Fund and CTA list
## 8434 Re: Hedge Fund and CTA list
## 8435 Re: Hedge Fund and CTA list
## 8436 Re: Hedge Fund and CTA list
## 8437 Re: Hedge Fund and CTA list
## 8438 Re: 12 December Trade
## 8439 Re: 12 December Trade
## 8440 Re: 12 December Trade
## 8441 Re: 12 December Trade
## 8442 Re: 12 December Trade
## 8443 Re: Amerex Letter of Intent
## 8444 Broker Fee Agreement
## 8445 Conectiv / Delmarva
## 8446 Flat Panel Monitor for Bob Bruce
## 8447 Flat Panel Monitor for Bob Bruce
## 8448 Flat Panel Monitor for Bob Bruce
## 8449 Risk Management & Trading Corp. ("RMT") Guidelines
## 8450 Risk Management & Trading Corp. ("RMT") Guidelines
## 8451 Risk Management & Trading Corp. ("RMT") Guidelines
## 8452 Risk Management & Trading Corp. ("RMT") Guidelines
## 8453 Risk Management & Trading Corp. ("RMT") Guidelines
## 8454 Risk Management & Trading Corp. ("RMT") Guidelines
## 8455 Risk Management & Trading Corp. ("RMT") Guidelines
## 8456 Risk Management & Trading Corp. ("RMT") Guidelines
## 8457 Risk Management & Trading Corp. ("RMT") Guidelines
## 8458 Risk Management & Trading Corp. ("RMT") Guidelines
## 8459 Risk Management & Trading Corp. ("RMT") Guidelines
## 8460 Risk Management & Trading Corp. ("RMT") Guidelines
## 8461 Risk Management & Trading Corp. ("RMT") Guidelines
## 8462 Risk Management & Trading Corp. ("RMT") Guidelines
## 8463 Re: Double Transaction Calendar Spread Swap
## 8464 Re: Double Transaction Calendar Spread Swap
## 8465 Merry Christmas!
## 8466 Double Transaction Calendar Spread Swap
## 8467 Double Transaction Calendar Spread Swap
## 8468 Double Transaction Calendar Spread Swap
## 8469 (00-417) Exchange Board Approves Initial Product Slate for enymex
## 8470 Re: Steel Financial Swap Term Sheets
## 8471 Canadian Financial Power Products on EOL
## 8472 Re: REVISED - EOL description change
## 8473 Re: REVISED - EOL description change
## 8474 Re: REVISED - EOL description change
## 8475 EnronOnline question
## 8476 EnronOnline question
## 8477 S&C Memo Re: Commodity Futures Trading Commission: Final Rulemaking for a New Regulatory
## 8478 Broker ETA
## 8479 Speaking opportunity
## 8480 Re: New Office Assignments for EGM Group
## 8481 S&C Memo Re: Commodity Futures Trading Commission: Final Rulemaking for a New Regulatory
## 8482 Re: Lunch Meeting on Structured Finance Transactions
## 8483 Swap Term Sheet Draft
## 8484 Re: NEW ENRONONLINE PRODUCT - PLEASE APPROVE
## 8485 Dealflow - 11/22/00
## 8486 Dealflow - 11/22/00
## 8487 Dealflow - 11/22/00
## 8488 rockets
## 8489 Broker Transaction Agreement
## 8490 Broker Transaction Agreement
## 8491 Re: EOL Hedge funds - any issues
## 8492 Re: EOL Hedge funds - any issues
## 8493 Re: EOL Hedge funds - any issues
## 8494 Re: EOL Hedge funds - any issues
## 8495 Re: EOL Hedge funds - any issues
## 8496 Re: EOL Hedge funds - any issues
## 8497 Re: EOL Hedge funds - any issues
## 8498 Flu vaccine
## 8499 Re: a question
## 8500 Re: a question
## 8501 Re: a question
## 8502 Re: a question
## 8503 Re: a question
## 8504 11-21-00 EPG/ECP Transaction Update
## 8505 Re: EOL Linking
## 8506 Energy Gateway
## 8507 DynegyDirect PR segment on CNBC ".com"
## 8508 Enron OnLine
## 8509 Re: Argentina
## 8510 reviews
## 8511 Re: Wednesday Morning Meetings
## 8512 Re: Hong Kong Weather Products
## 8513 Re: Hong Kong Weather Products
## 8514 Re: Hong Kong Weather Products
## 8515 Re: Hong Kong Weather Products
## 8516 Re: Hong Kong Weather Products
## 8517 Re: Hong Kong Weather Products
## 8518 Re: Hong Kong Weather Products
## 8519 Re: Hong Kong Weather Products
## 8520 Re: Hong Kong Weather Products
## 8521 Re: Hong Kong Weather Products
## 8522 Re: Hong Kong Weather Products
## 8523 Re: Hong Kong Weather Products
## 8524 Re: Hong Kong Weather Products
## 8525 Free for dinner or a drink on Monday?
## 8526 Re: DealBench LLC
## 8527 Re: EOL Power Products
## 8528 FW: Official Florida Ballot
## 8529 Re: Construction Schedule - Office Moves
## 8530 Re: issue w/compliance ertificate
## 8531 Re: issue w/compliance ertificate
## 8532 Re: issue w/compliance ertificate
## 8533 Re: issue w/compliance ertificate
## 8534 Re: issue w/compliance ertificate
## 8535 Re: issue w/compliance ertificate
## 8536 Re: issue w/compliance ertificate
## 8537 Re: issue w/compliance ertificate
## 8538 Re: issue w/compliance ertificate
## 8539
## 8540
## 8541
## 8542
## 8543
## 8544
## 8545
## 8546
## 8547
## 8548
## 8549
## 8550
## 8551
## 8552
## 8553
## 8554
## 8555 Construction Schedule - Office Moves
## 8556 Construction Schedule - Office Moves
## 8557 Construction Schedule - Office Moves
## 8558 Construction Schedule - Office Moves
## 8559 Construction Schedule - Office Moves
## 8560 Construction Schedule - Office Moves
## 8561 Construction Schedule - Office Moves
## 8562 Construction Schedule - Office Moves
## 8563 Construction Schedule - Office Moves
## 8564 Construction Schedule - Office Moves
## 8565 Construction Schedule - Office Moves
## 8566 Construction Schedule - Office Moves
## 8567 Construction Schedule - Office Moves
## 8568 Construction Schedule - Office Moves
## 8569 Construction Schedule - Office Moves
## 8570 Construction Schedule - Office Moves
## 8571 Construction Schedule - Office Moves
## 8572 Construction Schedule - Office Moves
## 8573 Construction Schedule - Office Moves
## 8574 Construction Schedule - Office Moves
## 8575 Construction Schedule - Office Moves
## 8576 Construction Schedule - Office Moves
## 8577 Construction Schedule - Office Moves
## 8578 Construction Schedule - Office Moves
## 8579 Construction Schedule - Office Moves
## 8580 Construction Schedule - Office Moves
## 8581 Construction Schedule - Office Moves
## 8582 Construction Schedule - Office Moves
## 8583 Construction Schedule - Office Moves
## 8584 Construction Schedule - Office Moves
## 8585 Re: Latest News
## 8586 Re: US REGULATORY CALL - FRIDAY NOVEMBER 10
## 8587 Re: Canadian Financial Trading Confirmation Process
## 8588 Re: Super Saturday Interviews
## 8589 Re: Hong Kong Weather Online
## 8590 Re: Hong Kong Weather Online
## 8591 Re: Hong Kong Weather Online
## 8592 Re: Hong Kong Weather Online
## 8593 Re: Hong Kong Weather Online
## 8594 Re: Hong Kong Weather Online
## 8595 Re: Hong Kong Weather Online
## 8596 Re: Hong Kong Weather Online
## 8597 Re: Hong Kong Weather Online
## 8598 Re: Hong Kong Weather Online
## 8599 Re: Hong Kong Weather Online
## 8600 Re: Hong Kong Weather Online
## 8601 Re: Hong Kong Weather Online
## 8602 Re: Hong Kong Weather Online
## 8603 Re: Hong Kong Weather Online
## 8604 Re: Hong Kong Weather Online
## 8605 Re: Hong Kong Weather Online
## 8606 Re: Steel Financial Swap Term Sheet Question
## 8607 Appointments of Agents and Attorneys in Fact
## 8608 Year End Performance Reviews
## 8609 Year End Performance Reviews
## 8610 Year End Performance Reviews
## 8611 Year End Performance Reviews
## 8612 Year End Performance Reviews
## 8613 Year End Performance Reviews
## 8614 Re: Fas 133
## 8615 Correction to PG&E Spread Trade
## 8616 Re: How Are You?
## 8617 RE: Agreements
## 8618 RE: Clean copy
## 8619 Re: vacation day
## 8620 Re: vacation day
## 8621 Re: vacation day
## 8622 Chinese Wall Issue
## 8623 ADA Findings
## 8624 EOL
## 8625 Re: EnronOnline
## 8626 EOL Brazil
## 8627 Re: Colombian deals
## 8628 Re: Broker connect
## 8629 Re: ISDA
## 8630 Re: CFTC Legislation
## 8631 Re: CFTC Legislation
## 8632 Re: CFTC Legislation
## 8633 Re: New Ideas
## 8634 Cats
## 8635 Performance Review Process
## 8636 Performance Review Process
## 8637 Performance Review Process
## 8638 Performance Review Process
## 8639 Performance Review Process
## 8640 Performance Review Process
## 8641 Performance Review Process
## 8642 Agenda for the JAD session
## 8643 Re: Steel Financial Swap Term Sheet Question
## 8644 Re: Description for your Group
## 8645 Re: Capacity Trading Policy
## 8646 Re: Puget Sound requests NW price caps
## 8647 Re: Puget Sound requests NW price caps
## 8648 Re: Puget Sound requests NW price caps
## 8649 Re: Puget Sound requests NW price caps
## 8650 Re: Puget Sound requests NW price caps
## 8651 Re: Puget Sound requests NW price caps
## 8652 Re: Puget Sound requests NW price caps
## 8653 Re: Global Trading Meeting
## 8654 Re: Global Trading Meeting
## 8655 Re: Global Trading Meeting
## 8656 Re: Global Trading Meeting
## 8657 Re: Global Trading Meeting
## 8658 Re: Global Trading Meeting
## 8659 Re: Global Trading Meeting
## 8660 Re: Global Trading Meeting
## 8661 Re: Global Trading Meeting
## 8662 Re: Colombian deals
## 8663 Re: FAS 133 Summary
## 8664 Returned mail: User unknown
## 8665 Re: Hawaii II 125-0 Facility
## 8666 US Power Phy Index APPROVAL REQUEST!
## 8667 US Power Phy Index APPROVAL REQUEST!
## 8668 US Power Phy Index APPROVAL REQUEST!
## 8669 US Power Phy Index APPROVAL REQUEST!
## 8670 Re: Energy News Live Site
## 8671 Re: Financial Confirmations Issues
## 8672 EnronOnline - pipeline capacity - CFTC issues
## 8673 Legal Survey update
## 8674 Re: Tax Re: i2 Technologies
## 8675 CEA Update
## 8676 CEA Update
## 8677 address
## 8678 Re: New Product Type - Approval Requested
## 8679 Re: ISDA Master Documentation Workshop
## 8680 Re: ISDA Master Documentation Workshop
## 8681 Re: ISDA Master Documentation Workshop
## 8682 Re: sample confirm and index language
## 8683 Re: City Streets
## 8684 Clearing User Meetings
## 8685 Re: Associate/Analyst Super Saturday Participation - ADDITIONAL REQUEST
## 8686 Re: REVISED-YEAR END CALENDAR
## 8687 Re: (00-362) Revised Crude Oil Options Expiration Date
## 8688 Steel Trading - General Contacts
## 8689
## 8690
## 8691
## 8692
## 8693 (00-362) Revised Crude Oil Options Expiration Date
## 8694 Re: Friday s Conference Call
## 8695 Re: Steel - final version
## 8696 talking points
## 8697 monthly report
## 8698 Re: JEDI II
## 8699 Re: Resume
## 8700 Re: Do you wish to continue receiving the weekly update on Polish activities of Enron?
## 8701 Re: Draft Term Sheets--Steel Financial Swap
## 8702 Re: Final draft of Ken Lay letter
## 8703 sample confirm and index language
## 8704 Appointments of Agents and Attorneys in Fact
## 8705 Appointments of Agents and Attorneys in Fact
## 8706 Appointments of Agents and Attorneys in Fact
## 8707 Appointments of Agents and Attorneys in Fact
## 8708 Re: EOL Products - Argentina
## 8709 Re: EOL Products - Argentina
## 8710 Re: EOL Products - Argentina
## 8711 RE: ... Urgent Weather Derivative Advice ...
## 8712 RE: ... Urgent Weather Derivative Advice ...
## 8713 RE: ... Urgent Weather Derivative Advice ...
## 8714 RE: ... Urgent Weather Derivative Advice ...
## 8715 RE: ... Urgent Weather Derivative Advice ...
## 8716 New Markets for EnronOnline
## 8717 Re: EOL Power Products
## 8718 Re: EOL Power Products
## 8719 Meeting Time Change
## 8720 Re: Colombian deals
## 8721 Re: Enron/FPL ISDA
## 8722 Re: Notification to NYMEX/CFTC
## 8723 Re: Notification to NYMEX/CFTC
## 8724 Re: Notification to NYMEX/CFTC
## 8725 Re: EOL Electronic Trading Agreement
## 8726 Re:
## 8727 Re: ROCKETS TICKETS
## 8728 Legal Meeting last week
## 8729 ENW Legal Report
## 8730 Re: A Reminder
## 8731 Re: Online Legal Contacts
## 8732 Re: Enron Metals
## 8733 Re: Enron Metals
## 8734 Re: Enron Metals
## 8735 Re: Enron Metals
## 8736 Re: Enron Metals
## 8737 Re: Enron Metals
## 8738 Re: Enron Metals
## 8739 PA s & ETA s
## 8740 Re: FW: Deutsche Bank ISDA Master Agreements
## 8741 Re: FW: Deutsche Bank ISDA Master Agreements
## 8742 monitor
## 8743 Kindly respond
## 8744 Re: Thanksgiving Vacation Plans
## 8745 Re: Thanksgiving Vacation Plans
## 8746 Re: Thanksgiving Vacation Plans
## 8747 (00-337) Kiodex as enymex System Provider
## 8748 (00-337) Kiodex as enymex System Provider
## 8749 (00-337) Kiodex as enymex System Provider
## 8750 (00-337) Kiodex as enymex System Provider
## 8751 (00-337) Kiodex as enymex System Provider
## 8752 (00-337) Kiodex as enymex System Provider
## 8753 Re: EnronOnline PAs
## 8754 CFTC Coordination
## 8755 Argentine Customers List
## 8756 Re: ISDA North American Energy and Developing Products Committee
## 8757 Re: US Heating Oil and Unleaded Gas Fin Spreads - Approval
## 8758 meeting re: CFTC Issues
## 8759 Re: CFTC
## 8760 Re: Palladium Insurance Letter of Credit
## 8761 itinerary
## 8762 Re: EnronOnline New Markets/Products Weekly Update 9/8/00
## 8763 Office Moves
## 8764 Office Moves
## 8765 Office Moves
## 8766 Office Moves
## 8767 Office Construction/Moves
## 8768 Office Construction/Moves
## 8769 Office Construction/Moves
## 8770 Office Construction/Moves
## 8771 Office Construction/Moves
## 8772 Office Construction/Moves
## 8773 Office Construction/Moves
## 8774 Office Construction/Moves
## 8775 NYMEX Employee
## 8776 Re: Pride Day Rate 250IC Confirm
## 8777 Re: Pride Day Rate 250IC Confirm
## 8778 Re: Pride Day Rate 250IC Confirm
## 8779 Re: Pride Day Rate 250IC Confirm
## 8780 Product Type Approval - Argentina Phy Gas
## 8781 Alberta PPA Financing
## 8782 Please print
## 8783 Re: Reminder!
## 8784 Re: Reminder!
## 8785 Re: Reminder!
## 8786 Re: Reminder!
## 8787 Re: Reminder!
## 8788 Re: Reminder!
## 8789 Re: Reminder!
## 8790 Re: Reminder!
## 8791 Re: Reminder!
## 8792 Re: Reminder!
## 8793 Re: Reminder!
## 8794 Re: Reminder!
## 8795 Re: Reminder!
## 8796 Re: Reminder!
## 8797 Re: Reminder!
## 8798 Apples/Oranges
## 8799 Bond & Equity Trading
## 8800 Re: Class Request: PPTADV97-743 PowerPoint 97, Intermediate, Taffy Milligan
## 8801 Re: CommodityLogic Legal Docs
## 8802 Re: CommodityLogic Legal Docs
## 8803 Re: CommodityLogic Legal Docs
## 8804 Re: CommodityLogic Legal Docs
## 8805 Re: CommodityLogic Legal Docs
## 8806 Re: CommodityLogic Legal Docs
## 8807 Re: CommodityLogic Legal Docs
## 8808 Re: BP letter
## 8809 (00-316) Initial Margins for the Mid-Columbia River Futures Contract
## 8810 Re: Sales Practices/Anti-Manipulation Training
## 8811 Re:
## 8812 Osprey II - Enron Agreement
## 8813 Monitor
## 8814 Re: Message Text
## 8815 Re: CommodityLogic Legal Docs
## 8816 Re: CommodityLogic Legal Docs
## 8817 Re: CommodityLogic Legal Docs
## 8818 Re: Houston Visit
## 8819 Training
## 8820 Re: Houston Visit
## 8821 Re: Houston Visit
## 8822 Re: Houston Visit
## 8823 Re: Houston Visit
## 8824 Re: CEA Update
## 8825 Re: EnronOnline s Legal & Privacy Statement
## 8826 Re: EnronOnline s Legal & Privacy Statement
## 8827 Re: EnronOnline s Legal & Privacy Statement
## 8828 Re: EnronOnline s Legal & Privacy Statement
## 8829 Re: EnronOnline s Legal & Privacy Statement
## 8830 Re: EnronOnline s Legal & Privacy Statement
## 8831 Re: EnronOnline s Legal & Privacy Statement
## 8832 Re: Enron Online Game
## 8833 Re: Enron Online Game
## 8834 Re: Enron Online Game
## 8835 Re: Enron Online Game
## 8836 Re: Enron Online Game
## 8837 Re: Enron Online Game
## 8838 Re: Enron Online Game
## 8839 Re: Fw: IBJ ISDA MASTER AGREEMENT
## 8840 Re: Fw: IBJ ISDA MASTER AGREEMENT
## 8841 Re: Fw: IBJ ISDA MASTER AGREEMENT
## 8842 Re: Fw: IBJ ISDA MASTER AGREEMENT
## 8843 Re: Fw: IBJ ISDA MASTER AGREEMENT
## 8844 Re: Fw: IBJ ISDA MASTER AGREEMENT
## 8845 Re: Fw: IBJ ISDA MASTER AGREEMENT
## 8846 Re: Fw: IBJ ISDA MASTER AGREEMENT
## 8847 Re: Fw: IBJ ISDA MASTER AGREEMENT
## 8848 Re: (00-315) Arts Club Invitation
## 8849 Re: BP Amoco
## 8850 Re: Consolidated Edison, Inc. Confirmation Letter
## 8851 Re: Consolidated Edison, Inc. Confirmation Letter
## 8852 Re: Consolidated Edison, Inc. Confirmation Letter
## 8853 Re: Consolidated Edison, Inc. Confirmation Letter
## 8854 Re: Consolidated Edison, Inc. Confirmation Letter
## 8855 Re: Consolidated Edison, Inc. Confirmation Letter
## 8856 Re: Consolidated Edison, Inc. Confirmation Letter
## 8857 Re: Consolidated Edison, Inc. Confirmation Letter
## 8858 Re: Consolidated Edison, Inc. Confirmation Letter
## 8859 Re: Consolidated Edison, Inc. Confirmation Letter
## 8860 EOL Brazil
## 8861 Re: EnronOnline
## 8862 Re: EnronOnline jurisdictions
## 8863 Re: EnronOnline jurisdictions
## 8864 Re: EnronOnline jurisdictions
## 8865 Re: Audio review for EnronOnline - Mike McConnell
## 8866 Re: Audio review for EnronOnline - Mike McConnell
## 8867 Re: Audio review for EnronOnline - Mike McConnell
## 8868 Re: FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 8869 Re: FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 8870 Re: FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 8871 Re: FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 8872 Re: FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 8873 Re: FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 8874 Re: FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 8875 Re: FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 8876 Re: FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 8877 Re: FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 8878 Re: FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 8879 Re: FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 8880 Re: FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 8881 OPEN A/C LIST
## 8882 BP Amoco
## 8883 Re: CNV-Precedents
## 8884 FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 8885 FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 8886 FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 8887 FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 8888 FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 8889 FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 8890 FYI _ Message rcv d from Amazon.com re: update of their privacy policy
## 8891 Confirmation of your order
## 8892 IBJ
## 8893 IBJ
## 8894 IBJ
## 8895 Equipment for Mary
## 8896 Approved Countries
## 8897 Approved Countries
## 8898 Re: Fw: IBJ ISDA MASTER AGREEMENT
## 8899 Re: IBJ ISDA MASTER AGREEMENT
## 8900 Re: IBJ ISDA MASTER AGREEMENT
## 8901 Re: IBJ ISDA MASTER AGREEMENT
## 8902 "Thin" Computer Flat Screen
## 8903 EnergyGateway.com Agreements
## 8904 Re: Charles Christening
## 8905 Re: EnronOnline New markets Status!!!
## 8906 Re: Warrant Based Swaps
## 8907 Re: Warrant Based Swaps
## 8908 Re: Warrant Based Swaps
## 8909 Re: Conference in Washington, D.C.
## 8910 Re: Conference in Washington, D.C.
## 8911 Re: Conference in Washington, D.C.
## 8912 Re: Conference in Washington, D.C.
## 8913 Re: Conference in Washington, D.C.
## 8914 Re: Dayrate Cap Indicative Proposal to Noble Drilling
## 8915 Re: Dayrate Cap Indicative Proposal to Noble Drilling
## 8916 Re: Dayrate Cap Indicative Proposal to Noble Drilling
## 8917 Confirmation of your order
## 8918 Mexico
## 8919 Mexico
## 8920 Mexico
## 8921 Mexico
## 8922 Mexico
## 8923 Mexico
## 8924 Re: Files
## 8925 Re: Files
## 8926 Re: Files
## 8927 Re: Files
## 8928 Re: Files
## 8929 re: Bid Solicitation
## 8930 request for monitor
## 8931 Message from Ray Richards re: Delta
## 8932 Re: Aspect Resources
## 8933 Probably too late for this but....
## 8934
## 8935
## 8936
## 8937
## 8938
## 8939 FW: Paragraph 13 of the CSAs
## 8940 FW: Delta
## 8941 Guest access Chile
## 8942 Delta III
## 8943 Re: Price Limit Order Language
## 8944 FW: Delta III - Enron-Citi FAA
## 8945 Re: Price Limit Order Language
## 8946 Delta III
## 8947 Japanese ISDA Documents
## 8948 Re: Swap deal with EPMI Long Term Hedge
## 8949 Re: Swap deal with EPMI Long Term Hedge
## 8950 Re: Swap deal with EPMI Long Term Hedge
## 8951 Re: EnronOnline, Online Help Guide
## 8952 ISDA Documents
## 8953 Re: Guest Users
## 8954 Re: Guest Users
## 8955 Re: Guest Users
## 8956 RSVP
## 8957 DealBench competition
## 8958 Re: Gross Error language
## 8959 Delta III
## 8960 Guest Users
## 8961 October 2nd London Meeting
## 8962 Re: New baby Diana Maguire Keeler
## 8963 Re: Revised Schedule to ISDA Master
## 8964 Re: Revised Schedule to ISDA Master
## 8965 Re: Revised Schedule to ISDA Master
## 8966 Re: Revised Schedule to ISDA Master
## 8967 Re: Authorized trader list/electronic notices
## 8968 DealBench
## 8969 Deal Invite
## 8970 Congrats!
## 8971 EnronOnline access to Australian Power products
## 8972 EnronOnline access to Australian Power products
## 8973 EnronOnline access to Australian Power products
## 8974 EnronCredit.com - parent guaranty issue
## 8975 EnronCredit.com - parent guaranty issue
## 8976 EnronCredit.com - parent guaranty issue
## 8977 EnronCredit.com - parent guaranty issue
## 8978 EnronCredit.com - parent guaranty issue
## 8979 Confidentiality Agreement
## 8980 Confidentiality Agreement
## 8981 Confidentiality Agreement
## 8982 Confidentiality Agreement
## 8983 Re: Infomercial script
## 8984 Re: Schedule to ISDA Master: Enron Corp. and Holding I - Put Option. DOC
## 8985 Yosemite/Delta III
## 8986 Yosemite/Delta III
## 8987 New Office Space
## 8988 New Office Space
## 8989 New Office Space
## 8990 New Office Space
## 8991 New Office Space
## 8992 New Office Space
## 8993 Brazil
## 8994 Delta III Documents - Amendments to Delta Notes and Forms of Cons ent Thereto
## 8995 Re: Weather Derivative GTC s with Enron Japan Corp. as Counterparty
## 8996 Re: Weather Derivative GTC s with Enron Japan Corp. as Counterparty
## 8997 Re: Weather Derivative GTC s with Enron Japan Corp. as Counterparty
## 8998 Re: Weather Derivative GTC s with Enron Japan Corp. as Counterparty
## 8999 Re: Weather Derivative GTC s with Enron Japan Corp. as Counterparty
## 9000 Re: Weather Derivative GTC s with Enron Japan Corp. as Counterparty
## 9001 Milbank
## 9002 Re: Timesheets for 8/1-15/2000 - Short Fuse
## 9003 Yosemite/Delta III
## 9004 Alcoa, Inc.
## 9005 Re: SWAP Group - Calendar
## 9006 ENW Report
## 9007 Re: Please review attached language and return asap
## 9008 EnronOnline
## 9009 Gross Error language
## 9010 Re: update
## 9011 Product Description
## 9012 Re: CFTC Reauthorization
## 9013 Re: ads approval
## 9014 Re: ads approval
## 9015 Re: ads approval
## 9016 Re: ads approval
## 9017 Re: ads approval
## 9018 Re: ads approval
## 9019 Re: ads approval
## 9020 Re: ads approval
## 9021 Re: ads approval
## 9022 Re: ads approval
## 9023 Re: Office Build-out
## 9024 FX Transactions
## 9025 Re: FX Transactions
## 9026 Screenshot
## 9027 FOUR NEW PRODUCTS REQUIRING YOUR APPROVAL
## 9028
## 9029 Re: Enron/isn contract
## 9030 Office Build-out
## 9031 Comment Letter
## 9032 Re: MG - US Regulatory Status...
## 9033 Re: MG - US Regulatory Status...
## 9034 Enron moves make waves in electronic trading industry.(Brief ...
## 9035 Pride Transaction Confirm
## 9036 Re: Copyright notice language
## 9037 Re: Copyright notice language
## 9038 Re: Copyright notice language
## 9039 Potential Meeting Next Week
## 9040 Kahuna (Yosemite III); Draft Swap Confirmations
## 9041 Re: ISDA with Citibank Subsidiary
## 9042 Re: ISDA with Citibank Subsidiary
## 9043 Re: ISDA with Citibank Subsidiary
## 9044 Re: ISDA with Citibank Subsidiary
## 9045 Re: ISDA with Citibank Subsidiary
## 9046 Re: ISDA with Citibank Subsidiary
## 9047 Re: ISDA with Citibank Subsidiary
## 9048 Re: ISDA with Citibank Subsidiary
## 9049 Re: ISDA with Citibank Subsidiary
## 9050 Re: ISDA with Citibank Subsidiary
## 9051 Re: ISDA with Citibank Subsidiary
## 9052 Re: ISDA with Citibank Subsidiary
## 9053 Re: ISDA with Citibank Subsidiary
## 9054 Re: ISDA with Citibank Subsidiary
## 9055 Re: ISDA with Citibank Subsidiary
## 9056 Fish
## 9057 Confidentiality Agreement
## 9058
## 9059
## 9060 Re: EOL Passwords
## 9061 Re: EOL Passwords
## 9062 Re: EOL Passwords
## 9063 Re: EOL Passwords
## 9064 Re: EOL Passwords
## 9065 Re: EOL Passwords
## 9066 Re: EOL Passwords
## 9067 Re: EOL Passwords
## 9068 Re: EOL Passwords
## 9069 Re: EOL Passwords
## 9070 Re: EOL Passwords
## 9071 Re: EOL Passwords
## 9072 Re: EOL Passwords
## 9073 Re: EOL Passwords
## 9074 Re: EOL Passwords
## 9075 Re: EOL Passwords
## 9076 Re: EOL Passwords
## 9077 Re: EOL Passwords
## 9078 Re: EOL Passwords
## 9079 Re: EOL Passwords
## 9080 Re: EOL Passwords
## 9081 Re: vacation
## 9082 Re: vacation
## 9083 Re: vacation
## 9084 Re: Sea Freight Launch Flyer
## 9085 MG
## 9086 Re: Vacation Request -
## 9087 Re: Vacation Request -
## 9088 Re: Vacation Request -
## 9089 Re: Vacation Request -
## 9090 Re: Vacation Request -
## 9091 Re: Vacation Request -
## 9092 Re: Vacation Request -
## 9093 Re: Kahuna (Yosemite 3) Prepay Working ist
## 9094 Re: Kahuna (Yosemite 3) Prepay Working ist
## 9095 Re: Kahuna (Yosemite 3) Prepay Working ist
## 9096 Re: Kahuna (Yosemite 3) Prepay Working ist
## 9097 Re: Kahuna (Yosemite 3) Prepay Working ist
## 9098 Re: Kahuna (Yosemite 3) Prepay Working ist
## 9099 Re: Kahuna (Yosemite 3) Prepay Working ist
## 9100 Re: Kahuna (Yosemite 3) Prepay Working ist
## 9101 Re: Kahuna (Yosemite 3) Prepay Working ist
## 9102 Re: Kahuna (Yosemite 3) Prepay Working ist
## 9103 Re: Kahuna (Yosemite 3) Prepay Working ist
## 9104 Re: Kahuna (Yosemite 3) Prepay Working ist
## 9105 Re: Kahuna (Yosemite 3) Prepay Working ist
## 9106 Re: Kahuna (Yosemite 3) Prepay Working ist
## 9107 Re: Kahuna (Yosemite 3) Prepay Working ist
## 9108 Re: Kahuna (Yosemite 3) Prepay Working ist
## 9109 Re: Kahuna (Yosemite 3) Prepay Working ist
## 9110 Re: Kahuna (Yosemite 3) Prepay Working ist
## 9111 Re: Kahuna (Yosemite 3) Prepay Working ist
## 9112 Re: Kahuna (Yosemite 3) Prepay Working ist
## 9113 Re: Kahuna (Yosemite 3) Prepay Working ist
## 9114 LeBoeuf bill
## 9115 Re: Stopped anti-energy amendment!!!
## 9116 Re: Stopped anti-energy amendment!!!
## 9117 Re: Stopped anti-energy amendment!!!
## 9118 Re: Stopped anti-energy amendment!!!
## 9119 Re: Stopped anti-energy amendment!!!
## 9120 Re: Stopped anti-energy amendment!!!
## 9121 Re: Stopped anti-energy amendment!!!
## 9122 Re: Stopped anti-energy amendment!!!
## 9123 Re: Stopped anti-energy amendment!!!
## 9124 Re: Stopped anti-energy amendment!!!
## 9125 Re: Stopped anti-energy amendment!!!
## 9126 Re: International Sea Freight Product Launch
## 9127 Re: International Sea Freight Product Launch
## 9128 Re: International Sea Freight Product Launch
## 9129 Re: International Sea Freight Product Launch
## 9130 Re: International Sea Freight Product Launch
## 9131 Re: International Sea Freight Product Launch
## 9132 Re: International Sea Freight Product Launch
## 9133 Re: International Sea Freight Product Launch
## 9134 Re: International Sea Freight Product Launch
## 9135 Net Works PPM Issues
## 9136 Net Works PPM Issues
## 9137 Net Works PPM Issues
## 9138 Networks PPM
## 9139 FSA Letter
## 9140 FSA Letter
## 9141 FSA Letter
## 9142 Re: FirstCall Information Service
## 9143 Re: FirstCall Information Service
## 9144 Re: FirstCall Information Service
## 9145 Re: FirstCall Information Service
## 9146 Re: FirstCall Information Service
## 9147 Re: FirstCall Information Service
## 9148 Re: FirstCall Information Service
## 9149 Re: For Mark Taylor s approval
## 9150 Re: Workload Responsibiities in Argentina
## 9151 Term Sheet
## 9152 Re: CA Template
## 9153 Garden State
## 9154 Re: Mahonia Prepay Restructuring
## 9155 ECT Legal Conference
## 9156 Re: SWAP Group Revised JUL-AUG Calendar
## 9157 Project Doorstep
## 9158 Project Doorstep
## 9159 Revised rig day rate confirm
## 9160 Re: Fin. metals launch newsticker
## 9161 Re: Kennecott ETA
## 9162 Direct Access Disclaimer Language
## 9163 Re: Kennecott ETA
## 9164 Re: Revised Legal and Privacy Statement
## 9165 Direct Access Disclaimer Language
## 9166 Re: Arbritation clause-ISDA
## 9167 Revised Legal and Privacy Statement
## 9168 Revised Legal and Privacy Statement
## 9169 Revised Legal and Privacy Statement
## 9170 Re: Online docs
## 9171 Re: FW: Enron North America (KMM13785C0KM)
## 9172 Re: FW: Enron North America (KMM13785C0KM)
## 9173 Re: FW: Enron North America (KMM13785C0KM)
## 9174 Re: FW: Enron North America (KMM13785C0KM)
## 9175 Re: FW: Enron North America (KMM13785C0KM)
## 9176 Re: FW: Enron North America (KMM13785C0KM)
## 9177 Re: FW: Enron North America (KMM13785C0KM)
## 9178 Re: Project Doorstep - Financial Trading Documentation
## 9179 Re: Project Doorstep - Financial Trading Documentation
## 9180 Re: Project Doorstep - Financial Trading Documentation
## 9181 Re: Project Doorstep - Financial Trading Documentation
## 9182 Re: Project Doorstep - Financial Trading Documentation
## 9183 Re: Project Doorstep - Financial Trading Documentation
## 9184 Re: Project Doorstep - Financial Trading Documentation
## 9185 Re: Project Doorstep - Financial Trading Documentation
## 9186 Re: Project Doorstep - Financial Trading Documentation
## 9187 Re: Reliable Power Products (Nuclear Outage Call Options) on EnronOnline
## 9188 Electronic signatures/No More Confirms issues
## 9189 Electronic signatures/No More Confirms issues
## 9190 Re: ISDA US Regulatory Weekly Conference Call
## 9191 Re: Agenda for Members Update
## 9192 Argentina PA and ETA
## 9193 Argentina PA and ETA
## 9194 EOL visit to Houston
## 9195 EOL visit to Houston
## 9196 EOL visit to Houston
## 9197 Re: Patent Pending
## 9198 Re: Patent Pending
## 9199 Re: Patent Pending
## 9200 Direct Access
## 9201 Pride
## 9202 Pride - No "Out"
## 9203 Pride
## 9204 Pride
## 9205 Re: Dayrate confirmation
## 9206 Re:
## 9207 New Addition to St. Clair Household
## 9208 New Addition to St. Clair Household
## 9209 New Addition to St. Clair Household
## 9210 New Addition to St. Clair Household
## 9211 New Addition to St. Clair Household
## 9212 New Addition to St. Clair Household
## 9213 Re: Language verification- NN0294.1
## 9214 Re: EnronOnline Chat
## 9215 Carol
## 9216 Carol
## 9217 Carol
## 9218 Carol
## 9219 Carol
## 9220 Carol
## 9221 Media General Confirm
## 9222 EnronOnline Chat
## 9223 Re: Asian Weather Derivatives on EOL
## 9224 CWT memo re: CTA
## 9225 Re:
## 9226 Re: Private Office Pricing
## 9227 AlphaTrust: Providing a Legal Framework for Electronic Signatures
## 9228 Re: International Coal Ticker Story
## 9229 Re: International Coal Ticker Story
## 9230 Re: International Coal Ticker Story
## 9231 Re: International Coal Ticker Story
## 9232 Re: International Coal Ticker Story
## 9233 Re: International Coal Ticker Story
## 9234 Re: International Coal Ticker Story
## 9235 Re: International Coal Ticker Story
## 9236 Re: International Coal Ticker Story
## 9237 Re: International Coal Ticker Story
## 9238 Re: International Coal Ticker Story
## 9239 Re: Private Office Pricing
## 9240 Carol St. Clair
## 9241 Carol St. Clair
## 9242 Carol St. Clair
## 9243 Re: Meeting Reschedule
## 9244 Re: Time Stamp on Stock Quotes
## 9245 DRAFT PRESS RELEASE: Metals Trading on EOL
## 9246 Re: URGENT REQUEST
## 9247 Re: URGENT REQUEST
## 9248 Re: URGENT REQUEST
## 9249 Re: Macromedia site of the day-reference to EnronOnline
## 9250 Re: EnronOnline and SFA requirements
## 9251 Re: EnronOnline and SFA requirements
## 9252 Re: EnronOnline and SFA requirements
## 9253 Re: EnronOnline and SFA requirements
## 9254 Re: EnronOnline and SFA requirements
## 9255 Re: EnronOnline and SFA requirements
## 9256 Re: EnronOnline and SFA requirements
## 9257 Re: EnronOnline and SFA requirements
## 9258 Re: EnronOnline and SFA requirements
## 9259 Re: EnronOnline and SFA requirements
## 9260 Re: EnronOnline and SFA requirements
## 9261 EnronOnline Comments for the Federal Trade Commission
## 9262 Re: Time Stamp on Stock Quotes
## 9263 Re: Time Stamp on Stock Quotes
## 9264 Re: Time Stamp on Stock Quotes
## 9265 Re: Time Stamp on Stock Quotes
## 9266 Re: Cancellation of Monthly State of California Government Affairs Conference Call
## 9267 Re: Clickpaper legal review
## 9268 Re: UK Mobile Phone
## 9269 Re: Enron North America Corp. NYMEX Hedge Exemption Applications
## 9270 Re: Timekeeping
## 9271 Re: Orlando Utilities Commission
## 9272 Enron North America Corp. NYMEX Hedge Exemption Applications
## 9273 Re: Enron North America Corp. NYMEX Hedge Exemption Applications
## 9274 Re: Enron North America Corp. NYMEX Hedge Exemption Applications
## 9275 Back to Back Agreement
## 9276 Enron-MG Transaction
## 9277 Re: Online Issues - Mexico
## 9278 Re: Online Issues - Mexico
## 9279 Re: Online Issues - Mexico
## 9280 Re: Online Issues - Mexico
## 9281 Re: Online Issues - Mexico
## 9282 Re: Online Issues - Mexico
## 9283 Re: Online Issues - Mexico
## 9284 Re: Online Issues - Mexico
## 9285 Re: Online Issues - Mexico
## 9286 Re: Online Issues - Mexico
## 9287 Re: Online Issues - Mexico
## 9288 Price Posting Agreement
## 9289 Re: paralegal "thanks"
## 9290 Re: paralegal "thanks"
## 9291 Re: paralegal "thanks"
## 9292 Re: REVISION to Ticker item for Oneok
## 9293 ISDA
## 9294 ISDA
## 9295 Re: Continental Meeting
## 9296 Continental Confidentiality Agreement
## 9297 Continental Confidentiality Agreement
## 9298 Continental Confidentiality Agreement
## 9299 Letter to Chairman Ewing
## 9300 Letter to Chairman Ewing
## 9301 Letter to Chairman Ewing
## 9302 Ewing letter
## 9303 Re: Forum on Electronic Trading
## 9304 Re: EOL Survey
## 9305 Re: EFMD application
## 9306 Posting Agreement Draft
## 9307 Posting Agreement Draft
## 9308 Posting Agreement Draft
## 9309 Posting Agreement Draft
## 9310 Posting Agreement Draft
## 9311 Posting Agreement Draft
## 9312 Re: Confidentiality Agreement - - EOL
## 9313 Re: US Styrene FOB
## 9314 EnronOnline Questions for Local Counsel
## 9315 Confidentiality Agreement - - EOL
## 9316 EOL Presentation revised to match audio
## 9317 Coal EOL Presentation
## 9318 Mike McConnell Presentation
## 9319 More Existing Website Content
## 9320 Market Commentary
## 9321 Remaining Web Content
## 9322 Sample Pulp and Paper Newsletter
## 9323 Plastics Article
## 9324 failure to pay contract
## 9325 Series 7
## 9326 Laptop Order
## 9327 Laptop Order
## 9328 Laptop Order
## 9329 Re: Agreements
## 9330 Re: Agreements
## 9331 Re: Agreements
## 9332 Re: Agreements
## 9333 Re: Agreements
## 9334 Re: Agreements
## 9335 Re: Agreements
## 9336 Re: Orlando Utilities Commission
## 9337 Re: Sicamar
## 9338 Euro 2000 Agreement
## 9339 Sample forms
## 9340 Re: EnronOnline Content Approval
## 9341 Re: Ticker Item Approval for US Gas MONTHLY Products
## 9342 Re: US Styrene FOB Phy Fwrd.
## 9343 Re: BWT Transaction
## 9344 Re: additional names
## 9345 Re: additional names
## 9346 Re: additional names
## 9347 Re: additional names
## 9348 Re: BWT Transaction
## 9349 Re: BWT Transaction
## 9350 Re: additional names
## 9351 Re: additional names
## 9352 Re: additional names
## 9353 Re: additional names
## 9354 Re: additional names
## 9355 Re: additional names
## 9356 Re: additional names
## 9357 Re: additional names
## 9358 Re: additional names
## 9359 Re: additional names
## 9360 Re: additional names
## 9361 Re: additional names
## 9362 Re: additional names
## 9363 Re: additional names
## 9364 Re: additional names
## 9365 Reviewer Selection
## 9366 Reviewer Selection
## 9367 Language for the Confirmation
## 9368 Enron Re/European Finance Re Swap
## 9369 Enron Re/European Finance Re Swap
## 9370 Pulp Physical Fwd
## 9371 Pulp Physical Fwd
## 9372 Pulp Physical Fwd
## 9373 Re: Survey
## 9374 Re: Survey
## 9375 Re: Survey
## 9376 Re: Survey
## 9377 Re: Survey
## 9378 Re: vacation
## 9379 PA and ETA
## 9380 Re: ISDA - Cross Default
## 9381 Re: brokerage accounts
## 9382 Re: Choice of Law for Master Firm Gas Purchase/Sale Agreement with BC Gas Utility Ltd.
## 9383 Re: Choice of Law for Master Firm Gas Purchase/Sale Agreement with BC Gas Utility Ltd.
## 9384 Re: Choice of Law for Master Firm Gas Purchase/Sale Agreement with BC Gas Utility Ltd.
## 9385 Re: Choice of Law for Master Firm Gas Purchase/Sale Agreement with BC Gas Utility Ltd.
## 9386 Re: Choice of Law for Master Firm Gas Purchase/Sale Agreement with BC Gas Utility Ltd.
## 9387 Re: Choice of Law for Master Firm Gas Purchase/Sale Agreement with BC Gas Utility Ltd.
## 9388 Re: Choice of Law for Master Firm Gas Purchase/Sale Agreement with BC Gas Utility Ltd.
## 9389 Re: Choice of Law for Master Firm Gas Purchase/Sale Agreement with BC Gas Utility Ltd.
## 9390 Re: Choice of Law for Master Firm Gas Purchase/Sale Agreement with BC Gas Utility Ltd.
## 9391 Re: Big Six C.A.
## 9392 EnronOnline
## 9393 PA and ETA
## 9394 PA and ETA
## 9395 Enron PATS 2000-1
## 9396 Confidentiality Agreement
## 9397 Re: Schedule
## 9398 Enron Working Group List
## 9399 On line contracts
## 9400 RE: EnronOnline in Japan
## 9401 Re: Enron NetWorks LLC
## 9402 RE: Enron On-Line
## 9403 PA and ETA
## 9404 Enron PATS Meeting Confirmations
## 9405 RE: Follow-up on Friday s meeting
## 9406 RE: Follow-up on Friday s meeting
## 9407 RE: Follow-up on Friday s meeting
## 9408 RE: Follow-up on Friday s meeting
## 9409 RE: Follow-up on Friday s meeting
## 9410 Re: PeopleFinder change confirmation #958525991.701
## 9411 e-mail address
## 9412 Re: Follow-up on Friday s meeting
## 9413 Re: Vacation
## 9414 Re: Vacation
## 9415 Secure Messaging Non-Delivery Report: EnronOnline Posting Agreement
## 9416 Re: Bankruptcy Swaps with Canadian Reference Entities
## 9417 Re: What happened with the NDA?
## 9418 EnronOnline Questions for Local Counsel
## 9419 EnronOnline Questions for Local Counsel
## 9420 EnronOnline Questions for Local Counsel
## 9421 Secure Messaging Non-Delivery Report: EnronOnline Posting Agreement
## 9422 EnronOnline Posting Agreement
## 9423 EnronOnline Posting Agreement
## 9424 Bankruptcy Swaps with Canadian Reference Entities
## 9425 Bankruptcy Swaps with Canadian Reference Entities
## 9426 True Quote Term Sheet - registration rights language
## 9427 Conference call
## 9428 NYMEX e-commerce venture
## 9429 Re: Enron Corp Swap
## 9430 Re: Enron Corp Swap
## 9431 Re: Enron Corp Swap
## 9432 Calendar Access
## 9433 Relevant for EnBW
## 9434 No More Terminations!
## 9435 Re: Friday s Conference Call
## 9436 Re: Tracking Legal Text Changes
## 9437 Re: Tracking Legal Text Changes
## 9438 Re: Tracking Legal Text Changes
## 9439 Re: Tracking Legal Text Changes
## 9440 Re: Tracking Legal Text Changes
## 9441 Re: Tracking Legal Text Changes
## 9442 Re: Tracking Legal Text Changes
## 9443 Re: Tracking Legal Text Changes
## 9444 Re: Tracking Legal Text Changes
## 9445 Re: Tracking Legal Text Changes
## 9446 Re: Tracking Legal Text Changes
## 9447 Re: SWAP Group - April & May Calendars
## 9448 FW: 1999 Darwin Awards
## 9449 Re: For Mark Taylor s approval
## 9450 Re: For Mark Taylor s approval
## 9451 Re: For Mark Taylor s approval
## 9452 Re: For Mark Taylor s approval
## 9453 Re: Sr Legal Specialist
## 9454 Re: Sr Legal Specialist
## 9455 Re: Sr Legal Specialist
## 9456 Re: Sr. Legal Specialist Job 0000103079/Resume
## 9457 RE: EnronOnline in Japan
## 9458 New or Modified Mail in EOL Terminations
## 9459 New or Modified Mail in EOL Terminations
## 9460 New or Modified Mail in EOL Terminations
## 9461 Revised AccuNet Agreement
## 9462 Revised AccuNet Agreement
## 9463 Re: Special Regulatory Call Details
## 9464 Out of the office
## 9465 Out of the office
## 9466 Out of the office
## 9467 Out of the office
## 9468 Out of the office
## 9469 Out of the office
## 9470 Out of the office
## 9471 Out of the office
## 9472 Out of the office
## 9473 Out of the office
## 9474 Out of the office
## 9475 Re: Job 103079
## 9476 Job # 103079
## 9477 Senior Legal Spec. - Posting No. 103079
## 9478 Re: Bandwidth Launch on EOL Website Ticker Text
## 9479 Re: Bandwidth Launch on EOL Website Ticker Text
## 9480 Re: Bandwidth Launch on EOL Website Ticker Text
## 9481 Re: Bandwidth Launch on EOL Website Ticker Text
## 9482 Re: Bandwidth Launch on EOL Website Ticker Text
## 9483 Re: Bandwidth Launch on EOL Website Ticker Text
## 9484 Re: Bandwidth Launch on EOL Website Ticker Text
## 9485 Re: Bandwidth Launch on EOL Website Ticker Text
## 9486 Re: Bandwidth Launch on EOL Website Ticker Text
## 9487 Re: Bandwidth Launch on EOL Website Ticker Text
## 9488 Re: Bandwidth Launch on EOL Website Ticker Text
## 9489 Re: Bandwidth Launch on EOL Website Ticker Text
## 9490 Re: Bandwidth Launch on EOL Website Ticker Text
## 9491 New or Modified Mail in EOL Terminations
## 9492 Re: Andrea Calo - Visitation
## 9493 Re: Andrea Calo - Visitation
## 9494 Re: Andrea Calo - Visitation
## 9495 Re: Andrea Calo - Visitation
## 9496 Re: Andrea Calo - Visitation
## 9497 Re: Andrea Calo - Visitation
## 9498 Re: Andrea Calo - Visitation
## 9499 Re: Bandwidth Products On EnronOnline. (Revised)
## 9500 Re: Bandwidth Products On EnronOnline. (Revised)
## 9501 Re: Bandwidth Products On EnronOnline. (Revised)
## 9502 Re: Bandwidth Products On EnronOnline. (Revised)
## 9503 Re: Bandwidth Products On EnronOnline. (Revised)
## 9504 Re: Bandwidth Products On EnronOnline. (Revised)
## 9505 Re: Bandwidth Products On EnronOnline. (Revised)
## 9506 Re: Bandwidth Products On EnronOnline. (Revised)
## 9507 Re: Bandwidth Products On EnronOnline. (Revised)
## 9508 Re: Bandwidth Products On EnronOnline. (Revised)
## 9509 Re: Bandwidth Products On EnronOnline. (Revised)
## 9510 Re: Bandwidth Products On EnronOnline. (Revised)
## 9511 Re: Bandwidth Products On EnronOnline. (Revised)
## 9512 Re: Bandwidth Products On EnronOnline. (Revised)
## 9513 Re: Bandwidth Products On EnronOnline. (Revised)
## 9514 Re: Bandwidth Products On EnronOnline. (Revised)
## 9515 Re: Bandwidth Products On EnronOnline. (Revised)
## 9516 Re: Bandwidth Products On EnronOnline. (Revised)
## 9517 Re: Bandwidth Products On EnronOnline. (Revised)
## 9518 Re: Bandwidth Products On EnronOnline. (Revised)
## 9519 Re: Bandwidth Products On EnronOnline. (Revised)
## 9520 Re: Bandwidth Products On EnronOnline. (Revised)
## 9521 Re: Bandwidth Products On EnronOnline. (Revised)
## 9522 Re: Bandwidth Products On EnronOnline. (Revised)
## 9523 Re: Bandwidth Products On EnronOnline. (Revised)
## 9524 Re: Bandwidth Products On EnronOnline. (Revised)
## 9525 Re: Bandwidth Products On EnronOnline. (Revised)
## 9526 Re: Bandwidth Products On EnronOnline. (Revised)
## 9527 Re: Bandwidth Products On EnronOnline. (Revised)
## 9528 Re: Bandwidth Products On EnronOnline. (Revised)
## 9529 Re: Bandwidth Products On EnronOnline. (Revised)
## 9530 Re: Bandwidth Products On EnronOnline. (Revised)
## 9531 Re: Bandwidth Products On EnronOnline. (Revised)
## 9532 Re: Bandwidth Products On EnronOnline. (Revised)
## 9533 Re: Bandwidth Products On EnronOnline. (Revised)
## 9534 Re: EnronOnline Guest ID and Password
## 9535 Job No. 78728
## 9536 SR Legal Specialist - Job #103079
## 9537 Re: Business Methods on EnronOnline
## 9538 Re: Business Methods on EnronOnline
## 9539 Re: Business Methods on EnronOnline
## 9540 Re: Use of "exchange" in corporate name
## 9541 Re: EnronOnline ETA
## 9542 Message to Robin Tompkins
## 9543 Applicant from CareerPath.com :(0000103079)
## 9544 Resume from Kathy Bauer for Job ID 0000103079
## 9545 Derivatives Counsel
## 9546 Re: Recommendation of outside counsel
## 9547 Re: Change of pulp description
## 9548 Re: Change of pulp description
## 9549 Re: Change of pulp description
## 9550 Re: Change of pulp description
## 9551 Re: Change of pulp description
## 9552 Re: Change of pulp description
## 9553 Re: Change of pulp description
## 9554 Singapore domain name
## 9555 Re: EnronOnline.com-REVISED DOCUMENTS
## 9556 Re: EnronOnline.com-REVISED DOCUMENTS
## 9557 Re: EnronOnline.com-REVISED DOCUMENTS
## 9558 Re: EnronOnline.com-REVISED DOCUMENTS
## 9559 Re: EnronOnline.com-REVISED DOCUMENTS
## 9560 Re: candidates
## 9561 Re: FAQ - legal
## 9562 Re: FAQ - legal
## 9563 Re: FAQ - legal
## 9564 Password Application
## 9565 Re: FAQ - EOL Japan
## 9566 Re: Mobile Phone Bill
## 9567 Re: Mobile Phone Bill
## 9568 Re: Mobile Phone Bill
## 9569 Re: Mobile Phone Bill
## 9570 Re: Mobile Phone Bill
## 9571 Re: Mobile Phone Bill
## 9572 Re: Windows 2000 Roll Out
## 9573 Site Structure Diagram
## 9574 Re: Feedback--Legal Checklist
## 9575 Re: Upcoming Seminars
## 9576 Re: Credit Group Lunch
## 9577 Tel. Call
## 9578 Re: Legal
## 9579 Re: Legal
## 9580 Re: Legal
## 9581 Re: Legal
## 9582 Re: Legal
## 9583 Re: Legal
## 9584 Re: FW: Job #78728
## 9585 Re: Job No. 0000103028
## 9586 CFTC
## 9587 CFTC
## 9588 CFTC
## 9589 Re: Vacation Days
## 9590 Re: New York Bar Numbers
## 9591 Job No. 0000103079
## 9592 Job No. 0000103079
## 9593 Re: EnronOnline Japan
## 9594 Re: EnronOnline Japan
## 9595 Re: EnronOnline Japan
## 9596 TAYLOR - 11APR00
## 9597 Re: Washington
## 9598 Re: Washington
## 9599 Washington
## 9600 EnronOnline
## 9601 Re: EnronOnline - Japan
## 9602 Re: EnronOnline - Japan
## 9603 Re: EnronOnline - Japan
## 9604 Re: EnronOnline - Japan
## 9605 Re: EnronOnline - Japan
## 9606 Re: EnronOnline - Japan
## 9607 Re: EnronOnline - Japan
## 9608 New 1999 Annual Reports Have Arrived
## 9609 Re: For Mark Taylor s approval
## 9610 Sample Confirmation
## 9611 Sample Confirmation
## 9612 Sample Confirmation
## 9613 Re: Management Services Agreement
## 9614 Re: Your approval is requested
## 9615 Monmouth Meeting
## 9616 Web Sites
## 9617 Mary s number
## 9618 Re: EOL
## 9619 Re: Your approval is requested
## 9620 Re: Legal Issues with EnronOnline Newsticker
## 9621 Reuters Confidentiality Agreement Comments
## 9622 Revised Confirmation
## 9623 Revised Confirmation
## 9624 Revised Confirmation
## 9625 Revised Confirmation
## 9626 Re: New Product Startup: Bandwidth
## 9627 Further Koch change
## 9628 Further Koch change
## 9629 Further Koch change
## 9630 Further Koch change
## 9631 Koch Confirmation
## 9632 Koch Confirmation
## 9633 Koch Confirmation
## 9634 Koch Confirmation
## 9635 Meeting Agenda
## 9636 Lugar Lunch
## 9637 Lugar Fundraiser
## 9638 Your Itinerary
## 9639 Paul Radous
## 9640 New Product Type - Approval Request
## 9641 Re: SRRS Request
## 9642 EnronOnline Counterparty Approval Process
## 9643 EnronOnline Counterparty Approval Process
## 9644 EnronOnline Counterparty Approval Process
## 9645 Re: Meeting with Mark Taylor
## 9646 Netherlands ETA
## 9647 Netherlands ETA
## 9648 Re: Cite for NYMEX Futures
## 9649 Re: Timing of EOL Introduction
## 9650 Re: Please could you inform me of all the discussions we are having with companies on the ETA / PA changes
## 9651 Reference to US in Pulp Financial transactions
## 9652 Re: Reminder!
## 9653 Re: Reminder!
## 9654 Re: Reminder!
## 9655 Re: Reminder!
## 9656 Re: Reminder!
## 9657 Re: Reminder!
## 9658 Re: Reminder!
## 9659 Re: Reminder!
## 9660 Re: Reminder!
## 9661 Dinner on Thursday
## 9662 Re: Japan ETA
## 9663 Re: Japan ETA
## 9664 Re: Japan ETA
## 9665 Re: Credit Derivatives Reference Entities
## 9666 Re: Credit Derivatives Reference Entities
## 9667 Re: Credit Derivatives Reference Entities
## 9668 Credit Derivatives Reference Entities
## 9669 Credit Derivatives Reference Entities
## 9670 Credit Derivatives Reference Entities
## 9671 Credit Derivatives Reference Entities
## 9672 Credit Derivatives Reference Entities
## 9673 Re: Credit
## 9674 Re: Reference credits
## 9675 Re: EnronCredit/Deutsche Bank
## 9676 Approval Procedure
## 9677 Re: TXU/Eastern - ETA comfort letter
## 9678 Re: Indicative request to buy
## 9679 Re: Indicative request to buy
## 9680 Re: Indicative request to buy
## 9681 Re: Indicative request to buy
## 9682 Re: Indicative request to buy
## 9683 Re: Computer Upgrade
## 9684 EnronOnline Contracts
## 9685 EnronOnline Contracts
## 9686 EnronOnline Contracts
## 9687 Duke confidentiality query
## 9688 Re: confidentiality query
## 9689 Re: EOL Credit Derivatives - Long Descriptions
## 9690 EOL Credit Derivatives - Long Descriptions
## 9691 Re: Cutoff Time for EOL Gas Transactions
## 9692 Re: New PA form
## 9693 Re: New PA form
## 9694 Re: New PA form
## 9695 Re: New PA form
## 9696 Re: Australian ETA
## 9697 Re: Mark Taylor/ACCF Dinner
## 9698 EnronOnline Legal Due Diligence
## 9699 Re: Mark Taylor/ACCF Dinner
## 9700 EnergyLink disclaimers
## 9701 Re: Meeting Change
## 9702 Re: Trip to Brazil
## 9703 Re: Contact Enron
## 9704 Meeting times confusion
## 9705 Re: Names on EnronCredit.com
## 9706 Re: EnronOnline Phase 2 Meeting
## 9707 Re: Telephone conference
## 9708 EnronOnline Credit Derivatives Propsoed Reference Entities
## 9709 EnronOnline Credit Derivatives Propsoed Reference Entities
## 9710 EnronOnline Credit Derivatives Propsoed Reference Entities
## 9711 EnronOnline Credit Derivatives Propsoed Reference Entities
## 9712 EnronOnline Credit Derivatives Propsoed Reference Entities
## 9713 Legal Fees re: EnronOnline Credit Derivatives
## 9714 Re: Credit Derivatives
## 9715 Re: EnronOnline
## 9716 Re: EnronOnline
## 9717 Re: EnronOnline
## 9718 Re: EnronOnline
## 9719 Re: EnronOnline
## 9720 Re: EnronOnline
## 9721 Re: EnronOnline
## 9722 Re: Hard Facts Needed
## 9723 Re: Hard Facts Needed
## 9724 Re: Hard Facts Needed
## 9725 Re: Credit Derivatives
## 9726 Re: Cutoff Time for EOL Gas Transactions
## 9727 Re: EnronOnline - Credit Product Documentation
## 9728 Re: Court Humor
## 9729 Re: Margaux/Whitewing
## 9730 Re: Margaux/Whitewing
## 9731 Re: Margaux/Whitewing
## 9732 Re: Margaux/Whitewing
## 9733 Re: Margaux/Whitewing
## 9734 Re: Margaux/Whitewing
## 9735 Re: Margaux/Whitewing
## 9736 Re: Margaux/Whitewing
## 9737 Re: Margaux/Whitewing
## 9738 EOL Credit Product - ENA confirmation
## 9739 Reference Entities
## 9740 Reference Entities
## 9741 Reference Entities
## 9742 Re: Margaux/Whitewing
## 9743 Re: Margaux/Whitewing
## 9744 Re: Margaux/Whitewing
## 9745 FAQ s regarding Agency.
## 9746 EnronOnline Reference Entities
## 9747 EnronOnline Reference Entities
## 9748 More Ref Credits
## 9749 Re: Credit Derivatives Reference Entities
## 9750 Re: More Ref Credits
## 9751 Re: More Ref Credits
## 9752 Re: More Ref Credits
## 9753 Re: More Ref Credits
## 9754 Re: More Ref Credits
## 9755 Re: More Ref Credits
## 9756 Re: More Ref Credits
## 9757 Re: More Ref Credits
## 9758 Re: More Ref Credits
## 9759 Re: More Ref Credits
## 9760 Re: More Ref Credits
## 9761 Re: More Ref Credits
## 9762 Re: More Ref Credits
## 9763 Re: Credit Derivatives Reference Entities
## 9764 Re: Credit Derivatives Reference Entities
## 9765 Credit Derivatives Reference Entities
## 9766 Credit Derivatives Reference Entities
## 9767 packages
## 9768 Re: Last day Nymex trading
## 9769 Re: Last day Nymex trading
## 9770 Re: Last day Nymex trading
## 9771 Re: Last day Nymex trading
## 9772 Re: Last day Nymex trading
## 9773 Credit Derivatives Reference Entities
## 9774 Credit Derivatives Reference Entities
## 9775 Re: New Product Type Approval
## 9776 Re: New Product Approval Request
## 9777 Re: New Basis Swap Products
## 9778 Re: New Pulp Product - BKP PIX
## 9779 Re: Equity and Debt Trading - exploratory discussion
## 9780 Re: More Reference Credits - Please Approve
## 9781 Australiann Power Product Long Form Decsriptions
## 9782 Australiann Power Product Long Form Decsriptions
## 9783 Australiann Power Product Long Form Decsriptions
## 9784 Credit Derivatives Reference Entities
## 9785 Re: EnronOnline Credit Derivatives - Reference Entities
## 9786 Credit Derivatives Reference Entities
## 9787 Re: Trading Attorney in Brazil
## 9788 Collateral GTC s
## 9789 Collateral GTC s
## 9790 Collateral GTC s
## 9791 Collateral GTC s
## 9792 EnronOnline Credit Derivatives - Reference Entities
## 9793 EnronOnline Credit Derivatives - Reference Entities
## 9794 EnronOnline Credit Derivatives - Reference Entities
## 9795 EnronOnline Credit Derivatives - Reference Entities
## 9796 EnronOnline Credit Derivatives - Reference Entities
## 9797 Organizational Changes
## 9798 Reference Entity review
## 9799 Re: EnronOnline - Credit Product Documentation
## 9800 Re: EnronOnline - Credit Product Documentation
## 9801 Re: letter to reference credits
## 9802 Re: Weather-risk.com
## 9803 Re: Sample GTC s
## 9804 EnBank Auction Procedures
## 9805 EnBank Auction Procedures
## 9806 EnBank Auction Procedures
## 9807 Re: Credit Launch
## 9808 Re: Credit Launch
## 9809 Re: Credit Launch
## 9810 Re: Counterparty access to EnBank
## 9811 Revised Auction Procedures
## 9812 Revised Auction Procedures
## 9813 Revised Auction Procedures
## 9814 Counterparty access to EnBank
## 9815 Re: Auction Procedures
## 9816 Re: Auction Procedures
## 9817 Re: Auction Procedures
## 9818 Re: Auction Procedures
## 9819 Credit Language
## 9820 Re: Weather-risk.com
## 9821 Weather-risk.com
## 9822 Weather-risk.com
## 9823 Trading Attorney in Brazil
## 9824 Auction Procedures
## 9825 Auction Procedures
## 9826 Auction Procedures
## 9827 Auction Procedures
## 9828 Re: Draft EOL Termination Letter
## 9829 Gas Daily Henry Hub
## 9830 Gas Daily Henry Hub
## 9831 Gas Daily Henry Hub
## 9832 Gas Daily Henry Hub
## 9833 Gas Daily Henry Hub
## 9834 New Products - Approval Requested
## 9835 New Products - Approval Requested
## 9836 New Products - Approval Requested
## 9837 New Products - Approval Requested
## 9838 New Products - Approval Requested
## 9839 Re: Visit to Portland - March 6
## 9840 Re: Enron Law Conference
## 9841 EnronOnline - Credit Derivatives Documentation
## 9842 Legal Survey update
## 9843 Emissions Credits Auction Site
## 9844 Emissions Credits Auction Site
## 9845 Emissions Credits Auction Site
## 9846 Emissions Credits Auction Site
## 9847 One Password - multiple legal entities
## 9848 One Password - multiple legal entities
## 9849 One Password - multiple legal entities
## 9850 One Password - multiple legal entities
## 9851 One Password - multiple legal entities
## 9852 Re: Question
## 9853 Union Oil and ETA for Enron Online
## 9854 Re: US Jet Kero Swap -
## 9855 Re: US Jet Kero Swap -
## 9856 Oops
## 9857 Approval
## 9858 Re: Series 7
## 9859 Tokemised Periods - US Nat Gas
## 9860 Tokemised Periods - US Nat Gas
## 9861 Recipient of Master User ID
## 9862 Re: J Aron & Co - Master User in New York , Sub User in London
## 9863 Re: J Aron & Co - Master User in New York , Sub User in London
## 9864 Re: Useful?
## 9865 J Aron & Co - Master User in New York , Sub User in London
## 9866 J Aron & Co - Master User in New York , Sub User in London
## 9867 Re: ETA
## 9868 Re: ETA
## 9869 Re: ETA
## 9870 Re: EnronOnline PAs
## 9871 Talisman ETA - Draft
## 9872 Re: Please approve two new Product Types
## 9873 Re: New Pulp Products
## 9874 Draft EOL Termination Letter
## 9875 Draft EOL Termination Letter
## 9876 Draft EOL Termination Letter
## 9877 Draft EOL Termination Letter
## 9878 Draft EOL Termination Letter
## 9879 Draft EOL Termination Letter
## 9880 Draft EOL Termination Letter
## 9881 Draft EOL Termination Letter
## 9882 Draft EOL Termination Letter
## 9883 Re: OTC market size
## 9884 Re: New Index - Please review
## 9885 Re: Product Type Approval - Jet Kero Financial Swap
## 9886 Employee Referral Program
## 9887 Aquilia
## 9888 Re: check out the contract violation at ...
## 9889 Re: 5 each
## 9890 Re: EnronOnline Australian Legal Advice
## 9891 Re: Web side for Colombia
## 9892 Re: Houston Trip
## 9893 Re: Houston Trip
## 9894 Re: Houston Trip
## 9895 Re: Attorneys Meeting
## 9896 Re: EnronOnline
## 9897 Re: EnronOnline
## 9898 Re: Vacation Days
## 9899 Re: Vacation Days
## 9900 Re: Vacation Days
## 9901 Re: Vacation Days
## 9902 Re: Vacation Days
## 9903 Re: Vacation Days
## 9904 Re: Vacation Days
## 9905 Re: Vacation Days
## 9906 "Rumors"
## 9907 Re: West Power Customer Web SIte
## 9908 REVISED Re: On-line GTC s for EPC and ECFC
## 9909 Re: Consent
## 9910 Re: Consent
## 9911 Re: Consent
## 9912 Re: Consent
## 9913 Re: Consent
## 9914 Re: Consent
## 9915 Re: Consent
## 9916 String Trio of New York
## 9917 Credit Derivative Procedures
## 9918 S&C memo re: EOL Credit Derivatives Procedures (sent to Paul & me today)
## 9919 Re: West Power Customer Web SIte
## 9920 Re: On-line GTC s for Enron Petrochemicals Company (EPC)
## 9921 Re: On-line GTC s for Enron Petrochemicals Company (EPC)
## 9922 Re: On-line GTC s for Enron Petrochemicals Company (EPC)
## 9923 Re: On-line GTC s for Enron Petrochemicals Company (EPC)
## 9924 Re: On-line GTC s for Enron Petrochemicals Company (EPC)
## 9925 Re: On-line GTC s for Enron Petrochemicals Company (EPC)
## 9926 Re: On-line GTC s for Enron Petrochemicals Company (EPC)
## 9927 Re: On-line GTC s for Enron Petrochemicals Company (EPC)
## 9928 Re: On-line GTC s for Enron Petrochemicals Company (EPC)
## 9929 On-line GTC s for Enron Petrochemicals Company (EPC)
## 9930 On-line GTC s for Enron Petrochemicals Company (EPC)
## 9931 On-line GTC s for Enron Petrochemicals Company (EPC)
## 9932 On-line GTC s for Enron Petrochemicals Company (EPC)
## 9933 Re: On-line GTC s for Enron Clean Fuels Company (ECFC)
## 9934 Re: Eastern - Summary of their Response to PA/ETA
## 9935 Credit Trading OnLine - Results of Legal Due Diligence and Risk Memo
## 9936 Re: Eastern - Summary of their Response to PA/ETA
## 9937 Re: E-Commerce Boot Camp
## 9938 Re: On-line GTC s for Enron Clean Fuels Company (ECFC)
## 9939 Re: On-line GTC s for Enron Clean Fuels Company (ECFC)
## 9940 Re: On-line GTC s for Enron Clean Fuels Company (ECFC)
## 9941 Re: Your approval is requested
## 9942 West Power Customer Web SIte
## 9943 website
## 9944 Counterparty Matrix - Mapping Financial Master Agreements
## 9945 Counterparty Matrix - Mapping Financial Master Agreements
## 9946 Counterparty Matrix - Mapping Financial Master Agreements
## 9947 Counterparty Matrix - Mapping Financial Master Agreements
## 9948 Counterparty Matrix - Mapping Financial Master Agreements
## 9949 Counterparty Matrix - Mapping Financial Master Agreements
## 9950 Counterparty Matrix - Mapping Financial Master Agreements
## 9951 Counterparty Matrix - Mapping Financial Master Agreements
## 9952 Counterparty Matrix - Mapping Financial Master Agreements
## 9953 Counterparty Matrix - Mapping Financial Master Agreements
## 9954 Re: PowerGen - Urgent
## 9955 Re: Lunch For Bill Bradford
## 9956 RE: electronic trading agmt.
## 9957 Equity investment by ENA employee
## 9958 Equity investment by ENA employee
## 9959 Equity investment by ENA employee
## 9960 Re: electronic trading agmt.
## 9961 Grief
## 9962 1999 Supplement to the 1993 Commodity Derivatives Definitions
## 9963 Re: Trip to S&C
## 9964 Re: Trip to S&C
## 9965 Re: Energy Supplement
## 9966 Re: Trip to S&C
## 9967 Re: Trip to S&C
## 9968 Re: Trip to S&C
## 9969 Re: Discretionary Day
## 9970 Re: Discretionary Day
## 9971 Re: Discretionary Day
## 9972 Re: CLE Program
## 9973 Re: EOL Confirmations
## 9974 Re: new PULPEX document needed for trading in London
## 9975 EnronOnline Credit Derivatives
## 9976 Re: new PULPEX document needed for trading in London
## 9977 Happy New Year
## 9978 Online Transaction assignment
## 9979 Re: Aquila Risk/Energy Marketing Profile Changes
## 9980 Re: Vacation Request
## 9981 Re: Weather Review
## 9982 Re: Change to Index language for Financial Liquids
## 9983 Re: EnronCredit.com
## 9984 Re: EnronCredit.com
## 9985 Re: EnronCredit.com
## 9986 Killed Deals
## 9987 Killed Deals
## 9988 EOL Credit Responses 12/22
## 9989 EOL Credit Responses 12/22
## 9990 EOL Credit Responses 12/22
## 9991 EOL Credit Responses 12/22
## 9992 EOL Credit Responses 12/22
## 9993 EOL Credit Responses 12/22
## 9994 EOL Credit Responses 12/22
## 9995 EOL Credit Responses 12/22
## 9996 Re: Final Validation of Online Products Descriptions
## 9997 Re: Final Validation of Online Products Descriptions
## 9998 Re: Final Validation of Online Products Descriptions
## 9999 EOL Credit Responses 12/21
## 10000 EOL Credit Responses 12/21
## 10001 EOL Credit Responses 12/21
## 10002 EOL Credit Responses 12/21
## 10003 EOL Credit Responses 12/21
## 10004 EOL Credit Responses 12/21
## 10005 EOL Credit Responses 12/21
## 10006 EOL Credit Responses 12/21
## 10007 Re: Confidentiality Agreement
## 10008 Re: Weather Products
## 10009 Re: Proposed new Index
## 10010 Re: Confidentiality Agreement
## 10011 Re: Confidentiality Agreement
## 10012 Re: Proposed new Index
## 10013 Re: Nat Gas Indexes proposed
## 10014 Invoice
## 10015 Re: Nat Gas Indexes proposed
## 10016 Re: Proposed new Index
## 10017 ETA Amendments
## 10018 Project Blackbird Total Return Swap
## 10019 Project Raven -- lastest diagram and draft Amendment docs
## 10020 Aquila Assignment
## 10021 Re: Ashland Speciality Chemicals Company, a division of Ashland Inc.
## 10022 Re: PLEASE LOOK: Financial Trading Agreements Jurisdictional Database
## 10023 Re: CEMEX USA-Weather Confidentiality Agreement
## 10024 Re: CEMEX USA-Weather Confidentiality Agreement
## 10025 Re: CEMEX USA-Weather Confidentiality Agreement
## 10026 North Peak Resort Weather Deal: Another Heads Up!~!
## 10027 North Peak Resort Weather Deal: Another Heads Up!~!
## 10028 North Peak Resort Weather Deal: Another Heads Up!~!
## 10029 Re: Aquila
## 10030 Re: Aquila
## 10031 Re: Aquila
## 10032 Re: Aquila
## 10033 Re: Aquila
## 10034 Re: Aquila
## 10035 Re: Aquila
## 10036 Re: Aquila
## 10037 Re: Aquila
## 10038 Re: Aquila
## 10039 Re: Aquila
## 10040 Re: Aquila
## 10041 Re: Aquila
## 10042 Re: Aquila
## 10043 Re: Aquila
## 10044 Re: Aquila
## 10045 Re: Aquila
## 10046 Re: Aquila
## 10047 Re: Aquila
## 10048 Re: Aquila
## 10049 Re: Aquila
## 10050 Re: Aquila
## 10051 Re: Aquila
## 10052 Re: Aquila
## 10053 Re: Legal and Privacy
## 10054 Re: EnronOnline ETA
## 10055 Re: EnronOnline Password Application
## 10056 Re: Bryan Seyfried
## 10057
## 10058 Re: Vacation
## 10059 Re: Vacation
## 10060 Re: Vacation
## 10061 Draft of the Supplement to the 1993 Commodity Derivatives Definitions
## 10062 Re: Guest User Id Email Responses
## 10063 Project Ghost Structure
## 10064 RE: EnronOnline Electronic Trading Agreement Amendment
## 10065 RE: EnronOnline Electronic Trading Agreement Amendment
## 10066 Aquilla
## 10067 Bandwidth Exchange article
## 10068 Re: Regularly Scheduled Conference Call for US Regulatory Committee
## 10069 Re: Regularly Scheduled Conference Call for US Regulatory Committee
## 10070 Re: Agency.com Identification
## 10071 Aquilla wants to revise ETA asap. Pls call today.
## 10072 Re: Letter for Utilities in Texas
## 10073 Re: Override letter
## 10074 Re: Letter for Utilities in Texas
## 10075 Engage
## 10076 Engage
## 10077 Engage
## 10078 New cook inlet
## 10079 Re: New cook inlet
## 10080 Re: New Short Descriptions
## 10081 Re: New Short Descriptions
## 10082 Re: New Short Descriptions
## 10083 Re: New Short Descriptions
## 10084 Re: New Short Descriptions
## 10085 Re: EES and Online trades
## 10086 Re: EES and Online trades
## 10087 Re: EES and Online trades
## 10088 Re: EES and Online trades
## 10089 Re: EES and Online trades
## 10090 Re: EES and Online trades
## 10091 Re: EES and Online trades
## 10092 Re: Project Maple Leaf
## 10093 Re: Project Maple Leaf
## 10094 Re: Project Maple Leaf
## 10095 Re: Michael Guerriero - Houston Meeting
## 10096 EOL Customer Review
## 10097 Vacation Contact Info.
## 10098 Vacation Contact Info.
## 10099 Vacation Contact Info.
## 10100 Vacation Contact Info.
## 10101 Vacation Contact Info.
## 10102 Vacation Contact Info.
## 10103 Vacation Contact Info.
## 10104 Vacation Contact Info.
## 10105 series 3,7 whatever
## 10106 Re: Final EOL GTCs
## 10107 Re: Final EOL GTCs
## 10108 Re: Final EOL GTCs
## 10109 Re: Final EOL GTCs
## 10110 Re: Final EOL GTCs
## 10111 Re: Final EOL GTCs
## 10112 Re: Final EOL GTCs
## 10113 Re: Final EOL GTCs
## 10114 Re: Final EOL GTCs
## 10115 Re: EOL Contractual Relationships
## 10116 Re: EOL Contractual Relationships
## 10117 Re: EOL Contractual Relationships
## 10118 Re: EOL Contractual Relationships
## 10119 Re: EOL Contractual Relationships
## 10120 Re: EOL Contractual Relationships
## 10121 Re: EOL Contractual Relationships
## 10122 Re: EOL Contractual Relationships
## 10123 Re: EOL Contractual Relationships
## 10124 Re: EOL Contractual Relationships
## 10125 Re: EOL Contractual Relationships
## 10126 test
## 10127 EnronOnline - Short Term Canadian Physical Deals
## 10128 Re: Bank of Montreal Termination
## 10129 Re: Bank of Montreal Termination
## 10130 Re: Bank of Montreal Termination
## 10131 Re: Bank of Montreal Termination
## 10132 Re: Bank of Montreal Termination
## 10133 David Portz
## 10134 Vice President Feedback Measurement Report
## 10135 Vice President Feedback Measurement Report
## 10136 Vice President Feedback Measurement Report
## 10137 Vice President Feedback Measurement Report
## 10138 Vice President Feedback Measurement Report
## 10139 Vice President Feedback Measurement Report
## 10140 Vice President Feedback Measurement Report
## 10141 Vice President Feedback Measurement Report
## 10142 Re: performance review
## 10143 Re: Enron Online
## 10144 Re: Enron Online
## 10145 Re: Enron Online
## 10146 Re: Enron Online
## 10147 Re: Enron Online
## 10148 Conference Call
## 10149 Re: JAPRO Gruppen Aktiebolag
## 10150 Legal Survey update
## 10151 Legal Survey update
## 10152 Form of ECT Legal Opinion
## 10153 Re: EOL Access Denied - Form Letter
## 10154 Re: EOL Access Denied - Form Letter
## 10155 Re: EOL Access Denied - Form Letter
## 10156 Re: EOL Access Denied - Form Letter
## 10157 Re: EOL Access Denied - Form Letter
## 10158 Re: EOL Access Denied - Form Letter
## 10159 Re: EOL Access Denied - Form Letter
## 10160 Update of Legal Survey
## 10161 Re: New Product Request
## 10162 Re: New Product Request
## 10163 Re: New Product Request
## 10164 Re: First Registration Form
## 10165 Re: First Registration Form
## 10166 Re: First Registration Form
## 10167 Re: Bankruptcy bill
## 10168 Re: FAQs
## 10169 Re: FAQs
## 10170 Re: FAQs
## 10171 Re: FAS 133
## 10172 Re: FAQs
## 10173 Re: December 10, 1999
## 10174 Enron Entity for Financial Trading
## 10175 Enron Entity for Financial Trading
## 10176 Enron Entity for Financial Trading
## 10177 Re: More FAQ s
## 10178 Re: November & December Calendar - SWAP Group
## 10179 Re: Faxed PA s
## 10180 Re: Faxed PA s
## 10181 Re: Faxed PA s
## 10182 Re: Faxed PA s
## 10183 Re: Faxed PA s
## 10184 Re: Faxed PA s
## 10185 Re: Faxed PA s
## 10186 Australia and EnronOnline
## 10187 Policy draft for confirmations
## 10188 Confirm Template
## 10189 Re: Dinner
## 10190 Re: Sunday, October 31, 1999
## 10191
## 10192 Re: Canadian-Only Financial Masters
## 10193 Re: Canadian-Only Financial Masters
## 10194 Re: Canadian-Only Financial Masters
## 10195 Re: Canadian-Only Financial Masters
## 10196 Re: Canadian-Only Financial Masters
## 10197 1999 ENA/EGRM Legal Conference
## 10198 1999 ENA/EGRM Legal Conference
## 10199 1999 ENA/EGRM Legal Conference
## 10200 1999 ENA/EGRM Legal Conference
## 10201 1999 ENA/EGRM Legal Conference
## 10202 1999 ENA/EGRM Legal Conference
## 10203 1999 ENA/EGRM Legal Conference
## 10204 1999 ENA/EGRM Legal Conference
## 10205 1999 ENA/EGRM Legal Conference
## 10206 1999 ENA/EGRM Legal Conference
## 10207 1999 ENA/EGRM Legal Conference
## 10208 1999 ENA/EGRM Legal Conference
## 10209 1999 ENA/EGRM Legal Conference
## 10210 1999 ENA/EGRM Legal Conference
## 10211 1999 ENA/EGRM Legal Conference
## 10212 1999 ENA/EGRM Legal Conference
## 10213 1999 ENA/EGRM Legal Conference
## 10214 1999 ENA/EGRM Legal Conference
## 10215 1999 ENA/EGRM Legal Conference
## 10216 1999 ENA/EGRM Legal Conference
## 10217 1999 ENA/EGRM Legal Conference
## 10218 1999 ENA/EGRM Legal Conference
## 10219 1999 ENA/EGRM Legal Conference
## 10220 1999 ENA/EGRM Legal Conference
## 10221 1999 ENA/EGRM Legal Conference
## 10222 1999 ENA/EGRM Legal Conference
## 10223 1999 ENA/EGRM Legal Conference
## 10224 1999 ENA/EGRM Legal Conference
## 10225 1999 ENA/EGRM Legal Conference
## 10226 1999 ENA/EGRM Legal Conference
## 10227 1999 ENA/EGRM Legal Conference
## 10228 1999 ENA/EGRM Legal Conference
## 10229 1999 ENA/EGRM Legal Conference
## 10230 1999 ENA/EGRM Legal Conference
## 10231 1999 ENA/EGRM Legal Conference
## 10232 1999 ENA/EGRM Legal Conference
## 10233 1999 ENA/EGRM Legal Conference
## 10234 1999 ENA/EGRM Legal Conference
## 10235 1999 ENA/EGRM Legal Conference
## 10236 1999 ENA/EGRM Legal Conference
## 10237 1999 ENA/EGRM Legal Conference
## 10238 1999 ENA/EGRM Legal Conference
## 10239 1999 ENA/EGRM Legal Conference
## 10240 1999 ENA/EGRM Legal Conference
## 10241 1999 ENA/EGRM Legal Conference
## 10242 1999 ENA/EGRM Legal Conference
## 10243 1999 ENA/EGRM Legal Conference
## 10244 1999 ENA/EGRM Legal Conference
## 10245 1999 ENA/EGRM Legal Conference
## 10246 1999 ENA/EGRM Legal Conference
## 10247 1999 ENA/EGRM Legal Conference
## 10248 1999 ENA/EGRM Legal Conference
## 10249 1999 ENA/EGRM Legal Conference
## 10250 1999 ENA/EGRM Legal Conference
## 10251 1999 ENA/EGRM Legal Conference
## 10252 1999 ENA/EGRM Legal Conference
## 10253 1999 ENA/EGRM Legal Conference
## 10254 1999 ENA/EGRM Legal Conference
## 10255 1999 ENA/EGRM Legal Conference
## 10256 1999 ENA/EGRM Legal Conference
## 10257 1999 ENA/EGRM Legal Conference
## 10258 1999 ENA/EGRM Legal Conference
## 10259 1999 ENA/EGRM Legal Conference
## 10260 1999 ENA/EGRM Legal Conference
## 10261 1999 ENA/EGRM Legal Conference
## 10262 1999 ENA/EGRM Legal Conference
## 10263 1999 ENA/EGRM Legal Conference
## 10264 1999 ENA/EGRM Legal Conference
## 10265 1999 ENA/EGRM Legal Conference
## 10266 1999 ENA/EGRM Legal Conference
## 10267 1999 ENA/EGRM Legal Conference
## 10268 1999 ENA/EGRM Legal Conference
## 10269 Re: Online Trading
## 10270 Re: Dinner
## 10271 E-Clearinghouse - RE-SENDING
## 10272 Re: Mexico advice
## 10273 Treasury, CFTC thank you letters
## 10274 U.S. Gas
## 10275 Re: Update to the FAQ s
## 10276 Re: Update to the FAQ s
## 10277 Re: Update to the FAQ s
## 10278 Re: "Ernie" seminars
## 10279 Re: "Ernie" seminars
## 10280 Re: "Ernie" seminars
## 10281 European Investment Bank Report, 25 Main Players in a
## 10282 European Investment Bank Report, 25 Main Players in a
## 10283 European Investment Bank Report, 25 Main Players in a
## 10284 Re: Online Trading - GTC/Master variation
## 10285 Re: Online Trading - GTC/Master variation
## 10286 Re: Online Trading - GTC/Master variation
## 10287 Re: Delivery of Yosemite Documents
## 10288 Re: Affiliate Setoff Language
## 10289 Re: Legal issue - Customer Registration
## 10290 Re: Legal issue - Customer Registration
## 10291 Re: Legal issue - Customer Registration
## 10292 Re: Legal issue - Customer Registration
## 10293 Re: Legal issue - Customer Registration
## 10294 Re: Legal issue - Customer Registration
## 10295 Re: Legal issue - Customer Registration
## 10296 Re: Update
## 10297 Revision to Long Descriptions and ETA re: master agreements
## 10298 Revision to Long Descriptions and ETA re: master agreements
## 10299 Revision to Long Descriptions and ETA re: master agreements
## 10300 Revision to Long Descriptions and ETA re: master agreements
## 10301 Revision to Long Descriptions and ETA re: master agreements
## 10302 Revision to Long Descriptions and ETA re: master agreements
## 10303 Revision to Long Descriptions and ETA re: master agreements
## 10304 Re: Andrea Calo
## 10305 Andrea Calo s Houston Trip
## 10306 Andrea Calo s Houston Trip
## 10307 Andrea Calo s Houston Trip
## 10308 Re: Local Counsel Questions
## 10309 Re: Confirmations format in regards to EOL
## 10310 Re: Houston Trip
## 10311 Dinner
## 10312 Re: Brent Hendry
## 10313 Houston Trip
## 10314 Andrea Calo
## 10315 Dead Horses
## 10316 Re: Cash Collateral in Canada
## 10317 Re: Cash Collateral in Canada
## 10318 Re: Cash Collateral in Canada
## 10319 Re: Cash Collateral in Canada
## 10320 Re: Cash Collateral in Canada
## 10321 Re: Cash Collateral in Canada
## 10322 Re: Cash Collateral in Canada
## 10323 Re: Cash Collateral in Canada
## 10324 Re: Cash Collateral in Canada
## 10325 Re: Cash Collateral in Canada
## 10326 Re: Cash Collateral in Canada
## 10327 Re: Cash Collateral in Canada
## 10328 Re: Cash Collateral in Canada
## 10329 Re: Cash Collateral in Canada
## 10330 Re: Cash Collateral in Canada
## 10331 Re: Paper Products
## 10332
## 10333 Re: EOL - Master versus Online GTCs
## 10334 Re: Lyco Letter
## 10335 Re: Lyco Letter
## 10336 Derivatives Week on the Web
## 10337 Derivatives Week on the Web
## 10338 Derivatives Week on the Web
## 10339 Derivatives Week on the Web
## 10340 Derivatives Week on the Web
## 10341 Derivatives Week on the Web
## 10342 Derivatives Week on the Web
## 10343 Derivatives Week on the Web
## 10344 Dinner 11/1/99
## 10345 Re: EOL - Master versus Online GTCs
## 10346 Re: Online Derivatives Trading with Regulated Utilities
## 10347 Re: Arriva!
## 10348 eClearinghouse - confidentiality and exclusivity agreement letter
## 10349 Credit Derivatives Documentation Seminar
## 10350 Procedures for New Product Type Approval
## 10351 Revised GTCs
## 10352 Re: Online Canadian GTC s
## 10353 Re: Vacation day
## 10354 website
## 10355 Re: Paper Volumes
## 10356 Re: Paper Volumes
## 10357 Re: Paper Volumes
## 10358 Re: Paper Volumes
## 10359 Re: Paper Volumes
## 10360 Re: Paper Volumes
## 10361 Re: Paper Volumes
## 10362 Re: Paper Volumes
## 10363 Re: Paper Volumes
## 10364 Online Derivatives Trading with Regulated Utilities
## 10365 Online Derivatives Trading with Regulated Utilities
## 10366 Online Derivatives Trading with Regulated Utilities
## 10367 Online Derivatives Trading with Regulated Utilities
## 10368 Online Derivatives Trading with Regulated Utilities
## 10369 Online Derivatives Trading with Regulated Utilities
## 10370 Online Derivatives Trading with Regulated Utilities
## 10371 Online Derivatives Trading with Regulated Utilities
## 10372 Online Derivatives Trading with Regulated Utilities
## 10373 Online Derivatives Trading with Regulated Utilities
## 10374 Online Derivatives Trading with Regulated Utilities
## 10375 Online Derivatives Trading with Regulated Utilities
## 10376 Online Derivatives Trading with Regulated Utilities
## 10377 Online Derivatives Trading with Regulated Utilities
## 10378 Online Derivatives Trading with Regulated Utilities
## 10379 Re: Returned mail: Host unknown (Name server: etc.enron.com: no data\t known)
## 10380 Oops
## 10381 Re: Returned mail: Host unknown (Name server: etc.enron.com: no data\t known)
## 10382 Re: Returned mail: Host unknown (Name server: etc.enron.com: no data\t known)
## 10383 Re: Returned mail: Host unknown (Name server: etc.enron.com: no data\t known)
## 10384 Re: Returned mail: Host unknown (Name server: etc.enron.com: no data\t known)
## 10385 House for Rent
## 10386 Lunch with Fred
## 10387 Re: Aussie Swap Confirm
## 10388 Re: Aussie Swap Confirm
## 10389 Re: Aussie Swap Confirm
## 10390 Re: Aussie Swap Confirm
## 10391 Re: Aussie Swap Confirm
## 10392 Re: Aussie Swap Confirm
## 10393 Re: Aussie Swap Confirm
## 10394 Re: Aussie Swap Confirm
## 10395 Re: Aussie Swap Confirm
## 10396 Re: Aussie Swap Confirm
## 10397 Re: Aussie Swap Confirm
## 10398 Re: Aussie Swap Confirm
## 10399 Re: Aussie Swap Confirm
## 10400 Re: Aussie Swap Confirm
## 10401 Re: Approval needed for letters going out....
## 10402 Re: Approval needed for letters going out....
## 10403 Re: Approval needed for letters going out....
## 10404 Re: Approval needed for letters going out....
## 10405 Re: Approval needed for letters going out....
## 10406 Re: Approval needed for letters going out....
## 10407 Re: Approval needed for letters going out....
## 10408 Re: EOL ETA s & Electronic Trading Partner Agreements
## 10409 Re: Index Wording on SWAPs
## 10410 Re: Index Wording on SWAPs
## 10411 Re: Index Wording on SWAPs
## 10412 Forcenergy Asset Sale
## 10413 Oct. 6 Issues
## 10414 Important. New Internet Mail Address
## 10415 e-mail
## 10416 Online Trading contracts
## 10417 Online Trading contracts
## 10418 Re: Paper Index Wording
## 10419 Re: Paper Index Wording
## 10420 Re: Paper Index Wording
## 10421 October 29 Meeting
## 10422 Local Counsel Questions
## 10423 Local Counsel Questions
## 10424 AIG Intl Worksheet
## 10425 Re: RMT vs ECC - Canadian Swap disclosure language
## 10426 Re: RMT vs ECC - Canadian Swap disclosure language
## 10427 Re: RMT vs ECC - Canadian Swap disclosure language
## 10428 Re: RMT vs ECC - Canadian Swap disclosure language
## 10429 Re: Vacation
## 10430 Re: Vacation
## 10431 Re: Vacation
## 10432 Re: Online Trading-Bad certificates
## 10433 Re: Legal Agreement
## 10434 Re: Legal Agreement
## 10435 Re: Legal Agreement
## 10436 Mexico transaction
## 10437 Re: EOL GTC s
## 10438 Re: EOL GTC s
## 10439 Re: EOL GTC s
## 10440 Re: EOL GTC s
## 10441 Re: EOL GTC s
## 10442 Re: Request for Editing
## 10443 Re: Request for Editing
## 10444 Re: Request for Editing
## 10445 Re: Request for Editing
## 10446 Re: Request for Editing
## 10447 Re: Legal Conference
## 10448 Index Wording
## 10449 [Fwd: [Fwd:Phoenix AZ//Rhine Re(Bermuda)confirm 00003.01.01]
## 10450 Re: Smoking/Non-Smoking Rooms
## 10451 [Fwd: [Fwd:Phoenix AZ//Rhine Re(Bermuda)confirm 00003.01.01]
## 10452 [Fwd: [Fwd:Phoenix AZ//Rhine Re(Bermuda)confirm 00003.01.01]
## 10453 Re: Home Page Text: Rephrased First Paragraph
## 10454 Re: Home Page Text: Rephrased First Paragraph
## 10455 Re: Home Page Text: Rephrased First Paragraph
## 10456 Re: Home Page Text: Rephrased First Paragraph
## 10457 Re: Home Page Text: Rephrased First Paragraph
## 10458 Re: Home Page Text: Rephrased First Paragraph
## 10459 Re: Home Page Text: Rephrased First Paragraph
## 10460 Re: Home Page Text: Rephrased First Paragraph
## 10461 Re: Home Page Text: Rephrased First Paragraph
## 10462 Re: Home Page Text: Rephrased First Paragraph
## 10463 Re: Home Page Text: Rephrased First Paragraph
## 10464 New Deals
## 10465 Test Message
## 10466 GTC s
## 10467 Re: Gas Option language
## 10468 New Singapore-based Attorney
## 10469 New Singapore-based Attorney
## 10470 New Singapore-based Attorney
## 10471 New Singapore-based Attorney
## 10472 New Singapore-based Attorney
## 10473 New Singapore-based Attorney
## 10474 New Singapore-based Attorney
## 10475 New Singapore-based Attorney
## 10476 Re: PULP & PAPER LUNCHEON MEETING
## 10477 Anita on leave
## 10478 Re: Missing GTC s
## 10479 Re: Gas Option language
## 10480 re Westland Energie BV - capacity deals for 2000
## 10481 Gas Option language
## 10482 Online Indexes
## 10483 Online Indexes
## 10484 Online Indexes
## 10485 Online Indexes
## 10486 Online Indexes
## 10487 Online Indexes
## 10488 Online Indexes
## 10489 Online Indexes
## 10490 Online Indexes
## 10491 Online Indexes
## 10492 Online Indexes
## 10493 Re: State of Incorporation
## 10494 Re: Wednesday Online Trading Meeting
## 10495 Long Descriptions - Indexes
## 10496 Wednesday Online Trading Meeting
## 10497 Wednesday Online Trading Meeting
## 10498 Wednesday Online Trading Meeting
## 10499 Wednesday Online Trading Meeting
## 10500 Wednesday Online Trading Meeting
## 10501 Wednesday Online Trading Meeting
## 10502 Wednesday Online Trading Meeting
## 10503 Wednesday Online Trading Meeting
## 10504 Wednesday Online Trading Meeting
## 10505 Wednesday Online Trading Meeting
## 10506 Wednesday Online Trading Meeting
## 10507 Wednesday Online Trading Meeting
## 10508 Wednesday Online Trading Meeting
## 10509 Wednesday Online Trading Meeting
## 10510 Wednesday Online Trading Meeting
## 10511 Wednesday Online Trading Meeting
## 10512 Wednesday Online Trading Meeting
## 10513 Wednesday Online Trading Meeting
## 10514 Wednesday Online Trading Meeting
## 10515 Wednesday Online Trading Meeting
## 10516 Wednesday Online Trading Meeting
## 10517 Wednesday Online Trading Meeting
## 10518 Wednesday Online Trading Meeting
## 10519 Wednesday Online Trading Meeting
## 10520 Re: Legal Stuff
## 10521 Re: Tuesday Meeting
## 10522 Re: Mark Haedicke s visit to London
## 10523 Tuesday Meeting
## 10524 Weather GTC s
## 10525 Weather GTC s
## 10526 Re: Reference to telephone conversations on confirmations
## 10527 Re: Reference to telephone conversations on confirmations
## 10528 Re: Reference to telephone conversations on confirmations
## 10529 Re: Reference to telephone conversations on confirmations
## 10530 Re: Reference to telephone conversations on confirmations
## 10531 Re: Reference to telephone conversations on confirmations
## 10532 Re: Reference to telephone conversations on confirmations
## 10533 Re: Reference to telephone conversations on confirmations
## 10534 Re: Reference to telephone conversations on confirmations
## 10535 Re: Reference to telephone conversations on confirmations
## 10536 Re: Reference to telephone conversations on confirmations
## 10537 Re: Reference to telephone conversations on confirmations
## 10538 Re: Reference to telephone conversations on confirmations
## 10539 Re: Reference to telephone conversations on confirmations
## 10540 Re: Reference to telephone conversations on confirmations
## 10541 Re: Reference to telephone conversations on confirmations
## 10542 Re: Reference to telephone conversations on confirmations
## 10543 Re: Reference to telephone conversations on confirmations
## 10544 Re: Reference to telephone conversations on confirmations
## 10545 Re: Reference to telephone conversations on confirmations
## 10546 Re: Reference to telephone conversations on confirmations
## 10547 Approved Countries for Online Trading
## 10548 Approved Countries for Online Trading
## 10549 Approved Countries for Online Trading
## 10550 Approved Countries for Online Trading
## 10551 Re: Revised GTCs
## 10552 Re: Signoffs
## 10553 Re: Revised GTCs
## 10554 RE: Project Tornado
## 10555 Spreadsheet
## 10556 Critical Tornedo Meetings on Wednesday/Thursday
## 10557 Critical Tornedo Meetings on Wednesday/Thursday
## 10558 Critical Tornedo Meetings on Wednesday/Thursday
## 10559 Re: Vacation Days
## 10560 Owens-Corning
## 10561 Owens-Corning
## 10562 Owens-Corning
## 10563 Re: EnronOnline Long Descriptions
## 10564 re: Project Tornado
## 10565 re: Project Tornado
## 10566 FAS 133 response
## 10567 re: Project Tornado
## 10568 Re: CHANGE - NEW DATE FOR 8/25 MEETING
## 10569 Commercial and help guide testing schedule
## 10570 Re: Enron Online / Legal
## 10571 Re: FASB 133
## 10572 Re: FASB 133
## 10573 Re: FASB 133
## 10574 Sullivan & Cromwell fax
## 10575 Re: Travel Service Forum - Question
## 10576 Re: Online Weather GTC s
## 10577 EnronOnline Long Descriptions
## 10578 EnronOnline Long Descriptions
## 10579 EnronOnline Long Descriptions
## 10580 EnronOnline Long Descriptions
## 10581 EnronOnline Long Descriptions
## 10582 Re: EnronOnline Text
## 10583 Spreadsheet
## 10584 Long Descriptions Spreadsheet
## 10585 Long Descriptions Spreadsheet
## 10586 Long Descriptions Spreadsheet
## 10587 Long Descriptions Spreadsheet
## 10588 Long Descriptions Spreadsheet
## 10589 Online Weather GTC s
## 10590 Online Weather GTC s
## 10591 Online Weather GTC s
## 10592 Online Weather GTC s
## 10593 Online Weather GTC s
## 10594 Online Weather GTC s
## 10595 Online Weather GTC s
## 10596 Online Weather GTC s
## 10597 Online Weather GTC s
## 10598 Online Weather GTC s
## 10599 Online Weather GTC s
## 10600 Online Weather GTC s
## 10601 Online Weather GTC s
## 10602 Online Weather GTC s
## 10603 RE: Password Change
## 10604 Launch materials
## 10605 Product type long definitions - legal review
## 10606 Product type long definitions - legal review
## 10607 Product type long definitions - legal review
## 10608 Product type long definitions - legal review
## 10609 Product type long definitions - legal review
## 10610 Product type long definitions - legal review
## 10611 Product type long definitions - legal review
## 10612 Product type long definitions - legal review
## 10613 Product type long definitions - legal review
## 10614 Product type long definitions - legal review
## 10615 Product type long definitions - legal review
## 10616 Product type long definitions - legal review
## 10617 Product type long definitions - legal review
## 10618 Product type long definitions - legal review
## 10619 Product type long definitions - legal review
## 10620 Legal Issues List for MEH
## 10621 Re: Monthly Audit Meeting for August
## 10622 Re: Policy Changes
## 10623 Re: Online North America Expense Work Order
## 10624 Re: Restricted Master Agreements
## 10625 CP s with Master Agreement Restrictions
## 10626 Re: Restriced Master Agreements
## 10627 Re: Restricted Master Agreements
## 10628 Re: Holiday in Germany
## 10629 Restricted Master Agreements
## 10630 Restriced Master Agreements
## 10631 Restriced Master Agreements
## 10632 Restricted Master Agreements
## 10633 Re: Long Sentences
## 10634 Project Tornado Conference Call
## 10635 Project Tornado Conference Call
## 10636 Project Tornado Conference Call
## 10637 Project Tornado Conference Call
## 10638 Project Tornado Conference Call
## 10639 Re: WIlton Trust confirms.
## 10640 =?ANSI_X3.4-1968?Q?S=3Fo_Paulo_-_Updated_PHONE_LIST?=
## 10641 Watershed - executive summary and chart
## 10642 Re: ECT EUROPE INC: ETOL PUT COUNTERPARTY
## 10643 WIlton Trust confirms.
## 10644 Travel Service Forum
## 10645 Restricted Mater Agreements
## 10646 Re: ECT North America Executed Master Agreements
## 10647 Re: ECT North America Executed Master Agreements
## 10648 Re: ECT North America Executed Master Agreements
## 10649 Holiday in Germany
## 10650 Re: Taffy Milligan - Home Numbers
## 10651 Pending Issues
## 10652 Re: Argentina Pulp & Paper
## 10653 Re: Master Agreement Structural Issues Working Group - Minutes
## 10654 Re: Global Band Width
## 10655 Online Trading Documents
## 10656 Brazilian Trading
## 10657 Counterparties versus Product Type Matrix
## 10658 Counterparties versus Product Type Matrix
## 10659 Counterparties versus Product Type Matrix
## 10660 Counterparties versus Product Type Matrix
## 10661 Counterparties versus Product Type Matrix
## 10662 Counterparties versus Product Type Matrix
## 10663 Counterparties versus Product Type Matrix
## 10664 Counterparties versus Product Type Matrix
## 10665 Counterparties versus Product Type Matrix
## 10666 Online Trading Documents
## 10667 OEM software
## 10668 Counterparties versus Product Type Matrix
## 10669 Re: LEGAL SIGN OFF MEETING - MONDAY, 9TH AUGUST
## 10670 Online Weather Transactions
## 10671 Online Trading Documents
## 10672 Counterparties versus Product Type Matrix
## 10673 Revised North American PA & ETA
## 10674 Online Trading Product Descriptions
## 10675 Online Trading Product Descriptions
## 10676 Online Trading Product Descriptions
## 10677 Online Trading Product Descriptions
## 10678 Online Trading Product Descriptions
## 10679 Online Trading Product Descriptions
## 10680 Online Trading Product Descriptions
## 10681 Online Trading Product Descriptions
## 10682 Trading Lawyer Meeting
## 10683 Online Trading
## 10684 Online Trading
## 10685 Online Trading
## 10686 Online Trading
## 10687 Online Trading
## 10688 Online Trading
## 10689 Online Trading
## 10690 Online Trading
## 10691 Re: GTC s for NOx and SO2
## 10692 Re: GTC s for NOx and SO2
## 10693 Re: GTC s for NOx and SO2
## 10694 PA/ETA
## 10695 PA/ETA
## 10696 8/4 meeting
## 10697 Derivatives: Nord Pool ASA-Nordic Power Futures - Week
## 10698 Derivatives: Ruling Against Texas Hospital Swap May Put Similar Deals in Jeopardy
## 10699 Re: SWAP GROUP CALENDAR - JULY/AUGUST REVISED
## 10700 Revised documentation
## 10701 Re: Deal execution
## 10702 Re: Amended trade confirmations
## 10703 Re: Amended trade confirmations
## 10704 ETOL SWAP
## 10705 Re: Performance review for David Portz
## 10706 Independent Amounts
## 10707 Independent Amounts
## 10708 Independent Amounts
## 10709 Independent Amounts
## 10710 Independent Amounts
## 10711 Independent Amounts
## 10712 Independent Amounts
## 10713 Independent Amounts
## 10714 Independent Amounts
## 10715 Independent Amounts
## 10716 Independent Amounts
## 10717 Independent Amounts
## 10718 Independent Amounts
## 10719 Independent Amounts
## 10720 Independent Amounts
## 10721 Independent Amounts
## 10722 Independent Amounts
## 10723 Independent Amounts
## 10724 Independent Amounts
## 10725 Independent Amounts
## 10726 Independent Amounts
## 10727 Online North America Expense Work Order
## 10728 Proposed revised collateral clause for Online GTCs
## 10729 Proposed revised collateral clause for Online GTCs
## 10730 Proposed revised collateral clause for Online GTCs
## 10731 Proposed revised collateral clause for Online GTCs
## 10732 Proposed revised collateral clause for Online GTCs
## 10733 Proposed revised collateral clause for Online GTCs
## 10734 Re: Online Trading conference call today.
## 10735 Re: Meeting on Tuesday - Online Trading
## 10736 ETOL
## 10737 ETOL
## 10738 ETOL
## 10739 Credit Clause - online trading GTC s
## 10740 Credit Clause - online trading GTC s
## 10741 Credit Clause - online trading GTC s
## 10742 Credit Clause - online trading GTC s
## 10743 Online Trading Agreements
## 10744 Issue raised by London
## 10745 Tom Gros
## 10746 Re: Vacation Request
## 10747 Performance review for David Portz
## 10748 Re: ECTRIC
## 10749 Proposed FX and Interest Rate Desk in India
## 10750 Swiss Atel Starts Electricity Derivative Trading Co
## 10751 Swiss Atel Starts Electricity Derivative Trading Co
## 10752 Swiss Atel Starts Electricity Derivative Trading Co
## 10753 Swiss Atel Starts Electricity Derivative Trading Co
## 10754 Re: Final - Legal Business Unit Review
## 10755 Services Agreement
## 10756 Services Agreement
## 10757 Re: Vacation
## 10758 Re: Vacation
## 10759 Re: Vacation
## 10760 Sunoco Master Swap and Master Physical
## 10761 Re: Online meeting.
## 10762 Re: Online meeting.
## 10763 Re: Online meeting.
## 10764 Re: Disclaimer in HoustonStreet Press Release
## 10765 Re: Disclaimer in HoustonStreet Press Release
## 10766 Re: Disclaimer in HoustonStreet Press Release
## 10767 Re: Disclaimer in HoustonStreet Press Release
## 10768 Re: Disclaimer in HoustonStreet Press Release
## 10769 Re: Disclaimer in HoustonStreet Press Release
## 10770 Re: Disclaimer in HoustonStreet Press Release
## 10771 Re: Disclaimer in HoustonStreet Press Release
## 10772 Re: Disclaimer in HoustonStreet Press Release
## 10773 Re: Disclaimer in HoustonStreet Press Release
## 10774 Re: Disclaimer in HoustonStreet Press Release
## 10775 Re: Disclaimer in HoustonStreet Press Release
## 10776 Re: Disclaimer in HoustonStreet Press Release
## 10777 Performance review time...
## 10778 Performance review time...
## 10779 Performance review time...
## 10780 Performance review time...
## 10781 Performance review time...
## 10782 Performance review time...
## 10783 Credit Derivatives (CDs) in Sweden
## 10784 Re: J3025 - Benin
## 10785 Re: Vacation
## 10786 Re: Vacation
## 10787 Re: Vacation
## 10788 Re: J3025 - Benin
## 10789 Re: J3025 - Benin
## 10790 Re: OnLine Trading
## 10791 Re: Commodity Trading Advisor
## 10792 Re: Confirms
## 10793 Re: Confirms
## 10794 Re: Confirms
## 10795 Re: Confirms
## 10796 Re: Confirms
## 10797 Re: Confirms
## 10798 Re: Confirms
## 10799 Re: Confirms
## 10800 Re: Confirms
## 10801 Re: Confirms
## 10802 Re: Draft Nordic Power Master Agreement
## 10803 Re: Draft Nordic Power Master Agreement
## 10804 Re: Draft Nordic Power Master Agreement
## 10805 Re: Draft Nordic Power Master Agreement
## 10806 Re: Draft Nordic Power Master Agreement
## 10807 Re: Draft Nordic Power Master Agreement
## 10808 Re: Draft Nordic Power Master Agreement
## 10809 Re: Draft Nordic Power Master Agreement
## 10810 Re: Draft Nordic Power Master Agreement
## 10811 Re: Draft Nordic Power Master Agreement
## 10812 Re: Draft Nordic Power Master Agreement
## 10813 Re: Commodity Trading Advisor
## 10814 E-Commerce
## 10815 Re: URGENT - Conference Call Online Trading
## 10816 meeting
## 10817 MEH Meetings with Newsome & Stenholm
## 10818 MEH Meetings with Newsome & Stenholm
## 10819 MEH Meetings with Newsome & Stenholm
## 10820 Commissioner Newsome Tour
## 10821 Re: Invitation - Meeting to discuss CC s Foreign Jurisdiction Report - London 2:30 / New York 9:30 (18 June 02:30 PM GDT)
## 10822 Re: Invitation - Meeting to discuss CC s Foreign Jurisdiction Report - London 2:30 / New York 9:30 (18 June 02:30 PM GDT)
## 10823 Re: Invitation - Meeting to discuss CC s Foreign Jurisdiction Report - London 2:30 / New York 9:30 (18 June 02:30 PM GDT)
## 10824 Re: Invitation - Meeting to discuss CC s Foreign Jurisdiction Report - London 2:30 / New York 9:30 (18 June 02:30 PM GDT)
## 10825 Re: Invitation - Meeting to discuss CC s Foreign Jurisdiction Report - London 2:30 / New York 9:30 (18 June 02:30 PM GDT)
## 10826 Wine Country
## 10827 Re: TIME heals all .....
## 10828 Napa Web Sites
## 10829 Broker Agreement
## 10830 FYI
## 10831 Risk Management Policy
## 10832 Internet Trading - Internet Trading Access and Electronic Trading\t Agreements
## 10833 Modem Order
## 10834 Modem Order
## 10835 Modem Order
## 10836 Modem Order
## 10837 Modem Order
## 10838 Omnibus Revisions?
## 10839 Omnibus Revisions?
## 10840 Omnibus Revisions?
## 10841 Omnibus Revisions?
## 10842 Omnibus Revisions?
## 10843 Omnibus Revisions?
## 10844 Omnibus Revisions?
## 10845 Omnibus Revisions?
## 10846 Group Meetings
## 10847 Group Meetings
## 10848 Group Meetings
## 10849 Group Meetings
## 10850 Group Meetings
## 10851 Group Meetings
## 10852 Group Meetings
## 10853 Group Meetings
## 10854 Re: Internet Trading - Internet Trading Access and Electronic Trading\t Agreements
## 10855 FYI
## 10856 Services Agreement
## 10857 Services Agreement
## 10858 On-line Trading
## 10859 Re: Access and Trading Agreements
## 10860 Re: SWAP Group - June Calendar
## 10861 FYI
## 10862 Re: Trading Limits
## 10863 Re: UK Financial Services Regulation
## 10864 CFTC Article
## 10865 Internet Trading Consultants
## 10866 Re: Master Swap Agreement Database
## 10867 Re: Master Swap Agreement Database
## 10868 Re: Master Swap Agreement Database
## 10869 Re: Brent Hendry
## 10870 Re: June 25 - Bring Kid to Work Day
## 10871 Re: Brent Hendry
## 10872 Re: vacation days
## 10873 Re: vacation days
## 10874 Re: vacation days
## 10875 Sushi Demo
## 10876 Re: Resuming Financial Risk Management Opportunity in Guam
## 10877 Re: Resuming Financial Risk Management Opportunity in Guam
## 10878 Re: Resuming Financial Risk Management Opportunity in Guam
## 10879 Re: Resuming Financial Risk Management Opportunity in Guam
## 10880 Re: Resuming Financial Risk Management Opportunity in Guam
## 10881 Re: Resuming Financial Risk Management Opportunity in Guam
## 10882 Re: Resuming Financial Risk Management Opportunity in Guam
## 10883 NEW LAW CLERK...
## 10884 NEW LAW CLERK...
## 10885 NEW LAW CLERK...
## 10886 NEW LAW CLERK...
## 10887 Re: International Trading Committee Meeting
## 10888 URGENT - OMLX IT Agreements
## 10889 Project Double Eagle
## 10890 Re: European Energy Derivatives - Presentation tomorrow at 12:30 in the Boardroom
## 10891 WATERSHED FINANCING AMENDMENTS AND SYNDICATION - CLOSING
## 10892 Re: OMLX - Re: Revised ENRON CLICK Licence
## 10893 Re: e-mail to conference attendees
## 10894 e-mail to conference attendees
## 10895 e-mail to conference attendees
## 10896 e-mail to conference attendees
## 10897 Re: Compliance Certificate
## 10898 On-line Bandwidth Derivatives
## 10899 Re: Vacation
## 10900 Re: Vacation
## 10901 Re: Vacation
## 10902 Re: ECT Legal Risk Presentation
## 10903 NYMEX Positions
## 10904 Conflicts Clearance fir ECT/Procter & Gamble Swaption
## 10905 Conflicts Clearance fir ECT/Procter & Gamble Swaption
## 10906 Conflicts Clearance fir ECT/Procter & Gamble Swaption
## 10907 Re: Registered mail
## 10908 Re: Registered mail
## 10909 Futures Contracts currently traded:
## 10910 Monthly Audit Meeting Schedule through Year-end
## 10911 Re: Vacation Request
## 10912 Re: Project Tornado Contact List
## 10913 Re: O&M Reports
## 10914 Re: Meeting Reminder!
## 10915 Re: OMnet, etc.
## 10916 Re: OMnet, etc.
## 10917 Re: OMnet, etc.
## 10918 Friday Conference call
## 10919 Re: Derivatives provisions in Bankruptcy Reform legislation
## 10920 Message sent in error
## 10921 CFTC issues in Norway
## 10922 Re: request for primer
## 10923 Bankruptcy/Termination Policy
## 10924 Bankruptcy/Termination Policy
## 10925 Bankruptcy/Termination Policy
## 10926 Credit Watch List
## 10927 Credit Watch List
## 10928 Re: Electronic Trading Systems
## 10929 Re: Potential Long Term Gas Swaption
## 10930 Re: APX - Membership Application
## 10931 Re: Calendars
## 10932 Re: Burbank Agenda
## 10933 Undeliverable message
## 10934 Easter
## 10935 Re: Electronic Trading Systems
## 10936 Re: Electronic Trading Systems
## 10937 Re: Electronic Trading Systems
## 10938 Re: Vacation
## 10939 Re: Vacation
## 10940 Re: Vacation
## 10941 Re: Proposed two-month secondment to Houston
## 10942 Re: Proposed two-month secondment to Houston
## 10943 Re: Proposed two-month secondment to Houston
## 10944 Re: Proposed two-month secondment to Houston
## 10945 Re: Proposed two-month secondment to Houston
## 10946 Re: Proposed two-month secondment to Houston
## 10947 Re: Proposed two-month secondment to Houston
## 10948 Brazilian Power Trading Contratcts
## 10949 Brazilian Power Trading Contratcts
## 10950 Canadian Credit Watch
## 10951 Re: Tana s trip to London
## 10952 Tana s trip to London
## 10953 Re: Job Posting
## 10954 Draft Template
## 10955
## 10956 Re: Legal Pictorial
## 10957 German Power Derivatives article
## 10958 Re: New European Power Index - CEPI
## 10959 Re: WMI Agreement
## 10960 Re: International Trading Committee Meeting
## 10961 Re: law clerk interviews
## 10962 Re: Arrival in Buenos Aires
## 10963 Tie Line
## 10964 Arrival in Buenos Aires
## 10965 Weather Derivatives: European Legal Due Diligence
## 10966 Re: International Trading Committee Meeting
## 10967 Re: International Trading Committee Meeting
## 10968 Re: International Trading Committee Meeting
## 10969 United Airlines International E-Fares
## 10970 Re: Re secondment
## 10971 Re: Re secondment
## 10972 Re: Re secondment
## 10973 Re: Re secondment
## 10974 Re: Re secondment
## 10975 Follow up: C. Fishkin s Proposal and my Comments of 2/19/99
## 10976 Re: Weather
## 10977 translation
## 10978 translation
## 10979 translation
## 10980 Omnibus Agreement
## 10981 Re: Naphtha Hedge
## 10982 Re: Naphtha Hedge
## 10983 Reply to e-mail
## 10984 Re: DPC Naphtha Hedge
## 10985 Re: DPC Naphtha Hedge
## 10986 Re: DPC Naphtha Hedge
## 10987 Robert Quick
## 10988 Robert Quick
## 10989 Re: CLE Certification for Enron Law Conference
## 10990 Forwards vs. Futures
## 10991 Re: RE secondment
## 10992 Re: BA Project Report
## 10993 Re: Naphtha Hedge
## 10994 Party
## 10995 Weather Derivatives
## 10996 Weather Derivatives
## 10997 Weather Derivatives
## 10998 Re: Naphtha Hedge
## 10999 Re: Brent Hendry
## 11000 Re: Brent Hendry
## 11001 Re: Brent Hendry
## 11002 Maritime Novels
## 11003 Re: Brent Hendry
## 11004 Re: Vacation
## 11005 Re: Vacation
## 11006 Re: Vacation
## 11007 Re: Vacation
## 11008 Re: Vacation
## 11009 Re: Meeting
## 11010 Revised Authorization Memo
## 11011 Proposed London Equity Trading Desk
## 11012 Trading German and Spanish listed equities from Houston - second e-mail
## 11013 Re: DATABASE ICON FOR MARK TAYLOR
## 11014 Re: Andrea s Trip
## 11015 Re: Canadian ISDA Matters - Cash Collateralization
## 11016 Re: Bonus
## 11017 Option Investor Newsletter - IMPORTANT WARNING !!
## 11018 Option Investor Newsletter - IMPORTANT WARNING !!
## 11019 Thursday Option Investor Newsletter 2 of 2
## 11020 Thursday Option Investor Newsletter 2 of 2
## 11021 Thursday Option Investor Newsletter 1 of 2
## 11022 Thursday Option Investor Newsletter 1 of 2
## 11023 Re: DAPSA
## 11024 Congrats!
## 11025 Re: Umbrella agreements between EI and ECT
## 11026 Re: CFTC Chair -- possible nominee
## 11027 Tuesday Option Investor Newsletter 2 of 2
## 11028 Tuesday Option Investor Newsletter 2 of 2
## 11029 Tuesday Option Investor Newsletter 1 of 2
## 11030 Tuesday Option Investor Newsletter 1 of 2
## 11031 Re: Umbrella agreements between EI and ECT
## 11032 Sunday - Option Investor Newsletter 6 of 6 (C.Calls/NkdPuts)
## 11033 Sunday - Option Investor Newsletter 6 of 6 (C.Calls/NkdPuts)
## 11034 Sunday - Option Investor Newsletter 5 of 6 (Puts/Combos)
## 11035 Sunday - Option Investor Newsletter 5 of 6 (Puts/Combos)
## 11036 Sunday - Option Investor Newsletter 4 of 6 (calls/puts)
## 11037 Sunday - Option Investor Newsletter 4 of 6 (calls/puts)
## 11038 Sunday - Option Investor Newsletter 3 of 6 (calls)
## 11039 Sunday - Option Investor Newsletter 3 of 6 (calls)
## 11040 Sunday - Option Investor Newsletter 2 of 6 (calls)
## 11041 Sunday - Option Investor Newsletter 2 of 6 (calls)
## 11042 Sunday - Option Investor Newsletter 1 of 6
## 11043 Sunday - Option Investor Newsletter 1 of 6
## 11044 Thursday - Option Investor Newsletter 2 of 2
## 11045 Thursday - Option Investor Newsletter 2 of 2
## 11046 Re: Position Description
## 11047 Re: West Africa Project
## 11048 Tuesday - Option Investor Newsletter 3 of 3
## 11049 Tuesday - Option Investor Newsletter 3 of 3
## 11050 Tuesday - Option Investor Newsletter 1 of 3
## 11051 Tuesday - Option Investor Newsletter 1 of 3
## 11052 1999 Goals
## 11053 1999 Goals
## 11054 1999 Goals
## 11055 1999 Goals
## 11056 1999 Goals
## 11057 1999 Goals
## 11058 1999 Goals
## 11059 1999 Goals
## 11060 1999 Goals
## 11061 Re: UK Courts vs. Arbitration for UK Swap Agreements
## 11062 Treaty
## 11063 Sunday - Option Investor Newsletter 3 of 7 (calls)
## 11064 Sunday - Option Investor Newsletter 3 of 7 (calls)
## 11065 Financial Trading Documentation
## 11066 Financial Trading Documentation
## 11067 Financial Trading Documentation
## 11068 Sailing
## 11069 Re: MEH Itinerary
## 11070 Re: MEH Itinerary
## 11071 Re: MEH Itinerary
## 11072 Thursday - Option Investor Newsletter 2 of 2
## 11073 Thursday - Option Investor Newsletter 2 of 2
## 11074 Paul Waine s Visit 20 & 21 January
## 11075 Wednesday - Option Investor Newsletter - Update
## 11076 Optiion Investor Newsletter - Trading Alert
## 11077 Re: Paralegal Position
## 11078 Paralegal Position
## 11079 Paralegal Position
## 11080 Paralegal Position
## 11081 Paralegal Position
## 11082 Paralegal Position
## 11083 Paralegal Position
## 11084 Paralegal Position
## 11085 Paralegal Position
## 11086 Paralegal Position
## 11087 Paralegal Position
## 11088 Paralegal Position
## 11089 Paralegal Position
## 11090 Paralegal Position
## 11091 Paralegal Position
## 11092 Paralegal Position
## 11093 Paralegal Position
## 11094 Paralegal Position
## 11095 Paralegal Position
## 11096 Paralegal Position
## 11097 Paralegal Position
## 11098 Paralegal Position
## 11099 Paralegal Position
## 11100 Paralegal Position
## 11101 Paralegal Position
## 11102 Paralegal Position
## 11103 Paralegal Position
## 11104 Paralegal Position
## 11105 Paralegal Position
## 11106 Paralegal Position
## 11107 Paralegal Position
## 11108 Paralegal Position
## 11109 Paralegal Position
## 11110 Paralegal Position
## 11111 Paralegal Position
## sender_status recipient_status
## 1 <NA> Director
## 2 <NA> Director
## 3 <NA> Employee
## 4 <NA> Employee
## 5 <NA> Director
## 6 <NA> Trader
## 7 <NA> Director
## 8 <NA> Director
## 9 <NA> Employee
## 10 <NA> Director
## 11 <NA> Employee
## 12 <NA> Director
## 13 <NA> Vice President
## 14 <NA> Vice President
## 15 <NA> Director
## 16 <NA> Director
## 17 <NA> Director
## 18 <NA> Director
## 19 <NA> Trader
## 20 <NA> Employee
## 21 <NA> Manager
## 22 <NA> Director
## 23 <NA> Employee
## 24 <NA> Vice President
## 25 <NA> Vice President
## 26 <NA> Vice President
## 27 <NA> Vice President
## 28 <NA> Director
## 29 <NA> Employee
## 30 <NA> Director
## 31 <NA> Employee
## 32 <NA> Trader
## 33 <NA> Trader
## 34 <NA> Director
## 35 <NA> Director
## 36 <NA> Managing Director
## 37 <NA> Director
## 38 <NA> Director
## 39 <NA> Director
## 40 <NA> Director
## 41 <NA> Director
## 42 <NA> Trader
## 43 <NA> Director
## 44 <NA> Director
## 45 <NA> Director
## 46 <NA> Director
## 47 <NA> Director
## 48 <NA> Director
## 49 <NA> Employee
## 50 <NA> Trader
## 51 <NA> Trader
## 52 <NA> Director
## 53 <NA> Director
## 54 <NA> Managing Director
## 55 Manager <NA>
## 56 Manager <NA>
## 57 Manager <NA>
## 58 Manager <NA>
## 59 Manager Director
## 60 <NA> Director
## 61 <NA> Employee
## 62 <NA> Trader
## 63 <NA> Trader
## 64 <NA> Director
## 65 <NA> Director
## 66 <NA> Managing Director
## 67 <NA> Director
## 68 <NA> Director
## 69 <NA> Employee
## 70 <NA> Trader
## 71 <NA> Trader
## 72 <NA> Director
## 73 <NA> Director
## 74 <NA> Managing Director
## 75 <NA> Director
## 76 <NA> Director
## 77 <NA> Director
## 78 <NA> Employee
## 79 <NA> Trader
## 80 <NA> Trader
## 81 <NA> Director
## 82 <NA> Director
## 83 <NA> Managing Director
## 84 <NA> Director
## 85 <NA> Director
## 86 <NA> Manager
## 87 <NA> Director
## 88 <NA> Director
## 89 <NA> Manager
## 90 <NA> President
## 91 <NA> Vice President
## 92 <NA> President
## 93 <NA> Vice President
## 94 <NA> Director
## 95 <NA> Director
## 96 <NA> Trader
## 97 <NA> Director
## 98 <NA> Director
## 99 <NA> Director
## 100 <NA> Trader
## 101 <NA> Director
## 102 <NA> Trader
## 103 <NA> Director
## 104 <NA> Director
## 105 <NA> Trader
## 106 <NA> Manager
## 107 <NA> Vice President
## 108 <NA> Employee
## 109 <NA> Trader
## 110 <NA> Employee
## 111 <NA> Director
## 112 <NA> Trader
## 113 <NA> Employee
## 114 <NA> Director
## 115 <NA> Manager
## 116 <NA> Director
## 117 <NA> Vice President
## 118 <NA> Employee
## 119 <NA> Director
## 120 <NA> Employee
## 121 <NA> Trader
## 122 <NA> Trader
## 123 <NA> Director
## 124 <NA> Director
## 125 <NA> Managing Director
## 126 <NA> Manager
## 127 <NA> Director
## 128 <NA> Trader
## 129 <NA> Director
## 130 <NA> Director
## 131 <NA> Manager
## 132 <NA> Director
## 133 <NA> Manager
## 134 <NA> Trader
## 135 <NA> Director
## 136 <NA> Director
## 137 <NA> Director
## 138 <NA> Trader
## 139 <NA> Vice President
## 140 <NA> Vice President
## 141 <NA> Vice President
## 142 <NA> Vice President
## 143 <NA> Manager
## 144 <NA> Director
## 145 <NA> Trader
## 146 <NA> Director
## 147 <NA> Employee
## 148 <NA> Trader
## 149 <NA> Trader
## 150 <NA> Director
## 151 <NA> Director
## 152 <NA> Managing Director
## 153 <NA> Director
## 154 <NA> Employee
## 155 <NA> Trader
## 156 <NA> Trader
## 157 <NA> Director
## 158 <NA> Director
## 159 <NA> Managing Director
## 160 <NA> Employee
## 161 <NA> Manager
## 162 <NA> Employee
## 163 <NA> Employee
## 164 <NA> Director
## 165 <NA> Vice President
## 166 <NA> Director
## 167 <NA> President
## 168 <NA> Vice President
## 169 <NA> Vice President
## 170 <NA> Manager
## 171 <NA> Trader
## 172 <NA> Manager
## 173 <NA> Director
## 174 <NA> President
## 175 <NA> Vice President
## 176 <NA> Employee
## 177 <NA> Vice President
## 178 <NA> Director
## 179 <NA> Trader
## 180 <NA> Director
## 181 <NA> Manager
## 182 <NA> Manager
## 183 <NA> Manager
## 184 <NA> Employee
## 185 <NA> Director
## 186 <NA> Director
## 187 <NA> Trader
## 188 <NA> Manager
## 189 <NA> Employee
## 190 <NA> Director
## 191 <NA> Director
## 192 <NA> Director
## 193 <NA> Director
## 194 <NA> Employee
## 195 <NA> Trader
## 196 <NA> Vice President
## 197 <NA> Vice President
## 198 <NA> Vice President
## 199 <NA> Manager
## 200 <NA> Employee
## 201 <NA> Manager
## 202 <NA> Vice President
## 203 <NA> Employee
## 204 <NA> Vice President
## 205 <NA> Vice President
## 206 <NA> President
## 207 <NA> Vice President
## 208 <NA> President
## 209 <NA> Director
## 210 <NA> Employee
## 211 <NA> Trader
## 212 <NA> Trader
## 213 <NA> Director
## 214 <NA> Director
## 215 <NA> Managing Director
## 216 <NA> Director
## 217 <NA> Employee
## 218 <NA> Trader
## 219 <NA> Trader
## 220 <NA> Director
## 221 <NA> Director
## 222 <NA> Managing Director
## 223 <NA> Director
## 224 <NA> Employee
## 225 <NA> Trader
## 226 <NA> Trader
## 227 <NA> Director
## 228 <NA> Director
## 229 <NA> Managing Director
## 230 <NA> Director
## 231 <NA> Employee
## 232 <NA> Trader
## 233 <NA> Trader
## 234 <NA> Director
## 235 <NA> Director
## 236 <NA> Managing Director
## 237 <NA> Director
## 238 <NA> Employee
## 239 <NA> Trader
## 240 <NA> Trader
## 241 <NA> Director
## 242 <NA> Director
## 243 <NA> Managing Director
## 244 <NA> Director
## 245 <NA> Employee
## 246 <NA> Trader
## 247 <NA> Trader
## 248 <NA> Director
## 249 <NA> Director
## 250 <NA> Managing Director
## 251 <NA> Director
## 252 <NA> Managing Director
## 253 <NA> Managing Director
## 254 Employee Vice President
## 255 Employee <NA>
## 256 Employee <NA>
## 257 Employee <NA>
## 258 Employee <NA>
## 259 Employee <NA>
## 260 Employee <NA>
## 261 Employee <NA>
## 262 Employee <NA>
## 263 Employee Vice President
## 264 Employee <NA>
## 265 Employee <NA>
## 266 <NA> Director
## 267 <NA> Director
## 268 <NA> Director
## 269 <NA> Director
## 270 <NA> Manager
## 271 <NA> Employee
## 272 <NA> Vice President
## 273 <NA> Vice President
## 274 <NA> Vice President
## 275 <NA> Vice President
## 276 <NA> Vice President
## 277 <NA> Director
## 278 <NA> Director
## 279 <NA> Vice President
## 280 <NA> Employee
## 281 <NA> Vice President
## 282 <NA> Employee
## 283 <NA> Director
## 284 <NA> Director
## 285 <NA> Director
## 286 Employee <NA>
## 287 Employee <NA>
## 288 Employee <NA>
## 289 Employee Vice President
## 290 Employee Vice President
## 291 Employee <NA>
## 292 Employee <NA>
## 293 Employee <NA>
## 294 Employee <NA>
## 295 Employee <NA>
## 296 Employee <NA>
## 297 Employee <NA>
## 298 Employee <NA>
## 299 Employee Vice President
## 300 <NA> Director
## 301 <NA> Employee
## 302 <NA> Vice President
## 303 Employee Vice President
## 304 Employee Vice President
## 305 Employee <NA>
## 306 Employee <NA>
## 307 Employee <NA>
## 308 Employee <NA>
## 309 Employee <NA>
## 310 Employee <NA>
## 311 Employee <NA>
## 312 Employee <NA>
## 313 Employee <NA>
## 314 <NA> Vice President
## 315 <NA> Vice President
## 316 <NA> Employee
## 317 <NA> Vice President
## 318 Employee Vice President
## 319 Employee <NA>
## 320 Employee <NA>
## 321 Employee <NA>
## 322 Employee <NA>
## 323 Employee Vice President
## 324 Employee <NA>
## 325 Employee <NA>
## 326 Employee <NA>
## 327 Employee <NA>
## 328 Employee <NA>
## 329 Employee <NA>
## 330 Employee <NA>
## 331 Employee <NA>
## 332 Employee <NA>
## 333 Employee <NA>
## 334 Employee <NA>
## 335 Employee <NA>
## 336 Director <NA>
## 337 <NA> Director
## 338 Director <NA>
## 339 Director <NA>
## 340 Director Manager
## 341 Director Manager
## 342 Director <NA>
## 343 <NA> Vice President
## 344 <NA> Director
## 345 <NA> Director
## 346 <NA> Director
## 347 <NA> Director
## 348 <NA> Director
## 349 <NA> Director
## 350 <NA> Director
## 351 <NA> Director
## 352 <NA> Director
## 353 <NA> Director
## 354 <NA> Director
## 355 <NA> Director
## 356 <NA> Employee
## 357 <NA> Director
## 358 <NA> Employee
## 359 <NA> Director
## 360 <NA> Employee
## 361 <NA> Director
## 362 <NA> Employee
## 363 <NA> Director
## 364 <NA> Employee
## 365 <NA> Director
## 366 <NA> Employee
## 367 <NA> Director
## 368 <NA> Director
## 369 <NA> Director
## 370 <NA> Employee
## 371 <NA> Director
## 372 <NA> Director
## 373 Director <NA>
## 374 Director <NA>
## 375 Director <NA>
## 376 Director <NA>
## 377 Director <NA>
## 378 Director <NA>
## 379 <NA> Director
## 380 <NA> Director
## 381 <NA> Director
## 382 <NA> Director
## 383 <NA> Director
## 384 <NA> Director
## 385 Director <NA>
## 386 Director <NA>
## 387 Director <NA>
## 388 Director <NA>
## 389 Director <NA>
## 390 Director <NA>
## 391 Director <NA>
## 392 <NA> Director
## 393 <NA> Director
## 394 <NA> Director
## 395 <NA> Director
## 396 <NA> Director
## 397 <NA> Director
## 398 <NA> Director
## 399 <NA> Vice President
## 400 <NA> Director
## 401 <NA> Director
## 402 <NA> Director
## 403 <NA> Employee
## 404 <NA> Director
## 405 <NA> Director
## 406 Director <NA>
## 407 <NA> Director
## 408 <NA> Director
## 409 <NA> Director
## 410 <NA> Director
## 411 <NA> Director
## 412 <NA> Director
## 413 <NA> Director
## 414 Director <NA>
## 415 Director <NA>
## 416 Director <NA>
## 417 <NA> Director
## 418 <NA> Director
## 419 <NA> Director
## 420 <NA> Director
## 421 Director <NA>
## 422 Director Vice President
## 423 Director <NA>
## 424 Director <NA>
## 425 Director <NA>
## 426 Director <NA>
## 427 <NA> Director
## 428 <NA> Director
## 429 Director <NA>
## 430 Director <NA>
## 431 Director <NA>
## 432 Director <NA>
## 433 <NA> Director
## 434 Director <NA>
## 435 Director Vice President
## 436 Director President
## 437 Director <NA>
## 438 Director <NA>
## 439 Director <NA>
## 440 Director <NA>
## 441 Director <NA>
## 442 <NA> Director
## 443 <NA> Director
## 444 <NA> Director
## 445 <NA> Director
## 446 <NA> Director
## 447 <NA> Director
## 448 <NA> Director
## 449 <NA> Director
## 450 <NA> Director
## 451 <NA> Director
## 452 <NA> Director
## 453 <NA> Vice President
## 454 <NA> Director
## 455 <NA> Director
## 456 Director <NA>
## 457 Director <NA>
## 458 Director Vice President
## 459 Director Vice President
## 460 <NA> Director
## 461 <NA> Director
## 462 <NA> Director
## 463 <NA> Director
## 464 <NA> Director
## 465 <NA> Director
## 466 <NA> Director
## 467 <NA> Director
## 468 Director <NA>
## 469 Director <NA>
## 470 <NA> Director
## 471 Director <NA>
## 472 Director <NA>
## 473 <NA> Director
## 474 Director <NA>
## 475 Director <NA>
## 476 Director <NA>
## 477 Director <NA>
## 478 <NA> Director
## 479 <NA> Director
## 480 Director <NA>
## 481 Director Employee
## 482 Director <NA>
## 483 Director Employee
## 484 <NA> Director
## 485 <NA> Director
## 486 <NA> Director
## 487 <NA> Director
## 488 <NA> Director
## 489 <NA> Director
## 490 <NA> Director
## 491 <NA> Director
## 492 <NA> Director
## 493 Employee <NA>
## 494 Employee <NA>
## 495 Employee <NA>
## 496 Employee <NA>
## 497 Employee Director
## 498 Employee <NA>
## 499 Employee <NA>
## 500 Employee <NA>
## 501 Employee <NA>
## 502 Employee <NA>
## 503 Employee <NA>
## 504 Employee Director
## 505 Employee <NA>
## 506 Employee <NA>
## 507 Employee <NA>
## 508 <NA> Director
## 509 Employee <NA>
## 510 Employee <NA>
## 511 Employee <NA>
## 512 Employee Employee
## 513 Employee Director
## 514 Employee <NA>
## 515 Employee <NA>
## 516 Employee <NA>
## 517 Employee <NA>
## 518 Employee <NA>
## 519 Employee <NA>
## 520 Employee Employee
## 521 Employee Director
## 522 Employee <NA>
## 523 Employee <NA>
## 524 Employee <NA>
## 525 Employee <NA>
## 526 <NA> Director
## 527 <NA> Director
## 528 <NA> Director
## 529 <NA> Director
## 530 <NA> Director
## 531 <NA> Director
## 532 <NA> Employee
## 533 <NA> Director
## 534 <NA> Employee
## 535 <NA> Director
## 536 <NA> Vice President
## 537 <NA> Vice President
## 538 <NA> Vice President
## 539 <NA> Vice President
## 540 <NA> Director
## 541 <NA> Director
## 542 <NA> Director
## 543 <NA> Employee
## 544 <NA> Director
## 545 <NA> Director
## 546 <NA> Director
## 547 <NA> Director
## 548 <NA> Employee
## 549 <NA> Director
## 550 <NA> Director
## 551 <NA> Employee
## 552 <NA> Director
## 553 <NA> Director
## 554 <NA> Director
## 555 <NA> Director
## 556 <NA> Director
## 557 <NA> Director
## 558 <NA> Director
## 559 <NA> Director
## 560 <NA> Manager
## 561 <NA> Director
## 562 <NA> Manager
## 563 <NA> Manager
## 564 <NA> Director
## 565 <NA> Director
## 566 <NA> Director
## 567 <NA> Director
## 568 <NA> Director
## 569 <NA> Director
## 570 <NA> President
## 571 <NA> Vice President
## 572 <NA> Vice President
## 573 <NA> Director
## 574 <NA> Vice President
## 575 <NA> Vice President
## 576 <NA> Director
## 577 <NA> Manager
## 578 <NA> Vice President
## 579 <NA> Vice President
## 580 <NA> Director
## 581 <NA> Manager
## 582 <NA> Vice President
## 583 <NA> Vice President
## 584 <NA> Vice President
## 585 <NA> Director
## 586 <NA> Director
## 587 Director <NA>
## 588 <NA> Director
## 589 <NA> Manager
## 590 <NA> Vice President
## 591 <NA> Vice President
## 592 <NA> Employee
## 593 <NA> Director
## 594 <NA> Director
## 595 <NA> Director
## 596 <NA> Director
## 597 <NA> Vice President
## 598 <NA> Director
## 599 <NA> Vice President
## 600 <NA> Director
## 601 <NA> Director
## 602 <NA> Director
## 603 <NA> Director
## 604 <NA> Director
## 605 <NA> Director
## 606 <NA> Director
## 607 <NA> Director
## 608 <NA> Director
## 609 Director <NA>
## 610 Director <NA>
## 611 <NA> Director
## 612 <NA> Director
## 613 <NA> Employee
## 614 <NA> Employee
## 615 <NA> Director
## 616 <NA> Employee
## 617 <NA> Employee
## 618 <NA> Director
## 619 <NA> Director
## 620 <NA> Employee
## 621 <NA> Employee
## 622 <NA> Director
## 623 <NA> Employee
## 624 <NA> Employee
## 625 Employee Director
## 626 Employee <NA>
## 627 Employee <NA>
## 628 Employee Director
## 629 <NA> Director
## 630 <NA> Employee
## 631 <NA> Director
## 632 <NA> Director
## 633 <NA> Director
## 634 <NA> Director
## 635 <NA> Director
## 636 <NA> Vice President
## 637 <NA> Employee
## 638 <NA> Employee
## 639 <NA> Director
## 640 <NA> Director
## 641 <NA> Director
## 642 <NA> Director
## 643 <NA> Vice President
## 644 <NA> Director
## 645 <NA> Director
## 646 <NA> Director
## 647 <NA> Director
## 648 <NA> Director
## 649 <NA> Director
## 650 <NA> Director
## 651 <NA> Director
## 652 <NA> Director
## 653 <NA> Director
## 654 <NA> Director
## 655 <NA> Director
## 656 <NA> Director
## 657 <NA> Director
## 658 <NA> Director
## 659 <NA> Director
## 660 <NA> Director
## 661 <NA> Director
## 662 <NA> Director
## 663 <NA> Director
## 664 <NA> Director
## 665 <NA> Director
## 666 <NA> Director
## 667 <NA> Director
## 668 <NA> Director
## 669 <NA> Director
## 670 Director <NA>
## 671 Director <NA>
## 672 Director <NA>
## 673 Director <NA>
## 674 Director <NA>
## 675 Director <NA>
## 676 <NA> Director
## 677 <NA> Director
## 678 <NA> Director
## 679 <NA> Director
## 680 <NA> Director
## 681 <NA> Director
## 682 <NA> Director
## 683 <NA> Director
## 684 <NA> Director
## 685 <NA> Director
## 686 <NA> Director
## 687 <NA> Director
## 688 <NA> Director
## 689 <NA> Director
## 690 <NA> Director
## 691 <NA> Vice President
## 692 <NA> Vice President
## 693 <NA> Vice President
## 694 <NA> Vice President
## 695 Employee Director
## 696 Employee <NA>
## 697 Employee <NA>
## 698 Employee <NA>
## 699 Employee Director
## 700 Employee Vice President
## 701 Employee <NA>
## 702 Employee <NA>
## 703 Employee <NA>
## 704 Employee <NA>
## 705 Employee <NA>
## 706 Employee <NA>
## 707 Employee Director
## 708 Employee Vice President
## 709 Employee <NA>
## 710 Employee <NA>
## 711 Employee <NA>
## 712 Employee <NA>
## 713 <NA> Vice President
## 714 <NA> Director
## 715 <NA> Vice President
## 716 <NA> Director
## 717 <NA> Vice President
## 718 <NA> Director
## 719 <NA> Employee
## 720 <NA> Employee
## 721 <NA> Employee
## 722 <NA> Employee
## 723 <NA> Vice President
## 724 <NA> Vice President
## 725 <NA> Director
## 726 <NA> Vice President
## 727 <NA> Vice President
## 728 <NA> Director
## 729 <NA> Director
## 730 <NA> Vice President
## 731 <NA> Vice President
## 732 <NA> Vice President
## 733 <NA> Vice President
## 734 <NA> Vice President
## 735 <NA> Director
## 736 <NA> Vice President
## 737 <NA> Director
## 738 <NA> Vice President
## 739 <NA> Director
## 740 <NA> Vice President
## 741 <NA> Director
## 742 <NA> Director
## 743 <NA> Director
## 744 <NA> Director
## 745 <NA> Vice President
## 746 <NA> Director
## 747 <NA> Employee
## 748 Vice President Vice President
## 749 Vice President <NA>
## 750 Vice President <NA>
## 751 Vice President <NA>
## 752 Vice President Vice President
## 753 Vice President <NA>
## 754 Vice President <NA>
## 755 Vice President Director
## 756 Vice President <NA>
## 757 Vice President <NA>
## 758 Vice President <NA>
## 759 Vice President <NA>
## 760 Vice President Vice President
## 761 Vice President <NA>
## 762 Vice President <NA>
## 763 Vice President Director
## 764 Vice President <NA>
## 765 <NA> Director
## 766 <NA> Vice President
## 767 <NA> Director
## 768 <NA> Vice President
## 769 <NA> Director
## 770 <NA> Vice President
## 771 <NA> Director
## 772 <NA> Vice President
## 773 <NA> Vice President
## 774 <NA> Director
## 775 <NA> Vice President
## 776 <NA> Vice President
## 777 <NA> Director
## 778 <NA> Vice President
## 779 <NA> Employee
## 780 <NA> Vice President
## 781 <NA> Employee
## 782 <NA> Vice President
## 783 <NA> Vice President
## 784 <NA> Director
## 785 <NA> Vice President
## 786 <NA> Vice President
## 787 <NA> Director
## 788 <NA> Vice President
## 789 <NA> Director
## 790 <NA> Vice President
## 791 <NA> Director
## 792 <NA> Director
## 793 <NA> Vice President
## 794 <NA> Director
## 795 <NA> Vice President
## 796 <NA> Vice President
## 797 Director <NA>
## 798 Director <NA>
## 799 Director <NA>
## 800 Director <NA>
## 801 Director <NA>
## 802 Director <NA>
## 803 Director <NA>
## 804 Director <NA>
## 805 Director <NA>
## 806 Director <NA>
## 807 Director <NA>
## 808 Director <NA>
## 809 Director <NA>
## 810 Director <NA>
## 811 Director <NA>
## 812 Director <NA>
## 813 Director <NA>
## 814 Director <NA>
## 815 Director <NA>
## 816 Director <NA>
## 817 Director <NA>
## 818 Director <NA>
## 819 Director <NA>
## 820 Director <NA>
## 821 Director <NA>
## 822 Director <NA>
## 823 Director <NA>
## 824 Director <NA>
## 825 Director <NA>
## 826 Director <NA>
## 827 Director <NA>
## 828 Director <NA>
## 829 Director <NA>
## 830 Director <NA>
## 831 Director <NA>
## 832 Director <NA>
## 833 Director <NA>
## 834 Director <NA>
## 835 Director <NA>
## 836 Director <NA>
## 837 Director <NA>
## 838 Director <NA>
## 839 Director <NA>
## 840 Director <NA>
## 841 Director <NA>
## 842 Director <NA>
## 843 Director <NA>
## 844 Director <NA>
## 845 Director <NA>
## 846 Director <NA>
## 847 Director <NA>
## 848 Director <NA>
## 849 Director <NA>
## 850 Director <NA>
## 851 Director <NA>
## 852 Director <NA>
## 853 Director <NA>
## 854 Director <NA>
## 855 Director <NA>
## 856 Director <NA>
## 857 Director <NA>
## 858 Director <NA>
## 859 Director <NA>
## 860 Director <NA>
## 861 Director <NA>
## 862 Director <NA>
## 863 Director <NA>
## 864 Director <NA>
## 865 <NA> Director
## 866 <NA> Director
## 867 <NA> Director
## 868 <NA> Director
## 869 <NA> Director
## 870 <NA> Director
## 871 <NA> Director
## 872 <NA> Director
## 873 <NA> Director
## 874 <NA> Manager
## 875 <NA> Director
## 876 <NA> Employee
## 877 <NA> Director
## 878 <NA> Director
## 879 <NA> Manager
## 880 <NA> Director
## 881 Vice President Director
## 882 <NA> Director
## 883 <NA> Director
## 884 <NA> Director
## 885 <NA> Director
## 886 <NA> Director
## 887 <NA> Director
## 888 <NA> Director
## 889 <NA> Director
## 890 <NA> Director
## 891 <NA> Employee
## 892 <NA> Employee
## 893 Director <NA>
## 894 Director <NA>
## 895 Director <NA>
## 896 Director <NA>
## 897 Director <NA>
## 898 Director <NA>
## 899 Director <NA>
## 900 Director <NA>
## 901 Director Employee
## 902 Director Employee
## 903 Director <NA>
## 904 Director Vice President
## 905 Director Employee
## 906 Director Employee
## 907 Director Vice President
## 908 Director <NA>
## 909 Director <NA>
## 910 Director <NA>
## 911 Director <NA>
## 912 Director <NA>
## 913 Director <NA>
## 914 Director <NA>
## 915 Director Employee
## 916 Director <NA>
## 917 Director <NA>
## 918 Director <NA>
## 919 Director Manager
## 920 Director <NA>
## 921 Director <NA>
## 922 Director <NA>
## 923 Director <NA>
## 924 Director <NA>
## 925 Director <NA>
## 926 Director <NA>
## 927 Director <NA>
## 928 Director <NA>
## 929 Director <NA>
## 930 Director Vice President
## 931 Director Employee
## 932 Director <NA>
## 933 Director <NA>
## 934 Director <NA>
## 935 Director <NA>
## 936 Director <NA>
## 937 Director <NA>
## 938 Director <NA>
## 939 Director <NA>
## 940 Director <NA>
## 941 Director <NA>
## 942 Director Vice President
## 943 Director Employee
## 944 Director <NA>
## 945 Director <NA>
## 946 Director <NA>
## 947 Director <NA>
## 948 Director Employee
## 949 Director Employee
## 950 Director <NA>
## 951 Director <NA>
## 952 Director <NA>
## 953 Director <NA>
## 954 Director <NA>
## 955 Director <NA>
## 956 Director <NA>
## 957 Director <NA>
## 958 Director <NA>
## 959 Director <NA>
## 960 Director <NA>
## 961 Director <NA>
## 962 Director <NA>
## 963 Director <NA>
## 964 Director <NA>
## 965 Director Employee
## 966 Director <NA>
## 967 Director <NA>
## 968 Director <NA>
## 969 Director Manager
## 970 Director <NA>
## 971 Director <NA>
## 972 Director <NA>
## 973 Director <NA>
## 974 Director <NA>
## 975 Director <NA>
## 976 Director <NA>
## 977 Director <NA>
## 978 Director <NA>
## 979 Director <NA>
## 980 Director <NA>
## 981 Director <NA>
## 982 Director <NA>
## 983 Director <NA>
## 984 Director <NA>
## 985 Director <NA>
## 986 Director <NA>
## 987 Director <NA>
## 988 Director <NA>
## 989 Director Employee
## 990 Director <NA>
## 991 Director <NA>
## 992 Director <NA>
## 993 Director <NA>
## 994 Director <NA>
## 995 Director Employee
## 996 Director <NA>
## 997 Director <NA>
## 998 Director <NA>
## 999 Director <NA>
## 1000 Director <NA>
## 1001 Director <NA>
## 1002 Director <NA>
## 1003 Director <NA>
## 1004 Director Employee
## 1005 Director <NA>
## 1006 Director <NA>
## 1007 Director <NA>
## 1008 Director <NA>
## 1009 Director <NA>
## 1010 Director Employee
## 1011 Director <NA>
## 1012 Director <NA>
## 1013 Director <NA>
## 1014 Director <NA>
## 1015 Director <NA>
## 1016 Director <NA>
## 1017 Director <NA>
## 1018 Director <NA>
## 1019 Director <NA>
## 1020 Director <NA>
## 1021 Director <NA>
## 1022 Director <NA>
## 1023 Director <NA>
## 1024 Director <NA>
## 1025 Director <NA>
## 1026 Director <NA>
## 1027 Director <NA>
## 1028 Director <NA>
## 1029 Director <NA>
## 1030 Director <NA>
## 1031 Director <NA>
## 1032 Director <NA>
## 1033 Director <NA>
## 1034 Director <NA>
## 1035 Director <NA>
## 1036 Director <NA>
## 1037 Director <NA>
## 1038 Director <NA>
## 1039 Director <NA>
## 1040 Director <NA>
## 1041 Director <NA>
## 1042 Director <NA>
## 1043 Director <NA>
## 1044 Director <NA>
## 1045 Director <NA>
## 1046 Director <NA>
## 1047 Director <NA>
## 1048 Director <NA>
## 1049 Director <NA>
## 1050 Director <NA>
## 1051 Director Vice President
## 1052 Director <NA>
## 1053 Director <NA>
## 1054 Director Employee
## 1055 Director Employee
## 1056 Director <NA>
## 1057 Director <NA>
## 1058 Director <NA>
## 1059 Director CEO
## 1060 Director <NA>
## 1061 Director Employee
## 1062 Director Employee
## 1063 Director <NA>
## 1064 Director <NA>
## 1065 Director <NA>
## 1066 Director <NA>
## 1067 Director <NA>
## 1068 Director <NA>
## 1069 Director Employee
## 1070 Director Employee
## 1071 Director <NA>
## 1072 Director <NA>
## 1073 Director <NA>
## 1074 Director <NA>
## 1075 Director <NA>
## 1076 Director <NA>
## 1077 Director Manager
## 1078 Director <NA>
## 1079 Director <NA>
## 1080 Director Vice President
## 1081 Director <NA>
## 1082 Director <NA>
## 1083 Director <NA>
## 1084 Director <NA>
## 1085 Director <NA>
## 1086 Director <NA>
## 1087 Director <NA>
## 1088 Director <NA>
## 1089 Director <NA>
## 1090 Director <NA>
## 1091 Director <NA>
## 1092 Director <NA>
## 1093 Director <NA>
## 1094 Director <NA>
## 1095 Director <NA>
## 1096 Director <NA>
## 1097 Director Employee
## 1098 Director <NA>
## 1099 Director <NA>
## 1100 Director Employee
## 1101 Director <NA>
## 1102 Director <NA>
## 1103 Director <NA>
## 1104 Director Trader
## 1105 Director <NA>
## 1106 Director <NA>
## 1107 Director <NA>
## 1108 Director <NA>
## 1109 Director <NA>
## 1110 Director <NA>
## 1111 Director <NA>
## 1112 Director <NA>
## 1113 Director <NA>
## 1114 Director <NA>
## 1115 Director <NA>
## 1116 Director Vice President
## 1117 Director <NA>
## 1118 Director Vice President
## 1119 Director <NA>
## 1120 Director Vice President
## 1121 Director <NA>
## 1122 Director <NA>
## 1123 Director <NA>
## 1124 Director <NA>
## 1125 Director <NA>
## 1126 Director <NA>
## 1127 Director <NA>
## 1128 Director <NA>
## 1129 Director <NA>
## 1130 Director <NA>
## 1131 Director <NA>
## 1132 Director <NA>
## 1133 Director <NA>
## 1134 Director <NA>
## 1135 Director <NA>
## 1136 Director <NA>
## 1137 Director <NA>
## 1138 Director <NA>
## 1139 Director Employee
## 1140 Director <NA>
## 1141 Director <NA>
## 1142 Director Employee
## 1143 Director <NA>
## 1144 Director <NA>
## 1145 Director <NA>
## 1146 Director Trader
## 1147 Director <NA>
## 1148 Director <NA>
## 1149 Director <NA>
## 1150 Director <NA>
## 1151 Director <NA>
## 1152 Director <NA>
## 1153 Director <NA>
## 1154 Director <NA>
## 1155 Director <NA>
## 1156 Director <NA>
## 1157 Director <NA>
## 1158 Director <NA>
## 1159 Director <NA>
## 1160 Director <NA>
## 1161 Director <NA>
## 1162 Director <NA>
## 1163 Director <NA>
## 1164 Director <NA>
## 1165 Director <NA>
## 1166 Director <NA>
## 1167 Director <NA>
## 1168 Director <NA>
## 1169 Director <NA>
## 1170 Director <NA>
## 1171 Director <NA>
## 1172 Director <NA>
## 1173 Director <NA>
## 1174 Director <NA>
## 1175 Director <NA>
## 1176 Director <NA>
## 1177 Director <NA>
## 1178 Director <NA>
## 1179 Director <NA>
## 1180 Director <NA>
## 1181 Director <NA>
## 1182 Director <NA>
## 1183 Director <NA>
## 1184 Director <NA>
## 1185 Director <NA>
## 1186 Director <NA>
## 1187 Director <NA>
## 1188 Director <NA>
## 1189 Director <NA>
## 1190 Director <NA>
## 1191 Director <NA>
## 1192 Director <NA>
## 1193 Director <NA>
## 1194 Director <NA>
## 1195 Director <NA>
## 1196 Director <NA>
## 1197 Director <NA>
## 1198 Director <NA>
## 1199 Director <NA>
## 1200 Director <NA>
## 1201 Director <NA>
## 1202 Director Employee
## 1203 Director <NA>
## 1204 Director <NA>
## 1205 Director Manager
## 1206 Director <NA>
## 1207 Director <NA>
## 1208 Director <NA>
## 1209 Director <NA>
## 1210 Director <NA>
## 1211 Director <NA>
## 1212 Director <NA>
## 1213 Director <NA>
## 1214 Director <NA>
## 1215 Director <NA>
## 1216 Director <NA>
## 1217 Director <NA>
## 1218 Director <NA>
## 1219 Director <NA>
## 1220 Director Employee
## 1221 Director <NA>
## 1222 Director <NA>
## 1223 Director <NA>
## 1224 Director <NA>
## 1225 Director <NA>
## 1226 Director <NA>
## 1227 Director <NA>
## 1228 Director <NA>
## 1229 Director <NA>
## 1230 Director <NA>
## 1231 Director <NA>
## 1232 Director <NA>
## 1233 Director <NA>
## 1234 Director <NA>
## 1235 Director <NA>
## 1236 Director <NA>
## 1237 Director <NA>
## 1238 Director <NA>
## 1239 Director <NA>
## 1240 Director <NA>
## 1241 Director <NA>
## 1242 Director <NA>
## 1243 Director <NA>
## 1244 Director <NA>
## 1245 Director <NA>
## 1246 Director <NA>
## 1247 Director <NA>
## 1248 Director <NA>
## 1249 Director <NA>
## 1250 Director <NA>
## 1251 Director <NA>
## 1252 Director <NA>
## 1253 Director <NA>
## 1254 Director <NA>
## 1255 Director <NA>
## 1256 Director <NA>
## 1257 Director <NA>
## 1258 Director <NA>
## 1259 Director <NA>
## 1260 Director <NA>
## 1261 Director <NA>
## 1262 Director <NA>
## 1263 Director <NA>
## 1264 Director <NA>
## 1265 Director <NA>
## 1266 Director <NA>
## 1267 Director <NA>
## 1268 Director <NA>
## 1269 Director <NA>
## 1270 Director <NA>
## 1271 Director <NA>
## 1272 Director <NA>
## 1273 Director <NA>
## 1274 Director <NA>
## 1275 Director <NA>
## 1276 Director <NA>
## 1277 Director <NA>
## 1278 Director <NA>
## 1279 Director Employee
## 1280 Director <NA>
## 1281 Director <NA>
## 1282 Director Manager
## 1283 Director <NA>
## 1284 Director <NA>
## 1285 Director <NA>
## 1286 Director <NA>
## 1287 Director <NA>
## 1288 Director <NA>
## 1289 Director <NA>
## 1290 Director <NA>
## 1291 Director <NA>
## 1292 Director <NA>
## 1293 Director <NA>
## 1294 Director <NA>
## 1295 Director Vice President
## 1296 Director <NA>
## 1297 Director <NA>
## 1298 Director Employee
## 1299 Director <NA>
## 1300 Director <NA>
## 1301 Director <NA>
## 1302 Director <NA>
## 1303 Director <NA>
## 1304 Director <NA>
## 1305 Director <NA>
## 1306 Director <NA>
## 1307 Director <NA>
## 1308 Director <NA>
## 1309 Director <NA>
## 1310 Director <NA>
## 1311 Director <NA>
## 1312 Director <NA>
## 1313 Director <NA>
## 1314 Director <NA>
## 1315 Director <NA>
## 1316 Director <NA>
## 1317 Director Employee
## 1318 Director <NA>
## 1319 Director <NA>
## 1320 Director <NA>
## 1321 Director Manager
## 1322 Director <NA>
## 1323 Director <NA>
## 1324 Director <NA>
## 1325 Director <NA>
## 1326 Director <NA>
## 1327 Director <NA>
## 1328 Director <NA>
## 1329 Director <NA>
## 1330 Director <NA>
## 1331 Director <NA>
## 1332 Director <NA>
## 1333 Director Employee
## 1334 Director <NA>
## 1335 Director Director
## 1336 Director <NA>
## 1337 Director <NA>
## 1338 Director <NA>
## 1339 Director <NA>
## 1340 Director <NA>
## 1341 Director <NA>
## 1342 Director Manager
## 1343 Director <NA>
## 1344 Director <NA>
## 1345 Director <NA>
## 1346 Director <NA>
## 1347 Director <NA>
## 1348 Director <NA>
## 1349 Director Employee
## 1350 Director <NA>
## 1351 Director <NA>
## 1352 Director <NA>
## 1353 Director Manager
## 1354 Director <NA>
## 1355 Director <NA>
## 1356 Director <NA>
## 1357 Director <NA>
## 1358 Director <NA>
## 1359 Director <NA>
## 1360 Director <NA>
## 1361 Director <NA>
## 1362 Director <NA>
## 1363 Director <NA>
## 1364 Director <NA>
## 1365 Director <NA>
## 1366 Director <NA>
## 1367 Director <NA>
## 1368 <NA> Director
## 1369 <NA> Director
## 1370 <NA> Director
## 1371 <NA> Vice President
## 1372 <NA> Employee
## 1373 <NA> Employee
## 1374 <NA> Trader
## 1375 <NA> Director
## 1376 <NA> Director
## 1377 <NA> Director
## 1378 <NA> Vice President
## 1379 <NA> Employee
## 1380 <NA> Employee
## 1381 <NA> Trader
## 1382 <NA> Director
## 1383 <NA> Director
## 1384 <NA> Director
## 1385 <NA> Director
## 1386 <NA> Director
## 1387 <NA> Director
## 1388 <NA> Director
## 1389 <NA> Director
## 1390 <NA> Director
## 1391 <NA> Vice President
## 1392 <NA> Vice President
## 1393 <NA> Director
## 1394 <NA> Director
## 1395 <NA> Director
## 1396 <NA> Director
## 1397 <NA> Director
## 1398 <NA> Employee
## 1399 <NA> Vice President
## 1400 <NA> Employee
## 1401 <NA> Director
## 1402 <NA> Vice President
## 1403 <NA> Employee
## 1404 <NA> Employee
## 1405 <NA> Director
## 1406 <NA> Vice President
## 1407 <NA> Employee
## 1408 <NA> Employee
## 1409 <NA> Director
## 1410 <NA> Vice President
## 1411 <NA> Employee
## 1412 <NA> Employee
## 1413 <NA> Director
## 1414 <NA> Director
## 1415 <NA> Vice President
## 1416 <NA> Vice President
## 1417 <NA> Director
## 1418 <NA> Director
## 1419 <NA> Director
## 1420 <NA> Director
## 1421 <NA> Director
## 1422 <NA> Director
## 1423 <NA> Director
## 1424 <NA> Vice President
## 1425 <NA> Director
## 1426 <NA> Vice President
## 1427 <NA> Vice President
## 1428 <NA> Director
## 1429 <NA> Vice President
## 1430 <NA> Employee
## 1431 <NA> Director
## 1432 <NA> Employee
## 1433 <NA> Director
## 1434 <NA> Director
## 1435 <NA> Director
## 1436 <NA> Vice President
## 1437 <NA> Vice President
## 1438 <NA> Director
## 1439 <NA> Vice President
## 1440 <NA> Vice President
## 1441 <NA> Director
## 1442 Director <NA>
## 1443 Director <NA>
## 1444 Director Employee
## 1445 Director <NA>
## 1446 Director <NA>
## 1447 Director <NA>
## 1448 Director Manager
## 1449 Director <NA>
## 1450 Director <NA>
## 1451 Director <NA>
## 1452 Director <NA>
## 1453 Director <NA>
## 1454 Director <NA>
## 1455 Director <NA>
## 1456 Director <NA>
## 1457 Director <NA>
## 1458 Director <NA>
## 1459 Director <NA>
## 1460 Director <NA>
## 1461 Director <NA>
## 1462 <NA> Director
## 1463 <NA> Director
## 1464 <NA> Director
## 1465 <NA> Director
## 1466 <NA> Director
## 1467 <NA> Director
## 1468 <NA> Director
## 1469 <NA> Director
## 1470 <NA> Director
## 1471 <NA> Director
## 1472 Employee <NA>
## 1473 Employee <NA>
## 1474 Employee <NA>
## 1475 Employee <NA>
## 1476 Employee Director
## 1477 Employee <NA>
## 1478 Employee <NA>
## 1479 Employee <NA>
## 1480 Employee <NA>
## 1481 Employee <NA>
## 1482 Employee <NA>
## 1483 Employee <NA>
## 1484 Employee <NA>
## 1485 Employee Director
## 1486 Employee <NA>
## 1487 Employee <NA>
## 1488 Employee <NA>
## 1489 Employee <NA>
## 1490 Employee <NA>
## 1491 <NA> Director
## 1492 <NA> Director
## 1493 <NA> Manager
## 1494 <NA> Employee
## 1495 <NA> Director
## 1496 <NA> Director
## 1497 <NA> Director
## 1498 <NA> Director
## 1499 <NA> Director
## 1500 <NA> Director
## 1501 <NA> Director
## 1502 <NA> Director
## 1503 <NA> Director
## 1504 <NA> Director
## 1505 <NA> Director
## 1506 <NA> Director
## 1507 <NA> Director
## 1508 <NA> Employee
## 1509 <NA> Director
## 1510 <NA> Manager
## 1511 <NA> Director
## 1512 <NA> Director
## 1513 <NA> Director
## 1514 <NA> Director
## 1515 <NA> Employee
## 1516 <NA> Vice President
## 1517 <NA> Director
## 1518 <NA> Employee
## 1519 <NA> Director
## 1520 <NA> Director
## 1521 <NA> Director
## 1522 <NA> Director
## 1523 <NA> Director
## 1524 <NA> Director
## 1525 <NA> Director
## 1526 <NA> Director
## 1527 <NA> Employee
## 1528 <NA> Director
## 1529 <NA> Director
## 1530 <NA> Director
## 1531 <NA> Director
## 1532 <NA> Director
## 1533 <NA> Director
## 1534 <NA> Trader
## 1535 <NA> Employee
## 1536 <NA> Director
## 1537 <NA> Director
## 1538 Employee Director
## 1539 <NA> Director
## 1540 <NA> Employee
## 1541 <NA> Vice President
## 1542 <NA> Employee
## 1543 <NA> Trader
## 1544 <NA> Director
## 1545 <NA> Director
## 1546 <NA> Employee
## 1547 <NA> Trader
## 1548 <NA> Employee
## 1549 <NA> Vice President
## 1550 <NA> Director
## 1551 <NA> Director
## 1552 <NA> Director
## 1553 <NA> Director
## 1554 <NA> Vice President
## 1555 <NA> Employee
## 1556 <NA> Director
## 1557 <NA> Vice President
## 1558 <NA> Director
## 1559 <NA> Director
## 1560 <NA> Director
## 1561 <NA> Vice President
## 1562 <NA> Employee
## 1563 <NA> Director
## 1564 <NA> Vice President
## 1565 <NA> Director
## 1566 <NA> Director
## 1567 <NA> Director
## 1568 <NA> Director
## 1569 <NA> Director
## 1570 <NA> Director
## 1571 <NA> Director
## 1572 <NA> Director
## 1573 <NA> Director
## 1574 <NA> Director
## 1575 <NA> Director
## 1576 <NA> Director
## 1577 <NA> Director
## 1578 <NA> Director
## 1579 <NA> Employee
## 1580 <NA> Vice President
## 1581 <NA> Director
## 1582 <NA> Employee
## 1583 <NA> Trader
## 1584 <NA> Director
## 1585 <NA> Director
## 1586 <NA> Director
## 1587 <NA> Director
## 1588 <NA> Director
## 1589 <NA> Director
## 1590 <NA> Director
## 1591 <NA> Director
## 1592 <NA> Director
## 1593 <NA> Director
## 1594 <NA> Director
## 1595 <NA> Director
## 1596 Vice President Director
## 1597 Vice President <NA>
## 1598 Vice President <NA>
## 1599 Vice President Director
## 1600 <NA> Director
## 1601 <NA> Director
## 1602 <NA> Director
## 1603 <NA> Director
## 1604 <NA> Director
## 1605 <NA> Director
## 1606 <NA> Vice President
## 1607 <NA> Director
## 1608 <NA> Director
## 1609 <NA> Director
## 1610 <NA> Director
## 1611 <NA> Director
## 1612 <NA> Director
## 1613 <NA> Director
## 1614 <NA> Director
## 1615 <NA> Director
## 1616 <NA> Director
## 1617 <NA> Director
## 1618 <NA> Director
## 1619 <NA> Director
## 1620 <NA> Director
## 1621 <NA> Director
## 1622 <NA> Director
## 1623 <NA> Director
## 1624 <NA> Director
## 1625 <NA> Director
## 1626 <NA> Director
## 1627 <NA> Director
## 1628 <NA> Director
## 1629 <NA> Director
## 1630 <NA> Director
## 1631 <NA> Director
## 1632 <NA> Director
## 1633 <NA> Director
## 1634 <NA> Director
## 1635 <NA> Vice President
## 1636 <NA> Vice President
## 1637 <NA> Director
## 1638 Director <NA>
## 1639 Director <NA>
## 1640 Director <NA>
## 1641 Director <NA>
## 1642 <NA> Director
## 1643 <NA> Director
## 1644 <NA> Director
## 1645 <NA> Director
## 1646 <NA> Director
## 1647 <NA> Director
## 1648 <NA> Director
## 1649 <NA> Director
## 1650 <NA> Director
## 1651 <NA> Director
## 1652 <NA> Director
## 1653 <NA> Director
## 1654 <NA> Director
## 1655 <NA> Director
## 1656 <NA> Director
## 1657 <NA> Director
## 1658 <NA> Director
## 1659 <NA> Director
## 1660 <NA> Employee
## 1661 <NA> Vice President
## 1662 <NA> Director
## 1663 <NA> Employee
## 1664 <NA> Director
## 1665 <NA> Director
## 1666 <NA> Director
## 1667 <NA> Director
## 1668 Director <NA>
## 1669 Director <NA>
## 1670 Director <NA>
## 1671 Director <NA>
## 1672 Director <NA>
## 1673 Director <NA>
## 1674 Director <NA>
## 1675 Director <NA>
## 1676 Director <NA>
## 1677 Director <NA>
## 1678 Director <NA>
## 1679 Director <NA>
## 1680 <NA> Director
## 1681 <NA> Director
## 1682 <NA> Director
## 1683 <NA> Vice President
## 1684 <NA> Director
## 1685 <NA> Director
## 1686 <NA> Director
## 1687 <NA> Director
## 1688 <NA> Director
## 1689 <NA> Director
## 1690 <NA> Director
## 1691 Vice President <NA>
## 1692 Vice President <NA>
## 1693 Vice President Director
## 1694 Vice President <NA>
## 1695 Vice President <NA>
## 1696 <NA> Employee
## 1697 <NA> Director
## 1698 <NA> Vice President
## 1699 <NA> Director
## 1700 <NA> Director
## 1701 <NA> Director
## 1702 <NA> Director
## 1703 <NA> Director
## 1704 Director <NA>
## 1705 Director <NA>
## 1706 Director Employee
## 1707 Director <NA>
## 1708 Director <NA>
## 1709 Director <NA>
## 1710 Director Manager
## 1711 Director <NA>
## 1712 Director <NA>
## 1713 Director <NA>
## 1714 Director <NA>
## 1715 Director <NA>
## 1716 Director <NA>
## 1717 Director <NA>
## 1718 Director <NA>
## 1719 Director <NA>
## 1720 Director <NA>
## 1721 Director <NA>
## 1722 Director <NA>
## 1723 Director <NA>
## 1724 Director <NA>
## 1725 Director <NA>
## 1726 Director <NA>
## 1727 Director <NA>
## 1728 Director <NA>
## 1729 Director <NA>
## 1730 Director Vice President
## 1731 Director <NA>
## 1732 Director <NA>
## 1733 Director Employee
## 1734 Director <NA>
## 1735 Director <NA>
## 1736 Director <NA>
## 1737 Director Employee
## 1738 Director <NA>
## 1739 Director Vice President
## 1740 Director <NA>
## 1741 Director <NA>
## 1742 Director Employee
## 1743 Director <NA>
## 1744 Director <NA>
## 1745 Director <NA>
## 1746 Director Employee
## 1747 Director <NA>
## 1748 <NA> Director
## 1749 <NA> Director
## 1750 <NA> Vice President
## 1751 <NA> Director
## 1752 <NA> Director
## 1753 <NA> Director
## 1754 <NA> Director
## 1755 <NA> Vice President
## 1756 <NA> Employee
## 1757 <NA> Employee
## 1758 <NA> Trader
## 1759 <NA> Director
## 1760 <NA> Director
## 1761 <NA> Director
## 1762 <NA> Director
## 1763 <NA> Director
## 1764 <NA> Director
## 1765 <NA> Vice President
## 1766 <NA> Employee
## 1767 <NA> Employee
## 1768 <NA> Trader
## 1769 <NA> Director
## 1770 <NA> Director
## 1771 <NA> Director
## 1772 <NA> Director
## 1773 <NA> Director
## 1774 <NA> Director
## 1775 <NA> Director
## 1776 <NA> Director
## 1777 <NA> Director
## 1778 <NA> Vice President
## 1779 <NA> Employee
## 1780 <NA> Director
## 1781 <NA> Employee
## 1782 <NA> Director
## 1783 Director <NA>
## 1784 Director <NA>
## 1785 Director <NA>
## 1786 Director <NA>
## 1787 <NA> Director
## 1788 <NA> Director
## 1789 <NA> Vice President
## 1790 <NA> Vice President
## 1791 <NA> Vice President
## 1792 <NA> Vice President
## 1793 <NA> Employee
## 1794 <NA> Employee
## 1795 <NA> Trader
## 1796 <NA> Director
## 1797 <NA> Director
## 1798 <NA> Vice President
## 1799 <NA> Vice President
## 1800 <NA> Vice President
## 1801 <NA> Vice President
## 1802 <NA> Employee
## 1803 <NA> Employee
## 1804 <NA> Trader
## 1805 <NA> Director
## 1806 <NA> Vice President
## 1807 <NA> Vice President
## 1808 <NA> Vice President
## 1809 <NA> Director
## 1810 <NA> President
## 1811 <NA> Vice President
## 1812 <NA> Director
## 1813 <NA> Vice President
## 1814 <NA> Manager
## 1815 <NA> Employee
## 1816 <NA> Vice President
## 1817 <NA> Director
## 1818 <NA> Director
## 1819 <NA> Director
## 1820 <NA> Director
## 1821 <NA> Director
## 1822 <NA> Director
## 1823 <NA> Director
## 1824 <NA> Director
## 1825 <NA> Director
## 1826 <NA> Director
## 1827 <NA> Director
## 1828 <NA> Director
## 1829 <NA> Director
## 1830 <NA> Director
## 1831 <NA> Director
## 1832 <NA> Director
## 1833 <NA> Director
## 1834 <NA> Director
## 1835 <NA> Director
## 1836 <NA> Director
## 1837 <NA> Director
## 1838 <NA> Director
## 1839 <NA> Director
## 1840 <NA> Director
## 1841 <NA> Director
## 1842 <NA> Director
## 1843 <NA> Vice President
## 1844 <NA> Vice President
## 1845 <NA> Vice President
## 1846 <NA> Vice President
## 1847 <NA> Employee
## 1848 <NA> Employee
## 1849 <NA> Director
## 1850 <NA> Manager
## 1851 <NA> Director
## 1852 <NA> Employee
## 1853 <NA> Employee
## 1854 <NA> Employee
## 1855 <NA> Trader
## 1856 <NA> Director
## 1857 <NA> Vice President
## 1858 <NA> Employee
## 1859 <NA> Employee
## 1860 <NA> Trader
## 1861 <NA> Director
## 1862 <NA> Director
## 1863 <NA> Director
## 1864 <NA> Vice President
## 1865 <NA> Employee
## 1866 <NA> Employee
## 1867 <NA> Trader
## 1868 <NA> Director
## 1869 <NA> Director
## 1870 <NA> Vice President
## 1871 <NA> Employee
## 1872 <NA> Employee
## 1873 <NA> Trader
## 1874 <NA> Director
## 1875 <NA> Director
## 1876 <NA> Vice President
## 1877 <NA> Employee
## 1878 <NA> Employee
## 1879 <NA> Director
## 1880 <NA> Director
## 1881 <NA> Employee
## 1882 <NA> Vice President
## 1883 <NA> Employee
## 1884 <NA> Director
## 1885 <NA> Director
## 1886 <NA> Vice President
## 1887 <NA> Vice President
## 1888 <NA> Employee
## 1889 <NA> Employee
## 1890 <NA> Director
## 1891 <NA> Employee
## 1892 <NA> Director
## 1893 <NA> Director
## 1894 <NA> Vice President
## 1895 <NA> Vice President
## 1896 <NA> Vice President
## 1897 <NA> Vice President
## 1898 <NA> Employee
## 1899 <NA> Employee
## 1900 <NA> Director
## 1901 <NA> Director
## 1902 <NA> Vice President
## 1903 <NA> Vice President
## 1904 <NA> Employee
## 1905 <NA> Employee
## 1906 <NA> Employee
## 1907 <NA> Director
## 1908 <NA> Director
## 1909 <NA> Director
## 1910 <NA> Employee
## 1911 <NA> Employee
## 1912 <NA> Vice President
## 1913 <NA> Director
## 1914 <NA> Director
## 1915 <NA> Vice President
## 1916 <NA> Employee
## 1917 <NA> Employee
## 1918 <NA> Director
## 1919 <NA> Director
## 1920 <NA> Director
## 1921 <NA> Vice President
## 1922 <NA> Employee
## 1923 <NA> Employee
## 1924 <NA> Director
## 1925 <NA> Employee
## 1926 <NA> Employee
## 1927 <NA> Director
## 1928 <NA> Director
## 1929 <NA> Employee
## 1930 <NA> Director
## 1931 <NA> Vice President
## 1932 <NA> Vice President
## 1933 <NA> Employee
## 1934 <NA> Director
## 1935 <NA> Employee
## 1936 <NA> Vice President
## 1937 <NA> Employee
## 1938 <NA> Director
## 1939 <NA> Employee
## 1940 <NA> Director
## 1941 <NA> Vice President
## 1942 <NA> Vice President
## 1943 <NA> Employee
## 1944 <NA> Director
## 1945 <NA> Employee
## 1946 <NA> Vice President
## 1947 <NA> Employee
## 1948 <NA> Director
## 1949 <NA> Employee
## 1950 <NA> Vice President
## 1951 <NA> Director
## 1952 <NA> Employee
## 1953 <NA> Vice President
## 1954 <NA> Director
## 1955 <NA> Employee
## 1956 <NA> Employee
## 1957 <NA> Employee
## 1958 <NA> Director
## 1959 <NA> Vice President
## 1960 <NA> Director
## 1961 <NA> Employee
## 1962 <NA> Employee
## 1963 Vice President Vice President
## 1964 Vice President Director
## 1965 Vice President <NA>
## 1966 Vice President Vice President
## 1967 <NA> Vice President
## 1968 <NA> Director
## 1969 <NA> Employee
## 1970 <NA> Vice President
## 1971 <NA> Vice President
## 1972 <NA> Employee
## 1973 <NA> Director
## 1974 <NA> Employee
## 1975 <NA> Vice President
## 1976 <NA> Vice President
## 1977 <NA> Vice President
## 1978 <NA> Employee
## 1979 <NA> Director
## 1980 <NA> Employee
## 1981 <NA> Vice President
## 1982 <NA> Vice President
## 1983 <NA> Vice President
## 1984 <NA> Employee
## 1985 <NA> Director
## 1986 <NA> Director
## 1987 <NA> Director
## 1988 <NA> Employee
## 1989 <NA> Employee
## 1990 <NA> Director
## 1991 <NA> Director
## 1992 <NA> Employee
## 1993 <NA> Employee
## 1994 <NA> Director
## 1995 <NA> Director
## 1996 <NA> Director
## 1997 <NA> Director
## 1998 <NA> Director
## 1999 <NA> Director
## 2000 <NA> Director
## 2001 <NA> Director
## 2002 <NA> Director
## 2003 <NA> Employee
## 2004 <NA> Vice President
## 2005 <NA> Director
## 2006 <NA> Employee
## 2007 <NA> Trader
## 2008 <NA> Vice President
## 2009 <NA> Director
## 2010 <NA> Director
## 2011 <NA> Director
## 2012 <NA> Director
## 2013 <NA> Employee
## 2014 <NA> Vice President
## 2015 <NA> Director
## 2016 <NA> Employee
## 2017 <NA> Director
## 2018 <NA> Director
## 2019 <NA> Director
## 2020 <NA> Director
## 2021 Director <NA>
## 2022 <NA> Director
## 2023 <NA> Director
## 2024 <NA> Director
## 2025 <NA> Director
## 2026 <NA> Director
## 2027 <NA> Director
## 2028 <NA> Director
## 2029 <NA> Director
## 2030 <NA> Director
## 2031 <NA> Director
## 2032 <NA> Director
## 2033 <NA> Vice President
## 2034 <NA> Director
## 2035 <NA> Vice President
## 2036 <NA> Director
## 2037 <NA> Employee
## 2038 <NA> Director
## 2039 <NA> Employee
## 2040 <NA> Vice President
## 2041 <NA> Vice President
## 2042 <NA> Vice President
## 2043 <NA> Vice President
## 2044 <NA> Director
## 2045 <NA> Employee
## 2046 <NA> Employee
## 2047 <NA> Employee
## 2048 <NA> Vice President
## 2049 <NA> Director
## 2050 <NA> Employee
## 2051 <NA> Director
## 2052 <NA> Director
## 2053 <NA> Director
## 2054 <NA> Employee
## 2055 <NA> Employee
## 2056 <NA> Employee
## 2057 <NA> Employee
## 2058 <NA> Employee
## 2059 Trader <NA>
## 2060 Trader <NA>
## 2061 Trader <NA>
## 2062 Trader <NA>
## 2063 Trader <NA>
## 2064 <NA> Vice President
## 2065 <NA> Vice President
## 2066 Vice President <NA>
## 2067 Vice President <NA>
## 2068 Vice President <NA>
## 2069 Vice President CEO
## 2070 Vice President <NA>
## 2071 Vice President Vice President
## 2072 Vice President <NA>
## 2073 Vice President <NA>
## 2074 Vice President CEO
## 2075 Vice President <NA>
## 2076 Vice President Vice President
## 2077 <NA> Employee
## 2078 Employee <NA>
## 2079 Employee <NA>
## 2080 Employee <NA>
## 2081 Employee <NA>
## 2082 Employee <NA>
## 2083 Employee <NA>
## 2084 Employee <NA>
## 2085 Employee <NA>
## 2086 Employee <NA>
## 2087 Employee <NA>
## 2088 Employee <NA>
## 2089 Employee <NA>
## 2090 Employee <NA>
## 2091 Employee <NA>
## 2092 <NA> Employee
## 2093 Employee <NA>
## 2094 Employee <NA>
## 2095 Employee <NA>
## 2096 Employee <NA>
## 2097 Employee <NA>
## 2098 Employee <NA>
## 2099 Employee <NA>
## 2100 Employee <NA>
## 2101 Employee <NA>
## 2102 <NA> Vice President
## 2103 <NA> Vice President
## 2104 <NA> Vice President
## 2105 <NA> Vice President
## 2106 <NA> Vice President
## 2107 <NA> Vice President
## 2108 <NA> Employee
## 2109 <NA> Vice President
## 2110 <NA> Vice President
## 2111 <NA> Vice President
## 2112 <NA> Vice President
## 2113 <NA> Vice President
## 2114 <NA> Vice President
## 2115 <NA> Vice President
## 2116 <NA> Vice President
## 2117 <NA> President
## 2118 <NA> Manager
## 2119 <NA> Vice President
## 2120 <NA> Manager
## 2121 <NA> Vice President
## 2122 <NA> Employee
## 2123 <NA> Vice President
## 2124 <NA> Vice President
## 2125 <NA> Vice President
## 2126 <NA> Vice President
## 2127 <NA> Vice President
## 2128 <NA> Employee
## 2129 <NA> Vice President
## 2130 <NA> Vice President
## 2131 <NA> CEO
## 2132 <NA> Vice President
## 2133 Vice President <NA>
## 2134 Vice President Vice President
## 2135 Vice President <NA>
## 2136 Vice President <NA>
## 2137 Vice President <NA>
## 2138 Vice President <NA>
## 2139 Vice President <NA>
## 2140 Vice President <NA>
## 2141 Vice President Vice President
## 2142 Vice President <NA>
## 2143 Vice President <NA>
## 2144 Vice President <NA>
## 2145 Vice President <NA>
## 2146 Vice President <NA>
## 2147 Vice President <NA>
## 2148 <NA> Vice President
## 2149 <NA> Vice President
## 2150 <NA> Vice President
## 2151 <NA> Employee
## 2152 Trader <NA>
## 2153 <NA> Vice President
## 2154 <NA> Vice President
## 2155 <NA> Vice President
## 2156 <NA> Manager
## 2157 <NA> Vice President
## 2158 <NA> Vice President
## 2159 <NA> Vice President
## 2160 <NA> Vice President
## 2161 <NA> Employee
## 2162 <NA> Vice President
## 2163 <NA> Vice President
## 2164 <NA> Vice President
## 2165 <NA> Vice President
## 2166 <NA> Vice President
## 2167 Vice President <NA>
## 2168 Vice President <NA>
## 2169 Vice President <NA>
## 2170 Vice President <NA>
## 2171 Vice President <NA>
## 2172 Vice President <NA>
## 2173 Vice President <NA>
## 2174 Vice President <NA>
## 2175 Vice President <NA>
## 2176 Vice President <NA>
## 2177 <NA> Vice President
## 2178 <NA> Vice President
## 2179 <NA> Vice President
## 2180 <NA> Vice President
## 2181 <NA> Vice President
## 2182 <NA> Vice President
## 2183 <NA> Vice President
## 2184 <NA> Employee
## 2185 <NA> Vice President
## 2186 <NA> CEO
## 2187 <NA> Vice President
## 2188 <NA> Vice President
## 2189 Trader <NA>
## 2190 <NA> Vice President
## 2191 Vice President <NA>
## 2192 Vice President <NA>
## 2193 Vice President <NA>
## 2194 Vice President Employee
## 2195 Vice President <NA>
## 2196 Vice President <NA>
## 2197 Vice President Employee
## 2198 Vice President <NA>
## 2199 Vice President <NA>
## 2200 <NA> Employee
## 2201 <NA> Trader
## 2202 <NA> Employee
## 2203 <NA> Employee
## 2204 <NA> Employee
## 2205 <NA> Managing Director
## 2206 <NA> Director
## 2207 <NA> Trader
## 2208 <NA> Employee
## 2209 <NA> Employee
## 2210 <NA> Director
## 2211 <NA> Trader
## 2212 <NA> Director
## 2213 <NA> Vice President
## 2214 <NA> Employee
## 2215 <NA> Vice President
## 2216 <NA> Vice President
## 2217 <NA> Vice President
## 2218 <NA> Vice President
## 2219 <NA> Vice President
## 2220 <NA> Vice President
## 2221 <NA> Vice President
## 2222 <NA> Vice President
## 2223 <NA> CEO
## 2224 Vice President Vice President
## 2225 Vice President Employee
## 2226 Vice President <NA>
## 2227 Vice President <NA>
## 2228 Vice President <NA>
## 2229 Vice President <NA>
## 2230 Vice President <NA>
## 2231 Vice President <NA>
## 2232 Vice President <NA>
## 2233 Vice President <NA>
## 2234 Vice President <NA>
## 2235 Vice President <NA>
## 2236 Vice President <NA>
## 2237 <NA> Vice President
## 2238 <NA> Employee
## 2239 <NA> Vice President
## 2240 <NA> Vice President
## 2241 <NA> Vice President
## 2242 <NA> Vice President
## 2243 <NA> Vice President
## 2244 <NA> Vice President
## 2245 <NA> Vice President
## 2246 <NA> Vice President
## 2247 <NA> Vice President
## 2248 <NA> Vice President
## 2249 <NA> Vice President
## 2250 <NA> Employee
## 2251 <NA> CEO
## 2252 Employee <NA>
## 2253 <NA> CEO
## 2254 <NA> Vice President
## 2255 <NA> In House Lawyer
## 2256 <NA> Employee
## 2257 <NA> Director
## 2258 <NA> Managing Director
## 2259 <NA> Manager
## 2260 <NA> Manager
## 2261 <NA> Vice President
## 2262 <NA> Vice President
## 2263 <NA> Manager
## 2264 <NA> Director
## 2265 <NA> Vice President
## 2266 <NA> Vice President
## 2267 Trader <NA>
## 2268 Vice President <NA>
## 2269 Vice President <NA>
## 2270 Vice President <NA>
## 2271 Vice President <NA>
## 2272 Vice President <NA>
## 2273 Vice President <NA>
## 2274 Vice President <NA>
## 2275 Vice President Vice President
## 2276 Vice President <NA>
## 2277 Vice President <NA>
## 2278 Vice President Vice President
## 2279 Vice President <NA>
## 2280 Vice President <NA>
## 2281 Employee <NA>
## 2282 Vice President <NA>
## 2283 Vice President <NA>
## 2284 Vice President <NA>
## 2285 Vice President <NA>
## 2286 Vice President <NA>
## 2287 Vice President <NA>
## 2288 <NA> Vice President
## 2289 <NA> Employee
## 2290 <NA> Vice President
## 2291 <NA> Vice President
## 2292 Vice President <NA>
## 2293 Vice President <NA>
## 2294 Vice President <NA>
## 2295 Vice President Vice President
## 2296 Vice President Vice President
## 2297 Vice President <NA>
## 2298 <NA> Vice President
## 2299 <NA> Vice President
## 2300 <NA> Vice President
## 2301 <NA> Vice President
## 2302 <NA> Employee
## 2303 <NA> Vice President
## 2304 <NA> Vice President
## 2305 <NA> Vice President
## 2306 <NA> Employee
## 2307 <NA> Vice President
## 2308 <NA> Vice President
## 2309 <NA> Vice President
## 2310 <NA> Vice President
## 2311 <NA> Vice President
## 2312 <NA> Vice President
## 2313 <NA> Vice President
## 2314 <NA> Vice President
## 2315 <NA> Vice President
## 2316 <NA> Vice President
## 2317 <NA> Vice President
## 2318 <NA> Employee
## 2319 <NA> Vice President
## 2320 <NA> Vice President
## 2321 <NA> Vice President
## 2322 <NA> Employee
## 2323 <NA> Vice President
## 2324 Vice President Employee
## 2325 Vice President <NA>
## 2326 Vice President <NA>
## 2327 Vice President <NA>
## 2328 Vice President <NA>
## 2329 Vice President <NA>
## 2330 <NA> Vice President
## 2331 <NA> Vice President
## 2332 <NA> Employee
## 2333 <NA> Vice President
## 2334 <NA> Employee
## 2335 <NA> Vice President
## 2336 <NA> Vice President
## 2337 <NA> Vice President
## 2338 <NA> Vice President
## 2339 <NA> Vice President
## 2340 Vice President <NA>
## 2341 Vice President <NA>
## 2342 Vice President <NA>
## 2343 <NA> Vice President
## 2344 <NA> Vice President
## 2345 <NA> Employee
## 2346 <NA> Vice President
## 2347 <NA> Vice President
## 2348 <NA> Director
## 2349 <NA> Vice President
## 2350 <NA> Vice President
## 2351 <NA> Vice President
## 2352 <NA> Vice President
## 2353 <NA> President
## 2354 <NA> Vice President
## 2355 <NA> Manager
## 2356 <NA> Vice President
## 2357 <NA> Vice President
## 2358 <NA> Vice President
## 2359 <NA> Vice President
## 2360 <NA> Vice President
## 2361 <NA> Vice President
## 2362 <NA> Vice President
## 2363 <NA> Employee
## 2364 <NA> Vice President
## 2365 <NA> Vice President
## 2366 <NA> Vice President
## 2367 <NA> Vice President
## 2368 <NA> Vice President
## 2369 <NA> Vice President
## 2370 <NA> Employee
## 2371 <NA> Vice President
## 2372 <NA> Vice President
## 2373 Employee <NA>
## 2374 Employee <NA>
## 2375 Employee <NA>
## 2376 Employee <NA>
## 2377 Employee Vice President
## 2378 Employee Vice President
## 2379 Employee Vice President
## 2380 Employee <NA>
## 2381 Employee <NA>
## 2382 Employee <NA>
## 2383 Employee <NA>
## 2384 Employee <NA>
## 2385 Employee <NA>
## 2386 Employee <NA>
## 2387 Employee <NA>
## 2388 Employee <NA>
## 2389 <NA> Vice President
## 2390 <NA> Vice President
## 2391 <NA> Director
## 2392 <NA> Vice President
## 2393 <NA> Vice President
## 2394 <NA> Manager
## 2395 <NA> Employee
## 2396 <NA> Vice President
## 2397 <NA> Vice President
## 2398 <NA> Vice President
## 2399 <NA> Vice President
## 2400 <NA> Vice President
## 2401 <NA> Vice President
## 2402 <NA> Vice President
## 2403 <NA> Vice President
## 2404 <NA> Employee
## 2405 <NA> Vice President
## 2406 <NA> Vice President
## 2407 <NA> Vice President
## 2408 <NA> Vice President
## 2409 <NA> Vice President
## 2410 <NA> Vice President
## 2411 <NA> Vice President
## 2412 <NA> Vice President
## 2413 <NA> Director
## 2414 <NA> Vice President
## 2415 <NA> Vice President
## 2416 <NA> Manager
## 2417 <NA> Employee
## 2418 <NA> Vice President
## 2419 <NA> Vice President
## 2420 <NA> Vice President
## 2421 <NA> Vice President
## 2422 Employee <NA>
## 2423 Employee <NA>
## 2424 Employee <NA>
## 2425 Employee <NA>
## 2426 Employee <NA>
## 2427 Employee <NA>
## 2428 Employee <NA>
## 2429 Employee Vice President
## 2430 Employee <NA>
## 2431 Employee Vice President
## 2432 <NA> Employee
## 2433 <NA> Vice President
## 2434 <NA> Vice President
## 2435 <NA> Vice President
## 2436 <NA> Vice President
## 2437 Employee <NA>
## 2438 Employee <NA>
## 2439 Employee <NA>
## 2440 Employee <NA>
## 2441 Employee <NA>
## 2442 Employee Vice President
## 2443 Employee Vice President
## 2444 Employee <NA>
## 2445 Employee <NA>
## 2446 <NA> Vice President
## 2447 <NA> Vice President
## 2448 <NA> Director
## 2449 <NA> Vice President
## 2450 <NA> Vice President
## 2451 <NA> Manager
## 2452 <NA> Employee
## 2453 <NA> Vice President
## 2454 <NA> Vice President
## 2455 <NA> Vice President
## 2456 <NA> Vice President
## 2457 <NA> CEO
## 2458 <NA> Vice President
## 2459 <NA> In House Lawyer
## 2460 <NA> Employee
## 2461 <NA> Director
## 2462 <NA> Managing Director
## 2463 <NA> Manager
## 2464 <NA> Manager
## 2465 <NA> Vice President
## 2466 <NA> Vice President
## 2467 <NA> Manager
## 2468 <NA> Director
## 2469 <NA> Vice President
## 2470 <NA> Vice President
## 2471 <NA> Vice President
## 2472 <NA> Vice President
## 2473 <NA> Director
## 2474 <NA> Vice President
## 2475 <NA> Vice President
## 2476 <NA> Manager
## 2477 <NA> Employee
## 2478 <NA> Vice President
## 2479 <NA> Vice President
## 2480 <NA> Employee
## 2481 <NA> Vice President
## 2482 <NA> Vice President
## 2483 <NA> Vice President
## 2484 <NA> Vice President
## 2485 <NA> Vice President
## 2486 <NA> Vice President
## 2487 <NA> Vice President
## 2488 <NA> Employee
## 2489 <NA> Vice President
## 2490 <NA> Vice President
## 2491 <NA> Vice President
## 2492 <NA> Vice President
## 2493 Vice President <NA>
## 2494 Vice President <NA>
## 2495 Vice President <NA>
## 2496 Vice President <NA>
## 2497 Vice President <NA>
## 2498 Vice President Vice President
## 2499 Vice President <NA>
## 2500 Vice President <NA>
## 2501 Vice President <NA>
## 2502 Vice President Vice President
## 2503 Vice President <NA>
## 2504 Vice President <NA>
## 2505 Vice President <NA>
## 2506 Vice President <NA>
## 2507 Vice President Vice President
## 2508 Vice President <NA>
## 2509 Vice President <NA>
## 2510 Vice President <NA>
## 2511 Vice President Vice President
## 2512 <NA> Vice President
## 2513 <NA> Vice President
## 2514 <NA> Vice President
## 2515 <NA> Vice President
## 2516 <NA> Vice President
## 2517 <NA> Vice President
## 2518 <NA> Employee
## 2519 <NA> Vice President
## 2520 <NA> Vice President
## 2521 <NA> Vice President
## 2522 Employee <NA>
## 2523 Employee <NA>
## 2524 Employee Vice President
## 2525 Employee <NA>
## 2526 Employee <NA>
## 2527 Employee <NA>
## 2528 Employee Vice President
## 2529 Employee <NA>
## 2530 Employee Vice President
## 2531 <NA> Vice President
## 2532 <NA> Vice President
## 2533 <NA> Employee
## 2534 <NA> Vice President
## 2535 <NA> Vice President
## 2536 <NA> Vice President
## 2537 <NA> Manager
## 2538 <NA> Manager
## 2539 <NA> Trader
## 2540 <NA> Vice President
## 2541 <NA> Vice President
## 2542 <NA> Director
## 2543 <NA> Vice President
## 2544 <NA> Vice President
## 2545 <NA> Manager
## 2546 <NA> Employee
## 2547 <NA> Vice President
## 2548 <NA> Vice President
## 2549 <NA> Vice President
## 2550 <NA> Director
## 2551 <NA> Vice President
## 2552 <NA> Vice President
## 2553 <NA> Manager
## 2554 <NA> Employee
## 2555 <NA> Vice President
## 2556 Vice President Vice President
## 2557 Vice President Employee
## 2558 Vice President <NA>
## 2559 Vice President <NA>
## 2560 Vice President <NA>
## 2561 Vice President <NA>
## 2562 Vice President <NA>
## 2563 Vice President <NA>
## 2564 Vice President <NA>
## 2565 Vice President <NA>
## 2566 Vice President <NA>
## 2567 Vice President <NA>
## 2568 Vice President <NA>
## 2569 <NA> Employee
## 2570 <NA> Vice President
## 2571 <NA> Vice President
## 2572 <NA> Vice President
## 2573 <NA> Vice President
## 2574 <NA> Employee
## 2575 <NA> Trader
## 2576 <NA> Employee
## 2577 <NA> Director
## 2578 <NA> Employee
## 2579 <NA> Director
## 2580 <NA> Manager
## 2581 <NA> Director
## 2582 <NA> Vice President
## 2583 <NA> Employee
## 2584 <NA> Trader
## 2585 <NA> Managing Director
## 2586 <NA> Employee
## 2587 <NA> Manager
## 2588 <NA> Employee
## 2589 <NA> Manager
## 2590 <NA> Trader
## 2591 <NA> Trader
## 2592 <NA> Vice President
## 2593 <NA> Employee
## 2594 <NA> Employee
## 2595 <NA> Manager
## 2596 <NA> Vice President
## 2597 <NA> Trader
## 2598 <NA> Director
## 2599 <NA> Employee
## 2600 <NA> Employee
## 2601 <NA> Trader
## 2602 <NA> Employee
## 2603 <NA> Managing Director
## 2604 <NA> Vice President
## 2605 <NA> Vice President
## 2606 <NA> Vice President
## 2607 <NA> Vice President
## 2608 <NA> Vice President
## 2609 <NA> Vice President
## 2610 <NA> Vice President
## 2611 <NA> Director
## 2612 <NA> Vice President
## 2613 <NA> Vice President
## 2614 <NA> Manager
## 2615 <NA> Employee
## 2616 <NA> Vice President
## 2617 <NA> Employee
## 2618 <NA> Vice President
## 2619 <NA> Vice President
## 2620 <NA> Vice President
## 2621 <NA> Director
## 2622 <NA> Vice President
## 2623 <NA> Vice President
## 2624 <NA> Manager
## 2625 <NA> Employee
## 2626 <NA> Vice President
## 2627 <NA> Trader
## 2628 <NA> Vice President
## 2629 <NA> Manager
## 2630 <NA> Vice President
## 2631 <NA> Manager
## 2632 <NA> Trader
## 2633 <NA> Vice President
## 2634 <NA> Manager
## 2635 <NA> Vice President
## 2636 <NA> Manager
## 2637 <NA> Vice President
## 2638 <NA> Vice President
## 2639 <NA> Employee
## 2640 <NA> Vice President
## 2641 <NA> Vice President
## 2642 <NA> Vice President
## 2643 Vice President <NA>
## 2644 Vice President <NA>
## 2645 Vice President Vice President
## 2646 Vice President Employee
## 2647 Vice President <NA>
## 2648 Vice President <NA>
## 2649 Vice President <NA>
## 2650 Vice President <NA>
## 2651 Vice President <NA>
## 2652 Vice President Vice President
## 2653 Vice President Vice President
## 2654 Vice President <NA>
## 2655 Vice President <NA>
## 2656 Vice President <NA>
## 2657 Vice President Vice President
## 2658 Vice President Employee
## 2659 Vice President <NA>
## 2660 Vice President <NA>
## 2661 Vice President <NA>
## 2662 Vice President <NA>
## 2663 Vice President <NA>
## 2664 Vice President Vice President
## 2665 Vice President Vice President
## 2666 Vice President <NA>
## 2667 Vice President Employee
## 2668 Vice President <NA>
## 2669 Vice President Employee
## 2670 Vice President <NA>
## 2671 Vice President <NA>
## 2672 Vice President <NA>
## 2673 Vice President <NA>
## 2674 Vice President Vice President
## 2675 Vice President <NA>
## 2676 Vice President <NA>
## 2677 Vice President <NA>
## 2678 Vice President Employee
## 2679 Vice President <NA>
## 2680 Vice President <NA>
## 2681 Vice President <NA>
## 2682 Vice President <NA>
## 2683 Vice President Vice President
## 2684 Vice President <NA>
## 2685 Vice President <NA>
## 2686 <NA> Director
## 2687 <NA> Vice President
## 2688 <NA> Vice President
## 2689 <NA> Vice President
## 2690 <NA> Vice President
## 2691 <NA> President
## 2692 <NA> Vice President
## 2693 <NA> Manager
## 2694 <NA> Vice President
## 2695 <NA> Vice President
## 2696 <NA> Vice President
## 2697 <NA> Employee
## 2698 <NA> Vice President
## 2699 <NA> Manager
## 2700 <NA> Vice President
## 2701 <NA> Vice President
## 2702 <NA> Employee
## 2703 <NA> Vice President
## 2704 <NA> Manager
## 2705 <NA> Vice President
## 2706 <NA> Vice President
## 2707 <NA> Vice President
## 2708 <NA> Vice President
## 2709 <NA> Employee
## 2710 <NA> Vice President
## 2711 <NA> Manager
## 2712 <NA> Vice President
## 2713 <NA> Vice President
## 2714 <NA> Vice President
## 2715 <NA> Vice President
## 2716 <NA> Employee
## 2717 <NA> Employee
## 2718 <NA> Employee
## 2719 <NA> Vice President
## 2720 <NA> Vice President
## 2721 Employee Director
## 2722 Employee Trader
## 2723 Employee <NA>
## 2724 Employee <NA>
## 2725 Employee <NA>
## 2726 Employee <NA>
## 2727 Employee <NA>
## 2728 Employee <NA>
## 2729 Employee <NA>
## 2730 Employee <NA>
## 2731 Employee <NA>
## 2732 Employee <NA>
## 2733 Employee Employee
## 2734 Employee <NA>
## 2735 Employee <NA>
## 2736 Employee <NA>
## 2737 <NA> Vice President
## 2738 <NA> Employee
## 2739 <NA> Vice President
## 2740 <NA> Vice President
## 2741 <NA> Vice President
## 2742 <NA> Vice President
## 2743 <NA> Vice President
## 2744 <NA> Vice President
## 2745 <NA> Employee
## 2746 <NA> Vice President
## 2747 <NA> Vice President
## 2748 <NA> Vice President
## 2749 Vice President <NA>
## 2750 Vice President <NA>
## 2751 Vice President <NA>
## 2752 Vice President <NA>
## 2753 Vice President <NA>
## 2754 Vice President <NA>
## 2755 Vice President <NA>
## 2756 Vice President <NA>
## 2757 Vice President <NA>
## 2758 Vice President Vice President
## 2759 Vice President <NA>
## 2760 Vice President Employee
## 2761 Vice President <NA>
## 2762 Vice President CEO
## 2763 Vice President <NA>
## 2764 Vice President <NA>
## 2765 Vice President <NA>
## 2766 Vice President <NA>
## 2767 Vice President <NA>
## 2768 Vice President <NA>
## 2769 Vice President <NA>
## 2770 Vice President Vice President
## 2771 Vice President Vice President
## 2772 Vice President <NA>
## 2773 Vice President <NA>
## 2774 Vice President Vice President
## 2775 Vice President <NA>
## 2776 Vice President <NA>
## 2777 Vice President <NA>
## 2778 Vice President <NA>
## 2779 Vice President <NA>
## 2780 Vice President <NA>
## 2781 Vice President <NA>
## 2782 Vice President <NA>
## 2783 Vice President <NA>
## 2784 Vice President <NA>
## 2785 Vice President <NA>
## 2786 Vice President Vice President
## 2787 Vice President <NA>
## 2788 Vice President Employee
## 2789 Vice President <NA>
## 2790 Vice President CEO
## 2791 Vice President <NA>
## 2792 Vice President <NA>
## 2793 Vice President <NA>
## 2794 Vice President <NA>
## 2795 Vice President <NA>
## 2796 Vice President <NA>
## 2797 Vice President <NA>
## 2798 Vice President Vice President
## 2799 Vice President Vice President
## 2800 Vice President <NA>
## 2801 Vice President <NA>
## 2802 Vice President Vice President
## 2803 Vice President <NA>
## 2804 Vice President <NA>
## 2805 <NA> Director
## 2806 <NA> Vice President
## 2807 <NA> Vice President
## 2808 <NA> Vice President
## 2809 <NA> Vice President
## 2810 <NA> President
## 2811 <NA> Vice President
## 2812 <NA> Manager
## 2813 <NA> Vice President
## 2814 <NA> Vice President
## 2815 <NA> Vice President
## 2816 <NA> Employee
## 2817 <NA> Vice President
## 2818 <NA> Vice President
## 2819 <NA> Vice President
## 2820 <NA> Employee
## 2821 <NA> Vice President
## 2822 <NA> Vice President
## 2823 <NA> Vice President
## 2824 <NA> Vice President
## 2825 <NA> Vice President
## 2826 <NA> Director
## 2827 <NA> Vice President
## 2828 <NA> Vice President
## 2829 <NA> Manager
## 2830 <NA> Employee
## 2831 <NA> Vice President
## 2832 <NA> Vice President
## 2833 <NA> Employee
## 2834 <NA> Vice President
## 2835 <NA> Vice President
## 2836 <NA> President
## 2837 <NA> CEO
## 2838 <NA> President
## 2839 <NA> President
## 2840 <NA> CEO
## 2841 <NA> President
## 2842 <NA> Vice President
## 2843 <NA> Employee
## 2844 <NA> Vice President
## 2845 <NA> Vice President
## 2846 <NA> Vice President
## 2847 <NA> Vice President
## 2848 <NA> Employee
## 2849 <NA> Vice President
## 2850 <NA> Vice President
## 2851 <NA> Vice President
## 2852 <NA> Director
## 2853 <NA> Vice President
## 2854 <NA> Vice President
## 2855 <NA> Vice President
## 2856 <NA> Vice President
## 2857 <NA> President
## 2858 <NA> Vice President
## 2859 <NA> Manager
## 2860 <NA> Vice President
## 2861 <NA> Vice President
## 2862 <NA> Director
## 2863 <NA> Vice President
## 2864 <NA> Vice President
## 2865 <NA> Vice President
## 2866 <NA> Vice President
## 2867 <NA> President
## 2868 <NA> Vice President
## 2869 <NA> Manager
## 2870 <NA> Vice President
## 2871 <NA> Vice President
## 2872 <NA> Vice President
## 2873 <NA> Employee
## 2874 <NA> Vice President
## 2875 <NA> Vice President
## 2876 <NA> Vice President
## 2877 <NA> Managing Director
## 2878 <NA> Employee
## 2879 <NA> Vice President
## 2880 <NA> Vice President
## 2881 <NA> Trader
## 2882 <NA> Employee
## 2883 <NA> Vice President
## 2884 <NA> Vice President
## 2885 <NA> Vice President
## 2886 <NA> Trader
## 2887 <NA> Vice President
## 2888 <NA> Employee
## 2889 <NA> Director
## 2890 <NA> Director
## 2891 <NA> Manager
## 2892 <NA> Vice President
## 2893 <NA> Employee
## 2894 <NA> Vice President
## 2895 <NA> Vice President
## 2896 <NA> Vice President
## 2897 <NA> Vice President
## 2898 <NA> Vice President
## 2899 <NA> Vice President
## 2900 <NA> Employee
## 2901 <NA> Vice President
## 2902 <NA> Managing Director
## 2903 <NA> Vice President
## 2904 <NA> Vice President
## 2905 <NA> Vice President
## 2906 <NA> Vice President
## 2907 <NA> Vice President
## 2908 <NA> Vice President
## 2909 <NA> Vice President
## 2910 <NA> Vice President
## 2911 <NA> Vice President
## 2912 <NA> Vice President
## 2913 <NA> Vice President
## 2914 <NA> Vice President
## 2915 <NA> Vice President
## 2916 <NA> Director
## 2917 <NA> Vice President
## 2918 <NA> Vice President
## 2919 <NA> Manager
## 2920 <NA> Employee
## 2921 <NA> Vice President
## 2922 <NA> Vice President
## 2923 <NA> Trader
## 2924 <NA> Manager
## 2925 <NA> Director
## 2926 <NA> Vice President
## 2927 <NA> Vice President
## 2928 <NA> Vice President
## 2929 <NA> Vice President
## 2930 <NA> Manager
## 2931 <NA> Vice President
## 2932 Vice President <NA>
## 2933 Vice President <NA>
## 2934 Vice President <NA>
## 2935 Vice President <NA>
## 2936 Vice President Director
## 2937 Vice President <NA>
## 2938 Vice President <NA>
## 2939 Vice President <NA>
## 2940 Vice President <NA>
## 2941 Vice President <NA>
## 2942 Vice President <NA>
## 2943 Vice President <NA>
## 2944 Vice President <NA>
## 2945 Vice President <NA>
## 2946 Vice President Vice President
## 2947 Vice President <NA>
## 2948 Vice President <NA>
## 2949 Vice President <NA>
## 2950 Vice President <NA>
## 2951 Vice President <NA>
## 2952 Vice President <NA>
## 2953 Vice President <NA>
## 2954 Vice President Vice President
## 2955 Vice President <NA>
## 2956 Vice President <NA>
## 2957 Vice President <NA>
## 2958 Vice President <NA>
## 2959 Vice President Vice President
## 2960 Vice President <NA>
## 2961 Vice President <NA>
## 2962 Vice President <NA>
## 2963 Vice President Vice President
## 2964 Vice President <NA>
## 2965 Vice President <NA>
## 2966 Vice President <NA>
## 2967 Vice President <NA>
## 2968 Vice President <NA>
## 2969 Vice President President
## 2970 Vice President <NA>
## 2971 Vice President <NA>
## 2972 Vice President <NA>
## 2973 Vice President Vice President
## 2974 Vice President <NA>
## 2975 Vice President <NA>
## 2976 Vice President <NA>
## 2977 Vice President <NA>
## 2978 Vice President <NA>
## 2979 Vice President <NA>
## 2980 Vice President <NA>
## 2981 Vice President <NA>
## 2982 Vice President Manager
## 2983 Vice President <NA>
## 2984 Vice President <NA>
## 2985 Vice President <NA>
## 2986 Vice President <NA>
## 2987 Vice President <NA>
## 2988 Vice President <NA>
## 2989 Vice President <NA>
## 2990 Vice President <NA>
## 2991 Vice President <NA>
## 2992 Vice President <NA>
## 2993 Vice President <NA>
## 2994 Vice President <NA>
## 2995 Vice President <NA>
## 2996 Vice President <NA>
## 2997 Vice President <NA>
## 2998 Vice President <NA>
## 2999 Vice President <NA>
## 3000 Vice President <NA>
## 3001 Vice President <NA>
## 3002 Vice President <NA>
## 3003 Vice President <NA>
## 3004 Vice President <NA>
## 3005 Vice President <NA>
## 3006 Vice President <NA>
## 3007 Vice President <NA>
## 3008 Vice President <NA>
## 3009 Vice President <NA>
## 3010 Vice President <NA>
## 3011 Vice President <NA>
## 3012 Vice President <NA>
## 3013 Vice President <NA>
## 3014 Vice President <NA>
## 3015 Vice President <NA>
## 3016 Vice President <NA>
## 3017 Vice President <NA>
## 3018 Vice President <NA>
## 3019 Vice President Vice President
## 3020 Vice President <NA>
## 3021 Vice President <NA>
## 3022 Vice President <NA>
## 3023 Vice President Vice President
## 3024 Vice President <NA>
## 3025 Vice President <NA>
## 3026 Vice President <NA>
## 3027 Vice President <NA>
## 3028 Vice President <NA>
## 3029 Vice President <NA>
## 3030 Vice President <NA>
## 3031 Vice President <NA>
## 3032 Vice President <NA>
## 3033 Vice President <NA>
## 3034 Vice President <NA>
## 3035 Vice President <NA>
## 3036 Vice President <NA>
## 3037 Vice President <NA>
## 3038 Vice President <NA>
## 3039 <NA> Vice President
## 3040 <NA> Vice President
## 3041 <NA> Director
## 3042 <NA> Vice President
## 3043 <NA> Vice President
## 3044 <NA> Manager
## 3045 <NA> Employee
## 3046 <NA> Vice President
## 3047 <NA> Employee
## 3048 <NA> Vice President
## 3049 <NA> Vice President
## 3050 <NA> Vice President
## 3051 <NA> Vice President
## 3052 <NA> Director
## 3053 <NA> Vice President
## 3054 <NA> Vice President
## 3055 <NA> Manager
## 3056 <NA> Employee
## 3057 <NA> Vice President
## 3058 <NA> Vice President
## 3059 <NA> Vice President
## 3060 <NA> Director
## 3061 <NA> Vice President
## 3062 <NA> Vice President
## 3063 <NA> Manager
## 3064 <NA> Employee
## 3065 <NA> Vice President
## 3066 <NA> Vice President
## 3067 <NA> Vice President
## 3068 <NA> Director
## 3069 <NA> Vice President
## 3070 <NA> Vice President
## 3071 <NA> Manager
## 3072 <NA> Employee
## 3073 <NA> Vice President
## 3074 <NA> Vice President
## 3075 <NA> Vice President
## 3076 <NA> Director
## 3077 <NA> Vice President
## 3078 <NA> Vice President
## 3079 <NA> Manager
## 3080 <NA> Employee
## 3081 <NA> Vice President
## 3082 <NA> Vice President
## 3083 <NA> Vice President
## 3084 <NA> Director
## 3085 <NA> Vice President
## 3086 <NA> Vice President
## 3087 <NA> Manager
## 3088 <NA> Employee
## 3089 <NA> Vice President
## 3090 <NA> Vice President
## 3091 <NA> Vice President
## 3092 <NA> Director
## 3093 <NA> Vice President
## 3094 <NA> Vice President
## 3095 <NA> Manager
## 3096 <NA> Employee
## 3097 <NA> Vice President
## 3098 <NA> Vice President
## 3099 <NA> Employee
## 3100 <NA> Vice President
## 3101 <NA> Vice President
## 3102 <NA> Vice President
## 3103 <NA> Vice President
## 3104 <NA> Director
## 3105 <NA> Vice President
## 3106 <NA> Vice President
## 3107 <NA> Manager
## 3108 <NA> Employee
## 3109 <NA> Vice President
## 3110 <NA> Vice President
## 3111 <NA> Employee
## 3112 <NA> Manager
## 3113 <NA> Vice President
## 3114 <NA> Vice President
## 3115 <NA> Director
## 3116 <NA> Vice President
## 3117 <NA> Vice President
## 3118 <NA> Employee
## 3119 <NA> Manager
## 3120 <NA> Vice President
## 3121 <NA> Vice President
## 3122 <NA> Director
## 3123 <NA> Vice President
## 3124 <NA> Vice President
## 3125 <NA> Vice President
## 3126 <NA> Vice President
## 3127 <NA> Vice President
## 3128 <NA> Director
## 3129 <NA> Vice President
## 3130 <NA> Vice President
## 3131 <NA> Manager
## 3132 <NA> Employee
## 3133 <NA> Vice President
## 3134 Vice President <NA>
## 3135 Vice President <NA>
## 3136 Vice President <NA>
## 3137 Vice President <NA>
## 3138 Vice President <NA>
## 3139 Vice President <NA>
## 3140 Vice President CEO
## 3141 Vice President <NA>
## 3142 Vice President <NA>
## 3143 Vice President Employee
## 3144 Vice President <NA>
## 3145 Vice President <NA>
## 3146 Vice President <NA>
## 3147 Vice President <NA>
## 3148 Vice President <NA>
## 3149 Vice President <NA>
## 3150 Vice President Employee
## 3151 Vice President <NA>
## 3152 Vice President <NA>
## 3153 Vice President <NA>
## 3154 Vice President <NA>
## 3155 Vice President <NA>
## 3156 Vice President Director
## 3157 Vice President <NA>
## 3158 Vice President <NA>
## 3159 Vice President <NA>
## 3160 Vice President President
## 3161 Vice President <NA>
## 3162 Vice President <NA>
## 3163 Vice President <NA>
## 3164 Vice President <NA>
## 3165 Vice President <NA>
## 3166 Vice President <NA>
## 3167 Vice President <NA>
## 3168 Vice President Manager
## 3169 Vice President <NA>
## 3170 Vice President <NA>
## 3171 Vice President Manager
## 3172 Vice President Director
## 3173 Vice President <NA>
## 3174 Vice President Vice President
## 3175 Vice President Vice President
## 3176 Vice President <NA>
## 3177 Vice President <NA>
## 3178 Vice President <NA>
## 3179 Vice President <NA>
## 3180 Vice President <NA>
## 3181 Vice President <NA>
## 3182 Vice President <NA>
## 3183 Vice President <NA>
## 3184 Vice President Vice President
## 3185 Vice President <NA>
## 3186 Vice President <NA>
## 3187 Vice President Vice President
## 3188 Vice President <NA>
## 3189 Vice President <NA>
## 3190 Vice President <NA>
## 3191 Vice President <NA>
## 3192 Vice President <NA>
## 3193 Vice President <NA>
## 3194 Vice President <NA>
## 3195 Vice President <NA>
## 3196 <NA> Vice President
## 3197 <NA> Employee
## 3198 <NA> Vice President
## 3199 <NA> Vice President
## 3200 <NA> Vice President
## 3201 <NA> Vice President
## 3202 <NA> Director
## 3203 <NA> Vice President
## 3204 <NA> Vice President
## 3205 <NA> Manager
## 3206 <NA> Employee
## 3207 <NA> Vice President
## 3208 <NA> Vice President
## 3209 <NA> Employee
## 3210 <NA> Vice President
## 3211 <NA> Vice President
## 3212 <NA> Vice President
## 3213 <NA> Vice President
## 3214 <NA> Vice President
## 3215 <NA> Vice President
## 3216 <NA> Vice President
## 3217 <NA> Employee
## 3218 <NA> Vice President
## 3219 <NA> Vice President
## 3220 <NA> Vice President
## 3221 <NA> Vice President
## 3222 <NA> Vice President
## 3223 <NA> Vice President
## 3224 <NA> Vice President
## 3225 <NA> Vice President
## 3226 <NA> Vice President
## 3227 <NA> Vice President
## 3228 <NA> Vice President
## 3229 <NA> Vice President
## 3230 <NA> Vice President
## 3231 <NA> Director
## 3232 <NA> Vice President
## 3233 <NA> Vice President
## 3234 <NA> Manager
## 3235 <NA> Employee
## 3236 <NA> Vice President
## 3237 <NA> Vice President
## 3238 <NA> Trader
## 3239 <NA> Manager
## 3240 <NA> Director
## 3241 <NA> Vice President
## 3242 <NA> Vice President
## 3243 <NA> Employee
## 3244 <NA> Employee
## 3245 <NA> Vice President
## 3246 <NA> Vice President
## 3247 <NA> Director
## 3248 <NA> Vice President
## 3249 <NA> Vice President
## 3250 <NA> Manager
## 3251 <NA> Employee
## 3252 <NA> Vice President
## 3253 <NA> Vice President
## 3254 <NA> Vice President
## 3255 <NA> Director
## 3256 <NA> Vice President
## 3257 <NA> Vice President
## 3258 <NA> Manager
## 3259 <NA> Employee
## 3260 <NA> Vice President
## 3261 <NA> Vice President
## 3262 <NA> Vice President
## 3263 <NA> Director
## 3264 <NA> Vice President
## 3265 <NA> Vice President
## 3266 <NA> Manager
## 3267 <NA> Employee
## 3268 <NA> Vice President
## 3269 <NA> Vice President
## 3270 <NA> Vice President
## 3271 <NA> Employee
## 3272 <NA> Vice President
## 3273 <NA> Vice President
## 3274 <NA> Vice President
## 3275 <NA> Employee
## 3276 <NA> Vice President
## 3277 <NA> Vice President
## 3278 <NA> Vice President
## 3279 <NA> Employee
## 3280 <NA> Vice President
## 3281 <NA> Vice President
## 3282 <NA> Vice President
## 3283 <NA> Employee
## 3284 <NA> Vice President
## 3285 <NA> Vice President
## 3286 <NA> Vice President
## 3287 <NA> Employee
## 3288 <NA> Vice President
## 3289 <NA> Vice President
## 3290 <NA> Employee
## 3291 <NA> Vice President
## 3292 <NA> Vice President
## 3293 <NA> Vice President
## 3294 <NA> Vice President
## 3295 <NA> Vice President
## 3296 <NA> Vice President
## 3297 <NA> Vice President
## 3298 <NA> Vice President
## 3299 <NA> Vice President
## 3300 <NA> Director
## 3301 <NA> Vice President
## 3302 <NA> Vice President
## 3303 <NA> Manager
## 3304 <NA> Employee
## 3305 <NA> Vice President
## 3306 <NA> Vice President
## 3307 <NA> Vice President
## 3308 <NA> Director
## 3309 <NA> Vice President
## 3310 <NA> Vice President
## 3311 <NA> Manager
## 3312 <NA> Employee
## 3313 <NA> Vice President
## 3314 <NA> Vice President
## 3315 <NA> Vice President
## 3316 <NA> Director
## 3317 <NA> Vice President
## 3318 <NA> Vice President
## 3319 <NA> Manager
## 3320 <NA> Employee
## 3321 <NA> Vice President
## 3322 <NA> Manager
## 3323 <NA> Trader
## 3324 <NA> Director
## 3325 <NA> Employee
## 3326 <NA> Employee
## 3327 <NA> Employee
## 3328 <NA> Manager
## 3329 <NA> Vice President
## 3330 <NA> Vice President
## 3331 <NA> Vice President
## 3332 <NA> Employee
## 3333 <NA> Vice President
## 3334 <NA> Vice President
## 3335 <NA> Employee
## 3336 <NA> Vice President
## 3337 <NA> Vice President
## 3338 <NA> Vice President
## 3339 <NA> Vice President
## 3340 <NA> Vice President
## 3341 <NA> Employee
## 3342 <NA> Vice President
## 3343 <NA> Vice President
## 3344 <NA> Vice President
## 3345 <NA> Employee
## 3346 <NA> Employee
## 3347 <NA> Employee
## 3348 <NA> Employee
## 3349 <NA> Employee
## 3350 <NA> Employee
## 3351 <NA> Employee
## 3352 <NA> Employee
## 3353 <NA> Employee
## 3354 <NA> Employee
## 3355 <NA> Employee
## 3356 <NA> Employee
## 3357 <NA> Employee
## 3358 <NA> Employee
## 3359 <NA> Employee
## 3360 <NA> Employee
## 3361 <NA> Vice President
## 3362 <NA> Employee
## 3363 Vice President Employee
## 3364 Vice President <NA>
## 3365 Vice President <NA>
## 3366 <NA> Employee
## 3367 <NA> Employee
## 3368 <NA> Employee
## 3369 <NA> Employee
## 3370 <NA> Employee
## 3371 <NA> Employee
## 3372 <NA> Employee
## 3373 <NA> Employee
## 3374 Vice President <NA>
## 3375 Vice President <NA>
## 3376 Vice President <NA>
## 3377 Vice President <NA>
## 3378 Vice President Employee
## 3379 Vice President <NA>
## 3380 Vice President <NA>
## 3381 Vice President <NA>
## 3382 Vice President <NA>
## 3383 Vice President <NA>
## 3384 Vice President <NA>
## 3385 Vice President <NA>
## 3386 Vice President <NA>
## 3387 Vice President <NA>
## 3388 Vice President <NA>
## 3389 Vice President Employee
## 3390 Vice President <NA>
## 3391 Vice President Employee
## 3392 <NA> Employee
## 3393 Vice President <NA>
## 3394 Vice President Employee
## 3395 Vice President <NA>
## 3396 Vice President <NA>
## 3397 Vice President <NA>
## 3398 Vice President <NA>
## 3399 Vice President <NA>
## 3400 Vice President <NA>
## 3401 Vice President Employee
## 3402 Vice President <NA>
## 3403 Vice President <NA>
## 3404 Vice President <NA>
## 3405 Vice President <NA>
## 3406 Vice President <NA>
## 3407 Vice President <NA>
## 3408 <NA> Employee
## 3409 Vice President Employee
## 3410 <NA> Employee
## 3411 Vice President Employee
## 3412 <NA> Employee
## 3413 <NA> Employee
## 3414 Employee Vice President
## 3415 Vice President Employee
## 3416 <NA> Employee
## 3417 <NA> Employee
## 3418 Vice President Employee
## 3419 <NA> Employee
## 3420 <NA> Employee
## 3421 <NA> Employee
## 3422 <NA> Vice President
## 3423 <NA> Manager
## 3424 <NA> Vice President
## 3425 <NA> Vice President
## 3426 Vice President Employee
## 3427 Vice President <NA>
## 3428 Vice President <NA>
## 3429 <NA> Employee
## 3430 <NA> Employee
## 3431 <NA> Employee
## 3432 <NA> Employee
## 3433 <NA> Vice President
## 3434 <NA> Employee
## 3435 <NA> Employee
## 3436 <NA> Employee
## 3437 Vice President Vice President
## 3438 Vice President Employee
## 3439 Vice President Employee
## 3440 <NA> Employee
## 3441 Vice President Employee
## 3442 Vice President <NA>
## 3443 Vice President Employee
## 3444 Vice President President
## 3445 Vice President Employee
## 3446 Vice President President
## 3447 <NA> Employee
## 3448 <NA> Vice President
## 3449 <NA> Employee
## 3450 <NA> Employee
## 3451 Vice President Employee
## 3452 <NA> Employee
## 3453 <NA> Director
## 3454 <NA> Employee
## 3455 <NA> Vice President
## 3456 <NA> Employee
## 3457 <NA> Vice President
## 3458 <NA> Director
## 3459 <NA> Employee
## 3460 <NA> Employee
## 3461 <NA> Employee
## 3462 <NA> Employee
## 3463 <NA> Employee
## 3464 Vice President Employee
## 3465 Vice President <NA>
## 3466 Vice President <NA>
## 3467 Vice President <NA>
## 3468 Vice President <NA>
## 3469 Vice President <NA>
## 3470 Vice President <NA>
## 3471 Vice President <NA>
## 3472 Vice President Employee
## 3473 Vice President <NA>
## 3474 Vice President <NA>
## 3475 Vice President <NA>
## 3476 Vice President Employee
## 3477 <NA> Vice President
## 3478 <NA> Employee
## 3479 <NA> Vice President
## 3480 <NA> Employee
## 3481 <NA> Director
## 3482 <NA> Employee
## 3483 <NA> Vice President
## 3484 <NA> Employee
## 3485 <NA> Vice President
## 3486 <NA> Director
## 3487 <NA> Employee
## 3488 <NA> Employee
## 3489 <NA> Director
## 3490 <NA> Employee
## 3491 <NA> Vice President
## 3492 <NA> Employee
## 3493 <NA> Vice President
## 3494 <NA> Director
## 3495 <NA> Employee
## 3496 Vice President <NA>
## 3497 Vice President Employee
## 3498 <NA> Vice President
## 3499 <NA> Employee
## 3500 <NA> Director
## 3501 <NA> Employee
## 3502 <NA> Employee
## 3503 <NA> Director
## 3504 <NA> Vice President
## 3505 <NA> Vice President
## 3506 <NA> Employee
## 3507 <NA> Director
## 3508 <NA> Employee
## 3509 <NA> Employee
## 3510 <NA> Director
## 3511 <NA> Vice President
## 3512 <NA> Vice President
## 3513 <NA> Employee
## 3514 <NA> Director
## 3515 <NA> Employee
## 3516 <NA> Employee
## 3517 <NA> Director
## 3518 <NA> Vice President
## 3519 <NA> Employee
## 3520 Vice President Employee
## 3521 Vice President Employee
## 3522 Vice President <NA>
## 3523 Vice President <NA>
## 3524 Vice President Employee
## 3525 Vice President <NA>
## 3526 Vice President <NA>
## 3527 Vice President <NA>
## 3528 Vice President <NA>
## 3529 Vice President <NA>
## 3530 Vice President <NA>
## 3531 <NA> Vice President
## 3532 <NA> Employee
## 3533 <NA> Employee
## 3534 Vice President <NA>
## 3535 Vice President <NA>
## 3536 Vice President Vice President
## 3537 Vice President Vice President
## 3538 Vice President Employee
## 3539 Vice President <NA>
## 3540 <NA> Vice President
## 3541 <NA> Vice President
## 3542 <NA> Employee
## 3543 Vice President Vice President
## 3544 Vice President Employee
## 3545 Vice President <NA>
## 3546 Vice President <NA>
## 3547 Vice President Vice President
## 3548 Vice President Employee
## 3549 Vice President <NA>
## 3550 Vice President <NA>
## 3551 <NA> Employee
## 3552 <NA> Employee
## 3553 <NA> Employee
## 3554 <NA> Employee
## 3555 <NA> Vice President
## 3556 <NA> Employee
## 3557 Vice President Employee
## 3558 <NA> Employee
## 3559 Vice President Employee
## 3560 Vice President Employee
## 3561 Vice President <NA>
## 3562 Vice President <NA>
## 3563 <NA> Employee
## 3564 <NA> Employee
## 3565 <NA> Vice President
## 3566 <NA> Employee
## 3567 <NA> Employee
## 3568 Vice President Employee
## 3569 Vice President Employee
## 3570 Vice President <NA>
## 3571 Vice President <NA>
## 3572 <NA> Employee
## 3573 <NA> Employee
## 3574 <NA> Employee
## 3575 Vice President Employee
## 3576 Vice President <NA>
## 3577 <NA> Employee
## 3578 <NA> Employee
## 3579 Employee Employee
## 3580 Employee Vice President
## 3581 Employee Vice President
## 3582 <NA> Vice President
## 3583 <NA> Employee
## 3584 <NA> Employee
## 3585 <NA> Employee
## 3586 Vice President Employee
## 3587 Vice President Employee
## 3588 Vice President <NA>
## 3589 Vice President Employee
## 3590 Vice President Employee
## 3591 <NA> Employee
## 3592 <NA> Vice President
## 3593 <NA> Employee
## 3594 <NA> Employee
## 3595 <NA> Employee
## 3596 <NA> Employee
## 3597 <NA> Employee
## 3598 Vice President Employee
## 3599 <NA> Vice President
## 3600 <NA> Employee
## 3601 <NA> Employee
## 3602 President Employee
## 3603 Employee Vice President
## 3604 Employee Vice President
## 3605 Employee Employee
## 3606 Employee Vice President
## 3607 Employee Employee
## 3608 Director Vice President
## 3609 Director Employee
## 3610 Director Employee
## 3611 Director Vice President
## 3612 Vice President <NA>
## 3613 Vice President Employee
## 3614 Vice President Employee
## 3615 Vice President Employee
## 3616 <NA> Vice President
## 3617 <NA> Employee
## 3618 <NA> Employee
## 3619 Employee Vice President
## 3620 Employee Employee
## 3621 Employee Vice President
## 3622 Employee Vice President
## 3623 <NA> Employee
## 3624 <NA> Employee
## 3625 <NA> Employee
## 3626 <NA> Employee
## 3627 <NA> Employee
## 3628 <NA> Employee
## 3629 <NA> Employee
## 3630 <NA> Vice President
## 3631 <NA> Employee
## 3632 <NA> Vice President
## 3633 <NA> Employee
## 3634 <NA> Vice President
## 3635 <NA> Employee
## 3636 <NA> Vice President
## 3637 Vice President Vice President
## 3638 Vice President Vice President
## 3639 Vice President Employee
## 3640 Vice President Employee
## 3641 Vice President <NA>
## 3642 Vice President <NA>
## 3643 Vice President <NA>
## 3644 Vice President <NA>
## 3645 Vice President <NA>
## 3646 Vice President Employee
## 3647 Vice President <NA>
## 3648 Vice President <NA>
## 3649 Vice President <NA>
## 3650 Vice President <NA>
## 3651 Vice President <NA>
## 3652 <NA> Employee
## 3653 <NA> Vice President
## 3654 Vice President <NA>
## 3655 Vice President <NA>
## 3656 Vice President <NA>
## 3657 Vice President <NA>
## 3658 Vice President <NA>
## 3659 Vice President Employee
## 3660 Vice President <NA>
## 3661 Vice President <NA>
## 3662 Vice President <NA>
## 3663 Vice President <NA>
## 3664 Vice President <NA>
## 3665 Vice President <NA>
## 3666 Vice President <NA>
## 3667 Vice President <NA>
## 3668 Vice President <NA>
## 3669 Vice President <NA>
## 3670 Vice President <NA>
## 3671 Vice President Employee
## 3672 Vice President <NA>
## 3673 Vice President <NA>
## 3674 Vice President <NA>
## 3675 Vice President <NA>
## 3676 Vice President <NA>
## 3677 Vice President <NA>
## 3678 <NA> Employee
## 3679 Vice President Employee
## 3680 <NA> Vice President
## 3681 <NA> Employee
## 3682 <NA> Employee
## 3683 <NA> Employee
## 3684 <NA> Employee
## 3685 <NA> Employee
## 3686 Vice President Employee
## 3687 Vice President Employee
## 3688 Vice President <NA>
## 3689 Vice President <NA>
## 3690 Vice President Employee
## 3691 Vice President <NA>
## 3692 Vice President <NA>
## 3693 Vice President Employee
## 3694 Vice President <NA>
## 3695 Vice President <NA>
## 3696 Vice President <NA>
## 3697 Vice President <NA>
## 3698 Vice President <NA>
## 3699 Vice President <NA>
## 3700 Vice President <NA>
## 3701 Vice President <NA>
## 3702 Vice President <NA>
## 3703 <NA> Employee
## 3704 <NA> Employee
## 3705 <NA> Employee
## 3706 <NA> Employee
## 3707 <NA> Employee
## 3708 <NA> Employee
## 3709 <NA> Employee
## 3710 <NA> Employee
## 3711 <NA> Employee
## 3712 <NA> Employee
## 3713 <NA> Employee
## 3714 <NA> Employee
## 3715 Vice President Employee
## 3716 <NA> Vice President
## 3717 <NA> Employee
## 3718 <NA> Employee
## 3719 Vice President <NA>
## 3720 Vice President Employee
## 3721 Vice President <NA>
## 3722 Vice President <NA>
## 3723 Vice President Employee
## 3724 Vice President <NA>
## 3725 Vice President <NA>
## 3726 <NA> Employee
## 3727 <NA> Employee
## 3728 <NA> Vice President
## 3729 <NA> Employee
## 3730 <NA> Employee
## 3731 <NA> Employee
## 3732 <NA> Employee
## 3733 <NA> Vice President
## 3734 <NA> Employee
## 3735 Vice President Employee
## 3736 Vice President <NA>
## 3737 Vice President <NA>
## 3738 Vice President <NA>
## 3739 Vice President <NA>
## 3740 Vice President Employee
## 3741 <NA> Employee
## 3742 <NA> Employee
## 3743 Vice President Employee
## 3744 <NA> Employee
## 3745 <NA> Employee
## 3746 <NA> Employee
## 3747 <NA> Employee
## 3748 Vice President Employee
## 3749 Vice President Employee
## 3750 Vice President <NA>
## 3751 <NA> Vice President
## 3752 <NA> Employee
## 3753 <NA> Employee
## 3754 <NA> Employee
## 3755 <NA> Employee
## 3756 <NA> Employee
## 3757 <NA> Employee
## 3758 <NA> Employee
## 3759 <NA> Employee
## 3760 <NA> Employee
## 3761 <NA> Employee
## 3762 <NA> Employee
## 3763 <NA> Employee
## 3764 <NA> Employee
## 3765 <NA> Employee
## 3766 Vice President Employee
## 3767 <NA> Employee
## 3768 <NA> Employee
## 3769 <NA> Employee
## 3770 <NA> Employee
## 3771 Vice President <NA>
## 3772 Vice President <NA>
## 3773 Vice President <NA>
## 3774 Vice President <NA>
## 3775 Vice President <NA>
## 3776 Vice President <NA>
## 3777 Vice President <NA>
## 3778 Vice President <NA>
## 3779 Vice President <NA>
## 3780 Vice President Employee
## 3781 Vice President <NA>
## 3782 Vice President <NA>
## 3783 Vice President <NA>
## 3784 Vice President <NA>
## 3785 Vice President <NA>
## 3786 Vice President <NA>
## 3787 Vice President <NA>
## 3788 Vice President <NA>
## 3789 Vice President <NA>
## 3790 Vice President <NA>
## 3791 Vice President <NA>
## 3792 Vice President <NA>
## 3793 Vice President <NA>
## 3794 Vice President <NA>
## 3795 Vice President Employee
## 3796 Vice President <NA>
## 3797 Vice President <NA>
## 3798 Vice President <NA>
## 3799 Vice President <NA>
## 3800 Vice President <NA>
## 3801 Vice President <NA>
## 3802 Employee <NA>
## 3803 Employee Employee
## 3804 Employee Employee
## 3805 <NA> Employee
## 3806 <NA> Director
## 3807 <NA> Employee
## 3808 <NA> Vice President
## 3809 <NA> Vice President
## 3810 <NA> Vice President
## 3811 <NA> Vice President
## 3812 <NA> Employee
## 3813 <NA> Director
## 3814 <NA> Employee
## 3815 <NA> Vice President
## 3816 <NA> Vice President
## 3817 <NA> Vice President
## 3818 <NA> Vice President
## 3819 Employee Employee
## 3820 <NA> Employee
## 3821 <NA> Employee
## 3822 <NA> Employee
## 3823 <NA> Employee
## 3824 <NA> Employee
## 3825 <NA> Employee
## 3826 <NA> Employee
## 3827 <NA> Employee
## 3828 Vice President <NA>
## 3829 Vice President <NA>
## 3830 Vice President Employee
## 3831 Vice President Employee
## 3832 <NA> Employee
## 3833 <NA> Vice President
## 3834 <NA> Employee
## 3835 <NA> Vice President
## 3836 Vice President Employee
## 3837 <NA> Employee
## 3838 <NA> Employee
## 3839 <NA> Employee
## 3840 <NA> Vice President
## 3841 <NA> Vice President
## 3842 Vice President Employee
## 3843 <NA> Employee
## 3844 <NA> Vice President
## 3845 <NA> Vice President
## 3846 <NA> Employee
## 3847 <NA> Employee
## 3848 <NA> Employee
## 3849 <NA> Employee
## 3850 <NA> Employee
## 3851 Vice President Employee
## 3852 <NA> Employee
## 3853 <NA> Vice President
## 3854 <NA> Vice President
## 3855 <NA> Employee
## 3856 <NA> Vice President
## 3857 <NA> Employee
## 3858 <NA> Vice President
## 3859 <NA> Vice President
## 3860 <NA> Director
## 3861 <NA> Employee
## 3862 <NA> Vice President
## 3863 <NA> Employee
## 3864 <NA> Employee
## 3865 <NA> Employee
## 3866 <NA> Employee
## 3867 <NA> Employee
## 3868 <NA> Employee
## 3869 <NA> Employee
## 3870 Vice President Employee
## 3871 Vice President Employee
## 3872 Vice President Employee
## 3873 Vice President Employee
## 3874 <NA> Employee
## 3875 <NA> Employee
## 3876 <NA> Employee
## 3877 <NA> Employee
## 3878 <NA> Employee
## 3879 <NA> Employee
## 3880 <NA> Vice President
## 3881 <NA> Vice President
## 3882 <NA> Employee
## 3883 <NA> Employee
## 3884 <NA> Employee
## 3885 <NA> Employee
## 3886 Vice President Employee
## 3887 <NA> Employee
## 3888 <NA> Vice President
## 3889 <NA> Employee
## 3890 <NA> Employee
## 3891 <NA> Vice President
## 3892 <NA> Vice President
## 3893 <NA> Employee
## 3894 <NA> Employee
## 3895 <NA> Vice President
## 3896 <NA> Employee
## 3897 Vice President <NA>
## 3898 Vice President <NA>
## 3899 Vice President <NA>
## 3900 Vice President Employee
## 3901 Vice President <NA>
## 3902 Vice President <NA>
## 3903 <NA> Employee
## 3904 <NA> Employee
## 3905 Vice President Employee
## 3906 <NA> Employee
## 3907 <NA> Employee
## 3908 <NA> Employee
## 3909 <NA> Employee
## 3910 Vice President Employee
## 3911 <NA> Employee
## 3912 <NA> Employee
## 3913 <NA> Employee
## 3914 <NA> President
## 3915 <NA> Vice President
## 3916 <NA> Employee
## 3917 Vice President Employee
## 3918 <NA> Employee
## 3919 Vice President <NA>
## 3920 Vice President Employee
## 3921 Vice President Employee
## 3922 Vice President Employee
## 3923 <NA> Employee
## 3924 <NA> Employee
## 3925 <NA> Employee
## 3926 <NA> Employee
## 3927 <NA> Employee
## 3928 <NA> Employee
## 3929 <NA> Employee
## 3930 <NA> Employee
## 3931 <NA> Employee
## 3932 <NA> Employee
## 3933 <NA> Employee
## 3934 Vice President Employee
## 3935 <NA> Employee
## 3936 <NA> Employee
## 3937 <NA> Employee
## 3938 <NA> Employee
## 3939 <NA> Employee
## 3940 <NA> Employee
## 3941 <NA> Employee
## 3942 <NA> Employee
## 3943 Vice President Employee
## 3944 Vice President <NA>
## 3945 Vice President <NA>
## 3946 Vice President <NA>
## 3947 Vice President <NA>
## 3948 Vice President Employee
## 3949 Vice President <NA>
## 3950 Vice President <NA>
## 3951 <NA> Vice President
## 3952 <NA> Employee
## 3953 <NA> Vice President
## 3954 <NA> Employee
## 3955 <NA> Employee
## 3956 <NA> Vice President
## 3957 <NA> Employee
## 3958 <NA> Vice President
## 3959 <NA> Employee
## 3960 <NA> Employee
## 3961 <NA> Employee
## 3962 Vice President <NA>
## 3963 Vice President <NA>
## 3964 Vice President <NA>
## 3965 Vice President <NA>
## 3966 Vice President <NA>
## 3967 Vice President <NA>
## 3968 Vice President Employee
## 3969 Vice President <NA>
## 3970 Vice President <NA>
## 3971 Vice President <NA>
## 3972 Vice President <NA>
## 3973 Vice President <NA>
## 3974 Vice President <NA>
## 3975 Vice President <NA>
## 3976 Vice President <NA>
## 3977 <NA> Employee
## 3978 <NA> Employee
## 3979 <NA> Employee
## 3980 Vice President <NA>
## 3981 Vice President <NA>
## 3982 Vice President <NA>
## 3983 Vice President <NA>
## 3984 Vice President <NA>
## 3985 Vice President <NA>
## 3986 Vice President <NA>
## 3987 Vice President <NA>
## 3988 <NA> Employee
## 3989 <NA> Employee
## 3990 <NA> Employee
## 3991 <NA> Employee
## 3992 <NA> Employee
## 3993 <NA> Employee
## 3994 <NA> Employee
## 3995 <NA> Employee
## 3996 <NA> Employee
## 3997 <NA> Employee
## 3998 <NA> Employee
## 3999 <NA> Employee
## 4000 Vice President <NA>
## 4001 Vice President <NA>
## 4002 Vice President Employee
## 4003 Vice President <NA>
## 4004 Vice President <NA>
## 4005 Vice President <NA>
## 4006 Vice President <NA>
## 4007 Vice President Employee
## 4008 Vice President <NA>
## 4009 Vice President <NA>
## 4010 Vice President <NA>
## 4011 Vice President <NA>
## 4012 Employee Employee
## 4013 <NA> Vice President
## 4014 <NA> Employee
## 4015 <NA> Employee
## 4016 <NA> Vice President
## 4017 <NA> Employee
## 4018 <NA> Employee
## 4019 Employee Employee
## 4020 Employee Employee
## 4021 Employee Vice President
## 4022 Employee Vice President
## 4023 <NA> Employee
## 4024 <NA> Employee
## 4025 <NA> Vice President
## 4026 <NA> Vice President
## 4027 Vice President Employee
## 4028 <NA> Employee
## 4029 <NA> Employee
## 4030 <NA> Vice President
## 4031 <NA> Employee
## 4032 <NA> Employee
## 4033 Vice President Employee
## 4034 Vice President Employee
## 4035 Vice President <NA>
## 4036 Vice President <NA>
## 4037 Vice President Employee
## 4038 Vice President <NA>
## 4039 Vice President <NA>
## 4040 <NA> Employee
## 4041 Vice President <NA>
## 4042 Vice President Employee
## 4043 Vice President Employee
## 4044 Vice President <NA>
## 4045 Vice President <NA>
## 4046 Vice President <NA>
## 4047 Vice President <NA>
## 4048 Vice President <NA>
## 4049 Vice President Employee
## 4050 Vice President <NA>
## 4051 Vice President <NA>
## 4052 Vice President <NA>
## 4053 Vice President <NA>
## 4054 Vice President <NA>
## 4055 Vice President <NA>
## 4056 Vice President <NA>
## 4057 <NA> Employee
## 4058 <NA> Employee
## 4059 Vice President <NA>
## 4060 Vice President Employee
## 4061 Vice President Employee
## 4062 <NA> Employee
## 4063 <NA> Employee
## 4064 <NA> Employee
## 4065 <NA> Employee
## 4066 <NA> Employee
## 4067 <NA> Employee
## 4068 <NA> Employee
## 4069 <NA> Employee
## 4070 Vice President Employee
## 4071 Vice President <NA>
## 4072 Vice President <NA>
## 4073 <NA> Employee
## 4074 <NA> Employee
## 4075 <NA> Employee
## 4076 <NA> Vice President
## 4077 <NA> Employee
## 4078 <NA> Employee
## 4079 Vice President Employee
## 4080 <NA> Employee
## 4081 <NA> Vice President
## 4082 <NA> Vice President
## 4083 <NA> Employee
## 4084 Vice President <NA>
## 4085 Vice President Employee
## 4086 Vice President Employee
## 4087 <NA> Employee
## 4088 <NA> Employee
## 4089 <NA> Vice President
## 4090 <NA> Employee
## 4091 <NA> Employee
## 4092 Vice President <NA>
## 4093 Vice President <NA>
## 4094 Vice President <NA>
## 4095 Vice President <NA>
## 4096 Vice President <NA>
## 4097 Vice President Employee
## 4098 Vice President <NA>
## 4099 Vice President <NA>
## 4100 Vice President <NA>
## 4101 Vice President <NA>
## 4102 Vice President <NA>
## 4103 Vice President <NA>
## 4104 Vice President <NA>
## 4105 <NA> Employee
## 4106 <NA> Employee
## 4107 <NA> Vice President
## 4108 <NA> Vice President
## 4109 <NA> Employee
## 4110 <NA> Employee
## 4111 <NA> Employee
## 4112 <NA> Employee
## 4113 Vice President <NA>
## 4114 Vice President <NA>
## 4115 Vice President <NA>
## 4116 Vice President <NA>
## 4117 Vice President <NA>
## 4118 Vice President Employee
## 4119 Vice President <NA>
## 4120 Vice President <NA>
## 4121 Vice President <NA>
## 4122 Vice President <NA>
## 4123 Vice President <NA>
## 4124 Vice President <NA>
## 4125 Vice President <NA>
## 4126 <NA> Vice President
## 4127 <NA> Employee
## 4128 <NA> Employee
## 4129 Vice President <NA>
## 4130 Vice President <NA>
## 4131 Vice President <NA>
## 4132 Vice President <NA>
## 4133 Vice President Employee
## 4134 Vice President Employee
## 4135 Vice President <NA>
## 4136 Vice President <NA>
## 4137 Vice President <NA>
## 4138 Vice President <NA>
## 4139 Vice President <NA>
## 4140 Vice President Employee
## 4141 Vice President <NA>
## 4142 Vice President <NA>
## 4143 Vice President <NA>
## 4144 Vice President <NA>
## 4145 Vice President <NA>
## 4146 Vice President <NA>
## 4147 Vice President <NA>
## 4148 Vice President Employee
## 4149 <NA> Employee
## 4150 Vice President <NA>
## 4151 Vice President Employee
## 4152 Vice President <NA>
## 4153 Vice President Employee
## 4154 <NA> Employee
## 4155 <NA> Employee
## 4156 <NA> Employee
## 4157 Vice President Employee
## 4158 Vice President <NA>
## 4159 Vice President Employee
## 4160 Vice President Employee
## 4161 <NA> Employee
## 4162 <NA> Employee
## 4163 Manager Employee
## 4164 Manager <NA>
## 4165 <NA> Vice President
## 4166 <NA> Employee
## 4167 <NA> Employee
## 4168 Vice President Vice President
## 4169 Vice President Vice President
## 4170 Vice President Employee
## 4171 Vice President Employee
## 4172 Vice President Employee
## 4173 <NA> Employee
## 4174 <NA> Vice President
## 4175 <NA> Employee
## 4176 <NA> Vice President
## 4177 <NA> Employee
## 4178 <NA> Employee
## 4179 <NA> Employee
## 4180 <NA> Vice President
## 4181 <NA> Employee
## 4182 <NA> Employee
## 4183 <NA> Employee
## 4184 <NA> Employee
## 4185 <NA> Vice President
## 4186 <NA> Manager
## 4187 <NA> Employee
## 4188 Vice President Employee
## 4189 <NA> Employee
## 4190 <NA> Employee
## 4191 <NA> Employee
## 4192 <NA> Employee
## 4193 <NA> Vice President
## 4194 <NA> Employee
## 4195 <NA> Employee
## 4196 Vice President Employee
## 4197 <NA> Employee
## 4198 Vice President Employee
## 4199 <NA> Employee
## 4200 <NA> Employee
## 4201 <NA> Employee
## 4202 <NA> Employee
## 4203 <NA> Employee
## 4204 <NA> Vice President
## 4205 <NA> Employee
## 4206 Vice President <NA>
## 4207 Vice President <NA>
## 4208 Vice President <NA>
## 4209 Vice President <NA>
## 4210 Vice President <NA>
## 4211 Vice President Employee
## 4212 Vice President <NA>
## 4213 Vice President <NA>
## 4214 Vice President <NA>
## 4215 Vice President <NA>
## 4216 Vice President <NA>
## 4217 Vice President <NA>
## 4218 Vice President <NA>
## 4219 Vice President Employee
## 4220 <NA> Employee
## 4221 <NA> Employee
## 4222 <NA> Vice President
## 4223 Vice President Employee
## 4224 Vice President Employee
## 4225 <NA> Employee
## 4226 <NA> Employee
## 4227 <NA> Employee
## 4228 <NA> Employee
## 4229 <NA> Employee
## 4230 <NA> Employee
## 4231 <NA> Employee
## 4232 <NA> Employee
## 4233 <NA> Employee
## 4234 <NA> Employee
## 4235 <NA> Vice President
## 4236 <NA> Employee
## 4237 <NA> Vice President
## 4238 <NA> Employee
## 4239 <NA> Employee
## 4240 <NA> Employee
## 4241 Vice President <NA>
## 4242 Vice President Employee
## 4243 Vice President Employee
## 4244 <NA> Employee
## 4245 <NA> Employee
## 4246 <NA> Employee
## 4247 <NA> Vice President
## 4248 <NA> Employee
## 4249 <NA> Employee
## 4250 <NA> Employee
## 4251 <NA> Employee
## 4252 <NA> Vice President
## 4253 <NA> Vice President
## 4254 <NA> Employee
## 4255 <NA> Employee
## 4256 <NA> Employee
## 4257 Vice President <NA>
## 4258 Vice President Employee
## 4259 Vice President Employee
## 4260 Vice President Employee
## 4261 <NA> Employee
## 4262 <NA> Employee
## 4263 Vice President Employee
## 4264 Vice President <NA>
## 4265 Vice President <NA>
## 4266 Vice President <NA>
## 4267 Vice President <NA>
## 4268 Vice President <NA>
## 4269 Vice President Employee
## 4270 Vice President <NA>
## 4271 Vice President <NA>
## 4272 Vice President <NA>
## 4273 Vice President <NA>
## 4274 Vice President <NA>
## 4275 Vice President <NA>
## 4276 Vice President <NA>
## 4277 Vice President Employee
## 4278 Vice President Employee
## 4279 <NA> Employee
## 4280 <NA> Employee
## 4281 <NA> Director
## 4282 <NA> Vice President
## 4283 <NA> Employee
## 4284 <NA> Vice President
## 4285 <NA> Employee
## 4286 <NA> Vice President
## 4287 <NA> Vice President
## 4288 <NA> Employee
## 4289 <NA> Employee
## 4290 <NA> Employee
## 4291 Vice President Employee
## 4292 Vice President <NA>
## 4293 Vice President <NA>
## 4294 Vice President <NA>
## 4295 Vice President <NA>
## 4296 Vice President <NA>
## 4297 Vice President <NA>
## 4298 Vice President <NA>
## 4299 Vice President Employee
## 4300 Vice President Vice President
## 4301 Vice President <NA>
## 4302 Vice President <NA>
## 4303 Vice President Vice President
## 4304 Vice President <NA>
## 4305 Vice President <NA>
## 4306 Vice President <NA>
## 4307 Vice President <NA>
## 4308 Vice President <NA>
## 4309 Vice President <NA>
## 4310 Vice President <NA>
## 4311 Vice President <NA>
## 4312 Vice President <NA>
## 4313 Vice President <NA>
## 4314 Vice President <NA>
## 4315 Vice President <NA>
## 4316 Vice President <NA>
## 4317 Vice President <NA>
## 4318 Vice President <NA>
## 4319 Vice President <NA>
## 4320 Vice President Employee
## 4321 Vice President <NA>
## 4322 Vice President <NA>
## 4323 Vice President <NA>
## 4324 Vice President <NA>
## 4325 Vice President <NA>
## 4326 Vice President <NA>
## 4327 Vice President <NA>
## 4328 Vice President <NA>
## 4329 Vice President <NA>
## 4330 Vice President <NA>
## 4331 Vice President Employee
## 4332 <NA> Employee
## 4333 <NA> Employee
## 4334 <NA> Vice President
## 4335 <NA> Employee
## 4336 <NA> Director
## 4337 <NA> Employee
## 4338 <NA> Manager
## 4339 <NA> Vice President
## 4340 <NA> Employee
## 4341 Vice President <NA>
## 4342 Vice President <NA>
## 4343 Vice President <NA>
## 4344 Vice President <NA>
## 4345 Vice President <NA>
## 4346 Vice President Employee
## 4347 Vice President <NA>
## 4348 Vice President <NA>
## 4349 Vice President <NA>
## 4350 Vice President <NA>
## 4351 Vice President <NA>
## 4352 Vice President <NA>
## 4353 Vice President <NA>
## 4354 <NA> Employee
## 4355 <NA> Employee
## 4356 <NA> Employee
## 4357 <NA> Employee
## 4358 <NA> Vice President
## 4359 <NA> Vice President
## 4360 <NA> Employee
## 4361 <NA> Employee
## 4362 <NA> Vice President
## 4363 <NA> Vice President
## 4364 <NA> Employee
## 4365 <NA> Employee
## 4366 <NA> Employee
## 4367 <NA> Employee
## 4368 <NA> Employee
## 4369 <NA> Vice President
## 4370 <NA> Vice President
## 4371 <NA> Employee
## 4372 <NA> Vice President
## 4373 <NA> Vice President
## 4374 <NA> Employee
## 4375 <NA> Employee
## 4376 <NA> Employee
## 4377 <NA> Vice President
## 4378 <NA> Vice President
## 4379 <NA> Vice President
## 4380 <NA> Vice President
## 4381 <NA> Vice President
## 4382 <NA> Vice President
## 4383 <NA> Vice President
## 4384 <NA> Employee
## 4385 <NA> Employee
## 4386 <NA> Employee
## 4387 <NA> Employee
## 4388 <NA> Vice President
## 4389 <NA> Vice President
## 4390 <NA> Employee
## 4391 <NA> Employee
## 4392 <NA> Employee
## 4393 <NA> Employee
## 4394 <NA> Employee
## 4395 Vice President Employee
## 4396 Vice President <NA>
## 4397 Vice President <NA>
## 4398 <NA> Employee
## 4399 <NA> Employee
## 4400 <NA> Employee
## 4401 <NA> Employee
## 4402 <NA> Vice President
## 4403 <NA> Vice President
## 4404 <NA> Employee
## 4405 <NA> Employee
## 4406 <NA> Employee
## 4407 Vice President <NA>
## 4408 Vice President <NA>
## 4409 Vice President <NA>
## 4410 Vice President <NA>
## 4411 Vice President <NA>
## 4412 Vice President <NA>
## 4413 Vice President <NA>
## 4414 Vice President <NA>
## 4415 Vice President <NA>
## 4416 Vice President <NA>
## 4417 Vice President Employee
## 4418 Vice President <NA>
## 4419 Vice President <NA>
## 4420 Vice President <NA>
## 4421 Vice President <NA>
## 4422 Vice President Employee
## 4423 Vice President <NA>
## 4424 Vice President <NA>
## 4425 Vice President <NA>
## 4426 Vice President <NA>
## 4427 <NA> Employee
## 4428 <NA> Employee
## 4429 <NA> Employee
## 4430 <NA> Employee
## 4431 <NA> Employee
## 4432 <NA> Employee
## 4433 <NA> Employee
## 4434 <NA> Employee
## 4435 <NA> Employee
## 4436 <NA> Employee
## 4437 Vice President Employee
## 4438 Vice President Employee
## 4439 <NA> Employee
## 4440 Vice President Employee
## 4441 Vice President <NA>
## 4442 Vice President <NA>
## 4443 <NA> Employee
## 4444 <NA> Employee
## 4445 <NA> Employee
## 4446 <NA> Employee
## 4447 <NA> Employee
## 4448 <NA> Employee
## 4449 <NA> Employee
## 4450 Vice President <NA>
## 4451 Vice President <NA>
## 4452 Vice President <NA>
## 4453 Vice President Employee
## 4454 Vice President <NA>
## 4455 Vice President <NA>
## 4456 Vice President <NA>
## 4457 Vice President Employee
## 4458 Vice President <NA>
## 4459 Vice President <NA>
## 4460 <NA> Employee
## 4461 <NA> Employee
## 4462 <NA> Vice President
## 4463 <NA> Employee
## 4464 Vice President <NA>
## 4465 Vice President <NA>
## 4466 Vice President <NA>
## 4467 Vice President <NA>
## 4468 Vice President <NA>
## 4469 Vice President Employee
## 4470 Vice President <NA>
## 4471 Vice President <NA>
## 4472 Vice President <NA>
## 4473 Vice President <NA>
## 4474 Vice President <NA>
## 4475 Vice President <NA>
## 4476 Vice President <NA>
## 4477 <NA> Employee
## 4478 <NA> Vice President
## 4479 <NA> Employee
## 4480 <NA> Vice President
## 4481 <NA> Employee
## 4482 <NA> Vice President
## 4483 <NA> Employee
## 4484 <NA> Vice President
## 4485 <NA> Employee
## 4486 <NA> Vice President
## 4487 <NA> Vice President
## 4488 <NA> Employee
## 4489 <NA> Employee
## 4490 <NA> Employee
## 4491 <NA> Employee
## 4492 <NA> Employee
## 4493 <NA> Employee
## 4494 <NA> Employee
## 4495 <NA> Employee
## 4496 <NA> Employee
## 4497 <NA> Employee
## 4498 <NA> Employee
## 4499 <NA> Employee
## 4500 <NA> Employee
## 4501 <NA> Employee
## 4502 <NA> Vice President
## 4503 <NA> Employee
## 4504 Vice President Employee
## 4505 <NA> Vice President
## 4506 <NA> Vice President
## 4507 <NA> Employee
## 4508 <NA> Vice President
## 4509 <NA> Employee
## 4510 <NA> Vice President
## 4511 Vice President <NA>
## 4512 Vice President <NA>
## 4513 Vice President <NA>
## 4514 Vice President <NA>
## 4515 Vice President <NA>
## 4516 Vice President Employee
## 4517 Vice President <NA>
## 4518 Vice President <NA>
## 4519 Vice President <NA>
## 4520 Vice President <NA>
## 4521 Vice President <NA>
## 4522 Vice President <NA>
## 4523 Vice President <NA>
## 4524 Vice President Employee
## 4525 Vice President <NA>
## 4526 Vice President <NA>
## 4527 Vice President <NA>
## 4528 Vice President <NA>
## 4529 <NA> Employee
## 4530 <NA> Vice President
## 4531 <NA> Vice President
## 4532 <NA> Employee
## 4533 Vice President <NA>
## 4534 Vice President <NA>
## 4535 Vice President <NA>
## 4536 Vice President <NA>
## 4537 Vice President <NA>
## 4538 Vice President Employee
## 4539 Vice President <NA>
## 4540 Vice President <NA>
## 4541 Vice President <NA>
## 4542 Vice President <NA>
## 4543 Vice President <NA>
## 4544 Vice President <NA>
## 4545 Vice President <NA>
## 4546 <NA> Employee
## 4547 Director Employee
## 4548 Vice President Employee
## 4549 <NA> Employee
## 4550 Vice President Employee
## 4551 Employee <NA>
## 4552 Employee <NA>
## 4553 Employee <NA>
## 4554 Employee <NA>
## 4555 Employee <NA>
## 4556 Employee <NA>
## 4557 Employee <NA>
## 4558 Employee <NA>
## 4559 Employee <NA>
## 4560 Employee <NA>
## 4561 Employee <NA>
## 4562 Employee <NA>
## 4563 Employee <NA>
## 4564 Employee Vice President
## 4565 Employee <NA>
## 4566 Employee Vice President
## 4567 Employee Vice President
## 4568 Employee <NA>
## 4569 Employee <NA>
## 4570 Employee <NA>
## 4571 Employee <NA>
## 4572 Employee <NA>
## 4573 Employee <NA>
## 4574 Employee <NA>
## 4575 Employee <NA>
## 4576 Employee <NA>
## 4577 Employee <NA>
## 4578 Employee <NA>
## 4579 Employee Vice President
## 4580 Employee Vice President
## 4581 Employee Vice President
## 4582 Employee <NA>
## 4583 Employee <NA>
## 4584 Employee Vice President
## 4585 Employee <NA>
## 4586 Employee Vice President
## 4587 Employee <NA>
## 4588 Employee <NA>
## 4589 Employee <NA>
## 4590 Employee <NA>
## 4591 Employee <NA>
## 4592 Employee Vice President
## 4593 Employee <NA>
## 4594 Employee <NA>
## 4595 Employee <NA>
## 4596 Employee Vice President
## 4597 Employee Vice President
## 4598 Employee Vice President
## 4599 Employee <NA>
## 4600 Employee <NA>
## 4601 Employee <NA>
## 4602 Employee Vice President
## 4603 Employee Vice President
## 4604 Employee Vice President
## 4605 Employee Vice President
## 4606 Employee Vice President
## 4607 Employee <NA>
## 4608 Employee Vice President
## 4609 Employee Vice President
## 4610 Employee Vice President
## 4611 Employee <NA>
## 4612 Employee <NA>
## 4613 Employee <NA>
## 4614 Employee <NA>
## 4615 Employee Vice President
## 4616 Employee Vice President
## 4617 Employee Vice President
## 4618 Employee <NA>
## 4619 Employee <NA>
## 4620 Employee <NA>
## 4621 Employee <NA>
## 4622 Employee <NA>
## 4623 Employee <NA>
## 4624 Employee Employee
## 4625 Employee Vice President
## 4626 Employee Vice President
## 4627 Employee Vice President
## 4628 Employee Vice President
## 4629 Employee Vice President
## 4630 Employee Vice President
## 4631 Employee Vice President
## 4632 Employee Vice President
## 4633 Employee Vice President
## 4634 Employee <NA>
## 4635 Employee Vice President
## 4636 Employee Vice President
## 4637 Employee <NA>
## 4638 Employee President
## 4639 Employee <NA>
## 4640 Employee <NA>
## 4641 Employee <NA>
## 4642 Employee <NA>
## 4643 Employee <NA>
## 4644 Employee <NA>
## 4645 Employee <NA>
## 4646 Employee <NA>
## 4647 Employee <NA>
## 4648 Employee <NA>
## 4649 Employee <NA>
## 4650 Employee <NA>
## 4651 Employee <NA>
## 4652 Employee <NA>
## 4653 Employee <NA>
## 4654 Employee <NA>
## 4655 Employee <NA>
## 4656 Employee <NA>
## 4657 Employee <NA>
## 4658 Employee <NA>
## 4659 Employee <NA>
## 4660 Employee <NA>
## 4661 Employee <NA>
## 4662 Employee <NA>
## 4663 Employee <NA>
## 4664 Employee <NA>
## 4665 Employee <NA>
## 4666 Employee Vice President
## 4667 Employee Vice President
## 4668 Employee Vice President
## 4669 Employee Vice President
## 4670 Employee <NA>
## 4671 Employee Vice President
## 4672 Employee <NA>
## 4673 Employee Vice President
## 4674 Employee Vice President
## 4675 Employee <NA>
## 4676 Employee Vice President
## 4677 Employee Vice President
## 4678 Employee <NA>
## 4679 Employee <NA>
## 4680 Employee <NA>
## 4681 Employee Vice President
## 4682 Employee <NA>
## 4683 Employee <NA>
## 4684 Employee <NA>
## 4685 Employee Vice President
## 4686 Employee Vice President
## 4687 Employee <NA>
## 4688 Employee <NA>
## 4689 Employee <NA>
## 4690 Employee <NA>
## 4691 Employee <NA>
## 4692 Employee <NA>
## 4693 Employee <NA>
## 4694 Employee <NA>
## 4695 Employee <NA>
## 4696 Employee <NA>
## 4697 Employee <NA>
## 4698 Employee <NA>
## 4699 Employee <NA>
## 4700 Employee Vice President
## 4701 Employee Vice President
## 4702 Employee Vice President
## 4703 Employee <NA>
## 4704 Employee <NA>
## 4705 Employee <NA>
## 4706 Employee <NA>
## 4707 Employee <NA>
## 4708 Employee <NA>
## 4709 Employee <NA>
## 4710 Employee <NA>
## 4711 Employee <NA>
## 4712 Employee <NA>
## 4713 Employee <NA>
## 4714 Employee <NA>
## 4715 Employee <NA>
## 4716 Employee <NA>
## 4717 Employee <NA>
## 4718 Employee <NA>
## 4719 Employee Vice President
## 4720 Employee Vice President
## 4721 Employee <NA>
## 4722 Employee <NA>
## 4723 Employee <NA>
## 4724 Employee <NA>
## 4725 Employee <NA>
## 4726 Employee Vice President
## 4727 Employee Vice President
## 4728 Employee <NA>
## 4729 Employee <NA>
## 4730 Employee Vice President
## 4731 Employee <NA>
## 4732 Employee <NA>
## 4733 Employee <NA>
## 4734 Employee <NA>
## 4735 Employee <NA>
## 4736 Employee <NA>
## 4737 Employee <NA>
## 4738 Employee <NA>
## 4739 Employee <NA>
## 4740 Employee <NA>
## 4741 Employee <NA>
## 4742 Employee <NA>
## 4743 Employee <NA>
## 4744 Employee <NA>
## 4745 Employee <NA>
## 4746 Employee <NA>
## 4747 Employee <NA>
## 4748 Employee <NA>
## 4749 Employee <NA>
## 4750 Employee <NA>
## 4751 Employee <NA>
## 4752 Employee <NA>
## 4753 Employee <NA>
## 4754 Employee <NA>
## 4755 Employee <NA>
## 4756 Employee <NA>
## 4757 Employee <NA>
## 4758 Employee <NA>
## 4759 Employee <NA>
## 4760 Employee <NA>
## 4761 Employee <NA>
## 4762 Employee <NA>
## 4763 Employee <NA>
## 4764 Employee <NA>
## 4765 Employee <NA>
## 4766 Employee <NA>
## 4767 Employee <NA>
## 4768 Employee <NA>
## 4769 Employee Vice President
## 4770 Employee Vice President
## 4771 Employee <NA>
## 4772 Employee <NA>
## 4773 Employee <NA>
## 4774 Employee <NA>
## 4775 Employee <NA>
## 4776 Employee <NA>
## 4777 Employee <NA>
## 4778 Employee Vice President
## 4779 Employee President
## 4780 Employee <NA>
## 4781 Employee <NA>
## 4782 Employee <NA>
## 4783 Employee Vice President
## 4784 Employee <NA>
## 4785 Employee Vice President
## 4786 Employee <NA>
## 4787 Employee <NA>
## 4788 Employee <NA>
## 4789 Employee <NA>
## 4790 Employee <NA>
## 4791 Employee <NA>
## 4792 Employee <NA>
## 4793 Employee <NA>
## 4794 Employee <NA>
## 4795 Employee <NA>
## 4796 Employee <NA>
## 4797 Employee <NA>
## 4798 Employee <NA>
## 4799 Employee <NA>
## 4800 Employee <NA>
## 4801 Employee <NA>
## 4802 Employee <NA>
## 4803 Employee Vice President
## 4804 Employee <NA>
## 4805 Employee Vice President
## 4806 Employee <NA>
## 4807 Employee <NA>
## 4808 Employee <NA>
## 4809 Employee <NA>
## 4810 Employee <NA>
## 4811 Employee <NA>
## 4812 Employee <NA>
## 4813 Employee <NA>
## 4814 Employee <NA>
## 4815 Employee Vice President
## 4816 Employee Vice President
## 4817 Employee Vice President
## 4818 Employee Vice President
## 4819 Employee <NA>
## 4820 Employee Vice President
## 4821 Employee <NA>
## 4822 Employee <NA>
## 4823 Employee <NA>
## 4824 Employee <NA>
## 4825 Employee <NA>
## 4826 Employee <NA>
## 4827 Employee <NA>
## 4828 Employee <NA>
## 4829 Employee <NA>
## 4830 Employee Vice President
## 4831 Employee <NA>
## 4832 Employee <NA>
## 4833 Employee <NA>
## 4834 Employee <NA>
## 4835 Employee <NA>
## 4836 Employee <NA>
## 4837 Employee <NA>
## 4838 Employee <NA>
## 4839 Employee <NA>
## 4840 Employee <NA>
## 4841 Employee <NA>
## 4842 Employee <NA>
## 4843 Employee <NA>
## 4844 Employee <NA>
## 4845 Employee <NA>
## 4846 Employee <NA>
## 4847 Employee <NA>
## 4848 Employee <NA>
## 4849 Employee <NA>
## 4850 Employee <NA>
## 4851 Employee <NA>
## 4852 Employee <NA>
## 4853 Employee <NA>
## 4854 Employee <NA>
## 4855 Employee <NA>
## 4856 Employee Vice President
## 4857 Employee Vice President
## 4858 Employee <NA>
## 4859 Employee <NA>
## 4860 Employee <NA>
## 4861 Employee <NA>
## 4862 Employee <NA>
## 4863 Employee <NA>
## 4864 Employee <NA>
## 4865 Employee <NA>
## 4866 Employee <NA>
## 4867 Employee <NA>
## 4868 Employee <NA>
## 4869 Employee <NA>
## 4870 Employee Vice President
## 4871 Employee Vice President
## 4872 Employee <NA>
## 4873 Employee <NA>
## 4874 Employee <NA>
## 4875 Employee <NA>
## 4876 Employee <NA>
## 4877 Employee <NA>
## 4878 Employee <NA>
## 4879 Employee <NA>
## 4880 Employee <NA>
## 4881 Employee Vice President
## 4882 Employee Vice President
## 4883 Employee <NA>
## 4884 Employee <NA>
## 4885 Employee <NA>
## 4886 Employee <NA>
## 4887 Employee <NA>
## 4888 Employee <NA>
## 4889 Employee <NA>
## 4890 Employee <NA>
## 4891 Employee <NA>
## 4892 Employee <NA>
## 4893 Employee <NA>
## 4894 Employee <NA>
## 4895 Employee <NA>
## 4896 Employee <NA>
## 4897 Employee Vice President
## 4898 Employee <NA>
## 4899 Employee <NA>
## 4900 Employee <NA>
## 4901 Employee <NA>
## 4902 Employee Vice President
## 4903 Employee <NA>
## 4904 Employee <NA>
## 4905 Employee <NA>
## 4906 Employee Employee
## 4907 Employee Vice President
## 4908 Employee <NA>
## 4909 Employee <NA>
## 4910 Employee <NA>
## 4911 Employee Vice President
## 4912 Employee <NA>
## 4913 Employee <NA>
## 4914 Employee <NA>
## 4915 Employee <NA>
## 4916 Employee Vice President
## 4917 Employee <NA>
## 4918 Employee <NA>
## 4919 Employee Vice President
## 4920 Employee <NA>
## 4921 Employee <NA>
## 4922 Employee Employee
## 4923 Employee Vice President
## 4924 Employee <NA>
## 4925 Employee Employee
## 4926 Employee <NA>
## 4927 Employee <NA>
## 4928 Employee Vice President
## 4929 Employee <NA>
## 4930 Employee Vice President
## 4931 Employee <NA>
## 4932 Employee <NA>
## 4933 Employee <NA>
## 4934 Employee <NA>
## 4935 Employee <NA>
## 4936 Employee <NA>
## 4937 Employee <NA>
## 4938 Employee Vice President
## 4939 Employee <NA>
## 4940 Employee <NA>
## 4941 Employee <NA>
## 4942 Employee <NA>
## 4943 Employee <NA>
## 4944 Employee Vice President
## 4945 Employee <NA>
## 4946 Employee <NA>
## 4947 Employee <NA>
## 4948 Employee <NA>
## 4949 Employee <NA>
## 4950 Employee <NA>
## 4951 Employee Vice President
## 4952 Employee Vice President
## 4953 Employee <NA>
## 4954 Employee <NA>
## 4955 Employee <NA>
## 4956 Employee <NA>
## 4957 Employee <NA>
## 4958 Employee <NA>
## 4959 Employee Vice President
## 4960 Employee Vice President
## 4961 Employee <NA>
## 4962 Employee <NA>
## 4963 Employee <NA>
## 4964 Employee <NA>
## 4965 Employee <NA>
## 4966 Employee <NA>
## 4967 Employee <NA>
## 4968 Employee <NA>
## 4969 Employee <NA>
## 4970 Employee <NA>
## 4971 Employee <NA>
## 4972 Employee <NA>
## 4973 Employee <NA>
## 4974 Employee <NA>
## 4975 Employee <NA>
## 4976 Employee Vice President
## 4977 Employee <NA>
## 4978 Employee <NA>
## 4979 Employee <NA>
## 4980 Employee <NA>
## 4981 Employee <NA>
## 4982 Employee Vice President
## 4983 Employee <NA>
## 4984 Employee <NA>
## 4985 Employee <NA>
## 4986 Employee <NA>
## 4987 Employee <NA>
## 4988 Employee <NA>
## 4989 Employee Vice President
## 4990 Employee Vice President
## 4991 Employee <NA>
## 4992 Employee <NA>
## 4993 Employee <NA>
## 4994 Employee <NA>
## 4995 Employee <NA>
## 4996 Employee <NA>
## 4997 Employee Vice President
## 4998 Employee <NA>
## 4999 Employee <NA>
## 5000 Employee <NA>
## 5001 Employee <NA>
## 5002 Employee <NA>
## 5003 Employee Vice President
## 5004 Employee <NA>
## 5005 Employee <NA>
## 5006 Employee <NA>
## 5007 Employee <NA>
## 5008 Employee <NA>
## 5009 Employee Vice President
## 5010 Employee <NA>
## 5011 Employee <NA>
## 5012 Employee <NA>
## 5013 Employee <NA>
## 5014 Employee <NA>
## 5015 Employee <NA>
## 5016 Employee Vice President
## 5017 Employee <NA>
## 5018 Employee <NA>
## 5019 Employee <NA>
## 5020 Employee <NA>
## 5021 Employee <NA>
## 5022 Employee <NA>
## 5023 Employee <NA>
## 5024 Employee Vice President
## 5025 Employee <NA>
## 5026 Employee <NA>
## 5027 Employee <NA>
## 5028 Employee <NA>
## 5029 Employee <NA>
## 5030 Employee <NA>
## 5031 Employee <NA>
## 5032 Employee <NA>
## 5033 Employee <NA>
## 5034 Employee <NA>
## 5035 Employee <NA>
## 5036 Employee <NA>
## 5037 Employee <NA>
## 5038 Employee <NA>
## 5039 Employee <NA>
## 5040 Employee <NA>
## 5041 Employee <NA>
## 5042 Employee <NA>
## 5043 Employee <NA>
## 5044 Employee <NA>
## 5045 Employee <NA>
## 5046 Employee <NA>
## 5047 Employee <NA>
## 5048 Employee <NA>
## 5049 Employee <NA>
## 5050 Employee <NA>
## 5051 Employee <NA>
## 5052 Employee <NA>
## 5053 Employee <NA>
## 5054 Employee <NA>
## 5055 Employee <NA>
## 5056 Employee <NA>
## 5057 Employee Vice President
## 5058 Employee <NA>
## 5059 Employee <NA>
## 5060 Employee Vice President
## 5061 Employee <NA>
## 5062 Employee <NA>
## 5063 Employee <NA>
## 5064 Employee <NA>
## 5065 Employee <NA>
## 5066 Employee <NA>
## 5067 Employee <NA>
## 5068 Employee <NA>
## 5069 Employee Vice President
## 5070 Employee Vice President
## 5071 Employee <NA>
## 5072 Employee <NA>
## 5073 Employee <NA>
## 5074 Employee <NA>
## 5075 Employee Vice President
## 5076 Employee <NA>
## 5077 Employee <NA>
## 5078 Employee Vice President
## 5079 Employee Vice President
## 5080 Employee <NA>
## 5081 Employee <NA>
## 5082 Employee <NA>
## 5083 Employee <NA>
## 5084 Employee <NA>
## 5085 Employee <NA>
## 5086 Employee <NA>
## 5087 Employee <NA>
## 5088 Employee <NA>
## 5089 Employee <NA>
## 5090 Employee <NA>
## 5091 Employee Vice President
## 5092 Employee Vice President
## 5093 Employee <NA>
## 5094 Employee <NA>
## 5095 Employee <NA>
## 5096 Employee <NA>
## 5097 Employee <NA>
## 5098 Employee <NA>
## 5099 Employee Vice President
## 5100 Employee <NA>
## 5101 Employee <NA>
## 5102 Employee <NA>
## 5103 Employee <NA>
## 5104 Employee <NA>
## 5105 Employee <NA>
## 5106 Employee <NA>
## 5107 Employee <NA>
## 5108 Employee <NA>
## 5109 Employee <NA>
## 5110 Employee <NA>
## 5111 Employee <NA>
## 5112 Employee <NA>
## 5113 Employee <NA>
## 5114 Employee <NA>
## 5115 Employee Vice President
## 5116 Employee <NA>
## 5117 Employee <NA>
## 5118 Employee <NA>
## 5119 Employee <NA>
## 5120 Employee <NA>
## 5121 Employee <NA>
## 5122 Employee <NA>
## 5123 Employee <NA>
## 5124 Employee <NA>
## 5125 Employee <NA>
## 5126 Employee Vice President
## 5127 Employee <NA>
## 5128 Employee Vice President
## 5129 Employee <NA>
## 5130 Employee <NA>
## 5131 Employee <NA>
## 5132 Employee Vice President
## 5133 Employee <NA>
## 5134 Employee <NA>
## 5135 Employee <NA>
## 5136 Employee <NA>
## 5137 Employee Vice President
## 5138 Employee <NA>
## 5139 Employee <NA>
## 5140 Employee <NA>
## 5141 Employee Vice President
## 5142 Employee <NA>
## 5143 Employee <NA>
## 5144 Employee <NA>
## 5145 Employee Vice President
## 5146 Employee Vice President
## 5147 Employee <NA>
## 5148 Employee <NA>
## 5149 Employee <NA>
## 5150 Employee <NA>
## 5151 Employee Vice President
## 5152 Employee <NA>
## 5153 Employee <NA>
## 5154 Employee <NA>
## 5155 Employee Vice President
## 5156 Employee <NA>
## 5157 Employee <NA>
## 5158 Employee <NA>
## 5159 Employee <NA>
## 5160 Employee <NA>
## 5161 Employee <NA>
## 5162 Employee <NA>
## 5163 Employee <NA>
## 5164 Employee <NA>
## 5165 Employee <NA>
## 5166 Employee <NA>
## 5167 Employee <NA>
## 5168 Employee <NA>
## 5169 Employee <NA>
## 5170 Employee <NA>
## 5171 Employee <NA>
## 5172 Employee <NA>
## 5173 Employee <NA>
## 5174 Employee <NA>
## 5175 Employee <NA>
## 5176 Employee <NA>
## 5177 Employee <NA>
## 5178 Employee <NA>
## 5179 Employee <NA>
## 5180 Employee <NA>
## 5181 Employee <NA>
## 5182 Employee <NA>
## 5183 Employee <NA>
## 5184 Employee <NA>
## 5185 Employee <NA>
## 5186 Employee <NA>
## 5187 Employee <NA>
## 5188 Employee <NA>
## 5189 Employee <NA>
## 5190 Employee <NA>
## 5191 Employee <NA>
## 5192 Employee <NA>
## 5193 Employee <NA>
## 5194 Employee <NA>
## 5195 Employee <NA>
## 5196 Employee <NA>
## 5197 Employee <NA>
## 5198 Employee <NA>
## 5199 Employee <NA>
## 5200 Employee <NA>
## 5201 Employee <NA>
## 5202 Employee <NA>
## 5203 Employee <NA>
## 5204 Employee <NA>
## 5205 Employee <NA>
## 5206 Employee <NA>
## 5207 Employee <NA>
## 5208 Employee Vice President
## 5209 Employee <NA>
## 5210 Employee <NA>
## 5211 Employee <NA>
## 5212 Employee <NA>
## 5213 Employee <NA>
## 5214 Employee Vice President
## 5215 Employee <NA>
## 5216 Employee <NA>
## 5217 Employee Vice President
## 5218 Employee <NA>
## 5219 Employee <NA>
## 5220 Employee <NA>
## 5221 Employee <NA>
## 5222 Employee Vice President
## 5223 Employee <NA>
## 5224 Employee <NA>
## 5225 Employee <NA>
## 5226 Employee <NA>
## 5227 Employee <NA>
## 5228 Employee Vice President
## 5229 Employee Vice President
## 5230 Employee <NA>
## 5231 Employee <NA>
## 5232 Employee <NA>
## 5233 Employee <NA>
## 5234 Employee <NA>
## 5235 Employee <NA>
## 5236 Employee <NA>
## 5237 Employee <NA>
## 5238 Employee <NA>
## 5239 Employee <NA>
## 5240 Employee <NA>
## 5241 Employee <NA>
## 5242 Employee Vice President
## 5243 Employee <NA>
## 5244 Employee <NA>
## 5245 Employee Vice President
## 5246 Employee Vice President
## 5247 Employee <NA>
## 5248 Employee <NA>
## 5249 Employee <NA>
## 5250 Employee Vice President
## 5251 Employee Vice President
## 5252 Employee <NA>
## 5253 Employee <NA>
## 5254 Employee <NA>
## 5255 Employee <NA>
## 5256 Employee <NA>
## 5257 Employee <NA>
## 5258 Employee <NA>
## 5259 Employee <NA>
## 5260 Employee <NA>
## 5261 Employee Vice President
## 5262 Employee <NA>
## 5263 Employee <NA>
## 5264 Employee <NA>
## 5265 Employee <NA>
## 5266 Employee <NA>
## 5267 Employee <NA>
## 5268 Employee <NA>
## 5269 Employee <NA>
## 5270 Employee <NA>
## 5271 Employee <NA>
## 5272 Employee <NA>
## 5273 Employee Vice President
## 5274 Employee <NA>
## 5275 Employee <NA>
## 5276 Employee <NA>
## 5277 Employee <NA>
## 5278 Employee <NA>
## 5279 Employee <NA>
## 5280 Employee <NA>
## 5281 Employee <NA>
## 5282 Employee <NA>
## 5283 Employee Vice President
## 5284 Employee <NA>
## 5285 Employee <NA>
## 5286 Employee <NA>
## 5287 Employee <NA>
## 5288 Employee <NA>
## 5289 Employee <NA>
## 5290 Employee <NA>
## 5291 Employee <NA>
## 5292 Employee <NA>
## 5293 Employee Employee
## 5294 Employee Vice President
## 5295 Employee <NA>
## 5296 Employee <NA>
## 5297 Employee <NA>
## 5298 Employee <NA>
## 5299 Employee <NA>
## 5300 Employee <NA>
## 5301 Employee Vice President
## 5302 Employee Vice President
## 5303 Employee <NA>
## 5304 Employee <NA>
## 5305 Employee <NA>
## 5306 Employee Employee
## 5307 Employee Vice President
## 5308 Employee <NA>
## 5309 Employee <NA>
## 5310 Employee <NA>
## 5311 Employee <NA>
## 5312 Employee <NA>
## 5313 Employee <NA>
## 5314 Employee <NA>
## 5315 Employee <NA>
## 5316 Employee Vice President
## 5317 Employee <NA>
## 5318 Employee Vice President
## 5319 Employee <NA>
## 5320 Employee Vice President
## 5321 Employee Vice President
## 5322 Employee <NA>
## 5323 Employee <NA>
## 5324 Employee <NA>
## 5325 Employee <NA>
## 5326 Employee <NA>
## 5327 Employee <NA>
## 5328 Employee <NA>
## 5329 Employee Vice President
## 5330 Employee <NA>
## 5331 Employee Vice President
## 5332 Employee <NA>
## 5333 Employee <NA>
## 5334 Employee <NA>
## 5335 Employee Vice President
## 5336 Employee Vice President
## 5337 Employee <NA>
## 5338 Employee Vice President
## 5339 Employee <NA>
## 5340 Employee <NA>
## 5341 Employee Vice President
## 5342 Employee <NA>
## 5343 Employee <NA>
## 5344 Employee <NA>
## 5345 Employee <NA>
## 5346 Employee Vice President
## 5347 Employee <NA>
## 5348 Employee <NA>
## 5349 Employee <NA>
## 5350 Employee <NA>
## 5351 Employee <NA>
## 5352 Employee <NA>
## 5353 Employee <NA>
## 5354 Employee <NA>
## 5355 Employee <NA>
## 5356 Employee <NA>
## 5357 Employee <NA>
## 5358 Employee <NA>
## 5359 Employee <NA>
## 5360 Employee <NA>
## 5361 Employee <NA>
## 5362 Employee Vice President
## 5363 Employee <NA>
## 5364 Employee <NA>
## 5365 Employee <NA>
## 5366 Employee Vice President
## 5367 Employee <NA>
## 5368 Employee <NA>
## 5369 Employee <NA>
## 5370 Employee <NA>
## 5371 Employee <NA>
## 5372 Employee <NA>
## 5373 Employee <NA>
## 5374 Employee <NA>
## 5375 Employee <NA>
## 5376 Employee <NA>
## 5377 Employee <NA>
## 5378 Employee <NA>
## 5379 Employee <NA>
## 5380 Employee <NA>
## 5381 Employee <NA>
## 5382 Employee <NA>
## 5383 Employee <NA>
## 5384 Employee <NA>
## 5385 Employee <NA>
## 5386 Employee <NA>
## 5387 Employee <NA>
## 5388 Employee <NA>
## 5389 Employee <NA>
## 5390 Employee Vice President
## 5391 Employee <NA>
## 5392 Employee <NA>
## 5393 Employee <NA>
## 5394 Employee <NA>
## 5395 Employee <NA>
## 5396 Employee <NA>
## 5397 Employee <NA>
## 5398 Employee <NA>
## 5399 Employee <NA>
## 5400 Employee <NA>
## 5401 Employee <NA>
## 5402 Employee <NA>
## 5403 Employee Employee
## 5404 Employee <NA>
## 5405 Employee <NA>
## 5406 Employee <NA>
## 5407 Employee <NA>
## 5408 Employee Vice President
## 5409 Employee Vice President
## 5410 Employee Vice President
## 5411 Employee <NA>
## 5412 Employee <NA>
## 5413 Employee <NA>
## 5414 Employee <NA>
## 5415 Employee <NA>
## 5416 Employee Vice President
## 5417 Employee Vice President
## 5418 Employee <NA>
## 5419 Employee <NA>
## 5420 Employee Vice President
## 5421 Employee Vice President
## 5422 Employee <NA>
## 5423 Employee <NA>
## 5424 Employee <NA>
## 5425 Employee <NA>
## 5426 Employee <NA>
## 5427 Employee <NA>
## 5428 Employee Vice President
## 5429 Employee <NA>
## 5430 Employee <NA>
## 5431 Employee <NA>
## 5432 Employee Vice President
## 5433 Employee <NA>
## 5434 Employee <NA>
## 5435 Employee <NA>
## 5436 Employee <NA>
## 5437 Employee <NA>
## 5438 Employee <NA>
## 5439 Employee <NA>
## 5440 Employee <NA>
## 5441 Employee Employee
## 5442 Employee <NA>
## 5443 Employee <NA>
## 5444 Employee Employee
## 5445 Employee <NA>
## 5446 Employee <NA>
## 5447 Employee Vice President
## 5448 Employee <NA>
## 5449 Employee Vice President
## 5450 Employee <NA>
## 5451 Employee Vice President
## 5452 Employee Vice President
## 5453 Employee Vice President
## 5454 Employee Vice President
## 5455 Employee Vice President
## 5456 Employee Vice President
## 5457 Manager <NA>
## 5458 Manager <NA>
## 5459 Manager Vice President
## 5460 Manager <NA>
## 5461 Manager <NA>
## 5462 Manager Employee
## 5463 Manager <NA>
## 5464 Manager <NA>
## 5465 Manager <NA>
## 5466 Manager <NA>
## 5467 Manager <NA>
## 5468 Manager <NA>
## 5469 Manager <NA>
## 5470 Manager <NA>
## 5471 Manager <NA>
## 5472 Manager Vice President
## 5473 Manager <NA>
## 5474 Manager <NA>
## 5475 Manager <NA>
## 5476 Manager <NA>
## 5477 Manager <NA>
## 5478 Manager <NA>
## 5479 Manager <NA>
## 5480 Manager <NA>
## 5481 Manager <NA>
## 5482 Manager <NA>
## 5483 Manager <NA>
## 5484 Manager <NA>
## 5485 Manager <NA>
## 5486 Manager <NA>
## 5487 Manager <NA>
## 5488 Manager <NA>
## 5489 Manager <NA>
## 5490 Manager <NA>
## 5491 Manager <NA>
## 5492 Manager <NA>
## 5493 Manager <NA>
## 5494 Manager <NA>
## 5495 Manager Vice President
## 5496 Manager <NA>
## 5497 Manager <NA>
## 5498 Manager <NA>
## 5499 Manager Vice President
## 5500 Manager <NA>
## 5501 Manager <NA>
## 5502 Manager <NA>
## 5503 Manager <NA>
## 5504 Manager <NA>
## 5505 Manager <NA>
## 5506 Manager <NA>
## 5507 Manager <NA>
## 5508 Manager <NA>
## 5509 Manager <NA>
## 5510 Manager <NA>
## 5511 Manager <NA>
## 5512 Manager <NA>
## 5513 Manager <NA>
## 5514 Manager <NA>
## 5515 Manager <NA>
## 5516 Manager Employee
## 5517 Manager Trader
## 5518 Manager Employee
## 5519 Manager <NA>
## 5520 Manager <NA>
## 5521 Manager <NA>
## 5522 Manager <NA>
## 5523 Manager <NA>
## 5524 Manager <NA>
## 5525 Manager <NA>
## 5526 Manager <NA>
## 5527 Manager <NA>
## 5528 Manager <NA>
## 5529 Manager <NA>
## 5530 Manager <NA>
## 5531 Manager <NA>
## 5532 Manager Employee
## 5533 Manager Trader
## 5534 Manager Employee
## 5535 Manager <NA>
## 5536 Manager <NA>
## 5537 Manager <NA>
## 5538 Manager <NA>
## 5539 Manager <NA>
## 5540 Manager <NA>
## 5541 Manager <NA>
## 5542 Manager <NA>
## 5543 Manager <NA>
## 5544 Manager <NA>
## 5545 Manager <NA>
## 5546 Manager <NA>
## 5547 Manager <NA>
## 5548 Manager Employee
## 5549 Manager <NA>
## 5550 Manager <NA>
## 5551 Manager <NA>
## 5552 Manager <NA>
## 5553 Manager <NA>
## 5554 Manager <NA>
## 5555 Manager <NA>
## 5556 Manager <NA>
## 5557 Manager <NA>
## 5558 Manager <NA>
## 5559 Manager <NA>
## 5560 Manager <NA>
## 5561 Manager <NA>
## 5562 Manager <NA>
## 5563 Manager <NA>
## 5564 Manager Employee
## 5565 Manager <NA>
## 5566 Manager <NA>
## 5567 Manager <NA>
## 5568 Manager <NA>
## 5569 Manager <NA>
## 5570 Manager <NA>
## 5571 Manager <NA>
## 5572 Manager <NA>
## 5573 Manager <NA>
## 5574 Manager <NA>
## 5575 Manager <NA>
## 5576 Manager <NA>
## 5577 Manager Vice President
## 5578 Manager <NA>
## 5579 Manager <NA>
## 5580 Manager Employee
## 5581 Manager <NA>
## 5582 Manager <NA>
## 5583 Manager <NA>
## 5584 Manager <NA>
## 5585 Manager <NA>
## 5586 Manager Vice President
## 5587 Manager <NA>
## 5588 Manager Vice President
## 5589 Manager <NA>
## 5590 Manager <NA>
## 5591 Manager <NA>
## 5592 Manager <NA>
## 5593 Manager Vice President
## 5594 Manager <NA>
## 5595 Manager <NA>
## 5596 Manager <NA>
## 5597 Manager <NA>
## 5598 Manager <NA>
## 5599 Manager <NA>
## 5600 Manager <NA>
## 5601 Manager <NA>
## 5602 Manager <NA>
## 5603 Manager <NA>
## 5604 Manager <NA>
## 5605 Manager <NA>
## 5606 Manager <NA>
## 5607 Manager <NA>
## 5608 Manager <NA>
## 5609 Manager <NA>
## 5610 Manager <NA>
## 5611 Manager <NA>
## 5612 Manager <NA>
## 5613 Manager <NA>
## 5614 Manager <NA>
## 5615 Manager <NA>
## 5616 Manager <NA>
## 5617 Manager <NA>
## 5618 Manager <NA>
## 5619 Manager <NA>
## 5620 Manager <NA>
## 5621 Manager <NA>
## 5622 Manager <NA>
## 5623 Manager Employee
## 5624 Manager <NA>
## 5625 Manager <NA>
## 5626 Manager <NA>
## 5627 Manager <NA>
## 5628 Manager <NA>
## 5629 Manager <NA>
## 5630 Manager <NA>
## 5631 Manager <NA>
## 5632 Manager <NA>
## 5633 Manager <NA>
## 5634 Manager <NA>
## 5635 Manager <NA>
## 5636 Manager <NA>
## 5637 Manager <NA>
## 5638 Manager <NA>
## 5639 Manager <NA>
## 5640 Manager <NA>
## 5641 Manager <NA>
## 5642 Manager <NA>
## 5643 Manager <NA>
## 5644 Manager <NA>
## 5645 Manager <NA>
## 5646 Manager <NA>
## 5647 Manager <NA>
## 5648 Manager <NA>
## 5649 Manager <NA>
## 5650 Manager <NA>
## 5651 Manager <NA>
## 5652 Manager <NA>
## 5653 Manager <NA>
## 5654 Manager <NA>
## 5655 Manager <NA>
## 5656 Manager <NA>
## 5657 Manager <NA>
## 5658 Manager <NA>
## 5659 Manager <NA>
## 5660 Manager <NA>
## 5661 Manager <NA>
## 5662 Manager <NA>
## 5663 Manager <NA>
## 5664 Manager <NA>
## 5665 Manager <NA>
## 5666 Manager <NA>
## 5667 Manager <NA>
## 5668 Manager <NA>
## 5669 Manager <NA>
## 5670 Manager <NA>
## 5671 Manager <NA>
## 5672 Manager <NA>
## 5673 Manager <NA>
## 5674 Manager <NA>
## 5675 Manager <NA>
## 5676 Manager <NA>
## 5677 Manager <NA>
## 5678 Manager <NA>
## 5679 Manager <NA>
## 5680 Manager <NA>
## 5681 Manager <NA>
## 5682 Manager <NA>
## 5683 Manager <NA>
## 5684 Manager <NA>
## 5685 Manager <NA>
## 5686 Manager <NA>
## 5687 Manager <NA>
## 5688 Manager <NA>
## 5689 Manager <NA>
## 5690 Manager <NA>
## 5691 Manager <NA>
## 5692 Manager <NA>
## 5693 Manager <NA>
## 5694 Manager <NA>
## 5695 Manager <NA>
## 5696 Manager <NA>
## 5697 Manager <NA>
## 5698 Manager <NA>
## 5699 Manager <NA>
## 5700 Manager <NA>
## 5701 Manager <NA>
## 5702 Manager <NA>
## 5703 Manager <NA>
## 5704 Manager <NA>
## 5705 Manager <NA>
## 5706 Manager <NA>
## 5707 Manager <NA>
## 5708 Manager <NA>
## 5709 Manager <NA>
## 5710 Manager <NA>
## 5711 Manager <NA>
## 5712 Manager <NA>
## 5713 Manager <NA>
## 5714 Manager <NA>
## 5715 Manager <NA>
## 5716 Manager <NA>
## 5717 Manager <NA>
## 5718 Manager <NA>
## 5719 Manager <NA>
## 5720 Manager <NA>
## 5721 Manager <NA>
## 5722 Manager <NA>
## 5723 Manager <NA>
## 5724 Manager <NA>
## 5725 Manager <NA>
## 5726 Manager <NA>
## 5727 Manager <NA>
## 5728 Manager <NA>
## 5729 Manager <NA>
## 5730 Manager <NA>
## 5731 Manager <NA>
## 5732 Manager <NA>
## 5733 Manager <NA>
## 5734 Manager <NA>
## 5735 Manager <NA>
## 5736 Manager <NA>
## 5737 Manager <NA>
## 5738 Manager <NA>
## 5739 Manager <NA>
## 5740 Manager <NA>
## 5741 Manager <NA>
## 5742 Manager <NA>
## 5743 Manager <NA>
## 5744 Manager <NA>
## 5745 Manager <NA>
## 5746 Manager <NA>
## 5747 Manager <NA>
## 5748 Manager <NA>
## 5749 Manager <NA>
## 5750 Manager <NA>
## 5751 Manager <NA>
## 5752 Manager <NA>
## 5753 Manager <NA>
## 5754 Manager <NA>
## 5755 Manager <NA>
## 5756 Manager <NA>
## 5757 Manager <NA>
## 5758 Manager <NA>
## 5759 Manager <NA>
## 5760 Manager <NA>
## 5761 Manager <NA>
## 5762 Manager <NA>
## 5763 Manager <NA>
## 5764 Manager <NA>
## 5765 Manager <NA>
## 5766 Manager <NA>
## 5767 Manager <NA>
## 5768 Manager <NA>
## 5769 Manager <NA>
## 5770 Manager <NA>
## 5771 Manager <NA>
## 5772 Manager <NA>
## 5773 Manager <NA>
## 5774 Manager <NA>
## 5775 Manager <NA>
## 5776 Manager <NA>
## 5777 Manager <NA>
## 5778 Manager <NA>
## 5779 Manager <NA>
## 5780 Manager <NA>
## 5781 Manager <NA>
## 5782 Manager <NA>
## 5783 Manager Vice President
## 5784 Manager <NA>
## 5785 Manager <NA>
## 5786 Manager <NA>
## 5787 Manager <NA>
## 5788 Manager <NA>
## 5789 Manager <NA>
## 5790 Manager <NA>
## 5791 Manager <NA>
## 5792 Manager Vice President
## 5793 Manager <NA>
## 5794 Manager <NA>
## 5795 Manager <NA>
## 5796 Manager Vice President
## 5797 Manager <NA>
## 5798 Manager <NA>
## 5799 Manager <NA>
## 5800 Manager <NA>
## 5801 Manager <NA>
## 5802 Manager Vice President
## 5803 Manager <NA>
## 5804 Manager <NA>
## 5805 Manager <NA>
## 5806 Manager <NA>
## 5807 Manager <NA>
## 5808 Manager <NA>
## 5809 Manager <NA>
## 5810 Manager <NA>
## 5811 Manager <NA>
## 5812 Manager <NA>
## 5813 Manager <NA>
## 5814 Manager <NA>
## 5815 Manager <NA>
## 5816 Manager <NA>
## 5817 Manager <NA>
## 5818 Manager <NA>
## 5819 Manager <NA>
## 5820 Manager <NA>
## 5821 Manager <NA>
## 5822 Manager <NA>
## 5823 Manager <NA>
## 5824 Manager <NA>
## 5825 Manager <NA>
## 5826 Manager <NA>
## 5827 Manager <NA>
## 5828 Manager <NA>
## 5829 Manager <NA>
## 5830 Manager <NA>
## 5831 Manager <NA>
## 5832 Manager <NA>
## 5833 Manager Vice President
## 5834 Manager Vice President
## 5835 Manager <NA>
## 5836 Manager Vice President
## 5837 Manager <NA>
## 5838 Manager <NA>
## 5839 Manager <NA>
## 5840 Manager Vice President
## 5841 Manager <NA>
## 5842 Manager <NA>
## 5843 Manager <NA>
## 5844 Manager <NA>
## 5845 Manager <NA>
## 5846 Manager <NA>
## 5847 Manager <NA>
## 5848 Manager <NA>
## 5849 Manager <NA>
## 5850 Manager <NA>
## 5851 Manager <NA>
## 5852 Manager <NA>
## 5853 Manager <NA>
## 5854 Manager <NA>
## 5855 Manager <NA>
## 5856 Manager <NA>
## 5857 Manager <NA>
## 5858 Manager <NA>
## 5859 Manager <NA>
## 5860 Manager <NA>
## 5861 Manager Employee
## 5862 Manager <NA>
## 5863 Manager <NA>
## 5864 Manager <NA>
## 5865 Manager <NA>
## 5866 Manager <NA>
## 5867 Manager <NA>
## 5868 Manager <NA>
## 5869 Manager <NA>
## 5870 Manager <NA>
## 5871 Manager <NA>
## 5872 Manager <NA>
## 5873 Manager <NA>
## 5874 Manager <NA>
## 5875 <NA> Manager
## 5876 <NA> Manager
## 5877 <NA> Manager
## 5878 <NA> Manager
## 5879 <NA> Manager
## 5880 <NA> Manager
## 5881 <NA> Manager
## 5882 <NA> Manager
## 5883 <NA> Manager
## 5884 <NA> Manager
## 5885 <NA> Manager
## 5886 <NA> Manager
## 5887 <NA> Vice President
## 5888 <NA> Manager
## 5889 <NA> Vice President
## 5890 <NA> Manager
## 5891 <NA> Manager
## 5892 <NA> Vice President
## 5893 <NA> Manager
## 5894 <NA> Employee
## 5895 <NA> Vice President
## 5896 <NA> Manager
## 5897 <NA> Manager
## 5898 <NA> Manager
## 5899 <NA> Manager
## 5900 <NA> Director
## 5901 <NA> Manager
## 5902 <NA> Employee
## 5903 <NA> Director
## 5904 <NA> Manager
## 5905 <NA> Employee
## 5906 <NA> Manager
## 5907 <NA> Director
## 5908 <NA> Vice President
## 5909 <NA> Employee
## 5910 <NA> Employee
## 5911 <NA> Vice President
## 5912 <NA> Employee
## 5913 <NA> Manager
## 5914 <NA> Trader
## 5915 <NA> Manager
## 5916 <NA> Employee
## 5917 <NA> Trader
## 5918 <NA> Employee
## 5919 <NA> Manager
## 5920 <NA> Manager
## 5921 <NA> Vice President
## 5922 <NA> Manager
## 5923 <NA> Employee
## 5924 <NA> Manager
## 5925 <NA> Vice President
## 5926 <NA> Manager
## 5927 <NA> Vice President
## 5928 Employee <NA>
## 5929 Employee <NA>
## 5930 Employee <NA>
## 5931 Employee <NA>
## 5932 Employee <NA>
## 5933 Employee <NA>
## 5934 Employee <NA>
## 5935 Employee <NA>
## 5936 Employee Manager
## 5937 Employee Vice President
## 5938 Employee <NA>
## 5939 Employee <NA>
## 5940 Employee <NA>
## 5941 Employee <NA>
## 5942 Employee <NA>
## 5943 Employee Manager
## 5944 Employee Vice President
## 5945 <NA> Manager
## 5946 <NA> Vice President
## 5947 <NA> Employee
## 5948 <NA> Manager
## 5949 <NA> Vice President
## 5950 <NA> Employee
## 5951 <NA> Manager
## 5952 <NA> Vice President
## 5953 <NA> Employee
## 5954 <NA> Manager
## 5955 <NA> Vice President
## 5956 <NA> Employee
## 5957 <NA> Vice President
## 5958 <NA> Employee
## 5959 <NA> Manager
## 5960 <NA> Manager
## 5961 <NA> Employee
## 5962 <NA> Trader
## 5963 <NA> Employee
## 5964 <NA> Manager
## 5965 <NA> Manager
## 5966 <NA> Vice President
## 5967 <NA> Employee
## 5968 <NA> Manager
## 5969 <NA> Employee
## 5970 <NA> Trader
## 5971 <NA> Manager
## 5972 Vice President <NA>
## 5973 Vice President Employee
## 5974 Vice President <NA>
## 5975 Vice President <NA>
## 5976 Vice President <NA>
## 5977 Vice President <NA>
## 5978 Vice President <NA>
## 5979 Vice President <NA>
## 5980 Vice President Manager
## 5981 Vice President <NA>
## 5982 Vice President <NA>
## 5983 Vice President <NA>
## 5984 Vice President <NA>
## 5985 Vice President <NA>
## 5986 Vice President <NA>
## 5987 Vice President Manager
## 5988 <NA> Vice President
## 5989 <NA> Employee
## 5990 <NA> Manager
## 5991 <NA> Manager
## 5992 <NA> Manager
## 5993 <NA> Manager
## 5994 <NA> Vice President
## 5995 <NA> Manager
## 5996 <NA> Manager
## 5997 Director <NA>
## 5998 Director Employee
## 5999 Director <NA>
## 6000 Director <NA>
## 6001 Director Manager
## 6002 Director <NA>
## 6003 Director <NA>
## 6004 Director <NA>
## 6005 Director <NA>
## 6006 Director <NA>
## 6007 Director <NA>
## 6008 <NA> Vice President
## 6009 <NA> Manager
## 6010 <NA> Manager
## 6011 Vice President <NA>
## 6012 Vice President Vice President
## 6013 Vice President Employee
## 6014 Vice President <NA>
## 6015 Vice President <NA>
## 6016 Vice President <NA>
## 6017 Vice President Manager
## 6018 Vice President <NA>
## 6019 Vice President <NA>
## 6020 Vice President <NA>
## 6021 Vice President <NA>
## 6022 <NA> Manager
## 6023 <NA> Manager
## 6024 <NA> Manager
## 6025 <NA> Manager
## 6026 <NA> Manager
## 6027 <NA> Vice President
## 6028 <NA> Manager
## 6029 <NA> Vice President
## 6030 <NA> Manager
## 6031 <NA> Employee
## 6032 <NA> Director
## 6033 <NA> Vice President
## 6034 <NA> Manager
## 6035 <NA> Manager
## 6036 <NA> Employee
## 6037 <NA> Vice President
## 6038 <NA> Employee
## 6039 <NA> Trader
## 6040 <NA> Manager
## 6041 <NA> Manager
## 6042 <NA> Manager
## 6043 <NA> Manager
## 6044 <NA> Manager
## 6045 <NA> Manager
## 6046 <NA> Manager
## 6047 <NA> Manager
## 6048 <NA> Vice President
## 6049 <NA> Manager
## 6050 <NA> Vice President
## 6051 <NA> Manager
## 6052 <NA> Vice President
## 6053 <NA> Manager
## 6054 <NA> Director
## 6055 <NA> Vice President
## 6056 <NA> Manager
## 6057 <NA> Vice President
## 6058 <NA> Director
## 6059 <NA> Manager
## 6060 <NA> Manager
## 6061 <NA> Manager
## 6062 <NA> Director
## 6063 <NA> Vice President
## 6064 <NA> Manager
## 6065 <NA> Vice President
## 6066 <NA> Manager
## 6067 <NA> Manager
## 6068 Employee Manager
## 6069 <NA> Director
## 6070 <NA> Manager
## 6071 <NA> Employee
## 6072 <NA> Vice President
## 6073 <NA> Manager
## 6074 <NA> Manager
## 6075 <NA> Manager
## 6076 <NA> Manager
## 6077 <NA> Manager
## 6078 <NA> Manager
## 6079 <NA> Manager
## 6080 <NA> Manager
## 6081 <NA> Manager
## 6082 <NA> Manager
## 6083 <NA> Manager
## 6084 <NA> Manager
## 6085 <NA> Director
## 6086 <NA> Vice President
## 6087 <NA> Manager
## 6088 <NA> Vice President
## 6089 <NA> Manager
## 6090 <NA> Manager
## 6091 <NA> Manager
## 6092 <NA> Manager
## 6093 <NA> Director
## 6094 <NA> Vice President
## 6095 <NA> Manager
## 6096 Employee Manager
## 6097 <NA> Manager
## 6098 <NA> Manager
## 6099 <NA> Manager
## 6100 <NA> Manager
## 6101 <NA> Manager
## 6102 <NA> Employee
## 6103 <NA> Manager
## 6104 <NA> Manager
## 6105 <NA> Employee
## 6106 <NA> Vice President
## 6107 <NA> Manager
## 6108 <NA> Manager
## 6109 <NA> Manager
## 6110 <NA> Manager
## 6111 <NA> Manager
## 6112 <NA> Manager
## 6113 <NA> Manager
## 6114 <NA> Employee
## 6115 <NA> Vice President
## 6116 <NA> Manager
## 6117 Employee <NA>
## 6118 Employee Manager
## 6119 Employee <NA>
## 6120 Employee <NA>
## 6121 <NA> Manager
## 6122 <NA> Manager
## 6123 <NA> Manager
## 6124 <NA> Vice President
## 6125 <NA> Manager
## 6126 <NA> Vice President
## 6127 <NA> Manager
## 6128 <NA> Manager
## 6129 <NA> Director
## 6130 <NA> Manager
## 6131 <NA> Employee
## 6132 <NA> Director
## 6133 <NA> Manager
## 6134 <NA> Employee
## 6135 <NA> Manager
## 6136 <NA> Manager
## 6137 <NA> Vice President
## 6138 <NA> Manager
## 6139 <NA> Employee
## 6140 <NA> Manager
## 6141 <NA> Vice President
## 6142 <NA> Employee
## 6143 <NA> Manager
## 6144 <NA> Manager
## 6145 <NA> Manager
## 6146 <NA> Employee
## 6147 <NA> Manager
## 6148 Employee <NA>
## 6149 Employee Manager
## 6150 Employee <NA>
## 6151 <NA> Manager
## 6152 <NA> Vice President
## 6153 <NA> Manager
## 6154 <NA> Manager
## 6155 <NA> Manager
## 6156 <NA> Manager
## 6157 <NA> Manager
## 6158 <NA> Manager
## 6159 <NA> Manager
## 6160 <NA> Employee
## 6161 <NA> Manager
## 6162 <NA> Manager
## 6163 <NA> Employee
## 6164 <NA> Manager
## 6165 <NA> Manager
## 6166 <NA> Manager
## 6167 <NA> Manager
## 6168 <NA> Vice President
## 6169 <NA> Manager
## 6170 <NA> Manager
## 6171 <NA> Manager
## 6172 <NA> Manager
## 6173 Vice President <NA>
## 6174 Vice President <NA>
## 6175 Vice President <NA>
## 6176 Vice President <NA>
## 6177 Vice President Manager
## 6178 Vice President <NA>
## 6179 Vice President <NA>
## 6180 Vice President <NA>
## 6181 Vice President Manager
## 6182 <NA> Manager
## 6183 <NA> Vice President
## 6184 <NA> Manager
## 6185 Director <NA>
## 6186 Director Employee
## 6187 Director <NA>
## 6188 Director <NA>
## 6189 Director <NA>
## 6190 Director Manager
## 6191 Director <NA>
## 6192 Director <NA>
## 6193 Director <NA>
## 6194 Director <NA>
## 6195 Director <NA>
## 6196 Director <NA>
## 6197 Director <NA>
## 6198 Director <NA>
## 6199 Director <NA>
## 6200 Director <NA>
## 6201 <NA> Manager
## 6202 <NA> Manager
## 6203 Vice President Manager
## 6204 <NA> Manager
## 6205 Vice President Manager
## 6206 <NA> Manager
## 6207 <NA> Manager
## 6208 <NA> Manager
## 6209 <NA> Manager
## 6210 <NA> Manager
## 6211 <NA> Vice President
## 6212 <NA> Manager
## 6213 <NA> Manager
## 6214 <NA> Vice President
## 6215 <NA> Employee
## 6216 <NA> Manager
## 6217 <NA> Manager
## 6218 <NA> Vice President
## 6219 <NA> Employee
## 6220 <NA> Employee
## 6221 <NA> Manager
## 6222 <NA> Manager
## 6223 <NA> Manager
## 6224 <NA> Vice President
## 6225 <NA> Manager
## 6226 <NA> Manager
## 6227 <NA> Manager
## 6228 <NA> Manager
## 6229 <NA> Manager
## 6230 Director <NA>
## 6231 Director Manager
## 6232 Director <NA>
## 6233 Director <NA>
## 6234 Director <NA>
## 6235 Director <NA>
## 6236 Director <NA>
## 6237 Director Employee
## 6238 Director <NA>
## 6239 Director <NA>
## 6240 Director <NA>
## 6241 Director Manager
## 6242 Director <NA>
## 6243 Director <NA>
## 6244 Director <NA>
## 6245 Director <NA>
## 6246 Director <NA>
## 6247 Director <NA>
## 6248 <NA> Manager
## 6249 Vice President Manager
## 6250 Vice President <NA>
## 6251 Vice President <NA>
## 6252 Vice President <NA>
## 6253 Vice President <NA>
## 6254 Vice President <NA>
## 6255 Vice President <NA>
## 6256 Vice President <NA>
## 6257 <NA> Manager
## 6258 <NA> Vice President
## 6259 <NA> Manager
## 6260 <NA> Vice President
## 6261 <NA> Manager
## 6262 <NA> Manager
## 6263 <NA> Manager
## 6264 <NA> Manager
## 6265 <NA> Vice President
## 6266 <NA> Manager
## 6267 <NA> Manager
## 6268 <NA> Vice President
## 6269 <NA> Manager
## 6270 <NA> Manager
## 6271 <NA> Manager
## 6272 <NA> Vice President
## 6273 Manager Vice President
## 6274 Manager <NA>
## 6275 Manager <NA>
## 6276 Manager <NA>
## 6277 Manager <NA>
## 6278 Manager <NA>
## 6279 Manager <NA>
## 6280 Manager <NA>
## 6281 <NA> Manager
## 6282 <NA> Manager
## 6283 <NA> Manager
## 6284 <NA> Manager
## 6285 <NA> Director
## 6286 <NA> Vice President
## 6287 <NA> Employee
## 6288 <NA> Employee
## 6289 <NA> Vice President
## 6290 <NA> Employee
## 6291 <NA> Manager
## 6292 <NA> Trader
## 6293 <NA> Director
## 6294 <NA> Manager
## 6295 <NA> Employee
## 6296 <NA> Director
## 6297 <NA> Manager
## 6298 <NA> Employee
## 6299 Employee <NA>
## 6300 Employee <NA>
## 6301 Employee <NA>
## 6302 Employee <NA>
## 6303 Employee <NA>
## 6304 Employee <NA>
## 6305 Employee Manager
## 6306 <NA> Employee
## 6307 <NA> Manager
## 6308 <NA> Director
## 6309 <NA> Vice President
## 6310 <NA> Manager
## 6311 <NA> Vice President
## 6312 <NA> Manager
## 6313 <NA> Manager
## 6314 <NA> Manager
## 6315 <NA> Manager
## 6316 <NA> Manager
## 6317 <NA> Manager
## 6318 <NA> Manager
## 6319 <NA> Manager
## 6320 <NA> Employee
## 6321 <NA> Vice President
## 6322 <NA> Employee
## 6323 <NA> Trader
## 6324 <NA> Manager
## 6325 <NA> Manager
## 6326 <NA> Manager
## 6327 <NA> Manager
## 6328 <NA> Manager
## 6329 <NA> Employee
## 6330 <NA> Manager
## 6331 <NA> Manager
## 6332 <NA> Manager
## 6333 <NA> Manager
## 6334 <NA> Manager
## 6335 <NA> Manager
## 6336 <NA> Manager
## 6337 <NA> Manager
## 6338 <NA> Manager
## 6339 <NA> Manager
## 6340 <NA> Manager
## 6341 <NA> Manager
## 6342 <NA> Manager
## 6343 <NA> Manager
## 6344 <NA> Manager
## 6345 <NA> Manager
## 6346 <NA> Manager
## 6347 <NA> Manager
## 6348 <NA> Manager
## 6349 <NA> Manager
## 6350 <NA> Manager
## 6351 Director <NA>
## 6352 Director Employee
## 6353 Director <NA>
## 6354 Director <NA>
## 6355 Director <NA>
## 6356 Director Manager
## 6357 Director <NA>
## 6358 Director <NA>
## 6359 Director <NA>
## 6360 Director <NA>
## 6361 Director <NA>
## 6362 Director <NA>
## 6363 Director <NA>
## 6364 Director <NA>
## 6365 <NA> Vice President
## 6366 <NA> Manager
## 6367 <NA> Manager
## 6368 <NA> Vice President
## 6369 <NA> Employee
## 6370 <NA> Vice President
## 6371 <NA> Employee
## 6372 <NA> Trader
## 6373 <NA> Vice President
## 6374 <NA> Manager
## 6375 <NA> Manager
## 6376 <NA> Manager
## 6377 <NA> Vice President
## 6378 <NA> Manager
## 6379 <NA> Vice President
## 6380 <NA> Manager
## 6381 <NA> Manager
## 6382 <NA> Vice President
## 6383 <NA> Manager
## 6384 <NA> Manager
## 6385 <NA> Employee
## 6386 <NA> Manager
## 6387 <NA> Manager
## 6388 <NA> Manager
## 6389 <NA> Manager
## 6390 <NA> Manager
## 6391 <NA> Manager
## 6392 <NA> Manager
## 6393 <NA> Vice President
## 6394 <NA> Manager
## 6395 <NA> Manager
## 6396 <NA> Manager
## 6397 <NA> Manager
## 6398 <NA> Manager
## 6399 <NA> Manager
## 6400 <NA> President
## 6401 <NA> Vice President
## 6402 <NA> Manager
## 6403 <NA> Manager
## 6404 <NA> Manager
## 6405 <NA> Manager
## 6406 <NA> Manager
## 6407 <NA> Manager
## 6408 <NA> Manager
## 6409 <NA> Vice President
## 6410 <NA> Manager
## 6411 <NA> Manager
## 6412 <NA> Manager
## 6413 <NA> Manager
## 6414 <NA> Employee
## 6415 <NA> Director
## 6416 <NA> Manager
## 6417 <NA> Employee
## 6418 <NA> Director
## 6419 <NA> Manager
## 6420 <NA> Manager
## 6421 Employee Manager
## 6422 Employee <NA>
## 6423 Employee <NA>
## 6424 Employee Director
## 6425 Employee <NA>
## 6426 Employee <NA>
## 6427 Employee <NA>
## 6428 Employee <NA>
## 6429 Employee <NA>
## 6430 Employee <NA>
## 6431 Employee <NA>
## 6432 Employee Vice President
## 6433 Employee <NA>
## 6434 Employee Vice President
## 6435 Employee <NA>
## 6436 <NA> Manager
## 6437 <NA> Director
## 6438 <NA> Employee
## 6439 <NA> Manager
## 6440 <NA> Manager
## 6441 Director <NA>
## 6442 Director Employee
## 6443 Director <NA>
## 6444 Director <NA>
## 6445 Director <NA>
## 6446 Director Manager
## 6447 Director <NA>
## 6448 Director <NA>
## 6449 Director <NA>
## 6450 Director <NA>
## 6451 Director <NA>
## 6452 Director <NA>
## 6453 Director <NA>
## 6454 Director <NA>
## 6455 <NA> Manager
## 6456 <NA> Manager
## 6457 <NA> Manager
## 6458 <NA> Director
## 6459 <NA> Vice President
## 6460 <NA> Vice President
## 6461 <NA> Manager
## 6462 <NA> Vice President
## 6463 <NA> Manager
## 6464 <NA> Vice President
## 6465 <NA> Employee
## 6466 <NA> Manager
## 6467 <NA> Manager
## 6468 <NA> Manager
## 6469 <NA> Manager
## 6470 <NA> Manager
## 6471 <NA> Manager
## 6472 <NA> Manager
## 6473 <NA> Employee
## 6474 <NA> Director
## 6475 <NA> Manager
## 6476 <NA> Vice President
## 6477 <NA> Vice President
## 6478 <NA> Vice President
## 6479 <NA> Vice President
## 6480 <NA> Employee
## 6481 <NA> Director
## 6482 <NA> Manager
## 6483 <NA> Vice President
## 6484 <NA> Vice President
## 6485 <NA> Vice President
## 6486 <NA> Vice President
## 6487 <NA> Employee
## 6488 <NA> Director
## 6489 <NA> Manager
## 6490 <NA> Vice President
## 6491 <NA> Vice President
## 6492 <NA> Vice President
## 6493 <NA> Vice President
## 6494 Employee <NA>
## 6495 Employee <NA>
## 6496 Employee Director
## 6497 Employee <NA>
## 6498 Employee <NA>
## 6499 Employee Manager
## 6500 Employee <NA>
## 6501 Employee <NA>
## 6502 Employee Vice President
## 6503 Employee <NA>
## 6504 Employee Vice President
## 6505 Employee <NA>
## 6506 Employee Vice President
## 6507 Employee <NA>
## 6508 Employee Vice President
## 6509 Employee <NA>
## 6510 <NA> Manager
## 6511 <NA> Vice President
## 6512 <NA> Manager
## 6513 <NA> Employee
## 6514 <NA> Employee
## 6515 <NA> Trader
## 6516 Vice President <NA>
## 6517 Vice President <NA>
## 6518 Vice President <NA>
## 6519 Vice President <NA>
## 6520 Vice President <NA>
## 6521 Vice President Manager
## 6522 Vice President Employee
## 6523 Vice President <NA>
## 6524 Vice President <NA>
## 6525 Vice President Employee
## 6526 Vice President <NA>
## 6527 Vice President <NA>
## 6528 Vice President Trader
## 6529 <NA> Vice President
## 6530 <NA> Manager
## 6531 <NA> Vice President
## 6532 <NA> Manager
## 6533 <NA> Manager
## 6534 <NA> Employee
## 6535 <NA> Vice President
## 6536 <NA> Employee
## 6537 <NA> Trader
## 6538 <NA> Manager
## 6539 <NA> Vice President
## 6540 <NA> Manager
## 6541 Vice President <NA>
## 6542 Vice President Manager
## 6543 Vice President Manager
## 6544 <NA> Vice President
## 6545 <NA> Manager
## 6546 <NA> Manager
## 6547 Vice President <NA>
## 6548 Vice President Manager
## 6549 Vice President Manager
## 6550 <NA> Vice President
## 6551 <NA> Manager
## 6552 <NA> Manager
## 6553 <NA> Trader
## 6554 <NA> Manager
## 6555 <NA> Employee
## 6556 <NA> Vice President
## 6557 <NA> Vice President
## 6558 <NA> Vice President
## 6559 <NA> Employee
## 6560 <NA> Manager
## 6561 <NA> Manager
## 6562 <NA> Manager
## 6563 <NA> Manager
## 6564 <NA> Vice President
## 6565 <NA> Vice President
## 6566 <NA> Vice President
## 6567 <NA> Director
## 6568 <NA> President
## 6569 <NA> Vice President
## 6570 <NA> Director
## 6571 <NA> Vice President
## 6572 <NA> Manager
## 6573 <NA> Director
## 6574 <NA> Vice President
## 6575 <NA> Vice President
## 6576 <NA> Vice President
## 6577 <NA> Vice President
## 6578 <NA> Vice President
## 6579 <NA> Manager
## 6580 <NA> Vice President
## 6581 <NA> Vice President
## 6582 <NA> President
## 6583 <NA> Director
## 6584 <NA> Vice President
## 6585 <NA> Vice President
## 6586 <NA> Vice President
## 6587 <NA> Vice President
## 6588 <NA> Vice President
## 6589 <NA> Manager
## 6590 <NA> Vice President
## 6591 <NA> Vice President
## 6592 <NA> President
## 6593 <NA> Manager
## 6594 <NA> Manager
## 6595 <NA> Manager
## 6596 <NA> Manager
## 6597 <NA> Manager
## 6598 <NA> Manager
## 6599 <NA> Manager
## 6600 <NA> Manager
## 6601 <NA> Vice President
## 6602 <NA> Manager
## 6603 <NA> Manager
## 6604 <NA> Vice President
## 6605 <NA> Vice President
## 6606 <NA> Vice President
## 6607 <NA> Director
## 6608 <NA> President
## 6609 <NA> Vice President
## 6610 <NA> Director
## 6611 <NA> Vice President
## 6612 <NA> Manager
## 6613 <NA> Vice President
## 6614 <NA> Employee
## 6615 <NA> Employee
## 6616 <NA> Vice President
## 6617 <NA> Employee
## 6618 <NA> Director
## 6619 <NA> Manager
## 6620 <NA> Trader
## 6621 <NA> Manager
## 6622 <NA> Vice President
## 6623 <NA> Vice President
## 6624 <NA> Vice President
## 6625 <NA> Manager
## 6626 <NA> Director
## 6627 <NA> Vice President
## 6628 <NA> Vice President
## 6629 <NA> Vice President
## 6630 <NA> Vice President
## 6631 <NA> President
## 6632 <NA> Vice President
## 6633 <NA> Manager
## 6634 <NA> Vice President
## 6635 <NA> Vice President
## 6636 <NA> Vice President
## 6637 <NA> Vice President
## 6638 <NA> Vice President
## 6639 <NA> Director
## 6640 <NA> President
## 6641 <NA> Vice President
## 6642 <NA> Director
## 6643 <NA> Vice President
## 6644 <NA> Manager
## 6645 <NA> Manager
## 6646 <NA> Vice President
## 6647 <NA> Manager
## 6648 Vice President <NA>
## 6649 Vice President <NA>
## 6650 Vice President <NA>
## 6651 Vice President <NA>
## 6652 Vice President Manager
## 6653 Vice President <NA>
## 6654 Vice President <NA>
## 6655 Vice President <NA>
## 6656 Vice President <NA>
## 6657 Vice President Manager
## 6658 Vice President <NA>
## 6659 Vice President <NA>
## 6660 <NA> Manager
## 6661 <NA> Vice President
## 6662 <NA> Manager
## 6663 <NA> Manager
## 6664 <NA> Manager
## 6665 <NA> Manager
## 6666 <NA> Manager
## 6667 <NA> Manager
## 6668 <NA> Manager
## 6669 <NA> Manager
## 6670 <NA> Manager
## 6671 <NA> Manager
## 6672 <NA> Vice President
## 6673 <NA> Manager
## 6674 <NA> Vice President
## 6675 <NA> Vice President
## 6676 <NA> Vice President
## 6677 <NA> Director
## 6678 <NA> President
## 6679 <NA> Vice President
## 6680 <NA> Director
## 6681 <NA> Vice President
## 6682 <NA> Manager
## 6683 <NA> Vice President
## 6684 <NA> Manager
## 6685 Vice President Manager
## 6686 Vice President <NA>
## 6687 Vice President <NA>
## 6688 Vice President <NA>
## 6689 Vice President <NA>
## 6690 Vice President <NA>
## 6691 Vice President <NA>
## 6692 Vice President <NA>
## 6693 Vice President <NA>
## 6694 <NA> Manager
## 6695 Employee Manager
## 6696 <NA> CEO
## 6697 <NA> Employee
## 6698 <NA> Manager
## 6699 <NA> Employee
## 6700 <NA> Director
## 6701 <NA> Director
## 6702 <NA> Vice President
## 6703 <NA> Employee
## 6704 <NA> CEO
## 6705 <NA> Employee
## 6706 <NA> Manager
## 6707 <NA> Employee
## 6708 <NA> Director
## 6709 <NA> Director
## 6710 <NA> Vice President
## 6711 <NA> Employee
## 6712 <NA> Manager
## 6713 <NA> Manager
## 6714 Director <NA>
## 6715 Director Employee
## 6716 Director <NA>
## 6717 Director Manager
## 6718 Director <NA>
## 6719 Director <NA>
## 6720 Director <NA>
## 6721 Director <NA>
## 6722 Director <NA>
## 6723 Director <NA>
## 6724 Director <NA>
## 6725 Director <NA>
## 6726 <NA> Director
## 6727 <NA> Vice President
## 6728 <NA> Manager
## 6729 <NA> Vice President
## 6730 <NA> Director
## 6731 <NA> Vice President
## 6732 <NA> Vice President
## 6733 <NA> Vice President
## 6734 <NA> Vice President
## 6735 <NA> President
## 6736 <NA> Vice President
## 6737 <NA> Manager
## 6738 <NA> Vice President
## 6739 <NA> Vice President
## 6740 <NA> Manager
## 6741 <NA> Manager
## 6742 <NA> Vice President
## 6743 <NA> Vice President
## 6744 <NA> Vice President
## 6745 <NA> Director
## 6746 <NA> President
## 6747 <NA> Vice President
## 6748 <NA> Director
## 6749 <NA> Vice President
## 6750 <NA> Manager
## 6751 <NA> Manager
## 6752 <NA> Vice President
## 6753 <NA> Manager
## 6754 <NA> Manager
## 6755 <NA> Manager
## 6756 <NA> Manager
## 6757 <NA> Employee
## 6758 <NA> Manager
## 6759 <NA> Manager
## 6760 <NA> Director
## 6761 <NA> Vice President
## 6762 <NA> Vice President
## 6763 <NA> Vice President
## 6764 <NA> Vice President
## 6765 <NA> President
## 6766 <NA> Vice President
## 6767 <NA> Manager
## 6768 <NA> Vice President
## 6769 <NA> Vice President
## 6770 <NA> Manager
## 6771 <NA> Manager
## 6772 <NA> Vice President
## 6773 <NA> Vice President
## 6774 <NA> Manager
## 6775 Vice President <NA>
## 6776 Vice President <NA>
## 6777 Vice President <NA>
## 6778 Vice President Vice President
## 6779 Vice President <NA>
## 6780 Vice President <NA>
## 6781 Vice President Manager
## 6782 Vice President <NA>
## 6783 Vice President <NA>
## 6784 Vice President <NA>
## 6785 Vice President <NA>
## 6786 Vice President <NA>
## 6787 <NA> Manager
## 6788 Manager <NA>
## 6789 Manager <NA>
## 6790 Manager Vice President
## 6791 Manager <NA>
## 6792 Manager <NA>
## 6793 Manager <NA>
## 6794 Manager <NA>
## 6795 <NA> Manager
## 6796 <NA> Manager
## 6797 <NA> Director
## 6798 <NA> Vice President
## 6799 <NA> Vice President
## 6800 <NA> Vice President
## 6801 <NA> Vice President
## 6802 <NA> President
## 6803 <NA> Vice President
## 6804 <NA> Manager
## 6805 <NA> Vice President
## 6806 <NA> Manager
## 6807 <NA> Manager
## 6808 <NA> Director
## 6809 <NA> Vice President
## 6810 <NA> Vice President
## 6811 <NA> Vice President
## 6812 <NA> Vice President
## 6813 <NA> President
## 6814 <NA> Vice President
## 6815 <NA> Manager
## 6816 <NA> Vice President
## 6817 <NA> Vice President
## 6818 <NA> Manager
## 6819 <NA> Vice President
## 6820 <NA> Employee
## 6821 <NA> Manager
## 6822 <NA> Employee
## 6823 <NA> Manager
## 6824 <NA> Vice President
## 6825 <NA> Manager
## 6826 <NA> Employee
## 6827 <NA> Vice President
## 6828 <NA> Employee
## 6829 <NA> Trader
## 6830 <NA> Employee
## 6831 <NA> Manager
## 6832 Vice President Manager
## 6833 Vice President <NA>
## 6834 <NA> Manager
## 6835 <NA> Manager
## 6836 <NA> Manager
## 6837 <NA> Employee
## 6838 <NA> Manager
## 6839 <NA> Manager
## 6840 <NA> Employee
## 6841 <NA> Manager
## 6842 <NA> Employee
## 6843 <NA> Manager
## 6844 <NA> Director
## 6845 <NA> Vice President
## 6846 <NA> Vice President
## 6847 <NA> Vice President
## 6848 <NA> Vice President
## 6849 <NA> President
## 6850 <NA> Vice President
## 6851 <NA> Manager
## 6852 <NA> Vice President
## 6853 <NA> Vice President
## 6854 <NA> Manager
## 6855 <NA> Manager
## 6856 <NA> Vice President
## 6857 <NA> Employee
## 6858 <NA> Manager
## 6859 Director <NA>
## 6860 Director Employee
## 6861 Director <NA>
## 6862 Director Manager
## 6863 Director <NA>
## 6864 Director <NA>
## 6865 Director <NA>
## 6866 Director <NA>
## 6867 Director <NA>
## 6868 Director <NA>
## 6869 <NA> Vice President
## 6870 <NA> Employee
## 6871 <NA> Manager
## 6872 <NA> Director
## 6873 <NA> Manager
## 6874 <NA> Manager
## 6875 <NA> Manager
## 6876 <NA> Vice President
## 6877 <NA> Vice President
## 6878 <NA> Employee
## 6879 <NA> Manager
## 6880 <NA> Vice President
## 6881 <NA> Employee
## 6882 <NA> Manager
## 6883 <NA> Director
## 6884 <NA> Manager
## 6885 <NA> Manager
## 6886 <NA> Manager
## 6887 <NA> Manager
## 6888 <NA> Manager
## 6889 <NA> Manager
## 6890 <NA> Manager
## 6891 <NA> Vice President
## 6892 <NA> Vice President
## 6893 <NA> Manager
## 6894 <NA> Manager
## 6895 <NA> Vice President
## 6896 <NA> Manager
## 6897 <NA> Manager
## 6898 <NA> Manager
## 6899 <NA> Manager
## 6900 <NA> Manager
## 6901 <NA> Manager
## 6902 <NA> Vice President
## 6903 <NA> Vice President
## 6904 <NA> Manager
## 6905 <NA> Manager
## 6906 <NA> Manager
## 6907 <NA> Vice President
## 6908 <NA> Manager
## 6909 <NA> Employee
## 6910 <NA> Manager
## 6911 <NA> Manager
## 6912 <NA> Director
## 6913 <NA> Manager
## 6914 <NA> Employee
## 6915 <NA> Employee
## 6916 <NA> Employee
## 6917 <NA> Manager
## 6918 <NA> Vice President
## 6919 <NA> Employee
## 6920 <NA> Vice President
## 6921 <NA> Manager
## 6922 <NA> Manager
## 6923 <NA> Manager
## 6924 Employee <NA>
## 6925 Employee <NA>
## 6926 Employee <NA>
## 6927 Employee <NA>
## 6928 Employee <NA>
## 6929 Employee Employee
## 6930 Employee <NA>
## 6931 Employee <NA>
## 6932 Employee Manager
## 6933 Employee Vice President
## 6934 Employee <NA>
## 6935 Employee <NA>
## 6936 Employee Vice President
## 6937 Employee <NA>
## 6938 Employee <NA>
## 6939 <NA> Employee
## 6940 <NA> Manager
## 6941 <NA> Director
## 6942 <NA> Vice President
## 6943 <NA> Employee
## 6944 <NA> Vice President
## 6945 <NA> Vice President
## 6946 <NA> Vice President
## 6947 <NA> President
## 6948 <NA> Vice President
## 6949 <NA> Manager
## 6950 <NA> Vice President
## 6951 <NA> Vice President
## 6952 <NA> President
## 6953 <NA> Vice President
## 6954 <NA> Vice President
## 6955 <NA> Manager
## 6956 <NA> Vice President
## 6957 <NA> Vice President
## 6958 <NA> Vice President
## 6959 <NA> Vice President
## 6960 <NA> Manager
## 6961 <NA> Manager
## 6962 <NA> Manager
## 6963 Vice President Manager
## 6964 <NA> Manager
## 6965 <NA> Manager
## 6966 <NA> Manager
## 6967 <NA> Manager
## 6968 <NA> Manager
## 6969 <NA> Manager
## 6970 <NA> Manager
## 6971 <NA> Manager
## 6972 <NA> Manager
## 6973 Vice President <NA>
## 6974 Vice President <NA>
## 6975 Vice President <NA>
## 6976 Vice President Manager
## 6977 Vice President <NA>
## 6978 Vice President Manager
## 6979 <NA> Vice President
## 6980 <NA> Manager
## 6981 <NA> Manager
## 6982 <NA> Manager
## 6983 <NA> Manager
## 6984 <NA> Vice President
## 6985 <NA> Manager
## 6986 <NA> Vice President
## 6987 <NA> Vice President
## 6988 <NA> Vice President
## 6989 <NA> Vice President
## 6990 <NA> Manager
## 6991 <NA> Manager
## 6992 <NA> Manager
## 6993 <NA> Manager
## 6994 <NA> Manager
## 6995 <NA> Manager
## 6996 <NA> Vice President
## 6997 <NA> Employee
## 6998 <NA> Employee
## 6999 <NA> Manager
## 7000 <NA> Employee
## 7001 <NA> Manager
## 7002 <NA> Manager
## 7003 <NA> Manager
## 7004 <NA> Manager
## 7005 <NA> Manager
## 7006 <NA> Manager
## 7007 <NA> Manager
## 7008 <NA> Manager
## 7009 <NA> Manager
## 7010 <NA> Vice President
## 7011 <NA> Vice President
## 7012 <NA> Manager
## 7013 <NA> Vice President
## 7014 <NA> Manager
## 7015 <NA> Manager
## 7016 <NA> Vice President
## 7017 <NA> Manager
## 7018 <NA> Vice President
## 7019 <NA> Vice President
## 7020 <NA> Manager
## 7021 <NA> Vice President
## 7022 <NA> Manager
## 7023 Director <NA>
## 7024 Director Employee
## 7025 Director <NA>
## 7026 Director <NA>
## 7027 Director <NA>
## 7028 Director Manager
## 7029 Director <NA>
## 7030 Director <NA>
## 7031 Director <NA>
## 7032 Director <NA>
## 7033 Director <NA>
## 7034 Director <NA>
## 7035 Director <NA>
## 7036 Director <NA>
## 7037 <NA> Manager
## 7038 <NA> Director
## 7039 <NA> Manager
## 7040 <NA> Vice President
## 7041 <NA> Manager
## 7042 <NA> Director
## 7043 <NA> Manager
## 7044 <NA> Director
## 7045 <NA> Manager
## 7046 <NA> Manager
## 7047 <NA> Manager
## 7048 <NA> Manager
## 7049 <NA> Manager
## 7050 <NA> Manager
## 7051 <NA> Employee
## 7052 <NA> Manager
## 7053 Director Director
## 7054 <NA> Manager
## 7055 <NA> Manager
## 7056 <NA> Manager
## 7057 Vice President Vice President
## 7058 Vice President <NA>
## 7059 Vice President Manager
## 7060 <NA> Manager
## 7061 <NA> Manager
## 7062 <NA> Manager
## 7063 <NA> Employee
## 7064 <NA> Manager
## 7065 <NA> Manager
## 7066 <NA> Employee
## 7067 Vice President Vice President
## 7068 Vice President <NA>
## 7069 Vice President <NA>
## 7070 Vice President <NA>
## 7071 Vice President Manager
## 7072 Vice President Vice President
## 7073 Vice President Vice President
## 7074 Vice President <NA>
## 7075 Vice President <NA>
## 7076 Vice President Trader
## 7077 Vice President Trader
## 7078 Vice President <NA>
## 7079 Vice President <NA>
## 7080 Vice President Manager
## 7081 <NA> Employee
## 7082 <NA> Employee
## 7083 Vice President Employee
## 7084 <NA> Employee
## 7085 <NA> Employee
## 7086 <NA> Employee
## 7087 <NA> Employee
## 7088 <NA> Employee
## 7089 <NA> Manager
## 7090 <NA> Employee
## 7091 Employee <NA>
## 7092 Employee <NA>
## 7093 Employee <NA>
## 7094 Employee <NA>
## 7095 Employee <NA>
## 7096 Employee <NA>
## 7097 Employee <NA>
## 7098 Employee <NA>
## 7099 Employee <NA>
## 7100 Employee <NA>
## 7101 Employee <NA>
## 7102 Employee <NA>
## 7103 Employee <NA>
## 7104 Employee <NA>
## 7105 Employee <NA>
## 7106 Employee Vice President
## 7107 Employee <NA>
## 7108 Employee <NA>
## 7109 Employee <NA>
## 7110 Employee <NA>
## 7111 Employee Employee
## 7112 Employee Vice President
## 7113 Employee <NA>
## 7114 Employee <NA>
## 7115 Employee <NA>
## 7116 Employee <NA>
## 7117 Employee <NA>
## 7118 Employee Employee
## 7119 Employee Vice President
## 7120 Employee <NA>
## 7121 Employee <NA>
## 7122 Employee <NA>
## 7123 Employee <NA>
## 7124 Employee <NA>
## 7125 Employee <NA>
## 7126 Employee <NA>
## 7127 Employee <NA>
## 7128 Employee <NA>
## 7129 Employee <NA>
## 7130 Employee <NA>
## 7131 Employee <NA>
## 7132 Employee <NA>
## 7133 Employee <NA>
## 7134 Employee <NA>
## 7135 Employee <NA>
## 7136 Employee <NA>
## 7137 Employee <NA>
## 7138 Employee <NA>
## 7139 Employee <NA>
## 7140 Employee <NA>
## 7141 Employee <NA>
## 7142 Employee <NA>
## 7143 Employee <NA>
## 7144 Employee <NA>
## 7145 Employee <NA>
## 7146 Employee <NA>
## 7147 Employee <NA>
## 7148 Employee <NA>
## 7149 Employee <NA>
## 7150 Employee <NA>
## 7151 Employee <NA>
## 7152 Employee <NA>
## 7153 Employee <NA>
## 7154 Employee <NA>
## 7155 Employee <NA>
## 7156 Employee <NA>
## 7157 Employee <NA>
## 7158 <NA> Employee
## 7159 <NA> Employee
## 7160 <NA> Employee
## 7161 <NA> Employee
## 7162 <NA> Employee
## 7163 <NA> Employee
## 7164 <NA> Employee
## 7165 <NA> Employee
## 7166 <NA> Employee
## 7167 <NA> Employee
## 7168 <NA> Employee
## 7169 <NA> Employee
## 7170 <NA> Employee
## 7171 <NA> Employee
## 7172 <NA> Vice President
## 7173 <NA> Employee
## 7174 <NA> Employee
## 7175 <NA> Employee
## 7176 <NA> Employee
## 7177 <NA> Employee
## 7178 <NA> Employee
## 7179 <NA> Employee
## 7180 <NA> Employee
## 7181 <NA> Employee
## 7182 <NA> Employee
## 7183 <NA> Employee
## 7184 <NA> Manager
## 7185 <NA> Employee
## 7186 <NA> Employee
## 7187 <NA> Vice President
## 7188 <NA> Vice President
## 7189 <NA> Employee
## 7190 <NA> Employee
## 7191 <NA> Vice President
## 7192 <NA> Employee
## 7193 <NA> Employee
## 7194 <NA> Employee
## 7195 <NA> Employee
## 7196 <NA> Employee
## 7197 <NA> Employee
## 7198 <NA> Employee
## 7199 <NA> Employee
## 7200 <NA> Employee
## 7201 <NA> Employee
## 7202 <NA> Employee
## 7203 <NA> Employee
## 7204 <NA> Employee
## 7205 <NA> Employee
## 7206 <NA> Employee
## 7207 <NA> Employee
## 7208 <NA> Employee
## 7209 <NA> Employee
## 7210 <NA> Employee
## 7211 <NA> Employee
## 7212 <NA> Employee
## 7213 <NA> Employee
## 7214 <NA> Employee
## 7215 <NA> Employee
## 7216 <NA> Employee
## 7217 <NA> Employee
## 7218 <NA> Employee
## 7219 <NA> Employee
## 7220 <NA> Employee
## 7221 <NA> Employee
## 7222 <NA> Employee
## 7223 <NA> Employee
## 7224 <NA> Employee
## 7225 <NA> Employee
## 7226 <NA> Employee
## 7227 <NA> Employee
## 7228 <NA> Employee
## 7229 <NA> Employee
## 7230 <NA> Employee
## 7231 <NA> Employee
## 7232 <NA> Employee
## 7233 <NA> Employee
## 7234 <NA> Employee
## 7235 <NA> Employee
## 7236 <NA> Employee
## 7237 <NA> Employee
## 7238 <NA> Employee
## 7239 <NA> Employee
## 7240 <NA> Employee
## 7241 <NA> Employee
## 7242 <NA> Employee
## 7243 <NA> Employee
## 7244 <NA> Employee
## 7245 <NA> Employee
## 7246 <NA> Vice President
## 7247 <NA> Manager
## 7248 <NA> Trader
## 7249 <NA> Vice President
## 7250 <NA> Employee
## 7251 <NA> Vice President
## 7252 <NA> Vice President
## 7253 <NA> Employee
## 7254 <NA> Employee
## 7255 <NA> Employee
## 7256 <NA> Employee
## 7257 <NA> Employee
## 7258 <NA> Employee
## 7259 <NA> Employee
## 7260 <NA> Employee
## 7261 <NA> Employee
## 7262 <NA> Employee
## 7263 <NA> Employee
## 7264 <NA> Employee
## 7265 <NA> Vice President
## 7266 <NA> Employee
## 7267 <NA> Employee
## 7268 <NA> Employee
## 7269 <NA> Employee
## 7270 <NA> Employee
## 7271 <NA> Employee
## 7272 <NA> Employee
## 7273 <NA> Employee
## 7274 <NA> Employee
## 7275 <NA> Employee
## 7276 <NA> Employee
## 7277 <NA> CEO
## 7278 <NA> Employee
## 7279 <NA> Employee
## 7280 <NA> Employee
## 7281 <NA> Employee
## 7282 <NA> Employee
## 7283 <NA> Employee
## 7284 <NA> Employee
## 7285 <NA> Vice President
## 7286 <NA> Employee
## 7287 <NA> Vice President
## 7288 <NA> Vice President
## 7289 <NA> Employee
## 7290 <NA> Vice President
## 7291 <NA> CEO
## 7292 <NA> Employee
## 7293 <NA> Employee
## 7294 <NA> Employee
## 7295 <NA> Employee
## 7296 <NA> Employee
## 7297 <NA> Employee
## 7298 <NA> Vice President
## 7299 <NA> Employee
## 7300 <NA> Vice President
## 7301 <NA> Employee
## 7302 <NA> Employee
## 7303 <NA> Vice President
## 7304 <NA> Employee
## 7305 <NA> Employee
## 7306 <NA> Employee
## 7307 <NA> Vice President
## 7308 <NA> Employee
## 7309 <NA> Employee
## 7310 <NA> Employee
## 7311 <NA> Employee
## 7312 <NA> Employee
## 7313 <NA> Employee
## 7314 <NA> Employee
## 7315 <NA> Employee
## 7316 <NA> Employee
## 7317 <NA> Employee
## 7318 <NA> Employee
## 7319 <NA> Employee
## 7320 <NA> Employee
## 7321 <NA> Employee
## 7322 <NA> Employee
## 7323 <NA> Employee
## 7324 <NA> Employee
## 7325 <NA> Employee
## 7326 <NA> Employee
## 7327 <NA> Employee
## 7328 <NA> Employee
## 7329 <NA> Employee
## 7330 <NA> Employee
## 7331 <NA> Employee
## 7332 <NA> Employee
## 7333 <NA> Employee
## 7334 <NA> Employee
## 7335 <NA> Employee
## 7336 <NA> Employee
## 7337 <NA> Employee
## 7338 <NA> Employee
## 7339 <NA> Employee
## 7340 <NA> Employee
## 7341 <NA> Employee
## 7342 <NA> Employee
## 7343 <NA> Employee
## 7344 <NA> Employee
## 7345 <NA> Employee
## 7346 <NA> Employee
## 7347 <NA> Employee
## 7348 <NA> Employee
## 7349 <NA> Employee
## 7350 <NA> Employee
## 7351 <NA> Employee
## 7352 <NA> Employee
## 7353 <NA> Employee
## 7354 <NA> Employee
## 7355 <NA> Employee
## 7356 <NA> Employee
## 7357 <NA> Employee
## 7358 <NA> Employee
## 7359 <NA> Employee
## 7360 <NA> Employee
## 7361 <NA> Employee
## 7362 <NA> Employee
## 7363 <NA> Employee
## 7364 <NA> Employee
## 7365 <NA> Employee
## 7366 <NA> Employee
## 7367 <NA> Employee
## 7368 <NA> Employee
## 7369 <NA> Employee
## 7370 <NA> Employee
## 7371 <NA> Employee
## 7372 <NA> Employee
## 7373 <NA> Employee
## 7374 <NA> Employee
## 7375 <NA> Employee
## 7376 <NA> Employee
## 7377 <NA> Employee
## 7378 <NA> Employee
## 7379 <NA> Employee
## 7380 <NA> Employee
## 7381 <NA> Employee
## 7382 <NA> Vice President
## 7383 <NA> Vice President
## 7384 <NA> Vice President
## 7385 <NA> Manager
## 7386 <NA> Employee
## 7387 <NA> Employee
## 7388 <NA> Vice President
## 7389 <NA> Vice President
## 7390 <NA> Vice President
## 7391 <NA> Employee
## 7392 <NA> Employee
## 7393 <NA> Employee
## 7394 <NA> Employee
## 7395 <NA> Employee
## 7396 <NA> Employee
## 7397 <NA> Employee
## 7398 <NA> Employee
## 7399 <NA> Employee
## 7400 <NA> Employee
## 7401 <NA> Employee
## 7402 <NA> Employee
## 7403 <NA> Employee
## 7404 <NA> Employee
## 7405 <NA> Employee
## 7406 <NA> Employee
## 7407 <NA> Employee
## 7408 <NA> Employee
## 7409 <NA> Employee
## 7410 <NA> Employee
## 7411 <NA> Employee
## 7412 <NA> Employee
## 7413 <NA> Employee
## 7414 <NA> Employee
## 7415 <NA> Employee
## 7416 <NA> Employee
## 7417 <NA> Vice President
## 7418 <NA> Vice President
## 7419 <NA> Vice President
## 7420 <NA> Manager
## 7421 <NA> Employee
## 7422 <NA> Employee
## 7423 <NA> Vice President
## 7424 <NA> Vice President
## 7425 <NA> Vice President
## 7426 <NA> Employee
## 7427 <NA> Employee
## 7428 <NA> Employee
## 7429 <NA> Employee
## 7430 <NA> Employee
## 7431 <NA> Employee
## 7432 <NA> Employee
## 7433 <NA> Employee
## 7434 <NA> Employee
## 7435 <NA> Employee
## 7436 <NA> Employee
## 7437 <NA> Employee
## 7438 <NA> Employee
## 7439 <NA> Employee
## 7440 <NA> Employee
## 7441 <NA> Employee
## 7442 <NA> Vice President
## 7443 <NA> Vice President
## 7444 <NA> Vice President
## 7445 <NA> Manager
## 7446 <NA> Employee
## 7447 <NA> Employee
## 7448 <NA> Vice President
## 7449 <NA> Vice President
## 7450 <NA> Vice President
## 7451 <NA> Employee
## 7452 <NA> Employee
## 7453 <NA> Employee
## 7454 <NA> Employee
## 7455 <NA> Employee
## 7456 <NA> Employee
## 7457 <NA> Employee
## 7458 <NA> Employee
## 7459 <NA> Employee
## 7460 <NA> Employee
## 7461 <NA> Employee
## 7462 <NA> Employee
## 7463 <NA> Employee
## 7464 <NA> Employee
## 7465 <NA> Employee
## 7466 <NA> Employee
## 7467 <NA> Employee
## 7468 <NA> Employee
## 7469 <NA> Vice President
## 7470 <NA> Employee
## 7471 <NA> Employee
## 7472 <NA> Employee
## 7473 <NA> Employee
## 7474 <NA> Employee
## 7475 <NA> Employee
## 7476 <NA> Employee
## 7477 <NA> Employee
## 7478 <NA> Employee
## 7479 <NA> Employee
## 7480 <NA> Vice President
## 7481 <NA> Employee
## 7482 <NA> Vice President
## 7483 <NA> Employee
## 7484 <NA> Employee
## 7485 <NA> Employee
## 7486 <NA> Employee
## 7487 <NA> Employee
## 7488 <NA> Employee
## 7489 <NA> Employee
## 7490 <NA> Vice President
## 7491 <NA> Employee
## 7492 Employee <NA>
## 7493 Employee <NA>
## 7494 Employee <NA>
## 7495 Employee <NA>
## 7496 Employee Employee
## 7497 Employee <NA>
## 7498 Employee Vice President
## 7499 Employee <NA>
## 7500 Employee <NA>
## 7501 Employee <NA>
## 7502 Employee <NA>
## 7503 Employee <NA>
## 7504 Employee <NA>
## 7505 Employee <NA>
## 7506 Employee <NA>
## 7507 <NA> Employee
## 7508 <NA> Employee
## 7509 <NA> Vice President
## 7510 <NA> Employee
## 7511 <NA> Employee
## 7512 <NA> Employee
## 7513 <NA> Employee
## 7514 <NA> Employee
## 7515 <NA> Vice President
## 7516 <NA> Employee
## 7517 <NA> Employee
## 7518 <NA> Employee
## 7519 <NA> Employee
## 7520 <NA> Employee
## 7521 <NA> Employee
## 7522 <NA> Employee
## 7523 <NA> Employee
## 7524 <NA> Employee
## 7525 <NA> Employee
## 7526 <NA> Employee
## 7527 <NA> Employee
## 7528 <NA> Employee
## 7529 <NA> Employee
## 7530 <NA> Employee
## 7531 <NA> Vice President
## 7532 <NA> Employee
## 7533 <NA> Vice President
## 7534 <NA> Employee
## 7535 <NA> Employee
## 7536 <NA> Vice President
## 7537 <NA> Vice President
## 7538 <NA> Employee
## 7539 <NA> Employee
## 7540 <NA> Employee
## 7541 <NA> Employee
## 7542 <NA> Employee
## 7543 <NA> Employee
## 7544 <NA> Employee
## 7545 <NA> Employee
## 7546 <NA> Employee
## 7547 <NA> Employee
## 7548 <NA> Employee
## 7549 <NA> Vice President
## 7550 <NA> Vice President
## 7551 <NA> Employee
## 7552 <NA> Vice President
## 7553 <NA> Vice President
## 7554 <NA> Employee
## 7555 <NA> Employee
## 7556 <NA> Employee
## 7557 <NA> Employee
## 7558 <NA> Employee
## 7559 <NA> Employee
## 7560 <NA> Employee
## 7561 <NA> Employee
## 7562 <NA> Employee
## 7563 <NA> Employee
## 7564 <NA> Employee
## 7565 <NA> Employee
## 7566 <NA> Employee
## 7567 <NA> Employee
## 7568 <NA> Employee
## 7569 <NA> Employee
## 7570 <NA> Employee
## 7571 <NA> Employee
## 7572 <NA> Employee
## 7573 <NA> Employee
## 7574 <NA> Employee
## 7575 <NA> Employee
## 7576 <NA> Employee
## 7577 <NA> Employee
## 7578 <NA> Employee
## 7579 <NA> Employee
## 7580 <NA> Employee
## 7581 <NA> Employee
## 7582 <NA> Employee
## 7583 <NA> Employee
## 7584 <NA> Employee
## 7585 <NA> Employee
## 7586 <NA> Employee
## 7587 <NA> Employee
## 7588 <NA> Employee
## 7589 <NA> Employee
## 7590 <NA> Employee
## 7591 <NA> Employee
## 7592 <NA> Employee
## 7593 <NA> Employee
## 7594 <NA> Employee
## 7595 <NA> Employee
## 7596 <NA> Employee
## 7597 <NA> Employee
## 7598 <NA> Employee
## 7599 <NA> Employee
## 7600 <NA> Vice President
## 7601 <NA> Employee
## 7602 <NA> Employee
## 7603 <NA> Vice President
## 7604 <NA> Employee
## 7605 <NA> Employee
## 7606 <NA> Employee
## 7607 <NA> Employee
## 7608 <NA> Employee
## 7609 <NA> Employee
## 7610 <NA> Employee
## 7611 <NA> Employee
## 7612 <NA> Employee
## 7613 <NA> Employee
## 7614 <NA> Employee
## 7615 <NA> Employee
## 7616 <NA> Employee
## 7617 <NA> Employee
## 7618 <NA> Employee
## 7619 <NA> Employee
## 7620 <NA> Employee
## 7621 <NA> Employee
## 7622 <NA> Employee
## 7623 <NA> Employee
## 7624 <NA> Employee
## 7625 <NA> Employee
## 7626 <NA> Employee
## 7627 <NA> Employee
## 7628 <NA> Employee
## 7629 <NA> Employee
## 7630 <NA> Employee
## 7631 <NA> Employee
## 7632 <NA> Employee
## 7633 <NA> Employee
## 7634 <NA> Employee
## 7635 <NA> Employee
## 7636 <NA> Employee
## 7637 <NA> Employee
## 7638 <NA> Employee
## 7639 <NA> Employee
## 7640 <NA> Employee
## 7641 <NA> Employee
## 7642 <NA> Employee
## 7643 <NA> Employee
## 7644 <NA> Employee
## 7645 <NA> Employee
## 7646 <NA> Employee
## 7647 <NA> Employee
## 7648 <NA> Employee
## 7649 <NA> Employee
## 7650 <NA> Employee
## 7651 <NA> Employee
## 7652 <NA> Employee
## 7653 <NA> Employee
## 7654 <NA> Employee
## 7655 <NA> Employee
## 7656 <NA> Employee
## 7657 <NA> Employee
## 7658 <NA> Employee
## 7659 <NA> Employee
## 7660 <NA> Employee
## 7661 <NA> Employee
## 7662 <NA> Employee
## 7663 <NA> Employee
## 7664 <NA> Employee
## 7665 <NA> Employee
## 7666 <NA> Employee
## 7667 <NA> Employee
## 7668 <NA> Employee
## 7669 <NA> Employee
## 7670 <NA> Employee
## 7671 <NA> Employee
## 7672 <NA> Employee
## 7673 <NA> Employee
## 7674 <NA> Employee
## 7675 <NA> Employee
## 7676 <NA> Employee
## 7677 <NA> Employee
## 7678 <NA> Employee
## 7679 <NA> Employee
## 7680 <NA> Employee
## 7681 <NA> Employee
## 7682 <NA> Employee
## 7683 <NA> Employee
## 7684 <NA> Employee
## 7685 <NA> Employee
## 7686 <NA> Employee
## 7687 <NA> Employee
## 7688 <NA> Employee
## 7689 <NA> Employee
## 7690 <NA> Employee
## 7691 <NA> Employee
## 7692 <NA> Employee
## 7693 <NA> Employee
## 7694 <NA> Employee
## 7695 <NA> Employee
## 7696 <NA> Employee
## 7697 <NA> Employee
## 7698 <NA> Employee
## 7699 <NA> Employee
## 7700 <NA> Employee
## 7701 <NA> Employee
## 7702 <NA> Employee
## 7703 <NA> Employee
## 7704 <NA> Employee
## 7705 <NA> Employee
## 7706 <NA> Employee
## 7707 <NA> Employee
## 7708 <NA> Employee
## 7709 <NA> Employee
## 7710 <NA> Employee
## 7711 <NA> Employee
## 7712 <NA> Employee
## 7713 <NA> Employee
## 7714 <NA> Employee
## 7715 <NA> Employee
## 7716 <NA> Employee
## 7717 <NA> Employee
## 7718 <NA> Employee
## 7719 <NA> Employee
## 7720 <NA> Employee
## 7721 <NA> Employee
## 7722 <NA> Employee
## 7723 <NA> Employee
## 7724 <NA> Employee
## 7725 <NA> Employee
## 7726 <NA> Employee
## 7727 <NA> Employee
## 7728 <NA> Employee
## 7729 <NA> Employee
## 7730 <NA> Employee
## 7731 <NA> Employee
## 7732 <NA> Employee
## 7733 <NA> Vice President
## 7734 <NA> Employee
## 7735 <NA> Employee
## 7736 <NA> Employee
## 7737 <NA> Vice President
## 7738 <NA> Vice President
## 7739 Vice President <NA>
## 7740 Vice President <NA>
## 7741 Vice President <NA>
## 7742 Vice President <NA>
## 7743 Vice President Employee
## 7744 Vice President <NA>
## 7745 Vice President <NA>
## 7746 Vice President <NA>
## 7747 <NA> Employee
## 7748 <NA> Employee
## 7749 <NA> Employee
## 7750 <NA> Employee
## 7751 <NA> Employee
## 7752 <NA> Employee
## 7753 <NA> Employee
## 7754 <NA> Employee
## 7755 <NA> Employee
## 7756 <NA> Vice President
## 7757 <NA> Manager
## 7758 <NA> Trader
## 7759 <NA> Vice President
## 7760 <NA> Employee
## 7761 <NA> Vice President
## 7762 <NA> Manager
## 7763 <NA> Trader
## 7764 <NA> Vice President
## 7765 <NA> Employee
## 7766 <NA> Vice President
## 7767 <NA> Vice President
## 7768 <NA> Employee
## 7769 <NA> Employee
## 7770 <NA> Employee
## 7771 <NA> Employee
## 7772 <NA> Employee
## 7773 <NA> Employee
## 7774 <NA> Employee
## 7775 <NA> Employee
## 7776 <NA> Employee
## 7777 <NA> Employee
## 7778 <NA> Employee
## 7779 <NA> Employee
## 7780 <NA> Employee
## 7781 <NA> Employee
## 7782 <NA> Employee
## 7783 Employee <NA>
## 7784 Employee Employee
## 7785 Employee Employee
## 7786 <NA> Employee
## 7787 <NA> Employee
## 7788 <NA> Employee
## 7789 Employee <NA>
## 7790 <NA> Employee
## 7791 <NA> Employee
## 7792 <NA> Employee
## 7793 <NA> Employee
## 7794 <NA> Employee
## 7795 <NA> Employee
## 7796 <NA> Employee
## 7797 <NA> Employee
## 7798 <NA> Employee
## 7799 <NA> Employee
## 7800 <NA> Employee
## 7801 <NA> Employee
## 7802 <NA> Employee
## 7803 <NA> Employee
## 7804 <NA> President
## 7805 <NA> Vice President
## 7806 <NA> Employee
## 7807 <NA> Employee
## 7808 <NA> Employee
## 7809 <NA> Employee
## 7810 <NA> Employee
## 7811 <NA> Employee
## 7812 <NA> Employee
## 7813 <NA> Employee
## 7814 <NA> Employee
## 7815 <NA> Employee
## 7816 <NA> Employee
## 7817 <NA> Employee
## 7818 <NA> Employee
## 7819 <NA> Employee
## 7820 <NA> Employee
## 7821 <NA> Employee
## 7822 <NA> Employee
## 7823 <NA> Employee
## 7824 <NA> Employee
## 7825 <NA> Employee
## 7826 <NA> Employee
## 7827 <NA> Employee
## 7828 <NA> Employee
## 7829 <NA> Employee
## 7830 <NA> Employee
## 7831 <NA> Employee
## 7832 <NA> Employee
## 7833 <NA> Employee
## 7834 <NA> Employee
## 7835 <NA> Employee
## 7836 <NA> Employee
## 7837 <NA> Employee
## 7838 <NA> Employee
## 7839 <NA> Employee
## 7840 <NA> Employee
## 7841 <NA> Managing Director
## 7842 <NA> Employee
## 7843 <NA> Employee
## 7844 <NA> Managing Director
## 7845 <NA> Employee
## 7846 <NA> Managing Director
## 7847 <NA> Employee
## 7848 <NA> Managing Director
## 7849 <NA> Employee
## 7850 <NA> Employee
## 7851 <NA> Employee
## 7852 <NA> Managing Director
## 7853 <NA> Employee
## 7854 Employee <NA>
## 7855 Employee <NA>
## 7856 Employee President
## 7857 Employee <NA>
## 7858 Employee <NA>
## 7859 Employee <NA>
## 7860 Employee <NA>
## 7861 Employee <NA>
## 7862 Employee <NA>
## 7863 Employee <NA>
## 7864 Employee <NA>
## 7865 Employee <NA>
## 7866 Employee <NA>
## 7867 Employee Vice President
## 7868 Employee <NA>
## 7869 Employee <NA>
## 7870 Employee Vice President
## 7871 Employee <NA>
## 7872 Employee <NA>
## 7873 Employee <NA>
## 7874 Employee <NA>
## 7875 Employee <NA>
## 7876 Employee <NA>
## 7877 Employee <NA>
## 7878 Employee <NA>
## 7879 Employee <NA>
## 7880 Employee <NA>
## 7881 Employee <NA>
## 7882 Employee <NA>
## 7883 Employee <NA>
## 7884 Employee <NA>
## 7885 Employee <NA>
## 7886 Employee <NA>
## 7887 Employee <NA>
## 7888 Employee <NA>
## 7889 Employee <NA>
## 7890 Employee <NA>
## 7891 Employee <NA>
## 7892 Employee Vice President
## 7893 Employee <NA>
## 7894 Employee Vice President
## 7895 Employee <NA>
## 7896 Employee <NA>
## 7897 Employee <NA>
## 7898 Employee Vice President
## 7899 Employee Vice President
## 7900 Employee <NA>
## 7901 Employee <NA>
## 7902 Employee Managing Director
## 7903 Employee <NA>
## 7904 Employee <NA>
## 7905 Employee <NA>
## 7906 Employee <NA>
## 7907 Employee Managing Director
## 7908 Employee <NA>
## 7909 Employee <NA>
## 7910 Employee <NA>
## 7911 Employee <NA>
## 7912 Employee <NA>
## 7913 Employee <NA>
## 7914 Employee <NA>
## 7915 Employee <NA>
## 7916 Employee Employee
## 7917 Employee <NA>
## 7918 Employee <NA>
## 7919 Employee Vice President
## 7920 Employee <NA>
## 7921 Employee <NA>
## 7922 Employee <NA>
## 7923 Employee Vice President
## 7924 Employee <NA>
## 7925 Employee <NA>
## 7926 Employee <NA>
## 7927 Employee <NA>
## 7928 Employee <NA>
## 7929 Employee <NA>
## 7930 Employee <NA>
## 7931 Employee <NA>
## 7932 Employee <NA>
## 7933 Employee Employee
## 7934 Employee <NA>
## 7935 Employee Employee
## 7936 Employee <NA>
## 7937 Employee Employee
## 7938 Employee <NA>
## 7939 Employee <NA>
## 7940 Employee <NA>
## 7941 Employee <NA>
## 7942 Employee <NA>
## 7943 Employee <NA>
## 7944 Employee Managing Director
## 7945 Employee <NA>
## 7946 Employee <NA>
## 7947 Employee <NA>
## 7948 Employee <NA>
## 7949 Employee Managing Director
## 7950 Employee <NA>
## 7951 Employee <NA>
## 7952 Employee <NA>
## 7953 Employee <NA>
## 7954 Employee <NA>
## 7955 Employee Employee
## 7956 Employee <NA>
## 7957 Employee <NA>
## 7958 Employee <NA>
## 7959 Employee <NA>
## 7960 Employee <NA>
## 7961 Employee <NA>
## 7962 Employee <NA>
## 7963 Employee <NA>
## 7964 Employee <NA>
## 7965 Employee <NA>
## 7966 Employee <NA>
## 7967 Employee Employee
## 7968 Employee <NA>
## 7969 Employee Vice President
## 7970 Employee <NA>
## 7971 Employee <NA>
## 7972 Employee <NA>
## 7973 Employee Employee
## 7974 Employee <NA>
## 7975 Employee <NA>
## 7976 Employee <NA>
## 7977 Employee <NA>
## 7978 Employee <NA>
## 7979 Employee <NA>
## 7980 Employee <NA>
## 7981 Employee <NA>
## 7982 Employee <NA>
## 7983 Employee <NA>
## 7984 Employee <NA>
## 7985 Employee <NA>
## 7986 Employee <NA>
## 7987 Employee Vice President
## 7988 Employee <NA>
## 7989 Employee <NA>
## 7990 Employee <NA>
## 7991 Employee <NA>
## 7992 Employee <NA>
## 7993 Employee <NA>
## 7994 Employee <NA>
## 7995 Employee <NA>
## 7996 Employee Employee
## 7997 Employee <NA>
## 7998 Employee <NA>
## 7999 Employee <NA>
## 8000 Employee <NA>
## 8001 Employee Vice President
## 8002 Employee Vice President
## 8003 Employee <NA>
## 8004 Employee <NA>
## 8005 Employee Vice President
## 8006 Employee <NA>
## 8007 Employee <NA>
## 8008 Employee <NA>
## 8009 Employee Vice President
## 8010 Employee <NA>
## 8011 Employee <NA>
## 8012 Employee <NA>
## 8013 Employee <NA>
## 8014 Employee <NA>
## 8015 Employee <NA>
## 8016 Employee <NA>
## 8017 Employee <NA>
## 8018 Employee <NA>
## 8019 Employee <NA>
## 8020 Employee <NA>
## 8021 Employee <NA>
## 8022 Employee <NA>
## 8023 Employee <NA>
## 8024 Employee <NA>
## 8025 Employee <NA>
## 8026 Employee <NA>
## 8027 Employee <NA>
## 8028 Employee <NA>
## 8029 Employee <NA>
## 8030 Employee <NA>
## 8031 Employee <NA>
## 8032 Employee <NA>
## 8033 Employee <NA>
## 8034 Employee <NA>
## 8035 Employee <NA>
## 8036 Employee <NA>
## 8037 Employee <NA>
## 8038 Employee <NA>
## 8039 Employee <NA>
## 8040 Employee <NA>
## 8041 Employee <NA>
## 8042 Employee <NA>
## 8043 Employee <NA>
## 8044 Employee <NA>
## 8045 Employee <NA>
## 8046 Employee <NA>
## 8047 Employee <NA>
## 8048 Employee <NA>
## 8049 Employee <NA>
## 8050 Employee <NA>
## 8051 Employee <NA>
## 8052 Employee <NA>
## 8053 Employee <NA>
## 8054 Employee <NA>
## 8055 Employee <NA>
## 8056 Employee <NA>
## 8057 Employee <NA>
## 8058 Employee Managing Director
## 8059 Employee <NA>
## 8060 Employee <NA>
## 8061 Employee <NA>
## 8062 Employee <NA>
## 8063 Employee <NA>
## 8064 Employee Vice President
## 8065 Employee <NA>
## 8066 Employee <NA>
## 8067 Employee <NA>
## 8068 Employee <NA>
## 8069 Employee <NA>
## 8070 Employee <NA>
## 8071 Employee <NA>
## 8072 Employee <NA>
## 8073 Employee <NA>
## 8074 Employee Employee
## 8075 Employee <NA>
## 8076 Employee <NA>
## 8077 Employee Vice President
## 8078 Employee <NA>
## 8079 Employee <NA>
## 8080 Employee <NA>
## 8081 Employee <NA>
## 8082 Employee <NA>
## 8083 Employee <NA>
## 8084 Employee <NA>
## 8085 Employee <NA>
## 8086 Employee <NA>
## 8087 Employee <NA>
## 8088 Employee Vice President
## 8089 Employee <NA>
## 8090 Employee <NA>
## 8091 Employee <NA>
## 8092 Employee <NA>
## 8093 Employee <NA>
## 8094 Employee <NA>
## 8095 Employee <NA>
## 8096 Employee <NA>
## 8097 Employee <NA>
## 8098 Employee <NA>
## 8099 Employee <NA>
## 8100 Employee <NA>
## 8101 Employee <NA>
## 8102 Employee <NA>
## 8103 Employee <NA>
## 8104 Employee <NA>
## 8105 Employee <NA>
## 8106 Employee <NA>
## 8107 Employee Managing Director
## 8108 Employee <NA>
## 8109 Employee <NA>
## 8110 Employee <NA>
## 8111 Employee <NA>
## 8112 Employee <NA>
## 8113 Employee <NA>
## 8114 Employee <NA>
## 8115 Employee <NA>
## 8116 Employee <NA>
## 8117 Employee <NA>
## 8118 Employee <NA>
## 8119 Employee <NA>
## 8120 Employee <NA>
## 8121 Employee <NA>
## 8122 Employee <NA>
## 8123 Employee <NA>
## 8124 Employee <NA>
## 8125 Employee <NA>
## 8126 Employee <NA>
## 8127 Employee <NA>
## 8128 Employee Vice President
## 8129 Employee Vice President
## 8130 Employee <NA>
## 8131 Employee <NA>
## 8132 Employee <NA>
## 8133 Employee <NA>
## 8134 Employee <NA>
## 8135 Employee <NA>
## 8136 Employee <NA>
## 8137 Employee Vice President
## 8138 Employee <NA>
## 8139 Employee <NA>
## 8140 Employee <NA>
## 8141 Employee <NA>
## 8142 Employee <NA>
## 8143 Employee <NA>
## 8144 Employee <NA>
## 8145 Employee <NA>
## 8146 Employee <NA>
## 8147 Employee <NA>
## 8148 Employee <NA>
## 8149 Employee <NA>
## 8150 Employee <NA>
## 8151 Employee <NA>
## 8152 Employee <NA>
## 8153 Employee <NA>
## 8154 Employee <NA>
## 8155 Employee <NA>
## 8156 Employee <NA>
## 8157 Employee <NA>
## 8158 Employee <NA>
## 8159 Employee <NA>
## 8160 Employee <NA>
## 8161 Employee <NA>
## 8162 Employee <NA>
## 8163 Employee <NA>
## 8164 Employee <NA>
## 8165 Employee <NA>
## 8166 Employee <NA>
## 8167 Employee <NA>
## 8168 Employee <NA>
## 8169 Employee <NA>
## 8170 Employee <NA>
## 8171 Employee <NA>
## 8172 Employee <NA>
## 8173 Employee Employee
## 8174 Employee <NA>
## 8175 Employee <NA>
## 8176 Employee <NA>
## 8177 Employee <NA>
## 8178 Employee <NA>
## 8179 Employee <NA>
## 8180 Employee <NA>
## 8181 Employee <NA>
## 8182 Employee <NA>
## 8183 Employee <NA>
## 8184 Employee <NA>
## 8185 Employee <NA>
## 8186 Employee Employee
## 8187 Employee <NA>
## 8188 Employee <NA>
## 8189 Employee <NA>
## 8190 Employee <NA>
## 8191 Employee <NA>
## 8192 Employee <NA>
## 8193 Employee Vice President
## 8194 Employee <NA>
## 8195 Employee <NA>
## 8196 Employee <NA>
## 8197 Employee <NA>
## 8198 Employee <NA>
## 8199 Employee Employee
## 8200 Employee <NA>
## 8201 Employee Vice President
## 8202 Employee <NA>
## 8203 Employee <NA>
## 8204 Employee <NA>
## 8205 Employee Vice President
## 8206 Employee Vice President
## 8207 Employee <NA>
## 8208 Employee <NA>
## 8209 Employee Vice President
## 8210 Employee <NA>
## 8211 Employee <NA>
## 8212 Employee Vice President
## 8213 Employee <NA>
## 8214 Employee Vice President
## 8215 Employee <NA>
## 8216 Employee Vice President
## 8217 Employee <NA>
## 8218 Employee <NA>
## 8219 Employee <NA>
## 8220 Employee <NA>
## 8221 Employee Employee
## 8222 Employee <NA>
## 8223 Employee Vice President
## 8224 Employee <NA>
## 8225 Employee Vice President
## 8226 Employee Vice President
## 8227 Employee <NA>
## 8228 Employee <NA>
## 8229 Employee <NA>
## 8230 Employee <NA>
## 8231 Employee <NA>
## 8232 Employee <NA>
## 8233 Employee <NA>
## 8234 Employee <NA>
## 8235 Employee <NA>
## 8236 Employee <NA>
## 8237 Employee <NA>
## 8238 Employee <NA>
## 8239 Employee <NA>
## 8240 Employee <NA>
## 8241 Employee <NA>
## 8242 Employee <NA>
## 8243 Employee <NA>
## 8244 Employee <NA>
## 8245 Employee <NA>
## 8246 Employee Vice President
## 8247 Employee <NA>
## 8248 Employee <NA>
## 8249 Employee <NA>
## 8250 Employee <NA>
## 8251 Employee <NA>
## 8252 Employee <NA>
## 8253 Employee Vice President
## 8254 Employee <NA>
## 8255 Employee Vice President
## 8256 Employee Vice President
## 8257 Employee <NA>
## 8258 Employee <NA>
## 8259 Employee <NA>
## 8260 Employee <NA>
## 8261 Employee Vice President
## 8262 Employee <NA>
## 8263 Employee <NA>
## 8264 Employee <NA>
## 8265 Employee Vice President
## 8266 Employee <NA>
## 8267 Employee President
## 8268 Employee President
## 8269 Employee <NA>
## 8270 Employee Managing Director
## 8271 Employee <NA>
## 8272 Employee Vice President
## 8273 Employee <NA>
## 8274 Employee <NA>
## 8275 Employee <NA>
## 8276 Employee <NA>
## 8277 Employee <NA>
## 8278 Employee <NA>
## 8279 Employee <NA>
## 8280 Employee <NA>
## 8281 Employee <NA>
## 8282 Employee <NA>
## 8283 Employee <NA>
## 8284 Employee <NA>
## 8285 Employee Managing Director
## 8286 Employee <NA>
## 8287 Employee <NA>
## 8288 Employee Managing Director
## 8289 Employee <NA>
## 8290 Employee <NA>
## 8291 Employee <NA>
## 8292 Employee <NA>
## 8293 Employee <NA>
## 8294 Employee Employee
## 8295 Employee President
## 8296 Employee President
## 8297 Employee <NA>
## 8298 Employee <NA>
## 8299 Employee <NA>
## 8300 Employee Vice President
## 8301 Employee Vice President
## 8302 Employee Vice President
## 8303 Employee <NA>
## 8304 Employee <NA>
## 8305 Employee <NA>
## 8306 Employee <NA>
## 8307 Employee <NA>
## 8308 Employee <NA>
## 8309 Employee President
## 8310 Employee <NA>
## 8311 Employee <NA>
## 8312 Employee <NA>
## 8313 Employee <NA>
## 8314 Employee <NA>
## 8315 Employee <NA>
## 8316 Employee <NA>
## 8317 Employee <NA>
## 8318 Employee <NA>
## 8319 Employee <NA>
## 8320 Employee <NA>
## 8321 Employee President
## 8322 Employee <NA>
## 8323 Employee <NA>
## 8324 Employee <NA>
## 8325 Employee <NA>
## 8326 Employee <NA>
## 8327 Employee <NA>
## 8328 Employee <NA>
## 8329 Employee <NA>
## 8330 Employee <NA>
## 8331 Employee <NA>
## 8332 Employee Vice President
## 8333 Employee <NA>
## 8334 Employee <NA>
## 8335 Employee <NA>
## 8336 Employee <NA>
## 8337 Employee <NA>
## 8338 Employee Employee
## 8339 Employee <NA>
## 8340 Employee <NA>
## 8341 Employee Vice President
## 8342 Employee <NA>
## 8343 Employee <NA>
## 8344 Employee <NA>
## 8345 Employee <NA>
## 8346 Employee <NA>
## 8347 Employee Vice President
## 8348 Employee <NA>
## 8349 Employee <NA>
## 8350 Employee <NA>
## 8351 Employee <NA>
## 8352 Employee <NA>
## 8353 Employee <NA>
## 8354 Employee <NA>
## 8355 Employee <NA>
## 8356 Employee <NA>
## 8357 Employee Employee
## 8358 Employee <NA>
## 8359 Employee <NA>
## 8360 Employee <NA>
## 8361 Employee <NA>
## 8362 Employee <NA>
## 8363 Employee Vice President
## 8364 Employee <NA>
## 8365 Employee <NA>
## 8366 Employee <NA>
## 8367 Employee <NA>
## 8368 Employee <NA>
## 8369 Employee <NA>
## 8370 Employee <NA>
## 8371 Employee <NA>
## 8372 Employee <NA>
## 8373 Employee <NA>
## 8374 Employee <NA>
## 8375 Employee <NA>
## 8376 Employee <NA>
## 8377 Employee <NA>
## 8378 Employee <NA>
## 8379 Employee <NA>
## 8380 Employee <NA>
## 8381 Employee <NA>
## 8382 Employee <NA>
## 8383 Employee <NA>
## 8384 Employee <NA>
## 8385 Employee <NA>
## 8386 Employee <NA>
## 8387 Employee <NA>
## 8388 Employee <NA>
## 8389 Employee <NA>
## 8390 Employee <NA>
## 8391 Employee <NA>
## 8392 Employee <NA>
## 8393 Employee <NA>
## 8394 Employee Employee
## 8395 Employee <NA>
## 8396 Employee <NA>
## 8397 Employee <NA>
## 8398 Employee <NA>
## 8399 Employee <NA>
## 8400 Employee <NA>
## 8401 Employee <NA>
## 8402 Employee <NA>
## 8403 Employee <NA>
## 8404 Employee <NA>
## 8405 Employee <NA>
## 8406 Employee <NA>
## 8407 Employee Employee
## 8408 Employee Employee
## 8409 Employee <NA>
## 8410 Employee <NA>
## 8411 Employee Vice President
## 8412 Employee <NA>
## 8413 Employee <NA>
## 8414 Employee Vice President
## 8415 Employee <NA>
## 8416 Employee Employee
## 8417 Employee <NA>
## 8418 Employee Managing Director
## 8419 Employee Manager
## 8420 Employee Trader
## 8421 Employee Employee
## 8422 Employee <NA>
## 8423 Employee <NA>
## 8424 Employee <NA>
## 8425 Employee <NA>
## 8426 Employee <NA>
## 8427 Employee <NA>
## 8428 Employee <NA>
## 8429 Employee <NA>
## 8430 Employee <NA>
## 8431 Employee <NA>
## 8432 Employee <NA>
## 8433 Employee <NA>
## 8434 Employee Vice President
## 8435 Employee <NA>
## 8436 Employee Vice President
## 8437 Employee <NA>
## 8438 Employee <NA>
## 8439 Employee <NA>
## 8440 Employee <NA>
## 8441 Employee <NA>
## 8442 Employee <NA>
## 8443 Employee <NA>
## 8444 Employee <NA>
## 8445 Employee Vice President
## 8446 Employee <NA>
## 8447 Employee <NA>
## 8448 Employee <NA>
## 8449 Employee <NA>
## 8450 Employee <NA>
## 8451 Employee <NA>
## 8452 Employee <NA>
## 8453 Employee <NA>
## 8454 Employee <NA>
## 8455 Employee <NA>
## 8456 Employee <NA>
## 8457 Employee Employee
## 8458 Employee <NA>
## 8459 Employee <NA>
## 8460 Employee <NA>
## 8461 Employee <NA>
## 8462 Employee <NA>
## 8463 Employee <NA>
## 8464 Employee <NA>
## 8465 Employee Vice President
## 8466 Employee <NA>
## 8467 Employee <NA>
## 8468 Employee Employee
## 8469 Employee Vice President
## 8470 Employee <NA>
## 8471 Employee <NA>
## 8472 Employee <NA>
## 8473 Employee <NA>
## 8474 Employee <NA>
## 8475 Employee <NA>
## 8476 Employee Employee
## 8477 Employee <NA>
## 8478 Employee <NA>
## 8479 Employee <NA>
## 8480 Employee <NA>
## 8481 Employee Employee
## 8482 Employee <NA>
## 8483 Employee <NA>
## 8484 Employee <NA>
## 8485 Employee <NA>
## 8486 Employee <NA>
## 8487 Employee <NA>
## 8488 Employee <NA>
## 8489 Employee Vice President
## 8490 Employee <NA>
## 8491 Employee <NA>
## 8492 Employee <NA>
## 8493 Employee <NA>
## 8494 Employee <NA>
## 8495 Employee <NA>
## 8496 Employee <NA>
## 8497 Employee <NA>
## 8498 Employee <NA>
## 8499 Employee <NA>
## 8500 Employee <NA>
## 8501 Employee <NA>
## 8502 Employee <NA>
## 8503 Employee <NA>
## 8504 Employee <NA>
## 8505 Employee <NA>
## 8506 Employee <NA>
## 8507 Employee <NA>
## 8508 Employee <NA>
## 8509 Employee <NA>
## 8510 Employee <NA>
## 8511 Employee <NA>
## 8512 Employee <NA>
## 8513 Employee <NA>
## 8514 Employee <NA>
## 8515 Employee <NA>
## 8516 Employee <NA>
## 8517 Employee <NA>
## 8518 Employee <NA>
## 8519 Employee <NA>
## 8520 Employee <NA>
## 8521 Employee <NA>
## 8522 Employee <NA>
## 8523 Employee <NA>
## 8524 Employee <NA>
## 8525 Employee <NA>
## 8526 Employee <NA>
## 8527 Employee <NA>
## 8528 Employee <NA>
## 8529 Employee Employee
## 8530 Employee <NA>
## 8531 Employee <NA>
## 8532 Employee <NA>
## 8533 Employee <NA>
## 8534 Employee <NA>
## 8535 Employee <NA>
## 8536 Employee <NA>
## 8537 Employee <NA>
## 8538 Employee <NA>
## 8539 Employee <NA>
## 8540 Employee <NA>
## 8541 Employee <NA>
## 8542 Employee <NA>
## 8543 Employee Employee
## 8544 Employee <NA>
## 8545 Employee <NA>
## 8546 Employee <NA>
## 8547 Employee <NA>
## 8548 Employee <NA>
## 8549 Employee <NA>
## 8550 Employee <NA>
## 8551 Employee <NA>
## 8552 Employee <NA>
## 8553 Employee <NA>
## 8554 Employee <NA>
## 8555 Employee <NA>
## 8556 Employee <NA>
## 8557 Employee <NA>
## 8558 Employee Employee
## 8559 Employee <NA>
## 8560 Employee Employee
## 8561 Employee <NA>
## 8562 Employee <NA>
## 8563 Employee <NA>
## 8564 Employee <NA>
## 8565 Employee <NA>
## 8566 Employee <NA>
## 8567 Employee <NA>
## 8568 Employee <NA>
## 8569 Employee <NA>
## 8570 Employee <NA>
## 8571 Employee <NA>
## 8572 Employee <NA>
## 8573 Employee <NA>
## 8574 Employee <NA>
## 8575 Employee <NA>
## 8576 Employee <NA>
## 8577 Employee <NA>
## 8578 Employee <NA>
## 8579 Employee <NA>
## 8580 Employee <NA>
## 8581 Employee <NA>
## 8582 Employee <NA>
## 8583 Employee <NA>
## 8584 Employee <NA>
## 8585 Employee <NA>
## 8586 Employee <NA>
## 8587 Employee <NA>
## 8588 Employee <NA>
## 8589 Employee <NA>
## 8590 Employee <NA>
## 8591 Employee <NA>
## 8592 Employee <NA>
## 8593 Employee <NA>
## 8594 Employee <NA>
## 8595 Employee <NA>
## 8596 Employee <NA>
## 8597 Employee <NA>
## 8598 Employee <NA>
## 8599 Employee <NA>
## 8600 Employee <NA>
## 8601 Employee <NA>
## 8602 Employee <NA>
## 8603 Employee <NA>
## 8604 Employee <NA>
## 8605 Employee <NA>
## 8606 Employee <NA>
## 8607 Employee <NA>
## 8608 Employee <NA>
## 8609 Employee <NA>
## 8610 Employee <NA>
## 8611 Employee <NA>
## 8612 Employee Employee
## 8613 Employee <NA>
## 8614 Employee <NA>
## 8615 Employee Vice President
## 8616 Employee Vice President
## 8617 Employee <NA>
## 8618 Employee <NA>
## 8619 Employee <NA>
## 8620 Employee <NA>
## 8621 Employee <NA>
## 8622 Employee <NA>
## 8623 Employee <NA>
## 8624 Employee <NA>
## 8625 Employee <NA>
## 8626 Employee <NA>
## 8627 Employee <NA>
## 8628 Employee Vice President
## 8629 Employee <NA>
## 8630 Employee <NA>
## 8631 Employee Managing Director
## 8632 Employee Managing Director
## 8633 Employee President
## 8634 Employee <NA>
## 8635 Employee <NA>
## 8636 Employee <NA>
## 8637 Employee <NA>
## 8638 Employee <NA>
## 8639 Employee <NA>
## 8640 Employee <NA>
## 8641 Employee Employee
## 8642 Employee <NA>
## 8643 Employee <NA>
## 8644 Employee <NA>
## 8645 Employee <NA>
## 8646 Employee Vice President
## 8647 Employee <NA>
## 8648 Employee Employee
## 8649 Employee Managing Director
## 8650 Employee <NA>
## 8651 Employee Employee
## 8652 Employee Managing Director
## 8653 Employee <NA>
## 8654 Employee <NA>
## 8655 Employee <NA>
## 8656 Employee <NA>
## 8657 Employee <NA>
## 8658 Employee <NA>
## 8659 Employee <NA>
## 8660 Employee <NA>
## 8661 Employee <NA>
## 8662 Employee <NA>
## 8663 Employee <NA>
## 8664 Employee <NA>
## 8665 Employee <NA>
## 8666 Employee <NA>
## 8667 Employee Employee
## 8668 Employee <NA>
## 8669 Employee <NA>
## 8670 Employee <NA>
## 8671 Employee <NA>
## 8672 Employee <NA>
## 8673 Employee <NA>
## 8674 Employee <NA>
## 8675 Employee <NA>
## 8676 Employee <NA>
## 8677 Employee <NA>
## 8678 Employee Employee
## 8679 Employee <NA>
## 8680 Employee <NA>
## 8681 Employee <NA>
## 8682 Employee <NA>
## 8683 Employee <NA>
## 8684 Employee <NA>
## 8685 Employee Managing Director
## 8686 Employee <NA>
## 8687 Employee <NA>
## 8688 Employee <NA>
## 8689 Employee <NA>
## 8690 Employee <NA>
## 8691 Employee <NA>
## 8692 Employee <NA>
## 8693 Employee <NA>
## 8694 Employee <NA>
## 8695 Employee <NA>
## 8696 Employee <NA>
## 8697 Employee <NA>
## 8698 Employee <NA>
## 8699 Employee President
## 8700 Employee <NA>
## 8701 Employee <NA>
## 8702 Employee <NA>
## 8703 Employee <NA>
## 8704 Employee <NA>
## 8705 Employee <NA>
## 8706 Employee <NA>
## 8707 Employee Employee
## 8708 Employee <NA>
## 8709 Employee <NA>
## 8710 Employee <NA>
## 8711 Employee <NA>
## 8712 Employee <NA>
## 8713 Employee <NA>
## 8714 Employee <NA>
## 8715 Employee <NA>
## 8716 Employee <NA>
## 8717 Employee <NA>
## 8718 Employee <NA>
## 8719 Employee <NA>
## 8720 Employee <NA>
## 8721 Employee <NA>
## 8722 Employee <NA>
## 8723 Employee <NA>
## 8724 Employee <NA>
## 8725 Employee <NA>
## 8726 Employee <NA>
## 8727 Employee <NA>
## 8728 Employee <NA>
## 8729 Employee <NA>
## 8730 Employee <NA>
## 8731 Employee <NA>
## 8732 Employee <NA>
## 8733 Employee <NA>
## 8734 Employee <NA>
## 8735 Employee <NA>
## 8736 Employee <NA>
## 8737 Employee <NA>
## 8738 Employee <NA>
## 8739 Employee <NA>
## 8740 Employee <NA>
## 8741 Employee <NA>
## 8742 Employee <NA>
## 8743 Employee <NA>
## 8744 Employee <NA>
## 8745 Employee <NA>
## 8746 Employee <NA>
## 8747 Employee President
## 8748 Employee Vice President
## 8749 Employee <NA>
## 8750 Employee <NA>
## 8751 Employee <NA>
## 8752 Employee <NA>
## 8753 Employee <NA>
## 8754 Employee <NA>
## 8755 Employee <NA>
## 8756 Employee <NA>
## 8757 Employee <NA>
## 8758 Employee <NA>
## 8759 Employee Employee
## 8760 Employee <NA>
## 8761 Employee <NA>
## 8762 Employee <NA>
## 8763 Employee <NA>
## 8764 Employee Employee
## 8765 Employee <NA>
## 8766 Employee <NA>
## 8767 Employee <NA>
## 8768 Employee <NA>
## 8769 Employee <NA>
## 8770 Employee <NA>
## 8771 Employee <NA>
## 8772 Employee <NA>
## 8773 Employee <NA>
## 8774 Employee <NA>
## 8775 Employee <NA>
## 8776 Employee <NA>
## 8777 Employee <NA>
## 8778 Employee <NA>
## 8779 Employee <NA>
## 8780 Employee <NA>
## 8781 Employee <NA>
## 8782 Employee <NA>
## 8783 Employee <NA>
## 8784 Employee <NA>
## 8785 Employee <NA>
## 8786 Employee Employee
## 8787 Employee <NA>
## 8788 Employee <NA>
## 8789 Employee Managing Director
## 8790 Employee <NA>
## 8791 Employee <NA>
## 8792 Employee <NA>
## 8793 Employee Employee
## 8794 Employee <NA>
## 8795 Employee <NA>
## 8796 Employee Managing Director
## 8797 Employee <NA>
## 8798 Employee <NA>
## 8799 Employee <NA>
## 8800 Employee <NA>
## 8801 Employee <NA>
## 8802 Employee <NA>
## 8803 Employee <NA>
## 8804 Employee <NA>
## 8805 Employee <NA>
## 8806 Employee <NA>
## 8807 Employee <NA>
## 8808 Employee <NA>
## 8809 Employee <NA>
## 8810 Employee <NA>
## 8811 Employee <NA>
## 8812 Employee <NA>
## 8813 Employee <NA>
## 8814 Employee <NA>
## 8815 Employee <NA>
## 8816 Employee <NA>
## 8817 Employee <NA>
## 8818 Employee <NA>
## 8819 Employee <NA>
## 8820 Employee <NA>
## 8821 Employee <NA>
## 8822 Employee <NA>
## 8823 Employee <NA>
## 8824 Employee <NA>
## 8825 Employee <NA>
## 8826 Employee <NA>
## 8827 Employee <NA>
## 8828 Employee <NA>
## 8829 Employee <NA>
## 8830 Employee <NA>
## 8831 Employee <NA>
## 8832 Employee <NA>
## 8833 Employee <NA>
## 8834 Employee <NA>
## 8835 Employee <NA>
## 8836 Employee <NA>
## 8837 Employee <NA>
## 8838 Employee <NA>
## 8839 Employee <NA>
## 8840 Employee <NA>
## 8841 Employee <NA>
## 8842 Employee <NA>
## 8843 Employee <NA>
## 8844 Employee <NA>
## 8845 Employee <NA>
## 8846 Employee <NA>
## 8847 Employee <NA>
## 8848 Employee <NA>
## 8849 Employee <NA>
## 8850 Employee <NA>
## 8851 Employee <NA>
## 8852 Employee <NA>
## 8853 Employee <NA>
## 8854 Employee <NA>
## 8855 Employee <NA>
## 8856 Employee <NA>
## 8857 Employee <NA>
## 8858 Employee <NA>
## 8859 Employee <NA>
## 8860 Employee <NA>
## 8861 Employee <NA>
## 8862 Employee <NA>
## 8863 Employee <NA>
## 8864 Employee <NA>
## 8865 Employee <NA>
## 8866 Employee <NA>
## 8867 Employee <NA>
## 8868 Employee President
## 8869 Employee Vice President
## 8870 Employee <NA>
## 8871 Employee <NA>
## 8872 Employee <NA>
## 8873 Employee <NA>
## 8874 Employee <NA>
## 8875 Employee Vice President
## 8876 Employee <NA>
## 8877 Employee <NA>
## 8878 Employee <NA>
## 8879 Employee <NA>
## 8880 Employee <NA>
## 8881 Employee <NA>
## 8882 Employee <NA>
## 8883 Employee Employee
## 8884 Employee President
## 8885 Employee Vice President
## 8886 Employee <NA>
## 8887 Employee <NA>
## 8888 Employee <NA>
## 8889 Employee <NA>
## 8890 Employee <NA>
## 8891 Employee <NA>
## 8892 Employee <NA>
## 8893 Employee <NA>
## 8894 Employee <NA>
## 8895 Employee <NA>
## 8896 Employee <NA>
## 8897 Employee <NA>
## 8898 Employee <NA>
## 8899 Employee <NA>
## 8900 Employee <NA>
## 8901 Employee <NA>
## 8902 Employee <NA>
## 8903 Employee Employee
## 8904 Employee Vice President
## 8905 Employee <NA>
## 8906 Employee <NA>
## 8907 Employee <NA>
## 8908 Employee <NA>
## 8909 Employee <NA>
## 8910 Employee <NA>
## 8911 Employee <NA>
## 8912 Employee <NA>
## 8913 Employee <NA>
## 8914 Employee <NA>
## 8915 Employee <NA>
## 8916 Employee <NA>
## 8917 Employee <NA>
## 8918 Employee <NA>
## 8919 Employee <NA>
## 8920 Employee <NA>
## 8921 Employee Employee
## 8922 Employee <NA>
## 8923 Employee <NA>
## 8924 Employee <NA>
## 8925 Employee <NA>
## 8926 Employee Employee
## 8927 Employee <NA>
## 8928 Employee Employee
## 8929 Employee <NA>
## 8930 Employee <NA>
## 8931 Employee <NA>
## 8932 Employee <NA>
## 8933 Employee <NA>
## 8934 Employee Employee
## 8935 Employee Employee
## 8936 Employee Employee
## 8937 Employee Employee
## 8938 Employee Employee
## 8939 Employee <NA>
## 8940 Employee <NA>
## 8941 Employee <NA>
## 8942 Employee <NA>
## 8943 Employee <NA>
## 8944 Employee <NA>
## 8945 Employee <NA>
## 8946 Employee <NA>
## 8947 Employee <NA>
## 8948 Employee <NA>
## 8949 Employee <NA>
## 8950 Employee <NA>
## 8951 Employee <NA>
## 8952 Employee <NA>
## 8953 Employee <NA>
## 8954 Employee <NA>
## 8955 Employee <NA>
## 8956 Employee <NA>
## 8957 Employee Vice President
## 8958 Employee <NA>
## 8959 Employee <NA>
## 8960 Employee <NA>
## 8961 Employee President
## 8962 Employee <NA>
## 8963 Employee <NA>
## 8964 Employee <NA>
## 8965 Employee <NA>
## 8966 Employee <NA>
## 8967 Employee <NA>
## 8968 Employee <NA>
## 8969 Employee <NA>
## 8970 Employee <NA>
## 8971 Employee <NA>
## 8972 Employee <NA>
## 8973 Employee <NA>
## 8974 Employee <NA>
## 8975 Employee <NA>
## 8976 Employee <NA>
## 8977 Employee <NA>
## 8978 Employee <NA>
## 8979 Employee <NA>
## 8980 Employee <NA>
## 8981 Employee <NA>
## 8982 Employee <NA>
## 8983 Employee <NA>
## 8984 Employee <NA>
## 8985 Employee <NA>
## 8986 Employee <NA>
## 8987 Employee <NA>
## 8988 Employee <NA>
## 8989 Employee <NA>
## 8990 Employee <NA>
## 8991 Employee <NA>
## 8992 Employee <NA>
## 8993 Employee <NA>
## 8994 Employee <NA>
## 8995 Employee <NA>
## 8996 Employee <NA>
## 8997 Employee <NA>
## 8998 Employee <NA>
## 8999 Employee <NA>
## 9000 Employee <NA>
## 9001 Employee <NA>
## 9002 Employee <NA>
## 9003 Employee <NA>
## 9004 Employee <NA>
## 9005 Employee <NA>
## 9006 Employee <NA>
## 9007 Employee <NA>
## 9008 Employee <NA>
## 9009 Employee <NA>
## 9010 Employee Vice President
## 9011 Employee <NA>
## 9012 Employee Managing Director
## 9013 Employee <NA>
## 9014 Employee <NA>
## 9015 Employee <NA>
## 9016 Employee <NA>
## 9017 Employee <NA>
## 9018 Employee <NA>
## 9019 Employee <NA>
## 9020 Employee <NA>
## 9021 Employee <NA>
## 9022 Employee <NA>
## 9023 Employee <NA>
## 9024 Employee <NA>
## 9025 Employee <NA>
## 9026 Employee <NA>
## 9027 Employee <NA>
## 9028 Employee <NA>
## 9029 Employee <NA>
## 9030 Employee Vice President
## 9031 Employee Managing Director
## 9032 Employee <NA>
## 9033 Employee <NA>
## 9034 Employee Vice President
## 9035 Employee <NA>
## 9036 Employee <NA>
## 9037 Employee <NA>
## 9038 Employee <NA>
## 9039 Employee <NA>
## 9040 Employee <NA>
## 9041 Employee <NA>
## 9042 Employee <NA>
## 9043 Employee Vice President
## 9044 Employee <NA>
## 9045 Employee <NA>
## 9046 Employee <NA>
## 9047 Employee <NA>
## 9048 Employee <NA>
## 9049 Employee <NA>
## 9050 Employee Vice President
## 9051 Employee <NA>
## 9052 Employee <NA>
## 9053 Employee <NA>
## 9054 Employee <NA>
## 9055 Employee <NA>
## 9056 Employee Vice President
## 9057 Employee <NA>
## 9058 Employee <NA>
## 9059 Employee <NA>
## 9060 Employee <NA>
## 9061 Employee <NA>
## 9062 Employee <NA>
## 9063 Employee <NA>
## 9064 Employee <NA>
## 9065 Employee <NA>
## 9066 Employee <NA>
## 9067 Employee <NA>
## 9068 Employee <NA>
## 9069 Employee <NA>
## 9070 Employee <NA>
## 9071 Employee <NA>
## 9072 Employee <NA>
## 9073 Employee <NA>
## 9074 Employee <NA>
## 9075 Employee <NA>
## 9076 Employee <NA>
## 9077 Employee <NA>
## 9078 Employee <NA>
## 9079 Employee <NA>
## 9080 Employee <NA>
## 9081 Employee <NA>
## 9082 Employee <NA>
## 9083 Employee <NA>
## 9084 Employee <NA>
## 9085 Employee <NA>
## 9086 Employee <NA>
## 9087 Employee <NA>
## 9088 Employee <NA>
## 9089 Employee <NA>
## 9090 Employee <NA>
## 9091 Employee <NA>
## 9092 Employee <NA>
## 9093 Employee <NA>
## 9094 Employee <NA>
## 9095 Employee <NA>
## 9096 Employee Vice President
## 9097 Employee <NA>
## 9098 Employee <NA>
## 9099 Employee <NA>
## 9100 Employee <NA>
## 9101 Employee <NA>
## 9102 Employee <NA>
## 9103 Employee <NA>
## 9104 Employee <NA>
## 9105 Employee <NA>
## 9106 Employee Vice President
## 9107 Employee <NA>
## 9108 Employee <NA>
## 9109 Employee <NA>
## 9110 Employee <NA>
## 9111 Employee <NA>
## 9112 Employee <NA>
## 9113 Employee <NA>
## 9114 Employee Vice President
## 9115 Employee <NA>
## 9116 Employee <NA>
## 9117 Employee <NA>
## 9118 Employee Vice President
## 9119 Employee <NA>
## 9120 Employee Vice President
## 9121 Employee <NA>
## 9122 Employee <NA>
## 9123 Employee Vice President
## 9124 Employee <NA>
## 9125 Employee Vice President
## 9126 Employee <NA>
## 9127 Employee <NA>
## 9128 Employee President
## 9129 Employee <NA>
## 9130 Employee <NA>
## 9131 Employee <NA>
## 9132 Employee President
## 9133 Employee <NA>
## 9134 Employee <NA>
## 9135 Employee President
## 9136 Employee <NA>
## 9137 Employee <NA>
## 9138 Employee President
## 9139 Employee <NA>
## 9140 Employee President
## 9141 Employee President
## 9142 Employee <NA>
## 9143 Employee <NA>
## 9144 Employee <NA>
## 9145 Employee <NA>
## 9146 Employee <NA>
## 9147 Employee <NA>
## 9148 Employee <NA>
## 9149 Employee <NA>
## 9150 Employee <NA>
## 9151 Employee <NA>
## 9152 Employee <NA>
## 9153 Employee <NA>
## 9154 Employee <NA>
## 9155 Employee <NA>
## 9156 Employee <NA>
## 9157 Employee <NA>
## 9158 Employee Managing Director
## 9159 Employee <NA>
## 9160 Employee <NA>
## 9161 Employee <NA>
## 9162 Employee Vice President
## 9163 Employee <NA>
## 9164 Employee <NA>
## 9165 Employee Vice President
## 9166 Employee <NA>
## 9167 Employee President
## 9168 Employee <NA>
## 9169 Employee <NA>
## 9170 Employee <NA>
## 9171 Employee Employee
## 9172 Employee <NA>
## 9173 Employee <NA>
## 9174 Employee <NA>
## 9175 Employee <NA>
## 9176 Employee <NA>
## 9177 Employee <NA>
## 9178 Employee <NA>
## 9179 Employee <NA>
## 9180 Employee Managing Director
## 9181 Employee <NA>
## 9182 Employee <NA>
## 9183 Employee <NA>
## 9184 Employee Managing Director
## 9185 Employee <NA>
## 9186 Employee <NA>
## 9187 Employee <NA>
## 9188 Employee <NA>
## 9189 Employee <NA>
## 9190 Employee <NA>
## 9191 Employee Managing Director
## 9192 Employee <NA>
## 9193 Employee <NA>
## 9194 Employee <NA>
## 9195 Employee <NA>
## 9196 Employee <NA>
## 9197 Employee <NA>
## 9198 Employee <NA>
## 9199 Employee <NA>
## 9200 Employee Vice President
## 9201 Employee <NA>
## 9202 Employee <NA>
## 9203 Employee <NA>
## 9204 Employee <NA>
## 9205 Employee <NA>
## 9206 Employee <NA>
## 9207 Employee <NA>
## 9208 Employee <NA>
## 9209 Employee <NA>
## 9210 Employee <NA>
## 9211 Employee <NA>
## 9212 Employee <NA>
## 9213 Employee <NA>
## 9214 Employee <NA>
## 9215 Employee <NA>
## 9216 Employee <NA>
## 9217 Employee <NA>
## 9218 Employee <NA>
## 9219 Employee <NA>
## 9220 Employee <NA>
## 9221 Employee <NA>
## 9222 Employee <NA>
## 9223 Employee <NA>
## 9224 Employee <NA>
## 9225 Employee <NA>
## 9226 Employee <NA>
## 9227 Employee <NA>
## 9228 Employee <NA>
## 9229 Employee <NA>
## 9230 Employee <NA>
## 9231 Employee <NA>
## 9232 Employee <NA>
## 9233 Employee <NA>
## 9234 Employee <NA>
## 9235 Employee <NA>
## 9236 Employee <NA>
## 9237 Employee <NA>
## 9238 Employee <NA>
## 9239 Employee <NA>
## 9240 Employee <NA>
## 9241 Employee Vice President
## 9242 Employee Vice President
## 9243 Employee <NA>
## 9244 Employee <NA>
## 9245 Employee <NA>
## 9246 Employee <NA>
## 9247 Employee <NA>
## 9248 Employee <NA>
## 9249 Employee Vice President
## 9250 Employee <NA>
## 9251 Employee <NA>
## 9252 Employee <NA>
## 9253 Employee <NA>
## 9254 Employee <NA>
## 9255 Employee President
## 9256 Employee <NA>
## 9257 Employee <NA>
## 9258 Employee <NA>
## 9259 Employee <NA>
## 9260 Employee President
## 9261 Employee President
## 9262 Employee <NA>
## 9263 Employee <NA>
## 9264 Employee <NA>
## 9265 Employee <NA>
## 9266 Employee Employee
## 9267 Employee <NA>
## 9268 Employee <NA>
## 9269 Employee <NA>
## 9270 Employee <NA>
## 9271 Employee <NA>
## 9272 Employee <NA>
## 9273 Employee <NA>
## 9274 Employee <NA>
## 9275 Employee <NA>
## 9276 Employee <NA>
## 9277 Employee <NA>
## 9278 Employee Vice President
## 9279 Employee <NA>
## 9280 Employee <NA>
## 9281 Employee <NA>
## 9282 Employee <NA>
## 9283 Employee Vice President
## 9284 Employee <NA>
## 9285 Employee <NA>
## 9286 Employee <NA>
## 9287 Employee <NA>
## 9288 Employee <NA>
## 9289 Employee <NA>
## 9290 Employee Vice President
## 9291 Employee Vice President
## 9292 Employee <NA>
## 9293 Employee <NA>
## 9294 Employee <NA>
## 9295 Employee <NA>
## 9296 Employee <NA>
## 9297 Employee <NA>
## 9298 Employee <NA>
## 9299 Employee <NA>
## 9300 Employee <NA>
## 9301 Employee <NA>
## 9302 Employee <NA>
## 9303 Employee Managing Director
## 9304 Employee <NA>
## 9305 Employee <NA>
## 9306 Employee President
## 9307 Employee Vice President
## 9308 Employee <NA>
## 9309 Employee President
## 9310 Employee Vice President
## 9311 Employee <NA>
## 9312 Employee <NA>
## 9313 Employee <NA>
## 9314 Employee <NA>
## 9315 Employee <NA>
## 9316 Employee <NA>
## 9317 Employee <NA>
## 9318 Employee <NA>
## 9319 Employee <NA>
## 9320 Employee <NA>
## 9321 Employee <NA>
## 9322 Employee <NA>
## 9323 Employee <NA>
## 9324 Employee <NA>
## 9325 Employee <NA>
## 9326 Employee <NA>
## 9327 Employee <NA>
## 9328 Employee <NA>
## 9329 Employee President
## 9330 Employee Vice President
## 9331 Employee <NA>
## 9332 Employee <NA>
## 9333 Employee Vice President
## 9334 Employee <NA>
## 9335 Employee <NA>
## 9336 Employee <NA>
## 9337 Employee <NA>
## 9338 Employee <NA>
## 9339 Employee <NA>
## 9340 Employee <NA>
## 9341 Employee <NA>
## 9342 Employee <NA>
## 9343 Employee <NA>
## 9344 Employee <NA>
## 9345 Employee <NA>
## 9346 Employee <NA>
## 9347 Employee <NA>
## 9348 Employee <NA>
## 9349 Employee <NA>
## 9350 Employee <NA>
## 9351 Employee <NA>
## 9352 Employee <NA>
## 9353 Employee <NA>
## 9354 Employee <NA>
## 9355 Employee <NA>
## 9356 Employee <NA>
## 9357 Employee <NA>
## 9358 Employee <NA>
## 9359 Employee <NA>
## 9360 Employee <NA>
## 9361 Employee <NA>
## 9362 Employee <NA>
## 9363 Employee <NA>
## 9364 Employee <NA>
## 9365 Employee <NA>
## 9366 Employee <NA>
## 9367 Employee <NA>
## 9368 Employee <NA>
## 9369 Employee <NA>
## 9370 Employee <NA>
## 9371 Employee <NA>
## 9372 Employee <NA>
## 9373 Employee <NA>
## 9374 Employee <NA>
## 9375 Employee <NA>
## 9376 Employee <NA>
## 9377 Employee <NA>
## 9378 Employee <NA>
## 9379 Employee <NA>
## 9380 Employee <NA>
## 9381 Employee <NA>
## 9382 Employee <NA>
## 9383 Employee <NA>
## 9384 Employee <NA>
## 9385 Employee <NA>
## 9386 Employee Managing Director
## 9387 Employee <NA>
## 9388 Employee <NA>
## 9389 Employee <NA>
## 9390 Employee Managing Director
## 9391 Employee Vice President
## 9392 Employee <NA>
## 9393 Employee <NA>
## 9394 Employee <NA>
## 9395 Employee <NA>
## 9396 Employee Vice President
## 9397 Employee <NA>
## 9398 Employee <NA>
## 9399 Employee <NA>
## 9400 Employee <NA>
## 9401 Employee <NA>
## 9402 Employee <NA>
## 9403 Employee <NA>
## 9404 Employee <NA>
## 9405 Employee <NA>
## 9406 Employee President
## 9407 Employee <NA>
## 9408 Employee President
## 9409 Employee <NA>
## 9410 Employee <NA>
## 9411 Employee President
## 9412 Employee Employee
## 9413 Employee <NA>
## 9414 Employee <NA>
## 9415 Employee <NA>
## 9416 Employee <NA>
## 9417 Employee President
## 9418 Employee <NA>
## 9419 Employee <NA>
## 9420 Employee <NA>
## 9421 Employee <NA>
## 9422 Employee <NA>
## 9423 Employee <NA>
## 9424 Employee <NA>
## 9425 Employee <NA>
## 9426 Employee <NA>
## 9427 Employee <NA>
## 9428 Employee President
## 9429 Employee <NA>
## 9430 Employee <NA>
## 9431 Employee <NA>
## 9432 Employee <NA>
## 9433 Employee Employee
## 9434 Employee President
## 9435 Employee <NA>
## 9436 Employee <NA>
## 9437 Employee <NA>
## 9438 Employee <NA>
## 9439 Employee <NA>
## 9440 Employee <NA>
## 9441 Employee <NA>
## 9442 Employee <NA>
## 9443 Employee <NA>
## 9444 Employee <NA>
## 9445 Employee <NA>
## 9446 Employee <NA>
## 9447 Employee <NA>
## 9448 Employee <NA>
## 9449 Employee <NA>
## 9450 Employee <NA>
## 9451 Employee <NA>
## 9452 Employee <NA>
## 9453 Employee <NA>
## 9454 Employee <NA>
## 9455 Employee <NA>
## 9456 Employee <NA>
## 9457 Employee <NA>
## 9458 Employee <NA>
## 9459 Employee Vice President
## 9460 Employee Vice President
## 9461 Employee <NA>
## 9462 Employee Vice President
## 9463 Employee <NA>
## 9464 Employee <NA>
## 9465 Employee <NA>
## 9466 Employee Vice President
## 9467 Employee <NA>
## 9468 Employee <NA>
## 9469 Employee <NA>
## 9470 Employee <NA>
## 9471 Employee <NA>
## 9472 Employee <NA>
## 9473 Employee <NA>
## 9474 Employee <NA>
## 9475 Employee Vice President
## 9476 Employee Vice President
## 9477 Employee Vice President
## 9478 Employee <NA>
## 9479 Employee <NA>
## 9480 Employee <NA>
## 9481 Employee <NA>
## 9482 Employee <NA>
## 9483 Employee <NA>
## 9484 Employee <NA>
## 9485 Employee <NA>
## 9486 Employee <NA>
## 9487 Employee <NA>
## 9488 Employee <NA>
## 9489 Employee <NA>
## 9490 Employee <NA>
## 9491 Employee Vice President
## 9492 Employee <NA>
## 9493 Employee <NA>
## 9494 Employee <NA>
## 9495 Employee <NA>
## 9496 Employee <NA>
## 9497 Employee <NA>
## 9498 Employee <NA>
## 9499 Employee <NA>
## 9500 Employee <NA>
## 9501 Employee <NA>
## 9502 Employee <NA>
## 9503 Employee <NA>
## 9504 Employee <NA>
## 9505 Employee <NA>
## 9506 Employee <NA>
## 9507 Employee <NA>
## 9508 Employee <NA>
## 9509 Employee <NA>
## 9510 Employee <NA>
## 9511 Employee <NA>
## 9512 Employee <NA>
## 9513 Employee <NA>
## 9514 Employee <NA>
## 9515 Employee <NA>
## 9516 Employee <NA>
## 9517 Employee <NA>
## 9518 Employee <NA>
## 9519 Employee <NA>
## 9520 Employee <NA>
## 9521 Employee <NA>
## 9522 Employee <NA>
## 9523 Employee <NA>
## 9524 Employee <NA>
## 9525 Employee <NA>
## 9526 Employee <NA>
## 9527 Employee <NA>
## 9528 Employee <NA>
## 9529 Employee <NA>
## 9530 Employee <NA>
## 9531 Employee <NA>
## 9532 Employee <NA>
## 9533 Employee <NA>
## 9534 Employee <NA>
## 9535 Employee Vice President
## 9536 Employee Vice President
## 9537 Employee Managing Director
## 9538 Employee <NA>
## 9539 Employee <NA>
## 9540 Employee <NA>
## 9541 Employee <NA>
## 9542 Employee <NA>
## 9543 Employee Vice President
## 9544 Employee Vice President
## 9545 Employee <NA>
## 9546 Employee <NA>
## 9547 Employee <NA>
## 9548 Employee <NA>
## 9549 Employee <NA>
## 9550 Employee <NA>
## 9551 Employee <NA>
## 9552 Employee <NA>
## 9553 Employee <NA>
## 9554 Employee <NA>
## 9555 Employee <NA>
## 9556 Employee <NA>
## 9557 Employee <NA>
## 9558 Employee <NA>
## 9559 Employee <NA>
## 9560 Employee <NA>
## 9561 Employee <NA>
## 9562 Employee <NA>
## 9563 Employee <NA>
## 9564 Employee <NA>
## 9565 Employee <NA>
## 9566 Employee <NA>
## 9567 Employee President
## 9568 Employee <NA>
## 9569 Employee <NA>
## 9570 Employee <NA>
## 9571 Employee <NA>
## 9572 Employee <NA>
## 9573 Employee <NA>
## 9574 Employee <NA>
## 9575 Employee Vice President
## 9576 Employee <NA>
## 9577 Employee <NA>
## 9578 Employee <NA>
## 9579 Employee <NA>
## 9580 Employee <NA>
## 9581 Employee <NA>
## 9582 Employee <NA>
## 9583 Employee <NA>
## 9584 Employee <NA>
## 9585 Employee <NA>
## 9586 Employee <NA>
## 9587 Employee <NA>
## 9588 Employee <NA>
## 9589 Employee Vice President
## 9590 Employee <NA>
## 9591 Employee Vice President
## 9592 Employee <NA>
## 9593 Employee <NA>
## 9594 Employee <NA>
## 9595 Employee <NA>
## 9596 Employee <NA>
## 9597 Employee <NA>
## 9598 Employee <NA>
## 9599 Employee <NA>
## 9600 Employee <NA>
## 9601 Employee <NA>
## 9602 Employee <NA>
## 9603 Employee <NA>
## 9604 Employee <NA>
## 9605 Employee <NA>
## 9606 Employee <NA>
## 9607 Employee <NA>
## 9608 Employee <NA>
## 9609 Employee <NA>
## 9610 Employee <NA>
## 9611 Employee <NA>
## 9612 Employee <NA>
## 9613 Employee Employee
## 9614 Employee <NA>
## 9615 Employee <NA>
## 9616 Employee Managing Director
## 9617 Employee Vice President
## 9618 Employee <NA>
## 9619 Employee <NA>
## 9620 Employee <NA>
## 9621 Employee <NA>
## 9622 Employee <NA>
## 9623 Employee <NA>
## 9624 Employee <NA>
## 9625 Employee <NA>
## 9626 Employee <NA>
## 9627 Employee <NA>
## 9628 Employee <NA>
## 9629 Employee <NA>
## 9630 Employee <NA>
## 9631 Employee <NA>
## 9632 Employee <NA>
## 9633 Employee <NA>
## 9634 Employee <NA>
## 9635 Employee <NA>
## 9636 Employee <NA>
## 9637 Employee <NA>
## 9638 Employee <NA>
## 9639 Employee <NA>
## 9640 Employee <NA>
## 9641 Employee <NA>
## 9642 Employee <NA>
## 9643 Employee <NA>
## 9644 Employee <NA>
## 9645 Employee Vice President
## 9646 Employee <NA>
## 9647 Employee <NA>
## 9648 Employee <NA>
## 9649 Employee President
## 9650 Employee <NA>
## 9651 Employee <NA>
## 9652 Employee <NA>
## 9653 Employee <NA>
## 9654 Employee Employee
## 9655 Employee <NA>
## 9656 Employee <NA>
## 9657 Employee <NA>
## 9658 Employee Employee
## 9659 Employee <NA>
## 9660 Employee <NA>
## 9661 Employee <NA>
## 9662 Employee <NA>
## 9663 Employee Vice President
## 9664 Employee Vice President
## 9665 Employee <NA>
## 9666 Employee <NA>
## 9667 Employee <NA>
## 9668 Employee <NA>
## 9669 Employee <NA>
## 9670 Employee <NA>
## 9671 Employee <NA>
## 9672 Employee <NA>
## 9673 Employee <NA>
## 9674 Employee <NA>
## 9675 Employee <NA>
## 9676 Employee <NA>
## 9677 Employee Vice President
## 9678 Employee <NA>
## 9679 Employee <NA>
## 9680 Employee <NA>
## 9681 Employee <NA>
## 9682 Employee <NA>
## 9683 Employee <NA>
## 9684 Employee <NA>
## 9685 Employee <NA>
## 9686 Employee <NA>
## 9687 Employee <NA>
## 9688 Employee <NA>
## 9689 Employee <NA>
## 9690 Employee <NA>
## 9691 Employee <NA>
## 9692 Employee <NA>
## 9693 Employee <NA>
## 9694 Employee <NA>
## 9695 Employee <NA>
## 9696 Employee <NA>
## 9697 Employee <NA>
## 9698 Employee <NA>
## 9699 Employee <NA>
## 9700 Employee <NA>
## 9701 Employee <NA>
## 9702 Employee <NA>
## 9703 Employee <NA>
## 9704 Employee Vice President
## 9705 Employee <NA>
## 9706 Employee <NA>
## 9707 Employee <NA>
## 9708 Employee <NA>
## 9709 Employee <NA>
## 9710 Employee <NA>
## 9711 Employee Managing Director
## 9712 Employee Managing Director
## 9713 Employee President
## 9714 Employee <NA>
## 9715 Employee <NA>
## 9716 Employee <NA>
## 9717 Employee <NA>
## 9718 Employee <NA>
## 9719 Employee <NA>
## 9720 Employee <NA>
## 9721 Employee <NA>
## 9722 Employee <NA>
## 9723 Employee <NA>
## 9724 Employee <NA>
## 9725 Employee <NA>
## 9726 Employee <NA>
## 9727 Employee <NA>
## 9728 Employee <NA>
## 9729 Employee <NA>
## 9730 Employee <NA>
## 9731 Employee <NA>
## 9732 Employee Vice President
## 9733 Employee <NA>
## 9734 Employee <NA>
## 9735 Employee <NA>
## 9736 Employee Vice President
## 9737 Employee <NA>
## 9738 Employee <NA>
## 9739 Employee <NA>
## 9740 Employee <NA>
## 9741 Employee <NA>
## 9742 Employee <NA>
## 9743 Employee <NA>
## 9744 Employee Vice President
## 9745 Employee Vice President
## 9746 Employee <NA>
## 9747 Employee <NA>
## 9748 Employee <NA>
## 9749 Employee <NA>
## 9750 Employee <NA>
## 9751 Employee <NA>
## 9752 Employee <NA>
## 9753 Employee <NA>
## 9754 Employee <NA>
## 9755 Employee <NA>
## 9756 Employee <NA>
## 9757 Employee <NA>
## 9758 Employee <NA>
## 9759 Employee <NA>
## 9760 Employee <NA>
## 9761 Employee <NA>
## 9762 Employee <NA>
## 9763 Employee <NA>
## 9764 Employee <NA>
## 9765 Employee <NA>
## 9766 Employee <NA>
## 9767 Employee <NA>
## 9768 Employee <NA>
## 9769 Employee Employee
## 9770 Employee <NA>
## 9771 Employee Employee
## 9772 Employee <NA>
## 9773 Employee <NA>
## 9774 Employee <NA>
## 9775 Employee <NA>
## 9776 Employee <NA>
## 9777 Employee <NA>
## 9778 Employee <NA>
## 9779 Employee <NA>
## 9780 Employee <NA>
## 9781 Employee <NA>
## 9782 Employee <NA>
## 9783 Employee <NA>
## 9784 Employee <NA>
## 9785 Employee <NA>
## 9786 Employee <NA>
## 9787 Employee <NA>
## 9788 Employee <NA>
## 9789 Employee <NA>
## 9790 Employee <NA>
## 9791 Employee <NA>
## 9792 Employee <NA>
## 9793 Employee <NA>
## 9794 Employee <NA>
## 9795 Employee Managing Director
## 9796 Employee Managing Director
## 9797 Employee <NA>
## 9798 Employee <NA>
## 9799 Employee <NA>
## 9800 Employee <NA>
## 9801 Employee President
## 9802 Employee <NA>
## 9803 Employee <NA>
## 9804 Employee <NA>
## 9805 Employee <NA>
## 9806 Employee <NA>
## 9807 Employee <NA>
## 9808 Employee <NA>
## 9809 Employee <NA>
## 9810 Employee <NA>
## 9811 Employee <NA>
## 9812 Employee <NA>
## 9813 Employee <NA>
## 9814 Employee <NA>
## 9815 Employee <NA>
## 9816 Employee <NA>
## 9817 Employee <NA>
## 9818 Employee <NA>
## 9819 Employee <NA>
## 9820 Employee <NA>
## 9821 Employee <NA>
## 9822 Employee <NA>
## 9823 Employee <NA>
## 9824 Employee <NA>
## 9825 Employee <NA>
## 9826 Employee <NA>
## 9827 Employee <NA>
## 9828 Employee <NA>
## 9829 Employee Employee
## 9830 Employee <NA>
## 9831 Employee <NA>
## 9832 Employee <NA>
## 9833 Employee <NA>
## 9834 Employee Employee
## 9835 Employee <NA>
## 9836 Employee <NA>
## 9837 Employee <NA>
## 9838 Employee <NA>
## 9839 Employee <NA>
## 9840 Employee <NA>
## 9841 Employee <NA>
## 9842 Employee <NA>
## 9843 Employee President
## 9844 Employee <NA>
## 9845 Employee President
## 9846 Employee <NA>
## 9847 Employee <NA>
## 9848 Employee President
## 9849 Employee <NA>
## 9850 Employee President
## 9851 Employee <NA>
## 9852 Employee <NA>
## 9853 Employee Vice President
## 9854 Employee <NA>
## 9855 Employee <NA>
## 9856 Employee <NA>
## 9857 Employee <NA>
## 9858 Employee <NA>
## 9859 Employee Employee
## 9860 Employee <NA>
## 9861 Employee <NA>
## 9862 Employee <NA>
## 9863 Employee <NA>
## 9864 Employee <NA>
## 9865 Employee <NA>
## 9866 Employee <NA>
## 9867 Employee <NA>
## 9868 Employee Vice President
## 9869 Employee Vice President
## 9870 Employee President
## 9871 Employee Vice President
## 9872 Employee <NA>
## 9873 Employee <NA>
## 9874 Employee <NA>
## 9875 Employee <NA>
## 9876 Employee <NA>
## 9877 Employee President
## 9878 Employee <NA>
## 9879 Employee <NA>
## 9880 Employee <NA>
## 9881 Employee President
## 9882 Employee <NA>
## 9883 Employee <NA>
## 9884 Employee <NA>
## 9885 Employee <NA>
## 9886 Employee President
## 9887 Employee <NA>
## 9888 Employee Vice President
## 9889 Employee President
## 9890 Employee <NA>
## 9891 Employee <NA>
## 9892 Employee <NA>
## 9893 Employee <NA>
## 9894 Employee <NA>
## 9895 Employee <NA>
## 9896 Employee President
## 9897 Employee President
## 9898 Employee Vice President
## 9899 Employee <NA>
## 9900 Employee <NA>
## 9901 Employee Vice President
## 9902 Employee <NA>
## 9903 Employee <NA>
## 9904 Employee Vice President
## 9905 Employee <NA>
## 9906 Employee President
## 9907 Employee <NA>
## 9908 Employee <NA>
## 9909 Employee <NA>
## 9910 Employee Managing Director
## 9911 Employee President
## 9912 Employee <NA>
## 9913 Employee Managing Director
## 9914 Employee President
## 9915 Employee <NA>
## 9916 Employee <NA>
## 9917 Employee <NA>
## 9918 Employee President
## 9919 Employee <NA>
## 9920 Employee <NA>
## 9921 Employee <NA>
## 9922 Employee <NA>
## 9923 Employee <NA>
## 9924 Employee <NA>
## 9925 Employee <NA>
## 9926 Employee <NA>
## 9927 Employee <NA>
## 9928 Employee <NA>
## 9929 Employee <NA>
## 9930 Employee <NA>
## 9931 Employee <NA>
## 9932 Employee <NA>
## 9933 Employee <NA>
## 9934 Employee <NA>
## 9935 Employee Managing Director
## 9936 Employee President
## 9937 Employee <NA>
## 9938 Employee <NA>
## 9939 Employee <NA>
## 9940 Employee <NA>
## 9941 Employee <NA>
## 9942 Employee President
## 9943 Employee <NA>
## 9944 Employee <NA>
## 9945 Employee <NA>
## 9946 Employee <NA>
## 9947 Employee <NA>
## 9948 Employee <NA>
## 9949 Employee <NA>
## 9950 Employee <NA>
## 9951 Employee <NA>
## 9952 Employee <NA>
## 9953 Employee <NA>
## 9954 Employee <NA>
## 9955 Employee Vice President
## 9956 Employee <NA>
## 9957 Employee <NA>
## 9958 Employee <NA>
## 9959 Employee <NA>
## 9960 Employee Employee
## 9961 Employee <NA>
## 9962 Employee <NA>
## 9963 Employee <NA>
## 9964 Employee <NA>
## 9965 Employee Managing Director
## 9966 Employee <NA>
## 9967 Employee <NA>
## 9968 Employee <NA>
## 9969 Employee <NA>
## 9970 Employee <NA>
## 9971 Employee <NA>
## 9972 Employee Vice President
## 9973 Employee <NA>
## 9974 Employee <NA>
## 9975 Employee President
## 9976 Employee <NA>
## 9977 Employee <NA>
## 9978 Employee <NA>
## 9979 Employee <NA>
## 9980 Employee Vice President
## 9981 Employee <NA>
## 9982 Employee <NA>
## 9983 Employee <NA>
## 9984 Employee <NA>
## 9985 Employee <NA>
## 9986 Employee <NA>
## 9987 Employee Employee
## 9988 Employee <NA>
## 9989 Employee <NA>
## 9990 Employee Employee
## 9991 Employee Employee
## 9992 Employee <NA>
## 9993 Employee <NA>
## 9994 Employee <NA>
## 9995 Employee Employee
## 9996 Employee <NA>
## 9997 Employee <NA>
## 9998 Employee <NA>
## 9999 Employee <NA>
## 10000 Employee <NA>
## 10001 Employee Employee
## 10002 Employee Employee
## 10003 Employee <NA>
## 10004 Employee <NA>
## 10005 Employee <NA>
## 10006 Employee Employee
## 10007 Employee <NA>
## 10008 Employee <NA>
## 10009 Employee <NA>
## 10010 Employee <NA>
## 10011 Employee <NA>
## 10012 Employee <NA>
## 10013 Employee <NA>
## 10014 Employee <NA>
## 10015 Employee <NA>
## 10016 Employee <NA>
## 10017 Employee <NA>
## 10018 Employee <NA>
## 10019 Employee <NA>
## 10020 Employee <NA>
## 10021 Employee <NA>
## 10022 Employee <NA>
## 10023 Employee <NA>
## 10024 Employee <NA>
## 10025 Employee <NA>
## 10026 Employee <NA>
## 10027 Employee <NA>
## 10028 Employee <NA>
## 10029 Employee <NA>
## 10030 Employee <NA>
## 10031 Employee <NA>
## 10032 Employee <NA>
## 10033 Employee <NA>
## 10034 Employee <NA>
## 10035 Employee <NA>
## 10036 Employee <NA>
## 10037 Employee <NA>
## 10038 Employee <NA>
## 10039 Employee <NA>
## 10040 Employee <NA>
## 10041 Employee <NA>
## 10042 Employee <NA>
## 10043 Employee <NA>
## 10044 Employee <NA>
## 10045 Employee <NA>
## 10046 Employee <NA>
## 10047 Employee <NA>
## 10048 Employee <NA>
## 10049 Employee <NA>
## 10050 Employee <NA>
## 10051 Employee <NA>
## 10052 Employee <NA>
## 10053 Employee <NA>
## 10054 Employee <NA>
## 10055 Employee <NA>
## 10056 Employee <NA>
## 10057 Employee President
## 10058 Employee <NA>
## 10059 Employee <NA>
## 10060 Employee <NA>
## 10061 Employee <NA>
## 10062 Employee <NA>
## 10063 Employee Vice President
## 10064 Employee President
## 10065 Employee <NA>
## 10066 Employee <NA>
## 10067 Employee <NA>
## 10068 Employee Managing Director
## 10069 Employee <NA>
## 10070 Employee <NA>
## 10071 Employee <NA>
## 10072 Employee <NA>
## 10073 Employee <NA>
## 10074 Employee Employee
## 10075 Employee <NA>
## 10076 Employee <NA>
## 10077 Employee <NA>
## 10078 Employee <NA>
## 10079 Employee <NA>
## 10080 Employee <NA>
## 10081 Employee <NA>
## 10082 Employee Employee
## 10083 Employee <NA>
## 10084 Employee Employee
## 10085 Employee <NA>
## 10086 Employee <NA>
## 10087 Employee <NA>
## 10088 Employee <NA>
## 10089 Employee <NA>
## 10090 Employee <NA>
## 10091 Employee <NA>
## 10092 Employee <NA>
## 10093 Employee <NA>
## 10094 Employee <NA>
## 10095 Employee <NA>
## 10096 Employee <NA>
## 10097 Employee <NA>
## 10098 Employee Vice President
## 10099 Employee <NA>
## 10100 Employee <NA>
## 10101 Employee <NA>
## 10102 Employee President
## 10103 Employee <NA>
## 10104 Employee <NA>
## 10105 Employee <NA>
## 10106 Employee <NA>
## 10107 Employee <NA>
## 10108 Employee <NA>
## 10109 Employee <NA>
## 10110 Employee <NA>
## 10111 Employee <NA>
## 10112 Employee <NA>
## 10113 Employee <NA>
## 10114 Employee <NA>
## 10115 Employee <NA>
## 10116 Employee Employee
## 10117 Employee <NA>
## 10118 Employee <NA>
## 10119 Employee <NA>
## 10120 Employee <NA>
## 10121 Employee Employee
## 10122 Employee <NA>
## 10123 Employee <NA>
## 10124 Employee <NA>
## 10125 Employee <NA>
## 10126 Employee <NA>
## 10127 Employee <NA>
## 10128 Employee <NA>
## 10129 Employee <NA>
## 10130 Employee <NA>
## 10131 Employee <NA>
## 10132 Employee <NA>
## 10133 Employee <NA>
## 10134 Employee <NA>
## 10135 Employee <NA>
## 10136 Employee <NA>
## 10137 Employee <NA>
## 10138 Employee <NA>
## 10139 Employee <NA>
## 10140 Employee <NA>
## 10141 Employee Vice President
## 10142 Employee <NA>
## 10143 Employee <NA>
## 10144 Employee <NA>
## 10145 Employee <NA>
## 10146 Employee <NA>
## 10147 Employee <NA>
## 10148 Employee <NA>
## 10149 Employee <NA>
## 10150 Employee <NA>
## 10151 Employee <NA>
## 10152 Employee <NA>
## 10153 Employee <NA>
## 10154 Employee <NA>
## 10155 Employee <NA>
## 10156 Employee <NA>
## 10157 Employee <NA>
## 10158 Employee <NA>
## 10159 Employee <NA>
## 10160 Employee <NA>
## 10161 Employee <NA>
## 10162 Employee <NA>
## 10163 Employee <NA>
## 10164 Employee President
## 10165 Employee <NA>
## 10166 Employee <NA>
## 10167 Employee Vice President
## 10168 Employee <NA>
## 10169 Employee <NA>
## 10170 Employee <NA>
## 10171 Employee <NA>
## 10172 Employee <NA>
## 10173 Employee <NA>
## 10174 Employee <NA>
## 10175 Employee <NA>
## 10176 Employee <NA>
## 10177 Employee <NA>
## 10178 Employee <NA>
## 10179 Employee President
## 10180 Employee <NA>
## 10181 Employee <NA>
## 10182 Employee <NA>
## 10183 Employee <NA>
## 10184 Employee <NA>
## 10185 Employee <NA>
## 10186 Employee Employee
## 10187 Employee Employee
## 10188 Employee Employee
## 10189 Employee <NA>
## 10190 Employee Employee
## 10191 Employee Employee
## 10192 Employee <NA>
## 10193 Employee <NA>
## 10194 Employee <NA>
## 10195 Employee <NA>
## 10196 Employee <NA>
## 10197 Employee <NA>
## 10198 Employee <NA>
## 10199 Employee <NA>
## 10200 Employee <NA>
## 10201 Employee <NA>
## 10202 Employee <NA>
## 10203 Employee Employee
## 10204 Employee <NA>
## 10205 Employee <NA>
## 10206 Employee <NA>
## 10207 Employee <NA>
## 10208 Employee Employee
## 10209 Employee <NA>
## 10210 Employee <NA>
## 10211 Employee <NA>
## 10212 Employee <NA>
## 10213 Employee Managing Director
## 10214 Employee <NA>
## 10215 Employee <NA>
## 10216 Employee Employee
## 10217 Employee <NA>
## 10218 Employee <NA>
## 10219 Employee <NA>
## 10220 Employee <NA>
## 10221 Employee <NA>
## 10222 Employee <NA>
## 10223 Employee <NA>
## 10224 Employee <NA>
## 10225 Employee <NA>
## 10226 Employee <NA>
## 10227 Employee Employee
## 10228 Employee Vice President
## 10229 Employee <NA>
## 10230 Employee <NA>
## 10231 Employee <NA>
## 10232 Employee <NA>
## 10233 Employee <NA>
## 10234 Employee <NA>
## 10235 Employee <NA>
## 10236 Employee <NA>
## 10237 Employee <NA>
## 10238 Employee <NA>
## 10239 Employee <NA>
## 10240 Employee <NA>
## 10241 Employee <NA>
## 10242 Employee <NA>
## 10243 Employee <NA>
## 10244 Employee <NA>
## 10245 Employee <NA>
## 10246 Employee <NA>
## 10247 Employee <NA>
## 10248 Employee Employee
## 10249 Employee <NA>
## 10250 Employee <NA>
## 10251 Employee <NA>
## 10252 Employee <NA>
## 10253 Employee <NA>
## 10254 Employee <NA>
## 10255 Employee <NA>
## 10256 Employee <NA>
## 10257 Employee <NA>
## 10258 Employee <NA>
## 10259 Employee <NA>
## 10260 Employee <NA>
## 10261 Employee <NA>
## 10262 Employee <NA>
## 10263 Employee <NA>
## 10264 Employee <NA>
## 10265 Employee <NA>
## 10266 Employee <NA>
## 10267 Employee <NA>
## 10268 Employee <NA>
## 10269 Employee <NA>
## 10270 Employee <NA>
## 10271 Employee <NA>
## 10272 Employee <NA>
## 10273 Employee <NA>
## 10274 Employee Employee
## 10275 Employee <NA>
## 10276 Employee <NA>
## 10277 Employee <NA>
## 10278 Employee <NA>
## 10279 Employee <NA>
## 10280 Employee <NA>
## 10281 Employee <NA>
## 10282 Employee <NA>
## 10283 Employee <NA>
## 10284 Employee <NA>
## 10285 Employee <NA>
## 10286 Employee <NA>
## 10287 Employee <NA>
## 10288 Employee Vice President
## 10289 Employee <NA>
## 10290 Employee Employee
## 10291 Employee <NA>
## 10292 Employee <NA>
## 10293 Employee Employee
## 10294 Employee <NA>
## 10295 Employee <NA>
## 10296 Employee <NA>
## 10297 Employee <NA>
## 10298 Employee <NA>
## 10299 Employee <NA>
## 10300 Employee <NA>
## 10301 Employee <NA>
## 10302 Employee President
## 10303 Employee President
## 10304 Employee <NA>
## 10305 Employee <NA>
## 10306 Employee <NA>
## 10307 Employee <NA>
## 10308 Employee <NA>
## 10309 Employee <NA>
## 10310 Employee <NA>
## 10311 Employee <NA>
## 10312 Employee <NA>
## 10313 Employee <NA>
## 10314 Employee <NA>
## 10315 Employee <NA>
## 10316 Employee Vice President
## 10317 Employee <NA>
## 10318 Employee <NA>
## 10319 Employee <NA>
## 10320 Employee <NA>
## 10321 Employee <NA>
## 10322 Employee <NA>
## 10323 Employee <NA>
## 10324 Employee <NA>
## 10325 Employee <NA>
## 10326 Employee <NA>
## 10327 Employee <NA>
## 10328 Employee <NA>
## 10329 Employee <NA>
## 10330 Employee <NA>
## 10331 Employee <NA>
## 10332 Employee <NA>
## 10333 Employee <NA>
## 10334 Employee Vice President
## 10335 Employee <NA>
## 10336 Employee <NA>
## 10337 Employee <NA>
## 10338 Employee Vice President
## 10339 Employee <NA>
## 10340 Employee <NA>
## 10341 Employee <NA>
## 10342 Employee <NA>
## 10343 Employee <NA>
## 10344 Employee <NA>
## 10345 Employee <NA>
## 10346 Employee <NA>
## 10347 Employee <NA>
## 10348 Employee <NA>
## 10349 Employee <NA>
## 10350 Employee <NA>
## 10351 Employee <NA>
## 10352 Employee <NA>
## 10353 Employee Vice President
## 10354 Employee <NA>
## 10355 Employee <NA>
## 10356 Employee <NA>
## 10357 Employee <NA>
## 10358 Employee <NA>
## 10359 Employee <NA>
## 10360 Employee <NA>
## 10361 Employee <NA>
## 10362 Employee <NA>
## 10363 Employee <NA>
## 10364 Employee President
## 10365 Employee <NA>
## 10366 Employee <NA>
## 10367 Employee <NA>
## 10368 Employee <NA>
## 10369 Employee <NA>
## 10370 Employee <NA>
## 10371 Employee <NA>
## 10372 Employee <NA>
## 10373 Employee <NA>
## 10374 Employee <NA>
## 10375 Employee <NA>
## 10376 Employee <NA>
## 10377 Employee <NA>
## 10378 Employee <NA>
## 10379 Employee <NA>
## 10380 Employee <NA>
## 10381 Employee Employee
## 10382 Employee <NA>
## 10383 Employee <NA>
## 10384 Employee <NA>
## 10385 Employee <NA>
## 10386 Employee Vice President
## 10387 Employee <NA>
## 10388 Employee <NA>
## 10389 Employee Employee
## 10390 Employee <NA>
## 10391 Employee <NA>
## 10392 Employee <NA>
## 10393 Employee <NA>
## 10394 Employee <NA>
## 10395 Employee Employee
## 10396 Employee <NA>
## 10397 Employee <NA>
## 10398 Employee <NA>
## 10399 Employee <NA>
## 10400 Employee <NA>
## 10401 Employee <NA>
## 10402 Employee <NA>
## 10403 Employee President
## 10404 Employee <NA>
## 10405 Employee <NA>
## 10406 Employee President
## 10407 Employee <NA>
## 10408 Employee <NA>
## 10409 Employee <NA>
## 10410 Employee <NA>
## 10411 Employee <NA>
## 10412 Employee Vice President
## 10413 Employee <NA>
## 10414 Employee <NA>
## 10415 Employee <NA>
## 10416 Employee <NA>
## 10417 Employee <NA>
## 10418 Employee <NA>
## 10419 Employee <NA>
## 10420 Employee <NA>
## 10421 Employee <NA>
## 10422 Employee <NA>
## 10423 Employee <NA>
## 10424 Employee <NA>
## 10425 Employee <NA>
## 10426 Employee <NA>
## 10427 Employee <NA>
## 10428 Employee <NA>
## 10429 Employee <NA>
## 10430 Employee <NA>
## 10431 Employee <NA>
## 10432 Employee <NA>
## 10433 Employee President
## 10434 Employee <NA>
## 10435 Employee <NA>
## 10436 Employee <NA>
## 10437 Employee Employee
## 10438 Employee <NA>
## 10439 Employee <NA>
## 10440 Employee <NA>
## 10441 Employee <NA>
## 10442 Employee <NA>
## 10443 Employee <NA>
## 10444 Employee Employee
## 10445 Employee <NA>
## 10446 Employee Employee
## 10447 Employee <NA>
## 10448 Employee <NA>
## 10449 Employee <NA>
## 10450 Employee <NA>
## 10451 Employee <NA>
## 10452 Employee <NA>
## 10453 Employee <NA>
## 10454 Employee <NA>
## 10455 Employee <NA>
## 10456 Employee President
## 10457 Employee <NA>
## 10458 Employee <NA>
## 10459 Employee <NA>
## 10460 Employee <NA>
## 10461 Employee President
## 10462 Employee <NA>
## 10463 Employee <NA>
## 10464 Employee <NA>
## 10465 Employee <NA>
## 10466 Employee <NA>
## 10467 Employee <NA>
## 10468 Employee <NA>
## 10469 Employee <NA>
## 10470 Employee Vice President
## 10471 Employee <NA>
## 10472 Employee <NA>
## 10473 Employee <NA>
## 10474 Employee <NA>
## 10475 Employee <NA>
## 10476 Employee <NA>
## 10477 Employee <NA>
## 10478 Employee <NA>
## 10479 Employee <NA>
## 10480 Employee Employee
## 10481 Employee <NA>
## 10482 Employee <NA>
## 10483 Employee <NA>
## 10484 Employee <NA>
## 10485 Employee <NA>
## 10486 Employee <NA>
## 10487 Employee <NA>
## 10488 Employee <NA>
## 10489 Employee <NA>
## 10490 Employee <NA>
## 10491 Employee <NA>
## 10492 Employee <NA>
## 10493 Employee <NA>
## 10494 Employee <NA>
## 10495 Employee <NA>
## 10496 Employee <NA>
## 10497 Employee <NA>
## 10498 Employee <NA>
## 10499 Employee Employee
## 10500 Employee <NA>
## 10501 Employee <NA>
## 10502 Employee <NA>
## 10503 Employee Employee
## 10504 Employee <NA>
## 10505 Employee <NA>
## 10506 Employee <NA>
## 10507 Employee Employee
## 10508 Employee <NA>
## 10509 Employee <NA>
## 10510 Employee Vice President
## 10511 Employee <NA>
## 10512 Employee <NA>
## 10513 Employee <NA>
## 10514 Employee <NA>
## 10515 Employee <NA>
## 10516 Employee Employee
## 10517 Employee <NA>
## 10518 Employee <NA>
## 10519 Employee <NA>
## 10520 Employee <NA>
## 10521 Employee <NA>
## 10522 Employee <NA>
## 10523 Employee <NA>
## 10524 Employee <NA>
## 10525 Employee <NA>
## 10526 Employee <NA>
## 10527 Employee <NA>
## 10528 Employee <NA>
## 10529 Employee <NA>
## 10530 Employee <NA>
## 10531 Employee Vice President
## 10532 Employee <NA>
## 10533 Employee <NA>
## 10534 Employee <NA>
## 10535 Employee <NA>
## 10536 Employee <NA>
## 10537 Employee <NA>
## 10538 Employee <NA>
## 10539 Employee <NA>
## 10540 Employee <NA>
## 10541 Employee Vice President
## 10542 Employee <NA>
## 10543 Employee <NA>
## 10544 Employee <NA>
## 10545 Employee <NA>
## 10546 Employee <NA>
## 10547 Employee <NA>
## 10548 Employee <NA>
## 10549 Employee <NA>
## 10550 Employee <NA>
## 10551 Employee <NA>
## 10552 Employee <NA>
## 10553 Employee <NA>
## 10554 Employee <NA>
## 10555 Employee <NA>
## 10556 Employee <NA>
## 10557 Employee <NA>
## 10558 Employee <NA>
## 10559 Employee Vice President
## 10560 Employee <NA>
## 10561 Employee <NA>
## 10562 Employee <NA>
## 10563 Employee <NA>
## 10564 Employee <NA>
## 10565 Employee <NA>
## 10566 Employee <NA>
## 10567 Employee <NA>
## 10568 Employee <NA>
## 10569 Employee President
## 10570 Employee <NA>
## 10571 Employee <NA>
## 10572 Employee Managing Director
## 10573 Employee Managing Director
## 10574 Employee <NA>
## 10575 Employee <NA>
## 10576 Employee <NA>
## 10577 Employee <NA>
## 10578 Employee Employee
## 10579 Employee <NA>
## 10580 Employee <NA>
## 10581 Employee <NA>
## 10582 Employee President
## 10583 Employee <NA>
## 10584 Employee <NA>
## 10585 Employee <NA>
## 10586 Employee <NA>
## 10587 Employee <NA>
## 10588 Employee <NA>
## 10589 Employee President
## 10590 Employee <NA>
## 10591 Employee <NA>
## 10592 Employee <NA>
## 10593 Employee <NA>
## 10594 Employee <NA>
## 10595 Employee <NA>
## 10596 Employee <NA>
## 10597 Employee <NA>
## 10598 Employee <NA>
## 10599 Employee <NA>
## 10600 Employee <NA>
## 10601 Employee <NA>
## 10602 Employee <NA>
## 10603 Employee Employee
## 10604 Employee President
## 10605 Employee <NA>
## 10606 Employee <NA>
## 10607 Employee Employee
## 10608 Employee Employee
## 10609 Employee <NA>
## 10610 Employee <NA>
## 10611 Employee <NA>
## 10612 Employee <NA>
## 10613 Employee <NA>
## 10614 Employee <NA>
## 10615 Employee President
## 10616 Employee <NA>
## 10617 Employee <NA>
## 10618 Employee President
## 10619 Employee <NA>
## 10620 Employee <NA>
## 10621 Employee <NA>
## 10622 Employee <NA>
## 10623 Employee <NA>
## 10624 Employee <NA>
## 10625 Employee <NA>
## 10626 Employee <NA>
## 10627 Employee <NA>
## 10628 Employee <NA>
## 10629 Employee <NA>
## 10630 Employee <NA>
## 10631 Employee Vice President
## 10632 Employee <NA>
## 10633 Employee <NA>
## 10634 Employee <NA>
## 10635 Employee <NA>
## 10636 Employee <NA>
## 10637 Employee <NA>
## 10638 Employee <NA>
## 10639 Employee <NA>
## 10640 Employee <NA>
## 10641 Employee Vice President
## 10642 Employee Vice President
## 10643 Employee Vice President
## 10644 Employee <NA>
## 10645 Employee <NA>
## 10646 Employee <NA>
## 10647 Employee <NA>
## 10648 Employee <NA>
## 10649 Employee <NA>
## 10650 Employee <NA>
## 10651 Employee <NA>
## 10652 Employee <NA>
## 10653 Employee <NA>
## 10654 Employee <NA>
## 10655 Employee <NA>
## 10656 Employee <NA>
## 10657 Employee <NA>
## 10658 Employee <NA>
## 10659 Employee Employee
## 10660 Employee <NA>
## 10661 Employee <NA>
## 10662 Employee <NA>
## 10663 Employee <NA>
## 10664 Employee <NA>
## 10665 Employee Employee
## 10666 Employee <NA>
## 10667 Employee <NA>
## 10668 Employee <NA>
## 10669 Employee <NA>
## 10670 Employee President
## 10671 Employee President
## 10672 Employee <NA>
## 10673 Employee <NA>
## 10674 Employee <NA>
## 10675 Employee <NA>
## 10676 Employee Employee
## 10677 Employee <NA>
## 10678 Employee <NA>
## 10679 Employee <NA>
## 10680 Employee <NA>
## 10681 Employee Employee
## 10682 Employee <NA>
## 10683 Employee <NA>
## 10684 Employee <NA>
## 10685 Employee Employee
## 10686 Employee <NA>
## 10687 Employee <NA>
## 10688 Employee <NA>
## 10689 Employee <NA>
## 10690 Employee Employee
## 10691 Employee <NA>
## 10692 Employee <NA>
## 10693 Employee <NA>
## 10694 Employee <NA>
## 10695 Employee <NA>
## 10696 Employee <NA>
## 10697 Employee <NA>
## 10698 Employee <NA>
## 10699 Employee <NA>
## 10700 Employee <NA>
## 10701 Employee <NA>
## 10702 Employee <NA>
## 10703 Employee <NA>
## 10704 Employee <NA>
## 10705 Employee <NA>
## 10706 Employee <NA>
## 10707 Employee <NA>
## 10708 Employee <NA>
## 10709 Employee <NA>
## 10710 Employee <NA>
## 10711 Employee <NA>
## 10712 Employee <NA>
## 10713 Employee <NA>
## 10714 Employee Vice President
## 10715 Employee <NA>
## 10716 Employee <NA>
## 10717 Employee <NA>
## 10718 Employee <NA>
## 10719 Employee <NA>
## 10720 Employee <NA>
## 10721 Employee <NA>
## 10722 Employee <NA>
## 10723 Employee Vice President
## 10724 Employee <NA>
## 10725 Employee <NA>
## 10726 Employee <NA>
## 10727 Employee <NA>
## 10728 Employee <NA>
## 10729 Employee <NA>
## 10730 Employee President
## 10731 Employee <NA>
## 10732 Employee <NA>
## 10733 Employee President
## 10734 Employee <NA>
## 10735 Employee <NA>
## 10736 Employee <NA>
## 10737 Employee <NA>
## 10738 Employee <NA>
## 10739 Employee President
## 10740 Employee <NA>
## 10741 Employee <NA>
## 10742 Employee <NA>
## 10743 Employee <NA>
## 10744 Employee President
## 10745 Employee <NA>
## 10746 Employee <NA>
## 10747 Employee <NA>
## 10748 Employee <NA>
## 10749 Employee <NA>
## 10750 Employee <NA>
## 10751 Employee <NA>
## 10752 Employee <NA>
## 10753 Employee <NA>
## 10754 Employee <NA>
## 10755 Employee <NA>
## 10756 Employee <NA>
## 10757 Employee <NA>
## 10758 Employee <NA>
## 10759 Employee <NA>
## 10760 Employee <NA>
## 10761 Employee <NA>
## 10762 Employee <NA>
## 10763 Employee <NA>
## 10764 Employee <NA>
## 10765 Employee <NA>
## 10766 Employee President
## 10767 Employee <NA>
## 10768 Employee <NA>
## 10769 Employee <NA>
## 10770 Employee <NA>
## 10771 Employee <NA>
## 10772 Employee President
## 10773 Employee <NA>
## 10774 Employee <NA>
## 10775 Employee <NA>
## 10776 Employee <NA>
## 10777 Employee <NA>
## 10778 Employee Vice President
## 10779 Employee <NA>
## 10780 Employee <NA>
## 10781 Employee <NA>
## 10782 Employee <NA>
## 10783 Employee <NA>
## 10784 Employee <NA>
## 10785 Employee <NA>
## 10786 Employee <NA>
## 10787 Employee <NA>
## 10788 Employee <NA>
## 10789 Employee <NA>
## 10790 Employee President
## 10791 Employee <NA>
## 10792 Employee <NA>
## 10793 Employee President
## 10794 Employee <NA>
## 10795 Employee President
## 10796 Employee <NA>
## 10797 Employee <NA>
## 10798 Employee President
## 10799 Employee <NA>
## 10800 Employee President
## 10801 Employee <NA>
## 10802 Employee <NA>
## 10803 Employee <NA>
## 10804 Employee <NA>
## 10805 Employee <NA>
## 10806 Employee <NA>
## 10807 Employee <NA>
## 10808 Employee <NA>
## 10809 Employee <NA>
## 10810 Employee <NA>
## 10811 Employee <NA>
## 10812 Employee <NA>
## 10813 Employee <NA>
## 10814 Employee President
## 10815 Employee <NA>
## 10816 Employee <NA>
## 10817 Employee <NA>
## 10818 Employee Managing Director
## 10819 Employee Managing Director
## 10820 Employee <NA>
## 10821 Employee President
## 10822 Employee <NA>
## 10823 Employee <NA>
## 10824 Employee <NA>
## 10825 Employee <NA>
## 10826 Employee President
## 10827 Employee <NA>
## 10828 Employee President
## 10829 Employee <NA>
## 10830 Employee <NA>
## 10831 Employee <NA>
## 10832 Employee <NA>
## 10833 Employee <NA>
## 10834 Employee <NA>
## 10835 Employee <NA>
## 10836 Employee <NA>
## 10837 Employee <NA>
## 10838 Employee <NA>
## 10839 Employee <NA>
## 10840 Employee Vice President
## 10841 Employee <NA>
## 10842 Employee <NA>
## 10843 Employee <NA>
## 10844 Employee <NA>
## 10845 Employee <NA>
## 10846 Employee <NA>
## 10847 Employee <NA>
## 10848 Employee <NA>
## 10849 Employee Vice President
## 10850 Employee <NA>
## 10851 Employee <NA>
## 10852 Employee <NA>
## 10853 Employee <NA>
## 10854 Employee <NA>
## 10855 Employee Employee
## 10856 Employee <NA>
## 10857 Employee <NA>
## 10858 Employee <NA>
## 10859 Employee <NA>
## 10860 Employee <NA>
## 10861 Employee <NA>
## 10862 Employee <NA>
## 10863 Employee <NA>
## 10864 Employee <NA>
## 10865 Employee President
## 10866 Employee <NA>
## 10867 Employee <NA>
## 10868 Employee <NA>
## 10869 Employee <NA>
## 10870 Employee Vice President
## 10871 Employee <NA>
## 10872 Employee Vice President
## 10873 Employee <NA>
## 10874 Employee <NA>
## 10875 Employee <NA>
## 10876 Employee <NA>
## 10877 Employee Employee
## 10878 Employee <NA>
## 10879 Employee <NA>
## 10880 Employee Employee
## 10881 Employee <NA>
## 10882 Employee <NA>
## 10883 Employee <NA>
## 10884 Employee <NA>
## 10885 Employee Vice President
## 10886 Employee <NA>
## 10887 Employee <NA>
## 10888 Employee <NA>
## 10889 Employee <NA>
## 10890 Employee <NA>
## 10891 Employee <NA>
## 10892 Employee <NA>
## 10893 Employee <NA>
## 10894 Employee <NA>
## 10895 Employee <NA>
## 10896 Employee <NA>
## 10897 Employee <NA>
## 10898 Employee <NA>
## 10899 Employee Vice President
## 10900 Employee <NA>
## 10901 Employee <NA>
## 10902 Employee Managing Director
## 10903 Employee <NA>
## 10904 Employee <NA>
## 10905 Employee <NA>
## 10906 Employee <NA>
## 10907 Employee <NA>
## 10908 Employee <NA>
## 10909 Employee <NA>
## 10910 Employee <NA>
## 10911 Employee <NA>
## 10912 Employee <NA>
## 10913 Employee <NA>
## 10914 Employee <NA>
## 10915 Employee <NA>
## 10916 Employee <NA>
## 10917 Employee <NA>
## 10918 Employee <NA>
## 10919 Employee Vice President
## 10920 Employee <NA>
## 10921 Employee <NA>
## 10922 Employee <NA>
## 10923 Employee <NA>
## 10924 Employee <NA>
## 10925 Employee Vice President
## 10926 Employee <NA>
## 10927 Employee Vice President
## 10928 Employee <NA>
## 10929 Employee <NA>
## 10930 Employee <NA>
## 10931 Employee <NA>
## 10932 Employee <NA>
## 10933 Employee <NA>
## 10934 Employee <NA>
## 10935 Employee <NA>
## 10936 Employee <NA>
## 10937 Employee <NA>
## 10938 Employee <NA>
## 10939 Employee <NA>
## 10940 Employee <NA>
## 10941 Employee <NA>
## 10942 Employee <NA>
## 10943 Employee <NA>
## 10944 Employee <NA>
## 10945 Employee <NA>
## 10946 Employee <NA>
## 10947 Employee <NA>
## 10948 Employee <NA>
## 10949 Employee Employee
## 10950 Employee <NA>
## 10951 Employee <NA>
## 10952 Employee <NA>
## 10953 Employee <NA>
## 10954 Employee Employee
## 10955 Employee <NA>
## 10956 Employee <NA>
## 10957 Employee <NA>
## 10958 Employee <NA>
## 10959 Employee <NA>
## 10960 Employee <NA>
## 10961 Employee <NA>
## 10962 Employee <NA>
## 10963 Employee <NA>
## 10964 Employee <NA>
## 10965 Employee <NA>
## 10966 Employee <NA>
## 10967 Employee <NA>
## 10968 Employee <NA>
## 10969 Employee <NA>
## 10970 Employee <NA>
## 10971 Employee <NA>
## 10972 Employee <NA>
## 10973 Employee <NA>
## 10974 Employee <NA>
## 10975 Employee <NA>
## 10976 Employee <NA>
## 10977 Employee Employee
## 10978 Employee <NA>
## 10979 Employee <NA>
## 10980 Employee <NA>
## 10981 Employee <NA>
## 10982 Employee <NA>
## 10983 Employee <NA>
## 10984 Employee <NA>
## 10985 Employee <NA>
## 10986 Employee <NA>
## 10987 Employee <NA>
## 10988 Employee <NA>
## 10989 Employee <NA>
## 10990 Employee <NA>
## 10991 Employee <NA>
## 10992 Employee <NA>
## 10993 Employee <NA>
## 10994 Employee <NA>
## 10995 Employee <NA>
## 10996 Employee <NA>
## 10997 Employee <NA>
## 10998 Employee <NA>
## 10999 Employee <NA>
## 11000 Employee <NA>
## 11001 Employee <NA>
## 11002 Employee <NA>
## 11003 Employee <NA>
## 11004 Employee <NA>
## 11005 Employee <NA>
## 11006 Employee <NA>
## 11007 Employee <NA>
## 11008 Employee <NA>
## 11009 Employee <NA>
## 11010 Employee <NA>
## 11011 Employee <NA>
## 11012 Employee <NA>
## 11013 Employee <NA>
## 11014 Employee <NA>
## 11015 Employee <NA>
## 11016 Employee <NA>
## 11017 Employee <NA>
## 11018 Employee <NA>
## 11019 Employee <NA>
## 11020 Employee <NA>
## 11021 Employee <NA>
## 11022 Employee <NA>
## 11023 Employee <NA>
## 11024 Employee <NA>
## 11025 Employee <NA>
## 11026 Employee <NA>
## 11027 Employee <NA>
## 11028 Employee <NA>
## 11029 Employee <NA>
## 11030 Employee <NA>
## 11031 Employee <NA>
## 11032 Employee <NA>
## 11033 Employee <NA>
## 11034 Employee <NA>
## 11035 Employee <NA>
## 11036 Employee <NA>
## 11037 Employee <NA>
## 11038 Employee <NA>
## 11039 Employee <NA>
## 11040 Employee <NA>
## 11041 Employee <NA>
## 11042 Employee <NA>
## 11043 Employee <NA>
## 11044 Employee <NA>
## 11045 Employee <NA>
## 11046 Employee <NA>
## 11047 Employee <NA>
## 11048 Employee <NA>
## 11049 Employee <NA>
## 11050 Employee <NA>
## 11051 Employee <NA>
## 11052 Employee <NA>
## 11053 Employee <NA>
## 11054 Employee <NA>
## 11055 Employee <NA>
## 11056 Employee <NA>
## 11057 Employee <NA>
## 11058 Employee <NA>
## 11059 Employee <NA>
## 11060 Employee <NA>
## 11061 Employee Employee
## 11062 Employee <NA>
## 11063 Employee <NA>
## 11064 Employee <NA>
## 11065 Employee <NA>
## 11066 Employee <NA>
## 11067 Employee <NA>
## 11068 Employee <NA>
## 11069 Employee <NA>
## 11070 Employee <NA>
## 11071 Employee <NA>
## 11072 Employee <NA>
## 11073 Employee <NA>
## 11074 Employee <NA>
## 11075 Employee <NA>
## 11076 Employee <NA>
## 11077 Employee <NA>
## 11078 Employee <NA>
## 11079 Employee <NA>
## 11080 Employee <NA>
## 11081 Employee <NA>
## 11082 Employee <NA>
## 11083 Employee <NA>
## 11084 Employee Employee
## 11085 Employee <NA>
## 11086 Employee <NA>
## 11087 Employee <NA>
## 11088 Employee Managing Director
## 11089 Employee <NA>
## 11090 Employee Employee
## 11091 Employee <NA>
## 11092 Employee <NA>
## 11093 Employee <NA>
## 11094 Employee <NA>
## 11095 Employee <NA>
## 11096 Employee Employee
## 11097 Employee <NA>
## 11098 Employee <NA>
## 11099 Employee Vice President
## 11100 Employee <NA>
## 11101 Employee <NA>
## 11102 Employee <NA>
## 11103 Employee <NA>
## 11104 Employee <NA>
## 11105 Employee <NA>
## 11106 Employee <NA>
## 11107 Employee <NA>
## 11108 Employee <NA>
## 11109 Employee <NA>
## 11110 Employee <NA>
## 11111 Employee <NA>
## [ reached 'max' / getOption("max.print") -- omitted 474999 rows ]
Only 28% of the exchange between enron’s email address can be labelled with an employee status for either the sender or the recipient. This confirm us that, the employee list isn’t exhaustive.
Enhence the visual!!
Enron_email %>% group_by(rtype) %>% count() %>%
ggplot(aes("", n, fill = rtype)) +
geom_bar(stat = "identity") +
coord_polar(theta = "y")
Most of the time the exchange are direct between employee.
kable(Enron_email %>% filter(rtype %in% c("BCC", "CC")) %>% group_by(rvalue, recipient_status) %>% count() %>% arrange(desc(n)) %>%head(10))
| rvalue | recipient_status | n |
|---|---|---|
| j.kaminski@enron.com | Manager | 5082 |
| mark.guzman@enron.com | Managing Director | 4924 |
| ryan.slinger@enron.com | Trader | 4916 |
| pete.davis@enron.com | NA | 4914 |
| geir.solberg@enron.com | Employee | 4912 |
| leaf.harasin@enron.com | NA | 4752 |
| bert.meyers@enron.com | NA | 4746 |
| craig.dean@enron.com | Trader | 4380 |
| eric.linder@enron.com | Employee | 4226 |
| monika.causholli@enron.com | Employee | 4212 |
=> merge the employee list with the message DF through the email address
=> for the analysis on employeelist table: - count the number of email address for each employee
=> for the message_df: - look at the number of email per email address - look at the type of email (TO, CC, BC) - look at the number of eamil exchange between month and year -> see if it as significant change around the historic date
=> for the referenceinfo make an analysis of the message content or do it with the subject from recipientinfo table where is more exhaustive. With the subject makes a classification of the potential different type of email send/receive.
=> make a radar chart to display the status and the number of email send/recieve by each. To do it follow this tutorial: https://r-graph-gallery.com/web-circular-barplot-with-R-and-ggplot2.html
=> pursue with the analytics question in the Exam project rules.
=> See if it should be useful to separate the date variable into month and year.
=> see to clean a little the environment to keep in memory only the needed table.